html,body{
    margin: 0;
    padding: 0;
    color: black;
    font-size: 15px;
    font-weight: normal;
    font-family: 'DT-Roboto-Regular';
    overflow-y: hidden;
    overflow-x: hidden;
}

.p-index{
    overflow-y: hidden;
}

::-moz-selection { /* Code for Firefox */
    color: white !important;
    background: #fdab3b;
}

::selection {
    color: white !important;
    background: #fdab3b;
}


/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #fdab3b;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.loader-wrapper{
    /* Todo: delete important for enable loader. */
    display: block;
    opacity: 0;
    width: 100%;
    z-index: 60;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    transition: .7s ease-in-out;
}

.loader-bg{
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    background: black;
    top:0;
    left: -100%;
    transition: 1.4s ease-in-out;
}

.loader{
    position: relative;
    z-index: 1;
    display: block;
    width: 1100px;
    height: 100vh;
    margin: 0 auto;
}

@keyframes play180 {
    0% {
        background-position: 0px 0px;
        transform: scale(.10);
        opacity: 1;
    }
    50% {
        background-position: -126000px 0px;
        transform: scale(.10);
        opacity: .8;
    }
    100%{
        transform: scale(.15);
        opacity: 0;
    }
}

.preloader {
    animation-duration: 2000ms;
    animation-timing-function: steps(180);
    animation-fill-mode: forwards;
    width: 700px;
    height: 700px;
    background-repeat: no-repeat;
    transform: scale(.10);
    display: block;
    position: absolute;
    top: 50vh;
    left: 50%;
    margin-top: -370px;
    margin-left: -350px;
}

.preloader.play {
    animation-name: play180;
}


/* Main Container */

.container{
    display: block;
    width: 100%;
    height: 100vh;
    background: white;
    overflow-x: hidden !important;
}

.container header{
    width: 100%;
    height: 10vh;
    z-index: 50;
    top: 0;
    position: absolute;
}

.container footer{
    width: 100%;
    height: 10vh;
    position: absolute;
    z-index: 50;
    bottom: 0;
    opacity: 0;
}

.container header .logo {
    width: 42px;
    position: absolute;
    top: 35px;
    left: 35px;
    transition: 1s ease-in;
}

.content{
    display: none;
    width: 89%;
    height: 80vh;
    box-sizing: border-box;
    margin: 0 auto;
    transition: .5s ease-in;
    /*border:1px dotted #d3d3d3;*/
}

header .langs{
    display: block;
    color: #fdab3b;
    position: absolute;
    top: 50px;
    left: 105px;
}
header .lang{
    color: #fdab3b;
    text-decoration: none;
    font-size: 14px;
    font-family: 'DT-Roboto-Medium';
}

header .menu{
    position: absolute;
    top: 50px;
    right: 35px;
}

header .menu a{
    text-transform: uppercase;
    font-size: 13px;
    color: black;
    font-family: 'DT-Roboto-Medium';
    text-decoration: none;
    margin: 0 11px;
    border-bottom: 1px dashed black;
}

header .start-project{
    color: #fdab3b;
    background: -webkit-linear-gradient(#fdab3b, #e5872e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom-color: #fdab3b !important;
}

.aqua-fade {
    opacity: 0;
    transition: .4s ease-in-out;
}

.aqua-fade img {
    display: none;
}
.aqua-fade  canvas {
    position: absolute;
    top: 10vh;
    right:5%;
    max-height: 70vh;
    max-width: 70%;
    transition: .4s ease-in-out;
}

.social {
    display: block;
    position: absolute;
    bottom: 20px;
    left: 44px;
}

.social a{
    display: block;
    width: 17px;
    height: 17px;
    margin-bottom: 17px;
}

.social .s-wtsp{
    background: url("../i/s-wtsp.png") no-repeat center/contain;
}

.social .s-tlg{
    background: url("../i/s-tlg.png") no-repeat center/contain;
}

.scroll-btn {
    display: block;
    position: absolute;
    bottom: 133px;
    right: -21px;
    transform: rotate(-90deg);
    font-family: 'DT-Roboto-Regular';
    text-decoration: none;
    background: -webkit-linear-gradient(#fdab3b, #e5872e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: .5s ease-in;
}

.scroll-btn:hover{
    animation: 1s scmov ease-in;
}

@keyframes scmov {
    0%{
        transform:  translateY(0px) rotate(270deg);
    }
    50%{
        transform:  translateY(-10px) rotate(270deg);

    }
    100%{
        transform: translateY(0px) rotate(270deg) ;
    }
}

.scroll-btn img{
    display: block;
    position: absolute;
    top: -4px;
    left: -26px;
}


.scroll-btn-white{
    color: white;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: white;
}

.p-1{
    opacity: 0;
}

.p-1 h1{
    opacity: 0;
    font-size: 36px;
    line-height: 36px;
    /*background: -webkit-linear-gradient(270deg, #fdb147, #ffa121);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    color: black;
    letter-spacing: -1px;
    display: block;
    vertical-align: top;
    width: 43%;
    margin-top: 30vh;
    margin-left: 5%;
    font-weight: normal;
    transition: .5s ease-in;
    font-family: 'DT-Roboto-Medium';
    position: relative;
    z-index: 1;
}


.p-1 p{
    opacity: 0;
    color: black;
    line-height: 26px;
    font-size: 18px;
    font-family: 'DT-Roboto-Light';
    margin-left: 5%;
    letter-spacing: -.0px;
    margin-top: 30px;
    margin-bottom: 20px;
    transition: 1s ease-in;
    position: relative;
    z-index: 1;
}


.g-tags{
    margin-left: 5%;
    font-size: 13px;
    opacity: 0;
    transition: 1.4s ease-in;
    position: relative;
    z-index: 1;
}


.i-tags{
    display: inline-block;
    background: linear-gradient(270deg, #fdb147, #ffae1f);
    background-size: 400% 400%;
    color: white;
    padding: 14px 40px;
    margin: 9px 7px 9px 7px;
    transition: .5s ease-in-out;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0;
    font-family: 'DT-Roboto-Medium';
    font-size: 12px;
    border-radius: 4px;


    -webkit-animation: AnimationName 5s ease infinite;
    -moz-animation: AnimationName 5s ease infinite;
    animation: AnimationName 5s ease infinite;
}


@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}


.i-tags:nth-of-type(1){
    margin: 9px 7px 9px 0px;
}

.itsm{
    background: none;
    border: 1px dashed #fdb147;
    color: #fdb147;
}


.p-2{
    display: none;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    margin: 0 auto;
}



.tilted-1,.tilted-2{
    width: 140px;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -56px;
}


.tilted-3{
    width: 190px;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -87px;
}

.p-2 .rightside img{
    transform: translateZ(20px);
}

.p-2 .leftside, .p-2 .rightside{
    display: inline-block;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

.p-2 .leftside{
    width: 45%;
    height: 100vh;
    z-index: 1;
    background: #ffffff;
    vertical-align: top;
    box-sizing: border-box;
    padding-left: 10%;
    padding-top: 20vh;
}

.p-2 .rightside{
    width: 55%;
    height: 100vh;
    background: yellow;
    vertical-align: top;
}

.p-2 .informer{
    background: black;
    color: white;
    font-size: 12px;
    padding: 7px 19px;
    font-family: 'DT-Roboto-Medium';
}

.p-2 h2{
    font-size: 36px;
    font-family: 'DT-Roboto-Regular';
    font-weight: normal;
    margin-top: 17vh;
    letter-spacing: -.5px;
    margin-bottom: 10px;
}

.p-2 p{
    font-size: 18px;
    color: #918f8f;
    line-height: 28px;
    font-family: 'DT-Roboto-Light';
}

.p-2 .dev-tags{
    margin-top: 2vh;
}

.p-2 .dev-tags a{
    color: #f19934;
    text-decoration: none;
    border-bottom: 1px dashed #f19934;
    margin-right: 13px;
}

.p-2 .details-btn{
    font-family: 'DT-Roboto-Medium';
    font-size: 15px;
    text-transform: uppercase;
    color: black;
    text-decoration: none;
    border-bottom: 1px dashed black;
    margin-top: 17vh;
    display: inline-block;
}

.sli-nav{
    display: block;
    position: absolute;
    top: 40vh;
    right: 45px;
    list-style: none;
}

.sli-nav li{
    display: block;
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: black;
    opacity: .5;
    margin-bottom: 20px;
    cursor: pointer;
    box-sizing: border-box;
    transition: .1s linear;
}

.sli-nav li.active, .sli-nav li.active-white{
    opacity: 1;
    width: 9px;
    height: 9px;
}

.sli-nav .active::before{
    content: '';
    width: 13px;
    border: 1px dashed black;
    height: 13px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: -3px;
    left: -3px;
}

.sli-nav .active-white::before{
    content: '';
    width: 13px;
    border: 1px dashed white;
    height: 13px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: -3px;
    left: -3px;
}


.p-contacts h2{
    display: block;
    font-size: 36px;
    line-height: 42px;
    color: black;
    letter-spacing: -1px;
    vertical-align: top;
    width: 535px;
    margin-top: 15vh;
    margin-bottom: 8vh;
    font-weight: normal;
    transition: .5s ease-in;
    font-family: 'DT-Roboto-Medium';
    position: relative;
    z-index: 1;
    margin-left: -267px;
    left: 50%;
    text-align: center;
    animation: .5s popup-opacity ease-in;
}

.p-contacts h2 span{
    background: -webkit-linear-gradient(270deg, #fdb147, #ffa121);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.p-contacts .details{
    display: block;
    width: 1000px;
    margin: 0 auto;
    animation:.8s popup-opacity ease-in;
}

.p-contacts .dtc{
    display: inline-block;
    vertical-align: top;
}

.p-contacts .dtc:nth-of-type(1){
    width: 35%;
}
.p-contacts .dtc:nth-of-type(2){
    width: 33%;
}
.p-contacts .dtc:nth-of-type(3){
    width: 31%;
}

.p-contacts .dtc span{
    color: #acacac;
    font-size: 16px;
    display: block;
    margin-bottom: 12px;
}

.p-contacts .dtc a{
    text-decoration: none;
    color: black;
    font-size: 22px;
    display: block;
}

.p-contacts .maps{
    position: absolute;
    bottom: 0;
    height: 55vh;
    display: block;
    width: 100%;
}

.p-contacts .maps .yelover{
    position: absolute;
    top: 0;
    height: 55vh;
    display: block;
    width: 100%;
    background: #fd8d22;
    z-index: 1;
    opacity: .7;
    pointer-events:none;
}

.p-folio{
    height: initial;
}

.p-folio .holder{
    display: block;
    width: 80%;
    margin: 20vh auto 100px auto;
    vertical-align: top;
    position: relative;
    text-align: left;
}

.p-folio h2{
    display: block;
    font-size: 36px;
    line-height: 42px;
    background: -webkit-linear-gradient(270deg,  #fdb147,#fd8d22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    vertical-align: top;
    font-weight: normal;
    transition: .5s ease-in;
    font-family: 'DT-Roboto-Medium';
    position: relative;
    animation:.5s popup-opacity ease-in;

}

.p-item:nth-of-type(3){
    margin-right: 0;
}

.p-item{
    cursor: pointer;
    display: inline-block;
    width: 100%;
    background: black;
    border-radius: 5px;
    vertical-align: top;
    color: white;
    position: relative;
    transition: all 0.4s ease-in-out;
    animation: .9s popup-opacity ease-in-out;
    opacity: 1;
    position: relative;
}
.p-item .bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    background-size: 100%;
    background-position: 0 0;
    background-attachment: fixed;
    border-radius: 5px;
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    transition: all 0.3s;
}
.p-item:hover{
    -webkit-box-shadow: 0px 0px 11px -1px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 11px -1px rgba(0,0,0,1);
    box-shadow: 0px 0px 11px -1px rgba(0,0,0,1);
    opacity: 0.9;
}
.p-item:hover .bg{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.p-item:active{
    opacity: 1;
}

.p-item:nth-child(1){
    grid-row: 1/3;
    grid-column: 1/2;

}
.p-item:nth-child(6){
    grid-column: span 2;
}
.p-item:nth-child(7){
    grid-column: span 2;
}
.p-item:nth-child(15){
    grid-column: span 2;
}
.p-item:nth-child(17){
    grid-column: span 2;
}
.p-item:nth-child(9){
    grid-row: span 2;
}
.p-item:nth-child(13){
    grid-row: span 2;
}
.p-bottom{
    width: 80%;
    margin: 0 auto;
    padding: 70px 0;
}
.p-bottom h3{
    font-size: 27px;
}
.p-bottom-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}
.p-bottom-box > div{
    width: 47%;
}
.p-bottom-item{
    display: inline-block;
    width: 100%;
    height: 35vh;
    background: black;
    border-radius: 5px;
    margin-bottom: 20px;
    vertical-align: top;
    color: white;
    position: relative;
    transition: .2s ease-in;
    animation:.9s popup-opacity ease-in;
}
.p-bottom-title{
    font-family: 'DT-Roboto-Medium';
    font-size: 24px;
    margin-bottom: 10px;
}
.dashed{
    display: inline-block;
    color: #fdab3b;
    background: -webkit-linear-gradient(#fdab3b, #e5872e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom-color: #fdab3b !important;
    border-bottom: 1px dashed black;
}



.pi-w{
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    padding: 0 25px;

}

.p-item span{
    text-transform: uppercase;
    font-family: 'DT-Roboto-Bold';
    font-size: 15px;
    margin-bottom: 0;
}

.p-item p{
    font-size:13px;
    margin-top: 5px;
}

.p-item a{
    position: absolute;
    top: 0px;
    right: 25px;
    color: #fdab3b;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'DT-Roboto-Medium';
    text-decoration: none;
    border-bottom: 1px dashed #fdab3b;
    margin-right: 15px;
    z-index: 4;
}


.p-tags{
    display: flex;
    align-items: center;
    align-content: center;
    width: 100%;
    margin-bottom: 4vh;
    animation:.6s popup-opacity ease-in;
}
.p-line{
    width: 20%;
    height: 1px;
    margin: 0 30px;
    background-color: #fdab3b;
}
.p-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(6,30vh);
    grid-gap: 7px;
}

.p-tags a{
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px dashed black;
    margin-right: 15px;
    transition: .2s ease-in;
    font-size: 13px;
}
.p-tags a:last-child{
    margin-right: 0px;
}

.p-tags a:hover{
    background: #fdab3b;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px dashed #fdab3b;
}

.p-tags a.active{
    font-family: 'DT-Roboto-Medium';
    background: #fdab3b;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px dashed #fdab3b;
}

.start-wrapper{
    width: 100%;
    position: relative;
    background: #0d0d0d;
}

.start{
    width: 80%;
    height: 300px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    position: relative;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.s-btn h2{
    display: inline-block;
    font-size: 24px;
    line-height: normal;
    background: linear-gradient(to right, #fdb147, #d2761e);
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    vertical-align: top;
    font-weight: normal;
    transition: all 0.5s;
    font-family: 'DT-Roboto-Medium';
    position: relative;
    z-index: 1;
    vertical-align: top;
    margin-right: 20px;
    animation: none;
}

.s-btn{
    position: relative;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 27px;
    border: 1px #d2761e dashed;
    margin-top: 30px;
    box-sizing: border-box;
    background: transparent;
}
.s-btn .bg{
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(108deg, #fdb147, #fd8d22);
    top: 0;
    left: 0;
    border-radius: 27px;
    transition: all 0.7s ease-out;
    clip-path: circle(0% at 50% 50%);
}
.s-btn:hover .bg{
    clip-path: circle(100% at 50% 50%);
}
.s-btn svg{
    position: relative;
    z-index: 1;
}

.s-btn:hover svg linearGradient{
    display: none;
}
.s-btn:hover{
    border-color: transparent;
}
.s-btn:hover h2{
    -webkit-text-fill-color: white;
}

@keyframes pinright {
    0% {right: 0px;}
    50% {right: 10px;}
    100% {right: 0px;}
}

:root {
    --dur: 1s;
}

.a{
    font-size: 30px;
    display: block;
    margin-top: 50px;
    margin-left: 124px;
}

.a span{
    display: inline-block;
}
.a-arm {
    animation: a-armMove var(--dur) linear infinite;
    transform-origin: 25% 25%;
}
.a-trajectory {
    animation: a-trajectory var(--dur) linear infinite;
}
.a-table {
    animation: a-tableFlip var(--dur) linear infinite;
    transform-origin: -33% 50%;
}

@keyframes a-armMove {
    from {transform: rotate(90deg)}
    12.5%, to {transform: rotate(0deg)}
}
@keyframes a-trajectory {
    from {opacity: 0}
    37.5%, to {opacity: 1}
}
@keyframes a-tableFlip {
    from {transform: rotate(-180deg)}
    37.5%, to {transform: rotate(0)}
}

.p-404-holder{
    vertical-align: top;
    width: 538px;
    margin: 0 auto;
    margin-top: 40vh;
}

.p-404-holder h2{
    display: block;
    font-size: 36px;
    line-height: 42px;

    letter-spacing: -1px;
    vertical-align: top;
    margin-top: 20vh;
    margin-bottom: 3vh;
    font-weight: normal;
    transition: .5s ease-in;
    font-family: 'DT-Roboto-Medium';
    position: relative;
    z-index: 1;
}





#hand_lines .right-big,
#hand_lines .left-big,
#hand_lines .left-small,
#hand_lines .right-small {
    opacity: 0;
}
#hand_lines .left-big {
    transform: translate(16px, 29px);
}
#hand_lines .right-small {
    transform: translate(-10px, 7px);
}
#hand_lines .left-small {
    transform: translate(22px, 12px);
}
#hand_lines .right-big {
    transform: translate(-41px, 7px);
}
.About-title.show #hand {
    transition-delay: .5s;
    transform: rotate(0deg);
    transform-origin: 10% 90%;
    animation: hand-frames 867ms 0.5s linear forwards;
}
@keyframes hand-frames {
    0% {
        transform: rotate(0deg);
        transform-origin: 10% 90%;
    }
    25% {
        transform: rotate(11deg);
        transform-origin: 10% 90%;
    }
    50% {
        transform: rotate(-10deg);
        transform-origin: 10% 90%;
    }
    75% {
        transform: rotate(11deg);
        transform-origin: 10% 90%;
    }
    100% {
        transform: rotate(0deg);
        transform-origin: 10% 90%;
    }
}
.About-title-section {
    background-image: linear-gradient(68deg, rgba(231, 244, 250, 0.64), rgba(205, 236, 255, 0.64));
}
.About-title {
    opacity: 0;
    transform: translateY(12px);
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: -25px;
}
.About-title.show {
    transition-delay: 180ms;
    transition-duration: 1330ms;
    opacity: 1;
    transform: translateY(0);
    transition-property: opacity, transform;
}
.About-title .svg--hand {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-item-align: center;
    align-self: center;
    position: absolute;
    overflow: visible;
    opacity: 0;
}
.About-title .svg--hand.show {
    opacity: 1;
    transition: opacity 300ms linear;
}
.About-title .svg--hand.show .right-big,
.About-title .svg--hand.show .left-big,
.About-title .svg--hand.show .left-small,
.About-title .svg--hand.show .right-small {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
    transition: opacity 1s linear, transform;
}
.About-title .svg--hand.show .left-big {
    transition-delay: 780ms;
    transition-duration: 600ms;
}
.About-title .svg--hand.show .right-big {
    transition-delay: 630ms;
    transition-duration: 600ms;
}
.About-title .svg--hand.show .left-small {
    transition-delay: 1200ms;
    transition-duration: 600ms;
}
.About-title .svg--hand.show .right-small {
    transition-delay: 1030ms;
    transition-duration: 600ms;
}
.About-title .svg--hand svg {
    width: 55px;
    height: 100%;
    overflow: visible;
    fill: #1f1f1f;
    z-index: 5;
}
.About-subtitle span {
    display: block;
    opacity: 0;
    transform: translateY(12px);
}
.About-subtitle.show span#firstline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 500ms;
    transition-duration: 1330ms;
    transition-property: opacity, transform;
}
.About-subtitle.show span#secondline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 570ms;
    transition-duration: 1330ms;
    transition-property: opacity, transform;
}

.p-about{
    overflow-y: hidden;
}

.ap-1 h2,.ap-2 h2,.ap-3 h2,.ap-4 h2{
    display: block;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -1px;
    vertical-align: top;
    margin-top: 220px;
    margin-bottom: 3vh;
    font-weight: normal;
    transition: .5s ease-in;
    font-family: 'DT-Roboto-Medium';
    position: relative;
    text-align: center;
    z-index: 1;
}

.ap-1 h2 span,.ap-2 h2 span,.ap-3 h2 span,.ap-4 h2 span{
    position: relative;
    display: inline-block;
    opacity: 0 !important;
    transform: translateY(20px);
    transition: 1s ease-in-out;
}

.ap-1 h2 span.show,.ap-2 h2 span.show,.ap-3 h2 span.show,.ap-4 h2 span.show{
    opacity: 1 !important;
    transform: translateY(0px) !important;
    background: -webkit-linear-gradient(270deg,  #fdb147,#fd8d22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ap-1 p,.ap-3 p{
    display: block;
    width: 1100px;
    margin: 0 auto;
    text-align: center;
    line-height: 26px;
    font-size: 17px;
    font-family: 'DT-Roboto-Light';
    letter-spacing: -.0px;
    margin-top: 30px;
    animation: 1s popup-opacity ease-in;
}

.ap-1 p span{
    background: -webkit-linear-gradient(270deg,  #fdb147,#fd8d22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid #fdb147;
}

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

.blackcircle{
    display: block;
    width: 90px;
    height: 90px;
    background: black;
    border-radius: 50%;
    position: absolute;
    top: 100px;
    left: 50%;
    margin-left: -45px;
    transform: scale(0);
    transition: 1s ease-in-out;
    opacity: 0;
}

.logo-center{
    width: 50px;
    top: 126px !important;
    left: 50% !important;
    margin-left: -21px;
    transform: rotate(360deg);
}

.logo-left{
    top: 40vh !important;
    left: 6% !important;
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 17px rgba(204,169,44, 0);
        box-shadow: 0 0 0 17px rgba(204,169,44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
}

.ap-2{
    color: white;
}

.ap-2,.ap-3,.ap-4{
    position: relative;
}

.ap-2 h2{
    text-align: left;
    margin-left: 70px;
    margin-top: 40vh;
}

.ap-2 p{
    color: white;
    line-height: 26px;
    font-size: 17px;
    font-family: 'DT-Roboto-Light';
    letter-spacing: -.0px;
    transition: 1s ease-in;
}

.ap-2 img{
    position: absolute;
    top: -37px;
    right: 55px;
    width: 50%;
}

.ai-holder{
    width: 1100px;
    margin: 0 auto;
    animation: 1s popup-opacity ease-in;
    margin-top: 13vh;
}


.a-item{
    display: inline-block;
    width: 200px;
    margin-right: 79px;
}

.a-item .line{
    display: block;
    width: 50%;
    height: 2px;
    background: linear-gradient(270deg,  #fdb147,#fd8d22);

}


.a-item:nth-of-type(1){
    margin-left: 50px;
}

.a-item:nth-of-type(4){
    margin-right: 0;
}

.a-item span:nth-of-type(1){
    display: inline-block;
    font-size: 50px;
    font-family: 'DT-ProximaNova-Semibold';
    letter-spacing: -4px;
    text-align: left;
    padding-top: 40px;
}

.a-item b{
    font-size: 27px;
    font-family: 'DT-ProximaNova-Semibold';
    display: inline-block;
    vertical-align: bottom;
    margin-bottom: 12px;
    margin-left: 2px;
}

.a-item span:nth-of-type(2){
    font-size: 19px;
    display: block;
    font-family: 'DT-Roboto-Light';
    text-align: left;
    opacity: .6;
}

.ap-3 p{
    margin-top: 20px;
    margin-bottom: 40px;
}

.s-item{
    width: 60%;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    height: 83px;
    margin: 0 auto;
    margin-top: -1px;
    animation: .5s popup-opacity ease-in;
    position: relative;
    cursor: pointer;
    transition: .4s ease-in-out;
}

.s-item-content {
    display: none;
    opacity: 0;
    width: 60%;
    height: 400px;
    margin: 0 auto;
    transition: .4s ease-in-out;
    padding-top: 10px;
    position: relative;
}

.s-item-content img{
    position: absolute;
    top: initial;
    left: initial;
    transform: rotate(180deg);
    cursor: pointer;
    width: 40px;
    margin-left: -82px;
    margin-right: 30px;
}

.s-item-content a{
    display: block;
    width: 150px;
    text-align: center;
    /* margin: 0 auto; */
    background: linear-gradient(270deg, #fdb147, #ffae1f);
    background-size: 400% 400%;
    color: white;
    padding: 14px 40px;
    margin: 37px auto;
    transition: .5s ease-in-out;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0;
    font-family: 'DT-Roboto-Medium';
    font-size: 12px;
    border-radius: 4px;
    -webkit-animation: AnimationName 5s ease infinite;
    -moz-animation: AnimationName 5s ease infinite;
    animation: AnimationName 5s ease infinite;
}

.s-item-content span:nth-of-type(1){
    position: relative;
    padding-top: 31px;
    width: 50%;
    margin: 0 auto;
    display: block;
}

.s-item-content span:nth-of-type(1) b{
    font-weight: normal;
    display: block;
    font-family: 'DT-ProximaNova-Regular';
    margin-bottom: 20px;
    position: relative;
    background: -webkit-linear-gradient(135deg, #fdb147,#fd8d22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 23px;
    font-family: 'DT-ProximaNova-Regular';
}

.s-item-content span:nth-of-type(2){
    display: block;
    text-align: center;
    line-height: 26px;
    font-size: 15px;
    font-family: 'DT-Roboto-Regular';
    letter-spacing: -.0px;
    transition: 1s ease-in;
}



.s-item span{
    text-align: center;
    font-size: 23px;
    display: block;
    font-family: 'DT-ProximaNova-Regular';
    padding-top: 31px;
}

.s-item img{
    transform: rotate(270deg);
    position: absolute;
    top: 40%;
    right: 36px;
    cursor: pointer;
}

.ap-4{
    width: 1000px;
    margin:0 auto;
}

.ap-4 h2{
    text-align: left;
    margin-top: 35vh;
}

.ap-4 p{
    display: block;
    text-align: left;
    color: white;
    font-size: 0px;
    width: 60%;
    font-family: 'DT-ProximaNova-Regular';
    transition: .4s ease-in-out;
    position: absolute;
}

.ap-4 p span{
    display: inline-block;
    transition: opacity 0.33s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
    font-size: 29px;
    font-weight: normal;
    font-family: 'DT-ProximaNova-Light';
}

.ap-4 .creds{
    background: -webkit-linear-gradient(120deg,  #fdb147,#fd8d22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;
    letter-spacing: -.6px;
    line-height: 20px;
    transition: .4s ease-in-out;
    margin-top: 170px;
}

.conts{
    position: absolute;
    top: 102px;
    right: 0;
    vertical-align: top;
    cursor: pointer;
}

.conts .prev{
    transform: rotate(180deg);
    vertical-align: top;
    margin-top: 1px;
    margin-right: 40px;
}

.conts .prev,.conts .next{
    width: 50px;
}

.rm-project, .rm-success{
    background: none;
    color: white;
    font-family: 'DT-Roboto-Light';
    width: 800px;
}

.rm-project .steps, .rm-success .steps{
    background: -webkit-linear-gradient(0deg,  #fdb147,#fd8d22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'DT-Roboto-Regular';
}


.rm-project .steps b, .rm-success .steps b{
    font-weight: normal !important;
}


.rm-project h1, .rm-success h1{
    font-family: 'DT-Roboto-Black';
    font-size: 34px;
    letter-spacing: -1px;
    line-height: 29px;
}


.np-item{
    display: inline-block;
    width: 180px;
    height: 170px;
    border: 1px solid white;
    background: none;
    border-radius: 5px;
    position: relative;
    margin: 8px;
    transition: .4s ease-in-out;
    cursor: pointer;

}

.np-item .question-mark{
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid white;
    position: absolute;
    top: 7px;
    right: 8px;
    background: url("../i/qa.png") no-repeat center/contain;
}

.tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    font-size: 12px;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 5px;
    left: 7px;
}

.question-mark:hover .tooltiptext {
    visibility: visible;
}


.np-item:hover{
    border: 1px solid #ffa210;
    color: #ffa210;
}

.np-item .icon{
    width: 26%;
    height: 26%;
    position: absolute;
    top: 43px;
    left: 37%;
}

.np-item span{
    font-family: 'DT-Roboto-Thin';
    font-size: 13px;
    width: 70%;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 119px;
    left: 15%;
    line-height: 16px;
}

.rm-steps{
    transition: .4s ease-in-out;
}

.rm-form .form-input{
    display: inline-block;
    width: 30%;
    margin-right: 4%;
    text-align: left;
    position: relative;
}

.rm-form .form-input:nth-of-type(3){
    margin-right: 0;
}

.rm-form .form-input label{
    display: block;
    text-align: left;
    font-size: 12px;
    font-family: 'DT-Roboto-Medium';
}

.rm-form .form-input input{
    display: block;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid white;
    outline: none;
    padding: 12px 10px 10px 0;
    color: white;
    font-size: 12px;
    font-family: 'DT-Roboto-Regular';
}

.fi-message{
    display: block;
    width: 100%!important;
    margin-top: 50px;
}

.rm-form{
    margin-top: 60px;
}

.rm-form input[type=submit]{
    display: inline-block;
    width: 228px;
    margin-top: 40px;
    height: 55px;
    font-size: 18px;
    font-family: 'DT-Roboto-Medium';
    color: white;
    border: none;
    border-radius: 43px;
    transition: .4s ease-in-out;
    outline: none;
    cursor: pointer;
    background: #fdb147;
    background: -moz-linear-gradient(-45deg, #fdb147 0%, #fd8d22 100%);
    background: -webkit-linear-gradient(-45deg, #fdb147 0%,#fd8d22 100%);
    background: linear-gradient(135deg, #fdb147 0%,#fd8d22 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdb147', endColorstr='#fd8d22',GradientType=1 );

}

.rm-form input[type=submit]:hover{
    -webkit-box-shadow: 0px 0px 44px -8px rgb(255, 255, 255);
    -moz-box-shadow: 0px 0px 44px -8px rgb(255, 255, 255);
    box-shadow: 0px 0px 44px -8px rgb(255, 255, 255);
}

.rm-form span{
    font-size: 10px;
    display: inline-block;
    width: 42%;
    text-align: left;
    margin-left: 20px;
    opacity: .9;
    line-height: 16px;
    vertical-align: top;
    margin-top: 50px;
}

.blue-rounder{
    position: absolute;
    top: 50%;
    margin-top: -164px;
    right: 0;
    margin-right: -118px;
}

.blue-rounder::before
{
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    background: linear-gradient(
            270deg,
            #43e97b,
            #38f9d7,
            #e0c3fc,
            #8ec5fc,
            #4facfe,
            #00f2fe,
            #a8edea,
            #fed6e3
    );
    background-size: 1600% 1600%;
    box-shadow: inset 0px -20px 100px rgba(255, 255, 255, 0.6);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-animation:
            transform 20s ease-in-out infinite both alternate,
            movement 40s ease-in-out infinite both,
            shade 60s linear infinite both;
    animation:
            transform 20s ease-in-out infinite both alternate,
            movement 40s ease-in-out infinite both,
            shade 60s linear infinite both;
}

/* portfolio pages : adil*/

header.portfolio-page .logo{
    left: 100px;
}
.logo-back{
    background: url("../i/navback.png") center center no-repeat;
    width: 40px;
    height: 15px;
    position: absolute;
    top: 50px;
    left: 35px;
}
.case-general-info{
    margin: 20vh auto 0 auto;
    width: 1100px;
    height: auto;
}
.case-info-top:after{
    clear: both;
    content: "";
    display: block;
}
.c-i-left{
    float: left;
    width: 20%;
}
.c-i-left .year{
    font-size: 36px;
}
.c-i-left .c-g-tags{
    padding-left: 0;
}
.c-i-left .c-g-tags li{
    list-style:none;
    float: left;
    margin-right: 15px;
    margin-bottom: 5px;
}
.c-i-left .c-g-tags li:last-child{
    margin-right: 0;
}
.c-i-left .c-g-tags li a{
    color: #f19934;
    text-decoration: none;
    border-bottom: 1px dashed #f19934;
    font-size: 12px;
}
.c-i-left .c-i-smalltitle{
    font-size: 20px;
    color: #000;
    margin-top: 0;
}

.c-i-right{
    float: right;
    width: 70%;
}
.c-i-right h1{
    margin-top: 0;
    font-weight: normal;
}
.c-i-right p{
    margin-bottom: 5px;
}
.c-i-right a{
    background: -webkit-linear-gradient(45deg, #f19934, #fdc175);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    color: #fdc175;
    display: block;
    margin-top: 0;
}

.case-info-about{
    margin-top: 50px;
}
.case-info-about p{
    line-height: 24px;
    margin-top: 0;
}
.case-info-about:after{
    clear: both;
    content: "";
    display: block;
}

.case-big-image .container{
    width: 1100px;
    margin: 0 auto;
    height: auto;
    background: none;
    overflow: auto;
}
.case-big-image{
    margin-top: 50px;
    padding: 100px 0;
}

.c-b-logo{
    float: left;
    width: 30%;
    margin-left: 20%;
    margin-top: 80px;
}
.c-b-logo img{
    max-width: 100%;
}
.c-b-text{
    float: right;
    width: 40%;
}
.c-b-text p{
    color: #fff;
    font-size: 14px;
    line-height: 20px;
}
.c-b-text p:first-child{
    margin-top: 0;
}
.c-b-text p:last-child{
    margin-bottom: 0;
}
.c-b-text p span{
    font-size: 18px;
}
.case-info-logo img{
    max-width: 100%;
}
.with-bg{
    background: url("../i/portfolio/cellcenter/bgR.png") center center no-repeat;
    background-size: cover;
    padding: 100px 0;
}
.with-bg img{
    max-width: 100%;
}
.with-s-bg{
    background: url("../i/portfolio/cellcenter/K.png") center center no-repeat;
    background-size: cover;
    padding: 100px 0 0 0;
    margin-top: 100px;
}

/* portfolion pages: /adil */

@-webkit-keyframes transform
{
    0%,
    100% { border-radius: 33% 67% 70% 30% / 30% 30% 70% 70%; }
    20% { border-radius: 37% 63% 51% 49% / 37% 65% 35% 63%; }
    40% { border-radius: 36% 64% 64% 36% / 64% 48% 52% 36%; }
    60% { border-radius: 37% 63% 51% 49% / 30% 30% 70% 70%; }
    80% { border-radius: 40% 60% 42% 58% / 41% 51% 49% 59%; }
}


@keyframes transform
{
    0%,
    100% { border-radius: 33% 67% 70% 30% / 30% 30% 70% 70%; }
    20% { border-radius: 37% 63% 51% 49% / 37% 65% 35% 63%; }
    40% { border-radius: 36% 64% 64% 36% / 64% 48% 52% 36%; }
    60% { border-radius: 37% 63% 51% 49% / 30% 30% 70% 70%; }
    80% { border-radius: 40% 60% 42% 58% / 41% 51% 49% 59%; }
}


@-webkit-keyframes movement
{
    0%,
    100% { -webkit-transform: none; transform: none; }
    50% { -webkit-transform: translateY(20%) rotateY(10deg); transform: translateY(20%) rotateY(10deg); }
}


@keyframes movement
{
    0%,
    100% { -webkit-transform: none; transform: none; }
    50% { -webkit-transform: translateY(20%) rotateY(10deg); transform: translateY(20%) rotateY(10deg); }
}


@-webkit-keyframes shade
{
    0%,
    100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


@keyframes shade
{
    0%,
    100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


/* #Cursor
================================================== */

.cursor,
.cursor2,
.cursor3{
    position: fixed;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
    left: -100px;
    top: 50%;
    mix-blend-mode: difference;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.cursor{
    background-color: #fff;
    height: 0;
    width: 0;
    z-index: 99999;
}
.cursor2,.cursor3{
    height: 36px;
    width: 36px;
    z-index:99998;
    -webkit-transition:all 0.3s ease-out;
    transition:all 0.3s ease-out
}
.cursor2.hover,
.cursor3.hover{
    -webkit-transform:scale(2) translateX(-25%) translateY(-25%);
    transform:scale(2) translateX(-25%) translateY(-25%);
    border:none
}
.cursor2{
    border: 1.5px solid #005AE3;
    box-shadow: 0 0 22px rgba(0, 90, 227, 0.2);
}
.cursor2.hover{
    background: rgba(255,255,255,1);
    box-shadow: 0 0 12px rgba(0, 90, 227, 0.1);
}
#like-wrapper{
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
}
#heart-svg {
    cursor: pointer;
    overflow: visible;
    width: 60px;
}
#heart-svg #heart {
    transform-origin: center;
    animation: animateHeartOut 0.3s linear forwards;
}
#heart-svg #main-circ {
    transform-origin: 29.5px 29.5px;
}
#like {
    display: none;
}
#like:checked + label svg #heart {
    transform: scale(0.2);
    fill: #fd8d22;
    animation: animateHeart 0.3s linear forwards 0.25s;
}
#like:checked + label svg #main-circ {
    transition: all 2s;
    animation: animateCircle 0.3s linear forwards;
    opacity: 1;
}
#like:checked + label svg #grp1 {
    opacity: 1;
    transition: 0.1s all 0.3s;
}
#like:checked + label svg #grp1 #oval1 {
    transform: scale(0) translate(0, -30px);
    transform-origin: 0 0 0;
    transition: 0.5s transform 0.3s;
}
#like:checked + label svg #grp1 #oval2 {
    transform: scale(0) translate(10px, -50px);
    transform-origin: 0 0 0;
    transition: 1.5s transform 0.3s;
}
#like:checked + label svg #grp2 {
    opacity: 1;
    transition: 0.1s all 0.3s;
}
#like:checked + label svg #grp2 #oval1 {
    transform: scale(0) translate(30px, -15px);
    transform-origin: 0 0 0;
    transition: 0.5s transform 0.3s;
}
#like:checked + label svg #grp2 #oval2 {
    transform: scale(0) translate(60px, -15px);
    transform-origin: 0 0 0;
    transition: 1.5s transform 0.3s;
}
#like:checked + label svg #grp3 {
    opacity: 1;
    transition: 0.1s all 0.3s;
}
#like:checked + label svg #grp3 #oval1 {
    transform: scale(0) translate(30px, 0px);
    transform-origin: 0 0 0;
    transition: 0.5s transform 0.3s;
}
#like:checked + label svg #grp3 #oval2 {
    transform: scale(0) translate(60px, 10px);
    transform-origin: 0 0 0;
    transition: 1.5s transform 0.3s;
}
#like:checked + label svg #grp4 {
    opacity: 1;
    transition: 0.1s all 0.3s;
}
#like:checked + label svg #grp4 #oval1 {
    transform: scale(0) translate(30px, 15px);
    transform-origin: 0 0 0;
    transition: 0.5s transform 0.3s;
}
#like:checked + label svg #grp4 #oval2 {
    transform: scale(0) translate(40px, 50px);
    transform-origin: 0 0 0;
    transition: 1.5s transform 0.3s;
}
#like:checked + label svg #grp5 {
    opacity: 1;
    transition: 0.1s all 0.3s;
}
#like:checked + label svg #grp5 #oval1 {
    transform: scale(0) translate(-10px, 20px);
    transform-origin: 0 0 0;
    transition: 0.5s transform 0.3s;
}
#like:checked + label svg #grp5 #oval2 {
    transform: scale(0) translate(-60px, 30px);
    transform-origin: 0 0 0;
    transition: 1.5s transform 0.3s;
}
#like:checked + label svg #grp6 {
    opacity: 1;
    transition: 0.1s all 0.3s;
}
#like:checked + label svg #grp6 #oval1 {
    transform: scale(0) translate(-30px, 0px);
    transform-origin: 0 0 0;
    transition: 0.5s transform 0.3s;
}
#like:checked + label svg #grp6 #oval2 {
    transform: scale(0) translate(-60px, -5px);
    transform-origin: 0 0 0;
    transition: 1.5s transform 0.3s;
}
#like:checked + label svg #grp7 {
    opacity: 1;
    transition: 0.1s all 0.3s;
}
#like:checked + label svg #grp7 #oval1 {
    transform: scale(0) translate(-30px, -15px);
    transform-origin: 0 0 0;
    transition: 0.5s transform 0.3s;
}
#like:checked + label svg #grp7 #oval2 {
    transform: scale(0) translate(-55px, -30px);
    transform-origin: 0 0 0;
    transition: 1.5s transform 0.3s;
}
#like:checked + label svg #grp2 {
    opacity: 1;
    transition: 0.1s opacity 0.3s;
}
#like:checked + label svg #grp3 {
    opacity: 1;
    transition: 0.1s opacity 0.3s;
}
#like:checked + label svg #grp4 {
    opacity: 1;
    transition: 0.1s opacity 0.3s;
}
#like:checked + label svg #grp5 {
    opacity: 1;
    transition: 0.1s opacity 0.3s;
}
#like:checked + label svg #grp6 {
    opacity: 1;
    transition: 0.1s opacity 0.3s;
}
#like:checked + label svg #grp7 {
    opacity: 1;
    transition: 0.1s opacity 0.3s;
}
.like{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fdb147;
}
.like h4{
    color: white;
    font-size: 18px;
    line-height: normal;
}
.like h5{
    color: #c3c3c3;
    font-size: 12px;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.3s;
}
@keyframes animateCircle {
    40% {
        transform: scale(10);
        opacity: 1;
        fill: #fdb147;
    }
    55% {
        transform: scale(11);
        opacity: 1;
        fill: #fdb147;
    }
    65% {
        transform: scale(12);
        opacity: 1;
        fill: #fdb147;
    }
    75% {
        transform: scale(13);
        opacity: 1;
        fill: transparent;
        stroke: #fdb147;
        stroke-width: 0.5;
    }
    85% {
        transform: scale(17);
        opacity: 1;
        fill: transparent;
        stroke: #fdb147;
        stroke-width: 0.2;
    }
    95% {
        transform: scale(18);
        opacity: 1;
        fill: transparent;
        stroke: #fdb147;
        stroke-width: 0.1;
    }
    100% {
        transform: scale(19);
        opacity: 1;
        fill: transparent;
        stroke: #fdb147;
        stroke-width: 0;
    }
}
@keyframes animateHeart {
    0% {
        transform: scale(0.2);
    }
    40% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes animateHeartOut {
    0% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes openLink{
    from{
        width: 1fr;
    }
    to{
        width: 100vw;
        top: 0;
        left: 0;
    }
}


@media screen and (max-width: 1200px){
    .cursor,.cursor2,.cursor3{
        display: none
    }
}
