* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Gilroy;
    color: #fff;
}

html,
body {
    height: 100%;
    width: 100%;
    
}

@font-face {
    font-family: Gilroy;
    src: url(../resources/fonts/Gilroy-Regular.ttf);
}

#main{
    background: linear-gradient(
        180deg,
        rgba(17, 17, 17, 1) 0%,
        rgb(12, 9, 28) 20%,
        rgb(16, 14, 38) 100%
      );
}

.wrapper-main{
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

nav{
    position: absolute;
    height: 16vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.nav-container{
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid white;

}

.nav-left>h1{
    font-size: 2vw;
}

.nav-mid{
    width: 50vw;
    display: flex;
    justify-content: space-evenly;
}

.nav-mid-elem-1{
    height: 3vh;
    width: 10vw;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    overflow: hidden;
}
.nav-mid-elem-1 a{
    text-decoration: none;
    font-weight: 900;
}
#nav-elem-up1{
    transform: translateY(0%);
}
#nav-elem-down1{
    /* transform: translateY(-100%); */
    transform: translateY(0%);
}

.nav-mid-elem-2{
    height: 3vh;
    width: 10vw;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    overflow: hidden;
}
.nav-mid-elem-2 a{
    text-decoration: none;
    font-weight: 900;
}
#nav-elem-up2{
    transform: translateY(0%);
}
#nav-elem-down2{
    /* transform: translateY(-100%); */
    transform: translateY(0%);
}

.nav-mid-elem-3{
    height: 3vh;
    width: 10vw;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    overflow: hidden;
}
.nav-mid-elem-3 a{
    text-decoration: none;
    font-weight: 900;
}
#nav-elem-up3{
    transform: translateY(0%);
}
#nav-elem-down3{
    /* transform: translateY(-100%); */
    transform: translateY(0%);
}

.nav-right{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 5vh;
    width: 3vw;
    cursor: pointer;
    z-index: 9999;
    /* transform: translateX(300%); */
}

.nav-bars{
    background-color: white;
    height: 0.2vh;
    width: 4vh;
    margin-bottom: 0.6vh;
    transition: all 0.3s ease;
    transform-origin: center;  
}

.nav-slider{
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    position: absolute;
    height: 100vh;
    width: 50%;
    top: 0%;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* For Safari */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-up{
    height: 80%;
    width: 100%;
    /* background-color: red; */
}

.nav-list-items{
    width: fit-content;
    margin-left: 2vw;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.2vw;
    /* background-color: red; */
}

#item-1{
    margin-top: 10vh;
}
.dot {
    font-size: 5vw;
    display: inline-block;
    width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: none; /* Let GSAP handle all transitions */
    transform: scale(0);
    transform-origin: center;
}

.nav-item a{
    font-size: 5vw;
    text-decoration: none;
    font-weight: 900;
}

.nav-item a:hover{
    color: #e5e2e2;
}

.nav-down{
    height: 20%;
    width: 100%;
    /* background-color: blue; */
}

.nav-down-wrapper{
    margin-left: 3.5vw;
}

.nav-down-placeholder{
    margin-top: 2vh;
}

.nav-down-placeholder h5{
    font-size: 2vw;
    color: #d7d7d7;
}
.nav-down-btn-div{
    width: fit-content;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    height: 5vh;
    overflow: hidden;
}
.nav-down-btn-div a{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    text-decoration: none;
    font-size: 1.2vw;
}

.upper-btn-nav{
    /* transform: translateY(-100%); */
    transform: translateY(0);
}
.lower-btn-nav{
    /* transform: translateY(-100%); */
    transform: translateY(0);
}
.page-1{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: .0001px solid white;
}

.heading-1{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.2vh;
}

.page-1 h1{
    font-size: 8vw;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 8vw;
}

.page-1 h1 img{
    height: 6vw;
}

.heading-1 p{
    text-align: center;
    font-weight: 400;
    margin-top: 2vh;
}

#page1-something{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5vw;
}

#page1-something h4{
    font-weight: 400;
    padding: 5px 10px;
    border: 1px solid rgb(119, 119, 119);
    border-radius: 50px;
}

#page1-something h4:nth-last-child(2){
    border: none;
}

.btn-main{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #7A63FF;
    margin-top: 2vh;
    border-radius: 50px;
}

.btn-main:hover{
    background-color: #6850eb;
}

.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vh 3vw;
}

.btn a{
    font-size: 1.5vw;
    text-decoration: none;
}

.page-2{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-2-container{
    height: 90%;
    width: 95%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.page-2-left{
    padding-left: 8vw;
    height: 100%;
    width: 40%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

.page-2-left h2{
    font-size: 4vw;
    font-weight: 900;
}

.page-2-left p{
    width: 80%;
    font-weight: 200;
    font-size: 1.3vw;
}

.page-2-right{
    height: 100%;
    width: 50%;
}

.right-elem{
    position: relative;
    padding-top: 2vw;
    padding-bottom: 7vw;
    border-bottom: 1px solid #6c6b6b;
}

.right-elem h2{
    font-size: 1.4vw;
    font-weight: 400;
    cursor: default;
}

.right-elem .moving-elem{
    height: 2vw;
    width: 2vw;
    border-radius: 50%;
    position: absolute;
    background-color: #fff;
    border: 2px solid #333;
    opacity: 0;
    mix-blend-mode: difference;
    scale: 0;
}

.page-3{
    height: 100vh;
    width: 100%;
    background-color: #dfdfdf;
    display: flex;
}

.page-3-left{
    height: 100%;
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-3-left-container{
    height: 90%;
    width: 90%;
}

.page-3-left-container h1{
    padding-left: 5vw;
    color: black;
    font-size: 3vw;
    font-weight: 900
}

.page-3-left-container h1 span{
    color: #7769FF;
}

.page-3-right{
    height: 100%;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-3-right-container{
    height: 90%;
    width:  90%;
    display: flex;
    flex-direction: column;
    gap: 3vh;
}

.page-3-right-elem{
    padding-top: 1vh;
    padding-right: 4vw;
}

.page-3-head{
    padding: 1.5vh 1vw;
}
.page-3-head h5{
    color: #818181;
    font-weight: 900;
    font-size: 1.2vw;
}
.page-3-body{
    padding-right: 1vw;
}

.page-3-body h2{
    color: #3C3C3C;
    padding-left: 1vw;
    font-size: 1.8vw;
}

.page-3-body h2 span{
    color: #7769FF;
}

.page-4{
    height: 120vh;
    width: 100%;
    background-color: #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-4-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5vh;
}

.cards-up{
    height: 100%;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5vw;
}

.cards-down{
    gap: 5vw;
    height: 100%;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards{
    border-radius: 25px;
    padding: 5vh 3vw;
    background-color: #33333354;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width:70%;
}

.cards-number{
    margin-bottom: 2vh;
}

.cards-number h1{
    font-size: 3vw;
    color: rgba(0, 0, 0, 0.664);
}

.card-heading{
    margin-bottom: 2vh;
}

.card-heading h2{
    font-size: 1.2vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.664);
}

.card-content{
    margin-top: 1vh;
}

.card-content p{
    font-size: 1.5vw;
    color: rgba(0, 0, 0, 0.664);
}

.card-content p span{
    color: #7769FF
}

.divider{
    height: 1px;
    width: 100%;
    color: #333;
}

.page-5{
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.page-5-wrapper{
    margin-top: 15vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.upper-div{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.upper-div h1{
    font-size: 4.3vw;
    letter-spacing: 10px;
}
.middle-div{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.middle-div p{
    color: #a3a0a0;
    font-size: 1.3vw;
    text-align: center;
    letter-spacing: 1px;
}
.lower-div{
    display: flex;
    align-items: center;
    justify-content: center;
}
.lower-div-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}

.lower-div-cards{
    margin-left: 2vw;
    margin-right: 2vw;
}
.card-upper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.card-upper-outline-circle{
    /* scale: 0.5; */
    margin-top: 3vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border: .1vw solid #20155d;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}
.card-upper-img-div{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6850eb;
    height: 70px;
    width: 70px;
    border-radius: 50%;
}
.card-upper-img-div i{
    font-size: 1.5vw;
}
.card-title{
    margin-top: 1vh;
}
.card-title h3{
    font-size: 1.5vw;
    font-weight: 800;
}
.card-para{
    margin-top: 1vh;
    width: 15vw;
}
.card-para p{
    font-size: .8vw;
    text-align: center;
    color: #999595;
}
.div-btn{
    margin-top: 3vh;
    /* background-color: red; */
    /* height: 5vw;
    width: 20vw; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6850eb;
    border-radius: 50px;
    transition: all .2s ease-in;
}
.btn-wrapper a{
    text-decoration: none;
    padding: 2vh 3vw;
    font-size: 1.3vw;
    font-weight: 600; 
}

.btn-wrapper:hover{
    background-color: #7A63FF;
}

.page-6{
    min-height: 80vh;
    width: 100%;
    background-color: #dfdfdf;
}

.page-6-top{
    width: 60%;
    padding-top: 10vh;
    padding-left: 7vw;
}

.top-heading h1{
    opacity: 0;
    font-size: 4.2vw;
    color: black;
    font-weight: 800;
}

.top-para p{
    opacity: 0;
    font-size: 1.2vw;
    color: #3C3C3C;
}

.page-6-heading{
    opacity: 0;
    padding-left: 7vw;
    margin-top: 3vh;
}
.page-6-heading p{
    font-size: 2vw;
    color: #7A63FF;
    font-weight: 800;
}
.page-6-main-wrapper{
    padding-left: 7vw;
    margin-top: 3vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.page-6-main-content{
    opacity: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.main-img i{
    font-size: 3vw;
    color: #7A63FF;
}

.main-head-p6{
    margin-top: 1vh;
}
.main-head-p6 p{
    font-size: 1.7vw;
    font-weight: 900;
    color: #111;
}

.main-para-p6{
    margin-top: 1vh;
    width: 50%;
}
.main-para-p6 p{
    font-size: 1.3vw;
    color: #2a2929;
}

.page-6-lower-heading{
    opacity: 0;
    padding-left: 7vw;
    margin-top: 3vh;
}
.page-6-lower-heading p{
    font-size: 2vw;
    color: #7A63FF;
    font-weight: 800;
}
.page-6-lower-main-wrapper{
    padding-left: 7vw;
    margin-top: 3vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.page-7{
    min-height: 100vh;
    width: 100%;
}
.page-7-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.p7-top-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.p7-top-heading{
    margin-top: 5vh;
}
.p7-top-heading h1{
    font-size: 5vw;
}
.p7-top-para{
    margin-top: 1vh;
    width: 53%;
}
.p7-top-para p{
    color: #8e8c8c;
    font-size: 1.2vw;
    text-align: center;
}
.p7-middle-wrapper{
    margin-top: 5vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 3vw;
    margin-right: 3vw;
}

.p7-middle-card{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.p7-middle-img{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22vh;
    width: 22vh;
    border-radius: 50%;
    border: 2px solid #7A63FF;
}

.p7-middle-img img{
    height: 20vh;
    width: 20vh;
    border-radius: 50%;
    object-fit: cover;
}

.p7-middle-name{
    margin-top: 2vh;
}

.p7-middle-name h3{
    text-transform: uppercase;
    font-size: 2vw;
}

.p7-middle-post{
    margin-top: .5vh;
}

.p7-middle-post h5{
    color: #7A63FF;
}

.p7-middle-para{
    margin-top: 1vh;
    width: 50%;
}
.p7-middle-para p{
    text-align: center;
    color: #9a9a9a;
}
.p7-middle-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 8vh;
    width: 15vw;
    border-radius: 50px;
    margin-top: 5vh;
    background-color: #7A63FF;
}
.p7-middle-btn a {
    text-decoration: none;
    font-size: 1.2vw;
}

.p7-middle-btn:hover{
    background-color: #6850eb;
}

.page-8{
    height: 100vh;
    width: 100%;
    background-color: #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p8-main-div{
    border-radius: 20px;
    height: 90%;
    width: 90%;
    background-color: #0F0D24;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.p8-top-wrapper{
    height: 80%;
    width: 100%;
    /* background-color: red; */
}

.p8-top{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.p8-top-head h5{
    margin-top: 15vh;
    color: #6c6b6b;
    letter-spacing: 3px;
    font-size: 1vw;
}
.p8-top-para{
    margin-top: 1vh;
    width: 60%;
}
.p8-top-para p{
    font-size: 5vw;
    text-align: center;
    font-weight: 900;
}

.p8-btn{
    margin-top: 2vh;
    height: 10vh;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.p8-btn-wrapper{
    border-radius: 80px;
    padding: 2vh 1.5vw;
    background-color: #7A63FF;
}

.p8-btn-wrapper:hover{
    background-color: #6850eb;
}

.p8-btn-wrapper a{
    text-decoration: none;
    font-size: 2vw;
    font-weight: 700;
}

.p8-bottom-wrapper{
    height: 20%;
    width: 100%;
    /* background-color: blue; */
}

.btn-sect-wrapper{
    margin-left: 5vw;
    display: flex;
    align-items: center;
    justify-content:flex-start;
}

.btn-left-arrow i{
    font-size: 1.5vw;
}

.p8-bottom-holder{
    margin-left: 5vw;
}

.p8-bottom-holder h5{
    font-size: 1.2vw;
    color: #6c6b6b;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.p8-bottom-btn-wrapper{
    margin-left: .5vw;
    /* margin-left: 5vw; */
    display: flex;
    /* align-items: center;
    justify-content: center; */
    flex-direction: column;
    height: 3vh;
    width: 15vw;
    /* background-color: red; */
    overflow: hidden;
}

.btn-bottom-p8-upper{
    transform: translateY(0%);
}
.btn-bottom-p8-upper a{
    text-decoration: none;
}

.btn-bottom-p8-bottom{
    transform: translateY(0%);
}
.btn-bottom-p8-bottom a{
    text-decoration: none;
}

.page-9{
    height: 75vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p9-wrapper{
    /* background-color: red; */
    height: 80%;
    width: 88%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.p9-top{
    width: 100%;
    height: 15%;
    /* border-bottom: 1px solid rgb(90, 89, 89); */
}

.p9-top-wrapper{
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-items: center;
}
.p9-top-logo img{
    height: 8vh;
    width: 8vh;
}
.p9-top-name h1{
    padding-left: 1vw;
    font-size: 3vw;
}

.p9-middle{
    height: 60%;
    width: 100%;
    /* background-color: blue; */
    border-bottom: .5px solid #818181;
}

.p9-middle-wrapper{
    display: flex;
}

.p9-middle-left{
    height: 100%;
    width: 60%;
    display: flex;
    /* background-color: red; */
    /* border-right: 1px solid #818181; */
    padding-bottom: 2vh;
}

.p9-card-wrapper{
    padding-top: 3vh;
}

.p9-card-head h1{
    text-transform: uppercase;
    font-weight: 900;
}

.p9-card-links{
    margin-top: 2vh;
    display: flex;
    flex-direction: column;
    gap: 2.5vh;
}
.p9-card-links a{
    text-decoration: none;
    color: #818181;
    transition: color .2s ease-in;
    font-size: 1vw;
    text-transform: uppercase;
    font-weight: 700;
}

.p9-card-links a:hover{
    color: white;
}

#footer-menu-2{
    padding-left: 5vw;
}

.p9-middle-right{
    
    height: 100%;
    width: 30%;
    display: flex;
    flex-direction: column;
}

.social-link-set{
    padding-top: 3vh;
    display: flex;
    align-items: center;
}

.social-link-img i{
    font-size: 3vw;
}
.social-link-img i:hover{
    color: #9d9a9a ;
}

.social-link-btn{
    margin-left: 1vw;
    height: 5.5vh;
    width: 16vw;
    /* background-color: red; */
    overflow: hidden;
}


.social-btn-upper{
    transform: translateY(0%);
}
.social-btn-lower{
    transform: translateY(0%);
}

.social-btn-upper a{
    text-decoration: none;
    font-size: 2vw;
}
.social-btn-lower a{
    text-decoration: none;
    font-size: 2vw;
}

.p9-bottom{
    height: 100%;
    width: 100%;
}
.p9-bottom-copyright{
    padding-top: 2vh;
    font-size: 1.5vw;
    color: #6c6b6b;
}


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

    nav{
        height: 10vh;
    }
    .nav-mid{
        display: none;
    }
    /* nav{
        height: 15vh;
        justify-content: space-between;
        width: 75%;
    } */
    .nav-container{
        height: 15vh;
        justify-content: space-between;
        width: 75%;
    }
    .nav-left>h1{
        font-size: 5vw;
        padding-left: 2vw;
    }

    .nav-right{
        padding-right: 5vw;
    }

    .nav-slider{
        width: 100%;
    }

    .page-1 h1{
        font-size: 12vw;
    }
    .page-1 h1 img{
        height: 9vw;
    }
    .heading-1 p{
        font-size: 3vw;
        width: 80%;
        text-align: center;
        font-weight: 400;
        margin-top: 2vh;
    }
    #page1-something h4{
        font-size: 2vw;
        padding: 5px 5px;
    }

    .btn{
        padding: 2.5vh 10vw;
    }

    .btn a{
        font-size: 4vw;
    }
    .page-2{
        height: 50vh;
    }
    .page-2-container{
        flex-direction: column;
    }
    .page-2-left{
        height: 10%;
        padding-left: 4vw;
    }
    .page-2-left p{
        display: none;
        justify-content: center;
    }
    .page-2-right{
        padding-top: 5vh;
        padding-left: 4vw;
        width: 100%;
    };
    .right-elem{
        padding-bottom: 15vw;
        padding-top: 50vw;
    }
    .right-elem h2{
        font-size: 5vw;
    }
    .page-3{
        padding-top: 4vh;
        flex-direction: column;
    }

    .page-3-left{
        height: 10%;
        width: 100%;
        align-items: center;
    }
    .page-3-left-container h1{
        font-size: 7vw;
        padding-left: 0;
    }
    .page-3-right{
        width: 90%;
    }
    .page-3-head h5{
        font-size: 5vw;
    }
    .page-3-body h2{
        font-size: 4.5vw;
    }
    .lower-div-wrapper{
        flex-direction: column;
    }
    .middle-div{
        margin-top: 2vh;
        width: 80%;
    }
    .middle-div p{
        font-size: 2.7vw;
    }
    .card-upper-outline-circle{
        height: 70px;
        width: 70px;
    }
    .div-btn{
        margin-bottom: 5vh;
    }
    .card-upper-img-div{
        height: 50px;
        width: 50px;
    }
    .card-upper-img-div i{
        font-size: 5vw;
    }
    .card-title h3{
        font-size: 5vw;
    }
    .card-para{
        width: 50vw;
    }
    .card-para p{
        font-size: 3vw;
    }
    .btn-wrapper{
        margin-top: 2vh;
    }
    .btn-wrapper a{
        padding: 2vh 10vw;
        font-size: 4vw;
    }
    .page-5-wrapper{
        margin-top: 5vh;
    }

    .page-6{
        min-height: 80vh;
    }
    .page-6-top{
        width: 70%;
    }
    .top-heading h1{
        font-size: 6vw;
    }
    .top-para p{
        font-size: 2vw;
    }
    .main-img i{
        font-size: 6vw;
    }
    .main-head-p6 p{
        font-size: 2.5vw;
    }
    .main-para-p6{
        width: 70%;
    }
    .main-para-p6 p{
        font-size: 2.5vw;
    }
    .p7-top-heading h1{
        font-size: 7vw;
    }
    .p7-top-para p{
        font-size: 2vw;
    }
    .p7-middle-wrapper{
        flex-direction: column;
    }
    .p7-middle-cards{
        margin-bottom: 4vh;
    }
    .p7-middle-btn{
        height: 6vh;
        width: 40vw;
    }
    .p7-middle-name h3{
        font-size: 4vw;
    }
    .p7-middle-btn a{
        font-size: 3vw;
    }
    .page-8{
        height: 70vh;
    }
    .p8-top-head h5{
        font-size: 4vw;
    }
    .p8-top-para p{
        font-size: 7.2vw;
    }
    .p8-btn-wrapper{
        padding: 2vh 14vw;
    }
    .p8-btn-wrapper a{
        font-size: 4vw;
    }
    .p8-bottom-holder h5{
        font-size: 4vw;
    }
    .btn-left-arrow i{
        font-size: 4vw;
    }
    .p8-bottom-btn-wrapper{
        width: 50vw;
    }
    .btn-bottom-p8-bottom{
        display: none;
    }
    .page-9{
        height: 60vh;
    }
    .p9-middle-wrapper{
        padding-bottom: 4vh;
    }
    .p9-middle-right{
        width: 100%;
    }
    .p9-middle-left{
        display: none;
    }
    .social-link-img i{
        font-size: 10vw;
    }
    .social-link-btn{
        width: 50vw;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .social-btn-upper a{
        font-size: 5vw;
    }
    .p9-top-logo img{
        height: 6vh;
        width: 6vh;
    }
    .social-btn-lower{
        display: none;
    }
    .p9-top-name h1{
        padding-left: 3vw;
        font-size: 9vw;
    }
    .p9-bottom-copyright{
        font-size: 4vw;
    }
    .dot{
        font-size: 15vw;
    }
    .nav-item a{
        font-size: 15vw;
    }
    .nav-list-items{
        margin-top: 2vh;
    }
    .nav-down-placeholder h5{
        font-size: 5vw;
    }
    .nav-down-btn-div a{
        font-size: 4vw;
    }
    .lower-btn-nav{
        display: none;
    }
  }