html {
    height:100%;
    scroll-behavior: smooth;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    /* font-family: 'Helvetica', 'Arial', sans-serif; */
    /* font-family: 'DM Sans', sans-serif; */

    /* overflow-x: hidden; */

    /* font-family: 'Albert Sans', sans-serif; */
    font-family: 'Inter', sans-serif;
    background-color: #17151A;
}


@font-face {
    font-family: 'OpenSymbol';
    src: url('fonts/lack/Lack-Regular.otf') format('otf');
    src: url('fonts/lack/Lack-Line-Italic.otf') format('otf');
    src: url('fonts/lack/Lack-Line-Regular.otf') format('otf');
}

*{
    box-sizing: border-box;
    outline: none;
    font-weight: 300;
}
a{
    text-decoration: none;
    color: unset;
}
body{
    display: table;
    width: 100%;
    min-height:100%;
    margin: 0px;
    padding: 0px;
    font-size:100%;
}

/* width */
::-webkit-scrollbar {
    width: 12px;

}

/* Track */
::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px #17151A;  */
    /* border-radius: 10px; */
    background-color: #17151A;

    /* padding: 0px 2px; */
    border: 1px solid #2c2930;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #2c2930;
    border-radius: 5px;
    /* margin: 0px 2px; */
    /* background-clip: padding-box; */
}

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

.container-1{
    width: 100%;
    height: 100vh;


    /* z-index: 2; */
    position: relative;
    /* justify-content: center; */
    align-items: center;
    background-color: #17151A;
    /* background-color: red; */
}

.tittle-video{
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 3;

}

.cont-1-inset{
    left: 0px;
    top: 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    background-color: #17151abe;
}

.header{
    display: flex;
    width: 100%;
    height: 100px;
    /* background-color: #763ad180; */
    justify-content: space-between;
    padding: 0px 70px;
    align-items: center;

    font-size: .9em;
    z-index: 9999;
    border-bottom: 1px solid #dedede1c;
}

.left-head{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* background-color: yellow; */
    /* width: 300px; */
}



.logo img{
    width: 100%;
    height: auto;
    max-width: 150px;
}

.center-head{
    display: flex;
    align-items: center;
    /* background-color: yellow; */

}



.center-head a{
    margin-left: 50px;
    color: #fafafa;
    font-weight: 200;
    /* font-size: 1em; */
    /* background-color: red; */
    transition: .5s;
}

.center-head a:hover{
    color: #ECA05A;
}

.center-head a:last-child{
    display: flex;
    align-items: center;
    border-left: #dedede1c 1px solid;
    /* border-right: #fafafa 1px solid; */
    padding: 0px 0px 0px 30px;
    height: 100%;
    /* background-color: red; */
}




.main-stage{
    /* background-color: #17151A; */
    /* background-image: url(bg-editt.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */

    flex: 1;
    width: 100%;
    position: relative;
}

.inset-stage{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    /* background-color: red; */
}

/* .inset-stage span{
    font-size: 5em;
    margin-top: -150px;
    font-family: 'League Script', cursive;
    font-family: 'Marck Script', cursive;
    font-family: 'Delius Swash Caps', cursive;
    font-family: 'Architects Daughter', cursive;
    font-family: 'Lack line';
    letter-spacing: 2px;
    color: #dedede;
} */

.wrap {
    margin-top: -100px;
    max-width: 900px;
    width: 100%;
    /* margin: 100px auto; */
    /* background-color: red; */
}

.ml16 {
    color: #402d2d;
    color: #dedede;
    /* padding: 40px 0; */
    /* font-weight: 800; */
    font-size: 3.5em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    overflow: hidden;
    text-transform: uppercase;
    font-family: 'Lack';
    padding: 0px;
    /* background-color: red; */
}

.ml16 .word {
    /* background-color: yellow; */
    display: inline-block;
    overflow: hidden;
    /* height: 2.6em; */
    margin: 0 0.2em;
}

.ml16 .letter {
    /* background-color: green; */
    display: inline-block;
    /* line-height: 2.6em; */
}

.inset-stage a{
    border: 1px solid #17151A;
    border: 1px solid #dedede1c;

    margin-top: 30px;
    padding: 10px 15px;
    font-size: 1em;
    color: #dedede;
}


.arrow-down-container{
    left: 0px;
    position: absolute;
    bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}



.scroll-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3em;
    width: 1.5em;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    cursor: pointer;
}

@keyframes scroll_1 {
    0%   { transform: translateY(0); }
    25%  { transform: translateY(-0.6em); }
    50%  { transform: translateY(0); }
    75%  { transform: translateY(0.6em); }
    100% { transform: translateY(0); }
}

.scroll-icon__wheel-outer {
    display: block;
    height: 1em;
    width: .4em;
    border-radius: .4em;
    overflow: hidden;
}

.scroll-icon__wheel-inner {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.5);
    animation: scroll_1 5s ease-in-out infinite;
}






.container-2{
    /* z-index: 2; */
    padding: 100px 0px;
    width: 100%;

    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #17151A;
    /* position: relative; */
}


.p-container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1000px; */
    width: 100%;
    /* flex-direction: column; */
    /* background-color: red; */
    /* padding: 3%; */
}

.left-panel{
    padding-left: 40px;
    width: 49%;
    /* padding-left: 40px; */
    /* background-color: tomato; */
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */

}

.upper-p, .lower-p{
    /* margin: auto; */
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    width: 100%;
    flex-direction: column;
    /* max-width: 1000px; */
    z-index: 5;
    /* background-color: violet; */
}

.upper-p span:nth-child(1), .lower-p span:nth-child(1){
    /* text-align: center; */
    font-size: 1.5em;
    letter-spacing: 2px;
    width: 100%;
    border-bottom: solid 1px #dedede1f;
    padding: 0px 0px 5px 0px;
    font-weight: 200;
    color: #ECA05A;
    /* background-color: green; */
}

.upper-p span:nth-child(2), .lower-p span:nth-child(2){
    margin-top: 15px;
    font-size: 1.1em;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 100;
    width: 100%;
    /* max-width: 450px; */
    color: #dedede;
    line-height: 30px;
    text-align: justify;
}


.lower-p{
    /* border-right: #ECA05A 1px solid; */
    margin-top: 50px;
}


.right-panel{
    /* position: relative; */
    width: 49%;
    /* max-width: 500px; */
    /* height: 700px; */
    /* background-color: yellowgreen; */
    margin-left: 40px;
    padding-right: 40px;
}

.right-panel img{
    /* object-fit: cover; */
    width: 100%;
    /* position: absolute; */
}

/* .right-panel img:nth-child(1){
    width: 200px;
    height: 450px;

    top: 100px;
}

.right-panel img:nth-child(2){
    bottom: 100px;
    right: 0px;

    width: 280px;
    height: 200px;
}

.right-panel img:nth-child(3){
    top: 80px;
    right: 40px;

    width: 240px;
    height: 300px;
} */


.container-3{

    display: flex;
    width: 100%;
    background-color: #17151A;
    /* z-index: 2; */
    /* position: relative; */

    /* background-color: #d1d1d1; */
}

.container-3-inset{

    flex: 1;

}

.section-s{
    width: 100%;
    height: 100vh;
    color: #d1d1d1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
    /* background-color: #ECA05A; */
    /* scroll-snap-align: center; */
    /* border-left: solid 1px #dedede1f; */
    /* padding: 0px 50px; */
}


.line{
    /* display: none; */
    /* width: 1px; */
    /* flex: 1; */
    background-color: #dedede1f;

    width: 100%;
    height: 500px;
    height: 90vh;

    /* padding: 20px 0px 20px 20px; */
    /* border-top: solid 1px;
    border-bottom: solid 1px;
    border-left: 1px solid;
    border-color: #dedede1f; */
}

/* .sbox-a{
    background-image: url(pexels-pixabay-159045.jpg);
}

.sbox-b{
    background-image: url(pexels-pixabay-416405.jpg);
}

.sbox-c{
    background-image: url(pexels-tima-miroshnichenko-6474343.jpg);
} */

.sbox{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    position: relative;
    color: white;



    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.s-index{
    font-size: 50em;
    color: #1d1a20;
    font-family: 'Lato', sans-serif;
    font-weight: 200;

    /* text-shadow: 2px 7px 5px rgba(0,0,0,0.3),
    0px -4px 10px rgba(122, 122, 122, 0.3); */

    background-color: #17151A;

    width: 100%;
    height: 90vh;

    position: relative;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: grayscale(50%);
}

.s-index-1{
    background-image: url('/public/images/159045.jpg');
}

.s-index-2{
    background-image: url('/public/images/416405.jpg');
}

.s-index-3{
    background-image: url('/public/images/6474343.jpg');
}



.s-inset{

    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;

    /* width: 550px; */
    width: 100%;
    height: 100%;

    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #17151aee;

    /* background-color: #131214e7; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /* border: #dedede1f 1px solid; */

    /* background: rgb(23,21,26); */
    /* background: linear-gradient(90deg, rgba(23,21,26,1) -50%, rgba(23,21,26,0.500) 100% ); */

    /* background: rgb(23,21,26);
    background: linear-gradient(0deg, rgba(23,21,26,1) 0%, #17151ae5 30%, #17151ae5 70%, rgba(23,21,26,1) 100%); */

}

.sbox span{
    font-size: 1.1em;
    letter-spacing: 1px;
    /* text-align: justify; */
    /* width: 450px; */
    width: 70%;
    line-height: 40px;
    font-weight: 200;
    /* border-top: solid 1px #dedede1f; */
    /* border-left: solid 1px #dedede1f; */
    padding: 0px 0px 0px 50px;
    /* background-color: #17151A; */
    /* color: #17151A; */
}

.sbox span a{
    display: none;
    padding: 5px;
    border: 1px solid #dedede;
    /* text-decoration: underline; */
}

.readmorebox{
    display: flex;
    align-items: center;
    /* display: none; */
    /* background-color: red; */

    /* margin-top: 30px; */
    /* max-width: 450px; */
    width: 100%;
    height: 40px;
    margin-top: 40px;
    padding: 0px 0px 0px 50px;
    color: #ECA05A;

    /* border-bottom: solid 1px #dedede1f; */
    /* border-left: solid 1px #dedede1f; */
}



.readmorebox a{
    /* display: block; */
    /* display: flex;
    align-items: center;
    justify-content: center; */
    /* width: 300px; */
    /* color: #dedede1f; */
    /* border: #dedede1f 1px solid; */
    /* padding: 8px 15px; */

    /* transform: rotate(135deg);
    -webkit-transform: rotate(135deg);

    width: 15px;
    height: 15px;
    border-top: 1px solid #d1d1d1;
    border-left: 1px solid #d1d1d1;
    margin-left: 185px; */

    letter-spacing: 2px;
    font-size: 1em;

}


.readmorebox a::after{
    content: "";
    display: block;
    max-width: 70px;
    width: 100%;
    height: .6px;
    background-color: #d1d1d1;
    background-color: #ECA05A;
    margin-top: 10px;
    transition: 1s;
}

.readmorebox a:hover::after{
    content: "";
    display: block;
    max-width: 200px;
    width: 100%;
    height: .6px;
    /* transform: rotate(-45deg) translate(70px, 30px); */
}



.section-image-box{
    display: flex;
    display: none;
    /* margin-top: 50px; */
    /* width: 90%; */
    /* padding-left:50px ; */
    height: 350px;
    /* justify-content: space-between; */
    /* border-bottom: solid 1px #dedede1f; */
    /* border-left: solid 1px #dedede1f; */
    /* padding: 20px 20px 20px 20px; */
    width: 100%;
    /* border: #dedede1f 1px solid; */
}

.sbox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.5);
}

/* .sectiona img{
    width: ;
} */

/* .section-b img{
    width: 600px;
} */

aside {
    position: sticky;
    top: 0%;
    background-color: #17151A;
    /* padding: 10px 0px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
    width: 50%;
    height: 100vh;
}

aside ul {
    display: flex;
    flex-direction: column;

    justify-content: space-between;

    align-items: flex-start;
    list-style-type: none;
    margin: 0;
    padding: 0%;
    /* background-color: red; */
}

aside ul li .indicator {
    cursor: pointer;
    display: block;
}

aside a{
    text-transform: uppercase;
    color: #d1d1d10a;
    font-size: 5vw;
}
/* aside ul li .active {
    transform: scale(1.2);
    transition: transform 200ms ease-in-out;
    color: white;
} */

.indicator{
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) .8s;
}

.red-active, .green-active, .blue-active {
    color: #d1d1d1;
}




.container-4{
    width: 100%;
    /* height: 100vh; */
    padding: 200px 0px;
    background-color: turquoise;
    background-color: #17151A;
    display: flex;
    align-items: center;
    justify-content: center;
    /* position: relative; */
    /* top: 0px; */
    /* z-index: 2; */
    /* border-bottom: #dedede0e 1px solid; */


}

.v-club{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.v-top{
    display: flex;
    justify-content: center;
}

.v-top span{
    text-align: center;
    font-size: 2em;
    /* line-height: 70px; */
    padding-bottom: 15px;
    border-bottom: #dedede1f 1px solid;
    color: white;
    letter-spacing: 2px;
    line-height: 50px;
}

.v-bottom{
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    width: 800px;
    /* width: 100%; */

    /* background-color: red; */
    flex-wrap: wrap;
}

.v-box{
    /* border: #dedede1f 1px solid; */
    /* margin: 0px 10px; */
    /* padding: 10px; */
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    padding: 0px 20px;
    height: 220px;
    max-width: 240px;
    width: 100%;
    border-left: #dedede1f 1px solid;
    border-right: #dedede1f 1px solid;
    border-bottom: #dedede1f 1px solid;
    border-top: #dedede1f 1px solid;

    margin-bottom: 30px;
    /* background-color: #dedede05; */
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    /* background-color: #141216; */
}

.v-box img{
    height: 50px;
    width: 50px;
    filter: invert(93%) sepia(13%) saturate(7206%) hue-rotate(317deg) brightness(98%) contrast(89%);
}

.v-box span:nth-child(2){
    font-size: 1.1em;
    color: #ECA05A;
    color: white;
    margin: 20px 0px;
    /* text-transform: uppercase; */
    font-weight: 200;
    letter-spacing: 2px;

    /* background-color: red; */
}

.v-box span:nth-child(2)::before{
    display: block;
    content: "";
    height: 1px;
    width: 80px;
    margin-bottom: 20px;
    background-color: #dedede1f;
}

.v-box span:nth-child(2){
    color: white;
    color: #dedede;
    font-size: 15px;
    font-weight: 100;
    /* text-align: center; */
    /* padding: 0px 10px; */
    letter-spacing: 1px;
    line-height: 25px;

    height: 50px;
}






.footer{
    /* position: sticky; */
    top: 0px;
    bottom: 0px;
    z-index: 1;
    display: table-row;
    width: 100%;
    /* height: 100vh; */
    background-color: #17151A;
    background-color: #141216;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}

.footer-inset{
    border-top: #dedede0a 1px solid;
    /* height: 100vh; */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 40px;
}

.f-upper{
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    flex:1;
    align-items: center;
    justify-content: center;
    /* background-color: aqua; */
    color: white;
    /* background-image: url(OIU9I71.png); */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    background-attachment: fixed;
    margin: 80px 0px;
}

.f-title{
    display: flex;
    /* justify-content: center; */
    max-width: 830px;
    width: 100%;
    padding-bottom: 15px;
    /* background-color: thistle; */
    /* border-bottom: #dedede1f 1px solid; */
}

.f-title span{
    display: flex;
    align-items: center;
    font-size: 2em;
    color: #d1d1d1;
    color: #ECA05A;

}

.f-title span::after{
    content: "";
    height: 1px;
    width: 300px;
    /* width: 100%; */
    background-color: #dedede1f;
    margin-left: 20px;
}

.f-form-container{
    /* background-color: red; */
    display: flex;
    margin-top: 60px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    color: #a1a1a1;
    letter-spacing: 1px;
    font-size: 1em;
}

form{
    display: flex;
    /* flex-direction: column; */
    /* padding: 20px; */
    /* border: #dedede1f 1px solid; */

}

.f-index input{
    padding: 20px 10px;
    font-size: 1em;
    background-color: transparent;
    border: 0px;
    /* border-bottom: #dedede1f 1px solid; */
    width: 400px;
    /* width: 100%; */
    font-weight: 100;
    color: #a1a1a1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /* border-radius: 5px; */
    border: #dedede0a 1px solid;
    background-color: #17151A;
    letter-spacing: 2px;

}

.f-1{
    display: flex;
    flex-direction: column;
    height: 250px;
    justify-content: space-between;
}

.f-2{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;

    /* margin-top: 70px; */
}

textarea{
    font-size: 1em;
    padding: 20px 20px;
    margin-left: 30px;
    resize: none;
    background-color: transparent;
    overflow:hidden;
    color: white;
    /* border: #dedede1f 1px solid; */
    border: none;
    width: 400px;
    /* width: 100%; */
    height: 250px;
    font-family: 'Inter', sans-serif;
    line-height: 30px;
    color: #a1a1a1;
    letter-spacing: 1px;
    background-color: #17151A;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: #dedede0a 1px solid;
}



.send-btn{
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 10px 30px;
    font-size: .9em;
    border: #dedede0a 1px solid;
    /* color: #ECA05A; */
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s ;
}

.f-2:hover .send-btn{
    color: #ECA05A;
}

.f-lower{
    /* border-top: #dedede0a 1px solid; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: #dedede;
    color: #a1a1a1;
    position: relative;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px -3px 8px; */
}

.f-lower-inset{
    margin: 40px 0px 0px 0px;
    /* height: 200px; */
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .9em;
    letter-spacing: 1px;
    padding: 40px;
    flex-wrap: wrap;
}

.f-lower-box{
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: flex-start;
    height: 150px;
    /* background-color: #1d1a20; */
    /* background-color: red; */

}

.f-img-box{
    display: flex;
    align-items: center;
    height: 100px;
    width: 100px;

}

.f-img-box img{
    width: 70%;
    filter: brightness(.3);
}

.typeface{
    display: none;
}

.f-social-box{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    /* font-size: 1.2em; */
    line-height: 25px;
}

.f-social-box a{
    font-weight: 200;
}


.instagram::before{
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    content: "\f16d";
}

.whatsapp::before{
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    content: "\f232";
}

.f-lower-box span{
    line-height: 25px;
}

.f-lower-box span:nth-child(1){
    display: flex;
    align-items: center;
    height: 30px;
    font-weight: 500;
    /* background-color: green; */
}

.f-lower-box span:nth-child(1)::after{
    content: "";
    display: flex;
    align-items: center;
    height: 1px;
    width: 60px;
    margin-left: 10px;
    background-color: #dedede1f;

}

.f-lower-box span:nth-child(2){
    margin-top: 20px;
    font-weight: 200;
}

#uparrowcontainer{
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 30px;
    right: 30px;
    position: fixed;
    width: 40px;
    height: 40px;
    background-color: #ffffff10;
    cursor: pointer;
    z-index: 3;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    border-radius: 10%;

    transition: background-color .3s,
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
}

#uparrowcontainer.show {
    opacity: 1;
    visibility: visible;
}

.gg-arrow-up {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 22px;
    height: 22px;
}
.gg-arrow-up::after,
.gg-arrow-up::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    top: 4px;
}
.gg-arrow-up::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid;
    border-left: 2px solid;
    transform: rotate(45deg);
    left: 7px
}
.gg-arrow-up::before {
    width: 2px;
    height: 16px;
    left: 10px;
    background: rgb(0, 0, 0);
}


.copyright{
    /* top: 0px; */
    /* bottom: 0px; */
    /* position: sticky; */
    border-top: #dedede0a 1px solid;
    font-size: .8em;
    height: 50px;
    /* background-color: green; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3e3d3f;
}


.scrollFade {
    opacity: 1;
    pointer-events: all;
}

.scrollFade--hidden {
    opacity: 0;
    pointer-events: none;
}

.scrollFade--visible {
    opacity: 1;
    pointer-events: all;
}

.scrollFade--animate {
    transition: opacity 0.7s ease-in-out;
}









@media screen and (max-width: 1250px){

}

@media screen and (max-width: 1175px){

}


@media screen and (max-width: 1024px){


    body{font-size: 90%;}



    .logo{
        height: 50px;
    }

    .center-head{
        display: none;
    }

    .v-bottom{
        padding:0px 40px;
    }

    .f-img-container{
        display: none;
    }


}


@media screen and (max-width: 768px){


    body{font-size: 80%;}

    .header{
        padding: 0px 15px;
    }


    .wrap {
        margin-top: -100px;
        max-width: 600px;
        width: 100%;
        /* margin: 100px auto; */
        /* background-color: red; */
    }

    .ml16 {
        color: #402d2d;
        color: #dedede;
        /* padding: 40px 0; */
        /* font-weight: 800; */
        /* font-size: 2.8em; */
        text-transform: uppercase;
        letter-spacing: 0.1em;
        overflow: hidden;
        text-transform: uppercase;
        font-family: 'Lack';

    }

    .ml16 .word {
        /* background-color: yellow; */
        display: inline-block;
        overflow: hidden;
        /* height: 2.6em; */
        margin: 0 0.1em;
    }

    .ml16 .letter {
        /* background-color: green; */
        display: inline-block;
        /* line-height: 2.6em; */
    }

    .p-container{
        justify-content: center;
    }

    .left-panel{
        width: 70%;
        padding-left: unset;
    }

    .right-panel{
        display: none;
    }

    .container-4{
        width: 100%;
        /* height: 100vh; */
        padding: 100px 0px;
        /* background-color: turquoise; */
        /* background-color: #17151A; */
        display: flex;
        align-items: center;
        justify-content: center;

        flex-direction: column;
        /* position: relative; */
        /* top: 0px; */
        /* z-index: 2; */
        /* border-bottom: #dedede0e 1px solid; */


    }

    .v-club{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .v-top{
        display: flex;
        justify-content: center;
    }

    .v-top span{
        text-align: center;
        font-size: 2em;
        /* line-height: 70px; */
        padding-bottom: 15px;
        border-bottom: #dedede1f 1px solid;
        color: white;
        letter-spacing: 2px;
        line-height: 50px;
    }

    .v-bottom{
        margin-top: 60px;
        display: flex;
        justify-content: space-between;


        flex-direction: column;
        align-items: center;

        width: 100%;

        border-bottom: none;
        border-top: none;
    }

    .v-box{
        /* border: #dedede1f 1px solid; */
        /* padding: 10px; */
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        justify-content: center;
        padding: 0px 20px;
        height: 280px;
        width: 280px;
        border-left: #dedede1f 1px solid;
        border-right: #dedede1f 1px solid;
        border-bottom: #dedede1f 1px solid;
        border-top: #dedede1f 1px solid;
        margin: 10px 0px;
        /* background-color: #dedede05; */
        /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
        /* background-color: #141216; */
    }





    .line{
        height: 90vh;
    }

    /* .s-inset{

        display: flex;
        flex-direction: column;
        justify-content: center;

        width: 100%;
        height: 100%;

        position: absolute;
        left: 0px;
        top: 0px;
        background-color: #17151aee;


        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;


    }

    .s-index{
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        height: 95vh;
    } */



    .sbox span{
        font-size: 1.1em;
        letter-spacing: 1px;
        width: 100%;
        line-height: 25px;
        font-weight: 200;
        padding: 0px 50px 0px 50px;
    }










    .container-5{
        height: 600px;
        width: 100%;
        background-image: url("murat-demircan-Tv8CFQvq7Xo-unsplash.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: 2;
        /* filter: brightness(.6); */
    }


    .container-5-inset{
        width: 100%;
        height: 100%;
        background-color: #17151a8a;
        background-color: #000000b2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .g-container{
        position: relative;
        width: 100%;
        display: flex;
        /* align-items: center; */
        /* justify-content: center; */
        /* height: 600px; */
        /* border: #dedede 1px solid; */
        background-color: #000000b2;
        /* background-color: red; */
        padding: 90px 50px 50px 50px;
        color: #d1d1d1;
        flex-direction: column;
        margin-top: 80px;
    }

    .g-profile-pic-box{
        height: 120px;
        width: 120px;
        top: -70px;
        position: absolute;
        /* background-color: yellow; */
        border-radius: 100%;
    }







    .footer-inset{
        height: unset;
    }

    form{
        flex-direction: column;
        width: 90%;
    }

    .f-1{
        /* background-color: green; */
        align-items: center;
        justify-content: center;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .f-index input{
        margin-bottom: 20px;
        width: 95%;
    }

    .f-2{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        /* background-color: red; */
        padding: 0px;
    }


    textarea{
        margin: 20px 0px 0px 0px;
        width: 95%;
    }

    .send-btn{
        right: 8%;
    }


    .f-title{
        display: flex;
        justify-content: center;
        width: 100%;
        padding-bottom: 15px;

    }

    .f-title span::after{
        content: unset;
        width: unset;
        height: unset;
    }

    .f-title span{
        display: flex;
        justify-content: center;
        border-bottom: #dedede1f 1px solid;
        padding-bottom: 10px;
    }




    .f-lower-inset{
        width: 100%;
        flex-direction: column;
        /* background-color: red; */
    }

    .f-lower-box{
        justify-content: flex-start;
        align-items: center;
    }

    .f-social-box{
        align-items: center;
    }

    .f-lower-box span:nth-child(1){
        border-bottom: #dedede1f 1px solid;
    }

    .f-lower-box span:nth-child(2){
        text-align: center;
    }

    .f-lower-box span:nth-child(1)::after{
        content: unset;
        width: unset;
        height: unset;
    }

    .f-img-container{
        display: block;
    }

    .f-img-box{
        display: flex;
        align-items: center;
        height: 100px;
        width: 100px;
        justify-content: center;
    }



    .f-img-box img:nth-child(1){
        display: none;
    }

    .typeface{
        display: block;
        width: 100%;
        filter: brightness(.3);
    }





}



@media screen and (max-width: 568px){





    .ml16{
        font-size: 2em;
    }


    .container-3{
        flex-direction: column;
    }


    aside{
        position: sticky;
        top: 0%;
        background-color: #17151A;
        /* padding: 10px 0px; */
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
        width: 100%;
        height: 100px;
        z-index: 5;
    }

    aside ul{
        flex-direction: row;
        width: 100%;
        justify-content: space-evenly;
    }

    .s-inset{
        box-shadow: unset;
    }

    .sbox span{
        width: 100%;
    }

    .v-top span{
        letter-spacing: 1px;
    }

}







