@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*
font-family: "Poppins", sans-serif;
font-family: "Montserrat", sans-serif;
*/
html,body{
    width:100%;
    height:100%;
}
body{
    font-size:13px;
    font-family: "Poppins", sans-serif;
    color:var(--text-color);
    font-weight:400;
}
@media only screen and (min-width:1441px){
    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 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
header .h-wrapper{padding:0 8%;display:flex;flex-direction:row;justify-content:space-between;align-items:center;}
header .logo img{display:block;max-width:100%;height:auto;}
header .menu{position:relative;}
header .menu .menu-bar{display:none;}
header .menu>ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;}
header .menu>ul>li>a{display:block;position:relative;padding:70px 17px;color:#58595B;font-size:1.12em;}
header .menu>ul>li>a:before{content:'';width:100%;height:0%;background:#58595B;position:absolute;top:0;left:0;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;z-index:-1;}
header .menu>ul>li>a:after{content:'';width:100%;height:0%;background:#58595B;position:absolute;bottom:0;left:0;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;z-index:-1;}
header .menu>ul>li>a:hover:before{height:100%;opacity:1;visibility:visible;}
header .menu>ul>li>a:hover:after{height:100%;opacity:1;visibility:visible;}
header .menu>ul>li>a:hover{color:#fff;}
@media only screen and (max-width:767px){
    header .h-wrapper{padding:0 15px;flex-direction:column;justify-content:unset;align-items:unset;}
    header .logo{padding:20px 0;}
    header .logo img{margin:0 auto;}
    header .menu{margin-bottom:20px;}
    header .menu .menu-bar{display:block;padding:10px 20px;color:#fff;background:linear-gradient(#ED1C24,#B42E33);}
    header .menu>ul{flex-direction:unset;display:none;background:rgba(0, 0, 0, .8);padding:20px 10px;position:absolute;z-index:99;width:100%;}
    header .menu>ul>li>a{padding:10px;color:#fff;border-bottom:1px solid #666;}
    header .menu>ul>li:last-child>a{border:0;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    header .h-wrapper{padding:0 15px;flex-direction:column;justify-content:unset;align-items:unset;}
    header .logo{padding:20px 0;}
    header .logo img{margin:0 auto;}
    header .menu{margin-bottom:20px;}
    header .menu .menu-bar{display:block;padding:10px 20px;color:#fff;background:linear-gradient(#ED1C24,#B42E33);}
    header .menu>ul{flex-direction:unset;display:none;background:rgba(0, 0, 0, .8);padding:20px 10px;position:absolute;z-index:99;width:100%;}
    header .menu>ul>li>a{padding:10px;color:#fff;border-bottom:1px solid #666;}
    header .menu>ul>li:last-child>a{border:0;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    header .h-wrapper{padding:0 15px;}
    header .logo{max-width:220px;}
    header .menu>ul>li>a{font-size:1em;padding:50px 10px;}
}
@media only screen and (min-width:1200px) and (max-width:1440px){
    header .h-wrapper{padding:0 5%;}
    header .menu>ul>li>a{padding:50px 10px;}
}
/*--- SLIDER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.slider{padding:200px 0;background:url('../images/slide-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-o-background-size:cover;-moz-background-size:cover;}
.slider .slider-container{padding:0 8%;}
.slider .swiper-slide{display:flex;flex-direction:row;align-items:center;overflow:hidden;margin-bottom:50px;}
.slider .swiper-slide .slide-left{max-width:40%;flex:0 0 40%;}
.slider .swiper-slide .slide-right{max-width:60%;flex:0 0 60%;}
.slider .swiper-slide .text{padding:0 10%;}
.slider .swiper-slide .text h2{font-size:3.5em;color:#fff;font-weight:300;margin-bottom:30px;line-height:77px;transform:translate(-100%,0);opacity:0;visibility:hidden;transition:all .3 ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
.slider .swiper-slide-active .text h2{transform:translate(0,0);opacity:1;visibility:visible;transition-delay:.3s;}
.slider .swiper-slide .text h2 strong{display:block;font-weight:600;}
.slider .swiper-slide .text p{font-size:1.12em;color:#fff;font-weight:200;margin-bottom:40px;transform:translate(-100%,0);opacity:0;visibility:hidden;transition:all .3 ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
.slider .swiper-slide-active .text p{transform:translate(0,0);opacity:1;visibility:visible;transition-delay:.6s;}
.slider .swiper-slide .text .more{display:block;width:fit-content;color:#fff;line-height:60px;padding:0 20px;background: transparent linear-gradient(180deg, var(--unnamed-color-ed1c24) 0%, #B42E33 100%) 0% 0% no-repeat padding-box;background: transparent linear-gradient(180deg, #ED1C24 0%, #B42E33 100%) 0% 0% no-repeat padding-box;border-radius: 15px;transform:translate(-100%,0);opacity:0;visibility:hidden;transition:all .3 ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
.slider .swiper-slide-active .text .more{transform:translate(0,0);opacity:1;visibility:visible;transition-delay:.9s;}
.slider .swiper-slide .images{padding:30px 0;display:flex;flex-direction:row;gap:10px;justify-content:flex-end;align-items:flex-end;/*min-width:max-content;*/}
.slider .swiper-slide .images img{display:block;width:auto;height:auto;flex-shrink:0;}
.slider .swiper-slide .images .img1{max-width:80%;height:auto;margin-right:-20%;transform: translate(100%,0);opacity:0;visibility:hidden;transition:all .3 ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
.slider .swiper-slide-active .images .img1{transform: translate(0,0);opacity:1;visibility:visible;transition-delay:.3s;}
.slider .swiper-slide .images .img2{max-width:calc(25% - 10px);height:auto;transform: translate(100%,0);opacity:0;visibility:hidden;transition:all .3 ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
.slider .swiper-slide-active .images .img2{transform: translate(0,0);opacity:1;visibility:visible;transition-delay:.6s;}
.slider .swiper-slide .images .img3{max-width:calc(25% - 10px);height:auto;transform: translate(100%,0);opacity:0;visibility:hidden;transition:all .3 ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
.slider .swiper-slide-active .images .img3{transform: translate(0,0);transition-delay:.3s;opacity:1;visibility:visible;transition-delay:.9s;}
.slider .swiper-nav{gap:30px;display:flex;flex-direction:row;gap:50px;align-items:center;justify-content:space-around;position:relative;z-index:9999;align-items:center;}
.slider .swiper-nav .swiper-slide-prev{border-left:1px solid #fff;border-bottom:2px solid #fff;cursor:pointer;border-radius:0 0 0 30px;font-size:1.25em;color:#fff;padding:5px 20px;font-weight:300;user-select:none;}
.slider .swiper-nav .swiper-slide-prev:active{transform:translate(-5px,0);opacity:.5;}
.slider .swiper-nav .swiper-slide-next{border-right:1px solid #fff;border-bottom:2px solid #fff;cursor:pointer;border-radius:0 0 30px 0;font-size:1.25em;color:#fff;padding:5px 20px;font-weight:300;user-select:none;}
.slider .swiper-nav .swiper-slide-next:active{transform:translate(5px,0);opacity:.5;}
.slider .swiper-nav .swiper-pagination{position:relative;bottom:unset;left:unset;right:unset;top:unset;width:unset;}
.slider .swiper-nav .swiper-pagination .swiper-pagination-bullet{width:40px;height:1px;background:#C6C6C6;}
@media only screen and (max-width:767px){
    .slider{padding:15px 0;height:fit-content;}
    .slider .slider-container{padding:50px 15px;}
    .slider .swiper-slide{flex-direction:column;}
    .slider .swiper-slide .slide-left{max-width:100%;flex:0 0 100%;}
    .slider .swiper-slide .slide-right{max-width:100%;flex:0 0 100%;}
    .slider .swiper-slide .text{margin-bottom:50px;}
    .slider .swiper-slide .images{justify-content:space-between;}
    .slider .swiper-slide .images .img1{margin-right:-30%;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .slider{padding:15px 0;height:fit-content;}
    .slider .slider-container{padding:50px 15px;}
    .slider .swiper-slide{flex-direction:column;align-items:unset;}
    .slider .swiper-slide .slide-left{max-width:100%;flex:0 0 100%;}
    .slider .swiper-slide .slide-right{max-width:100%;flex:0 0 100%;}
    .slider .swiper-slide .text{margin-bottom:50px;padding:0;text-align:center;}
    .slider .swiper-slide .text p{text-align:center;padding:0 10%;}
    .slider .swiper-slide .text .more{margin:0 auto;}
    .slider .swiper-slide .images{justify-content:space-between;}
    .slider .swiper-slide .images .img1{margin-right:-30%;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    .slider{padding:50px 0;}
    .slider .slider-container{padding:0 45px;}
    .slider .swiper-slide .text{padding:0;}
    .slider .swiper-slide .images .img1{max-width:60%;}
    .slider .swiper-slide .images .img2{max-width:calc(18% - 20px);}
    .slider .swiper-slide .images .img3{max-width:calc(20% - 20px);}
}
@media only screen and (min-width:1200px) and (max-width:1440px){
    .slider{padding:50px 0;}
    .slider .slider-container{padding:0 5%;}
    .slider .swiper-slide .images .img1{max-width:60%;}
    .slider .swiper-slide .images .img2{max-width:calc(18% - 20px);}
    .slider .swiper-slide .images .img3{max-width:calc(20% - 20px);}
}
/*--- M1 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m1{padding:70px 0;}
.m1 .m1-wrapper{display:flex;flex-direction:row;}
.m1 .m1-wrapper .m1-left{max-width:50%;flex:0 0 50%;}
.m1 .m1-wrapper .m1-right{max-width:50%;flex:0 0 50%;}
.m1 .image img{width:100%;height:auto;}
.m1 .box{width:75%;height:100%;padding:30px 60px;display:flex;flex-direction:column;gap:30px;justify-content:center;}
.m1 .box h2{font-size:4.68em;text-align:center;}
.m1 .box h2 span{display:block;color:#58595B;font-weight:300;}
.m1 .box h2 strong{display:block;color:#ED1C24;font-weight:600;}
.m1 .box .text{font-size:1.37em;text-align:center;font-weight:200;color:#58595B;}
.m1 .box .list{display:flex;flex-direction:row;gap:20px;justify-content:center;}
.m1 .box .list a{display:flex;flex-direction:row;gap:10px;align-items:center;color:#58595B;}
.m1 .box .list a span{display:block;font-size:.6em;text-transform:uppercase;letter-spacing:0px;}
.m1 .box .list a strong{display:block;font-size:1.06em;}
@media only screen and (max-width:360px){
    .m1 .box .list{flex-direction:column;align-items:center;}
}
@media only screen and (max-width:767px){
    .m1 .box{width:100%;padding:30px 40px;}
    .m1 .box h2{font-size:3.5em;}
    .m1 .m1-wrapper{flex-direction:column;}
    .m1 .m1-wrapper .m1-left{max-width:100%;flex:0 0 100%;}
    .m1 .m1-wrapper .m1-right{max-width:100%;flex:0 0 100%;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .m1 .box{width:100%;padding:30px 40px;}
    .m1 .box h2{font-size:3.5em;}
    .m1 .m1-wrapper{flex-direction:column;}
    .m1 .m1-wrapper .m1-left{max-width:100%;flex:0 0 100%;}
    .m1 .m1-wrapper .m1-right{max-width:100%;flex:0 0 100%;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    .m1 .box{width:100%;padding:30px 40px;}
}
@media only screen and (min-width:1200px) and (max-width:1440px){
    .m1 .box{width:100%;padding:30px 40px;}
}
/*--- M2 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m2{padding:70px 0;}
.m2 .m2-left{padding:50px;position:relative;font-size:3.5em;color:#3B3836;font-weight:300;line-height:85px;font-family: "Montserrat", sans-serif;}
.m2 .m2-left:before{content:'';width:37px;height:37px;border-top:7px solid #ED1C24;border-left:7px solid #ED1C24;position:absolute;top:0;left:0;}
.m2 .m2-left:after{content:'';width:37px;height:37px;border-bottom:7px solid #ED1C24;border-right:7px solid #ED1C24;position:absolute;bottom:0;right:0;}
.m2 .m2-right{display:flex;flex-direction:column;height:100%;justify-content:center;font-size:1.18em;color:#58595B;line-height:35px;}
@media only screen and (max-width:767px){
    .m2 .m2-left{font-size:2em;line-height:2em;margin-bottom:50px;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .m2 .m2-left{margin-bottom:50px;line-height:2em;font-size:3em;}
}
/*--- M3 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m3{padding:50px 0;}
.m3 .list-top{position:relative;overflow:hidden;margin-bottom:65px;}
.m3 .list{display:flex;gap:40px;width:fit-content;padding-right:40px;position:relative;}
.m3 .list:before{content:'';width:200%;height:1px;background:#58595B;position:absolute;top:50%;left:100%;}
.m3 .list button{border:0;background:unset;font-size:1.43em;color:#58595B;}
.m3 .list .active{color:#ED1C24;}
.m3 .list-body{position:relative;}
.m3 .list-body .list-body-item{position:absolute;top:0;left:0;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;}
.m3 .list-body .list-body-item-active{position:relative;opacity:1;visibility:visible;}
.m3 .list-body .list-body-item{display:flex;flex-direction:row;justify-content:space-between;}
.m3 .list-body .list-body-item .item-left{display:flex;flex-direction:column;max-width:50%;flex:0 0 50%;gap:50px;justify-content:center;padding-right:200px;}
.m3 .list-body .list-body-item .item-left p{font-size:1.18em;color:#58595B;font-weight:200;line-height:35px;}
.m3 .list-body .list-body-item .item-left ul{list-style:none;padding:0;margin:0;}
.m3 .list-body .list-body-item .item-left ul>li{display:flex;flex-direction:row;gap:10px;font-weight:500;color:#58595B;font-size:1.10em;}
.m3 .list-body .list-body-item .item-left ul>li>img{width:15px;height:auto;}
.m3 .list-body .list-body-item .item-right{max-width:50%;flex:0 0 50%;}
.m3 .list-body .list-body-item .item-right img{width:100%;height:auto;}
@media only screen and (max-width:767px){
    .m3 .list button{font-size:1em;}
    .m3 .list-body .list-body-item{flex-direction:column;}
    .m3 .list-body .list-body-item .item-left{max-width:100%;flex:0 0 100%;padding-right:0;margin-bottom:50px;}
    .m3 .list-body .list-body-item .item-right{max-width:100%;flex:0 0 100%;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .m3 .list-body .list-body-item .item-left{padding-right:20px;}
}
/*--- M4 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m4{padding:100px 0;background:url('../images/m4-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-o-background-size:cover;-moz-background-size:cover;}
.m4 .m4-text{width:45%;}
.m4 .m4-text h2{font-size:1.56em;color:#FF8186;letter-spacing:4.83px;font-weight:200;margin-bottom:15px;font-family: "Montserrat", sans-serif;text-transform:uppercase;}
.m4 .m4-text strong{display:block;color:#fff;font-weight:700;font-family: "Montserrat", sans-serif;margin-bottom:30px;letter-spacing: 0px;font-size:2.06em;}
.m4 .m4-text p{font-size:1.18em;color:#fff;}
.m4 .m4-image{position:relative;}
.m4 .m4-image .img{display:block;max-width:50%;height:auto;margin:0 auto;position:relative;z-index:9;}
.m4 .m4-image .icon1{position:absolute;bottom:15%;left:0;max-width:25%;height:auto;}
.m4 .m4-image .icon2{position:absolute;top:-35%;right:0;max-width:45%;height:auto;}
@media only screen and (max-width:767px){
    .m4 .m4-text{width:100%;margin-bottom:100px;}
}
/*--- M5 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.faqs{padding:117px 0;width:100%;overflow:hidden;}
.faqs .faqs-wrapper{display:flex;flex-direction:row;gap:40px;width:100% !important;height:fit-content !important;}
.faqs .faqs-wrapper .faqs-left{flex:1;overflow:hidden;}
.faqs .faqs-wrapper .faqs-left h2{font-size:2.06em;font-weight:400;padding:25px 0;border-bottom:1px solid #58595B;margin-bottom:50px;font-family: "Montserrat", sans-serif;position:relative;}
.faqs .faqs-wrapper .faqs-left h2:before{content:'';width:26px;height:26px;background:#58595B;position:absolute;bottom:0;right:0;transform:rotate(45deg) translate(75%,0%);}
.faqs .faqs-wrapper .faqs-left .faqs-list{position:relative;height:400px;width:100%;min-height:100px;position:relative;overflow:hidden;}
.faqs .faqs-wrapper .faqs-left .faqs-list .swiper{width:100% !important;height:100%;}
.faqs .faqs-wrapper .faqs-left .faqs-list .swiper .swiper-slide{width:100%;height:100%;padding-left:70px;position:relative;padding-right:15%;max-width:100%;overflow:hidden;}
.faqs .faqs-wrapper .faqs-left .faqs-list .swiper .swiper-slide:before{content:'';width:40px;height:40px;position:absolute;left:0;top:0;font-size:5em;color:#58595B;text-align:center;background:url('../images/faq-icon.svg') no-repeat center center;background-size:contain;-webkit-background-size:contain;-moz-background-size:contain;-o-background-size:contain;}
.faqs .faqs-wrapper .faqs-left .faqs-list .swiper .swiper-slide h3{font-size:3.68em;font-weight:700;font-family: "Montserrat", sans-serif;margin-bottom:30px;}
.faqs .faqs-wrapper .faqs-left .faqs-list .swiper .swiper-slide p{fonr-size:1.18em;color:#58595B;}
.faqs .faqs-wrapper .faqs-right{flex-basis:0;width:100px;height:405px;padding-top:40px;}
.faqs .faqs-wrapper .faqs-right img{background:#F2F2F2;width:100px;height:100px;border-radius:50%;}
.faqs .faqs-wrapper .faqs-right .swiper{width:100px;height:100%;}
.faqs .faqs-wrapper .faqs-right .swiper .swiper-slide{height:100px;opacity:.5;}
.faqs .faqs-wrapper .faqs-right .swiper .swiper-slide-active{opacity:1;}
.faqs .faqs-wrapper .faqs-right .swiper .swiper-slide img{width:100%;height:auto;}
@media only screen and (max-width:767px){
    .faqs .faqs-wrapper{gap:10px;}
    .faqs .faqs-wrapper .faqs-left .faqs-list{height:550px;}
    .faqs .faqs-wrapper .faqs-left .faqs-list .swiper .swiper-slide{padding-left:40px;}
    .faqs .faqs-wrapper .faqs-left .faqs-list .swiper .swiper-slide:before{width:30px;height:30px;}
    .faqs .faqs-wrapper .faqs-left .faqs-list .swiper .swiper-slide h3{font-size:2em;}
    .faqs .faqs-wrapper .faqs-left .faqs-list .swiper .swiper-slide p{font-size:1em;}
    .faqs .faqs-wrapper .faqs-right{width:75px;height:405px;padding-top:80px;}
    .faqs .faqs-wrapper .faqs-right img{width:75px !important;height:75px !important;}
}
/*--- SERVICES ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.services{padding:90px 0; background:linear-gradient(to bottom, #FAFAFA, #FAFAFAF7, #FFFFFF00);}
.services .title{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;margin-bottom:50px;}
.services .title img{display:block;width:60px;height:auto;margin-bottom:20px;}
.services .title h2{font-size:2.06em;margin:0;padding:0;text-align:center;}
.services .title h2>a{color:#ED1C24;}
.services .title p{color:#58595B;font-size:1.56em;font-weight:200;margin:0;padding:0;text-align:center;}
.services .service-box{background:linear-gradient(to bottom,#272727,#58595B);padding:35px;border-radius:35px;margin-bottom:30px;min-height:465px;}
.services .service-box .img{height:175px;padding:20px;}
.services .service-box .img img{display:block;max-width:100%;height:auto;}
.services .service-box .content{}
.services .service-box .content h3{font-size:1.25em;color:#fff;font-weight:bold;font-family: "Montserrat", sans-serif;line-height:1.2em;min-height:2.4em;}
.services .service-box .content p{font-size:1.06em;color:#fff;font-weight:300;line-height:1.2em;min-height:6em;}
.services .service-box .content .more{display:inline-block;font-size:0.93em;color:#fff;padding:0 25px;line-height:42px;border:1px solid #fff;border-radius:10px;}
.services .service-box-more{background:linear-gradient(to bottom,#272727,#58595B);padding:35px;border-radius:35px;margin-bottom:30px;min-height:465px;display:flex;flex-direction:column;justify-content:center;gap:30px;text-align:center;}
.services .service-box-more img{display:block;width:60px;height:auto;margin:0 auto;}
.services .service-box-more h3{color:#FFFFFF;font-weight:600;font-family: "Montserrat", sans-serif;text-align:center;width:75%;text-align:center;margin:0 auto;}
.services .service-box-more .more{display:block;margin:0 auto;width:fit-content;background:#ED1C24;color:#fff;font-size:1.12em;font-weight:300;padding:0 30px;border-radius:10px;line-height:52px;}
/*--- M6 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m6{padding:50px 0;overflow:hidden;}
.m6 .title{display:flex;flex-direction:column;justify-content:center;gap:10px;margin-bottom:50px;padding:0 10%;}
.m6 .title h2{text-align:center;color:#58595B;font-weight:300;}
.m6 .title h2 span{color:#ED1C24;}
.m6 .title p{font-size:1.56em;color:#58595B;text-align:center;font-weight:200;}
.m6 .m6-wrapper{padding-left:16.66%;width:103%;position:relative;margin-bottom:50px;}
.m6 .m6-wrapper:after{content:'';width:550px;aspect-ratio:1/1;border-radius:50%;background:linear-gradient(#272727,#58595B);position:absolute;top:0;left:12%;z-index:-1;transform:translate(0,15%);}
.m6 .m6-wrapper .swiper-screens{position:relative;}
.m6 .m6-wrapper .swiper-screens:before{content:'';width:26%;height:100%;background:url('../images/bos-ekran.svg') no-repeat center center;background-size:contain;position:absolute;top:0;left:-5px;z-index:99;}
.m6 .m6-wrapper .swiper-screens .swiper-wrapper{padding:50px;}
.m6 .swiper-slide{overflow:hidden;}
.m6 .swiper-slide img{width:100%;height:auto;}
.m6 .swiper-slide-prev{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;}
.m6 .swiper-slide-active{margin-right:40px !important;}
.m6 .swiper-slide-active{transform: scale(1.12);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;}
.m6 .swiper-nav{display:flex;flex-direction:row;justify-content:center;gap:30px;align-items:center;}
.m6 .swiper-nav .swiper-screen-pagination{position:relative;top:unset;bottom:unset;width:fit-content;height:unset;padding:0;}
.m6 .swiper-nav .swiper-screen-prev{font-size:1.7em;color:#EBEBEB;}
.m6 .swiper-nav .swiper-screen-prev:active{color:#ED1C24;}
.m6 .swiper-nav .swiper-screen-next{font-size:1.7em;color:#EBEBEB;}
.m6 .swiper-nav .swiper-screen-next:active{color:#ED1C24;}
.m6 .swiper-nav .swiper-pagination-bullet-active{background:#ED1C24;}
@media only screen and (max-width:767px){
    .m6 .m6-wrapper .swiper-screens .swiper-wrapper{padding:0;}
    .m6 .m6-wrapper{padding-left:0;width:100%;}
    .m6 .m6-wrapper:after{width:100%;left:0;transition:translate(0,0);}
    .m6 .swiper-slide-active{transform:unset;margin-right:0;}
    .m6 .m6-wrapper .swiper-screens:before{width:65%;left:0;right:0;margin:0 auto;}
    .m6 .swiper-slide img{width:60%;height:auto;margin:0 auto;display:block;padding:10px;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .m6 .m6-wrapper:after{width:300px;}
    .m6 .m6-wrapper .swiper-screens:before{width:37%;left:30px;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    .m6 .m6-wrapper:after{width:350px;}
    .m6 .m6-wrapper .swiper-screens:before{width:28%;left:30px;}
}
@media only screen and (min-width:1200px) and (max-width:1440px){
    .m6 .m6-wrapper:after{width:450px;}
    .m6 .m6-wrapper .swiper-screens:before{width:22%;left:30px;}
}
/*--- M7 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m7{padding:50px 0;background:linear-gradient(#3B3836,#292929,#292929);overflow:hidden;}
.m7 .box{display:flex;flex-direction:column;gap:30px;padding:140px 0;}
.m7 .box h2{font-size:3.12em;color:#fff;font-weight:300;font-family: "Montserrat", sans-serif;line-height:1.6em;}
.m7 .box p{font-size:1.18em;color:#fff;font-weight:200;line-height:33px;}
.m7 .point-wrapper{width:100%;height:100%;position:relative;margin-left:50px;font-size:12px !important;}
.m7 .point-wrapper .point1{width:13%;height:auto;aspect-ratio:1/1;top:10%;left:17%;position:absolute;line-height:1.2;background:#393939;border-radius:50%;color:#fff;font-size:.8em;font-weight:600;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;}
.m7 .point-wrapper .point1 span{display:block;}
.m7 .point-wrapper .point2{width:25%;height:auto;aspect-ratio:1/1; top:25%;left:0;position:absolute;line-height:1.2;background:#ED1C24;border-radius:50%;color:#fff;font-size:1em;font-weight:600;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;}
.m7 .point-wrapper .point2 span{display:block;}
.m7 .point-wrapper .point2 span:first-child{font-size:2.5em;}
.m7 .point-wrapper .point3{width:20%;height:auto;aspect-ratio:1/1;top:20%;left:30%;position:absolute;line-height:1.2;background:#ED1C24;border-radius:50%;color:#fff;font-size:1em;font-weight:600;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;}
.m7 .point-wrapper .point3 span{display:block;}
.m7 .point-wrapper .point3 span:first-child{font-size:2.5em;}
.m7 .point-wrapper .point4{width:30%;height:auto;aspect-ratio:1/1;top:0;right:0;position:absolute;line-height:1.2;background:#ED1C24;border-radius:50%;color:#fff;font-size:1em;font-weight:600;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;}
.m7 .point-wrapper .point4 span{display:block;}
.m7 .point-wrapper .point4 span:first-child{font-size:2.5em;}
.m7 .point-wrapper .point5{width:15%;height:auto;aspect-ratio:1/1;top:48%;left:25%;position:absolute;line-height:1.2;background:#393939;border-radius:50%;color:#fff;font-size:.8em;font-weight:600;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;}
.m7 .point-wrapper .point5 span{display:block;}
.m7 .point-wrapper .point5 span:first-child{font-size:1.62em;}
.m7 .point-wrapper .point6{width:45%;height:auto;aspect-ratio:1/1;bottom:0;right:0;position:absolute;line-height:1.2;background:#393939;border-radius:50%;color:#fff;font-size:1.62em;font-weight:600;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;}
.m7 .point-wrapper .point6 span{display:block;}
.m7 .point-wrapper .point6 span:first-child{font-size:3.62em;}
.m7 .point-wrapper .point7{width:20%;height:auto;aspect-ratio:1/1;top:72%;left:5%;position:absolute;line-height:1.2;background:#ED1C24;border-radius:50%;color:#fff;font-size:1em;font-weight:600;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;}
.m7 .point-wrapper .point7 span{display:block;}
.m7 .point-wrapper .point7 span:first-child{font-size:2.5em;}
.m7 .point-wrapper .pointbos1{left:-6%;top:25%;width:7%;height:auto;aspect-ratio:1/1; background:#393939;border-radius:50%;position:absolute;}
.m7 .point-wrapper .pointbos2{left:30%;top:7%;width:7%;height:auto;aspect-ratio:1/1;background:#393939;border-radius:50%;position:absolute;}
.m7 .point-wrapper .pointbos3{left:50%;top:13%;width:5%;height:auto;aspect-ratio:1/1;background:#393939;border-radius:50%;position:absolute;}
.m7 .point-wrapper .pointbos4{left:55%;top:14%;width:15%;height:auto;aspect-ratio:1/1;background:#393939;border-radius:50%;position:absolute;}
.m7 .point-wrapper .pointbos5{left:53%;top:31%;width:5%;height:auto;aspect-ratio:1/1;background:#393939;border-radius:50%;position:absolute;}
.m7 .point-wrapper .pointbos6{left:20%;top:62%;width:5%;height:auto;aspect-ratio:1/1;background:#393939;border-radius:50%;position:absolute;}
.m7 .point-wrapper .pointbos7{left:25%;top:68%;width:8%;height:auto;aspect-ratio:1/1;background:#393939;border-radius:50%;position:absolute;}
.m7 .point-wrapper .pointbos8{left:38%;top:66%;width:7%;height:auto;aspect-ratio:1/1;background:#393939;border-radius:50%;position:absolute;}
@media only screen and (max-width:767px){
    .m7 .box{padding:50px 0;}
    .m7 .point-wrapper{height:50vh;margin-left:0;font-size:8px !important;}
    .m7 .point-wrapper .pointbos1{left:2%;top:18%;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .m7 .box{padding:50px 0;}
    .m7 .point-wrapper{height:60vh;margin-left:0;}
}
/*--- M8 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m8{padding:100px 0;}
.m8 .title{margin-bottom:50px;overflow:hidden;}
.m8 .title>div{width:fit-content;padding-right:120px;display:flex;flex-direction:row;gap:10px;align-items:center;position:relative;}
.m8 .title>div:before{content:'';width:250%;top:65%;border-top:1px solid #C6C6C6;position:absolute;left:100%;}
.m8 .title>div>div img{width:95px;height:95px;}
.m8 .title>div>div h2{font-size:16px;font-weight:300;line-height:1;margin:0;}
.m8 .title>div>div h2>a>span{display:block;}
.m8 .title>div>div h2>a>span:first-child{font-size:1.43em;color:#58595B;}
.m8 .title>div>div h2>a>span:last-child{font-size:2.5em;color:#ED1C24;}
.m8 .blog-box{padding:25px 15px;margin-bottom:30px;background: #FFFFFF 0% 0% no-repeat padding-box;box-shadow: 0px 3px 6px #00000029;border: 1px solid #EBEBEB;border-radius: 15px;}
.m8 .blog-box .content{padding:20px;min-height:200px;}
.m8 .blog-box .content .date{display:block;color:#ED1C24;font-size:1.12em;margin-bottom:20px;}
.m8 .blog-box .content .date>span{color:#58595B;margin-left:20px;}
.m8 .blog-box .content h3{font-size:1.25em;color:#58595B;font-weight:400;line-height:27px;}
.m8 .blog-box .img{}
.m8 .blog-box .img img{width:100%;height:220px;border-radius:15px;object-fit:cover;}
/*--- FOOTER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
footer{padding:100px 0 0 0;position:relative;}
footer video{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;z-index:-99;}
footer:before{content:'';width:100%;height:100%;background:#3B3836;opacity:.86;position:absolute;top:0;left:0;z-index:-88;}
footer h3{font-size:1.25em;font-weight:700;border-bottom:1px solid #58595B;padding-bottom:20px;margin-bottom:20px;font-family: "Montserrat", sans-serif;color:#fff;text-transform:uppercase;}
footer .logo{margin-bottom:50px;}
footer .logo img{width:100%;height:auto;}
footer .list{margin-bottom:50px;}
footer .list>ul{list-style:none;margin:0;padding:0;}
footer .list>ul>li{display:flex;align-items:center;}
footer .list>ul>li>i{margin-right:10px;}
footer .list>ul>li>span,footer .list>ul>li>a{display:inline-block;font-size:1.12em;line-height:2em;font-weight:200;transition:all .2s ease-in-out;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;color:#fff;}
footer .list>ul>li>span:hover,footer .list>ul>li>a:hover{padding-left:5px;}
footer .social-media>ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;gap:30px;}
footer .social-media>ul>li>a{font-size:1.3em;color:#fff;}
footer .footer-bottom{display:flex;flex-direction:row;justify-content:space-between;align-items:center;margin-bottom:50px;}
footer .footer-bottom>div{max-width:20%;flex:0 0 20%;display:flex;flex-direction:row;gap:15px;align-items:center;color:#fff;}
footer .copyright{margin-bottom:5px;font-size:.7em;text-align:center;padding-top:25px;color:#fff;}
footer .swa{margin-bottom:50px;text-align:center;}
footer .swa>a>img{display:block;width:50px;height:50px;margin:0 auto;opacity:.95;filter:invert(100%);}
footer .contracts{margin-bottom:50px;display:flex;flex-wrap:wrap;justify-content:center;}
footer .contracts a{display:inline-block;padding:0 10px;font-size:.8em;margin:0 0 5px 0;color:#eee;}
@media only screen and (max-width:767px){
    footer .footer-bottom{flex-direction:column;align-items:unset;padding:50px 0 20px 0;}
    footer .footer-bottom>div{max-width:100%;flex:0 0 100%;margin-bottom:30px;text-align:center;flex-direction:column;}
    footer .footer-bottom>div>img{display:block;margin:0 auto;}
}
/*--- CORPORATE PAGE ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.corporate-page{}
.corporate-page .c-head{padding:50px 0;position:relative;}
.corporate-page .c-head .c-container{width:1470px;margin:0 auto;max-width:96%;left:0;right:0;}
.corporate-page .c-head:before{content:'';width:100%;height:65%;position:absolute;top:0;left:0;z-index:-1;background: url('../images/slide-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;}
.corporate-page .c-head h2{font-size:3.31em;font-weight:300;color:#fff;text-align:center;font-family: "Montserrat", sans-serif;margin-bottom:50px;}
.corporate-page .c-head h2 strong{display:block;font-weight:600;}
.corporate-page .c-head .breadcrumb{justify-content:center;}
.corporate-page .c-head nav ol li{color:#FFFFFF;font-size:1.12em;font-weight:300;}
.corporate-page .c-head nav ol li a{color:#FFCCCE;}
.corporate-page .c-head .breadcrumb-item+.breadcrumb-item::before{color:#FFCCCE;}
.corporate-page .c-head .image img{width:100%;height:auto;border-radius:50px;}
.corporate-page .short-content{margin-bottom:50px;text-align:center;font-size:1.43em;color:#58595B;font-weight:300;}
.corporate-page .corporate-page-content{padding:50px 0;}
.corporate-page .corporate-page-content .content{padding-top:30px;}
.corporate-page .corporate-page-content .content h2{font-weight:300;margin-bottom:10px;}
.corporate-page .corporate-page-content .content p{font-weight:200;}
.corporate-page .corporate-page-content .cover img{border-radius:30px;width:100%;height:auto;}
.corporate-page .page-component{padding:50px 0;}
.corporate-page .page-component .title{text-align:center;margin-bottom:50px;}
.corporate-page .page-component .title h2{font-weight:400;}
.corporate-page .page-component .box{padding:30px;position:relative;background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;background: #FFFFFF 0% 0% no-repeat padding-box;box-shadow: 0px 2px 14px #00000029;border-radius: 35px;margin-bottom:30px;min-height:calc(100% - 30px);}
.corporate-page .page-component .box:before{content:'';width:100%;height:100%;opacity:0;visibility:hidden;position:absolute;top:0;left:0;background: transparent linear-gradient(180deg, #272727 0%, #58595B 100%) 0% 0% no-repeat padding-box;border-radius:35px;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;}
.corporate-page .page-component .box:hover:before{opacity:1;visibility:visible;}
.corporate-page .page-component .box *{position:relative;z-index:99;}
.corporate-page .page-component .box .img{padding:40px 0;}
.corporate-page .page-component .box .img img{display:block;width:75px;height:auto;margin:0 auto;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;}
.corporate-page .page-component .box:hover .img img{filter: brightness(0) invert(1);}
.corporate-page .page-component .box .content h3{text-align:center;font-size:1.2em;margin-bottom:20px;color:#58595B;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;}
.corporate-page .page-component .box:hover .content h3{color:#fff;}
.corporate-page .page-component .box .content p{text-align:center;font-size:1.06em;color:#58595B;line-height:30px;font-weight:300;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;}
.corporate-page .page-component .box:hover .content p{color:#fff;}
.corporate-page .page-ms{padding-top:350px;position:relative;}
.corporate-page .page-ms:before{content:'';width:100%;height:92%;position:absolute;top:0;left:0;z-index:-1;background:url('../images/corporate-page-ms-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;}
.corporate-page .page-ms .list-wrapper{display:flex;flex-direction:row;background:#fff;}
.corporate-page .page-ms .list-wrapper .list{max-width:30%;flex:0 0 30%;display:flex;flex-direction:column;padding:70px;justify-content:center;}
.corporate-page .page-ms .list-wrapper .list button{display:flex;align-items:center;flex-direction:row;justify-content:space-between;height:90px;background:unset;border:0;font-size:1.43em;font-weight:700;border-bottom:1px solid #C6C6C6;color:#58595B;}
.corporate-page .page-ms .list-wrapper .list button i{color:#C6C6C6;}
.corporate-page .page-ms .list-wrapper .list .active{color:#ED1C24;border-bottom:1px solid #ED1C24;}
.corporate-page .page-ms .list-wrapper .list .active i{color:#ED1C24;}
.corporate-page .page-ms .list-wrapper .list-body{max-width:70%;flex:0 0 70%;position:relative;}
.corporate-page .page-ms .list-wrapper .list-body .list-body-item{position:absolute;top:0;left:0;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;padding:75px;}
.corporate-page .page-ms .list-wrapper .list-body .list-body-item h3{font-size:2.18em;font-weight:400;margin-bottom:30px;line-height:50px;}
.corporate-page .page-ms .list-wrapper .list-body .list-body-item p{font-size:1.18em;color:#58595B;font-weight:300;}
.corporate-page .page-ms .list-wrapper .list-body .list-body-item-active{position:relative;opacity:1;visibility:visible;}
@media only screen and (max-width:767px){
    .corporate-page .page-ms .list-wrapper{flex-direction:column;}
    .corporate-page .page-ms .list-wrapper .list{max-width:100%;flex:0 0 100%;padding:20px;}
    .corporate-page .page-ms .list-wrapper .list-body{max-width:100%;flex:0 0 100%;}
    .corporate-page .page-ms .list-wrapper .list-body .list-body-item{padding:20px;}
}
/*--- CORPORATE PAGE ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.fora-mobil-page{}
.fora-mobil-page .f-head{padding:50px 0;position:relative;}
.fora-mobil-page .f-head:before{content:'';width:100%;height:75%;position:absolute;top:0;left:0;z-index:-1;background: url('../images/slide-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;}
.fora-mobil-page .f-head .breadcrumb{justify-content:center;}
.fora-mobil-page .f-head nav ol li{color:#FFFFFF;font-size:1.12em;font-weight:300;}
.fora-mobil-page .f-head nav ol li a{color:#FFCCCE;}
.fora-mobil-page .f-head .breadcrumb-item+.breadcrumb-item::before{color:#FFCCCE;}
.fora-mobil-page .cover img{width:100%;height:auto;border-radius:30px;}
.fora-mobil-page .short-content{display:flex;flex-direction:column;justify-content:space-around;padding-top:50px;height:100%;}
.fora-mobil-page .short-content .title h1{font-size:4.68em;color:#ED1C24;font-weight:700;font-family: "Montserrat", sans-serif;margin-bottom:40px;}
.fora-mobil-page .short-content .text{margin-bottom:0;}
.fora-mobil-page .short-content .text p{font-size:1.37em;color:#fff;line-height:35px;font-weight:200;}
.fora-mobil-page .short-content .list{display:flex;flex-direction:row;gap:20px;}
.fora-mobil-page .short-content .list a{display:flex;flex-direction:row;gap:10px;align-items:center;color:#58595B;}
.fora-mobil-page .short-content .list a span{display:block;font-size:.6em;text-transform:uppercase;letter-spacing:0px;}
.fora-mobil-page .short-content .list a strong{display:block;font-size:1.06em;}
.fora-mobil-page .page-content{text-align:center;margin-bottom:50px;font-size:1.31em;font-weight:300;}
.fora-mobil-page .page-component{padding:50px 0;}
.fora-mobil-page .page-component .title{text-align:center;margin-bottom:50px;}
.fora-mobil-page .page-component .title h2{font-weight:400;}
.fora-mobil-page .page-component .box{padding:30px 20px;position:relative;background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;background: #FFFFFF 0% 0% no-repeat padding-box;box-shadow: 0px 2px 14px #00000029;border-radius: 35px;margin-bottom:30px;min-height:calc(100% - 30px);}
.fora-mobil-page .page-component .box:before{content:'';width:100%;height:100%;opacity:0;visibility:hidden;position:absolute;top:0;left:0;background: transparent linear-gradient(180deg, #272727 0%, #58595B 100%) 0% 0% no-repeat padding-box;border-radius:35px;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;}
.fora-mobil-page .page-component .box:hover:before{opacity:1;visibility:visible;}
.fora-mobil-page .page-component .box *{position:relative;z-index:99;}
.fora-mobil-page .page-component .box .img{padding:40px 0;}
.fora-mobil-page .page-component .box .img img{display:block;width:75px;height:auto;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;}
.fora-mobil-page .page-component .box:hover .img img{filter: brightness(0) invert(1);}
.fora-mobil-page .page-component .box .content h3{font-size:1.2em;margin-bottom:20px;color:#58595B;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;}
.fora-mobil-page .page-component .box:hover .content h3{color:#fff;}
.fora-mobil-page .page-component .box .content{font-size:1em;color:#58595B;line-height:35px;font-weight:300;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;}
.fora-mobil-page .page-component .box:hover .content{color:#fff;}
.fora-mobil-page .page-ex-modules{padding:150px 0 60px 0;}
.fora-mobil-page .page-ex-modules .title{margin-bottom:50px;position:relative;overflow:hidden;}
.fora-mobil-page .page-ex-modules .title h3{font-size:2.06em;font-weight:600;width:fit-content;position:relative;padding-right:40px;}
.fora-mobil-page .page-ex-modules .title h3:before{content:'';width:210%;height:2px;background:#EBEBEB;transform:translate(50%,0);position:absolute;left:0;top:calc(50% - 1px);}
.fora-mobil-page .page-ex-modules .box{margin-bottom:30px;border-bottom:2px solid #EBEBEB;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;}
.fora-mobil-page .page-ex-modules .box .img{padding:30px 0;}
.fora-mobil-page .page-ex-modules .box .img img{display:block;max-width:100%;height:auto;margin:0 auto;}
.fora-mobil-page .page-ex-modules .box .content{padding:20px 0;padding-bottom:30px;}
.fora-mobil-page .page-ex-modules .box .content h3{font-size:1em;font-weight:700;padding:0 15%;text-align:center;line-height:1.2;min-height:2.4em;color:#58595B;display:flex;align-items:center;margin-bottom:20px;}
.fora-mobil-page .page-ex-modules .box .content p{font-size:0.81em;color:#58595B;line-height:21px;text-align:center;min-height:84px;margin:0;}
.fora-mobil-page .page-ex-modules .box:hover{border-bottom:2px solid #ED1C24;}
.fora-mobil-page .faqs{padding:75px 0;background:url('../images/page-faqs-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-o-background-size:cover;-moz-background-size:cover;}
@media only screen and (max-width:991px){
    .fora-mobil-page .f-head:before{height:88%;}
    .fora-mobil-page .short-content .text{margin-bottom:60px;}
}
/*--- FAQS ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.faqs-cat-page .sub-title{margin-bottom:50px;overflow:hidden;}
.faqs-cat-page .sub-title h2{padding:20px 0;border-bottom:1px solid #58595B;position:relative;margin-bottom:20px;font-size:2.06em;font-weight:500;font-family: "Montserrat", sans-serif;}
.faqs-cat-page .sub-title h2:before{content:'';width:26px;height:26px;position:absolute;bottom:-13px;right:-13px;background:#58595B;transform:rotate(45deg);}
.faqs-cat-page .page-body{padding:50px 0 0px 0;}
.faqs-cat-page .page-body .page-content{margin-bottom:40px;}
.faqs-cat-page .accordion{}
.faqs-cat-page .accordion .accordion-item{padding:20px 30px;margin-bottom:20px;overflow:hidden;background:#F5F5F5;border-radius:60px;}
.faqs-cat-page .accordion .accordion-item .accordion-header .accordion-button{font-size:25px;font-weight:700;font-family: "Montserrat", sans-serif;background:unset;}
.faqs-cat-page .accordion .accordion-item .accordion-header .accordion-button span{display:inline-block;margin-right:10px;}
.faqs-cat-page .accordion .accordion-item .accordion-header .accordion-button img{width:45px;height:auto;margin-right:15px;}
.faqs-cat-page .accordion .accordion-item .accordion-header .accordion-button:focus{box-shadow:unset;border:0;}
.faqs-cat-page .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed){background:unset;box-shadow: unset;}
.faqs-cat-page .accordion .accordion-item .accordion-button::after{background-image:unset;content:'\f078';font-family:'Font Awesome 6 Free';font-weight:900;}
.faqs-cat-page .accordion .accordion-item .accordion-body p{padding:0 60px;font-size:1.18em;font-weight:300;line-height:33px;}
.faqs-cat-page .faqs-wrapper{margin-bottom:50px;}
.faqs-cat-page .faqs-wrapper .t{margin-bottom:30px;}
.faqs-cat-page .faqs-wrapper .t h2{font-size:1.5em;}
.faqs-cat-page .faqs-wrapper .t p{font-size:1em;}
.faqs-cat-page .page-comments{padding:115px 0;background:url('../images/page-faqs-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-o-background-size:cover;-moz-background-size:cover;}
.faqs-cat-page .page-comments .comment{position:relative;height:100%;}
.faqs-cat-page .page-comments .comment:before{content:'';width:100%;height:calc(100% - 61px);position:absolute;left:0;bottom:0;border-radius:30px;background:linear-gradient(to bottom,#272727,#58595B);}
.faqs-cat-page .page-comments .comment *{position:relative;z-index:9;}
.faqs-cat-page .page-comments .comment .img{width:122px;height:122px;margin:0 auto 30px auto;border-radius:50%;background:#fff;text-align:center;display:flex;flex-direction:column;justify-content:center;align-items:center;}
.faqs-cat-page .page-comments .comment .img img{width:65px;height:65px;object-fit:contain;filter:grayscale(100%);}
.faqs-cat-page .page-comments .comment .content{padding:30px;}
.faqs-cat-page .page-comments .comment .content h3{font-size:1.56em;font-weight:700;font-family: "Montserrat", sans-serif;text-transform:uppercase;color:#fff;text-align:center;margin-bottom:20px;}
.faqs-cat-page .page-comments .comment .content p{font-size:1em;line-height:28px;font-weight:300;text-align:center;color:#fff;}
/*--- IS ORTAKLARIMIZ ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.is-ortaklarimiz-page .alfabe{display:flex;flex-direction:row;gap:5px;margin-bottom:50px;justify-content:space-between;overflow-x:scroll;}
.is-ortaklarimiz-page .alfabe button{border:0;background:unset;color:#C6C6C6;white-space:nowrap;padding:0 10px;text-transform:uppercase;font-size:1.25em;font-family: "Montserrat", sans-serif;font-weight:300;}
.is-ortaklarimiz-page .alfabe .active{color:#ED1C24;text-decoration:underline;}
.is-ortaklarimiz-page .iller{margin-bottom:80px;display:flex;flex-direction:row;justify-content:center;overflow-y:scroll;}
.is-ortaklarimiz-page .iller button{border:0;background:unset;white-space:nowrap;padding:0 10px;border-right:1px solid #58595B;color:#58595B;font-size:1.12em;font-family: "Montserrat", sans-serif;font-weight:300;}
.is-ortaklarimiz-page .iller button:last-child{border:0;}
.is-ortaklarimiz-page .firmalar{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:50px;gap:30px;}
.is-ortaklarimiz-page .firmalar button{border:0;background:unset;max-width:calc(25% - 30px);flex:0 0 calc(25% - 30px);position:relative;text-align:left;margin-bottom:30px;height:80px;padding-left:20px;text-transform:uppercase;font-size:1.12em;color:#58595B;font-family: "Montserrat", sans-serif;}
.is-ortaklarimiz-page .firmalar button:before{content:'';width:8px;height:8px;background:linear-gradient(#ED1C24,#B42E33);border-radius:50%;position:absolute;left:0;top:calc(50% - 4px);}
.is-ortaklarimiz-page .map{margin-bottom:50px;}
.is-ortaklarimiz-page .map img{width:100%;height:auto;}
.is-ortaklarimiz-page .map svg g{position:relative;cursor:pointer;}
.is-ortaklarimiz-page .map svg g path{fill:#ddd;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;position:relative;}
.is-ortaklarimiz-page .map svg g path:hover{fill:#666;}
.is-ortaklarimiz-page .map svg .active path {fill:#ED1C24;}
.is-ortaklarimiz-page .map svg .active:hover path {fill:#ED1C24 !important;opacity:0.5;}
@media only screen and (max-width: 767px){
    .is-ortaklarimiz-page .firmalar button{max-width:calc(50% - 30px);flex:0 0 calc(50% - 30px);font-size:.9em !important;}
}
@media only screen and (min-width: 768px) and (max-width:991px){
    .is-ortaklarimiz-page .firmalar button{max-width:calc(50% - 30px);flex:0 0 calc(50% - 30px);font-size:.8em !important;}
}
#svg-turkiye-haritasi path.has-firma {fill: #2196f3 !important;}
#svg-turkiye-haritasi path {cursor: pointer;transition: all 0.3s ease;}
#svg-turkiye-haritasi path:hover {fill: #ffeb3b !important;transform: scale(1.02);z-index:999999;}
#svg-turkiye-haritasi path.active {fill: #4caf50 !important;stroke: #fff;stroke-width: 2px;filter: drop-shadow(0 0 5px rgba(76, 175, 80, 0.7));}
/*--- PAGE ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.page .page-head{padding:35px 0;background:var(--bg-color);font-family: "Montserrat", sans-serif;}
.page .page-head h1{font-size:2.5em;font-weight:600;margin:0;text-align:center;opacity:0;visibility:hidden;width:0;height:0;}
.page .page-head p{font-size:1.3em;font-weight:200;margin:0;text-align:center;opacity:0;visibility:hidden;width:0;height:0;}
.page .page-head .title nav ol li{color:#58595B;font-size:1.12em;font-weight:300;}
.page .page-head .title nav ol li a{color:#C6C6C6;}
.page .page-head .title .breadcrumb-item+.breadcrumb-item::before{color:#58595B;}
.page .page-head .breadcrumb{justify-content:center;margin:0;}
.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;display:none;}
.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);}