@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,900');
@import 'slick-and-theme.css?a=d';

.font-primary {
    font-family: 'Montserrat', sans-serif;
}

.font-secondary {
    font-family: 'Source Sans Pro', sans-serif;
}

html {
    width: 100%;
    height: auto;

}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:active,
a:focus,
a:hover {
    text-decoration: none !important;
    outline: none;
}

::-webkit-scrollbar-track {
    background-color: #e9edf0;
    border-left: 1px solid #ededed;
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--dh-mavi);
}

::-webkit-scrollbar-thumb {
    background: var(--dh-mavi);
}

.broken404 {
    font-size: 2em;
    color: rgba(0, 30, 54, 0.3);
}

.broken404 svg {
    font-size: 1.5em;
}

#menu-bar {
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 80px;
    transition: all 0.4s;
    color: #FFF;
    text-align: right;
}

#menu-bar.posfixed {
    z-index: 99;
    position: absolute;
    top: 0;
    height: 100px;
    background-color: var(--dh-lacivert);
    padding-top: 20px;
    border-bottom: 4px solid var(--dh-mavi);


}
#menu-bar li{
    display: inline-block;
    padding-right: 10px;
    border-right: 1px dotted #FFF;
}
#menu-bar a{
    color: #FFF;
 
}
.menu-opener-btn{
    z-index: 780;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 30px;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    width: 38px;
    padding: 6px;
 
}
.menu-opener-btn span{
    height: 2px;
    width: 100%;
    background: #FFFFFF;
    display: block;
    margin-bottom: 6px;
    transition: .5s ease
}
.menu-opener-btn:hover{
    text-align: center;
}
.menu-opener-btn:hover span:nth-child(1),
.menu-opener-btn:hover span:nth-child(3){
    margin: auto;
    width: 80%;
    margin-bottom: 6px !important;
}


#top-bar {
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 100;
    margin: 0;
    background-color: var(--dh-lacivert);
}

#section-1 {
    background-color: #79addd;


}

#fullVideoBg {
    top: 0;
    position: absolute;
    width: 100%;
    min-height: 100%;
    filter: grayscale(100%) brightness(50%);
    opacity: 0.8;
    object-fit: cover;


}

#daktiloTxt {
    width: 100%;
    height: 100%;
    z-index: 20;
    position: absolute;
    top: 0;
    font-family: 'Montserrat';
}

.title {
    text-align: center;
    padding: 30px 0px 20px;
}

.dynamic-title {
    margin: 0 auto;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    min-width: 22ch;
}

.onlyOutLine {
    font-size: 2.8rem;
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}

.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    font-style: normal;
}

.cd-words-wrapper b.is-visible {
    position: relative;
}

.cd-headline.clip span {
    display: inline-block;
    padding: .2em 0;
}

.cd-headline.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
    /* line */
    animation: blinkEfekt 1s ease infinite;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #aebcb9;
}

.cd-headline.clip b {
    opacity: 0;
}

.cd-headline.clip b.is-visible {
    opacity: 1;
}

.blink {
    font-size: 48px;

    opacity: 0;
    animation: blinkEfekt 1s ease infinite;
}



@keyframes blinkEfekt {

    0%,
    50% {
        opacity: 0
    }

    100% {
        opacity: 1;
    }
}

/* ===================================
  #UTILS -> Loader
====================================== */
.loader {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 111111;
    background: #202020;
    overflow: hidden !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot-container {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    filter: url('#goo');
    animation: rotate-move 2s ease-in-out infinite;
}

.dot {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.dot-3 {
    background-color: var(--bs-light);
    animation: dot-3-move 2s ease infinite, index 6s ease infinite;
}

.dot-2 {
    background-color: var(--gray-dark);
    animation: dot-2-move 2s ease infinite, index 6s -4s ease infinite;
}

.dot-1 {
    background-color: var(--dh-mavi);
    animation: dot-1-move 2s ease infinite, index 6s -2s ease infinite;
}

@keyframes dot-3-move {
    20% {
        transform: scale(1)
    }

    45% {
        transform: translateY(-18px) scale(.45)
    }

    60% {
        transform: translateY(-90px) scale(.45)
    }

    80% {
        transform: translateY(-90px) scale(.45)
    }

    100% {
        transform: translateY(0px) scale(1)
    }
}

@keyframes dot-2-move {
    20% {
        transform: scale(1)
    }

    45% {
        transform: translate(-16px, 12px) scale(.45)
    }

    60% {
        transform: translate(-80px, 60px) scale(.45)
    }

    80% {
        transform: translate(-80px, 60px) scale(.45)
    }

    100% {
        transform: translateY(0px) scale(1)
    }
}

@keyframes dot-1-move {
    20% {
        transform: scale(1)
    }

    45% {
        transform: translate(16px, 12px) scale(.45)
    }

    60% {
        transform: translate(80px, 60px) scale(.45)
    }

    80% {
        transform: translate(80px, 60px) scale(.45)
    }

    100% {
        transform: translateY(0px) scale(1)
    }
}

@keyframes rotate-move {
    55% {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    80% {
        transform: translate(-50%, -50%) rotate(360deg)
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes index {

    0%,
    100% {
        z-index: 3
    }

    33.3% {
        z-index: 2
    }

    66.6% {
        z-index: 1
    }
}

/* ===================================
  #UTILS -> Explode
====================================== */
.cd-transition-layer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: visible;
    overflow: hidden;
    pointer-events: none;
}

.cd-transition-layer .bg-layer {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-2%);
    -moz-transform: translateY(-50%) translateX(-2%);
    -ms-transform: translateY(-50%) translateX(-2%);
    -o-transform: translateY(-50%) translateX(-2%);
    transform: translateY(-50%) translateX(-2%);
    height: 100%;
    width: 2500%;
    background: url(../img/ink.png) no-repeat 0 0;
    background-size: 100% 100%;
}

.cd-transition-layer.visible {
    opacity: 1;
    visibility: visible;
}

.cd-transition-layer.opening .bg-layer {
    -webkit-animation: cd-sequence 1.0s steps(24);
    -moz-animation: cd-sequence 1.0s steps(24);
    animation: cd-sequence 1.0s steps(24);
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.cd-transition-layer.closing .bg-layer {
    -webkit-animation: cd-sequence-reverse 1.0s steps(24);
    -moz-animation: cd-sequence-reverse 1.0s steps(24);
    animation: cd-sequence-reverse 1.0s steps(24);
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.no-cssanimations .cd-transition-layer {
    display: none;
}

@-webkit-keyframes cd-sequence {
    0% {
        -webkit-transform: translateY(-50%) translateX(-2%);
    }

    100% {
        -webkit-transform: translateY(-50%) translateX(-98%);
    }
}

@-moz-keyframes cd-sequence {
    0% {
        -moz-transform: translateY(-50%) translateX(-2%);
    }

    100% {
        -moz-transform: translateY(-50%) translateX(-98%);
    }
}

@keyframes cd-sequence {
    0% {
        -webkit-transform: translateY(-50%) translateX(-2%);
        -moz-transform: translateY(-50%) translateX(-2%);
        -ms-transform: translateY(-50%) translateX(-2%);
        -o-transform: translateY(-50%) translateX(-2%);
        transform: translateY(-50%) translateX(-2%);
    }

    100% {
        -webkit-transform: translateY(-50%) translateX(-98%);
        -moz-transform: translateY(-50%) translateX(-98%);
        -ms-transform: translateY(-50%) translateX(-98%);
        -o-transform: translateY(-50%) translateX(-98%);
        transform: translateY(-50%) translateX(-98%);
    }
}

@-webkit-keyframes cd-sequence-reverse {
    0% {
        -webkit-transform: translateY(-50%) translateX(-98%);
    }

    100% {
        -webkit-transform: translateY(-50%) translateX(-2%);
    }
}

@-moz-keyframes cd-sequence-reverse {
    0% {
        -moz-transform: translateY(-50%) translateX(-98%);
    }

    100% {
        -moz-transform: translateY(-50%) translateX(-2%);
    }
}

@keyframes cd-sequence-reverse {
    0% {
        -webkit-transform: translateY(-50%) translateX(-98%);
        -moz-transform: translateY(-50%) translateX(-98%);
        -ms-transform: translateY(-50%) translateX(-98%);
        -o-transform: translateY(-50%) translateX(-98%);
        transform: translateY(-50%) translateX(-98%);
    }

    100% {
        -webkit-transform: translateY(-50%) translateX(-2%);
        -moz-transform: translateY(-50%) translateX(-2%);
        -ms-transform: translateY(-50%) translateX(-2%);
        -o-transform: translateY(-50%) translateX(-2%);
        transform: translateY(-50%) translateX(-2%);
    }
}


@-webkit-keyframes pulse_effect {
    0% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.9);
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.9);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.6);
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

@-o-keyframes pulse_effect {
    0% {
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.9);
    }

    25% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(100, 48, 148, 0.1);
    }
}

@keyframes pulse_effect {
    0% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.9);
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.9);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.6);
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

/*Blue*/
@-webkit-keyframes itg_pulse_blue {
    0% {
        -webkit-box-shadow: 0 0 0 5px rgba(0, 188, 212, 0.9);
        box-shadow: 0 0 0 5px rgba(0, 188, 212, 0.9);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(0, 188, 212, 0.6);
        box-shadow: 0 0 0 10px rgba(0, 188, 212, 0.6);
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(0, 188, 212, 0.3);
        box-shadow: 0 0 0 15px rgba(0, 188, 212, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 60px rgba(100, 48, 148, 0.1);
        box-shadow: 0 0 0 20px rgba(100, 48, 148, 0.1);
    }
}

@-o-keyframes itg_pulse_blue {
    0% {
        box-shadow: 0 0 0 5px rgba(0, 188, 212, 0.9);
    }

    25% {
        box-shadow: 0 0 0 10px rgba(0, 188, 212, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 188, 212, 0.3);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(100, 48, 148, 0.1);
    }
}

@keyframes itg_pulse_blue {
    0% {
        -webkit-box-shadow: 0 0 0 5px rgba(0, 188, 212, 0.9);
        box-shadow: 0 0 0 5px rgba(0, 188, 212, 0.9);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(0, 188, 212, 0.6);
        box-shadow: 0 0 0 10px rgba(0, 188, 212, 0.6);
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(0, 188, 212, 0.3);
        box-shadow: 0 0 0 15px rgba(0, 188, 212, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 60px rgba(100, 48, 148, 0.1);
        box-shadow: 0 0 0 20px rgba(100, 48, 148, 0.1);
    }
}

/*Midnight*/
@-webkit-keyframes itg_pulse_midnight {
    0% {
        -webkit-box-shadow: 0 0 0 5px rgba(65, 82, 107, 0.9);
        box-shadow: 0 0 0 5px rgba(65, 82, 107, 0.9);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(65, 82, 107, 0.6);
        box-shadow: 0 0 0 10px rgba(65, 82, 107, 0.6);
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(65, 82, 107, 0.3);
        box-shadow: 0 0 0 15px rgba(65, 82, 107, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 60px rgba(100, 48, 148, 0.1);
        box-shadow: 0 0 0 20px rgba(100, 48, 148, 0.1);
    }
}

@-o-keyframes itg_pulse_midnight {
    0% {
        box-shadow: 0 0 0 5px rgba(65, 82, 107, 0.9);
    }

    25% {
        box-shadow: 0 0 0 10px rgba(65, 82, 107, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(65, 82, 107, 0.3);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(100, 48, 148, 0.1);
    }
}

@keyframes itg_pulse_midnight {
    0% {
        -webkit-box-shadow: 0 0 0 5px rgba(65, 82, 107, 0.9);
        box-shadow: 0 0 0 5px rgba(65, 82, 107, 0.9);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(65, 82, 107, 0.6);
        box-shadow: 0 0 0 10px rgba(65, 82, 107, 0.6);
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(65, 82, 107, 0.3);
        box-shadow: 0 0 0 15px rgba(65, 82, 107, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 60px rgba(100, 48, 148, 0.1);
        box-shadow: 0 0 0 20px rgba(100, 48, 148, 0.1);
    }
}

/*purple*/
@-webkit-keyframes itg_pulse_purple {
    0% {
        -webkit-box-shadow: 0 0 0 5px rgba(149, 86, 245, 0.9);
        box-shadow: 0 0 0 5px rgba(149, 86, 245, 0.9);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(149, 86, 245, 0.6);
        box-shadow: 0 0 0 10px rgba(149, 86, 245, 0.6);
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(149, 86, 245, 0.3);
        box-shadow: 0 0 0 15px rgba(149, 86, 245, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 60px rgba(149, 86, 245, 0.1);
        box-shadow: 0 0 0 20px rgba(149, 86, 245, 0.1);
    }
}

@-o-keyframes itg_pulse_purple {
    0% {
        box-shadow: 0 0 0 5px rgba(149, 86, 245, 0.9);
    }

    25% {
        box-shadow: 0 0 0 10px rgba(149, 86, 245, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(149, 86, 245, 0.3);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(100, 48, 148, 0.1);
    }
}

@keyframes itg_pulse_purple {
    0% {
        -webkit-box-shadow: 0 0 0 5px rgba(149, 86, 245, 0.9);
        box-shadow: 0 0 0 5px rgba(149, 86, 245, 0.9);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(149, 86, 245, 0.6);
        box-shadow: 0 0 0 10px rgba(149, 86, 245, 0.6);
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(149, 86, 245, 0.3);
        box-shadow: 0 0 0 15px rgba(149, 86, 245, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 60px rgba(149, 86, 245, 0.1);
        box-shadow: 0 0 0 20px rgba(149, 86, 245, 0.1);
    }
}

/*pink*/
@-webkit-keyframes itg_pulse_pink {
    0% {
        -webkit-box-shadow: 0 0 0 5px rgba(240, 33, 182, 0.9);
        box-shadow: 0 0 0 5px rgba(240, 33, 182, 0.9);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(240, 33, 182, 0.6);
        box-shadow: 0 0 0 10px rgba(240, 33, 182, 0.6);
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(240, 33, 182, 0.3);
        box-shadow: 0 0 0 15px rgba(240, 33, 182, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 60px rgba(240, 33, 182, 0.1);
        box-shadow: 0 0 0 20px rgba(240, 33, 182, 0.1);
    }
}

@-o-keyframes itg_pulse_pink {
    0% {
        box-shadow: 0 0 0 5px rgba(240, 33, 182, 0.9);
    }

    25% {
        box-shadow: 0 0 0 10px rgba(240, 33, 182, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(240, 33, 182, 0.3);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(240, 33, 182, 0.1);
    }
}

@keyframes itg_pulse_pink {
    0% {
        -webkit-box-shadow: 0 0 0 5px rgba(240, 33, 182, 0.9);
        box-shadow: 0 0 0 5px rgba(240, 33, 182, 0.9);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(240, 33, 182, 0.6);
        box-shadow: 0 0 0 10px rgba(240, 33, 182, 0.6);
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(240, 33, 182, 0.3);
        box-shadow: 0 0 0 15px rgba(240, 33, 182, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 60px rgba(240, 33, 182, 0.1);
        box-shadow: 0 0 0 20px rgba(240, 33, 182, 0.1);
    }
}


/* genişleyen halka */

.process-wrapp {
    text-align: center;
    cursor: pointer;
    right: 0;
    bottom: 20px;
    z-index: 20;

}

.process-wrapp>.service-heading {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 20px;
}

.process-wrapp>.pro-step {
    position: relative;
}

.process-wrapp>.pro-step {
    display: inline-block;
    height: 90px;
    width: 90px;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.whatsapp-top-btn {
    width: 160px !important;
    height: 40px !important;
    line-height: 40px;
    z-index: 100 !important;
    -webkit-border-radius: 10px !important;
    border-radius: 10px !important;
    margin-top: 20px;
    right: 0;
}

.process-wrapp>.pro-step.blue {
    background: #03a9f5;
    font-weight: normal;
}

.process-wrapp:hover .pro-step.blue {
    -webkit-animation: itg_pulse_blue 1s infinite;
    -o-animation: itg_pulse_blue 1s infinite;
    animation: itg_pulse_blue 1s infinite;
    -webkit-box-shadow: 0 0 0 0 rgb(0, 188, 212);
    box-shadow: 0 0 0 0 rgb(0, 188, 212);
}

.process-wrapp>.pro-step.midnight {
    background: #41526b;
}

.process-wrapp:hover .pro-step.midnight {
    -webkit-animation: itg_pulse_midnight 1s infinite;
    -o-animation: itg_pulse_midnight 1s infinite;
    animation: itg_pulse_midnight 1s infinite;
    -webkit-box-shadow: 0 0 0 0 rgb(65, 82, 107);
    box-shadow: 0 0 0 0 rgb(65, 82, 107);
}

.process-wrapp>.pro-step.purple {
    background: #9556f5;
}

.process-wrapp:hover .pro-step.purple {
    -webkit-animation: itg_pulse_purple 1s infinite;
    -o-animation: itg_pulse_purple 1s infinite;
    animation: itg_pulse_purple 1s infinite;
    -webkit-box-shadow: 0 0 0 0 rgb(149, 86, 245);
    box-shadow: 0 0 0 0 rgb(149, 86, 245);
}

.process-wrapp>.pro-step.pink {
    background: #f021b6;
}

.process-wrapp:hover .pro-step.pink {
    -webkit-animation: itg_pulse_pink 1s infinite;
    -o-animation: itg_pulse_pink 1s infinite;
    animation: itg_pulse_pink 1s infinite;
    -webkit-box-shadow: 0 0 0 0 rgb(240, 33, 182);
    box-shadow: 0 0 0 0 rgb(240, 33, 182);
}

.sari-yazi {
    color: var(--sari-yazi);
    font-family: 'Montserrat', sans-serif;
}

.bg-dark1 {
    background: var(--dh-dark);
    /* background-size: cover; */
}

.bg-dark2 {
    background: var(--dh-lacivert);

    /* background-size: cover; */
}

.btn-setting {
    padding: 9px 34px;
    width: auto;
    display: inline-block;
    font-weight: 400;
    line-height: 25px;
    font-size: 15px;
    text-transform: capitalize;
    text-align: center;
    -webkit-border-radius: 36px;
    border-radius: 36px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #acacac;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease !important;
}

.btn-mavi {
    border-color: var(--dh-lacivert) !important;
    background-color: var(--dh-mavi) !important;
    color: #ffffff !important;
}

.btn-hvr-mavi:hover,
.btn-hvr-mavi:focus {
    border-color: var(--dh-mavi);
    color: #ffffff;
}

.btn-hvr-lacivert:after {
    background-color: #1b262f;
}

.btn-hvr-lacivert:hover,
.btn-hvr-lacivert:focus {
    border-color: var(--dh-lacivert);
    color: #ffffff;
}

.btn-transparent-white {
    background: transparent;
    border: 1px solid !important;
    border-color: #ffffff;
}

.btn-hvr-up:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.btn-hvr-mavi:focus,
.btn-hvr-lacivert:focus,
.btn-hvr-blue:focus,
.btn-hvr-whatsapp:focus {
    color: #ffffff;
}



.btn-hvr-up:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.btn-hvr-up:hover:after,
.btn-hvr-up:active:after,
.btn-hvr-up:focus:after {
    height: 100%;
}

.btn-hvr-mavi:after {
    background-color: var(--dh-mavi);
}

.btn-hvr-mavi:hover,
.btn-hvr-mavi:focus {
    border-color: var(--dh-mavi);
    color: #ffffff;
}

.btn-hvr-mavi:focus,
.btn-hvr-lacivert:focus,
.btn-hvr-blue:focus,
.btn-hvr-whatsapp:focus {
    color: #ffffff;
}

.rare-box {
    height: 187px;
    width: 100%;
    background: var(--dh-mavi);
    position: relative;
}

.about ul.oklu li:before {
    font-family: "Font Awesome 5 Free";
    padding-right: 15px;
    font-weight: 700;
    content: '\f061';
    color: #aac0e4;
}

.about-img-small {
    margin-left: 30px;
    top: -155px;
    margin-bottom: -153px;
}

.mavi-text {
    color: var(--dh-mavi);
}

.engellere-takilmazlar {
    max-width: 100%;
    bottom: 0;
    right: 0;
    transform: translateY(-100%);
    color: rgb(155 9 9 / 0%);
    -webkit-text-stroke: 1px rgb(0 0 0);
    font-family: 'Montserrat';
}

.fs-20px-16px {
    font-size: 20px !important;
}

:root {
    --sari-yazi: rgb(253 243 149);
    --dh-mavi: #03a9f5;
    --dh-lacivert: #1b262f;
    --dh-dark: #181717;
}




/* RUN EFFECT*/
.cloud,
.cloud:before,
.cloud:after {
    position: absolute;
    z-index: 20;
    width: 70px;
    height: 30px;
    background: #fff;
    -webkit-border-radius: 100px / 50px;
    border-radius: 100px / 50px;
}

.cloud {
    top: 40px;
    -webkit-animation: cloud 25s infinite linear;
    animation: cloud 25s infinite linear;
}

.cloud-2 {
    top: 60px;
    -webkit-animation: cloud 35s infinite linear;
    animation: cloud 35s infinite linear;
    left: 50%;
}

.cloud-2,
.cloud-2:before,
.cloud-2:after {

    width: 120px;
    height: 40px;

}

@-webkit-keyframes cloud {
    0% {
        left: 100%;
    }

    100% {
        left: -100px;
    }
}

@keyframes cloud {

    0% {
        left: 100%;
    }

    100% {
        left: -100px;
    }
}

.cloud:before {
    content: '';
    left: 50px;
}

.cloud:after {
    content: '';
    left: 15px;
    top: -10px;
}

.cloud-2:before {
    content: '';
    left: 90px;
}

.cloud-2:after {
    content: '';
    left: 50px;
    top: -25px;
}

div.bg-sky-all {
    background: linear-gradient(to bottom, #67d1fb 0%, #e6f3f8 100%);
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
}

div.bg-mountains {
    bottom: 0;
    height: 360px;
    width: 100%;
    background-size: 200% auto;
    /* 300% here */
    overflow: hidden;
    background-position: bottom;
    background-repeat: repeat-x;
    position: absolute;
    z-index: 10;



}

.bg-mountains-1 {

    background: url(../anims/daglar-bg-1.png);
    animation: 6s bg linear infinite;
    -webkit-animation: 5s bg linear infinite !important;
    animation: 5s bg linear infinite !important;

}

.bg-mountains-2 {
    background: url(../anims/daglar-bg-2.png);
    bottom: -20px !important;
    z-index: 15 !important;
    -webkit-animation: 7s bg linear infinite !important;
    animation: 7s bg linear infinite !important;


}

.bg-mountains-3 {
    background: url(../anims/daglar-bg-3.png);
    bottom: -36px !important;
    z-index: 20 !important;
    -webkit-animation: 8s bg linear infinite !important;
    animation: 8s bg linear infinite !important;


}

@-webkit-keyframes bg {
    0% {
        background-position: 0 50%;
    }

    100% {
        background-position: 100% 50%;
        /* 150 = 300/2*/
    }
}

@keyframes bg {
    0% {
        background-position: 0 50%;
    }

    100% {
        background-position: 100% 50%;
        /* 150 = 300/2*/
    }
}

.kosucu-maraton {
    max-height: 300px;
    position: absolute;
    bottom: 10px;
    z-index: 100
}

/* run effect #END */



.refFlag {
    width: 76px;
    height: 50px;
    background-image: url(../img/ref-flags.png);
    display: inline-block;
    opacity: .4;
    transition: opacity 0.4s ease-in-out;
    background-size: 300% 200%;

   
}

.refFlag.turkiye {
    background-position: 0px 0px;

}

.refFlag.germany {
  
    background-position: 50% 0%;
}

.refFlag.italy {
    background-position: 100% 0%;
}

.refFlag.netherlands {
    background-position: 200% 100%;

}

.refFlag.usa {
    background-position: 0% 100%;

}

.refFlag:hover {
    opacity: 1;
}

.circle-shadow {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #FFF;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 10px auto !important;
    /* box-shadow: 0px 0px 9px rgb(255 255 255); */
}

.circle-shadow svg {
    color: #FFF;
}

.sektorKutu {
    border-right: 4px dotted rgb(221 221 221 / 15%);
    background-color: transparent;
    transition: background-color 0.2s ease-in;
}

.sektorKutu:first-child {
    border-left: 4px dotted rgb(221 221 221 / 15%);
}

.sektorKutu h6::after {
    display: block;
    width: 80%;
    height: 5px;
    content: ' ';
    margin: 20px auto;
}

.sektorKutu:nth-child(1) h6::after,
.sektorKutu:nth-child(1) .circle-shadow {
    background-color: #347373;
}

.sektorKutu:nth-child(2) h6::after,
.sektorKutu:nth-child(2) .circle-shadow {
    background-color: #e5590e;
}

.sektorKutu:nth-child(3) h6::after,
.sektorKutu:nth-child(3) .circle-shadow {
    background-color: var(--dh-mavi);
}

.sektorKutu:nth-child(4) h6::after,
.sektorKutu:nth-child(4) .circle-shadow {
    background-color: #daa56e;
}

.sektorKutu ul li {
    font-size: 14px;
}

.sektorKutu:hover {
    background-color: #d7d9de;
    color: #000;
}

.cozum-ortagi{
    width: 200px;
    max-width: 200px !important;
    height: 100px;
    text-align: center;
    background-image: url(../img/cozum-ortaklari.png);
    background-size: 500% 300%;

}

.cozum-ortagi.aws{
    background-position: 0px 0px;
}


.cozum-ortagi.azure{
    background-position: -100% 0%;
}

.cozum-ortagi.godaddy{
    background-position: -200% 0%;
}


.cozum-ortagi.hostinger{
    background-position: -300% 0%;
}


.cozum-ortagi.tubitak{
    background-position: -400% 0%;
}

.cozum-ortagi.ihs{
    background-position: 0% -100%;

}


.cozum-ortagi.paytr{
    background-position: -100% -100%;
}

.cozum-ortagi.hizli{
    background-position: -200% -100%;
}

.cozum-ortagi.netgsm{
    background-position: -300% -100%;
}

.cozum-ortagi.odeal{
    background-position: -400% -100%;
}


.cozum-ortagi.iletibilgi{
    background-position:  0% -200%;
}


.cozum-ortagi.nox{
    background-position: -100% -200%;
}
.slick-track{
    text-align: center !important;
}

.responsive-cozum-ortaklari .cozum-ortagi {
    opacity: 0.8;
    transition: all 1s ease;



}

.responsive-cozum-ortaklari .slick-center .cozum-ortagi{

    color: #e67e22 !important;
    opacity: 1;

}

footer{
    min-height: 300px;
    border-top: 4px solid var(--dh-mavi);

}
#footer-logo{
    max-width: 120px;
}

footer .miniTitleText::after {
    display: block;
    content: ' ';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: var(--dh-mavi);
}

.footer-nav-link {
    display: block;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
    color: #FFF;
}
.footer-nav-link:hover{
    color: #03a9f5;
    background-color: #151b21;
}



.slideBadge{
    display: flex;
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: #135c458f;
    color: #FFF;
    z-index: 20;
    border-radius: 50%;
  transform: translate(-50%, -50%);
  
 
}
.slideBadge span{
    position: absolute;
    bottom: 30px;
    right: -30px;
    text-align: center;
    transform: rotate(-45deg) translate(-50%, -50%);
}
/* 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%;
}

.dh-digit{
    width: 10px;
    height: 30px;
    background: url(../img/digits.png?t) no-repeat;
    display: inline-block;
    margin-left: -2px;
    filter: brightness(0) invert(1);
}

.dh-digit.digit-0{
    background-position: -2px 0px;
}
.dh-digit.digit-15{
    background-position: -17px 0px;
}
.dh-digit.digit-30{
    background-position: -32px 0px;

}
.dh-digit.digit-45{
    background-position: -47px 0px;
}
.dh-digit.digit-60{
    background-position: -62px 0px;
}
.dh-digit.digit-75{
    background-position: -77px 0px;
}
.dh-digit.digit-90{
    background-position: -92px 0px;
}
.dh-digit.digit-105{
    background-position: -107px 0px;
}
.dh-digit.digit-120{
    background-position: -122px 0px;
}
.dh-digit.digit-135{
    background-position: -137px 0px;
}

.dh-digit.digit-150{
    background-position: -152px 0px;
}


.dh-digit.digit-165{
    background-position: -167px 0px;
}


.dh-digit.digit-180{
    background-position: -182px 0px;
}



@media (max-width: 991.98px) {
    .refFlag{
        width: 55px;
        height: 36px;
  
    }
    
    #menu-bar ul{
        display: none;
    }
    .h1{
        font-size: 1.6rem !important;
    }
    .h3{
        font-size: 1.3rem !important;
    }

    .fs-20px-16px {
        font-size: 16px !important;
    }

    .dynamic-title {
        font-size: 1.2rem;
    }

    .onlyOutLine {
        font-size: 1rem;
    }
}