.line-width {
    -webkit-animation: line-width 1s linear;
    animation: line-width 1s linear;
}

@-webkit-keyframes line-width {
    0% {
        width: 0%;
        left: -10px;
    }

    50% {
        width: 100%;
    }

    100% {
        left: auto;
        right: 0;
        width: 0%;
    }
}

@keyframes line-width {
    0% {
        width: 0%;
        left: -10px;
    }

    50% {
        width: 100%;
    }

    100% {
        left: auto;
        right: 0;
        width: 0%;
    }
}

.line-height {
    -webkit-animation: line-height 1s linear;
    animation: line-height 1s linear;
}

/* animation line width end */
@-webkit-keyframes line-height {
    0% {
        top: -10px;
        height: 0%;
    }

    50% {
        height: 100%;
    }

    100% {
        top: auto;
        bottom: 0;
        height: 0%;
    }
}

@keyframes line-height {
    0% {
        top: -10px;
        height: 0%;
    }

    50% {
        height: 100%;
    }

    100% {
        top: auto;
        bottom: 0;
        height: 0%;
    }
}

/* animation line height end */

.animation-wrapper {
    position: relative;
}

.line-top1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #000;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.line-top2 {
    position: absolute;
    top: 20px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #000;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.line-bottom1 {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #000;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.line-bottom2 {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #000;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.line-left1 {
    position: absolute;
    top: 0px;
    left: 0;
    width: 1px;
    height: 0%;
    background: #000;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.line-left2 {
    position: absolute;
    top: 0px;
    left: 20px;
    width: 1px;
    height: 0%;
    background: #000;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.line-right1 {
    position: absolute;
    top: 0px;
    right: 0;
    width: 1px;
    height: 0%;
    background: #000;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.line-right2 {
    position: absolute;
    top: 0px;
    right: 20px;
    width: 1px;
    height: 0%;
    background: #000;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.fixed-logo rect:nth-child(1) {
    stroke-dasharray: 1148;
    stroke-dashoffset: 1148;
    -webkit-animation: logo-animate 4s linear;
    animation: logo-animate 4s linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fixed-logo path:nth-child(2) {
    stroke-dasharray: 2514;
    stroke-dashoffset: 2514;
    -webkit-animation: logo-animate 4s linear;
    animation: logo-animate 4s linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fixed-logo path:nth-child(3) {
    stroke-dasharray: 2476;
    stroke-dashoffset: 2476;
    -webkit-animation: logo-animate 4s linear;
    animation: logo-animate 4s linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes logo-animate {
    to {
        /* stroke-dasharray: 0; */
        stroke-dashoffset: 0;
    }
}

@keyframes logo-animate {
    to {
        /* stroke-dasharray: 0; */
        stroke-dashoffset: 0;
    }
}

.heading {
    position: relative;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.heading:hover,
.heading:hover h1 {
    color: #000;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.heading-border-white {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 5px;
    background-color: #fff;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.heading-border-black {
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 5px;
    background-color: #000;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    right: 0;
}

.heading:hover .heading-border-black {
    width: 100%;
    left: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.heading-black {
    position: relative;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.heading-black:hover {
    color: #fff;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.heading-border-black2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 5px;
    background-color: #000;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.heading-border-white2 {
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 5px;
    background-color: #fff;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    right: 0;
}

.heading-black:hover .heading-border-white2 {
    width: 100%;
    left: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.fixed-logo rect:nth-child(1) {
    stroke-dasharray: 2211;
    stroke-dashoffset: 2211;
    -webkit-animation: logo-animate 4s linear;
    animation: logo-animate 4s linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fixed-logo path:nth-child(2) {
    stroke-dasharray: 4844;
    stroke-dashoffset: 4844;
    -webkit-animation: logo-animate 4s linear;
    animation: logo-animate 4s linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fixed-logo path:nth-child(3) {
    stroke-dasharray: 4770;
    stroke-dashoffset: 4770;
    -webkit-animation: logo-animate 4s linear;
    animation: logo-animate 4s linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.loader {
    position: fixed;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: height 1s linear;
    -o-transition: height 1s linear;
    transition: height 1s linear;
}

.page-transition {
    position: absolute;
    width: 100%;
    height: 0vh;
    bottom: 0;
    /* visibility: hidden; */
    background-color: #242424;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: height 1.5s linear;
    -o-transition: height 1.5s linear;
    transition: height 1.5s linear;
}

.video-on-load {
    position: fixed;
    left: 0;
    right: 0;
    /* top: 0; */
    bottom: 0;
    width: 100%;
    height: 100vh;
}

/* cursor */
.cursor,
.cursorRight,
.cursorRightWhite {
    width: 100px;
    height: auto;
    position: absolute;
    -webkit-transition-duration: 200ms;
    -o-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    pointer-events: none;
    stroke-dasharray: 480px;
    stroke-dashoffset: 480px;
    z-index: 9999;
    display: none;
}

.cursor.active,
.cursorRight.active,
.cursorRightWhite.active {
    display: block;
    stroke-dashoffset: 0px;
    -webkit-transition-duration: 400ms;
    -o-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* cursor end */
/* cursor video start */
.cursorVideoBox2,
.cursorVideoBox3,
.cursorVideoBox4 {
    display: none;
}

.cursorVideoBox2,
.cursorVideoBox3,
.cursorVideoBox4 {
    width: 400px;
    height: 225px;
    position: absolute;
    opacity: 0;
    -webkit-transition-duration: 400ms;
    -o-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    pointer-events: none;
    z-index: -9999;
    display: block;
}

.cursorVideoBox2.active,
.cursorVideoBox3.active,
.cursorVideoBox4.active {
    width: 400px;
    height: 225px;
    opacity: 1;
    position: absolute;
    -webkit-transition-duration: 400ms;
    -o-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    pointer-events: none;
    z-index: 999;
}

/* cursor video end */
.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

/* pageTransitionLoader */
#transition-loader {
    overflow: unset !important;
    /* transform: translateY(-120%); */
    transform: translateY(-75%);
}

#transition-loader .path {
    stroke-dashoffset: 0;
    stroke-dasharray: 100%;
    animation: dash 5s linear alternate 2;
    animation-delay: 0s;
}

#transition-loader .path#i, #transition-loader .path#a {
    stroke-dashoffset: 0;
    stroke-dasharray: 100%;
    animation: dash 4.6s linear alternate 2;
    animation-delay: .2s;
}

.path#o {
    transform: translate(-157px, -4px) scale(6, 4.8);
    /* stroke: rgb(0, 0, 0); */
}

.path#a {
    transform: translate(6px, 16px) scale(4.2, 5.1);
    stroke-width: 1.1px;
    /* stroke: rgb(0, 0, 0); */
    visibility: hidden;
}

.path#d {
    transform: translate(10px, 22.5px) scale(3, 3);
    visibility: hidden;
    stroke-width: 1.6px;
}

.path#i {
    transform: translate(-239px, 12px) scale(6, 4.8);
    /* stroke: black; */
    visibility: hidden;
}

.rect {
    transform: translate(10px, 0);
    width: 8vw;
    height: 0;
    position: fixed;
    top: 0;
    left: 5vw;
    background-color: #000;
    animation: height 2.5s linear alternate 2;
    animation-delay: 4s;
}

@keyframes dash {
    0% ,
    50% {
        stroke-dashoffset: 100%;
    visibility: visible;
    }
    to {
        stroke-dashoffset: 50%;
    }
}
@keyframes height {
    0% {
        height: 0vh;
    }

    50%,100% {
        height: 70vh;
    }
}
/*  */

.wrapper-animation1{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.a{
    margin-left: 100px;
    width: 520px;
    padding-right: 100px;
    height: 622px;
    position: relative;
    overflow: hidden;
    transform: translateY(-80px);
}
.i{
    width: 100px;
    height: 543px;
    background-color: #000;
    z-index: 9;
    visibility: hidden;
}
.a__line1{
    width: 100px;
    height: 100%;
    background: #000;
    transform: rotate(18deg) translate(100px,0px);
    position: absolute;
    left: 0;
    visibility: hidden;
}
.a__line2{
    position: absolute;
    width: 100px;
    height: 100%;
    background: #000;
    transform: rotate(-17deg) translate(-96px,0px);
    position: absolute;
    top: 0;
    right: 0;
    visibility: hidden;
}
.a__line3{
    position: absolute;
    width: 46%;
    height: 100px;
    background: #000;
    position: absolute;
    bottom: 0px;
    right: 90px;
    border-top-right-radius: 38px;
    z-index: -1;
    visibility: hidden;
}
@media(max-width:1199px){
    .wrapper-animation1{
        width: 90%;
    }
    .i{
        width: 50px;
        height: 420px;
    }
    .a{
        margin-left: 0px;
        width: 340px;
        padding-right: 0px;
        height: 500px;
        transform: translateY(-80px);
    }
    .a__line1{
        width: 50px;
        transform: rotate(18deg) translate(80px,0px);
    }
    .a__line2{
        width: 50px;
        transform: rotate(-17deg) translate(-80px,0px);
    }
    .a__line3{
        width: 46%;
        height: 50px;
        right: 30px;
    }
}
/*  */