 :root {
    --primary-color: #042A2B;
    --secondary-color: #694A38;
    --tertiary-color: #838E83;
 }

 body {
    padding-top: 70px; 
}
 
 .navbar {
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 1000; 
    display: flex;
    gap: 10rem;
    background-color: white;
    color: var(--primary-color);
    justify-content: center;
    align-items: center;
 }

 .hamburger {
    display: none; 
    background: none;
    border: none;
    color: black;
    font-size: 30px;
    cursor: pointer;
}

 .section-banner {
    background-image: url(./assets/imgs/Banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
 }

 .container-banner {
    padding: 5rem;
 }

 .container-banner h1{
    font-size: 80px;
    color: var(--primary-color);
    line-height: 5rem;
 }

 .container-banner p{
    margin-top: 1rem;
    font-size: 21px;
    color: var(--secondary-color);
 }

 .container-banner button {
    margin-top: 2rem;
    border: none;
    background-color: var(--primary-color);
    padding: 1rem 3rem;
    color: white;
    font-size: 27.2px;
    font-style: italic;
 }

 .container-email {
    display: flex;
    justify-content: space-between;
    background-color: var(--secondary-color);
    padding: 1rem 5rem;
 }

 .emails {
    display: flex;
    align-items: center;
    color: #B67F5F;
 }

 .emails p {
    border-left: 3px solid #B67F5F;
    margin-left: 2rem;
    padding: 1rem;
 }

 .container-services-text {
    display: flex;
    justify-content: center;
    gap: 74px;
    padding: 7rem;
 }

#logo2 {
    width: 141px;
    height: 364px;
}

#services-img {
    box-shadow: 10px 10px 10px black;
}

.services-text p{
    font-size: 33.08px;
    color: var(--primary-color);
    font-weight: 300;
    max-width: 502px;
    line-height: 2.5rem;
}

.services-text input{
    font-size: 33.08px;
    font-style: italic;
    color: white;
    background-color: var(--primary-color);
    padding: 1rem 3rem;
}

.container-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.services {
    background-color: #B67F5F;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 407px;
    height: 273px;
    position: relative;
}

.services h3{
    color: white;
    font-size: 29.84px;
    font-style: italic;
}

.services p{
    color: #694A38;
    font-size: 29.09px;
    margin: 0 2rem;
}

.services input {
    background-color: var(--primary-color);
    color: white;
    font-size: 20.76px;
    font-weight: 200;
    padding: 1rem 2rem;
    position: absolute;
    bottom: -20px;
    right: -20px;
}

.section-reviews {
    margin-top: 4rem;
    background-color: var(--tertiary-color);
    padding: 5rem;
}

.container-reviews { 
    background-color: #D9D9D9;
    border-radius: 2rem;
    display: flex;
    padding: 3rem;
    align-items: center;
    gap: 10rem;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.container-reviews-right { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.review {
    max-width: 295px;
}

.reviews-title h2 {
    font-size: 55.83px;
}

.reviews-title p {
    font-size: 29.09px;
}

.review p {
    font-size: 25.29px;
}

.review h4 {
    font-size: 25.29px;
    font-weight: bold;
}



.section-contacts{
    display: flex;
    padding: 8rem;
    justify-content: center;
    gap: 5rem;
}

.container-contacts h2 {
    font-size: 75.21px;
    font-weight: bold;
}

.container-contacts p {
    font-size: 33.95px;
}

.icon-socialmedia {
    display: flex;
    margin-top: 1rem;
}

.container-contacts h3 {
    font-size: 41.54px;
    font-weight: 200;
    margin-top: 3rem;
    border-top: solid 3px var(--primary-color);
}

.social-medias{
    display: flex;
    margin-top: 1rem;
    gap: 4rem;
}


.footer {
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container-footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: #B67F5F;
    gap: 5rem;
    padding: 5rem;
}

.container-footer p {
    font-size: 23.64px;
}

.container-footer h3 {
    font-size: 28.13px;
    font-weight: bold;
}

.footer-texts {
    max-width: 350px;
}

.footer-terms {
    background-color: #452f22;
    color: white;
    display: flex;
    justify-content: space-evenly;
    padding: 1rem;
}

.footer-terms a{
    color: white;
}

.navbar a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 20px;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: var(--secondary-color); 
    border-bottom: solid 2px var(--secondary-color);
}


input[type="button"] {
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

input[type="button"]:hover {
    background-color: var(--secondary-color); 
    color: var(--primary-color); 
}


.services input:hover {
    background-color: var(--tertiary-color);
    color: white;
}


.icon-socialmedia img:hover {
    transform: scale(1.1); 
    transition: transform 0.3s ease;
}


.social-medias img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}



#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #f5f5f5; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease; 
    opacity: 1;
}

#loading-screen.fade-out {
    opacity: 0; 
    pointer-events: none; 
}

.skin-icon {
    width: 150px;
    height: 150px;
}


.background-circle {
    fill: none;
    stroke: #ddd; 
    stroke-width: 10;
}


.loading-circle {
    fill: none;
    stroke: #ffcc99;
    stroke-width: 10;
    stroke-dasharray: 283; 
    stroke-dashoffset: 283; 
    animation: fill 2s linear forwards;
}

.loading-text {
    margin-top: 20px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #694A38;
}

body.loading #loading-screen {
    display: none;
}

@keyframes fill {
    from {
        stroke-dashoffset: 440;
    }
    to {
        stroke-dashoffset: 0;  
    }
}

.menu {
    display: none; 
    position: fixed; 
    top: 57%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    background-color: #452f22;
    width: 100%; 
    height: 100%; 
    z-index: 2; 
    overflow-y: auto; 
    padding: 1rem; 
}

.menu a {
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.menu a:hover {
    background-color: white;
    color: black;
    transition: .6s;
}

.menu.show {
    display: block;
}





.container-email {
    display: flex;
    justify-content: flex-start;
    overflow: hidden; 
    width: 100%;
  }
  
  .emails {
    flex: 0 0 auto;
    width: 40%; 
    text-align: center;
    animation: slide 10s linear infinite; 
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%); 
    }
  }

  @media (max-width: 1182px) {
    .navbar {
      gap: 3rem;
      transition: .5s;
    }

    .logo4{
        display: none !important;
    }

    
  }

  @media (max-width: 1000px) {
    .container-services-text{
        flex-wrap: wrap;
    }

    .emails{
        width: 60%; 
    }
  }

  @media (max-width: 1236px) {
    #logo2 {
        display: none;
    }

    .section-contacts{
        flex-wrap: wrap;
    }
  }

  @media (max-width: 1760px) {
    .logo4 {
        display: none;
    }
  }

  @media (max-width: 826px) {
    .navbar {
      justify-content: space-around;
    }

    .navbar a:nth-child(1),
    .navbar a:nth-child(2),
    .navbar a:nth-child(4),
    .navbar a:nth-child(5) {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .maps{
        width: 100%;
      
    }

    .maps-iframe{
        width: 100%;
    }

    .section-contacts{
        padding: 8rem 2rem;
    }

    .reviews-title h2{
        font-size: 2rem;
    }

    .container-banner button {
        padding: 1rem 1rem;
    }
  }


  @media (max-width: 500px) {
    .container-banner h1{
        font-size: 3rem;
    }

    #services-img {
        width: 100%;
        height: 50vh;
        
    }

    .services-text p{
        font-size: 1.5rem;
    }

    .services-text input{
        font-size: 1.5rem;
    }

    .container-services-text{
        padding-inline: 2rem;
    }

    .section-reviews{
        padding-inline: 1rem;
    }

    .container-contacts h2{
        font-size: 3rem;
    }

    .container-contacts p{
        font-size: 1rem;
    }
    
    .services input {
        position: relative;
    }

    .container-banner button {
        position: relative;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .emails{
        width: 100%; 
    }
  }