@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');
/* For FOnt family : font-family: 'Source Sans Pro', sans-serif; */

@font-face {
    font-family: 'primary';
    src: url(../font/freight-disp-book.otf);
    font-weight: 400;
}

*{
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    box-sizing: border-box; 
}

a, a:hover {
    text-decoration: none;
    color: #fff;
}

.wrapper {
    position: relative;
    background-color: #09172A;
    height: auto;
}

img {
    max-width: 100%;
}


.cursor {
    position: fixed;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: red;
    z-index: 9999;
    transition: .2s;
}   


header.header {
    padding: 47px 70px;
    position: relative;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand, .c-nav, .cus-nav-list {
    display: flex;
    align-items: center;
    width: 100%;
}

.brand .left-logo {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 0;
    opacity: 0;
    max-width: 60px;
    width: 100%;
    z-index: 999;
    mix-blend-mode: difference;
}

.right-logo {
    max-width: 300px;
    width: 100%;
}

.key-logo path {
    stroke: 5px #fff;
}

.brand-logo path {
    fill: #fff;
}

.brand .left-logo img {
    object-fit: contain;
}
.left-logo svg {
    width: 100%;
}
.brand .left-logo {
    height: 110px;
}
.cus-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cus-nav-list .cus-nav-item {
    position: relative;
    margin: 0 20px;
    line-height: 0;

}
.cus-nav-list .cus-nav-link {
    position: relative;
    padding: 0 4px;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 2.5px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}
.cus-nav-list .cus-nav-link:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    border-radius: 5px;
    bottom: -8px;
    left: 0;
    background-color: #fff;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s ease-out;
}
.cus-nav-list .cus-nav-link:hover:after {
    transform-origin: left;
    transform: scaleX(1);
}

.nav-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 9999;
    mix-blend-mode: difference;
}

.nav-button .menu-btn {
    position: absolute;
    height: 2px;
    width: 40px;
    background-color: #fff;
    pointer-events: none;
    transition: .5s ease-out;
}

.nav-button .menu-btn:first-child {
    transform: translateY(-8px);
}

.nav-button .menu-btn:last-child {
    transform: translateY(8px);
}


.nav-button.active .menu-btn:first-child {
    transform: rotate(45deg);
}

.nav-button.active .menu-btn:nth-child(2) {
    transform: translateX(50px);
    opacity: 0;

}
.nav-button.active .menu-btn:last-child {
    transform: rotate(-45deg);
}


/* 
~~~~~~~~~~~~~~~~~~~~~~~
----Full Menu START----
~~~~~~~~~~~~~~~~~~~~~~~
*/

.full-menu {
    position: fixed;
    top: 0;
    left: 0 !important;
    width: 100%;
    height: 100vh;
    inset: 0;
    z-index: 999;
    /* transition: 1s ease-out; */
    overflow: hidden;
    transform-style: preserve-3d;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);

}

.container-fluid {
    max-width: 1920px;
}

.full-menu .c-container {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;top: 0;
    z-index: 1;
}

.fm-img {
    position: absolute;
    top: 0;left: 0;
    width: 100%;height: 100%;
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
}

.full-menu:after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;left: 0;
    background-color: rgba(0, 0, 0, 0.9);
}

.fm-img img{
    transform: scale(1.2);
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.full-menu-list {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    list-style: none;
    padding: 100px 10px 10px 100px;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
}

.full-list-item {
    opacity: 0;
}

footer.footer p {
    font-size: 16px;
}
.full-list-link {
    position: relative;
    font-family: 'primary';
    font-size: 80px;
    color: #fff;
        line-height: normal;
    
}

.full-list-link:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    border-radius: 5px;
    bottom: 0px;
    left: 0;
    background-color: #fff;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s ease-out;
}

.full-list-link:hover:after {
    transform-origin: left;
    transform: scaleX(1);
}

.fixed-container{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}


.banner {
    position: relative;
    height: 1100px;
    padding: 200px 0;
    color: #fff;
}


.c-container {
    position: relative;
    max-width: 1800px;
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
}

.c-row {
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.justify-space {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.image-block {
    position: relative;
    width: 49%;
    height: 50vh;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.c-image {
    will-change: transform;
    backface-visibility: hidden;
}

.image-block .b-image img, .image-block .s-image img, .image-block .m-image img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    object-position: 50% 50%;
    backface-visibility: hidden;
    will-change: opacity;
}

.left-image-block .m-image img {
    transform: translateZ(60px);
}

.left-image-block .s-image img {
    transform: translateZ(150px);
}

.b-image, .m-image, .s-image  {
    transform-style: preserve-3d;
    perspective: 5000px;
}

.b-image img, .m-image img, .s-image img {

    object-fit: cover;
}

.b-image img {
    transform: translateZ(20px);
    transform-style: preserve-3d;
    z-index: 1;
}

.s-image img{
    transform: translateZ(60px);
    transform-style: preserve-3d;
    z-index: 2;
}
.m-image img {
    transform: translateZ(150px);
    transform-style: preserve-3d;
    z-index: 3;
}

.left-image-block .b-image {
    position: absolute;
    left: 150px;
    top: 0%;
    max-width: 450px;
    width: 100%;
    height: 600px;
}

.left-image-block .m-image {
    position: absolute;
    left: 100px;
    top: 130px;
    max-width: 280px;
    width: 100%;
    height: 410px;
}

.left-image-block .s-image {
    position: absolute;
    left: 280px;
    top: 320px;
    max-width: 230px;
    width: 100%;
    height: 300px;
}

.right-image-block .b-image {
    position: absolute;
    right: 160px;
    top: -50px;
    max-width: 320px;
    width: 100%;
    height: 505px;
    transform-style: preserve-3d;
}

.right-image-block .m-image {
    position: absolute;
    right: 160px;
    top: 100px;
    max-width: 200px;
    width: 100%;
    height: 300px;
    transform-style: preserve-3d;
}

.right-image-block .s-image {
    position: absolute;
    right: 250px;
    top: 300px;
    max-width: 180px;
    width: 100%;
    height: 250px;
    transform-style: preserve-3d;
}

.badge {
    position: absolute;
    left: 75%;
    top: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 160px;
    width: 100%;
    /* animation: rotate360 8s linear .2s infinite; */
    z-index: 1;
}


.badge img {
    position: absolute;
}

.content-block {
    position: relative;
    padding: 100px 0;
    margin-left: -100px;
    z-index: 1;
}

.illus-circle{
    position: absolute;
    top: 40%;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(255,255,255,.2);
    border-radius: 50%;
}

.xxl {
    font-size: 120px;
    line-height: .7;
    font-weight: 300;
    font-family: 'primary';
    /* border: 2px solid violet; */
    /* overflow: hidden; */
}


.xxl span, .big-body span {
    display: inline-block;
    height: auto;
    top: 60px;
}

.big-body span {
    top: 0;
}


.big-body {
    font-size: 30px;
}

.up-case {
    text-transform: uppercase;
}

.left-empty {
    left: 0;
    /* background-color: #dc143c; */
    box-sizing: border-box;
}

.left-empty , .right-empty {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 11;
}

.right-empty {
    right: 0;
}


.quote-m {
    font-size: 50px;
    line-height: 1.4;
    letter-spacing: 1.2px;
    font-family: 'primary';
    text-align: center;
}

/*
~~~~~~~~~~~~~~~~~~
Adnan Sir CSS START
~~~~~~~~~~~~~~~~~~ */

.full-width {
	padding: 250px 0 0;
}
.full-width marquee {
    color: #fff;
    font-size: 140px;
    line-height: 1.2;
    position: relative;
    z-index: 0;
}
.full-width img {
	max-width: 100%;
}
.single-image img {
    width: 25vw;
    height: 33.333vw;
}
.grid__item-img {
    width: 480px;
    height: 640px;
    background-size: cover;
    position: relative;
    top: -200px;
}
.three-image .main-column {
	padding: 0;
  position: relative;
  border-radius: 0px;
  overflow: hidden; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 1s ease-in-out;
  height: 1000px; 
}
.three-image .main-column:nth-child(1):after {
	top: 50%;
	width: 1px;
	content: '';
	opacity: 0.2;
	height: 18vw;
	display: block;
	background: white;
	position: absolute;
	transform: translateY(-50%);
	left: auto;
	right: 0;
}
.three-image .main-column:nth-child(2):after {
	top: 50%;
	width: 1px;
	content: '';
	opacity: 0.2;
	height: 18vw;
	display: block;
	background: white;
	position: absolute;
	transform: translateY(-50%);
	left: auto;
	right: 0;
}
.main-column  .main-column-image img {
  transform: matrix(1.3, 0, 0, 1.3, 0, 0);
  transition: 0.9s ease-in-out;
  height: 100%;
  object-position: 50% 50%;
  object-fit: cover;
  width: 100%; 
  transform-origin: top;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  opacity: 0.5;
}
.main-column:hover img {
    transform: matrix(1, 0, 0, 1, 0, 0);
    transition: 0.9s ease-in-out; 
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.main-column-content {
    padding: 0 150px;
    position: absolute;
    transition: 0.5s ease-in-out;
}
.c-image-mask {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: black;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: 0.9s ease-in-out; 
}
.main-column:hover .c-image-mask {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.three-image .main-column:hover .main-column-content p {
  transform: scaleY(1);
}
.three-image .main-column .main-column-content p {
  transform: scaleY(0); 
}
.three-image .main-column span.number {
    opacity: 0.8;
    display: block;
    margin-bottom: 40px;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 1px;
    position: relative;
    z-index: 9;
    bottom: 0;
}
.main-column .main-column-image {
  height: 100%;
  position: relative;
}
.three-image .main-column h2.f-heading-m {
    opacity: 0.8;
    margin-bottom: 20px;
    font-size: 44px;
    line-height: 1.3;
    color: #fff;
    position: relative;
    z-index: 9;
}
.three-image .main-column p {
    font-size: 18px;
    line-height: 2.2;
    color: #fff;
    transition: 0.5s ease-in-out;
}
.three-image .main-column:hover p {
	position: relative;
	z-index: 9;
	top: 0;
}
.three-image .main-column:hover .main-column-content {
    transform: translateY(-50px);
}
.single-text {
    padding-top: 50px;
} 
.single-text h3 {
    color: #fff;
    font-size: 19px;
    line-height: 19px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin: 0;
    padding-bottom: 24px;
}
.single-text p {
    color: #fff;
    opacity: 0.6;
    font-size: 22px;
    line-height: 1.8;
    letter-spacing: 1px;
}
.f-button {
    color: white;
    padding: 0 30px;
    cursor: pointer;
    font-size: 30px;
    font-family: 'primary';
    line-height: 2.2;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
    background-size: 50px;
    background-position: left 100px;
    margin-left: 25px;
}
.f-button:before {
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    content: '';
    width: 40px;
    height: 14px;
    display: block;
    position: absolute;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../img/icon-arrow-white.svg);
}
.f-button span {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}
.f-button span:nth-child(1):after,
.f-button span:nth-child(1):before,
.f-button span:nth-child(2):after,
.f-button span:nth-child(2):before {
  left: 0;
  content: "";
  opacity: 1;
  position: absolute;
  background-color: #fff;
  transition: all 250ms ease-out;
}
.f-button span:nth-child(1):before,
.f-button span:nth-child(2):before {
  left: 0;
  width: 0;
  height: 1px;
}
.f-button span:nth-child(1):after,
.f-button span:nth-child(2):after {
  height: 0;
  width: 1px;
}
.f-button span:nth-child(1):after,
.f-button span:nth-child(1):before {
  top: 0;
  transition-delay: 750ms;
}
.f-button span:nth-child(1):before {
  transition-delay: 750ms;
}
.f-button span:nth-child(2):after,
.f-button span:nth-child(2):before {
  bottom: 0;
}
.f-button span:nth-child(2):before {
  right: 0;
  left: unset;
  transition-delay: 250ms;
}
.f-button span:before,
.f-button span:after {
  background: white;
}
.f-button:after {
  background: white;
}
.f-button:hover:after {
  height: 100%;
  transition-delay: 250ms;
}
.f-button:hover span:nth-child(1):after,
.f-button:hover span:nth-child(1):before,
.f-button:hover span:nth-child(2):after,
.f-button:hover span:nth-child(2):before {
  transition: all 250ms ease-out;
}
.f-button:hover span:nth-child(1):before,
.f-button:hover span:nth-child(2):before {
  width: 100%;
}
.f-button:hover span:nth-child(1):after,
.f-button:hover span:nth-child(2):after {
  height: 15px;
}
.f-button:hover span:nth-child(1):before {
  transition-delay: 0;
}
.f-button:hover span:nth-child(1):after {
  transition-delay: 0;
}
.f-button:hover span:nth-child(2):before {
  transition-delay: 500ms;
}
.f-button:hover span:nth-child(2):after {
  transition-delay: 750ms;
}
.f-button:after {
  top: 0;
  right: 0;
  height: 0;
  width: 1px;
  content: "";
  opacity: 1;
  position: absolute;
  background-color: #fff;
  transition: all 250ms ease-out;
  transition-delay: 500ms;
}
.f-button:hover {
    color: #fff;
    text-decoration: none;
}

/* Hover Text Image Section - Promotion Section */
.promotion {
    position: relative;
    background-color: rgb(255, 255, 255);
    min-height: 1000px;
    padding: 200px 0;
}
.project-title h1 {
    font-weight: 100;
}
.project-categ {
    font-weight: lighter;
}
.img-cursor, .s-img-cursor {
    position: absolute;
    width: 25vw;
    height: 35vw;
    left: 0;right: 0;
    top: 0;bottom: 0;
    margin: auto;
    /* top: 50%;left: 50%; */
    /* margin: -200px 0 0 -100px; */
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    background: url(../img/pr-l-img1.jpg) no-repeat 50% 50%;
    background-size: cover;
    transition: background .2s;
}
.s-img-cursor {
    background: url(../img/pr-s-img1.jpg) no-repeat 50% 50%;
    height: 20vw;
    width: 15vw;
}
.promotion-content {
    font-family: 'primary';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* transition: .3s; */
}
.promotion-item {
    position: relative;
    /* padding: 12px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 1;
    color: rgba(0, 0, 0, 0.9);
    /* transition: .3s; */
}
.promotion-item:hover {
    position: relative;
    color: #fff;
}
.p-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.promotion-item.active .item-title {
    position: relative;
    z-index: 1;
}
.item-title h1 {
    font-weight: 400;
    font-size: 7vw;
    letter-spacing: .8px;
    line-height: 1;
    margin:0;
    margin-bottom: 10px;
    text-transform: capitalize;
}

/*tabs slider*/
.tabs-slider {
	padding-bottom: 100px;
}
.tab-inner-content-left h3 {
    opacity: 0.9;
    font-size: 120px;
    line-height: 1;
    color: #fff;
}
.tab-inner-content-left p {
    margin: 50px 0;
    opacity: 0.6;
    font-size: 20px;
    line-height: 2.2;
    letter-spacing: .5px;
    color: #fff;
    max-width: 480px;
}
.tab-inner-content-left {
    width: 100%;
}
.tab-inner-content-right {
    position: relative;
    width: 100%;
    height: 1000px;
}
.tab-inner-content {
	display: flex;
	align-items: center;
	width: 100%;
	position: relative;
}
.custom-tabs .nav {
    justify-content: center; 
}
.custom-tabs .nav li.nav-item button.nav-link {
    opacity: 0.4;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 25px;
    padding: 0;
    position: relative;
}
.custom-tabs .nav li.nav-item button.nav-link.active {
    opacity: 1;
    background-color: transparent;
}
.custom-tabs .nav li.nav-item button.nav-link:before {
    left: 0;
    bottom: -10px;
    content: '';
    height: 2px;
    background: white;
    position: absolute;
    transform: scaleX(0);
    will-change: transform;
    transform-origin: right;
    backface-visibility: hidden;
    width: calc(100% - 0.27vw);
    transition: transform 0.4s ease-out;
}
.custom-tabs .nav li.nav-item button.nav-link.active:before {
    transform: scaleX(1);
    transform-origin: left;
}
.tab-content .tab-inner-content-right img {
    /*transition: transform 1s ease-in-out;*/
    position: absolute;
    height: 1000px;
    width: 1410px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 0;
    object-fit: contain;
    animation-name: movetoRight; 
    animation-duration: 2s;
    animation-delay: 0s;
    animation-fill-mode: forwards; 
    max-width: none;
} 
.tabs-slider .tab-content>.tab-pane.active {
	opacity: 1;
	visibility: visible;
	transition-delay: 1.1s; 
}
.tabs-slider .tab-content>.tab-pane  {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: visibility 0.7s 0s, opacity .5s .7s;
  right: 0;
  left: 0;
  max-width: 1170px;
  margin: 0 auto;
}
.tabs-slider .tab-content {
	min-height: 900px;
    position: relative;
}
.tabs-slider .tab-content>.tab-pane.active img {
	animation-name: tabsImage;
	animation-duration: 1s;
	animation-delay: 1s;
	animation-fill-mode: forwards; 
	transform: translateX(100%) rotate(45deg);
}
.c-wrap {
    bottom: -50px;
    left: -150px;
    width: 1000;
    height: 100%;
    position: absolute;
    animation-name: movetoRight;
    animation-duration: 2s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}
.active .c-wrap {
    animation-name: tabsImage;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    transform: translateX(100%) rotate(45deg);
}
.c-ipad {
    top: 50%;
    width: 100%;
    left: 0;
    overflow: hidden;
    position: relative;
    height: 100%;
    transform: rotate(22.5deg) translateY(-50%);
}
.c-ipad:before {
  top: 0;
  left: 0;
  z-index: 1;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: contain;
  backface-visibility: hidden;
  background-position: center;
  background-repeat: no-repeat;  
  background-image: url(../img/device-ipad.png);
}
.c-player {
  top: 20%;
  left: 6.5%;
  width: 87.5%;
  height: 60%;
  overflow: hidden;
  background: black;
  object-fit: cover;
  position: absolute;
  border-radius: 1.5vw;
}
@keyframes tabsImage {     
    0% {
        transform: translateX(100%) rotate(45deg);
    }
    100% {
        transform: translateX(0) rotate(0deg); 
    }
} 
@keyframes movetoRight {    
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-200%) rotate(-10deg);   
    } 
} 


/* Journal Section */


.journal {
    position: relative;
    padding: 50px 0px;
    font-family: 'primary';
    color: #fff;
}

.jour-max {
    max-width: 1300px;
}

.chapter {
    padding: 100px 100px;
}

.s-head {
    font-family: 'primary';
    font-size: 40px;
}

.s-head span {
    opacity: .5;
}

.j-image {
    max-width: 640px;
    max-height: 900px;
    overflow: hidden;
}

.j-image img {
    transform: scale(1.1);
    transform-origin: top top;
}

.d {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.97vw;
    font-weight: 600;
    text-transform: uppercase;
}

.xl {
    font-size: 100px;
    line-height: 1.2;
    letter-spacing: 2px;
    font-weight: 400;
    margin: 5px 0
}

.btn {
    position: relative;
    display: inline-block;
    color: #fff;
}

.content-button {
    padding-left: 40px;
}

.btn-box {
    color: white;
    padding: 0 30px;
    cursor: pointer;
    font-size: 30px;
    font-family: 'primary';
    line-height: 2.2;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
    background-size: 50px;
    background-position: left 100px;
    margin-left: 25px;
    word-spacing: 1px;
}

.btn-box:before, .btn-box:after {
    position: absolute;
    content: "";
}

.btn-box:before{
    top: 0;
    bottom: 0;
    left: -20px;
    width: 40px;
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.btn-box span {
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.btn-box span:before, .btn-box span::after {
    position: absolute;
    content: "";
    background-color: rgba(255, 255, 255, 0.8);
    transition: 300ms;
}

.btn-box span:first-child:before {
    height: 0px;
    width: 1px; 
    transition-delay: 1200ms;
}

.btn-box span:first-child:before, .btn-box span:first-child:after {
    left: 0;
    top: 0;
}

.btn-box span:first-child:after {
    height: 1px;
    width: 0%;
    transition-delay: 900ms;
}

.btn-box span:last-child::before {
    height: 0%;
    width: 1px;
    right: 0;
    top: 0;
    transition-delay: 600ms;
}


.btn-box span:last-child::after {
    bottom: 0;right: 0;
    height: 1px;
    width: 0%;
    transition-delay: 300ms;   
}

.btn-box:after {
    bottom: 0;left: 0;
    height: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: 300ms;
}

.btn-box:hover {
    color: #fff;
}

.btn-box:hover span:first-child:before{
    height: 20px;
    transition-delay: 0ms;
}

.btn-box:hover span:first-child:after {
    width: 100%;
    transition-delay: 300ms;
}

.btn-box:hover span:last-child::before {
    height: 100%;
    transition-delay: 600ms;
}

.btn-box:hover span:last-child::after {
    width: 100%;
    transition-delay: 900ms;
}

.btn-box:hover:after  {
    height: 20px;
    transition-delay: 1200ms;
}

/* Footer  */

/* .footer p {
    font-weight: 800;
} */



/* 
    sections colors 

    rgb(222, 183, 153)
    rgb(172 183 174)
    rgb(255 255 255)
*/


/* .fixed-wrapper{
    
    height: 100vh;
    overflow: hidden;
    position: absolute;
    left: 0;top: 0;
    width: 100%;
} */


/* 
clipPath: "polygon(0 0, 100% 0, 100% 0, 0 0)"
clipPath: "polygon(0 100%, 100% 100%, 100% 0, 0 0)"
*/

/* Under Construction */

.sec-not-com {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'primary';
}
.sec-not-com span {
    color: #000;
    font-size: 50px;
}








