@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-Black.woff2') format('woff2'),
        url('../fonts/outfit/Outfit-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-Light.woff2') format('woff2'),
        url('../fonts/outfit/Outfit-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-Regular.woff2') format('woff2'),
        url('../fonts/outfit/Outfit-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-Medium.woff2') format('woff2'),
        url('../fonts/outfit/Outfit-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-ExtraLight.woff2') format('woff2'),
        url('../fonts/outfit/Outfit-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-ExtraBold.woff2') format('woff2'),
        url('../fonts/outfit/Outfit-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-Bold.woff2') format('woff2'),
        url('../fonts/outfit/Outfit-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-SemiBold.woff2') format('woff2'),
        url('../fonts/outfit/Outfit-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/Outfit-Thin.woff2') format('woff2'),
        url('../fonts/outfit/Outfit-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

html,body{
    width:100%;
    height:100%;
}
body{
    font-size:13px;
    font-family: 'Outfit', Arial, sans-serif;
    background:#FAFAFA;
}
@media only screen and (min-width:1440px){
    body{
        font-size:16px;
    }
}
a{
    color:var(--text-color);
    text-decoration: none;
    transition:all .2s ease-in-out;
    -o-transition:all .2s ease-in-out;
    -moz-transition:all .2s ease-in-out;
    -webkit-transition:all .2s ease-in-out;
}
a:hover{
    color:var(--text-color-2);
}

p{margin-bottom:10px;}

.text-align{text-align:center;}

header{position:absolute;top:0;left:0;width:100%;z-index:9;padding-top:50px;}
header .container{display:flex;flex-direction:row;align-items:center;}
header .logo{max-width:25%;flex:0 0 25%;background:#fff;box-shadow:5px 3px 6px #00000029;border-radius:49px;padding:20px;}
header .logo img{width:100%;height:auto;}
header .menu{max-width:75%;flex:0 0 75%;padding-left:30px;}
header .menu .menu-bar{display:none;}
header .menu ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;justify-content:space-between;}
header .menu ul>li>a{display:block;font-size:1.25em;color:#fff;}
@media only screen and (max-width:991px){
    header{padding-top:30px;}
    header .container{display:block;flex-direction:unset;align-items:unset;}
    header .logo{max-width:100%;width:300px;margin:0 auto 20px auto;}
    header .menu{max-width:100%;flex:0 0 100%;padding-left:0;position:relative;}
    header .menu .menu-bar{display:block;background:#fff;padding:10px 20px;font-size:1.2em;}
    header .menu ul{display:none;position:absolute;flex-direction:unset;justify-content:unset;background:rgba(0, 0, 0, .9);width:100%;padding:20px;}
    header .menu ul>li>a{line-height:40px;border-bottom:1px solid #333;}
    header .menu ul>li:last-child>a{border:0;}
}
/*--- SLIDER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.slider{position:relative;}
.slider .bg{width:100%;height:auto;min-height:100vh;object-fit:cover;}
.slider .text{position:absolute;left:0;right:0;top:0;margin:0 auto;width:50%;height:100%;display:flex;flex-wrap:wrap;justify-content:center;z-index:9;flex-direction:column;gap:10px;padding-top:250px;}
.slider .text h2{font-size:2.62em;color:#fff;font-weight:700;text-align:center;}
.slider .text p{font-size:1.25em;color:#fff;text-align:center;}
.slider .text .buttons{display:flex;flex-direction:row;gap:50px;width:fit-content;margin:0 auto;}
.slider .text .buttons a{display:block;font-weight:700;color:#fff;position:relative;padding:0 40px;border-bottom:1px solid #fff;line-height:40px;}
.slider .text .buttons a:before{content:'';width:30px;height:50%;position:absolute;bottom:0;left:0;border-top:1px solid #fff;border-left:1px solid #fff;}
.slider .text .buttons a:after{content:'';width:30px;height:50%;position:absolute;bottom:0;right:0;border-top:1px solid #fff;border-right:1px solid #fff;}
@keyframes leftToRight{
    0%{
        object-position: right;
    }
    100%{
        object-position: left;
    }
}
@media only screen and (max-width:991px){
    .slider .swiper-slide .bg{min-height:90vh;}
    .slider .swiper-slide-active .bg{animation:leftToRight 7s infinite linear;}
    .slider .text{width:100%;}
}
@media only screen and (min-width:992px) and (max-width:1199px) and (min-height:1366px){
    .slider .swiper-slide .bg{min-height:65vh;}
}
/*--- M1 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m1{position:relative;}
.m1:before{content:'';width:50%;height:100%;position:absolute;top:0;right:0;z-index:-1;background:url('../images/m1-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-o-background-size:cover;-moz-background-size:cover;}
.m1-body{display:flex;flex-direction:row;}
.m1-body .left{max-width:35%;flex:0 0 35%;padding:50px 0;}
.m1-body .left .box{display:flex;flex-direction:column;justify-content:space-between;gap:30px;}
.m1-body .left .box h2{font-size:1.86em;font-weight:900;color:#272727;}
.m1-body .left .box .text{font-size:1.25em;color:#272727;}
.m1-body .left .box .more{display:block;font-weight:700;width:fit-content;color:#fff;position:relative;padding:0 40px;border-bottom:1px solid #527294;line-height:40px;color:#527294;margin-left:40px;}
.m1-body .left .box .more:before{content:'';width:30px;height:50%;position:absolute;bottom:0;left:0;border-top:1px solid #527294;border-left:1px solid #527294;}
.m1-body .left .box .more:after{content:'';width:30px;height:50%;position:absolute;bottom:0;right:0;border-top:1px solid #527294;border-right:1px solid #527294;}
.m1-body .center{max-width:30%;flex:0 0 30%;display:flex;flex-direction:column;justify-content:flex-end;}
.m1-body .center img{width:100%;height:auto;}
.m1-body .right{max-width:35%;flex:0 0 35%;padding:50px 0;}
.m1-body .right .box{}
.m1-body .right .box h3{font-size:1.87em;font-weight:900;color:#fff;margin-bottom:30px;width:75%;}
.m1-body .right .box ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:20px;}
.m1-body .right .box ul>li>h4{font-size:1.25em;font-weight:700;color:#fff;}
.m1-body .right .box ul>li>p{font-size:1.25em;color:#fff;width:75%;}
@media only screen and (max-width:767px){
    .m1-body{flex-direction:column;}
    .m1-body .left{max-width:100%;flex:0 0 100%;}
    .m1-body .center{max-width:100%;flex:0 0 100%;}
    .m1-body .right{max-width:100%;flex:0 0 100%;}
    .m1-body .right .box h3{color:#000;width:100%;}
    .m1-body .right .box ul>li>h4{color:#000;}
    .m1-body .right .box ul>li>p{color:#000;width:100%;}
}
/*--- M2 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m2{padding:150px 0;position:relative;overflow:hidden;margin:100px 0;}
.m2 .m2-body-1{width:150%;left:-12.5%;position:relative;}
.m2 .swiper-services-1 .swiper-slide{}
.m2 .swiper-services-1 .swiper-slide-prev{opacity:0;}
.m2 .swiper-services-1 .swiper-slide-active{opacity:1;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
.m2 .swiper-services-1 .box{border-radius:50px;overflow:hidden;position:relative;}
.m2 .swiper-services-1 .box:before{content:'';width:100%;height:100%;background:#11273E;opacity:.7;position:absolute;top:0;left:0;z-index:2;}
.m2 .swiper-services-1 .box img{width:100%;height:auto;aspect-ratio: 1/1;position:relative;z-index:1;}
.m2 .swiper-services-1 .box h3{font-size:1.93em;color:#fff;position:absolute;bottom:15%;text-align:center;z-index:9;width:100%;opacity:0;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
.m2 .swiper-services-1 .swiper-slide-active .box h3{opacity:1;}
.m2 .m2-body-2{width:30%;position:absolute;top:75px;left:17.2%;height:calc(100% - 150px);}
.m2 .m2-body-2:before{content:'';position:absolute;top:-10%;left:-10%;width:120%;height:120%;background:#527294;opacity:.1;border-radius:50px;}
.m2 .m2-body-2>*{position:relative;z-index:9;}
.m2 .m2-body-2 .title{display:flex;flex-direction:row;justify-content:space-between;align-items:center;}
.m2 .m2-body-2 .title h2{font-size:1.5em;text-transform:uppercase;}
.m2 .m2-body-2 .title h2>a{color:#527294}
.m2 .m2-body-2 .title .swiper-nav{display:flex;flex-direction:row;gap:10px;}
.m2 .m2-body-2 .title .swiper-nav>div{width:35px;height:35px;line-height:35px;text-align:center;color:#527294;border:2px solid #707070;border-radius:10px;}
.m2 .m2-body-2 .title .swiper-nav>div>i{line-height:1;}
.m2 .m2-body-2 .title .swiper-nav>div:active{opacity:.5;}
.m2 .m2-body-2 .swiper-services-2{width:100%;height:calc(100% - 37px);}
.m2 .m2-body-2 .swiper-slide{opacity:0;}
.m2 .m2-body-2 .swiper-slide-active{opacity:1;}
.m2 .m2-body-2 .box{display:flex;flex-direction:column;gap:20px;justify-content:center;height:100%;overflow:hidden;}
.m2 .m2-body-2 .box h3{font-size:3em;font-weight:700;transform: translate(0,-30px);opacity:0;visibility:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
.m2 .m2-body-2 .swiper-slide-active .box h3{transform: translate(0,0);opacity:1;visibility:visible;}
.m2 .m2-body-2 .box h3>a{color:#527294;}
.m2 .m2-body-2 .box .text{transform: translate(0,-30px);opacity:0;visibility:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
.m2 .m2-body-2 .swiper-slide-active .box .text{transform: translate(0,0);opacity:1;visibility:visible;}
.m2 .m2-body-2 .box .more{display:block;font-weight:700;width:fit-content;color:#fff;position:relative;padding:0 40px;border-bottom:1px solid #527294;line-height:40px;color:#527294;transform: translate(0,-30px);opacity:0;visibility:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
.m2 .m2-body-2 .swiper-slide-active .box .more{transform: translate(0,0);opacity:1;visibility:visible;}
.m2 .m2-body-2 .box .more:before{content:'';width:30px;height:50%;position:absolute;bottom:0;left:0;border-top:1px solid #527294;border-left:1px solid #527294;}
.m2 .m2-body-2 .box .more:after{content:'';width:30px;height:50%;position:absolute;bottom:0;right:0;border-top:1px solid #527294;border-right:1px solid #527294;}
@media only screen and (max-width:991px){
    .m2{display:flex;flex-direction:column-reverse;padding:0 15px;}
    .m2 .m2-body-2{width:100%;position:relative;top:0;left:0;height:450px;padding-top:30px;margin-bottom:30px;}

    .m2 .m2-body-1{width:100%;left:0%;position:relative;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    .m2 .m2-body-2{left:45px;}
}
@media only screen and (min-width:1200px) and (max-width:1440px){
    .m2 .m2-body-2{left:45px;}
}
/*--- M3 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m3{padding:100px 0;}
.m3 .list{margin-bottom:30px;}
.m3 .list h2{font-size:1.5em;text-transform:uppercase;margin-bottom:50px;}
.m3 .list h2>a{color:#527294;}
.m3 .list ul{list-style:none;margin:0;padding:0;margin-bottom:50px;}
.m3 .list ul>li{padding-left:100px;position:relative;height:40px;}
.m3 .list ul>li:before{content:'';width:30px;top:50%;border-top:1px solid #527294;position:absolute;left:0;}
.m3 .list ul>.long:before{content:'';width:90px;top:50%;border-top:1px solid #527294;position:absolute;left:0;}
.m3 .list ul>li>button{height:40px;border:0;background:unset;font-size:1.62em;color:#272727;position:relative;width:fit-content;font-weight:500;}
.m3 .list ul>li>.active{font-weight:700;}
.m3 .list ul>li>.active:before{content:'';width:100%;height:50%;background:#527294;position:absolute;z-index:0;opacity:.2;bottom:0;left:0;}
.m3 .list .more{display:block;font-weight:700;width:fit-content;color:#fff;position:relative;padding:0 40px;border-bottom:1px solid #527294;line-height:40px;color:#527294;margin-left:40px;}
.m3 .list .more:before{content:'';width:30px;height:50%;position:absolute;bottom:0;left:0;border-top:1px solid #527294;border-left:1px solid #527294;}
.m3 .list .more:after{content:'';width:30px;height:50%;position:absolute;bottom:0;right:0;border-top:1px solid #527294;border-right:1px solid #527294;}
.m3 .list-body{position:relative;display:flex;flex-direction:column;justify-content:center;height:100%;}
.m3 .list-body .list-body-item{position:absolute;top:0;left:0;opacity:0;visibility:hidden;}
.m3 .list-body .list-body-item-active{position:relative;opacity:1;visibility:visible;}
.m3 .list-body .list-body-item .box{box-shadow:7px 17px 12px #0000001D;border-radius:47px;overflow:hidden;background:#fff;margin-bottom:30px;}
.m3 .list-body .list-body-item .box img{width:100%;height:420px;object-fit:contain;}
@media only screen and (max-width:991px){
    .m3{padding:50px 0;}
    .m3 .list ul>li{height:20px;}
    .m3 .list ul>li>button{height:20px;}
    .m3 .list .more{margin-left:0;}
    .m3 .list-body{height:auto;}
}
/*--- M4 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m4{padding:100px 0;}
.m4 .m4-body{border:1px solid #004A9A;display:flex;flex-direction:row;overflow:hidden;position:relative;align-items:center;}
.m4 .m4-body:after{content:'';width:auto;height:100%;aspect-ratio: 1/1;background:#004A9A;position:absolute;bottom:0;right:0;transform: skewX(-35deg) translate(65%,0);}
.m4 .m4-body .img{max-width:30%;flex:0 0 30%;padding:30px;}
.m4 .m4-body .img img{width:100%;height:auto;}
.m4 .m4-body .text{max-width:50%;flex:0 0 50%;}
.m4 .m4-body .text p{font-size:1.62em;font-weight:900;color:#004A9A;}
.m4 .m4-body .button{padding:30px 0;}
.m4 .m4-body .button .more{display:block;font-weight:700;width:fit-content;color:#fff;position:relative;padding:0 40px;border-bottom:1px solid #527294;line-height:40px;color:#527294;}
.m4 .m4-body .button .more:before{content:'';width:30px;height:50%;position:absolute;bottom:0;left:0;border-top:1px solid #527294;border-left:1px solid #527294;}
.m4 .m4-body .button .more:after{content:'';width:30px;height:50%;position:absolute;bottom:0;right:0;border-top:1px solid #527294;border-right:1px solid #527294;}
@media only screen and (max-width:991px){
    .m4{padding:50px 0;}
    .m4 .m4-body{flex-direction:column;}
    .m4 .m4-body:after{opacity:.3;z-index:-999;}
    .m4 .m4-body .img{max-width:100%;flex:0 0 100%;}
    .m4 .m4-body .text{max-width:100%;flex:0 0 100%;padding:20px;text-align:center;}
}
/*--- FOOTER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
footer{padding:90px 0;position:relative;overflow:hidden;}
footer:before{content:'';width:100%;height:100%;background:#142963;position:absolute;top:0;left:27%;transform:skewX(-25deg);z-index:-1;}
footer:after{content:'';width:100%;height:50%;background:#527294;position:absolute;bottom:0;left:21%;transform:skewX(-25deg);z-index:-2;}
footer a{color:#fff;}
footer .f-wrapper{display:flex;flex-direction:row;margin-bottom:50px;}
footer .f-wrapper .f-left{max-width:25%;flex:0 0 25%;}
footer .f-wrapper .f-right{max-width:75%;flex:0 0 75%;}
footer .list1{display:flex;flex-direction:row;justify-content:flex-end;list-style:none;margin:0;padding:0;margin-bottom:50px;gap:20px;}
footer .list1>li{max-width:50%;}
footer .list1>li>strong{display:block;font-size:.6em;color:#fff;font-weight:normal;}
footer .list1>li>ol{list-style:none;margin:0;padding:0;}
footer .list1>li>ol>li{font-size:1.56em;font-weight:500;color:#fff;}
footer .list1>li:first-child>ol>li{white-space:nowrap;}
footer .list2{display:flex;flex-direction:row;justify-content:space-between;list-style:none;margin:0;padding:0;padding-top:50px;border-top:1px solid #FFFFFF;margin-bottom:50px;}
footer .list2>li>a{display:block;color:#fff;font-size:1.06em;line-height:30px;}
footer .contracts{display:flex;flex-direction:row;justify-content:flex-end;gap:20px;border-top:1px solid #fff;padding:20px 0;}
footer .contracts a{display:block;font-size:.8em;}
footer .copyright{margin-bottom:30px;font-size:.7em;text-align:center;color:#fff;}
footer .swa{text-align:center;}
footer .swa img{width:50px;height:auto;filter:invert(100%);}
@media only screen and (max-width:991px){
    footer:before{transform:skewX(0deg);left:0;}
    footer:after{transform:skewX(-25deg);left:0;}
    footer .f-wrapper{flex-direction:column;}
    footer .f-wrapper .f-left{max-width:100%;flex:0 0 100%;}
    footer .f-wrapper .f-left img{width:300px;max-width:100%;margin:0 auto 30px auto;background:#fff;border-radius:20px;padding:10px;display:block;}
    footer .f-wrapper .f-right{max-width:100%;flex:0 0 100%;}
    footer .list1{flex-direction:column;justify-content:center;align-items:center;text-align:center;}
    footer .list1>li{margin-bottom:30px;max-width:100%;}
    footer .list2{flex-direction:column;justify-content:center;align-items:center;}
    footer .contracts{justify-content:center;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    footer:before{transform:skewX(0deg);left:0;}
    footer:after{transform:skewX(-25deg);left:0;}
    footer .f-wrapper{flex-direction:column;}
    footer .f-wrapper .f-left{max-width:100%;flex:0 0 100%;}
    footer .f-wrapper .f-left img{width:300px;max-width:100%;margin:0 auto 30px auto;background:#fff;border-radius:20px;padding:10px;display:block;}
    footer .f-wrapper .f-right{max-width:100%;flex:0 0 100%;}
    footer .list1{flex-direction:column;justify-content:center;align-items:center;text-align:center;}
    footer .list1>li{margin-bottom:30px;max-width:100%;}
    footer .list2{flex-direction:column;justify-content:center;align-items:center;}
    footer .contracts{justify-content:center;}
}
@media only screen and (min-width:1200px) and (max-width:1440px){
    footer{font-size:11px;}
    footer:after{left:18%;}
    footer .list1{justify-content:flex-end;gap:30px;}
    footer .list2{justify-content:flex-end;gap:50px;}
}
/*--- PAGE ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.page .page-head{padding:250px 0 35px 0;background: var(--bg-color);}
.page .page-head h1{font-size:2.5em;font-weight:600;margin-bottom:25px;color:#fff;}
.page .page-head p{font-size:.9em;font-weight:200;margin-bottom:25px;color:#fff;}
.page .page-head .breadcrumb{font-size:.8em;color:#fff;}
.page .page-head .breadcrumb .breadcrumb-item.active{color:#fff;}
.page .page-head .breadcrumb-item+.breadcrumb-item::before{color:#fff;}
.page .page-body{padding:50px 0 20px 0;}
.page .page-foot{padding:50px 0 20px 0;background:var(--bg-color);margin-bottom:50px;}
.page .page-form{margin-bottom:50px;}
/*--- COOKIE-POLICY -----------------------------------------------------------------------------------------------------------------------------------------------------*/
.cookie-accept {position:fixed;bottom:-100%;left:0;right:0;width:100%;z-index:99;border:1px solid #ddd;background:#fff;display:flex;justify-content:center;align-items:center;transition:bottom 1s ease-in-out;-webkit-transition:bottom 1s ease-in-out;-moz-transition:bottom 1s ease-in-out;-o-transition:bottom 1s ease-in-out;padding:20px;}
.cookie-accept.active {bottom:0;}
.cookie-accept .close {position:absolute;right:15px;top:-15px;width:30px;height:30px;border:1px solid #ddd;line-height:30px;text-align:center;font-size:1.5em;background:#fff;}
.cookie-accept .icon {text-align: center;}
.cookie-accept .icon i {font-size:4em;}
.cookie-accept .content {padding:1.5em;}
.cookie-accept .content strong {display:block;font-size:1.5em;line-height:1;margin-bottom:10px;}
.cookie-accept .content p {font-size:1.1em;font-weight:200;margin:0;}
.cookie-accept .buttons ul {list-style:none;margin:0;padding:0;display:flex;gap:10px;}
.cookie-accept .buttons ul > li {flex:1 1 auto;}
.cookie-accept .buttons ul > li > a{display:flex;padding:10px 20px;background:#aaa;color:#fff;text-align:center;text-decoration:none;align-items:center;height:100%;}
@media only screen and (max-width: 767px) {
    .cookie-accept {flex-direction: column;}
}
/*--- FORM --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.form-group{margin-bottom:20px;}
.form-group label{display:block;font-size:1em;font-weight:700;margin-bottom:5px;}
.form-group .form-control{min-height:45px;border:0;border:1px solid #eee;font-size:1em;}
.form-group .form-control::placeholder{font-size:1em;}
.form-group input[type="checkbox"]{width:25px;height:25px;}
.form-checkbox-group{display:flex;line-height: 25px;}
.form-checkbox-group>input{accent-color:var(--primary-color);}
.form-checkbox-group a{padding-left:15px;}
.form-group button{background-color:var(--primary-color);color:#fff;font-size:1em;}
.form-group button:hover{background-color:var(--secondary-color);color:#fff;}
/*rating*/
.stars {width:100%;text-align: center;border:1px solid #eee;border-radius:5px;overflow: hidden;display: flex;justify-content: center;flex-direction: row-reverse;margin-bottom:20px;}
.stars-focus{box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);}
input.star {display: none;}
label.star {margin:0;padding: 0 5px;font-size: 30px;color: #ddd;transition: all .2s;}
input.star:checked ~ label.star:before {content: '\f005';color: #FD4;transition: all .25s;font-weight: 900;}
input.star-5:checked ~ label.star:before {color: #FE7;}
input.star-1:checked ~ label.star:before {color: #F62;}
input.star-2:hover ~ label.star-1 {color: #F62;}
input.star-3:hover ~ label.star-1, input.star-3:hover ~ label.star-2 { color: #F62; }
input.star-4:hover ~ label.star-1, input.star-4:hover ~ label.star-2, input.star-4:hover ~ label.star-3 { color: #F62; }
input.star-5:hover ~ label.star-1, input.star-5:hover ~ label.star-2, input.star-5:hover ~ label.star-3, input.star-5:hover ~ label.star-4 {color: #F62;}
label.star:hover {color: #ffa300;}
label.star:before {content: '\f005';font-family: 'Font Awesome 5 Free';font-weight: 400;}
/*security-input*/
.security-group{margin-bottom:20px;position:relative;}
.security-group label{display: block;font-size:14px;font-weight:700;margin-bottom:5px;}
.security-group .img{position:absolute;bottom:0;left:0;}
.security-group .img img{min-height:45px;}
.security-group .img button{border:0;min-height:45px;min-width:45px;margin:0;background:transparent;}
.security-group input{text-indent:175px;min-height:45px;min-height:45px;border:1px solid #eee;font-size:1em;}
/*--- LOADING ---------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#loading{width:100%;height:100vh;position:fixed;top:0;left:0;background:rgba(0,0,0,.7);z-index:9999999;display:flex;flex-direction:column;justify-content:center;align-items:center;}
@keyframes spin{to{transform: rotate(360deg);}from{transform: rotate(0);}}
#loading:before{content:'\f110';color:#fff;font-family: 'Font Awesome 6 Free';font-weight:900;animation: spin infinite 1s linear;}
/*--- NO-CONTENT --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.no-content{padding:40px 20px;border:1px dashed #eee;border-radius:10px;text-align:center;margin-bottom:30px;}
.no-content>i{font-size:30px;margin-bottom:15px;color:#aaa;}
.no-content>p{font-size:18px;padding:0;margin:0;font-weight:200;}
/*--- HEMEN ARA - WHATSAPP --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@-webkit-keyframes ripple {0% {opacity: 1;-webkit-transform: scale(0);transform: scale(0);}100% {opacity: 0;-webkit-transform: scale(1);transform: scale(1);}}
@keyframes ripple {0% {opacity: 1;-webkit-transform: scale(0);transform: scale(0);}100% {opacity: 0;-webkit-transform: scale(1);transform: scale(1);}}

.fixed-button{position:fixed;bottom:15px;left:15px;display:flex;flex-direction:column;gap:15px;z-index:9999;}
.fixed-button>a{height:40px;width:40px;text-align: center;border-radius:80px;z-index: 999;color: white;position:relative;}
.fixed-button>a>i{line-height:40px;font-size:25px;}
.fixed-button>a .ripple{position: absolute;width:120px;height:120px;z-index: -1;left: 50%;top: 50%;opacity: 0;margin: -60px 0 0 -60px;border-radius:80px;-webkit-animation: ripple 1.8s infinite;animation: ripple 1.8s infinite;}
.fixed-button>a .ripple:nth-child(2) {animation-delay: .3s;-webkit-animation-delay: .3s;}
.fixed-button>a .ripple:nth-child(3) {animation-delay: .6s;-webkit-animation-delay: .6s;}

.whatsAppBg{background-color: #068404 !important;background-image: linear-gradient(90deg, #068404, #0ba909);}
.hemenAraBg {background-color: #004080 !important;background-image: linear-gradient(90deg, #004080, #0073e6);}