@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
:root {
  --blue: #0089da;
  --black: #111;
  --white: #fff;
  --light-color: #666;
  --light-bg: #eee;
  --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  --border: .1rem solid rgba(0, 0, 0, .3);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: var(--light-color);
}

section {
  padding: 5rem 10%;
}

img {
  max-width: 100%;
  height: auto;
}


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}


body {
  display: flex;
  flex-direction: column;
}


main {
  flex: 1;
}

.locais-section {
   padding: 2rem 32%;
   padding-bottom: 9rem;
   background-color: var(--light-bg);
   text-align: center;
}

.locais-container {
   max-width: 800px;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 4rem;
}

.locais-imagem {
   width: 200%;
   max-width: 700px;
   border-radius: 8px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.locais-btn {
   display: inline-block;
   padding: 1rem 4.5rem;
   background-color: var(--black);
   color: white;
   font-size: 2.3rem;
   text-transform: uppercase;
   border-radius: 4px;
   transition: all 0.3s ease;
   text-decoration: none;
}

.locais-btn:hover {
   background-color: var(--blue);
   transform: translateY(-3px);
   box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
   .locais-section {
      padding: 2rem 5%;
   }
   
   .locais-btn {
      padding: 0.8rem 2rem;
      font-size: 1.8rem;
   }
   .locais-imagem {
   width: 100%;
   max-width: 600px;
}
}

@media (max-width: 480px) {
   .locais-section {
      padding: 2rem 5%;
   }
   
   .locais-btn {
      padding: 0.8rem 2rem;
      font-size: 1.6rem;
   }
   .locais-imagem {
   width: 100%;
   max-width: 350px;
}
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--blue);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  transition: 0.2s linear;
}
.btn:hover {
  background: var(--blue);
  color: var(--black);
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--box-shadow);
  padding: 1rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: var(--white);
}
.header .logo {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
}
.header .logo img {
  max-height: 10rem;
}
.header .navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  margin-left: auto; 
}
.header .navbar a {
  font-size: 2.7rem;
  color: var(--black);
  text-transform: capitalize;
  margin: 0 1rem;
}
.header .navbar a:hover {
  color: var(--blue);
}
.header .icons {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
.header .icons div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-left: 0.3rem;
}
.header .icons div:hover {
  background: var(--black);
  color: var(--white);
}
.header #menu-btn {
  display: none;
}

.home {
  padding: 0;
  background-color: var(--light-bg);
}
.home .slide {
  min-height: 60rem;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.home .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, black,  transparent);
}
.home .slide .content {
  width: 50rem;
  position: relative;
  padding: 0 2rem;
}
.home .slide .content h3 {
  font-size: 6rem;
  color: var(--white);
  text-transform: capitalize;
  text-transform: uppercase;
}
.home .slide .content h4 {
  font-size: 1.4rem;
  color: rgb(179, 177, 177);
  line-height: 2;
  padding: 1rem 0;
}
.home .swiper-button-next,
.home .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  font-size: 3rem;
  background: var(--white);
}
.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: var(--blue);
}
.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 2rem;
  color: var(--black);
}
.home .swiper-button-prev {
  right: 7rem;
}

.heading-simples {
   text-align: center;
   font-size: 3rem;
   color: var(--black);
   margin-bottom: 3rem;
   text-transform: uppercase;
   padding-left: 0;
   border-left: none;
}

.clientes-carrossel{
   padding: 3rem 10%;
   background-color: var(--light-bg);
}

.clientes-carrossel .swiper{
   padding: 2rem 4rem;
   position: relative;
}

.clientes-carrossel .swiper-slide {
   height: 250px; 
   padding: 15px;
}

.clientes-carrossel img {
   max-height: 360px; 
   max-width: 90%;
}

.clientes-carrossel .swiper-button-next {
   right: 0;
}

.clientes-carrossel .swiper-button-prev {
   left: 0;
}

.clientes-carrossel .swiper-button-next,
.clientes-carrossel .swiper-button-prev{
   z-index: 10;
   background: var(--white);
   width: 75px;
   height: 75px;
   border-radius: 60%;
   transition: all 0.3s;
   transform: translateY(-50%);
}

.clientes-carrossel .swiper-button-next:hover,
.clientes-carrossel .swiper-button-prev:hover{
   background: var(--blue);
   color: white;
}

@media (max-width: 1024px) {
   .clientes-carrossel .swiper-slide{
      height: 360px; /* Dobro de 180px */
   }
   
   .clientes-carrossel img{
      max-height: 320px; /* Dobro de 160px */
   }
   .clientes-carrossel .swiper-button-next,
   .clientes-carrossel .swiper-button-prev{
   transform: translateY(-125%);
  }
}

@media (max-width: 768px) {
   .clientes-carrossel .swiper-slide{
      height: 300px; /* Dobro de 150px */
   }
   
   .clientes-carrossel img{
      max-height: 260px; /* Dobro de 130px */
   }

   .clientes-carrossel .swiper{
      padding: 2rem 5rem; /* Mais espaço para setas */
   }
   
   .swiper-button-next,
   .swiper-button-prev {
      width: 50px;
      height: 50px;
   }
   
   .swiper-button-next::after,
   .swiper-button-prev::after {
      font-size: 3.8rem;
   }

   .clientes-carrossel .swiper-button-next,
   .clientes-carrossel .swiper-button-prev{
   transform: translateY(-125%);
  }
}


@media (max-width: 480px) {
   .clientes-carrossel .swiper-slide{
      height: 240px; /* Dobro de 120px */
   }
   
   .clientes-carrossel img{
      max-height: 200px; /* Dobro de 100px */
   }

   .clientes-carrossel .swiper-button-next,
   .clientes-carrossel .swiper-button-prev{
   transform: translateY(-80%);
  }
}

.video-section {
   padding: 7.5rem 20%;
   text-align: center;
   background-color: var(--light-bg);
}

.video-container {
   max-width: 800px;
   margin: 0 auto;
   position: relative;
}

.youtube-thumbnail {
   position: relative;
   cursor: pointer;
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.youtube-thumbnail img {
   width: 100%;
   height: auto;
   display: block;
   transition: transform 0.3s;
}

.youtube-thumbnail:hover img {
   transform: scale(1.02);
}

.play-button {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 80px;
   height: 80px;
   background: rgba(0, 137, 218, 0.8);
   border-radius: 50%;
}

.play-button::after {
   content: '';
   position: absolute;
   left: 55%;
   top: 50%;
   transform: translate(-50%, -50%);
   border-style: solid;
   border-width: 15px 0 15px 25px;
   border-color: transparent transparent transparent white;
}

/* Estilos do modal */
.video-modal {
   display: none;
   position: fixed;
   z-index: 1000;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0,0,0,0.9);
}

.modal-content {
   position: relative;
   margin: 5% auto;
   padding: 20px;
   width: 80%;
   max-width: 900px;
}

.close-modal {
   position: absolute;
   top: -40px;
   right: 0;
   color: white;
   font-size: 35px;
   font-weight: bold;
   cursor: pointer;
}

#youtubeIframe {
   width: 100%;
   height: 500px;
   display: block;
}

/* Responsividade */
@media (max-width: 768px) {
   .modal-content {
      width: 95%;
   }
   
   #youtubeIframe {
      height: 300px;
   }
   
   .play-button {
      width: 60px;
      height: 60px;
   }
   
   .play-button::after {
      border-width: 10px 0 10px 18px;
   }

   .video-container {
    width: 100%;
   max-width: 700px;
}
}

@media (max-width: 480px) {
    .video-section {
        padding: 2rem 3%;
    }
    
    .youtube-thumbnail {
        border-radius: 4px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .heading-simples {
        font-size: 1.8rem; 
    }
}


.atuacao {
  padding: 5rem 10%;
  background-color: var(--light-bg);
  text-align: center;
}

.atuacao h2 {
  font-size: 2.8rem;
  color: var(--black);
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.atuacao-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.atuacao-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  max-width: 350px;
  flex: 1 1 300px;
  text-align: left;
}

.atuacao-box h3 {
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-align: center;
}

.atuacao-box p {
  font-size: 1.5rem;
  color: #444;
  line-height: 1.8;
  text-align: center;
}


.about{
  background-color: var(--light-bg);
}

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.about .row .video {
  flex: 1 1 41rem;
}
.about .row .video video {
  width: 100%;
}
.about .row .content {
  flex: 1 1 41rem;
}
.about .row .content h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: capitalize;
}
.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}
.about .box-container {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  align-items: flex-end;
}
.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
}
.about .box-container .box h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
}
.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 0.5rem;
}

.services {
  background: var(--light-bg);
}
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}
.services .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border: var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services .box-container .box:hover img {
  transform: translateY(-1rem);
}
.services .box-container .box img {
  width: 100%;
  max-width: 25rem;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 1.5rem;
  transition: 0.2s linear;
  border-radius: 0.5rem;
}
.services .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}
.services .box-container .box p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}


.projects {
  background: var(--light-bg);
}
.projects .heading {
  color: var(--black);
}
.projects .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.projects .box-container .box {
  cursor: initial;
  display: block;
  text-decoration: none;
  color: inherit;
}

.projects .box-container .box .image {
  height: 0;
  padding-bottom: 75%; /* Proporção 4:3 para as imagens */
  position: relative;
  overflow: hidden;
}
.projects .box-container .box .image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.2s linear;
}
.projects .box-container .box .content {
  display: flex;
  background: var(--white);
  justify-content: space-between;
}
.projects .box-container .box .content .info {
  padding: 1rem 2rem;
}
.projects .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
}
.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}
.projects .box-container .box .content i {
  width: 7.5rem;
  font-size: 3rem;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  line-height: 7.5rem;
}

.projects .box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.projetos-finalizados {
   background-color: var(--light-bg);
   padding: 5rem 10%;
}

.portfolio {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
}

.projeto {
   position: relative;
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 4px 12px rgba(0,0,0,0.1);
   transition: transform 0.3s;
}

.projeto:hover {
   transform: translateY(-10px);
}

.projeto-imagem {
   position: relative;
   height: 250px;
}

.projeto-imagem img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.projeto-overlay {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
   color: white;
   padding: 2rem 1.5rem;
   transform: translateY(100%);
   transition: transform 0.3s;
}

.projeto:hover .projeto-overlay {
   transform: translateY(0);
}

.projeto-overlay h3 {
   font-size: 2rem;
   margin-bottom: 0.5rem;
   color: var(--white);
}

.projeto-overlay p {
   font-size: 1.4rem;
   margin-bottom: 0.3rem;
   color: rgba(255,255,255,0.9);
}

/* Responsividade */
@media (max-width: 768px) {
   .portfolio {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
   }
   
   .projeto-imagem {
      height: 200px;
   }
}

.pricing {
  background: var(--light-bg);
}
.pricing .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.pricing .box-container .box {
  background: var(--white);
  text-align: center;
  padding: 2rem;
  border: var(--border);
  box-shadow: var(--box-shadow);
}
.pricing .box-container .box i {
  font-size: 3rem;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  background: var(--blue);
  color: var(--black);
}
.pricing .box-container .box h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  font-weight: normal;
}
.pricing .box-container .box .price {
  padding: 1rem 0;
  font-size: 5rem;
  color: var(--black);
  text-transform: capitalize;
}
.pricing .box-container .box .price span {
  font-size: 2rem;
}
.pricing .box-container .box .list {
  padding: 1rem 0;
}
.pricing .box-container .box .list p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.contact {
  background: var(--light-bg);
}
.contact .heading {
  color: var(--black);
  font-size: 3.8rem;
  text-align: center;
  border-left: none;
  border-bottom: 1rem solid var(--blue);
  padding-bottom: 1rem;
  padding-left: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.contact .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.contact .row h1 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: capitalize;
  text-align: center;
}
.contact .row .map {
  width: 100%;
  height: 45rem;
  border-radius: 1rem;
  overflow: hidden;
  border: none;
}
.contact .row .contact-info {
  width: 100%;
  max-width: 1200px;
  background: var(--white);
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  text-align: center;
}
.contact .row .contact-info h3 {
  font-size: 2.8rem;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 3rem;
  text-align: center;
}
.contact .row .contact-info .info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}
.contact .row .contact-info .info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 35rem;
}
.contact .row .contact-info .info-item .icon {
  width: 8rem;
  height: 8rem;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--blue);
  font-size: 3.8rem;
}
.contact .row .contact-info .info-item .text h4 {
  font-size: 2.8rem;
  color: var(--black);
  margin-bottom: 0.8rem;
}
.contact .row .contact-info .info-item .text p {
  font-size: 2.2rem;
  color: var(--light-color);
  line-height: 1.8;
}
.contact .row .contact-info .social-links {
  margin-top: 3rem;
}
.contact .row .contact-info .social-links h4 {
  font-size: 2.8rem;
  color: var(--black);
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact .row .contact-info .social-links .social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact .row .contact-info .social-links .social-icon {
  width: 6rem;
  height: 6rem;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 2.6rem;
  transition: all 0.3s ease;
}
.contact .row .contact-info .social-links .social-icon:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-5px);
}


.logo-container {
  text-align: center;
}
.logo-container img {
  height: 10rem;
  pointer-events: none;
  user-select: none;
}

footer {
  background-color: white;
  font-size: 2.7rem;
  color: black;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

footer a {
  color: black;
  text-decoration: none;
  margin: 0.6rem;
}

footer a:hover {
  color: var(--blue);
}

.footer-credit {
  margin-top: 1.2rem;
  margin-bottom: 1.9rem;
  font-size: 1.3rem;
  color: var(--light-color);
  text-align: center;
  opacity: 0.7;
}

.terms-section {
  background-color: var(--light-bg);
  padding: 5rem 2rem;
}

.terms-heading {
  text-align: center;
  border-left: none;
  border-bottom: 1rem solid var(--blue);
  padding-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.terms-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.terms-container h3 {
  color: var(--black);
  margin-top: 5.5rem;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  text-align: center;
}

.terms-container h3:first-child {
  margin-top: 0;
}

.terms-container p {
  text-align: justify;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.5rem;
  color: var(--light-color);
}

@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }

  section {
    padding: 3rem 5%;
  }
  
  .projects .box-container {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  }
  
  .services .box-container {
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  section {
    padding: 3rem 2rem;
  }

  .header #menu-btn {
    display: inline-block;
  }
  
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.2s linear;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1000;
  }
  
  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .header .navbar a {
    display: block;
    margin: 2rem;
    font-size: 2.5rem;
  }
  
  .home .slide .content {
    width: 40rem;
  }
  
  .home .slide .content h3 {
    font-size: 4rem;
  }
  
  .contact .row .map {
    height: 40rem;
  }
  
  .contact .row .contact-info {
    padding: 3rem;
  }
  
  .contact .row .contact-info .info-container {
    gap: 2rem;
  }
  
  .projects .box-container {
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  }
  
  .services .box-container {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
  
  .services .box-container .box img {
    max-width: 20rem;
  }
}

@media (max-width: 768px) {
  .header .search-form {
    width: 90%;
  }
  
  .header .login-form {
    width: 90%;
  }

  .home .slide {
    justify-content: center;
    min-height: 50rem;
  }
  
  .home .slide::before {
    background: linear-gradient(90deg, black, transparent);
  }
  
  .home .slide .content {
    text-align: center;
    width: 100%;
  }
  
  .home .slide .content h3 {
    font-size: 3rem;
  }
  
  .terms-container {
    padding: 2rem;
  }
  
  .about .row .content h3 {
    font-size: 3rem;
  }
  
  .services .box-container {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
  
  .services .box-container .box img {
    max-width: 18rem;
  }
  
  .projects .box-container {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
  
  .projects .box-container .box .content .info h3 {
    font-size: 1.5rem;
  }
  
  .projects .box-container .box .content .info p {
    font-size: 1.3rem;
  }
  
  .projects .box-container .box .content i {
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
  }
  
  .footer .links {
    flex-direction: column;
    align-items: center;
  }
  
  .footer .links .btn {
    width: 80%;
    max-width: 300px;
    margin: 0.5rem auto;
  }
  
  .contact .row .contact-info {
    padding: 2rem;
  }
  
  .contact .row .map {
    height: 35rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  
  .header .logo img {
    max-height: 6.5rem;
  }
  
  .home .slide .content h3 {
    font-size: 2.5rem;
  }
  
  .heading {
    font-size: 2.5rem;
  }
  
  .about .row .content h3 {
    font-size: 2.5rem;
  }
  
  .about .box-container .box h3 {
    font-size: 3rem;
  }
  
  .services .box-container {
    grid-template-columns: 1fr;
  }
  
  .services .box-container .box img {
    max-width: 100%;
    height: auto;
  }
  
  .services .box-container .box h3 {
    font-size: 1.6rem;
  }
  
  .projects .box-container {
    grid-template-columns: 1fr;
  }
  
  .projects .box-container .box .image {
    height: auto;
    padding-bottom: 75%;
  }
  
  .contact .row .contact-info h3 {
    font-size: 2rem;
  }
  
  .terms-container h3 {
    font-size: 2rem;
  }
  
  .contact .row .contact-info .social-links .social-icons {
    gap: 1rem;
  }
  
  .contact .row .contact-info .social-links .social-icon {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.8rem;
  }
  
  .contact .row .map {
    height: 30rem;
  }
}

.home-banner {
  min-height: 60vh;
  padding: 2rem 1rem;
  background-position: center;
  background-size: cover;
}

.home-banner .content h3 {
  font-size: 2rem;
}

.home-banner .content h4 {
  font-size: 1.3rem;
}

.home-banner .btn {
  font-size: 1.4rem;
  padding: 0.8rem 2rem;
}


.fa-times {
  transform: rotate(180deg);
}


