* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'work sans', sans-serif;
}

:root {
    --h1-font: 5rem;
    --h2-font: 2.9rem;
    --p-font: 1.1rem;
    --bg-color: linear-gradient(to right, #add0d8, #4a4949);
    --text-color: #ffffff;
    --main-color: #1aa090;
    --other-color: #d6d6d6;
    --bd-color:linear-gradient(#09B0DA 0%, #516395 100%);

    --primary-color: #edf2fc;
    --secondary-color: #212121;
}

.dark-theme {
    --bg-color: #000106;
    --bd-color:  #000106;
    transition: 0.5s ease-in-out;
}

.icon {
    background-color: var(--primary-color);
    color: #1e202aa1;
    border-radius: 50%;
    padding: 6px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: .5s;
}

.icon:hover {
    transform: translateX(-5px);
}

::selection {
    background-color: #09B0DA;
    color: #fff;
}

::-webkit-scrollbar {
    height: .5rem;
    width: 1rem;
    display: none;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #fdf9f9, #09B0DA);
    background-color: var(--primary-color);
    /* Fix the variable name */
    background: linear-gradient(to right, #add0d8, #09B0DA);
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    transition: 0.5s ease-in-out;
}




header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0; 
    z-index: 1000;
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 30px 15%;
    transition: padding .5s;
    height: 100px;
}

header.sticky {
    padding: 10px 15%;
    background: rgba(0, 0, 0, .1);
    backdrop-filter: blur(50px);
}




.drope-menu {
    background: var(--bd-color);
    line-height: 20px;
    position: absolute;
    top: 200px;
    border: 3px solid #fff;
    border-radius: 20px;
    border-top: none;
    opacity: 0;
    visibility: hidden;
}

.drope-menu li a {
    width: 100%;
    display: block;
    font-weight: 400;
}



.navbar li:hover .drope-menu {
    border-radius: 20px;
    top: 75px;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}



#showEntreprise:checked ~ .drope-menu,
#showResour:checked ~ .drope-menu,
#showServices:checked ~ .mega-box,
#showSolutions:checked ~ .mega-box {
    max-height: 100%;
}

.navbar input {
    display: none;
}

.mobile-item {
    display: none;
}

.mega-box {
    border-radius: 20px;
    padding: 0 6%;
    position: absolute;
    top: 100px;
    width: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}

.mega-box .content {
    background: var(--bd-color);
    border: 3px solid #fff;
    border-top: none;
    border-radius: 20px;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.content .row {
    width: calc(25% - 30px);
    line-height: 45px;
}

.content .row img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.content .row h2 {
    cursor: auto;
    color: var(--primary-color);
    border-width: 3px;
    font-weight: 500;
    font-size: 25px;
}

.content .row .mega-links {
    margin-left: -40px;
    border-left: 3px solid rgba(255, 255, 255, 0.09);
}

.content .row .mega-links p {
    cursor: auto;
    width: 500px;
    padding-left: 50px;
    font-weight: 400;
    font-size: 1.3rem;
    color: #fff;
    line-height: 40px;
}

.content .row:nth-child(1),
.content .row:nth-child(2) {
    border-left: 0px;
}

.row .mega-links li {
    padding: 0 20px;
}

.row .mega-links li a {
    padding: 0 20px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 20px;
    display: block;
}

.navbar li:hover .mega-box {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease; 
}




.logo img {
    height: 90px;
    width: 90%;
}

.navbar {
    display: flex;
}

.navbar a {
    position: relative;
    padding: 10px 25px;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-color);
    transition: .40s ease;
    border-radius: 20px;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .5s;
}



.navbar a:hover::before {
    width: 100%;
}

#language-selector {
    display: inline-block;
    padding: 10px 15px;
    background: var(--primary-color);
    border-radius: 20px;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 500;
    margin-right: 20px;
    transition: all .40s ease;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none; 
    appearance: none; 
    border: none; 
}

#language-selector option {
    background-color: var(--primary-color); 
    color: var(--secondary-color); 
}

#language-selector:hover {
    transform: translateX(-7px);

}






.drop-down {
    margin-right: 20px;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    width: 150px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 20px;
    transition: .5s;
}

.drop-down .text {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
}

.drop-down:hover {
    transform: translateX(-7px);

}

.boxe .about-text {
    background: var(--bd-color);
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 20px;
}

.wrapper img {
    height: 25px;
}
.item img {
    height: 22px;
}
.arrow {
    font-size: 30px;
}

.wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.liste {
    margin-top: 10px;
    background-color: #fff;
    position: absolute;
    top: calc(100% + 5px); 
    left: 0;
    border-radius: 20px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    max-height: 250px;
    overflow-y: auto;
    width: 100%;
    display: none;
}

.liste.show {
    display: block;
}

.item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    gap: 1rem;
}

.item:hover {
    background-color: rgb(211, 211, 211);
}




.h-btn {
    display: flex;
    align-items: center;
}

.h-btn2 {
    display: inline-block;
    padding: 10px 12px;
    background: var(--primary-color);
    border-radius: 20px;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 500;
    margin-left: 20px;
    transition: all .40s ease;
    cursor: pointer;
}

.h-btn1 {
    color: var(--text-color);
    font-weight: 500;
    font-size: 18px;
}

.h-btn2:hover {
    transform: translateX(-7px);
}

#menu-icon {
    color: var(--text-color);
    font-size: 36px;
    margin-left: 5px;
    cursor: pointer;
    display: none;
}






section {
    padding: 80px 15% 70px;
}

/* home */


.home{
    height: 100vh;
    display: flex;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-flow: column;
    background-image: linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)), url(/assets/image/simon-kadula-gkndM1GvSA-unsplash.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 30rem;
}

.home .content {
    position: relative;
    z-index: 1000;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.home .content h1 {
    margin: 0;
    margin-bottom: 30px;
    padding: 0;
    font-size: 4em;
    text-transform: uppercase;
}

.home .content p {
    padding: 8px;
    background: linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35));
    border-radius: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
    font-size: 1.4em;
}


.features-box{
    width: 100%;
    display: flex;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35));
    border-radius: 20px;
    line-height: 1.5;
    margin-bottom: 15px;
}
 
.features-box i{
    color: #fff;
    margin-right: 15px;
    font-size: 2rem;
}
.features-box span{
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    font-size: 1.5rem;
}



.features-box:hover{
    background: var(--bd-color);
    transition: all ease 0.3s;
}
 
.feature-details{
    position: absolute;
    bottom:75px;
    left: 50%;
    transform: translateX(-50%);
    width:100%;
    height: auto;
    padding: 10px;
    background: var(--bd-color);
    color: #ebebeb;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.10);
    display: none;
    animation: fade 0.2s;
    z-index: 1000;
}
.feature-details:after{
    content: '';
    width:0px;
    height: 0px;
    border-bottom: 5px solid transparent;
    border-left: 7px solid transparent;
    border-top: 7px solid #242424;
    border-right: 5px solid transparent;
    position: absolute;
    left: 50%;
    top: 100%;
}
.features-box:hover .feature-details{
    display:block;
}
.chose-plan-btn{
    font-weight: 700;
    border-radius: 25px;
    padding: 18px 27px;
    border: 2px solid #fff;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all .50s ease;

}
.chose-plan-btn:hover{
    background-color: #fff;
    color: #212121;
    transform: translateY(-7px) scale(0.9);
}
@keyframes fade{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.top-bar{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    border-radius: 20px;
    padding: 10px 25px;
    color: #ffffff;
    background-color: #2c2c2c;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.15);
}
.popular .box-top-section{
    background-color: #fed000;
}
.price-box:hover .box-top-section,
.price-box:hover .box-features-section{
    box-shadow: 2px 2px 30px rgba(0,0,0,0.09);
    transition: all ease 0.2s;
}
@media(max-width:1160px){
    .price-box-container{
        width:800px
    }
    .price-box{
        flex-grow: 1;
    }
}
@media(max-width:810px){
   .price-box-container{
       width: 100%;
   } 
}
@media(max-width:570px){
    .price-box{
        width:100%;
        margin: 20px 10px;
        box-shadow: 2px 2px 30px rgba(0,0,0,0.05);
    }
}


.banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.banner .content {
    padding-top: 5rem;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.banner .content h1 {
    margin: 0;
    margin-bottom: 30px;
    padding: 0;
    font-size: 4em;
    text-transform: uppercase;
}

.banner .content p {
    padding: 8px;
    background: linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35));
    border-radius: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
    font-size: 1.4em;
}


/* choisir */

.choisir {
    padding: 80px 0 70px;

}
.slider {
    height: 250px;
    margin: auto;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: auto;
    animation: scroll 40s linear infinite;
}

.slide-track:hover {
    animation-play-state: paused;
}


.slide {
    height: 250px;
    width: 200px;
    display: flex;
    align-items: center;
    padding: 15px;
    perspective: 100px;
}

.slide img {
    transition: transform 1s;
    border-radius: 20px;
    width: 100%;

}

.slide img:hover {
    transform: translateZ(20px);
}

.slider::before,
.slider::after {
    background: transparent;
    content: '';
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
}

.slider::before {
    left: 0;
    top: 0;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Avantage */


.timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.timeline .timeline-row {
    display: flex;
    column-gap: 64px;
    flex-wrap: wrap;
}

.timeline-row .timeline-column {
    flex: 1 1 320px;
}

.timeline-column .titel {
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-size: 28px;
    margin: 32px 0 16px 30px;
}

.timeline-column .timeline-box {
    position: relative;
    border-left: 2px solid #fff;
}

.timeline-box .timeline-content {
    position: relative;
    padding-left: 27px;
}

.timeline-box .timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10.5px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
}

.timeline-content .content {
    background: var(--bd-color);
    padding: 24px;
    border: 2px solid #fff;
    border-radius: 20px;
    margin-bottom: 32px;
}

.timeline-content .content .year {
    font-size: 16px;
    color: var(--primary-color);
}



.timeline-content .content .year i {
    margin-right: 8px;
}

.timeline-content .content h3 {
    font-size: 19px;
    margin: 8px 0;
}

.timeline-content .content p {
    font-size: 16px;

}

.animate {
    position: absolute;
    top: 0;
    right: 0;
    width: 105%;
    height: 100%;
    background: var(--bg-color);
    animation: show-right 1s ease forwards;
    animation-delay: calc(.5s * var(--i));
}

@keyframes show-right {
    100% {
        width: 0;
    }
}


.download-button {
    cursor: pointer;
    position: relative;
    border-width: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    z-index: 1;
   }
   
   .download-button .docs {
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 40px;
    padding: 18px 28px;
    border-radius: 4px;
    z-index: 1;
    background: var(--bd-color);
    border: 2px solid #09B0DA;
    border-radius: 25px;
    transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
   }
   
   .download-button:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
   }
   
   .download {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    margin: 0 auto;
    z-index: -1;
    border-radius: 4px;
    transform: translateY(0%);
    background: var(--bd-color);
    border: 2px solid #09B0DA;
    border-radius: 25px;
    transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
   }
   
   .download-button:hover .download {
    transform: translateY(100%)
   }
   
   .download svg polyline,.download svg line {
    animation: docs 1s infinite;
   }
   
   @keyframes docs {
    0% {
     transform: translateY(0%);
    }
   
    50% {
     transform: translateY(-15%);
    }
   
    100% {
     transform: translateY(0%);
    }
   }



   .remembere {
    margin-right: 15px;
    cursor: pointer;
    font-weight: 500;
    color: #fff;
  }

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    color: #fff;
    transition: color 0.3s;
  }
  
  .custom-checkbox input[type="checkbox"] {
    display: none;
  }
  
  .custom-checkbox .checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
    transform-style: preserve-3d;
  }
  
  .custom-checkbox .checkmark::before {
    content: "\2713";
    font-size: 16px;
    color: transparent;
    transition: color 0.3s, transform 0.3s;
  }
  
  .custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--bd-color);
    border: var(--bd-color);
    transform: scale(1.1) rotateZ(360deg) rotateY(360deg);
  }
  
  .custom-checkbox input[type="checkbox"]:checked + .checkmark::before {
    color: #fff;
  }
  
  .custom-checkbox:hover {
    color: #666;
  }
  
  .custom-checkbox:hover .checkmark {
    border-color: #fff;
    background: transparent;
    transform: scale(1.05);
  }
  
  .custom-checkbox input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
    outline: none;
  }
  
  .custom-checkbox .checkmark,
  .custom-checkbox input[type="checkbox"]:checked + .checkmark {
    transition: background-color 1.3s, border-color 1.3s, color 1.3s, transform 0.3s;
  }
  
  


 /* video  */


.btnv {
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    transition: all .5s;
    background-color: transparent;
}

.btnv:hover {
    transform: translateY(-7px) scale(0.9);
}

.btnv .play {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--bd-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 25px #0001068e;
    transition: 0.5s;
}

 .btnv.active .play {
    box-shadow: 0 0 0 200vh var(--bg-color);
     
}

.btnv .play::before {
    content: '';
    position: absolute;
    border: 20px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 0px solid transparent;
    transform: translateX(5px);
}

.btnv p {
    font-weight: 500;
    font-size: 1em;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.clip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: 0.5s;

}

.clip.active {
    transition-delay: 0.5s;
    transform: translate(-50%, -50%) scale(1);

}

.clip video {
    transition: .5s;
    max-width: 1000px;
    outline: none;
    border-radius: 8px;
    box-shadow: 0 0 0 50vw rgba(0, 0, 0, 0.7);
}

.clip .close {
    position: absolute;
    top: 10px;
    right: 250px;
    cursor: pointer;
    font-size: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-color);
    transition: .5s;
}





.clip .close:hover {
    transform: translateX(-7px);

}


@media (max-width: 991px) {
    .clip video {
        max-width: 90%;
    }
}

 /* video  */










.btn {
    display: inline-block;
    text-align: center;
    padding: 18px 28px;
    background: var(--bd-color);
    color: var(--text-color);
    border: 2px solid #09B0DA;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    transition: all .50s ease;
}

.btn:hover {
    border: none;
    font-weight: 700;
    background: #fff;
    color: #212121;
    transform: translateY(-7px) scale(0.9);
}




.about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 4.5rem;
}
.about2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 4.5rem;
}

.about-img img {
    height: auto;
    width: 100%;
    border-radius: 20px;
    transition: 0.5s ease;

}



.about-text h2 {
    color: var(--primary-color);
    font-size: var(--h2-font);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 30px;
    margin-bottom: 30px;
}


/* faq */

.heading h1 {
    color: var(--primary-color);
    text-align: center;
    font-size: 3.2rem;
}
.faq .accordion-container {
    margin: 0px auto;
    margin-bottom: 2rem;
  }

  .faq .accordion-container .accordion {
    background: #e3f2fd;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    border-radius: 25px;
  }

  .faq .accordion-container .accordion:last-child {
    margin-bottom: 0.5rem;
  }

  .faq .accordion-container .accordion.active .accordion-heading {
    background: var(--bd-color);
  }

  .faq .accordion-container .accordion.active .accordion-heading i {
    transform: rotate(180deg);
  }

  .faq .accordion-container .accordion.active .accordion-content {
    transition: 5s;
    display: block;
  }

  .faq .accordion-container .accordion .accordion-heading {
    transition: 1s ease;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    background: var(--bd-color);
    cursor: pointer;
    border: 3px solid #fff;
    border-radius: 25px;
  }

  .faq .accordion-container .accordion .accordion-heading h3 {
    text-transform: capitalize;
    font-size: 18px;
    color: #fff;
  }

  .faq .accordion-container .accordion .accordion-heading i {
    transition: .5s ease;
    font-size: 20px;
    color: #fff;
  }


  .faq .accordion-container .accordion-content {
    padding: 20px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--secondary-color);
    display: none;
    animation: fadeIn 0.2s linear;
  }

  /* faq */





.Subscribe-content,
.Optimiser-content,
.Gestionnairer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)), url(https://www.hoteldelaplage.com/wp-content/uploads/2022/04/Hoteldelaplage203.jpeg);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 6rem 2rem;
}

.Subscribe-content h2,
.Optimiser-content h2,
.Gestionnairer-content h2 {
    color: var(--primary-color);
    font-size: var(--h2-font);
    margin-bottom: 12px;
}

.Subscribe-content p,
.Optimiser-content p,
.Gestionnairer-content p {
    font-weight: 500;
    font-size: var(--p-font);
    line-height: 30px;
    margin-bottom: 27px;
}




.newsletter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .newsletter .content {
    flex: 1 1 42rem;
  }

  .newsletter .content h3 {
    text-align: center;
    font-size: var(--h1-font);
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .newsletter .content p {
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.1rem;
    line-height: 2;
    color: #fff;
  }
  .newsletter form {
    flex: 1 1 42rem;
    background: transparent;
    border: 2px solid #fff;
    display: flex;
    padding: 0.5rem;
    border-radius: 20px;
    align-items: center;
  }
  .newsletter form .email {
    background: transparent;
    border: none;
    width: 100%;
    padding: 0 1.4rem;
    text-transform: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    border-radius: 20px;
  }

  .newsletter form .email::placeholder {
    color: #fff;
  }
  .newsletter form i {
    color: #fff;
    font-size: 2.2rem;
  }
  .newsletter form .btn {
    background: var(--bd-color);
    border: none;
    border-left: 3px solid #fff;
    margin-top: 0;
    color: #fff;
  }
  .newsletter .map-container iframe {
    border: 0;
  }

  #news {
    width: 20px;
    height: 20px;
    background-color: var(--bd-color);
  }





.contact {
    border-top: 4px solid #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 2rem;
}

.contact-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 25px;
}

.contact-content li {
    margin-bottom: 16px;
}

.contact-content li a {
    display: block;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 500;
    transition: all .45s ease;
}

.contact-content li a:hover {
    text-decoration: underline;
    transform: translateY(-3px) translateX(-5px);
    color: var(--text-color);
}

.contact-content p {
    max-width: 400px;
    font-weight: 500;
    font-size: var(--p-font);
    line-height: 30px;
    margin: 20px 0;
}

.contact-content img {
    height: 100px;
}

.icons-social a {
    display: inline-flex;
    padding: 11px;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    width: 47px;
    height: 46px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    margin: 5px 15px 20px 0;
    transition: 2s ease;
    box-shadow: 1px 3px 3px #222;
    transition: all .45s ease;
}

.icons-social i {
    font-size: 1.7rem;
}

.icons-social  .facebook{
    background-color: #0165E1;
    color: white;
  }
  .icons-social  .twiter {
    background-color: #000000;
  }
  .icons-social  .Instegram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);  }
  .icons-social  .youtube {
    background-color: #FF0000;
  }
  .icons-social  .linkedin {
    background-color: #0a66c2;
  }
  .icons-social  .tiktok {
    background-color: #000000;
  }

.icons-social a:hover {
    transform: translateY(-5px);
}


footer {
    text-align: center;
}

footer p {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.7rem;
}

footer .image-container {
    display: inline-block;
    vertical-align: middle;
} 

.to-what {
    border: 5px solid #fff;
    background: #25D366;
    position: fixed;
    bottom: 16px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .5s;
}

.to-top {
    background: #fff;
    position: fixed;
    bottom: 16px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #09B0DA;
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .5s;
}



.to-top:hover {
    transform: translateY(-7px) scale(0.9);
}

.to-what:hover {
    transform: translateY(-7px) scale(0.9);
}

.to-top.active {
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}

.to-what.active {
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}







@media (max-width: 1170px) {

    .drope-menu li a {
        font-size: 18px;
        border-radius: 5px;
    }

    .navbar .disktop-item {
        display: none;
    }
    .mobile-item {
        display: block;
        font-size: 20px;
        color: var(--text-color);
        font-weight: 500;
        font-size: 20px;
        padding: 15px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
        border-bottom: 5px solid rgba(255, 255, 255, 0.08);
    }
    
    .mobile-item:hover {
        color: var(--primary-color);
        
    }


    .drope-menu {
        background: var(--bd-color);
        border: none;
        position: static;
        opacity: 1;
        visibility: visible;
        top: 65px;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
    }

    .drope-menu li {
        text-align: right;
        padding-right: 10px;
        margin: 0;
    }

    .content .row .mega-links p {
        order: 2;
        width: 100%;
        max-width: 400px;
    }

    .mega-box {
        position: static;
        top: 65px;
        width: 100%;
        opacity: 1;
        visibility: visible;
        max-height: 0px;
        overflow: hidden;
        transition: all .5s ease;
        padding: 0 20px;
    }
    
    .mega-box .content {
        background: var(--bd-color);
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }

    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 4px solid rgba(255, 255, 255, 0.08);
    }

    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }

    .row .mega-links li {
        margin: 0;
    }

    .content .row h2 {
        border: none;
        font-size: 25px;
    }
}


@media (max-width: 1790px) {
    header {
        padding: 18px 6%;
    }
    
    section {
        padding: 70px 6% 60px;
    }

    header.sticky {
        padding: 7px 6%;
    }


    .feature {
        padding: 40px 6% 30px;
    }
}



@media (max-width: 1425px) {
    :root {
        --h1-font: 4.5rem;
        --h2-font: 2.6rem;
        --p-font: 1rem;
    }

    #mode {
        display: none;
 }

    

    header {
        padding: 15px 5%;
    }

    section {
        padding: 70px 5% 60px;
    }

    header.sticky {
        padding: 7px 5%;
    }

    .feature {
        padding: 40px 5% 30px;
    }
}



@media (max-width: 1170px) {
    #menu-icon {
        display: block;
    }
    .icons {
        display: inline-flex;
    }

    #check:checked~.icons #menu-icon {
        display: none;
    }

    .icons #close-icon {
        display: none;
    }

    #check:checked~.icons #close-icon {
        display: block;
    }




    .navbar {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        background: var(--bg-color);
        padding: 20px 15px;
        gap: 0.5rem;
        text-align: left;
        transition: all .50s ease;
        overflow-y: auto;
    }

    .navbar a {
        display: block;
        font-size: 20px;
        padding: 15px;
        border-bottom: 5px solid rgba(255, 255, 255, 0.08);
    }

    .navbar.open {
        right: 0;
    }
    


    :root {
        --h1-font: 4rem;
        --h2-font: 2rem;
        --p-font: 1rem;
    }

    .home {
        padding-top: 4rem;
        grid-template-columns: 1fr;
        gap: 1rem;
        height: 120vh;
    }

    .banner .content h1,
    .home .content h1,
    .home-rei .content h1 {
        font-size: 2em;
    }

    .banner .content p,
    .home .content p,
    .home-rei .content p {
        padding: 0 25px;
    }

    .home-img {
        width: 480px;
        height: 480px;
        margin: 0 auto;
        padding-top: 20px;
    }
    .about {
        grid-template-columns: 1fr;
    }
    .about2 {
        grid-template-columns: 1fr;
    }
    .about2 > div:first-child{
            order: 2;
    }


    #language-selector {
        margin-right: 25px;
    }







}


@media (max-width: 570px) {
    :root {
        --h1-font: 3.4rem;
        --h2-font: 2rem;
        --p-font: 15px;
    }


    .home {
        gap: 15px;
        height: 110vh;
    }
    .home-img {
        width: 400px;
        height: 400px;
        padding-top: 10px;
    }


    .newsletter .content h3 {
        font-size: 35px;
    }

    .Subscribe-content {
        padding: 4rem 1rem;
    }


    .login {
        padding: 5px 6px;
        font-size: 0.5rem;
    }


    .drop-down {
        padding: 5px 6px;
        margin-right: 5px;
        font-size: 10px;
        width: 100px;
    }

    .wrapper {
        gap: 0.5rem;
    }
    .wrapper img {
        justify-content: center;
        align-items: center;
        height: 10px;
    }

    .item img {
        justify-content: center;
        align-items: center;
        height: 10px;
    }
    .item .text {
        font-size: 12px;
        font-weight: 500;
    }

    .selected {
        font-size: 12px;
    }

    #language-selector {
        display: inline-block;
        padding: 5px 6px;
        background: var(--primary-color);
        border-radius: 20px;
        color: var(--secondary-color);
        font-size: 12px;
        font-weight: 500;
        margin-left: 10px;
        transition: all .40s ease;
        cursor: pointer;
    }


    .h-btn2 {
        display: inline-block;
        padding: 5px 6px;
        background: var(--primary-color);
        border-radius: 20px;
        color: var(--secondary-color);
        font-size: 12px;
        font-weight: 500;
        transition: all .40s ease;
        cursor: pointer;
    }

    .h-btn2 i {
        display: none;
    }

    .icon {
        background-color: var(--primary-color);
        border-radius: 50%;
        padding: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: .5s;
    }

    .logo img {
        height: 50px;
        width: 90%;
    }
}





