@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,700;1,700&family=Varela+Round&display=swap');

:root{
    --blue-color: #143D69;
    --green-color: #829B3C;
    --orange-color: #F27A20;
    --pink-color: #EC1675;
    --purple-color: #94268E;
    --sky-blue-color: #314d5f;
    --white-color: #ffffff;
    --body-bg: #F7F8F4;
    --text-color: #404040;
    --border-color: #dddddd;
}

html, body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width:100%;
	height: 100%;
}
body{
    font-size: 18px;
    font-family: "Varela Round", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: var(--text-color);
    line-height: 24px;
    text-size-adjust: none ;
	-webkit-text-size-adjust:none;
    overflow-x: hidden;
    background: var(--body-bg);
}
p{
    font-size: 18px;
    line-height: 24px;
}
p:last-child{
    margin-bottom: 0;
}
h1,.h2{
    font-size: 52px;
    line-height: 58px;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-optical-sizing: auto;
    color: var(--blue-color);
}
.h2,h3{
    margin-bottom: 16px;
}
.h2 span{
    color: var(--green-color);
}
h2{
    font-size: 40px;
    line-height: 48px;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-optical-sizing: auto;
}
h3{
    font-size: 22px;
    line-height: 28px;
    /* font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-optical-sizing: auto; */
}
h4{
    font-size: 20px;
    line-height: 26px;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-optical-sizing: auto;
}
a{
    text-decoration: none;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.container{
    max-width: 1240px;
    width: 100%;
    padding: 0 20px;
    position: relative;
}
.s-py{
    padding-top: 100px;
    padding-bottom: 100px;
}
.s-pt{
    padding-top: 100px;
}
.s-pb{
    padding-bottom: 100px;
}
/*** Basic Component Start ***/
.cta-btn{
    background: var(--blue-color);
    color: var(--white-color);
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 12px 32px;
}
.cta-btn:hover{
    background: var(--green-color);
}
.cta-btn.green{
    background: var(--green-color);
}
.br-24{
    -webkit-border-radius: 24px;
    border-radius: 24px;
}
.wave.white{
    width: 100%;
    background: url(../images/white-wave.svg) repeat center;
    height: 47px;
}
.wave.white img{
    width: 100%;
    height: 47px;
}
.wave.white.reverse{
    transform: rotate(180deg);
}
.bg-white-gradiant{
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
/*** Basic Component End ***/


/*** Header Start ***/
header.scrolled{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 3px 6px rgba(0,0,0,.06);
}
header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}
header .top-belt{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-color);
    text-align: center;
    height: 32px;
    padding: 6px 20px;
    z-index: 1;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
header .top-belt p{
    font-size: 14px;
    line-height: 1.1;
    color: var(--white-color);
}
.header-wrapper{
    background: var(--white-color);
    /* padding: 16px 0; */
    padding: 32px 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.header-wrapper .logo{
    width: 223px;
    height: 223px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -45px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
header.scrolled .header-wrapper{
    padding: 20px 0;
}
header.scrolled .logo{
    width: 180px;
    height: 180px;
}
.hd-logo{
    position: absolute;
}
.hd-logo img{
    width: 100%;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
header .navbar{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 610px;
    width: 100%;
    justify-content: center;
}
header .navbar,
header .navbar ul{
    margin: 0;
    padding: 0;
    font-size: 0;
}
header .navbar ul{
    display: inline-flex;
}
header .navbar ul li{
    display: inline-flex;
}
header .navbar ul li:not(:first-child){
    margin-left: 48px;
}
header .navbar ul li a{
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    display: inline-flex;
    font-size: 16px;
    color: var(--text-color);
    position: relative;
    line-height: 1.1;
    padding: 10px 0;
}
header .navbar ul li a:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    margin-left: -12px;
    background-image: url(../images/pencil-icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 24px;
    height: 24px;
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    opacity: 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
header .navbar ul li a:hover:after,
header .navbar ul li a.active:after{
    opacity: 1;
    transform: translateY(0);
}
/* header .navbar ul li a:after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: auto;
    right: 0;
    width: 0%;
    background: var(--blue-color);
    height: 1px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
header .navbar ul li a:hover:after,
header .navbar ul li a.active:after{
    width: 100%;
    left: 0;
    right: auto;
} */
header .navbar ul li a:hover,
header .navbar ul li a.active{
    color: var(--blue-color);
}
.header-wrapper .cta-btn{
    padding: 12px 24px;
}
/*** Header End ***/


/*** Footer Start ***/
footer{
    background: var(--blue-color);
    margin-top: 47px;
    font-size: 15px;
}
footer p{
    font-size: 15px;
    color: var(--white-color);
    margin-bottom: 12px;
}
.top-pattern{
    width: 100%;
    height: 199px;
    background: url(../images/footer-top-pattern-1.png) -60% repeat-x;
    background-size: auto 199px;
    position: relative;
    top: -47px;
    margin-bottom: 30px;
}
footer .sun{
    position: absolute;
    top: -135px;
    right: 450px;
}
footer .logo{
    text-align: center;
}
footer .logo img{
    width: 137px;
}
footer .column h4{
    color: var(--white-color);
    background: url(../images/line.svg) left bottom no-repeat;
    padding-bottom: 12px;
    margin-bottom: 16px;
}
footer .column .menus{
    padding: 0;
    margin: 0;
    list-style: none;
    -webkit-columns: 2;
    columns: 2;
}
footer .column .menus li{
    line-height: 32px;
}
footer .column .menus li a{
    color: var(--white-color);
    position: relative;
}
footer .column .menus li a:after{
    content: '';
    position: absolute;
    bottom: -3px;
    left: auto;
    right: 0;
    width: 0%;
    background: var(--white-color);
    height: 1px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
footer .column .menus li a:hover:after{
    width: 100%;
    left: 0;
    right: auto;
}
footer .column .menus li a:hover{
    color: var(--white-color);
}
footer .phone,
footer .email{
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--white-color);
}
footer .phone svg,
footer .email svg{
    margin-right: 8px;
}
.kids-img{
    margin-top: 40px;
    text-align: center;
}
.green-belt{
    width: 100%;
    height: 148px;
    background: url(../images/green-belt.svg) left center repeat-x;
    margin-top: -180px;
    margin-bottom: 30px;
}
.copyright{
    background: var(--white-color);
    padding: 96px 0 48px 0;
}
.copyright .content{
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.copyright .content p{
    color: var(--blue-color);
    margin-bottom: 16px;
}
.copyright .content .social{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
.copyright .content .social li{
    margin: 0 6px;
}
.copyright .content .social li a{
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: var(--text-color) solid 1px;
    color: var(--text-color);
    border-radius: 100%;
}
.copyright .content .social li a:hover{
    background: var(--text-color);
    color: var(--white-color);
}
.hand-img{
    display: inline-flex;
    position: absolute;
    bottom: -48px;
    width: 250px;
}
.hand-img.last{
    right: 20px;
}
.registration-popup{
    border: 0;
}
.registration-popup .modal-header{
    background: var(--blue-color);
    border: 0;
}
.registration-popup .modal-header *{
    color: var(--white-color);
}
.registration-popup .modal-header .btn-close{
    opacity: 1;
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
}
.registration-popup .form-group input[type="text"],
.registration-popup .form-group input[type="tel"],
.registration-popup .form-group input[type="email"],
.registration-popup .form-group select{
    background: var(--white-color);
    width: 100%;
    font-family: "Varela Round", sans-serif;
    font-size: 16px;
    height: 40px;
    border: var(--border-color) solid 1px;
    border-radius: 8px;
    padding: 8px 16px;
}
.registration-popup .form-group select{
    appearance: none;
    color: var(--text-color);
    background: var(--white-color) url(../images/select-arrow.svg) calc(100% - 16px) center no-repeat;
}
.registration-popup .form-group input:focus{
    outline: none;
}
.registration-popup .form-group:not(:first-child){
    margin-top: 16px;
}
.registration-popup .form-group label{
    font-family: "Nunito", sans-serif;
    color: var(--blue-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.1;
}
.registration-popup .cta-btn{
    background: var(--green-color);
    border: 0;
    width: 100%;
    height: 52px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.registration-popup .cta-btn:hover{
    background: var(--orange-color);
}
/*** Footer End ***/


/*** Homepage Start ***/
.hero-slider-section{
    position: relative;
    /* margin-top: 180px; */
    margin-top: 115px;
    /* height: calc(100vh - 180px); */
}
.hero-slider-section .swiper{
    height: 100%;
}
.hero-slider-section .swiper .swiper-slide{
    background-position: center top !important;
    background-size: cover !important;
}
.hero-slider-section .wave{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: url(../images/green-wave.svg) repeat center;
    height: 47px;
}
.hero-slider-section .wave img{
    width: 100%;
    height: 47px;
}
.hero-slider-section .swiper .swiper-arrows{
    position: absolute;
    left: 50%;
    bottom: 110px;
    min-width: 160px;
    margin-left: -80px;
}
.hero-slider-section .swiper-button-prev,
.hero-slider-section .swiper-button-next{
    background: var(--white-color);
    border-radius: 12px;
    padding: 10px;
    min-width: 64px;
    height: 48px;
}
.hero-slider-section .swiper-button-prev{
    background: var(--white-color) url(../images/prev-arrow.svg) no-repeat center;
}
.hero-slider-section .swiper-button-next{
    order: 2;
    background: var(--white-color) url(../images/next-arrow.svg) no-repeat center;
}
.hero-slider-section .swiper-button-prev:after,
.hero-slider-section .swiper-button-next:after{
    display: none;
}

.home-welcome-section .container{
    background: url(../images/child.png) no-repeat right;
}
.home-welcome-section .img-block{
    position: relative;
}
.home-welcome-section .img-block .ballon{
    position: absolute;
    top: -85px;
    right: -92px;
    z-index: -1;
    width: 112px;
    height: 170px;
}
.home-welcome-section .content{
    padding: 0 60px 0 40px;
}
.home-welcome-section .content .icon{
    margin-bottom: 24px;
    display: block;
}

.different-section .plan{
    position: absolute;
    left: 40px;
}
.different-section .blue-ballon{
    position: absolute;
    top: -40px;
    width: 70px;
    right: 40px;
    animation: balloons 4s ease-in-out infinite;
    transform-origin: bottom center;
}
@keyframes balloons{
    0%, 100% {
        transform: translateY(0) rotate(-4deg);
    }
    50% {
        transform: translateY(-25px) rotate(4deg);
    }
}
.different-section .row [class*="col-"]{
    margin-top: 40px;
}
.different-section .row .box{
    border: var(--border-color) solid 1px;
    border-radius: 24px;
    text-align: center;
    height: 100%;
}
.different-section .row .box.blue{
    box-shadow: 0 4px 0 var(--blue-color);
}
.different-section .row .box.green{
    box-shadow: 0 4px 0 var(--green-color);
}
.different-section .row .box.orange{
    box-shadow: 0 4px 0 var(--orange-color);
}
.different-section .row .box.pink{
    box-shadow: 0 4px 0 var(--pink-color);
}
.different-section .row .box.purple{
    box-shadow: 0 4px 0 var(--purple-color);
}
.different-section .row .box.sky-blue{
    box-shadow: 0 4px 0 var(--sky-blue-color);
}
.different-section .row .box span{
    min-height: 56px;
    font-size: 20px;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    color: var(--white-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 80px);
    margin: 0 auto 24px auto;
    border-radius: 0 0 40px 40px;
}
.different-section .row .box p{
    padding: 0 40px 24px 40px;
    letter-spacing: -0.3px;
    font-size: 17px;
    line-height: 22px;
}
.different-section .row .box.blue span{
    background: var(--blue-color);
}
.different-section .row .box.green span{
    background: var(--green-color);
}
.different-section .row .box.orange span{
    background: var(--orange-color);
}
.different-section .row .box.pink span{
    background: var(--pink-color);
}
.different-section .row .box.purple span{
    background: var(--purple-color);
}
.different-section .row .box.sky-blue span{
    background: var(--sky-blue-color);
}
.image-5c img{
    width: 300px;
}
.what-missing .content ul{
    margin: 0;
    padding: 0 0 0 16px;
}
.what-missing .content ul li{
    list-style: outside;
}
.what-missing .content ul li:not(:last-child){
    margin-bottom: 16px;
}
.what-missing .boxes{
    padding-left: 66px;
}
.what-missing .boxes .box{
    position: relative;
    border-radius: 16px;
    padding: 24px 24px 24px 72px;
}
.what-missing .boxes .box:first-child{
    background: #EAF0DA;
    margin-bottom: 32px;
}
.what-missing .boxes .box:last-child{
    background: #F8EFF3;
}
.what-missing .boxes .box span{
    position: absolute;
    left: -36px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    border-radius: 100%;
}
.what-missing .boxes .box:first-child span{
    background: var(--green-color);
}
.what-missing .boxes .box:last-child span{
    background: var(--pink-color);
}
.what-missing .boxes .box:last-child span img{
    transform: rotate(-180deg);
}
.what-missing .boxes .box span img{
    width: 40px;
}
.what-missing .boxes .box ul{
    -webkit-columns: 2;
    columns: 2;
    padding: 0;
    margin: 0;
}
.what-missing .boxes .box ul li{
    list-style: outside;
    -webkit-break-inside: avoid;
    break-inside: avoid;
    font-size: 16px;
    margin: 6px 0;
}
.franchisee-section .flower-1{
    position: absolute;
    top: 70px;
    left: 20px;
}
.flower-2{
    position: absolute;
    right: 20px;
}
.franchisee-section .content h4{
    color: var(--green-color);
}
.our-programs .title{
    text-align: center;
}
.our-programs .title p{
    max-width: 445px;
    width: 100%;
    margin: 0 auto;
}
.our-programs .pattern-1{
    position: absolute;
    left: 20px;
    top: 0;
    z-index: -1;
}
.our-programs .pattern-2{
    position: absolute;
    right: 20px;
    top: 0;
    z-index: -1;
}
.program-boxes{
    margin-top: 16px;
    justify-content: center;
}
.program-boxes [class*="col-"]{
    margin-top: 40px;
}
.our-programs .box{
    padding: 56px 24px 48px 24px;
    position: relative;
    text-align: center;
}
.our-programs .box img{
    border-radius: 16px;
    margin-bottom: 16px;
    height: 190px;
    width: 100%;
    object-fit: cover;
}
.our-programs .box p{
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 24px;
    color: var(--text-color);
}
.our-programs .box .round-shape{
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -24px;
    z-index: 1;
}
.our-programs .box h4{
    font-size: 22px;
    margin-bottom: 24px;
}
.our-programs .box span{
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    display: inline-flex;
    line-height: 20px;
}
.our-programs .box > svg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.our-programs .box.blue h4{
    color: var(--blue-color);
}
.our-programs .box.blue span{
    color: var(--blue-color);
}
.our-programs .box.green h4{
    color: var(--green-color);
}
.our-programs .box.green span{
    color: var(--green-color);
}
.our-programs .box.orange h4{
    color: var(--orange-color);
}
.our-programs .box.orange span{
    color: var(--orange-color);
}
.our-programs .box.pink h4{
    color: var(--pink-color);
}
.our-programs .box.pink span{
    color: var(--pink-color);
}
.our-programs .box.sky-blue h4{
    color: var(--sky-blue-color);
}
.our-programs .box.sky-blue span{
    color: var(--sky-blue-color);
}
.our-programs .box.purple h4{
    color: var(--purple-color);
}
.our-programs .box.purple span{
    color: var(--purple-color);
}
.our-programs .wave-line{
    margin-top: 40px;
}
.gallery-section .gallery-wrapper{
    margin-top: 32px;
}
.gallery-section .gallery-wrapper [class*="col-"]{
    margin-top: 24px;
}
.gallery-section .gallery-box{
    position: relative;
    display: block;
    border: transparent solid 2px;
    border-radius: 18px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.gallery-section .gallery-box img{
    border-radius: 16px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.gallery-section .gallery-box:hover{
    border: var(--orange-color) solid 2px;
}
.gallery-section .gallery-box:hover .overly{
    transform: scale(1);
}
.overly{
    transform: scale(0);
    position: absolute;
    top: 16px;
    right: 16px;
    bottom: 16px;
    left: 16px;
    background: rgba(242,122,32,.60) url(../images/gallery-eye.svg) center no-repeat;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.gallery-section .star-pattern{
    position: absolute;
    top: 0;
    left: 20px;
}
.gallery-section .pattern-1{
    position: absolute;
    top: 72px;
    right: 20px;
}
.gallery-section .cta-btn{
    position: absolute;
    top: 40px;
    right: 120px;
}
.benefits-boxes{
    width: 100%;
    margin-top: 56px;
    padding: 0 64px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.benefits-boxes .box{
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 240px;
    width: 100%;
    background: var(--white-color);
    border: var(--border-color) solid 1px;
    border-radius: 16px;
    padding: 32px 24px;
}
.benefits-boxes .box svg{
    display: block;
    margin-bottom: 20px;
}
.benefits-boxes .box h4{
    width: 100%;
    text-align: center;
    margin: 0;
    color: var(--blue-color);
    font-size: 18px;
}
/*** Homepage End ***/

/*** Aboutpage Start ***/
.about-intro .container{
    background: none;
}
.top-banner-section{
    /* margin-top: 180px; */
    margin-top: 115px;
    min-height: 400px;
    position: relative;
    background-position: center !important;
    background-size: cover !important;
    display: flex;
    align-items: center;
}
.top-banner-section h1{
    color: var(--white-color);
    margin: 48px 0 0 0;
}
.top-banner-section .wave:before{
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: url(../images/green-wave.svg) repeat-x center;
    height: 47px;
    /* animation: waveMove 30s linear infinite; */
}
/* @keyframes waveMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 2000px 0;
    }
} */

.top-banner-section .wave img{
    width: 100%;
    height: 47px;
}
.philosophy-section .content{
    padding-right: 56px;
}
.vision-mission-section .box{
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    color: var(--white-color);
}
.vision-mission-section .box .icon{
    margin-bottom: 32px;
    display: inline-flex;
}
.vision-mission-section .box h3{
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}
.vision-mission-section .box.vision{
    background: var(--blue-color);
}
.vision-mission-section .box.mission{
    margin-top: 56px;
    background: var(--green-color);
}
.team-section h2{
    margin-bottom: 40px;
}
.team-box{
    text-align: center;
}
.team-box img{
    margin-bottom: 28px;
}
.team-box.blue img{
    box-shadow: 0 10px 0 var(--blue-color);
}
.team-box.green img{
    box-shadow: 0 10px 0 var(--green-color);
}
.team-box h4{
    color: var(--blue-color);
    margin-bottom: 4px;
    font-size: 18px;
    line-height: 24px;
}
.team-section .nav-tabs{
    justify-content: center;
    border: 0;
}
.team-section .nav-tabs .nav-item{
    margin: 0 8px;
}
.team-section .nav-tabs .nav-link{
    border-radius: 8px;
    border: 0;
    padding: 8px 20px;
}
.team-section .nav-tabs .nav-link.active{
    background: var(--blue-color);
    color: var(--white-color);
}
.team-section .nav-tabs .nav-link{
    background: #EAECE2;
    /* border: var(--border-color) solid 1px; */
    color: var(--text-color);
}
.team-section .nav-tabs .nav-link:hover{
    /* border: var(--border-color) solid 1px; */
}
.team-section .tab-content{
    margin-top: 32px;
}
.team-section .tab-content .row{
    margin-top: -24px;
}

.approach-section .title{
    text-align: center;
}
.approach-section .title h3{
    max-width: 588px;
    width: 100%;
    margin: 0 auto;
}
.approach-box:first-child{
    margin-top: 56px;
}
.approach-box{
    margin-top: 16px;
}
.approach-box .wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.approach-box .wrapper .img{
    /* max-width: 384px; */
    max-width: 42%;
    width: 100%;
}
.approach-box .wrapper .img img{
    border-radius: 24px;
}
.approach-box .wrapper .content{
    max-width: calc(100% - 42%);
    width: 100%;
    padding-left: 64px;
}
.approach-box .wrapper .content h2{
    font-size: 40px;
    color: var(--blue-color);
    margin-bottom: 16px;
}
.approach-box .line{
    text-align: center;
}
.approach-box:nth-child(2n+2) .wrapper .img{
    order: 2;
}
.approach-box:nth-child(2n+2) .wrapper .content{
    padding-left: 0;
    padding-right: 64px;
}
.approach-box:nth-child(2n+2) .line img{
    transform: scaleX(-1);
}
.team-modal-content h2{
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 12px;
    margin-top: 8px;
    color: var(--blue-color);
    border-bottom: var(--border-color) solid 1px;
    padding-bottom: 12px;
}
.team-modal-content .btn-close{
    opacity: 1;
    position: absolute;
    right: 15px;
    top: 15px;
}
.team-modal-content p,
#franchise-modal p{
    font-size: 16px;
    line-height: 22px;
}

.team-modal-content p {
    text-align: justify;
}

/*** Aboutpage End ***/

/*** Gallery Page Start ***/
.gallery-page .gallery-wrapper{
    margin-top: -24px;
}
.gallery-page .g-img{
    display: block;
    position: relative;
}
.gallery-page .g-img img{
    border-radius: 16px;
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.gallery-page .g-img span{
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
}
.gallery-page .g-img span{
    padding: 12px;
    border-radius: 30px 30px 0 0;
    text-align: center;
    color: var(--white-color);
    min-width: 80%;
}
.gallery-page .g-img span.blue{
    background: var(--blue-color);
}
.gallery-page .g-img span.green{
    background: var(--green-color);
}
.main-gallery{
    margin-top: -24px;
}
.main-gallery [class*="col-"]{
    margin-top: 24px;
}
/*** Gallery Page End ***/

/*** Contact Page Start ***/
.get-in-touch .title{
    margin-bottom: 56px;
}
.get-in-touch .title p{
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
}
.get-in-touch .c-box{
    width: 100%;
    height: 100%;
    border-radius: 24px;
    padding: 48px 32px 32px 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    color: var(--blue-color);
    position: relative;
}
.get-in-touch .c-box .icon{
    position: absolute;
    top: -32px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}
.get-in-touch .c-box a{
    width: 100%;
    color: var(--blue-color);
    word-wrap: break-word;
}
.get-in-touch .c-box.blue .icon{
    background: var(--blue-color);
}
.get-in-touch .c-box.green .icon{
    background: var(--green-color);
}
.get-in-touch .c-box.orange .icon{
    background: var(--orange-color);
}
.get-in-touch .c-box.blue{
    background: #E0E5E6;
}
.get-in-touch .c-box.green{
    background: #EBEFE2;
}
.get-in-touch .c-box.orange{
    background: #F6EBDF;
}
.contact-form{
    padding: 40px;
    background: var(--body-bg);
    border-radius: 24px;
}
.contact-form h2{
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 24px;
}
.contact-form [class*="col-"]{
    margin-top: 24px;
}
.contact-form .row{
    margin-top: -24px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select{
    background: var(--white-color);
    width: 100%;
    font-family: "Varela Round", sans-serif;
    font-size: 16px;
    height: 48px;
    border: var(--border-color) solid 1px;
    border-radius: 8px;
    padding: 12px 20px;
}
.contact-form select{
    appearance: none;
    color: var(--text-color);
    background: var(--white-color) url(../images/select-arrow.svg) calc(100% - 20px) center no-repeat;
}
.contact-form textarea{
    resize: none;
    height: 104px;
}
.contact-form input::placeholder{
    color: var(--text-color);
}
.contact-form input:focus,
.contact-form textarea:focus{
    outline: none;
}
.contact-form-section .content{
    padding-left: 40px;
}
.contact-form-section .content h2{
    font-size: 40px;
    line-height: 48px;
}
.contact-form button.cta-btn{
    height: 48px;
    border: 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.map-section iframe{
    display: block;
    border-radius: 16px;
    width: 100%;
    height: 450px;
}
/*** Contact Page End ***/

/*** Program Inner Page Start ***/
.program-section .program-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.program-section .program-box .img-block{
    max-width: 50%;
    width: 100%;
    position: relative;
}
.program-section .program-box .img-block img{
    border-radius: 24px;
    position: relative;
    z-index: 1;
}
.program-section .program-box .img-block svg{
    position: absolute;
    top: -50px;
    left: -50px;
    z-index: 0;
    -webkit-animation: rotate 4s linear infinite;
    animation: rotate 4s linear infinite;
}
@keyframes rotate {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}
@-webkit-keyframes rotate {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}
.program-section .program-box .content{
    max-width: 50%;
    width: 100%;
    padding-left: 44px;
}
.program-section .program-box .content ul{
    padding: 0 0 0 15px;
    margin: 0 0 16px 0;
}
.program-section .program-box .content ul li:not(:last-child){
    margin-bottom: 2px;
}
.program-section .program-box .content p strong{
    font-family: "Nunito", sans-serif;
    font-weight: 700;
}
.program-section .program-box .content .point p{
    margin-bottom: 6px;
}
.program-section:nth-child(2n) .program-box .img-block{
    order: 2;
}
.program-section:nth-child(2n) .program-box .content{
    padding-left: 0;
    padding-right: 44px;
}
.program-section:nth-child(2n) .program-box .img-block svg{
    left: auto;
    right: -50px;
}

.program-section.blue h2,
.program-section.blue p strong,
.program-section.blue .program-box .img-block svg{
    color: var(--blue-color);
}
.program-section.green h2,
.program-section.green p strong,
.program-section.green .program-box .img-block svg{
    color: var(--green-color);
}
.program-section.orange h2,
.program-section.orange p strong,
.program-section.orange .program-box .img-block svg{
    color: var(--orange-color);
}
.program-section.pink h2,
.program-section.pink p strong,
.program-section.pink .program-box .img-block svg{
    color: var(--pink-color);
}
.program-section.sky-blue h2,
.program-section.sky-blue p strong,
.program-section.sky-blue .program-box .img-block svg{
    color: var(--sky-blue-color);
}
.program-section.purple h2,
.program-section.purple p strong,
.program-section.purple .program-box .img-block svg{
    color: var(--purple-color);
}
/*** Program Inner Page End ***/



@media (min-width: 1400px){

    .hero-slider-section,
    .hero-slider-section .swiper,
    .hero-slider-section .swiper .swiper-slide{
        min-height: 800px;
    }

}

@media (max-width: 1399px){

    .hero-slider-section,
    .hero-slider-section .swiper,
    .hero-slider-section .swiper .swiper-slide{
        min-height: 550px;
    }
    
    footer .sun{
        right: 380px;
    }

}

@media (max-width: 1199px){

    h1,.h2{
        font-size: 44px;
        line-height: 44px;
    }
    
    .header-wrapper .logo{
        width: 200px;
        height: 200px;
    }
    header .navbar ul li:not(:first-child){
        margin-left: 36px;
    }
    .benefits-boxes{
        padding: 0 48px;
    }
    .vision-mission-section .box{
        padding: 32px;
    }
    .contact-form{
        padding: 28px;
    }
    .contact-form-section .content{
        padding-left: 20px;
    }
    .contact-form-section .content h2{
        font-size: 36px;
        line-height: 40px;
    }
    .different-section .row .box span{
        width: calc(100% - 40px);
        font-size: 18px;
    }

}

@media (max-width: 991px){

    h1, .h2,
    .approach-box .wrapper .content h2,
    .program-section .program-box .content h2{
        font-size: 38px;
        line-height: 38px;
    }
    h3{
        font-size: 18px;
        line-height: 22px;
    }
    .header-wrapper{
        padding: 20px 0;
    }
    header.scrolled .logo{
        width: 160px;
        height: 160px;
    }
    .header-wrapper .logo{
        top: -38px;
    }
    header .navbar ul{
        margin-left: auto;
    }
    header .navbar ul li:not(:first-child){
        margin-left: 32px;
    }
    .hero-slider-section, .top-banner-section{
        margin-top: 102px;
    }

    .mobile-menu{
		width: 30px;
		height: 30px;
        margin-left: auto;
        display: inline-flex;
        align-items: center;
	}
	.mobile-menu span,
	.mobile-menu span:before,
	.mobile-menu span:after{
		background: var(--blue-color);
		width: 30px;
		height: 2px;
		border-radius: 2px;
		display: inline-block;
		transition: all 0.15s linear
	}
	.mobile-menu span:before,
	.mobile-menu span:after{
		content: '';
		position: absolute;
	}
	.mobile-menu span:before{
		transform: translateY(-7px);
	}
	.mobile-menu span:after{
		transform: translateY(7px);
	}
	.mobile-menu.open span{
		background: transparent;
	}
	.mobile-menu.open span:before{
		transform: rotate(45deg);
	}
	.mobile-menu.open span:after{
		transform: rotate(-45deg);
	}
    header .navbar{
        display: none;
		border-top: #d9d9d9 solid 1px;
		position: absolute;
		background: #fff;
		left: 0;
		top: 50px;
		width: 100%;
		padding: 20px;
		-webkit-box-shadow: rgba(0,0,0,.06) 0 10px 30px;
		box-shadow: rgba(0,0,0,.06) 0 10px 30px;
        z-index: 2;
        transform: none;
        max-width: 100%;
    }
    header .navbar ul li{
        width: 100%;
        margin: 0 0 20px 0 !important;
    }
    header .navbar ul li:last-child{
        margin-bottom: 0 !important;
    }
    header .navbar ul li a{
        width: 100%;
        font-size: 18px;
        display: inline-flex;
    }
    header .navbar ul li.button a{
        justify-content: center;
    }
    header .navbar ul{
        flex-wrap: wrap;
        width: 100%;
    }
    .header-wrapper .cta-btn,
    .header-wrapper .cta-btn:hover{
        color: var(--white-color);
    }
    .header-wrapper .cta-btn:after{
        display: none;
    }
    header .navbar ul li a{
        padding: 0;
    }
    header .navbar ul li a:after{
        content: '';
        position: absolute;
        bottom: -2px;
        left: auto;
        right: 0;
        width: 0%;
        background: var(--blue-color);
        height: 1px;
        margin-left: 0;
        transform: none;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }
    header .navbar ul li a:hover:after,
    header .navbar ul li a.active:after{
        width: 100%;
        left: 0;
        right: auto;
    }

    .different-section .row .box p{
        padding: 0 24px 40px 24px;
    }
    .what-missing .boxes{
        padding-left: 37px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 32px;
    }
    .what-missing .boxes .box{
        width: 46%;
    }
    .what-missing .boxes .box:first-child{
        margin-bottom: 0;
    }
    .what-missing .boxes .box ul{
        -webkit-columns: 1;
        columns: 1;
    }
    .home-welcome-section .content{
        padding: 0 0 0 20px;
    }
    .home-welcome-section .img-block .ballon{
        top: -125px;
        right: 10px;
    }
    .franchisee-section .flower-1{
        width: 40px;
    }
    .franchisee-section .flower-2{
        width: 48px;
    }
    .gallery-section .cta-btn{
        right: 20px;
    }
    .gallery-section .pattern-1{
        top: 92px;
    }
    .benefits-boxes{
        padding: 0;
    }
    .benefits-boxes .box{
        max-width: 31%;
    }
    footer .sun{
        right: 30px;
    }
    .top-pattern{
        margin-bottom: 0;
    }
    .benefits-boxes .box h4{
        font-size: 18px;
    }
    .hero-slider-section,
    .hero-slider-section .swiper,
    .hero-slider-section .swiper .swiper-slide{
        min-height: 450px;
    }
    .home-welcome-section .img-block .ballon{
        width: 72px;
        height: 110px;
        top: -90px;
        right: 10px;
    }
    footer .logo{
        margin-top: -40px;
    }
    .hero-slider-section .wave,
    .wave.white,
    .top-banner-section .wave::before{
        height: 24px;
        background-size: cover;
    }
    .different-section .blue-ballon{
        width: 50px;
        top: -40px;
    }
    .different-section .row .box span{
        width: calc(100% - 40px);
    }
    .hero-slider-section .swiper .swiper-arrows{
        bottom: 70px;
    }
    .top-banner-section{
        min-height: 320px;
    }
    .philosophy-section .content{
        padding-right: 8px;
    }
    .vision-mission-section .box{
        padding: 24px;
    }
    .vision-mission-section .box h3{
        font-size: 32px;
        line-height: 32px;
    }
    .approach-box .wrapper .content{
        padding-left: 32px;
    }
    .approach-box:nth-child(2n+2) .wrapper .content{
        padding-right: 32px;
    }
    .gallery-page .g-img span{
        font-size: 16px;
        min-width: 90%;
    }
    .contact-form [class*="col-"]{
        margin-top: 16px;
    }
    .contact-form .row{
        margin-top: -16px;
    }
    .map-section iframe{
        height: 350px;
    }
    .team-section h2{
        margin-bottom: 32px;
    }
    .c5-image p br{
        display: none;
    }
    .our-programs .box img{
        height: 150px;
        object-fit: cover;
    }
    .program-section .program-box .img-block svg,
    .program-section:nth-child(2n) .program-box .img-block svg{
        left: 50%;
        margin-left: -64px;
        top: -50px;
    }


}
@media (max-width: 767px){

    h1, .h2,
    .approach-box .wrapper .content h2,
    .contact-form-section .content h2,
    .contact-form h2,
    .program-section .program-box .content h2{
        font-size: 32px;
        line-height: 36px;
    }
    .s-py{
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .s-pt{
        padding-top: 64px;
    }
    .s-pb{
        padding-bottom: 64px;
    }

    .what-missing .boxes{
        padding: 0;
        margin-top: 64px;
    }
    .what-missing .boxes .box{
        width: 48%;
        padding: 38px 24px 24px 38px;
    }
    .what-missing .boxes .box span{
        top: 0;
        left: 50%;
        margin-left: -36px;
    }

    .home-welcome-section .img-block .ballon {
        width: 42px;
        height: 65px;
        top: -45px;
        right: 10px;
    }
    .home-welcome-section .content{
        padding-left: 0;
    }
    .franchisee-section .flower-1{
        display: none;
    }
    .our-programs .pattern-1{
        top: -20px;
        width: 60px;
    }
    .our-programs .pattern-2{
        width: 100px;
        top: -20px;
    }
    .gallery-section .star-pattern{
        width: 80px;
    }
    .gallery-section .pattern-1{
        width: 60px;
    }
    footer .container .row [class*="col-"]{
        margin-top: 32px;
    }
    footer .logo{
        margin-top: 0;
    }
    .different-section .plan{
        width: 30px;
    }
    header .top-belt{
        height: 40px;
    }
    .what-missing .content ul li{
        list-style: inside;
    }
    footer .container .row{
        margin-top: -32px;
    }
    footer .top-pattern{
        height: 120px;
        background: url(../images/footer-top-pattern-1.png) -10% repeat-x;
        background-size: auto 100px;
    }
    footer .sun{
        width: 60px;
        top: -56px;
        right: 30px;
    }
    .gallery-section .cta-btn{
        position: static;
        margin: 24px auto 0 auto;
        display: block;
        width: 130px;
        text-align: center;
    }
    .benefits-boxes .box{
        max-width: 47%;
    }
    
    footer{
        margin-top: 37px;
    }
    footer .green-belt {
        height: 90px;
        margin-top: -140px;
        background-size: cover;
    }
    .hand-img{
        width: 180px;
    }
    .hero-slider-section, .hero-slider-section .swiper, .hero-slider-section .swiper .swiper-slide{
        min-height: 380px;
    }
    .header-wrapper .logo{
        width: 140px;
        height: 140px;
        top: -39px;
        left: 10px;
    }
    header.scrolled .logo{
        width: 140px;
        height: 140px;
    }
    .vision-mission-section .box.mission{
        margin-top: 24px;
    }
    .team-section h2{
        margin-bottom: 24px;
    }
    .top-banner-section{
        min-height: 230px;
    }
    .top-banner-section h1{
        font-size: 32px;
        margin-top: 24px;
    }
    .vision-mission-section .box h3{
        font-size: 24px;
        line-height: 24px;
    }
    .approach-box .wrapper .img{
        max-width: 100%;
        margin-bottom: 24px;
    }
    .approach-box .wrapper .img img{
        width: 100%;
    }
    .approach-box .wrapper .content{
        padding-left: 0;
        max-width: 100%;
    }
    .approach-box:nth-child(2n+2) .wrapper .content{
        padding-right: 0;
        order: 2;
    }
    .approach-box .line{
        margin-top: 16px;
    }
    .approach-box:first-child{
        margin-top: 32px;
    }
    .contact-form-section .content{
        padding-left: 0;
        text-align: center;
    }
    .contact-form-section .content p{
        max-width: 450px;
        width: 100%;
        margin: 0 auto 16px auto;
    }
    .map-section iframe{
        height: 280px;
    }

    /* .get-in-touch .title{
        margin-bottom: 32px;
    } */
    .get-in-touch .c-box{
        padding: 32px 24px 32px 111px;
        justify-content: flex-start;
        text-align: left;
    }
    .get-in-touch .row .row [class*="col-"]:not(:first-child){
        margin-top: 24px;
    }
    .get-in-touch .c-box .icon{
        top: auto;
        left: 23px;
    }
    .program-section .program-box{
        flex-wrap: wrap;
    }
    .program-section .program-box .img-block,
    .program-section .program-box .content{
        max-width: 100%;
    }
    .program-section .program-box .content{
        margin-top: 24px;
        padding: 0;
    }
    .program-section:nth-child(2n) .program-box .content{
        order: 2;
    }
    .program-section .program-box .img-block svg{
        width: 90px;
        height: 90px;
    }
    .program-section .program-box .img-block svg,
    .program-section:nth-child(2n) .program-box .img-block svg{
        margin-left: -45px;
    }

}
@media (max-width: 575px){

    h1, .h2,
    .approach-box .wrapper .content h2,
    .contact-form-section .content h2,
    .contact-form h2,
    .program-section .program-box .content h2{
        font-size: 24px;
        line-height: 28px;
    }
    h3{
        font-size: 18px;
        line-height: 24px;
    }
    p{
        font-size: 16px;
        line-height: 22px;
    }
    .s-py{
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .s-pt{
        padding-top: 48px;
    }
    .s-pb{
        padding-bottom: 48px;
    }

    
    .hero-slider-section, .hero-slider-section .swiper, .hero-slider-section .swiper .swiper-slide{
        min-height: 300px;
    }
    .hero-slider-section .swiper .swiper-arrows{
        min-width: 140px;
        margin-left: -70px;
    }
    .hero-slider-section .swiper-button-prev,
    .hero-slider-section .swiper-button-next{
        min-width: 52px;
        height: 40px;
        background-size: 32px;
    }
    
    .image-5c img{
        width: 220px;
    }
    .what-missing .content ul li{
        font-size: 16px;
    }
    .what-missing .boxes .box{
        width: 100%;
        margin-top: 64px;
    }
    .what-missing .boxes .box:first-child{
        margin-top: 0;
    }
    .gallery-section .star-pattern{
        width: 50px;
        top: -30px;
    }
    
    footer .top-pattern{
        height: 120px;
        background: url(../images/footer-top-pattern-1.png) center repeat-x;
        background-size: auto 100px;
    }
    footer .sun{
        right: 20px;
    }
    footer .green-belt{
        height: 60px;
        margin-top: -130px;
        background-size: cover;
    }
    .copyright .container .d-flex{
        flex-wrap: wrap;
    }
    .hand-img.first{
        display: none;
    }
    .copyright .content{
        max-width: 100%;
    }
    .hand-img{
        position: static;
        width: 180px;
        margin: 20px auto -48px auto;
    }
    .home-welcome-section .content,
    .philosophy-section .content{
        text-align: center;
    }
    .franchisee-section .flower-2{
        width: 38px;
        top: -30px;
    }
    .different-section .plan{
        top: -70px;
    }
    .different-section .blue-ballon{
        top: -110px;
    }
    .contact-form{
        padding: 24px;
    }
    .contact-form button.cta-btn{
        width: 100%;
    }
    
    .get-in-touch .row .row [class*="col-"]:not(:first-child){
        margin-top: 56px;
    }
    .get-in-touch .c-box{
        font-size: 16px;
        line-height: 20px;
    }
    .get-in-touch .c-box .icon{
        width: 56px;
        height: 56px;
    }
    .get-in-touch .c-box .icon svg{
        width: 24px;
    }
    .get-in-touch .c-box{
        padding: 40px 24px 24px 24px;
        justify-content: center;
        text-align: center;
        border-radius: 16px;
    }
    .get-in-touch .c-box .icon{
        top: -32px;
        left: inherit;
    }
    .team-section .nav-tabs .nav-link{
        font-size: 16px;
    }
    .team-section .nav-tabs .nav-item{
        margin: 0 4px;
    }
    .different-section .row .box span{
        font-size: 18px;
    }
    .our-programs .box img{
        height: 200px;
    }
    .program-section .program-box .content ul li{
        font-size: 16px;
    }
    .program-section .program-box .img-block svg{
        width: 64px;
        height: 64px;
    }
    .program-section .program-box .img-block svg,
    .program-section:nth-child(2n) .program-box .img-block svg{
        margin-left: -32px;
        top: -32px;
    }

}
@media (max-width: 480px){

    .benefits-boxes{
        gap: 12px;
    }
    .benefits-boxes .box{
        max-width: 100%;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
    }
    .benefits-boxes .box h4{
        width: calc(100% - 80px);
        text-align: left;
    }
    .benefits-boxes .box svg{
        margin: 0;
    }

}