@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);
}
@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{position:relative;z-index:99;}
header .container{max-width:85%;}
header .h-top{padding:20px 0;}
header .h-top .h-top-wrapper{display:flex;flex-direction:row;justify-content:space-between;align-items:center;}
header .h-top .h-top-wrapper .h-right{display:flex;gap:15px;}
header .buttons{display:flex;flex-direction:row;gap:10px;}
header .buttons a{display:flex;flex-direction:row;align-items:center;gap:20px;height:53px;padding:2px 30px;border-radius:40px;text-transform:uppercase;position:relative;font-weight:700;font-size:1.1em;overflow:hidden;}
header .buttons a:before{content:'';width:100%;height:100%;border:1px dashed #aaa;position:absolute;left:0;top:0;border-radius:40px;}
header .buttons a:after{content:'';width:calc(100% - 6px);height:calc(100% - 6px);position:absolute;left:3px;top:3px;border-radius:40px;background:#aaaaaa;z-index:-1;}

/* Işıltı katmanı */
header .buttons a .shimmer{
  position:absolute;
  top:0;
  left:-150%;
  width:80%;
  height:100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0) 70%,
    transparent 80%
  );
  z-index:2;
  pointer-events:none;
  border-radius:40px;
  animation: shimmerMove 3s ease-in-out infinite;
}

/* İkon ve yazı z-index üstte kalsın */
header .buttons a svg,
header .buttons a span,
header .buttons a i{position:relative;z-index:3;}

@keyframes shimmerMove {
  0%   { left: -150%; opacity:0; }
  10%  { opacity:1; }
  50%  { left: 150%; opacity:1; }
  60%  { opacity:0; }
  100% { left: 150%; opacity:0; }
}

/* Her buton farklı zamanda başlasın */
header .buttons a:nth-child(1) .shimmer{ animation-delay: 0s; }
header .buttons a:nth-child(2) .shimmer{ animation-delay: 1s; }
header .buttons a:nth-child(3) .shimmer{ animation-delay: 2s; }

header .buttons a:nth-child(1){color:#003FA3;}
header .buttons a:nth-child(1):before{border:1px dashed #003FA3;}
header .buttons a:nth-child(1):after{background:#F0F4F8;}
header .buttons a:nth-child(2){color:#EA922E;}
header .buttons a:nth-child(2):before{border:1px dashed #EA922E;}
header .buttons a:nth-child(2):after{background:#FCF0E3;}
header .buttons a:nth-child(3){color:#299926;font-size:1.3em;}
header .buttons a:nth-child(3):before{border:1px dashed #299926;}
header .buttons a:nth-child(3):after{background:#EAF5E9;}
header .search form{display:grid;grid-template-columns:53px 1fr;border:1px solid #B7CBEB;border-radius:40px;height:53px;overflow:hidden;min-width:320px;max-width:100%;}
header .search form button{width:53px;height:53px;border-radius:50%;border:0;font-size:1.5em;background:#B7CBEB;line-height:53px;text-align:center;color:#ffffff;}
header .search form button:hover{background:#003FA3;}
header .search form input{border:0;color:#003FA3;text-indent:15px;font-size:.92em;}
header .search form input::placeholder{color:#B7CBEB;}
header .search form input:focus,header .search form input:active{outline:0;box-shadow:unset;}
header .h-body{border-top:1px solid #B7CBEB;box-shadow: 0px 3px 6px #00000012;}
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;align-items:center;}
header .menu>ul>li>a{font-weight:500;font-size:1.12em;color:#003FA3;padding:15px;text-transform:uppercase;display:block;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;font-family: "Montserrat", sans-serif;}
header .menu>ul>li>a img{max-width:100%;height:auto;}
header .menu>ul>li>a:hover{color:#EA922E;}
header .menu>ul>li>ul{position:absolute;z-index:99;background:#fff;border:1px solid #ddd;border-radius:20px;padding:20px 30px;list-style:none;margin:0;transform:translate(-25%,20px);opacity:0;visibility:hidden;transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;}
header .menu>ul>li:hover>ul{transform:translate(-25%,0);opacity:1;visibility:visible;}
header .menu>ul>li>ul>li{}
header .menu>ul>li>ul>li>a{display:block;line-height:35px;font-size:.9em;text-align:center;font-weight:500;color:#003FA3;white-space:nowrap;padding:0 10px;border-radius:5px;}
header .menu>ul>li>ul>li>a:hover{background:#FCF0E3;color:#EA922E;}

@media screen and (max-width:1400px){
    header .container{max-width:95%;}
    header .buttons{gap:10px;}
    header .buttons a{padding:2px 18px;gap:12px;font-size:.85rem;}
    header .search form{min-width:260px;}
    header .menu>ul>li>a{padding:15px 10px;font-size:1rem;}
}
@media screen and (max-width:1024px){
    header .container{max-width:95%;}
    header .h-top .h-top-wrapper{flex-direction:column;gap:20px;}
    header .h-top .h-top-wrapper .h-right{width:100%;flex-direction:column;gap:15px;}
    header .buttons{width:100%;justify-content:center;flex-wrap:wrap;}
    header .search{width:100%;}
    header .search form{width:100%;min-width:100%;}
    header .menu>ul{flex-wrap:wrap;justify-content:center;}
    header .menu>ul>li>a{padding:12px;font-size:.95rem;}
}
@media screen and (max-width:768px){
    header{z-index:9999;}
    header .container{max-width:100%;padding:0 15px;}
    header .h-top{padding:15px 0;}
    header .h-top .h-top-wrapper{flex-direction:column;gap:15px;}
    header .h-top .h-top-wrapper .h-right{width:100%;flex-direction:column;gap:10px;}
    header .h-left{text-align:center;}
    header .h-left img{max-width:180px;height:auto;}
    header .buttons{flex-direction:row;flex-wrap:unset;gap:5px;}
    header .buttons a{width:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:5px;gap:5px;font-size:.85rem;text-align:center;height:70px;}
    header .buttons a:nth-child(3){font-size:.65rem;}
    header .buttons a img{width:22px;height:auto;}
    header .search{width:100%;}
    header .search form{min-width:100%;}
    header .menu{position:relative;}
    header .menu .menu-bar{display:flex;align-items:center;justify-content:center;gap:10px;background:#003FA3;color:#fff;padding:15px;border-radius:10px;cursor:pointer;margin:15px 0;}
    header .menu > ul{display:none;position:absolute;left:0;top:100%;width:100%;background:#fff;flex-direction:column;box-shadow:0 10px 30px rgba(0,0,0,.15);border-radius:15px;overflow:hidden;z-index:9999;}
    header .menu.active > ul{display:flex;}
    header .menu > ul > li{width:100%;position:relative;border-bottom:1px solid #eee;}
    header .menu > ul > li:last-child{border-bottom:none;}
    header .menu > ul > li > a{display:flex;justify-content:space-between;align-items:center;width:100%;padding:15px;text-align:left;}
    header .menu > ul > li > ul{display:none;position:static !important;transform:none !important;opacity:1 !important;visibility:visible !important;width:100%;margin:0;padding:0;border:0;border-radius:0;box-shadow:none;background:#f8f8f8;}
    header .menu > ul > li.active > ul{display:block;}
    header .menu > ul > li > ul > li{border-top:1px solid #e6e6e6;}
    header .menu > ul > li > ul > li > a{display:block;text-align:left;padding:12px 20px;color:#003FA3;line-height:normal;font-size:.9rem;white-space:normal;}
    header .menu > ul > li.has-sub > a:after{content:'+';font-size:20px;font-weight:700;}
    header .menu > ul > li.active > a:after{content:'−';}
}
@media screen and (max-width:576px){
    header .container{max-width:100%;padding-left:15px;padding-right:15px;}
    header .h-left img{max-width:180px;}
    header .buttons a{height:auto;min-height:50px;gap:10px;font-size:.85rem;}
    header .buttons a img{width:22px;height:auto;}
    header .search form{grid-template-columns:48px 1fr;height:48px;}
    header .search form button{width:48px;height:48px;font-size:1.1rem;}
    header .search form input{font-size:.85rem;}
}
/*--- SLIDER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.slider{padding:50px 0;}
.slider .container{max-width:85%;}
.slider .swiper{width:100%;height:calc(100% - 10px);}
.slider .swiper-slide{width:100%;height:100%;overflow:hidden;}
.slider .box{padding:50px 50px 75px 50px;display:flex;flex-direction:column;gap:30px;height:100%;justify-content:center;border-radius:25px;}
.slider .box h2{font-size:2.93em;color:#1C3D7B;}
.slider .box h2 span{background:#ffffff;border-radius:15px;display:inline-block;padding:10px;}
.slider .box .more{display:flex;flex-direction:row;gap:20px;align-items:center;width:fit-content;border:1px solid #003FA3;border-radius:31px;line-height:55px;padding:0 30px;color:#003FA3;font-weight:700;font-family: "Montserrat", sans-serif;}
.slider .box-2{margin-bottom:10px;border-radius:25px;position:relative;}
.slider .box-2 a .bg{width:100%;height:230px;border-radius:25px;object-fit:cover;position:relative;z-index:7;}
.slider .box-2 a .icon{position:absolute;bottom:20px;left:0;right:0;margin:0 auto;z-index:9;display:flex;flex-direction:row;gap:10px;color:#F19122;align-items:center;justify-content:center;}
@media only screen and (max-width:767px){
    .slider .container{max-width:100%;}
}
.slider .swiper-slider{position:relative;}
.slider .swiper-slider .swiper-nav{display:flex;flex-direction:column;justify-content:center;align-items:center;position:absolute;bottom:15px;left:75px;z-index:99;}
.slider .swiper-slider .swiper-nav>div:active{opacity:.5;}
.slider .swiper-slider .swiper-slide-prev{transform:translate(15px,0);}
.slider .swiper-slider .swiper-slide-next{transform:translate(-15px,0);}
/*--- M1 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m1{padding:50px 0 20px 0;}
.m1 .box{border:3px solid #F0F0F0;border-radius:12px;margin-bottom:30px;overflow:hidden;}
.m1 .box .t{display:flex;flex-direction:column;justify-content:center;align-items:center;height:90px;text-align:center;font-size:1.37em;color:#003FA3;text-transform:uppercase;padding:10px 0;}
.m1 .box .t small{display:block;font-size:.6em;}
.m1 .box:hover .t{font-weight:600;}
.m1 .box img{width:100%;height:200px;object-fit:contain;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;}
.m1 .box:hover img{transform:scale(1.1);}
/*--- M2 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m2{padding:75px 0 30px 0;background:url('../images/m2-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;}
.m2 .container{max-width:85%;}
.m2 .title{margin-bottom:75px;display:flex;flex-direction:column;gap:10px;}
.m2 .title small{display:block;color:#B7CBEB;font-weight:200;text-transform:uppercase;text-align:center;letter-spacing: 4px;font-family: "Montserrat", sans-serif;}
.m2 .title h2{font-size:2.18em;color:#343434;font-weight:700;text-transform:uppercase;text-align:center;}
.m2 .title img{display:block;margin:0 auto;max-width:100%;height:auto;}
.m2 .box{display:flex;flex-direction:column;gap:20px;justify-content:center;position:relative;margin-bottom:30px;}
.m2 .box>*{position:relative;z-index:9;}
.m2 .box:before{content:'';width:100%;height:100%;position:absolute;top:0;left:0;background:url('../images/m2-box-bg.svg') no-repeat center center;background-size:contain;-webkit-background-size:contain;-moz-background-size:contain;-o-background-size:contain;transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;}
.m2 .box img{display:block;max-width:100%;height:auto;margin-bottom:20px;}
.m2 .box .text{font-size:1.06em;color:#343434;}
.m2 .box .more{display:flex;flex-direction:row;gap:20px;align-items:center;width:fit-content;border:1px solid #003FA3;border-radius:31px;line-height:55px;padding:0 30px;color:#003FA3;font-weight:700;font-family: "Montserrat", sans-serif;}
.m2 .list{display:grid;grid-template-columns:1fr 1fr;gap:30px;align-items:center;height:100%;}
.m2 .list .list-item{display:grid;grid-template-columns:90px 1fr;gap:30px;align-items:center;margin-bottom:30px;cursor:pointer;}
.m2 .list .list-item .icon{width:98px;height:98px;position:relative;}
.m2 .list .list-item .icon:before{content:'';width:140%;height:140%;position:absolute;top:-20%;left:-20%;transform:rotate(-45deg);background:url('../images/list-item-bg.svg') no-repeat center center;background-size:contain;-webkit-background-size:contain;-moz-background-size:contain;-o-background-size:contain;transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;}
.m2 .list .list-item:hover .icon:before{transform:rotate(0);}
.m2 .list .list-item .icon img{width:100%;height:100%;object-fit:contain;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;z-index:9;}
.m2 .list .list-item:hover .icon img{filter: brightness(0) saturate(100%) invert(44%) sepia(58%) saturate(684%) hue-rotate(58deg) brightness(92%) contrast(92%);}
.m2 .list .list-item .text{font-size:1.31em;color:#343434;font-weight:700;}
@media only screen and (max-width:767px){
    .m2 .list{grid-template-columns: 1fr;gap:0;} 
}
/*--- M3 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m3{padding:30px 0;}
.m3 .title{margin-bottom:30px;display:flex;flex-direction:column;gap:10px;}
.m3 .title small{display:block;color:#B7CBEB;font-weight:200;text-transform:uppercase;text-align:center;letter-spacing: 4px;font-family: "Montserrat", sans-serif;}
.m3 .title h2{font-size:2.18em;color:#343434;font-weight:700;text-transform:uppercase;text-align:center;}
.m3 .title img{display:block;margin:0 auto;max-width:100%;height:auto;}
.expert-box{margin-bottom:30px;}
.expert-box .img{position:relative;border-radius:15px;overflow:hidden;}
.expert-box .img img{width:100%;height:375px;object-fit:cover;border-radius:15px;position:relative;z-index:7;}
.expert-box .img:before{content:'';width:100%;height:100%;background:linear-gradient(to bottom,transparent,#001433);position:absolute;top:0;left:0;z-index:99;border-radius:15px;transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;}
.expert-box:hover .img:before{top:100%;}
.expert-box .content{padding:15px 0 0 0;border-bottom:1px solid #ADC4E8;}
.expert-box .content h3{font-size:1.2em;color:#003FA3;font-weight:700;white-space:nowrap;}
.expert-box .content .role{display:block;color:#ADC4E8;font-weight:400;font-size:1.1em;line-height:1.2;min-height:3.6em;}
.expert-box .buttons{display:flex;flex-direction:row;justify-content:space-between;padding:10px 0;}
.expert-box .buttons a{display:flex;flex-direction:row;gap:7px;align-items:center;font-size:.9em;color:#ADC4E8;}
.expert-box .buttons a span{margin:0;padding:0;}
.expert-box .buttons svg{width:15px;height:15px;margin:0;}
.expert-box .buttons a:first-child svg path{stroke:#ADC4E8;}
.expert-box .buttons a:last-child svg path{fill:#ADC4E8;}
.expert-box .buttons a:hover:first-child svg path{stroke:#299926;}
.expert-box .buttons a:hover:last-child svg path{fill:#EA922E;}
.expert-box .buttons a:hover:first-child{color:#299926;}
.expert-box .buttons a:hover:last-child{color:#EA922E;}
.m3 .swiper-nav{display:flex;flex-direction:column;justify-content:center;align-items:center;}
.m3 .swiper-nav>div:active{opacity:.5;}
.m3 .swiper-nav .swiper-team-prev{transform:translate(15px,0);}
.m3 .swiper-nav .swiper-team-next{transform:translate(-15px,0);}
.m3 .all{display:block;margin-top:30px;text-align:center;}
.m3 .all a{display:inline-block;border:1px solid #003FA3;line-height:45px;border-radius:50px;color:#003FA3;padding:0 30px;font-size:.9em;font-weight:700;}
/*--- M4 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m4{padding:30px 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 .title{margin-bottom:30px;display:flex;flex-direction:column;gap:10px;}
.m4 .title small{display:block;color:#B7CBEB;font-weight:200;text-transform:uppercase;text-align:center;letter-spacing: 4px;font-family: "Montserrat", sans-serif;}
.m4 .title h2{font-size:2.18em;color:#343434;font-weight:700;text-transform:uppercase;text-align:center;}
.m4 .title img{display:block;margin:0 auto;max-width:100%;height:auto;}
.m-blog-box{margin-bottom:30px;display:grid;grid-template-columns:45% 55%;border:1px solid #B7CBEB;border-radius:15px;gap:20px;transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;}
.m-blog-box:hover{background:#ffffff;}
.m-blog-box .img{position:relative;}
.m-blog-box .img:before{content:'';width:6px;background:#B7CBEB;border-radius:6px;position:absolute;top:30px;height:calc(100% - 60px);right:-23px;}
.m-blog-box .img img{width:100%;height:185px;object-fit:cover;border-radius:15px;}
.m-blog-box .content{padding:30px 20px;display:flex;flex-direction:column;justify-content:space-between;}
.m-blog-box .content h3{font-size:1.12em;}
.m-blog-box .content h3 a{color:#003FA3;}
.m-blog-box .content .more{display:flex;flex-direction:column;justify-content:center;width:35px;height:35px;border-radius:10px;border:4px solid #EA922E;line-height:1;text-align:center;color:#EA922E;}
.m4 .all{margin-top:30px;}
.m4 .all a{display:flex;flex-direction:row;gap:20px;line-height:55px;border-radius:50px;border:1px solid #003FA3;color:#003FA3;font-weight:700;padding:0 30px;width:fit-content;align-items:center;margin:0 auto;}
/*--- M5 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m5{padding:50px 0;}
.m5 .title{margin-bottom:75px;display:flex;flex-direction:column;gap:10px;}
.m5 .title small{display:block;color:#B7CBEB;font-weight:200;text-transform:uppercase;text-align:center;letter-spacing: 4px;font-family: "Montserrat", sans-serif;}
.m5 .title h2{font-size:2.18em;color:#343434;font-weight:700;text-transform:uppercase;text-align:center;}
.m5 .title img{display:block;margin:0 auto;max-width:100%;height:auto;}
.video-box{overflow:hidden;border-radius:15px;position:relative;margin-bottom:30px;}
.video-box .bg{width:100%;height:270px;object-fit:cover;border-radius:15px;}
.video-box .content{position:absolute;bottom:0;left:0;width:100%;}
.video-box .content>*{position:relative;z-index:99;}
.video-box .content:before{content:'';width:100%;height:100%;position:absolute;left:0;top:0;background: transparent linear-gradient(341deg, #FFFFFF 0%, #EDF0F4 100%) 0% 0% no-repeat padding-box;opacity: 0.93;}
.video-box .content .icon{position:absolute;left:0;right:0;margin:0 auto;transform:translate(0,-50%);}
.video-box .content p{margin:0;color:#343434;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:80px 20px 20px 20px;text-align:center;}
.m5 .swiper-nav{display:flex;flex-direction:column;justify-content:center;align-items:center;}
.m5 .swiper-nav>div:active{opacity:.5;}
.m5 .swiper-nav .swiper-video-prev{transform:translate(15px,0);}
.m5 .swiper-nav .swiper-video-next{transform:translate(-15px,0);}
/*--- M6 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m6{padding:75px 0;position:relative;}
.m6:before{content:'';width:100%;height:100%;position:absolute;top:0;left:0;z-index:-1;background: transparent linear-gradient(341deg, #FFFFFF 0%, #EDF0F4 100%) 0% 0% no-repeat padding-box;opacity: 0.93;}
.m6 .title{margin-bottom:75px;display:flex;flex-direction:column;gap:10px;}
.m6 .title small{display:block;color:#B7CBEB;font-weight:200;text-transform:uppercase;text-align:center;letter-spacing: 4px;font-family: "Montserrat", sans-serif;}
.m6 .title h2{font-size:2.18em;color:#343434;font-weight:700;text-transform:uppercase;text-align:center;}
.m6 .title img{display:block;margin:0 auto;max-width:100%;height:auto;}
.m6 .box{margin-bottom:30px;}
.m6 .box .img img{width:100%;height:277px;object-fit:cover;border-radius:15px;}
.m6 .box .content{padding:30px 0;}
.m6 .box .content h3{font-size:1.25em;font-weight:700;line-height:1.2em;min-height:3.6em;margin:0;}
.m6 .box .content h3 a{color:#003FA3;}
.m6 .box .content .more{display:flex;flex-direction:row;gap:15px;align-items:center;width:fit-content;color:#EA922E;font-size:1.12em;font-weight:700;}
/*--- M6 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m7{padding:75px 0;position:relative;background:url('../images/m7-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-o-background-size:cover;-moz-background-size:cover;}
.m7 .title{margin-bottom:75px;display:flex;flex-direction:column;gap:10px;}
.m7 .title small{display:block;color:#B7CBEB;font-weight:200;text-transform:uppercase;text-align:center;letter-spacing: 4px;font-family: "Montserrat", sans-serif;}
.m7 .title h2{font-size:2.18em;color:#343434;font-weight:700;text-transform:uppercase;text-align:center;}
.m7 .title img{display:block;margin:0 auto;max-width:100%;height:auto;}
.comment-box{background: #FFFFFF 0% 0% no-repeat padding-box;box-shadow: 0px 3px 6px #00000029;border-radius:15px;padding:35px 55px;position:relative;margin:30px 0;}
.comment-box .icon1{position:absolute;top:-10px;left:20px;}
.comment-box .icon2{position:absolute;bottom:-10px;right:20px;}
.comment-box h3{font-size:1em;font-weight:700;}
.comment-box h3 a{color:#003FA3;}
.comment-box p{font-size:0.93em;color:#343434;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.m7 .swiper-nav{display:flex;flex-direction:column;justify-content:center;align-items:center;}
.m7 .swiper-nav>div:active{opacity:.5;}
.m7 .swiper-nav .swiper-comment-prev{transform:translate(15px,0);}
.m7 .swiper-nav .swiper-comment-next{transform:translate(-15px,0);}

.swiper-page-nav{display:flex;flex-direction:column;justify-content:center;align-items:center;}
.swiper-page-nav>div:active{opacity:.5;}
.swiper-page-nav .swiper-pblog-prev{transform:translate(15px,0);}
.swiper-page-nav .swiper-pblog-next{transform:translate(-15px,0);}

/*--- FOOTER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
footer{padding:30px 0;background:url('../images/footer-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;}
footer .list{margin-bottom:30px;}
footer .list h3{font-size:1.25em;font-weight:700;margin-bottom:15px;padding-bottom:15px;color:#003FA3;text-transform:uppercase;border-bottom:1px solid #A7D7CA;}
footer .list>ul{list-style:none;margin:0;padding:0;}
footer .list>ul>li{}
footer .list>ul>li>a{display:inline-block;font-size:.9em;line-height:2em;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;}
footer .list>ul>li>a:hover{padding-left:5px;}
footer .social-media{margin-bottom:30px;}
footer .social-media h3{font-size:1.25em;font-weight:700;margin-bottom:15px;padding-bottom:15px;color:#003FA3;text-transform:uppercase;border-bottom:1px solid #A7D7CA;}
footer .social-media ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;gap:30px;}
footer .social-media ul>li>a{color:#ADC4E8;font-size:1.25em;}
footer .info{margin-bottom:30px;}
footer .info h3{font-size:1.25em;font-weight:700;color:#003FA3;text-transform:uppercase;}
footer .info p{font-size:1.12em;color:#343434;margin-bottom:20px;}
footer .info .whatsapp{display:flex;flex-direction:row;gap:20px;align-items:center;justify-content:center;font-size:1.56em;background:#ffffff;color:#299926;box-shadow:0px 3px 6px #00000029;border-radius:15px;line-height:60px;}
footer .footer-bottom{display:flex;flex-direction:row;justify-content:space-between;gap:100px;margin-bottom:50px;margin-top:50px;padding-bottom:30px;border-bottom:1px solid #93CEBE;}
footer .logo{min-width:290px;}
footer .logo img{max-width:100%;height:auto;}
footer .content h3{border-bottom:1px solid #299926;color:#299926;line-height:1;width:fit-content;text-transform:uppercase;font-weight:700;font-size:1.25em;}
footer .content p{line-height:1.3;color:#343434;font-size:.93em;}
footer .contracts{margin-bottom:30px;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;}
footer .copyright{margin-bottom:5px;font-size:11px;text-align:center;}
footer .swa{text-align:center;}
footer .swa>a>img{display:block;width:50px;height:50px;margin:0 auto;opacity:.95;}
@media only screen and (max-width:767px){
    footer{text-align:center;}
    footer .footer-bottom{flex-direction:column;justify-content:unset;gap:unset;}
    footer .logo{margin-bottom:30px;text-align:center;}
    footer .social-media ul{justify-content:center;}
    footer .content h3{width:100%;}
}
/*--- PAGE ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.page .page-head{padding:30px 0;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;}
.page .page-head h1{font-size:4em;font-weight:300;margin-bottom:20px;text-align:center;color:#003FA3;letter-spacing: 5.85px;font-family: "Montserrat", sans-serif;text-transform:uppercase;}
.page .page-head p{font-size:1.3em;font-weight:200;margin-bottom:20px;text-align:center;}
.page .page-head .breadcrumb{justify-content:center;margin:0;}
.page .page-head .title nav ol li{color:#ADC4E8;}
.page .page-head .title nav ol li a{color:#003FA3;}
.page .page-head .title .breadcrumb-item+.breadcrumb-item::before{color:#ADC4E8;}
.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;}
/*psiko-page*/
.psiko-page .page-sub-list{display:flex;gap:30px;flex-wrap:wrap;flex-direction:row;justify-content:center;position:sticky;top:20px;bottom:20px;}
.psiko-page .page-sub-list a{display:flex;background:transparent linear-gradient(180deg, #D1DFF4 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;border-radius:29px;height:72px;line-height:1;color:#1C3D7B;font-size:1.2em;padding:0 10px;text-align:center;min-width:calc(50%  - 30px);flex:0 0 calc(50% - 30px);text-align:center;align-items:center;justify-content:center;}
.psiko-page .page-sub-title{margin-bottom:50px;display:flex;flex-direction:column;align-items:center;justify-content:center;}
.psiko-page .page-sub-title h2{font-size:2.18em;color:#299926;font-weight:700;}
.psiko-page .page-body .container{max-width:85%;}
.page-content{margin-bottom:30px;color:#707B8E;font-size:1.37em;}
.page-content iframe{width:100%;height:380px;margin-bottom:30px;}
.page-content table{width:100%;margin-bottom:30px;border:0;}
.page-title{margin-bottom:30px;display:flex;flex-direction:column;justify-content:center;align-items:center;}
.page-gallery{padding:50px 0 20px 0;}
.page-gallery .gallery-box{margin-bottom:30px;}
.page-gallery .gallery-box img{width:100%;height:auto;aspect-ratio: 4 / 6;}
.psiko-page .page-gallery .container{max-width:85%;}
@media only screen and (max-width:767px){
    .page .page-head h1{font-size:2.7em;}
}
/*--- 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*/
.star-group label{display:block;font-size:.9em;font-weight:700;margin-bottom:5px;color:#111827;}
.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;}
.form-page .page-form{max-width:900px;margin:0 auto;background:#fff;padding:50px;border-radius:30px;box-shadow:0 10px 40px rgba(15,23,42,.08),0 2px 10px rgba(15,23,42,.04);position:relative;overflow:hidden;}
.form-page .page-form:before{content:"";position:absolute;top:-120px;right:-120px;width:260px;height:260px;background:linear-gradient(135deg,#25D36620,#25D36605);border-radius:100%;}
.form-page .form-group{margin-bottom:25px;position:relative;}
.form-page .form-group label,
.form-page .security-group label{display:block;font-size:14px;font-weight:700;color:#111827;margin-bottom:10px;letter-spacing:.3px;}
.form-page .form-control{width:100%;height:64px;border:1px solid #E5E7EB;background:#F9FAFB;border-radius:18px;padding:0 24px;font-size:15px;font-weight:500;color:#111827;box-shadow:none;transition:all .35s ease;}
.form-page textarea.form-control{height:180px;padding:22px 24px;resize:none;}
.form-page .form-control::placeholder{color:#9CA3AF;font-weight:400;}
.form-page .form-control:hover{border-color:#D1D5DB;background:#fff;}
.form-page .form-control:focus{border-color:#25D366;background:#fff;box-shadow:0 0 0 5px rgba(37,211,102,.10),0 10px 25px rgba(37,211,102,.08);}
.form-page select.form-control{appearance:none;-webkit-appearance:none;-moz-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 8 10 12 14 8'%3E%3C/polyline%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 20px center;background-size:18px;padding-right:55px;}
.form-page .security-group{margin-bottom:30px;}
.form-page .security-group .img{display:flex;align-items:center;gap:12px;margin-bottom:15px;}
.form-page .security-group img{display:block;height:64px;border-radius:16px;border:1px solid #E5E7EB;background:#fff;}
.form-page .security-group button{width:64px;min-width:64px;height:64px;border:none;border-radius:18px;background:#25D366;color:#fff;transition:all .3s ease;font-size:18px;display:flex;align-items:center;justify-content:center;}
.form-page .security-group button:hover{transform:rotate(180deg);background:#1ebe5d;}
.form-page .security-group .form-control{margin-top:0;}
.form-page .form-checkbox-group{display:flex;align-items:flex-start;gap:14px;background:#F9FAFB;border:1px solid #E5E7EB;border-radius:18px;padding:20px;}
.form-page .form-checkbox-group input{width:20px;height:20px;margin-top:2px;accent-color:#25D366;}
.form-page .form-checkbox-group a{color:#374151;font-size:14px;line-height:1.7;font-weight:500;text-decoration:none;transition:all .3s ease;}
.form-page .form-checkbox-group a:hover{color:#25D366;}
.form-page .btn{width:100%;height:68px;border:none;border-radius:20px;background:linear-gradient(135deg,#25D366 0%,#128C7E 100%);color:#fff;font-size:17px;font-weight:700;letter-spacing:.3px;transition:all .35s ease;position:relative;overflow:hidden;box-shadow:0 15px 35px rgba(37,211,102,.25);}
.form-page .btn:before{content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(120deg,transparent,rgba(255,255,255,.25),transparent);transition:all .6s ease;}
.form-page .btn:hover:before{left:100%;}
.form-page .btn:hover{transform:translateY(-3px);box-shadow:0 20px 40px rgba(37,211,102,.35);}
.form-page .btn:active{transform:scale(.98);}
@media(max-width:991px){
    .form-page .page-form{padding:35px 25px;border-radius:24px;}
    .form-page .form-control{height:58px;padding:0 18px;}
    .form-page textarea.form-control{height:160px;padding:18px;}
    .form-page .security-group img{height:58px;}
    .form-page .security-group button{width:58px;min-width:58px;height:58px;}
    .form-page .btn{height:62px;}
}
/*--- 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);}
.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;}
.faq-area{width:100%;padding:0;}
.faq-accordion{border:none;}
.faq-accordion .accordion-item{border:none;border-bottom:1px solid #D7E3F5;background:transparent;border-radius:0 !important;overflow:hidden;}
.faq-accordion .accordion-button{display:flex;align-items:center;gap:20px;font-size:18px;line-height:25px;width:100%;padding:28px 0;background:transparent;box-shadow:none !important;border:none;border-radius:0 !important;font-weight:600;color:#707B8E;transition:all .3s ease;}
.faq-accordion .accordion-button:not(.collapsed){background:transparent;color:#0047BA;}
.faq-accordion .accordion-button:focus{box-shadow:none;border:none;}
.faq-accordion .accordion-button::after{display:none;}
.faq-accordion .faq-icon{position:relative;width:28px;min-width:28px;height:28px;}
.faq-accordion .faq-icon::before,
.faq-accordion .faq-icon::after{content:"";position:absolute;top:50%;left:50%;background:#6F7B92;border-radius:10px;transform:translate(-50%, -50%);transition:all .3s ease;}
.faq-accordion .faq-icon::before{width:18px;height:3px;}
.faq-accordion .faq-icon::after{width:3px;height:18px;}
.faq-accordion .accordion-button:not(.collapsed) .faq-icon::before{background:#0047BA;}
.faq-accordion .accordion-button:not(.collapsed) .faq-icon::after{opacity:0;background:#0047BA;}
.faq-accordion .accordion-button:not(.collapsed) .faq-title{color:#0047BA;}
.faq-accordion .accordion-body{padding:0 0 30px 48px;font-weight:400;color:#707B8E;font-size:16px;}
.faq-accordion .accordion-body p:last-child{margin-bottom:0;}
@media(max-width:991px){
    .faq-accordion .accordion-button{font-size:22px;gap:16px;padding:22px 0;}
    .faq-accordion .accordion-body{font-size:18px;padding-left:44px;}
}
@media(max-width:767px){
    .faq-accordion .accordion-button{font-size:18px;line-height:1.5;}
    .faq-accordion .accordion-body{font-size:16px;line-height:1.8;padding-left:38px;}
    .faq-accordion .faq-icon{width:22px;min-width:22px;height:22px;}
}
.simple-team-page .faq-accordion .accordion-button{font-size:18px !important;}
.simple-team-page .faq-accordion .accordion-body{font-size:1em !important;}