@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
:root{
    --primary:#47b884;
    --primaryrgb:rgb(71,184,132);
    --darkprimary:#319d6b;
    --secondary:#231253;
    --dark:#262626;
    --bggray:#F5F5F7;
    --headerh:80px;
    --sliderheight:590px;
    --sliderleftw:40%;
    --sliderrighttw:60%;  
}
body{
    font-family: "Figtree", sans-serif;
    background-color: var(--primary);
    color: var(--dark);
}
.bg-gradient1 {
    background: rgb(217,243,251);
    background: linear-gradient(145deg, rgba(217,243,251,1) 0%, rgba(255,255,255,1) 37%, rgba(244,238,225,1) 66%, rgba(217,243,251,1) 100%);
}
.bg-primary {background-color: var(--primary) !important;}
.bg-primaryrgb {background-color: var(--primaryrgb) !important;}
.bg-darkprimary {background-color: var(--darkprimary) !important;}
.bg-secondary {background-color: var(--secondary) !important;}
.bg-dark {background-color: var(--dark) !important;}
.bg-bggray {background-color: var(--bggray) !important;}
.bg-primary-op {background-color: rgba(71,184,132,.3);}

.text-primary {color: var(--primary) !important;}
.text-darkprimary {color: var(--darkprimary) !important;}
.text-secondary {color: var(--secondary) !important;}
.text-dark {color: var(--dark) !important;}

a {
    text-decoration: none;
    color: var(--dark);
}
h1,h2,h3,h4,h5,h6 {margin: 0;}
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 200ms linear;
}
.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transition: all 200ms linear;
}
.btn-secondary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
.border-right {border-right: 1px solid rgba(0, 0, 0, .2);}
.rounded-xs {border-radius: 10px;}
.rounded-sm {border-radius: 15px;}
.rounded-md {border-radius: 25px;}
.rounded-lg {border-radius: 35px !important; }
.rounded-xl {border-radius: 50px;}
.b-shadow {box-shadow: rgba(17, 12, 46, 0.25) 0px 0px 100px 0px;}
.titleh2 {
    font-size: 40px;
    font-weight: 800;
} 
.firstscreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(217,243,251);
    background: linear-gradient(145deg, rgba(217,243,251,1) 0%, rgba(255,255,255,1) 37%, rgba(244,238,225,1) 66%, rgba(217,243,251,1) 100%);
    z-index: -1;
} 
.secondscreen {
    position: absolute;
    top: 100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(217,243,251);
    background: linear-gradient(-145deg, rgba(217,243,251,1) 0%, rgba(244,238,225,1) 37%, rgba(255,255,255,1) 66%, rgba(217,243,251,1) 100%);
    z-index: -1;
}
.tirdscreen {
    position: absolute;
    top: 200vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(217,243,251);
    background: linear-gradient(145deg, rgba(217,243,251,1) 0%, rgba(255,255,255,1) 37%, rgba(244,238,225,1) 66%, rgba(217,243,251,1) 100%);
    z-index: -1;
}
.tirdscreen.home{     
    height: 90vh; 
}
.main { 
    min-height: calc(100vh - 420px);
    margin-bottom: 420px;
}
.first {
    min-height: calc(100vh - 420px);
    background: rgb(217,243,251);
    background: linear-gradient(145deg, rgba(217,243,251,1) 0%, rgba(255,255,255,1) 37%, rgba(244,238,225,1) 66%, rgba(217,243,251,1) 100%);
}
.second {
    background: rgb(217,243,251);
    background: linear-gradient(-145deg, rgba(217,243,251,1) 0%, rgba(244,238,225,1) 18%, rgba(255,255,255,1) 66%, rgba(217,243,251,1) 100%);
}
.third  {
    background: rgb(217,243,251);
    background: linear-gradient(145deg, rgba(217,243,251,1) 0%, rgba(255,255,255,1) 37%, rgba(244,238,225,1) 66%, rgba(217,243,251,1) 100%);
}
.page-end {margin-bottom: 420px !important;}
/*TOP MENU*/
.headernav {
    position: relative;             
    margin: 0;
    padding: 0; 
    list-style: none;    
    height: var(--headerh); 
    z-index: 99;         
}
.headernav li {
    display: inline-flex;
    margin: 0;
    padding: 0; 
    height: var(--headerh);
} 
.headernav li a {
    color: var(--dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;  
    margin: 0;
    padding:0px 15px;  
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear; 
    position: relative;
    height: var(--headerh);
}
.headernav li a i {
    margin-left: 8px;
    font-size: 10px;   
}
.headernav li:first-child a {    
    padding-left: 0;
}
.headernav li:last-child a {    
    padding-right: 0;
} 
.headernav li a:hover{
    color: var(--secondary);
    cursor: pointer;
 }
 
.fixed .header .headernav,.fixed .header .headernav li, .fixed .header .headernav li a{    
    height: var(--headerh); 
}
.fixed .header .headernav li a {
    color: var(--primary);
}
 
.headernav li .submenu { 
    visibility: hidden;
    position: absolute;     
    z-index: -1; 
    top: auto;
    margin-top: var(--headerh);
    transition: all 200ms linear;    
    padding: 0;  
    border-radius: 5px;
    border: 0;
    background-color: var(--primary); 
    min-width: 220px; 
    margin-left: 8px;
    opacity: 0; 
   
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
}
.headernav li:hover .submenu{    
    visibility: visible;
    opacity: 1;
    margin-top: var(--headerh);  
}
.headernav li .submenu.column {      
    width: 100%;
    background: #fff;
    padding: 20px;
    z-index: 500;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    margin-top:61px;
    box-sizing: border-box;
    column-count: 3;
} 
.headernav li .submenu li {  
     display: flex;     
     border-bottom: 1px solid rgba(0,0,0,0.1);
     height: auto;
}
.headernav li .submenu li a{    
    color: #fff;
    margin:0;
    padding: 18px 20px;
    height: auto !important;
    float: left;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: start;
    border: 0;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    opacity: 1;
}
.headernav li .submenu li a:hover{         
    opacity: .8;
}
.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.header .social a {
    color: var(--primary);
    font-size: 20px;
}
.fixed .header .social a{
    color: var(--primary);
}
.fixed .header {
    color: var(--primary);
}
.fixed .header .headernav li:hover .submenu{       
    margin-top: 75px;  
}
.fixed .header .headernav li .submenu li a,.fixed .header .headernav li .submenu li{       
    height: 45px !important;
}
/*TOP MENU END*/ 

.mainslider {
    position: relative;
    width: 100%;
    height: var(--sliderheight);  
}
.sliderleft { 
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--sliderleftw);
    height: var(--sliderheight);
}
.sliderleft .title {
    color: var(--secondary);
    font-size: 45px;
    line-height: 51px;
    font-weight: 800;
}
.sliderleft span {
    color: var(--primary);
}
.sliderleft p {
    opacity: .5;
}
.sliderleft .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 13px 19px;
    opacity: 1;
    transition: all 200ms linear;
}
.sliderleft .btn-primary:hover {
    opacity: .9;
}
.sliderleft .istatistik .title {
    font-size: 25px;
    line-height: 25px;    
    font-weight: 700;
}
.sliderleft .istatistik .title span{
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    color: var(--dark);
}
.sliderleft .istatistik .border{
    display: block;
    float: left;
    width: 1px;
    padding: 20px 0;
    background-color: var(--dark);
    margin: 0 30px;
}



.sliderright { 
    float: left;
    display: flex;
    align-items: end;
    justify-content: end;
    width: var(--sliderrighttw);
    height: 100%;    
}
.sliderright .img {
    display: flex;
    align-items: end;
    justify-content: end;
    width: 95%;
    height: var(--sliderheight); 
}
.sliderright .img img { 
    width: 100%;
    object-fit: contain;
}
.lefttext {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;   
    width: calc(var(--sliderrighttw) - 60px);
}
.righttext {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;   
    width: calc(var(--sliderleftw) + 60px); 
    padding-right: 20px;
}
.righttext .title{
    position: absolute;
    background-color: #f1ede5;
    box-shadow: rgba(17, 12, 46, 0.25) 0px 0px 100px 0px;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    padding: 35px 40px;       
    text-align: center;
    border-radius: 35px;
    opacity:1;
}

.hakkimda.hakkimda {
    margin-top:-50px;
}

.home .hakkimdabg {
    position: relative;
    display: flex;
    width: 100%;
    height:424px;
    
}
.home .hakkimdabg img{
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
   box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

/*TABS*/
.nav-tabs {
   border: 0;
} 
.nav-tabs .nav-link {
    background-color: #fff;
    margin: 0 5px;
    margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
    padding: 15px 45px 15px 15px;
    border: 0;
    border-radius: 15px;
    -webkit-box-shadow:0 2px 28px 0 rgba(0, 0, 0, 0.09);
    box-shadow:0 2px 28px 0 rgba(0, 0, 0, 0.09);
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
}
.nav-tabs .nav-link svg{   
    color: #fff;
    margin-right: 25px;
    padding: 12px;
    background-color: var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: 15px;
}
.nav-tabs .nav-link.active svg{     
    color: #fff; 
    background-color: var(--primary); 
}
.nav-tabs .nav-link.active {
    color: #fff;
    background-color: var(--secondary);
    border-color: var(--bs-nav-tabs-link-active-border-color);
    font-weight: 600;
}

/*TABS END*/

/*oneriSwiper*/
.oneriSwiper {     
    height: 450px;     
    padding: 0 49px;    
} 
.oneriSwiper:hover{     
    cursor: grab; 
} 
.oneriSwiper .swiper-wrapper{     
    margin-left: -150px;  
} 
.oneriSwiper .swiper-slide{        
    height: 350px;
    border-radius: 15px;
}
 
.oneriSwiper .swiper-slide img{
    height: 100%;
    object-fit: cover;        
    border-radius: 15px;
    z-index: 0;
    
} 

.oneriSwiper .swiper-slide .content{       
    width: 100%;
    padding: 15px;
    text-align: center;    
    z-index: 1; 
}
.oneriSwiper .swiper-slide .content .title{        
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    color: var(--dark);
    font-weight: 600;
    transition: all 200ms linear;          
}
.oneriSwiper .swiper-slide .content .title span{          
    font-size: 16px;
    line-height: 16px;
    font-style: italic;
    font-weight: 500;
    opacity: .8;
}

.oneriSwiper .swiper-slide .content .title:hover{        
    cursor: default;          
}
.oneriSwiper .swiper-slide a:hover .title{        
    color: var(--secondary);
 }
.oneriSwiper .bottombutton {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;    
}
.oneriSwiper:hover .bottombutton {
    display: flex;
}
.oneriSwiper .swiper-button-next, .oneriSwiper .swiper-rtl .swiper-button-prev {
    right:20px;
    left: auto;
}
.oneriSwiper .swiper-button-prev, .oneriSwiper .swiper-rtl .swiper-button-next {
    left: 20px;
    right: auto;
} 
.oneriSwiper .swiper-button-next, .oneriSwiper .swiper-button-prev {     
    width: 40px;
    height: 40px; 
    z-index: 10;
    cursor: pointer; 
    color: #fff;
    background-color: var(--primary);
    border-radius: 100px;
    transition: all 200ms linear;
    margin-top: -60px;
}
.oneriSwiper .swiper-button-next:after, .oneriSwiper .swiper-button-prev:after{    
    font-size:14px;
    line-height: 14px;
    font-weight: bold;    
}
.oneriSwiper .swiper-button-next:hover, .oneriSwiper .swiper-button-prev:hover {      
    background-color: var(--secondary); 
} 
/*oneriSwiper END */

/*blogSwiper*/ 
 .blog .img {
    width: 100%;
    height: 416px;
 }
.blog img{
   width: 416px;
   height: 416px;
    object-fit: cover;        
    border-radius: 15px;
    z-index: 0; 
} 

.blog .content{       
    width: 100%;
    padding: 15px;    
    z-index: 1; 
}
.blog .content svg{       
   width: 30px;
   height: 30px;
   background-color: var(--primary);
   color: #fff;
   padding: 6px;
   border-radius: 100px;
   opacity: .7;
} 
.blog .content .title a{        
    margin: 0;
    font-size: 22px;
    line-height: 26px;
    color: var(--dark);
    font-weight: 600;
    transition: all 100ms linear;    
    text-decoration: none;      
}

.blog .content .title a:hover{        
    color: var(--secondary);    
}
.blog a:hover .title{        
    color: var(--secondary);
 } 

 .breader {
    margin: 0;
    padding: 0;
 }
 .breader li {
    list-style-type: none;
    display: inline-flex;
 }
 .breader li {
    margin:0 5px;
 }
 .hakkimda p {
    font-size: 18px;
 }
 .hizmet p {
    font-size: 18px;
 }
 .blog p {
    font-size: 18px;
 }
 .blog li {
    font-size: 18px;
 }
 .sidemenu li{
    list-style-type: none;
    padding: 5px 0;
    display: flex;
    align-items: center;
 }
 .sidemenu li a svg {
    margin-right: 15px;
 }
 .sidemenu li.active a{
    color: var(--secondary);
 }
 .sidemenu li.active a svg{
    color: var(--primary);
 }
 .cizgi {
    width: 2px;
    background-color: #000;
    display: inline-flex;
    height: 100%;
    margin: 0 20px;
    opacity: .2;
 }
 .contact svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
 }
 .contact p {font-size: 18px;}
 .contact a {font-size: 18px;}
/*blogSwiper END */

.carousel-item {    
    height: 350px;    
}
.carousel-item .container{   
    height: 350px;  
    background-color: #f00;  
}
.carousel-caption {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: left !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding:20px 70px !important;
    color: #fff; 
}
.text-gradient {
      color: rgba(139,61,255,1);
}

.bg-carousel {
    background-color: rgba(71,184,132,.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.carousel-control-next, .carousel-control-prev {
    width: 55px !important;    
}
.carousel-control-prev-icon{ 
    background-image: url(../images/left.svg);
}
.carousel-control-next-icon{ 
    background-image: url(../images/right.svg);
}
.modal {
    --bs-border-radius-lg:25px;
    --bs-modal-border-radius: var(--bs-border-radius-lg); 
    --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width))); 
}
.yorumform input, .yorumform textarea {
    height: 50px;
    background-color: transparent;
    border-color: var(--primary);
    transition: all 200ms linear;
}
.yorumform textarea {
    height: 250px;    
}
.yorumform input:focus, .yorumform textarea:focus { 
    background-color: transparent;
    border-color: var(--secondary);
    outline: none !important;
    box-shadow: none;
}

 
.divcaptcha {
    float: left ;     
    width:100%; 
}
.bgdanger {
    background-color: #f8d7da;
    color: #842029;
}
footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: -2;
    
}
.footer ul {
    margin: 0;
    padding: 0;
}
.footer ul li {
    list-style-type: none;
    display: flex;    
}
.footer ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;    
    font-size: 18px;
    line-height: 18px;
    letter-spacing: .5px;
    margin-bottom: 10px;    
}
.footer a {
    color: #fff;
} 
@media (max-width:767px) {
    .blog .img {
        width: 100%;
        height: 450px;
     }
    .blog img{
       width: 100%;
       height: 100%;
        object-fit: cover;        
        border-radius: 15px;
        z-index: 0; 
    } 
    .mobilmenubtn {
        display: flex;
        align-items: center;
        justify-content: center;      
        width: 50px;
        height:50px;
        border-radius: 11px;
        background-color: var(--lightgray);
        padding: 0;
    }
    header .navbar .navs {
        display: inline-block;       
        vertical-align: middle;
    }
    header .navbar .navs:hover {
        cursor: pointer;
    }
    header .navbar .navs span {
        display: block;
        background: var(--primary);
        width: 32px;
        height: 2px;
    }
    header .navbar .navs span:nth-child(1) {
        width: 23px;
    }
    header .navbar .navs span:nth-child(2) {
        margin: 8px 0;
    }
    header .navbar .navs span:nth-child(3) {
        width: 15px;
    }
    .yorumform {
        background-color: #fff;
        margin-top: 30px;
        padding: 30px;
    }
}