* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: "Assistant";
    background-color: #f3f3f3;
    /* background-color: rgb(251, 135, 135); */
}
h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5{
    color: #222;
    font-family: 'Poppins';
}
.h1, .h2, .h3, .h4, .h5{}
h1, h2, h3, h4, h5{
    font-weight: 700;
}
h1, .h1{
    font-size: 36px;
}
h2, .h2{
    font-size: 30px;
}
h3, .h3{
    font-size: 22px;
}
h4, .h4{
    font-size: 20px;
}
h1 > span,
h2 > span,
h3 > span,
h4 > span
{
    color: #3388FF;
}
a{
    text-decoration: underline;
    color: #000;
}
a:hover, a:active{
    text-decoration: none;
}

.btn{
    border: none;
    border-radius: 25px;
    font-family: 'Poppins';
    padding: 30px 15px;
    outline: none;
    min-width: 60%;
    width: auto;
    text-decoration: none;
}

.btn-inverse {
    font-size: 18px;
    font-weight: 600;
    min-height: 50px;
    background-color: #3388FF;
    color: white;
    border: none; /* Optional: remove border if any */
    padding: 10px 20px; /* Add padding for better button size */
    border-radius: 25px; /* Rounded corners */
    cursor: pointer; /* Change cursor to pointer on hover */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
}

.btn-inverse:hover {
    background-color: #3366CC; /* Darker shade on hover */
    transform: scale(1.01); /* Slightly increase size */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Add shadow effect */
}

.btn-outline {
    color: #3388FF;
    border: 2px solid; /* Optional: remove border if any */
    border-color: #3366CC;
    border-radius: 25px; /* Rounded corners */
    cursor: pointer; /* Change cursor to pointer on hover */
    font-size: 18px;
    font-weight: 600;
    min-height: 50px;
    padding: 10px 20px; /* Add padding for better button size */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
}

.btn-outline:hover {
    background-color: #fff; /* Darker shade on hover */
    transform: scale(1.01); /* Slightly increase size */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Add shadow effect */
}
.color-white{
    color: #fff !important;
}
.color-grey{
    color: #575757;
}
.color-primary{
    color: #3388FF;
}
.cost-text{
    font-size: 40px;
    font-weight: 500;
    color: #3388FF;
}
.cost-text-small{
    font-size: 24px;
}
.video-player{
    width: 100%;
}
.video-player > iframe{
    width: 100%;
    height: 250px;
    border-radius: 8px;
    z-index: 3;
}

.modal{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8 );
    width: 100vw;
    height: 100vh;
    z-index: 30;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    overflow-y: scroll;
}
.modal .modal-card{
    width: 100%;
    max-width: 600px;
    padding: 15px;
    background-color: white;
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}
.modal-card > p{
    font-weight: 400;
}
.modal-card  .btn{
    font-weight: 400;
    margin: 0;
}
.modal-card input[type = "text"], .modal-card input[type = "tel"]{
    border: none;
    outline: none;
    height: 50px;
    width: 100%;
	font-size: 16px;
	color: black;
	font-weight: 500;
}
.modal-card strong{
    font-size: 20px;
}
.modal-card form > p#close{
    font-size: 18px;
    font-weight: 400;
    text-decoration: underline;
    cursor: pointer;
}
.modal-card form > p#close:hover, .modal-card form > p#close:active{
    text-decoration: none;
}
.modal-card label{
    font-size: 14px;
    font-weight: 400;
    width: 100%;
}
.modal-card .form-input{
    width: 100%;
    height: 70px;
    border-radius: 15px;
    border: 2px solid #3388FF;
    margin-top: 15px;
    display: flex;
    align-items: start;
    flex-direction: column;
    padding: 10px;
}
.menu{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8 );
    width: 100vw;
    height: 100vh;
    z-index: 30;
    padding: 20px 20px;
    display: none;
    overflow-y: scroll; 
    text-align: right;
}
.menu.open {
    display: block; /* Show menu when open class is added */
}
.menu > img {
    width: 15px;
    height: 15px;
    margin-bottom: 5px;
    cursor: pointer;
}
.menu .menu-list{
    text-align: left;
    width: 100%;
    height: calc(100% - 40px);
    list-style: none;
    background-color: white;
    padding: 10px 0;
}
.menu .menu-list li{
    padding: 10px 20px;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
}
.menu .menu-list .active > a{
    color: #3388FF;
}
.menu .menu-list a{
    text-decoration: none;
    color: #575757;
}
/* Navbar */
.position-fixed-top{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 20;
}
.nav-bar{
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: relative;
}
.nav-bar .hamburger{
    width: 32px;
    height: 25px;
    cursor: pointer;
}
.nav-bar .hamburger img{
    width: 25px;
    height: 100%;
}
.nav-bar .logo{
    height: 32px;
}
.nav-bar .logo img{
    height: 100%;
    object-fit: cover;
}
.nav-bar .action{
    float: right;
}
.nav-bar .modal-trigger .btn-outline{
    font-size: 16px;
    font-weight: 600;
    min-height: 50px;
    padding: 10px 16px; /* Add padding for better button size */
}

/* End Navbar */

/* Hero Section */

/* .hero{
    padding: 0 40px !important;
} */


.hero .title{
    padding-top: 220px;
    padding-bottom: 110px;
}
.hero .title p{
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}
.hero .title h1{
    font-weight: 900 !important;
}
.hero > .video-player{
    margin-top: 35px;
}
/* End Hero Section */

/* Offer section */
.offer-section {
    background-color: #3388FF;
    margin-top: 30px;
    padding: 120px 0px;
    position: relative;
    z-index: -2;
    overflow: hidden;
}
.offer-section::after{
    position: absolute;
    content: '';
    width: 160%;
    background-color: #f3f3f3;
    height: 100px;
    border-radius: 50%;
    top: -50px;
    left: -30%;
}
.offer-section::before{
    position: absolute;
    content: '';
    width: 160%;
    background-color: #f3f3f3;
    height: 100px;
    border-radius: 50%;
    bottom: -50px;
    left: -30%;
    z-index: -1;
}
.offer-section .offer{
    width: 100%;
    min-height: 140px;
    font-size: 24px;
    font-weight: 600;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    margin: 10px 10px;
}
.offer-section .offer .offer-icon{
    width: 50%;
}
.offer-section .offer .offer-icon img{
    width: 70%;
}
/* End Offer section */

/* Problems section */
.problems{
    min-height: 300px;
}
.problems .title{
    text-align: center;
    margin-bottom: 40px;
}
.problems .problem img{
    width: 18px;
}
.problems .problem{
    height: 70px;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
}
.problems .col{
    padding: 0;
}
/* End Problems section */


/* Help section  */
.help{
    padding: 50px 0;
}
.help .help-title{
    margin-bottom: 10px;
}
.help .help-title h2{
    font-weight: 900;
}
.help .card{
    margin: 20px 0;
}
.help .card .card-title{
    margin: 10px 0;
}
.card-image img{
    width: 100%;
    height: 260px;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
}
.card-image iframe{
    width: 100%;
    height: 260px;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
}
.help .card .card-body{
    width: 100%;
    margin: 10px 0;
}
.help .card .card-body p{
    font-size: 18px;
    font-weight: 400;
    margin: 10px 0;
}
.button-container{
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
/* End Help section  */

/* Map section */

.map{
    padding-top: 90px;
    padding-bottom: 60px;
    background-color: #00A0FF;
    position: relative;
    z-index: -2;
    color: white;
    overflow: hidden;
}
.map::after{
    position: absolute;
    content: '';
    width: 160%;
    background-color: #f3f3f3;
    height: 100px;
    border-radius: 50%;
    top: -50px;
    left: -30%;
    z-index: -1;
}
.map .map-title{
    margin: 40px 0;
}
.map .map-title h2{
    font-family: "Poppins";
    font-weight: 400;
    line-height: 45px;
    text-align: center;
}
.map .map-title .big-number{
    font-family: "Poppins";
    font-size: 50px;
    font-weight: 300;
}
.map .map-image img{
    width: 110%;
    max-width: 800px;
    margin-left: -5%;
    object-fit: cover;
}
.map .map-footer > span{
    font-family: "Poppins";
    font-size: 64px;
    font-weight: 300;
}
.map .map-footer > p{
    font-family: "Poppins";
    font-size: 24px;
    font-weight: 700;
    
}
.map .map-footer > strong{
    font-family: "Poppins";
    font-size: 28px;
    font-weight: bold;
    color: #353EE6;
}
/* End Map section */


/* section video */
.video{
    padding: 60px 0;
    width: 100%;
    position: relative;
    margin-top: 40px;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%; 
}

    
.owl-carousel .owl-item{    
    padding: 0 20px;
}


.owl-carousel .video-container{
    background-color: white;
    border-radius: 12px 12px 12px 12px;
}

.owl-carousel iframe{
    max-height: 300px;
}

.owl-carousel .video-container .video-player iframe{
    border-radius: 12px 12px 12px 12px !important;
}
.carousel > .active {
    opacity: 1;
}

.video .video-title{
    text-align: center;
    margin-bottom: 40px;
}
.video .video-footer{
    padding: 15px 15px 20px 15px;
}
.video .video-footer > img{
    width: 32px;
    height: 32px;
}
.video .video-footer .link > a{
    text-decoration: underline;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}
.video .video-footer .link > a:hover{
    text-decoration: none;
}
.video .video-footer .link{
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 20px;
}
/* End Video section */

.tarif .card{
    padding: 0 20px;
}

.tarif .card,
.help .card{
    /* border: 1px solid rgba(9, 30, 66, 0.25); */
    background-color: white;
    border-radius: 16px;
    margin: 20px 0;
    /* box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px; */
}
.help .card-title{
    padding: 15px 15px 0 15px;
}
    
.help .card-body{
    padding: 0 15px 15px 15px;
}

/* Tarif section */
.tarif{
    padding-top: 100px;
}
.tarif .card{
    background-color: white;
    border-radius: 16px;
    margin: 20px 0;
}
.tarif .card .card-title{
    padding: 16px 0 16px 0px;
    font-size: 18px;
    font-weight: 600;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    border-bottom: 3px solid #D9D9D9;
}
.tarif .card .card-body{
    padding: 16px;
    padding-top: 0;
}
.tarif .card .card-body ul li{
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    margin: 20px 0;
    color: #666666;
}
/* End Tarif section */

/*  */
.promotion{
    border-radius: 0 24px 24px 0;
    background-color: #82C7FF;
    padding: 10px 20px;
    margin: 40px 0;
    width: calc(100% - 40px);
}
@media (min-width: 720px) {
    .promotion{
        border-radius: 24px;
        margin: 40px calc(50% - 300px);
        width: 600px;
    }
}
.promotion_trail{
    color: #1811CA;
}
.promotion_title{}
.promotion_text{}
/*  */

/* contact section */
.fixed-bg{
    background-image: url('../images/bg.jpg');
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.fixed-bg-mask{
    background-color:rgba(0, 0, 0, 0.35);
}
.contact{
    padding: 0 20px !important;
    margin-top: 60px;
}
.contact-card{
    position: relative;
    min-height: 1100px;
    width: 100%;
}
.contact .btn{
    font-size: 20px;
    font-weight: 600;
    margin: 0 !important; 
}   
.contact .contact-title h1{
    font-size: 36px;
    font-weight: 900;
    color: white;
    padding-top: 160px;
}
.contact .contact-title span{
    color: #C4C4C4;
}
.contact .contact-info{
    position: absolute;
    bottom: 20px;
    width: 100% ;
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 16px;
    padding: 20px 15px 20px 30px;
}
.contact .contact-info .info .image-container{
    width: 48px !important;
    height: 48px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact .contact-info .info{
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 25px 0;
    font-size: 20px;
}
.contact .contact-info .info a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
}
.contact .contact-info .info-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 20px;
    font-weight: 700;
}
.location{
    width: 100%;
}
.location > iframe{
    width: 100%;
}
/* End contact section */


/* Specialist */
.specialist{
    padding: 135px 0;
    padding-bottom: 110px;
}
.specialist .card{
    background-color: white;
    border-radius: 18px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}/*
.specialist .card .card-title h2{
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}*/
.specialist .card .card-title p{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333333;
}
.specialist .button-container .btn{
    font-size: 18px !important;
}
.specialist .button-container{
    width: 80%;
    margin: 0 auto;

}
/* End Specialist */

/* Footer */
.footer{
    background-color: #3388FF;
    color: white;
    padding: 40px 20px;
}
.footer h2{
    font-size: 24px;
    font-weight: 600;
    color: white;
}
.footer .contacts{
    display: flex;
    align-items: center;
    justify-content: start;
}
.footer .contacts a{
    font-size: 18px;
    font-weight: 700;
    color: white;
}
/* End Footer */


@media (min-width: 768px){
    .card-image img{
        height: 260px;
    }
    .card-image iframe{
        height: 260px;
    }

    .break{
        display: none;
    }
    .video-player > iframe{
        height: 600px;
    }

    .contact-card{
        display: flex;
        justify-content: center;
        align-items: center;
        position: unset !important;
        min-height: 500px;
        padding: 0 20px;
    }

    .contact-info{
        position: unset !important;
        width: 50% !important;
        transform: none !important;
    }

    .contact-title{
        padding: 0 !important;
        width: 50% !important;
    }
}
@media (max-width: 426px) {
    .card-image img{
        height: 220px;
    }
    .card-image iframe{
        height: 220px;
    }
    .nav-bar .modal-trigger .btn-outline {
        font-size: 15px;
        font-weight: 600;
        min-height: 50px;
        padding: 8px 8px;
    }

    .col{
        padding-right: 0px !important;
        padding-left: 0px !important;
    }

    .video .video-footer .link{
        flex-direction: column;
        align-items: start;
    }
    .video .video-footer .link a{
        margin: 10px 0;
    }

    .btn-inverse {
        font-size: 18px;
    }

    .contact .contact-title{
        font-size: 27px;  
    }

    .offer-section .offer-text{
        font-size: 20px;
    }
    .contact .contact-card .info img{
        width: 30px !important;
        height: 30px !important;
        object-fit: contain;
    }

}
@media (max-width: 425px) {
    /*.contact-card button{
        width: 60% !important;
    }*/
}
@media (max-width: 320px) {

    .offer-section .offer-text{
        font-size: 18px;
    }

    .cost-text{
        font-size: 38px;
    }
    .cost-text-small{
        font-size: 22px;
    }
    .row{
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.iframe-disabled {
	pointer-events: none;
}

.card-image-iframe {
	cursor: pointer;
}

.wsk-float {
    position: fixed;
    float: left;
    bottom: 20px;
    right: 25px;
}

.wsk-float a,
.wsk-float a img {
    display: flex;
    align-items: center;
    justify-content: center;
}


.pulse-button {
    position: relative;
    width: 56px;
    height: 56px;
    border: none;
    box-shadow: 0 0 0 0 #FFAA33;
    border-radius: 50%;
    background-color: #FFAA33;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.pulse-button:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
    }
}
