*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

body,
html {
  height: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}


:root {
  --heading-color: #ff1d4d;
  --fontawesome: "Font Awesome 5 Pro";
  --white: #ffffff;
  --black: #000;
  --para: #000
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

body {
  font-family: 'Yantramanav', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.78;
  color: #555555;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0;
  margin: 0;
}

a,
a:hover,
a:focus {
  color: #555555;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}


/* =================== banner here ==================== */

.contact_page .banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.349), #131112), url(../image/contact-banner.webp);
  background-size: cover;
  background-position: center;
  height: 50vh;
  display: grid;
  place-items: center;
}

.contact_page .banner h1 {
  font-size: clamp(40px, 3vw, 120px);
  color: white;
  font-weight: 700;
}

.contact_page .banner p {
  color: var(--white);
  text-decoration: underline;
}

.contact_page .banner a {
  color: var(--white);
}

/* ================ Seciton-2 here =============== */

.contact_page .section-2 h2 {
  font-size: clamp(30px, 3.5vw, 120px);
  color: var(--black);
  font-family: "Russo One", sans-serif;
  text-align: center;
  font-weight: 700;
}

/* ================ Seciton-3  here =============== */

.contact_page .section-3 .data {
  background-color: white;
  border-radius: 12px;
  padding: 25px 10px;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
}

.contact_page .section-3 .data:hover {
  box-shadow: inset 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
}

.contact_page .section-3 .data .image {
  height: 60px;
  width: 60px;
}

.contact_page .section-3 .data p {
  color: var(--heading-color);
  font-weight: 700;
}

.contact_page .section-3 .data a {
  color: var(--heading-color);
  font-size: 16px;
}

.contact_page .section-3 .data a:hover {
  color: #EEB12A;
  text-decoration: underline;
}


/* ============== query section here ============= */

.contact_page .query-section h4{
  color: var(--black);
  font-size: clamp(30px, 3vw, 70px);
}

.contact_page .query-section .form-data .lower input, .contact_page .query-section .form-data .lower textarea{
border: 1px solid black;
}

.contact_page .query-section .form-data .lower .btn{
  padding: 15px 35px;
  border-radius: 100px;
  font-weight: 700;
  background-color: var(--heading-color);
  color: white;
  border: none;
  font-size: 18px;
  transition: 300ms;
}

.contact_page .query-section .form-data .lower .btn:hover{
background-color: #cf4563;
}
