@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 6.4rem;
  line-height: 9.6rem;
  font-weight: 700;
}

h2 {
  font-size: 3.2rem;
  line-height: 4.8rem;
  font-weight: 700;
  color: #0f0b33;
}

h3 {
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 700;
  color: #0f0b33;
}

p {
  font-size: 1.6rem;
  color: #878599;
  line-height: 2.5rem;
}

a {
  text-decoration: none;
}

/* variables */
:root {
  --primary-white: #fff;
  --primary-green: #00d0b0;
  --primary-bg: #0f0b33;
  --primary-alert: #ff9700;
}

/* reusable code */

.container {
  width: 80%;
  margin: 0 auto;
}

.grid {
  display: grid;
}

.grid-two-colmn {
  grid-template-columns: repeat(2, 1fr);
}

.grid-three-colmn {
  grid-template-columns: repeat(3, 1fr);
}

.grid-four-colmn {
  grid-template-columns: repeat(4, 1fr);
}
.grid-five-colmn {
  grid-template-columns: repeat(5, 1fr);
}

.btn {
  font-size: 1.4rem;
  padding: 1.5rem 1.8rem;
  font-weight: 700;
  background-color: var(--primary-green);
  border: none;
  color: var(--primary-white);
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  display: block;
  width: max-content;
  margin: 0 auto;
}

.section-header {
  font-size: 1.6rem;
  color: var(--primary-alert);
  line-height: 2.4rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;

}

/* header start here */

header .bg-grediant {
  width: 50%;
  height: 60%;
  border-radius: 50%;
  background: var(--primary-green);
  filter: blur(30rem);
  position: absolute;
  top: -15%;
  left: 75%;
}

.contact-us-header-contact {
  text-align: center;
  padding: 6rem 0 25rem;
}

.contact-us-header-contact .section-header {
  font-size: 2.4rem;
}

.contact-us-header-contact h1 {
  font-size: 5.2rem;
  color: var(--primary-white);
  max-width: 50%;
  margin: 0 auto;
  padding-top: 2rem;
  line-height: 7.8rem;
}

/* contact us start here */
.contact-us {
  width: 100%;
  background-color: #f9f9f9;
  /* padding-bottom: 8rem; */
}

.contact-us .container{
    position: relative;

}

.contact-us-box-wrapper {
  background-color: var(--primary-white);
  padding: 6rem;
  margin-top: -17rem;
}

.contact-us-box-wrapper .contact-us-box{
    text-align: center;
}


.contact-us-box-wrapper .contact-us-box:nth-child(1),
.contact-us-box-wrapper .contact-us-box:nth-child(2){
    border-right: 1px solid #E7E7EB;
}

.contact-us-box .box-info{
    padding: 3rem 0 6rem;
}

.contact-us-box .box-info h3{
    font-size: 2.4rem;
    line-height: 3.6rem;
    padding-bottom: 1rem;
}

.contact-us-box .box-info p{
    font-size: 1.4rem;
    line-height: 2.1rem;
    color: #6F6D85;
}

.contact-us-box .btn{
    font-size: 1.2rem;
}

.contact-us-detail{
    padding: 8rem 0 6rem;
}

.contact-us-detail h3{
    font-size: 3.2rem;
    line-height: 4.8rem;
    max-width: 80%;
    padding: 2rem 0 4rem;
}


.contact-us-detail .info{
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 0;
}

/* .contact-us-detail .info svg{
   padding-right: 2rem;
   display: inline-block;
} */

.contact-us-detail .info a,
.contact-us-detail .info p{
   padding-left: 2rem;
   color: var(--primary-bg);
   font-size: 1.4rem;
   font-weight: 400;
   line-height: 2.1rem;
   max-width: 50%;
   display: inline-flex;
  }
  
  .contact-us-detail .info .tel{
  text-decoration: underline;
}

/* .contact-us-detail .info:nth-child(1) a{
  text-decoration: underline;
} */

.contact-us-form{
    background-color: var(--primary-bg);
    padding: 5rem 10%;
    margin-bottom: -25rem;
  }
  
  #contact-us-form{
  scroll-margin-top: 15rem;

}

.contact-us-form .section-header{
    padding-bottom: 2rem;
    display: inline-block;
}

.contact-us-form form .input label {
    color: var(--primary-white);
  }

.contact-us-form form .input input,
.contact-us-form form .input textarea {
  color: var(--primary-white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(50px);
}

.contact-us-form form .input input::placeholder,
.contact-us-form form .input textarea::placeholder {
  color: #959595;
}

.contact-us-form .btn{
    margin:2rem auto 0 0;
}



/* google map */

.goodle-map{
    width: 100%;
}



/* ========================

  MEDIA QUEIRES START HERE
==========================*/

@media (max-width: 1200px) {
  html {
    font-size: 60%;
  }

}

@media (max-width: 992px) {
  html {
    font-size: 50%;
  }

  /* header */
  .contact-us-header-contact .section-header{
    font-size: 2rem;
  }

  .contact-us-header-contact h1 {
    font-size: 4rem;
  line-height: 6rem;

  }

  
.contact-us-box .box-info h3{
  font-size: 3rem;
  line-height: 4.5rem;
}

.contact-us-box .box-info p{
  font-size: 1.75rem;
  line-height: 2.625rem;
}

.contact-us-box .btn{
  font-size: 1.5rem;
  max-width: 60%;
}

.contact-us-detail .info p{
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 2.625rem;
}
.contact-us-detail .section-header{
  font-size: 2rem;
}

.contact-us-detail h3{
  font-size: 3rem;
  line-height: 4.5rem;
  max-width: 100%;
}


}

@media (max-width: 768px) {

  .contact-us-header-contact h1{
    max-width: 90%;
  }
/* contact us start here */
  
.contact-us-box-wrapper{
  grid-template-columns: 1fr;
  padding: 0;
  row-gap: .5rem;
  background-color: #f9f9f9;
}

.contact-us-box-wrapper .contact-us-box{
  padding: 8rem 4rem 6rem;
  background-color: var(--primary-white);
}

.contact-us-box-wrapper .contact-us-box:nth-child(1),
.contact-us-box-wrapper .contact-us-box:nth-child(2){
    border-right: none;
}


.contact-us-detail{
  grid-template-columns: 1fr;
}



.contact-us-detail .contact-us-info{
  padding-bottom:4rem;
}

.contact-us-detail .info a,
.contact-us-detail .info p
{
  font-size: 1.75rem;
  max-width: 100%;
}

  
}
