*{
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body{
    display: block;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

a{
  text-decoration: none;
}

.navbar-section{
    background-color: #121212;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    color: #ffffff;
  }

  .navbar-title img {
    margin-left: 1rem;
    width: 60px;
    height: 70px;
  }

  .navbar-title p {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin-left: 1rem;
  }

  .navbar-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-items {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }

  .navbar-items > li {
    list-style-type: none;
  }

  .navbar-links {
    text-decoration: none;
    color: black;
    font-size: 18px;
    letter-spacing: .8px;
    color: #ffffff;
  }
  
  .navbar-links:hover {
    color: #FFCC4A;
  }

  .navbar-btn {
    display: flex;
    align-items: center;
    width: 240px;
    height: 60px;
    color: #353535;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 28px;
    outline: transparent;
    background-color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all .4s ease;
  }

  .navbar-btn:hover{
    scale: 1.03;
  }

  .navbar-btn .icon{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #FFCC4A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
  }

  .navbar-btn .txt{
    margin-left: 0.8rem;
  }

  .navbar-btn .icon img{
    width: 22px;
    height: 20px;
    margin: 0 auto;
  }

  .active{
    color: #FFCC4A;
  }

  /* Hamburger Icon */
  .mobile-nav {
    display: none;
  }
  .hamb-icon {
    width: 26px;
    height: 26px;
    cursor: pointer;
  }
  .hamb-icon:hover {
    color: #0cc2ea;
  }
  .close-icon {
    width: 26px;
    height: 26px;
    cursor: pointer;
    display: block;
    color: #121212;
  }
  .close-icon i{
    font-size: 1rem;
  }
  /* Mobile Navbar */
  .mobile-navbar {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100%;
    background-color: white;
    z-index: 20;
    justify-content: center;
    align-items: center;
    transition: left .5s ease-in-out;
  }
  .mobile-navbar-close {
    position: absolute;
    top: 28px;
    right: 28px;
  }

  .open-nav {
    left: 0;
  }
  .mobile-navbar-links {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    font-size: 24px;
    gap: 24px;
    text-align: center;
  }
  .mobile-navbar-links li a {
    text-decoration: none;
    color: black;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    letter-spacing: .8px;
    transition: color .3s ease-in-out;
  }
  .mobile-navbar-links li a:hover {
    color: #FFCC4A;
  }
  /* Responsive */
  @media screen and (max-width: 1024px) {
    .navbar-btn, .navbar-items {
        display: none;
    }
    .mobile-nav {
        display: block;
    }
  }
  
  @media (min-width: 320px) {
    .navbar{
        margin: 0 1rem;
    }
  }

 /* -------------------hero section--------------- */

  .hero {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    background-image: url("assets/hero.png");
    background-size: cover;
    background-position: center;
    z-index: -1;
  }

  .hero-content{
    padding: 0 2rem;
  }
  
  .hero-section {
    padding: 32px;
    margin-top: 2rem;
  }
  
  /* Text section */
  .text-section {
    width: 45%;
    padding: 20px 32px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
  }
  
  .text-headline {
    margin-bottom: 12px;
    color: #181818;
    font-size: 2.6rem;
    font-weight: bold;
    letter-spacing: .7px;
  }

  .text-headline span{
    color: #800020;
  }
  
  .text-title {
    color: #800020;
    font-size: 1.4rem;
    font-weight: bold;
  }
  
  .text-descritpion {
    width: 95%;
    margin: 20px 0 30px;
    color: #595566;
    font-size: 1.2rem;
    letter-spacing: .7px;
    line-height: 1.6rem;
    text-align: justify;
  }

  .btns{
    display: flex;
    align-items: center;
  }

  .text-mail-btn {
    display: flex;
    align-items: center;
    width: 240px;
    height: 60px;
    color: #ffffff;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 28px;
    outline: transparent;
    background-color: #800020;
    font-size: 18px;
    cursor: pointer;
    transition: all .4s ease;
  }

  .text-mail-btn:hover{
    background-color: #181818;
  }

  .text-mail-btn .icon{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #FFCC4A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
  }

  .text-mail-btn .txt{
    margin-left: 0.8rem;
  }

  .text-mail-btn .icon img{
    width: 22px;
    height: 20px;
    margin: 0 auto;
  }
  
  .text-btn {
    width: 240px;
    height: 60px;
    color: white;
    border: 1px solid transparent;
    border-radius: 28px;
    outline: transparent;
    background-color: #800020;
    font-size: 18px;
    letter-spacing: .8px;
    cursor: pointer;
    transition: all .4s ease;
    margin-right: 1rem;
  }
  
  .text-btn:hover {
    color: #ffffff;
    background-color: #181818;
  }
  
  
  /* Scroll Btn */
  .scroll-up {
    width: 45px;
    height: 45px;
    display: none;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: white;
    border: 3px solid white;
    border-radius: 50%;
    background-color: #1A8EFD;
    position: fixed;
    bottom: 50px;
    right: 50px;
    font-size: 24px;
    z-index: 20;
    cursor: pointer;
  }  
  
  .show-scroll {
    display: flex;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .hero {
      height: auto;
    }

    .navbar-title img {
      margin-left: 0rem;
      width: 60px;
      height: 70px;
    }
    
    .hero-section {
      padding: 0.2rem;
      margin: 1rem auto 0;
      transform: translateX(-1rem);
    }
    
    /* Text section */
    .text-section {
      width: 90%;
    }
    
    .text-headline {
      margin-bottom: 0.5rem;
      font-size: 1.8rem;
      letter-spacing: .5px;
      text-align: center;
    }
    
    .text-title {
      color: #800020;
      font-size: 1.2rem;
      font-weight: bold;
      text-align: center;
    }
    
    .text-descritpion {
      width: 95%;
      margin: 20px 0 30px;
      color: #595566;
      font-size: 1rem;
      line-height: 1.2rem;
      text-align: center;
    }

    .btns{
      display: flex;
      align-items: center;
      flex-direction: column;
    }
  
    .text-mail-btn {
      width: 200px;
      height: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: all .4s ease;
    }
  
    .text-mail-btn:hover{
      background-color: #181818;
    }
  
    .text-mail-btn .icon{
      width: 40px;
      height: 40px;
      margin-left: 0.5rem;
    }
  
    .text-mail-btn .icon img{
      width: 22px;
      height: 20px;
      margin: 0 auto;
    }
    
    .text-btn {
      width: 200px;
      height: 50px;
      font-size: 1rem;
      margin-right: 0rem;
      margin-bottom: 1rem;
    }
    
  }


  @media screen and (min-width: 376px) and (max-width: 600px) {
    .hero-section {
      padding: 0.2rem;
      margin: 1rem auto 0;
      transform: translateX(-0.5rem);
    }
  }

  @media screen and (min-width: 601px) and (max-width: 992px) {
    .hero {
      height: 90vh;
    }

    .navbar-title img {
      margin-left: 0rem;
      width: 60px;
      height: 70px;
    }
    
    .hero-section {
      padding: 0.2rem;
      margin: 1rem auto 0;
      transform: translateX(0rem);
    }
    
    /* Text section */
    .text-section {
      width: 90%;
    }
    
    .text-headline {
      margin-bottom: 0.5rem;
      font-size: 1.8rem;
      letter-spacing: .5px;
      text-align: center;
    }
    
    .text-title {
      color: #800020;
      font-size: 1.2rem;
      font-weight: bold;
      text-align: center;
    }
    
    .text-descritpion {
      width: 95%;
      margin: 20px 0 30px;
      color: #595566;
      font-size: 1rem;
      line-height: 1.2rem;
      text-align: center;
    }

    .btns{
      display: flex;
      align-items: center;
      flex-direction: column;
    }
  
    .text-mail-btn {
      width: 200px;
      height: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: all .4s ease;
    }
  
    .text-mail-btn:hover{
      background-color: #181818;
    }
  
    .text-mail-btn .icon{
      width: 40px;
      height: 40px;
      margin-left: 0.5rem;
    }
  
    .text-mail-btn .icon img{
      width: 22px;
      height: 20px;
      margin: 0 auto;
    }
    
    .text-btn {
      width: 200px;
      height: 50px;
      font-size: 1rem;
      margin-right: 0rem;
      margin-bottom: 1rem;
    }
  }  

  @media screen and (min-width: 993px) and (max-width: 1200px) {
    .hero {
      height: 100vh;
    }

    .navbar-title img {
      margin-left: 1rem;
    }
    
    .hero-section {
      width: 45%;
      padding: 0.2rem;
      margin: 2rem 1rem 0;
      transform: translateX(0rem);
    }
    
    /* Text section */
    .text-section {
      width: 90%;
    }
    
    .text-headline {
      margin-bottom: 0.5rem;
      font-size: 1.8rem;
      letter-spacing: .5px;
      text-align: center;
    }
    
    .text-title {
      color: #800020;
      font-size: 1.2rem;
      font-weight: bold;
      text-align: center;
    }
    
    .text-descritpion {
      width: 95%;
      margin: 20px 0 30px;
      color: #595566;
      font-size: 1rem;
      line-height: 1.2rem;
      text-align: center;
    }

    .btns{
      display: flex;
      align-items: center;
    }
  
    .text-mail-btn {
      width: 200px;
      height: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: all .4s ease;
    }
  
    .text-mail-btn:hover{
      background-color: #181818;
    }
  
    .text-mail-btn .icon{
      width: 40px;
      height: 40px;
      margin-left: 0.5rem;
    }
  
    .text-mail-btn .icon img{
      width: 22px;
      height: 20px;
      margin: 0 auto;
    }
    
    .text-btn {
      width: 200px;
      height: 50px;
      font-size: 1rem;
      margin-right: 0.5rem;
      margin-bottom: 0rem;
    }
  }  
  
  @media screen and (max-width: 600px) {
    
    .scroll-up {
      bottom: 32px;
      right: 32px;
    }
  }


  /* -----------------------expertise---------------- */

.expertise{
  background-color: #800020;
  margin-top: 3rem;
}

.exp-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.exp-text h1{
  background-color: #FFCC4A;
  width: 40%;
  margin: 3rem auto;
  border-radius: 20px;
  font-size: 1rem;
  color: #121212;
  text-align: center;
}

.exp-text p{
  color: #ffffff;
  padding: 0 3rem;
  font-size: 1.2rem;
  text-align: justify;
}

.exp-img{
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.exp-img img{
  width: 80%;
  height: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .exp-container{
    margin-top: 3rem;
  }
  
  .exp-text h1{
    background-color: #FFCC4A;
    width: 30%;
  }
  
  .exp-img img{
    width: 60%;
    height: 60%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1024px) {
  .expertise{
    padding: 2rem 0;
  }

  .exp-container{
    flex-direction: row;
  }
  
  .exp-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width:70%;
  }

  .exp-text h1{
    width: 25%;
    font-size: 0.8rem;
    margin: 0 3rem;
  }
  
  .exp-text p{
    font-size: 1rem;
    line-height: 1.3rem;
  }
  
  .exp-img{
    display: flex;
    align-items: center;
    margin-top: 1rem;
  }
  
  .exp-img img{
    width: 70%;
    height: 70%;
    margin: 0 auto;
  }
}
  
@media screen and (min-width: 1200px) {
  .expertise{
    padding: 4rem 4rem;
  }
  
  .exp-text{
    width:60%;
  }

  .exp-text h1{
    width: 25%;
    font-size: 1.2rem;
    margin: 0 3rem;
  }
  
  .exp-text p{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .exp-img img{
    width: 80%;
    height: 80%;
  }
}

/* ----------------products------------- */

#products{
  padding: 2rem 0;
}

.pro-title h1{
  text-align: center;
  margin: 0 auto;
  font-size: 1rem;
  background-color: #FFCC4A;
  width: 50%;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.pro-card{
  width: 80%;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #EBEBEB;
  padding: 1rem 1.2rem;
}

.pro-card:hover{
  background-color: #181818;
  color: #ffffff;
  cursor: pointer;
}

.pro-card-cont{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pro-card img{
  width: 60px;
  height: 60px;
}

.pro-card p{
  font-size: 0.8rem;
  line-height: 1.2rem;
}
  
@media screen and (min-width: 768px) {

  #products{
    padding: 3rem 0;
  }

  .pro-title h1{
    width: 30%;
    border-radius: 20px;
    margin-bottom: 1.5rem;
  }
  
  .pro-card{
    width: 80%;
    margin: 0 auto;
    border-radius: 20px;
    background-color: #EBEBEB;
    padding: 1rem 1.2rem;
  }
  
  .pro-card-cont{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 2rem;
    align-items: center;
    justify-content: center;
  }
  
  .pro-card img{
    width: 60px;
    height: 60px;
  }
  
  .pro-card p{
    font-size: 0.8rem;
    line-height: 1.2rem;
  }
}

@media screen and (min-width: 1024px) {

  #products{
    padding: 6rem 0;
  }

  .pro-title h1{
    width: 30%;
    border-radius: 20px;
    margin-bottom: 2.2rem;
  }
  
  .pro-card{
    width: 90%;
    min-height: 280px;
  }
  
  .pro-card-cont{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 2rem;
    align-items: center;
    justify-content: center;
  }
  
  .pro-card img{
    width: 60px;
    height: 60px;
  }
  
  .pro-card p{
    font-size: 0.8rem;
    line-height: 1.2rem;
  }
}

@media screen and (min-width: 1200px) {

  #products{
    padding: 6rem 4rem;
  }

  .pro-title h1{
    width: 20%;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
  }
  
  .pro-card{
    width: 90%;
    padding: 1rem 1.2rem;
    min-height: 320px;
  }
  
  .pro-card-cont{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 2rem;
    align-items: center;
    justify-content: center;
  }
  
  .pro-card img{
    width: 80px;
    height: 80px;
  }

  .pro-card h4{
    font-size: 1.2rem;
  }
  
  .pro-card p{
    font-size: 1rem;
    line-height: 1.5rem;
  }
}


/* -------------banner------------ */

.banner{
  background-color: #800020;
  padding: 3rem 0;
}

.banner-cont{
  background-color: #181818;
  text-align: center;
  padding: 2rem 1rem;
  margin: 1rem;
  border-radius: 30px;
}

.banner-text h1{
  color: #ffffff;
}

.banner-text p{
  color: #Ffffff;
  line-height: 1.4rem;
}

.banner-text button{
  background-color: #FFCC4A;
  padding: 1rem 2rem;
  border-radius: 20px;
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.banner-text button:hover{
  background-color: #800020;
  color: #ffffff;
  cursor: pointer;
}

.banner-img img{
  width: 90%;
  height: 90%;
  border-radius: 10px;
}

.desktop{
  display: none;
}


@media screen and (min-width: 1024px) {
  .banner{
    padding: 5rem 0;
  }
  
  .banner-cont{
    background-color: #181818;
    text-align: left;
    padding: 2rem 1rem 2rem 3rem;
    margin: 1rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .banner-text h1{
    color: #ffffff;
  }
  
  .banner-text p{
    color: #Ffffff;
    line-height: 1.4rem;
    width: 80%;
  }
  
  .banner-text button{
    background-color: #FFCC4A;
    padding: 1rem 2rem;
    border-radius: 20px;
    border: none;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
  }
  
  .banner-text button:hover{
    background-color: #800020;
    color: #ffffff;
  }
  
  .banner-img img{
    width: 90%;
    height: 80%;
    border-radius: 10px;
  }
}

@media screen and (min-width: 1200px) {
  .banner{
    padding: 5rem 6rem;
  }

  .banner-text h1{
    font-size: 2rem;
  }
  
  .banner-text p{
    line-height: 2rem;
    font-size: 1.5rem;
    width: 70%;
  }
  
  .banner-text button{
    background-color: #FFCC4A;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
  }
  
  .banner-text button:hover{
    background-color: #800020;
    color: #ffffff;
  }
  
  .banner-img img{
    width: 90%;
    height: 90%;
    border-radius: 10px;
  }
}

/* ------------------footer---------- */
.footer{
  background-color: #181818;
  padding: 2rem 2rem 1rem;
}

.footer-cont{
  text-align: center;
  color: #ffffff;
}

.footer-cont hr{
  width: 80%;
}

.footer-cont p{
  font-size: 0.8rem;
}