/* Overlay Loading*/

.overlayLoading {
    width: 100%;
    height: 100%;
    position: fixed;

    background-color: #FFF;
    z-index: 1051;
    display: flex;
    align-items: center;
}

.logo_loader {
    width: 120px;
    height: 120px;
    animation: rotateY 2s infinite;
    animation-delay: 0ms;

}

@keyframes rotateY {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

/* overlay loading - END */

.dontSelect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hataliBorder {
    border: 1px solid red;
}

.dotted1px {
    border: 1px dotted;
}

.metniKisalt {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.link-efekt {
    font-size: calc(1rem + 0.05vw);
}

.link-efekt:hover {
    text-decoration: none;
}

.link-efekt::after {
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    content: attr(data-icon);
    opacity: 0;
    display: inline-block;
    transform: translateX(-5px);
    transition: 0.3s ease all;
    width: 0;
}

.link-efekt:hover::after {
    opacity: 1;
    transform: translateX(5px);
    transition: 0.3s ease all;
    width: 10px;
}

/* responsive tabs*/

.r-tabs .r-tabs-nav .r-tabs-tab {
    border: 1px solid;
    position: relative;
    background-color: #305E8F;
    border-bottom: unset;
    border-radius: 3px;
}

.r-tabs .r-tabs-nav .r-tabs-anchor {
    display: inline-block;
    padding: 10px 12px;
    text-decoration: none;
    text-shadow: 0 1px rgba(0, 0, 0, 0.4);
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.r-tabs .r-tabs-nav .r-tabs-state-disabled {
    opacity: 0.5;
}

.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
    color: #305E8F;
    text-shadow: none;
    background-color: white;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.r-tabs .r-tabs-panel {
    background-color: white;
    border-bottom: 4px solid white;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    min-height: 300px;
}

.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
    display: block;
    padding: 10px;
    background-color: #305E8F;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 1px rgba(0, 0, 0, 0.4);
    font-size: 14px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    margin: 10px
}

.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
    background-color: #fff;
    color: #305E8F;
    text-shadow: none;
}

.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
    opacity: 0.5;
}

.r-tabs .r-tabs-nav {
    margin: 0;
    padding: 0;
}

.r-tabs .r-tabs-tab {
    display: inline-block;
    margin: 0;
    list-style: none;
}

.r-tabs .r-tabs-panel {
    padding: 15px;
    display: none;
}

.r-tabs .r-tabs-accordion-title {
    display: none;
}

.r-tabs .r-tabs-panel.r-tabs-state-active {
    display: block;
    border-top: 1px solid #000;
    margin-top: -1px;
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

/* css foto efektleri */
.grayscale {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.huerotate320 {
    -webkit-filter: hue-rotate(320deg);
    filter: hue-rotate(320deg);
}

.huerotate40 {
    -webkit-filter: hue-rotate(40deg);
    filter: hue-rotate(40deg);
}

.sepia {
    -webkit-filter: sepia(100%);
    filter: sepia(100%);
}

/* css foto efektleri #END */



.lutfen_bekle {
    font: 300 1em/150% "Roboto";
    text-align: center;
}

/* loading dots */

.lutfen_bekle:after {
    content: ' .';
    animation: dots 1.5s steps(5, end) infinite;
    padding-right: 20px;
}

/* counter/sayaç */
.sayac .counter-count {
    display: inline-block;
    padding-top: 20px;
    font-size: 32px;
    font-weight: bold;
}

.counter .bg-koyu {
    border-radius: 15px;
}

/* counter/sayaç #END*/


/* checkbox effect */

input[type='checkbox'].efektInput {
    height: 0;
    width: 0;
}

input[type='checkbox'].efektInput * {
    font: 24px/1.4 sans-serif;
}

input[type='checkbox'].efektInput+label {
    position: relative;
    display: inline-block;
    margin: .6em 0;
    align-items: center;
    transition: color 250ms cubic-bezier(.4, .0, .23, 1);
}

input[type='checkbox'].efektInput+label>span {
    display: flex;
    float: left;
    justify-content: center;
    align-items: center;
    margin-right: 0.7em;
    width: 1.3em;
    height: 1.3em;
    background: transparent;
    border: 2px solid #9E9E9E;
    border-radius: 2px;
    cursor: pointer;
    transition: all 250ms cubic-bezier(.4, .0, .23, 1);
}

input[type='checkbox'].efektInput:focus+label {
    color: rgb(63, 63, 63);
}

input[type='checkbox'].efektInput:focus+label>span {
    background: rgba(241, 241, 241, 0.8);
}

input[type='checkbox'].efektInput:checked+label>span {
    border: .65em solid #305e8f;
    animation: shrink-bounce 200ms cubic-bezier(.4, .0, .23, 1);
}

input[type='checkbox'].efektInput:checked+label>span:before {
    font: 26px/1.8 sans-serif;
    font-weight: bold;
    content: "";
    position: absolute;
    top: .5em;
    left: .15em;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transform: rotate(45deg);
    transform-origin: 0% 100%;
    animation: checkbox-check 125ms 250ms cubic-bezier(.4, .0, .23, 1) forwards;
}

/* checkbox animate #END */

/* KARAKTER SAY*/
.kalanKarakterSayac {
    position: relative;
  text-align: right;
   
}

.encokVeKalan,
.mesaj_sayac,
.k_karakter {
    font-size: 12px;
}

.mesaj_sayac {
    font-weight: bold;
}

/* KARAKTER SAY #END*/


.gradientWord {
    background-image: url(../img/grad.jpg);
    background-size: 600% 600%;
    -webkit-animation: gradient 6s linear infinite;
    animation: gradient 10s linear infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.rotate45 {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

 

.shine-button {
    position: relative;
    color: white !important;
    text-align: center;
    width: 200px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    background: transparent;
    animation: TransitioningBackground 10s ease infinite;
    transition: 0.6s;
  }
  .shine-button::after {
    content: "";
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 100%;
    top: 0;
    filter: blur(5px);
    transform: translateX(-100px) skewX(-45deg);
  }
 
  .shine-button:hover::before, .shine-button:hover::after {
    transform: translateX(300px) skewX(-15deg);
    transition: 1s;

  }
  
  @keyframes TransitioningBackground {
    0% {
      background-position: 1% 0%;
    }
    50% {
      background-position: 99% 100%;
    }
    100% {
      background-position: 1% 0%;
    }
  }

@keyframes gradient {
    0% {
        background-position: 0 0
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}

@keyframes dots {

    0%,
    20% {
        color: rgba(0, 0, 0, 0);
        text-shadow: .25em 0 0 rgba(0, 0, 0, 0), .5em 0 0 rgba(0, 0, 0, 0);
    }

    40% {
        color: white;
        text-shadow: .25em 0 0 rgba(0, 0, 0, 0), .5em 0 0 rgba(0, 0, 0, 0);
    }

    60% {
        text-shadow: .25em 0 0 white, .5em 0 0 rgba(0, 0, 0, 0);
    }

    80%,
    100% {
        text-shadow: .25em 0 0 white, .5em 0 0 white;
    }
}




@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes shrink-bounce {
    0% {
        transform: scale(1);
    }

    33% {
        transform: scale(.85);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes checkbox-check {
    0% {
        width: 0;
        height: 0;
        border-color: #FFF;
        transform: translate3d(0, 0, 0) rotate(45deg);
    }

    33% {
        width: .2em;
        height: 0;
        transform: translate3d(0, 0, 0) rotate(45deg);
    }

    100% {
        width: .2em;
        height: .5em;
        border-color: #FFF;
        transform: translate3d(0, -.5em, 0) rotate(45deg);
    }
}

.rainbow-border {
    padding-bottom: 10px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(to right, #f747e2 0%, #c41313 25%, #ffe066 50%, #1175af 75%, #a93daa 100%);
    border-image-slice: 1;

}

/* Slider */

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';

/* Slider */

.slick-loading .slick-list {
    background: #fff url('../img/loading.gif') center center no-repeat;
}


/* Icons */

@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('./font/slick/slick.eot');
    src: url('./font/slick/slick.eot?#iefix') format('embedded-opentype'), url('./font/slick/slick.woff') format('woff'), url('./font/slick/slick.ttf') format('truetype'), url('./font/slick/slick.svg#slick') format('svg');
}


/* Arrows */

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 300;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 35px;
    opacity: .75;
    color: white;
    background-color: transparent;
    border-radius: 50%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*border: 1px solid rgba(255, 255, 255, 0.486);*/
    padding: 4px 12px;
}

.slick-prev {
    left: -20px;
}

[dir='rtl'] .slick-prev {
    right: -20px;
    left: auto;
}

.slick-prev:before {
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    content: '\f104';
}

[dir='rtl'] .slick-prev:before {
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    content: '\f104';
}

.slick-next {
    right: 0px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: 0px;
}

.slick-next:before {
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    content: '\f105';
}

[dir='rtl'] .slick-next:before {
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    content: '\f105';
}


/* Dots */

.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 16px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}

/* activities slick */

.actSliderWrap{
    background-color: #000;
    padding: 2% 4%;
    padding-left: 0 !important;
    position: relative;
 
}
 

#activities > a{
    display: block;
    transition: filter 800ms ease-in-out;
    position: relative;
    width:100%;   
    overflow: hidden;

}
#activities a img{
    transition: transform 800ms ease-in-out;
}
 
#activities a:hover img{
    filter: grayscale(1);
    -webkit-transform: scale(1.2,1.3);
    -ms-transform: scale(1.2,1.3);
    -moz-transform: scale(1.2,1.3);
    transform: scale(1.2,1.3);
    
}
#activities a:hover  .neler-yapiyoruz-baslik-tekil{
    bottom: -100%;
}
.title-group-1{
    color: #d5121e;
    font-weight: bold;
}

.font-size-group-1{
    font-size: 24px;
    color: #1C2C2C;
}
.withShortLine::before{
    content:'';
    position: absolute;
    left: -70px;
    top: 28px;
    display: inline-block;
    height: 3px;
    width: 50px;   
    background-color: #000;
}

.gradientOverlayBottomToTop{
    position: absolute;
    background: rgb(2,0,36);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,.45) 30%, rgba(255,255,255,0) 100%);
    height: 320px;
    width: 100%;
    bottom: -20px;
    z-index: 2;
}

.neler-yapiyoruz-baslik-tekil, .neler-yapiyoruz-baslik-tekil-texttop{
    position: absolute;
  
    bottom: 0;
    right: 20px;
    z-index: 999;
    color: #FFF;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: bottom 400ms ease-in-out;

}
.neler-yapiyoruz-baslik-tekil::after, .neler-yapiyoruz-baslik-tekil-texttop::after{
    display: block;
    content: ' ';
    position: absolute;
    width: 70px;
    height: 6px;
    bottom: -10px;
    background-color: #dcfb4f;
    right: 0;
}
.neler-yapiyoruz-baslik-tekil-texttop{
    bottom: auto;
     top: 10px;
}
.neler-yapiyoruz-baslik-tekil-texttop::before{
    content: ' ';
    display: block;
    padding: 0px 3%;
    position: fixed;
    width: 100%;
    top: 0;
    height: 60px;
    opacity: .2;

    background-color: rgba(22, 22, 22, 0.452);

}
.offerBox{
   border-right: 2px dotted rgb(221, 221, 221);
}
.offerBox::after{
    display: block;
    width: 80%;
    height: 5px;
    content: ' ';
    margin: 20px auto;
    
}
.offerBox:nth-child(1)::after{
    background-color: #03a9f4;
}
.offerBox:nth-child(2)::after{
    background-color: #da515a;
}
.offerBox:nth-child(3)::after{
    background-color: #fbc02d;
}
.offerBox:nth-child(4)::after{
    background-color: #464646;
}
.circle-shadow{
    display: flex;
    align-items: center;
    justify-content: center;
  
    text-align: center;
    border: 1px solid transparent;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0px 0px 29px rgb(197, 197, 197);
  }
.circle-shadow svg{
    font-size: 3rem;
    color: #FFF;
}
.bgblue{
    background-color: #03a9f4;
}
.bgred{
    background-color: #da515a;
}
.bgyellow{
    background-color: #fbc02d;
}

.bgsmoked{
    background-color: #464646;
}

.colorblue{
    color: #03a9f4;
}
.colorred{
    color: #da515a;;
}
.coloryellow{
    color: #fbc02d;
}
.colorsmoked{
    color: #464646;
}
.dikeyflex:hover{
    filter: sepia(1);
}

.dikeyflex:hover .counter-count{
    color: #b88a35;
}
.counter-subtext{
font-size: 1.5rem;
}


.counter-wrap .colorred~.counter-subtext::after{
    display: block;
    content: '';
    background-color: #da515a;
    width: 100%;
    height: 2px;
}
.counter-wrap .colorsmoked~.counter-subtext{
    color: #da515a;
}

.counter-wrap .colorsmoked~.counter-subtext::after{
    display: block;
    content: '';
    background-color: #464646;
    width: 100%;
    height: 2px;
}

#logoSlider img{
    max-width: 240px;
    padding: 5px 20px;
    opacity: 0.6;
    transition: filter, opacity 400ms ease-in;
    
}
#logoSlider img:hover{
    filter: none;
    -webkit-filter: none;
    opacity: 1;
}

footer .col-md-3{
    position: relative;
}
footer .miniTitleText::after{
    display: block;
    content: ' ';
    position: absolute;
    width: 70px;
    height: 4px;
    top: 64px;
    background-color: #b02a37;
    left: 24px;
}
.vurgulandi{
    background-color: #ffffc0;
    padding: 10px 20px;
}

.blink {
font-size: 48px;
 
    opacity: 0;
    animation: blinkEfekt 1s ease infinite;
}
@keyframes blinkEfekt {
    to {
        opacity: 1;
    }
}


    /*MENU HAMBURGER*/
    
    .menuicon {
        position: absolute;
        cursor: pointer;
        right: 0px;
        display: block;
        top: 10px;
        
    }
    
    .mbar1,
    .mbar2,
    .mbar3 {
        display: block;
        width: 35px;
        height: 5px;
        background-color: rgb(41, 41, 41);
        margin: 6px 0;
        transition: 0.4s;
    }
    
    .cevir .mbar1 {
        -webkit-transform: rotate(-45deg) translate(-9px, 6px);
        transform: rotate(-45deg) translate(-9px, 6px);
    }
    
    .cevir .mbar2 {
        opacity: 0;
    }
    
    .cevir .mbar3 {
        -webkit-transform: rotate(45deg) translate(-8px, -8px);
        transform: rotate(45deg) translate(-8px, -8px);
    }
    /* HAMBURGER #END */
    
   .arasayfa_icerik h2 {
       
    display: inline-block;
    border-bottom: 4px solid  #727270;
    padding-bottom: 10px;

   } 
  