html {
  font-size: 16px;
}

body {
  font-family: 'Geologica', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #050301;
  margin: 0;
}

*{
    box-sizing: border-box;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  line-height: 1.4;
}

h2 {
  font-size: 4rem;
  font-weight: 600;
  /* @media only screen and (max-width: 768px) {
    font-size: 2.5rem;
  } */
}

h6 {
  font-size: 1.25rem;
  font-weight: 300;
}
a {
  text-decoration: none;
  color:#050301;
}


.page__wrapper{
    /* max-width: 1560px;
    margin: 0 auto; */
    padding-top: 64px;
} 
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-bottom: .1px solid #d6d3d3;
    padding: 0 100px;
    height: 64px;
    position: fixed;
    width: 100%;
    top: 0;

  /* @media only screen and (max-width: 768px) {
    
    padding: 0 20px;
  } */
}
.header__nav > ul {
  display: flex;
  list-style: none;
  font-size: 14px;
  font-weight: 300;
  color: #050301;
  padding: 0;
  gap: 25px;
}


.brand_text {
  color: #196adc;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  transform: translateY(-3.2px);
  /* @media only screen and (max-width: 500px) {
    display: none;
  } */
}
.icon__wt_desc {
  display: flex;
  margin: 12px 0px;
  align-items: center;
}

.icon-img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.icon-img.no-mr {
  margin-right: 0px;
}

.banner__div {
  height: 800px;
  background-image: url('/assets/bg-img.jpeg');
  background-size: cover;
  animation: fadeInOutImg 1s linear infinite alternate;
  /* @media only screen and (max-width: 768px) {
    height: 400px;
  } */
}

.banner__content_div {
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 0 100px;
  /* @media only screen and (max-width: 768px) {
    background-color: rgba(0, 0, 0, 0.4);
    align-items: center;
    padding: 0 20px;
  } */
}

.banner__title_wrapper {
  margin: 0px 0px 80px 0px;
  color: #fff;
  margin-left: auto;
}

.banner__title_wrapper h2 {
  margin-bottom: 12px;
}

.banner__title_wrapper span {
  font-size: 1rem;
  font-weight: 200;
  margin-left: 2px;
}

.content__wrapper {
  padding: 70px 100px;

  /* @media only screen and (max-width: 1024px) {
    padding: 0 50px;
  } */
  /* @media only screen and (max-width: 768px) {
    padding: 0 20px;
  } */
}

.service__container__div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  /* @media only screen and (max-width: 768px) {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  } */
}

.service__article__container {
  background: #f6f6f6;
  border-radius: 8px;
  padding: 25px 20px;
}

.service__article__container > img {
  width: 40px;
  height: 40px;
}

.service__article__container > h6 {
  font-weight: 500;
  margin: 7px 0px 8px 0px;
}

.service__article__container > .desc {
  color: #555555;
  font-weight: 300;
}

.contact_div_container {
  display: flex;
  justify-content: space-between;
  margin-top: 85px;
  /* @media only screen and (max-width: 768px) {
    display: block;
  } */
}

.contact_div_container > .contact_div {
  font-size: 1rem;
  font-weight: 300;
  
}

.contact_div_container > .contact_div > div {
  margin: 75px 0px;
}

.contact_div_container > .contact_div .desc {
  color: #555555;
  margin-top: 10px;
  display: block;
}

.contact_div_container > .contact_img_div {
  width: 50%;
  height: 700px;
  flex-shrink: 0;
  animation: fadeInOutImg 1s linear infinite alternate;
  /* @media only screen and (max-width: 768px) {
    width: 100%;
    height: auto;
  } */
}

.contact_div_container > .contact_img_div > img {
  object-position: top left; 
  object-fit: cover;
  /* @media only screen and (max-width: 1024px) {
  
     object-position: center center;
  } */
}

.footer {
  color: #7a7978;
  font-size: 14px;
  font-weight: 300;
  display: flex;
  justify-content: center;
  margin: 40px 0px 35px 0px;
}


@keyframes fadeInOutImg {
  from {
      background-color: rgba(171, 166, 166, 0.1);
  }
  to {
     background-color:rgba(171, 166, 166, 0.4);
  }
}






  @media only screen and (max-width: 1024px) {
    .content__wrapper{
      padding: 0 50px;
    }
  }

  @media only screen and (max-width: 768px) {
    h2{     
       font-size: 2.5rem;  
    }
    .header {
      padding: 0 20px;
    }
    .content__wrapper{
      padding: 0 20px;
    }
    .banner__div{
      height: 400px;
    }
    .banner__content_div{
      background-color: rgba(0, 0, 0, 0.4);
      align-items: center;
      padding: 0 20px;
    }
    .service__container__div{
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .contact_div_container{
      display: block;
    }
    .contact_div_container > .contact_img_div{
      width: 100%;
      height: auto;
    }
    .contact_div_container > .contact_img_div img{
     object-position: center center;
    }
  }


   @media only screen and (max-width: 500px) {
    .brand_text{ 
      display: none;  
    }
   
  }