@import url('https://fonts.googleapis.com/css2?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');

/*KEYFRAMES*/


@keyframes zoom-in {
   0%{
        transform:translateX(-50%) scale(1)
    }    
  50% {
    transform:translateX(-50%) scale(1.09)
  }
  100% {
    transform:translateX(-50%) scale(1)
  }
}
@keyframes toogle-left {
   0%{
        margin-right: 0;
    }    
  50% {
    margin-right: -50px;
  }
  100% {
    margin-right: 0;
  }
}
@keyframes slide-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes slide-left {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes toogle-bottom {
    0%{
        bottom: 0;
    }    
    50% {
        bottom: -30px;
    }
    100% {
        bottom: 0;
    }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/*GENERAL*/

body{
    background: #000;
    font-family: 'Poppins',sans-serif;
    overflow-x: hidden
}
/*

body.creativeCursor{
    cursor: none;
}
*/

/*.creativeCursor .cursor {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 100;
}
.creativeCursor .cursor--large {
  width: 40px;
  height: 40px;
  border: 1px solid #c391f3;
   
}
.creativeCursor .cursor--small {
  width: 10px;
  height: 10px;;
  background: #c391f3;
  transform: translate(-50%, -50%);
}*/



.defaultPadding{
    padding: 60px 0;
}
.megaPadding{
    padding: 150px 0;
}
.ckSection{
}


.splitting.animated .char {
  -webkit-animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.splitting .whitespace {
  width: 5px;
}

.splitting.txt.animated .char {
  -webkit-animation: fadeIn 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(10ms * var(--char-index));
  animation-delay: calc(10ms * var(--char-index));
}

.splitting.txt .whitespace {
  width: 5px;
}




.swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
    background: rgb(0 0 0 / 95%);
}



input.ckForm, textarea.ckForm  {
    border: 1px solid #fff;
    padding: 10px;
    width: 100%;
    background: transparent;
    color: #fff;
    border-radius: 0;
}
input.ckForm:focus,input.ckForm:active{
    border-radius: 0;
}
textarea.ckForm{
    height: 100px;
    max-height: 100px;
    min-height: 100px
}


/*MENU*/

nav{
    position: fixed;
    padding: 30px 0;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}
nav .logo img{
    height: 50px;
}

nav .menu {
    display: flex;
    align-items: center;
}


nav .menu .menuBar{
    width: 110px;
    cursor: pointer;
}
nav .menu .menuBar span{
    height: 2px;
    width: 100%;
    margin-bottom: 5px;
    display: block;
    background: #fff;
    transition: 0.5s;
}




nav .auroMenu {
  background-color: rgba(0, 0, 0, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;justify-content: center;
  align-items: center;
  z-index: 5;
}
nav .auroMenu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
nav .auroMenu ul li {
  transform: translateY(50px);
  opacity: 0;
}
nav .auroMenu ul li a {
  display: block;
  font-size: 2em;
  text-decoration: none;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
nav .auroMenu ul li a:hover {
  color: #7abfb7;
}


nav.active .auroMenu {
  opacity: 1;
  visibility: visible;
}
nav.active .auroMenu ul {
  top: 70px;
}
nav.active .auroMenu ul li {
  transform: translateY(0px);
  opacity: 1;
}
nav.active .auroMenu ul li:nth-child(1) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.1s;
}
nav.active .auroMenu ul li:nth-child(2) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.2s;
}
nav.active .auroMenu ul li:nth-child(3) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.3s;
}
nav.active .auroMenu ul li:nth-child(4) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.4s;
}
nav.active .menu .menuBar{
    width: 80px;
    height: 80px;
    position: fixed;
    z-index: 6;
    padding-top: 24px;
    margin-left: -110px;
    margin-top: -10px;

}
nav.active  .menu .menuBar span{
    width: 80px;
}

nav.active  .menu .menuBar span:nth-child(2) {
  transform: translateX(50px);
  opacity: 0;
}
nav.active  .menu .menuBar span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
nav.active  .menu .menuBar span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

nav.nav-scroll {
    background: rgba(000,000,000,0.9);
}

/*HEADER*/

header{
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}
header .left, header .right{
    position: absolute;
    font-size: 120px;
    font-weight: 900;
    color: #fff;
}

header .right{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    left: 102%;
    top: 40%;
    transform:  scale(-1, -1);
    line-height: 1;
}

header .left{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    left: -30px;
    top: 50%;
     transform:  scale(-1, -1);
    line-height: 1;
}

header .center{
    text-align: center;
}
header .center .imgcenter{
    height: 100vh;
    
}
header .center .img{
    display: inline-block;
    position: relative;
    
}
header .center p,header .center .statue{
    position: absolute;
}
header .center .statue{ 
    height: 90vh;
    bottom:0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-animation: zoom-in 10s linear infinite;
    animation: zoom-in 10s linear infinite;
}
header .center p{
  writing-mode: vertical-rl;
  text-orientation: upright;
    color: #fff;
    font-weight: 500;
    font-size: 30px;
    top: 50%;
    transform: translateY(-50%)
}
header .center p:nth-of-type(2){
    right: 50px
}



/*HAKKINDA*/

.ckAbout{
        font-size: 21px;
    font-weight: 400;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.ckAbout .quote {
    font-size: 110px;
    color: #0d0d0d;
    position: absolute;
    z-index: -1;
    top: -62px;
    line-height: 0;
    left: -20px;
}
.ckAbout .about-img{
    position: relative;
    text-align: right;
    padding: 50px 0;
}
.ckAbout .about-img img{
    height: 500px;
    max-width: 100%;
    -webkit-animation: toogle-left 5s linear infinite;
    animation: toogle-left 5s linear infinite;
}
.ckAbout .about-img:after{
    content: ' ';
    position: absolute;
    display: block;
    top: 0;
    width: 250%;
    height: 100%;
    background: #410e73;
    left: 70%;
    z-index: -1;
}
.ckAbout .btn-about {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

/*HİZMETLER*/
.ckServices{
    overflow: hidden;
}

.ckServices .title{
    color: #79beb5;
    font-size: 30px;
    text-align: center;
    margin-bottom: 70px
}

.ckServices .moving-text{
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 100%;
    font-size: 3em;
    line-height: 1.2em;
    color: #fff;
    margin-bottom: 30px;
}

.ckServices .moving-text .moving-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 6px;
    -webkit-animation: slide-left 30s linear infinite;
    animation: slide-left 30s linear infinite;
}


.ckServices .moving-text .moving-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 6px;
    -webkit-animation: slide-right 30s linear infinite;
    animation: slide-right 30s linear infinite;
}
/*MARKALAR*/
.ckBrands {
    position: relative;
    background: #410e73;
}
.ckBrands:after{
    content: ' ';
    width: 100%;
    height: 100%;
    background: url('../images/left-shadow.png');
    background-size: contain;
    background-position: left center;
    position: absolute;
    background-repeat: no-repeat;
    top: 0;
    bottom: 0;
}
.ckBrands .brandList{
    position: relative;
    padding-left: 200px;
    z-index: 2;
}
.ckBrands .brandList .brands{
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
}

.ckBrands .brandList .brands .item img{
    width: 150px;
    height: 150px;
    object-fit: contain;
    object-position: center;
}
.ckBrands .leftTitle{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(-1, -1);
    line-height: 1;
     font-size: 120px;
    font-weight: 900;
    color: #fff;
    z-index: 2;
    line-height: 0.7
}

/*FOOTER*/
footer{
    position: relative;
}
footer .contactMail{
    color: #fff;
    font-size: 45px;
}
footer .contactMail .title p{
    display: block;
}
footer .contactMail .title p.fBold{
    font-weight: bold
}
footer .contactMail  .mail{
    font-size: 30px;
    color: #7abfb7;
    text-decoration: none
}

footer  .ckAddress {
    width: 350px;
    display: flex;
    align-items: center;
    margin-left: auto;
    max-width: 100%;
    color: #fff;
}
footer  .ckAddress i{
    font-size: 40px;
    margin-right: 30px
}

footer .ckButton{
    border: none;
    background: #410e73;
    color: #fff;
    padding: 10px 20px;
}
footer .ckButton:focus,footer .ckButton:hover{
    background: #28054b;
}
footer .copy{
    text-align: center;
    color: #fff;
    margin-top: 40px;
    margin-bottom: -30px;
    font-size: 14px
}
/*SOSYAL MEDYA*/
.social{
    padding: 20px 0;
    position: fixed;
    right: 0;
     bottom: 50px;
    background: #410e73;
}

.social .item a{
    display: block;
    padding: 20px;
    color: #fff;
    background: #410e73;
}

 .social .item a:hover{
    background: rgb(000,000,000,0.5);
}





@media (max-width: 1399.98px) {  }
@media (max-width: 1199.98px) { 
    .ckBrands .brandList {
        position: relative;
        padding-left: 130px;
        z-index: 2;
    }
    .ckBrands .brandList .brands .item img {
        width: 90px;
        height: 150px;
        object-fit: contain;
        object-position: center;
    }
}
@media (max-width: 991.98px) {
    .no-mobile{
        display: none;
    }
    header .right {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        position: absolute;
        left: 102%;
        top: 60%;
        transform: scale(-1, -1);
        line-height: 1;
    }
    .ckBrands .brandList {
        position: relative;
        padding-left: 130px;
        z-index: 2;
    }
    .ckBrands .brandList .brands .item img {
        width: 90px;
        height: 150px;
        object-fit: contain;
        object-position: center;
    }
    
    footer .contactMail {
        color: #fff;
        font-size: 35px;
        width: 100%;
    }
    
    footer .contactMail .mail {
        font-size: 17px;
        color: #7abfb7;
        text-decoration: none;
    }
    
    footer .ckAddress .text{
        padding-right: 50px;
    }
}
@media (max-width: 767.98px) { 
    .defaultPadding{
        padding:    90px 0;
        font-size: 16px;
    }
    header .left, header .right {
        font-size: 90px;
        
    }
    
    header .left {
        bottom: 10%;
        top: none;
        left: -20px;
    }
    header .right {
        top: 15%;
        writing-mode: vertical-lr;
        text-orientation: mixed;
        position: absolute;
        left: calc(100% - 39px);
        transform: none;
        line-height: 1;
    }
    
    .ckAbout .about-img{
        height: 350px;
        text-align: center;
        position: relative;
    }
    .ckAbout .about-img img {
        height: 300px;
        max-width: 100%;
        -webkit-animation: toogle-bottom 5s linear infinite;
        animation: toogle-bottom 5s linear infinite;
        position: relative;
    }
    
    

    .ckAbout .about-img:after {
        content: ' ';
        position: absolute;
        display: block;
        top: unset;
        bottom: 0;
        width: calc(100% + 30px);
        height: 160px;
        background: #410e73;
        left: -15px;
        z-index: -1;
    }
    
    .ckBrands .leftTitle{
        writing-mode:horizontal-tb;
        font-size: 55px;
        text-align: center;
        transform: unset;
        position: unset;
        margin-bottom: 80px;
    }
    
    .ckBrands .brandList{
        padding-left: 0;
    }
    .ckBrands .brandList .brands{
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    
    
    
    .ckBrands .brandList .item{
        width: 33%;
        margin-bottom: 20px;
        text-align: center;
        
    }
    
     footer .contactMail {
        color: #fff;
        font-size: 35px;
        width: 100%;
        text-align: center;
        margin-bottom: 50px
    }
    footer .contactMail .title p{
        text-align: center;
    }
    footer .contactMail .mail {
        font-size: 17px;
        color: #7abfb7;
        text-decoration: none;
    }
    
    
    footer .contactForm {
        margin-bottom: 50px
    }
    
     
    footer .ckAddress{
        font-size: 16px;
        margin-right: auto;
    }
    footer .ckAddress .text{
        padding-right: 0;
    }

}
@media (max-width: 575.98px) { 
    header .left, header .right {
        font-size: 90px;
    }
    header .left {
        bottom: 10%;
        top: none;
    }
    header .right {
        top: 15%;
        writing-mode: vertical-lr;
        text-orientation: mixed;
        position: absolute;
        left: calc(100% - 39px);
        transform: none;
        line-height: 1;
    }
    
    header .center p {
   
        font-weight: normal;
        font-size: 26px;
        top: 15%;
        transform: none;
        left: -15px;
    }
    
    header .center p:nth-of-type(2){
            right: unset;
            opacity: 1;
            position: absolute;
            writing-mode: horizontal-tb;
            bottom: 7%;
            top: unset;
            left: 84px;
            letter-spacing: 3px;
    }
    
    header .center p:nth-of-type(1){
        right: none;
        opacity: 1;
    }
    
 
    
    .ckServices .moving-text{
        font-size: 2em
    }
    
    .ckBrands .leftTitle{
        writing-mode:horizontal-tb;
        font-size: 35px;
        text-align: center;
        transform: unset;
        position: unset;
        margin-bottom: 50px;
    }
    
    .ckBrands .brands {
        flex-wrap: wrap;
    }
    .ckBrands .brandList{
        padding-left: 0;
    }
    .ckBrands .brandList .item{
        width: 50%;
        margin-bottom: 5px
    }
}









