body{
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    margin: 0;
}

html{
    scroll-behavior: smooth;
}

/* navbar */

.nav_top{
    background-color: black;
    height: 3vw;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    height: 5vw;
    top: -50px;
    position: sticky;
    z-index: 100;
    font-size: 1.5vw;
}
  
li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    scroll-behavior: smooth;
    transition: all 0.5s ease-in-out;
}
  
li a:hover {
    text-decoration: underline white;
}

/* mobile navbar */


/* footer */


/* index page */
.main_index{
    background-image: url("../images/about_bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 104vh;
}

.logo {
    width: 30%;
    margin: 0vw 35vw 0vw 34vw;
}

.index_header1{
    text-align: center;
    margin: 3vw 5vw;
    font-size: 8vw;
    font-weight: 900;
    color: white;
    border-bottom: 1vw solid white;
}

.index_header{
    font-size: 2vw;
    color: white;
    margin: 0vw 0vw 0vw 0vw;
    text-align: center;
    font-weight: 500;
}

.index_span{
    border-bottom: 2px solid white;
}

/* about page */
.main_about{
    background-color: black;
    height: 104vh;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.about_header{
    color: black;
    background-color: white;
    padding: 0.3vw 3vw 0.3vw 6vw;
    font-size: 2vw;
    margin: 4vw 0vw 0vw 0vw;
}

.about_body{
    color: white;
    text-align: right;
    font-size: 2vw;
    padding: 4vw;
}

/* meet the creator page */
.main_meet {
    background-image: url(../images/meet_bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 150vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.main_meet_body{

}

.creator_header {
    color: white;
    background-color: black;
    padding: 0.3vw 3vw 0.3vw 5vw;
    font-size: 2vw;
    margin: 4vw 0vw 0vw 0vw;
}

.creator_body{
    font-size: 2vw;
    margin: 2vw 0vw 0vw 5vw;
}

.main_meet_img{
    /* margin: 6vw 0vw 0vw 0vw; */
}

.creator_img{
    width: 50vw;
    height: 100%;
    /* float: right; */
    /* margin: -12.8vw 0vw 0vw 0vw; */
    filter: drop-shadow(0px 0px 10px black) 
    drop-shadow(10px 10px 20px rgba(0 0 0 / 30%))
}

/* services page */
.main_services{
    background-color: white;
    height: 250vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_services_header{
    color: white;
    background-color: black;
    padding: 0.3vw 4vw 0.3vw 4vw;
    font-size: 2vw;
    text-align: center;
}

.services_sec {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 3vw 0vw;
}

.services_sec1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: -2vw 0vw;
}

.services_sec2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 2vw 0vw;
}

.services_sec3 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0vw 0vw;
}

.services_sec1.show {
    left: 0;
    opacity: 1;
}

.services_img2{
    width: 600px;
    float: right;
    margin: -6vw 0vw 0vw -5vw;
    z-index: 5;
}

.services_img {
    width: 600px;
    float: left;
    margin: -6vw -5vw 0vw 0vw;
    z-index: 5;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.services_img1{
    width: 600px;
    float: left;
    margin: -7vw -5vw 0vw 0vw;
    z-index: 5;
    transition: all 0.5s ease-in-out;
    transform: scale(1);
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.services_img2{
    width: 600px;
    float: right;
    margin: 0vw 0vw 0vw 0vw;
    z-index: 5;
    transition: all 0.5s ease-in-out;
    transform: scale(1);
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.services_img3{
    width: 600px;
    float: right;
    margin: -6vw -6vw 0vw -5vw;
    z-index: 5;
    transition: all 0.5s ease-in-out;
    transform: scale(1);
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.services_img:hover{
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
    z-index: +1;
}

.services_img1:hover{
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
    z-index: +1;
}

.services_img2:hover{
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
    z-index: +1;
}

.services_img3:hover{
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
    z-index: +1;
}

.services_text{
    border: 4px solid black;
    padding: 3vw 1vw 3vw 7vw;
    margin: 5vw -7vw 0vw 0vw;
    width: 600px;
    height: fit-content;
    border-radius: 15vw;
    animation-duration: 3s;
    animation-name: slide_in;
}

.services_text1{
    border: 4px solid black;
    padding: 6vw 6vw 6vw 8vw;
    margin: 5vw -6vw 0vw 0vw;
    width: 600px;
    height: fit-content;
    border-radius: 15vw;
    animation-duration: 3s;
    animation-name: slide_in;
}

.services_text2{
    border: 4px solid black;
    padding: 3vw 6vw 3vw 2vw;
    margin: 5vw 0vw 0vw 0vw;
    width: 600px;
    height: fit-content;
    border-radius: 15vw;
    animation-duration: 3s;
    animation-name: slide_in;
}

.services_text3{
    border: 4px solid black;
    padding: 3vw 1vw 3vw 7vw;
    margin: 5vw 0vw 0vw 1vw;
    width: 600px;
    height: fit-content;
    border-radius: 15vw;
    animation-duration: 3s;
    animation-name: slide_in;
}

.services_h3{
    font-size: 4vw;
    margin: 0;
}

.services_p{
    font-size: 1vw;
    margin: 0;
}

.services_h31{
    font-size: 2vw;
    margin: 0;
}

.services_p1{
    font-size: 1.5vw;
    margin: 0;
}

@keyframes slide_in {
    from {
      translate: 150vw 0;
      scale: 200% 1;
    }
  
    to {
      translate: 0 0;
      scale: 100% 1;
    }
}

/* campaigns & promotions page */
.main_campaign{
    background-color: #e3e3e7;
    height: 100vh;
    margin: 60vw 0vw 10vw 0vw;
}

.video_container{

}

.video{
    width: 100%;
    height: 100%;
}

.campaign_info {
    width: 37%;
    margin: -53vw 4vw;
}

.campaign_header{
    font-size: 40px;
}

.campaign_body {
    font-size: 29px;
}

/* contact page */
.main_contact{
    background-color: black;
    height: 138vh;
}

.contact_top{
    margin: 3vw 0vw 0vw 0vw;
    top: 4vw;
    position: relative;
}

.contact_bottom{
    display: flex;
    flex-direction: row;
    margin: 11vw 2vw 0vw 2vw;
    justify-content: space-between;
}

.contact_map{
    width: 100%;
    height: 450px;
    border:0;
    filter: grayscale(100%);
}

.contact_heading{
    color: white;
    font-size: 3vw;
}

.contact_img_text{
    background-color: white;
    color: black;
    font-size: 1vw;
    padding: 1% 1%;
    width: 12%;
    height: 15px;
}

.contact_info{
    color: white;
    font-size: 1.5vw;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    margin: 0vw -25vw 2vw 1vw;
}

.contact_words{
    color: white;
    font-size: 2vw;
    font-weight: 800;
}

.footer_icon{
    width: 5%;
}

.contact_sec{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: -9vw 0vw 0vw 2vw;
}

.sm_sec{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 25%;
    margin: -6vw 0vw 0vw 0vw;
}

.social_icon{
    width: 5%;
}

.contact_form{
    display: flex;
    flex-direction: column;
    margin: -32vw 1vw 0vw 0vw;
    background-color: white;
    color: black;
    width: 25vw;
    height: 35vw;
    justify-content: center;
    align-items: center;
    float: right;
    position: relative;
    z-index: 10;
}

.inputs_sec{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form_inputs{
    width: 18vw;
    padding: 0.5vw 0vw;
    border: 0px solid black;
    border-bottom: 2px solid black;
    margin: 1vw 0vw;
    font-size: 15px;
    color: black;
    font-size: 1vw;
}

.form_buttons{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* width: 100%; */
    margin: 3vw 0vw;
}

.form_icon{
    width:50%
}

.form_send{
    background-color: black;
    color: white;
    font-weight: 700;
    padding: 3% 10%;
    margin: 1.5vw 0vw 1.5vw 0vw;
    font-size: 1vw;
}

.up_btn{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0vw 3vw 0vw 2vw;
    cursor: pointer;
}

.form_get{
    width: 40%;
}

.spanner{
    display: flex;
    align-items: baseline;
}

.divider{
    background-color: black;
    padding: 3vw 0vw 0vw 0vw;
    width: 100%;
}

.social_spanner{
    display: flex;
    align-items: baseline;
    color: white;
    margin: 0px 0px 0px 10px;
}

.follow{
    border-radius: 10px;
    padding: 4%;
    cursor: pointer;
}

.social_text{
    font-size: 20px;
    margin: 0px 0px 3px 10px;
}

.new_text{
    margin: 0;
}

.follow_m{
    margin: -3vw 0vw 2vw 17vw;
}

@media only screen and (max-width: 426px) {

    .nav_top {
        background-color: black;
        height: 6vw;
    }

    .nav_header{
        margin: 1vw 0vw;
        font-size: 7vw;
        font-weight: 600;
        display: flex;
        flex-direction: column;
    }

    .mobile_container {
        max-width: 480px;
        margin: auto;
        background-color: black;
        height: 60px;
        color: white;
    }
      
    .side_nav {
        overflow: hidden;
        background-color: black;
        position: relative;
        display: flex;
        padding: 0vw 0vw 3vw 0vw;
    }
      
    .side_nav_content {
        display: none;
        justify-content: flex-start;
        width: 100%;
    }
      
    .side_nav_header {
        float: left;
        color: white;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
    }
      
    .side_nav a:hover {
        color: grey;
    }

    .side_nav_btn{
        width: 40px;
        margin: 3.5vw 8vw 3.5vw 2vw;
        position: relative;
        float: right;
    }

    .icon{
        width: 100%;
        height: 60px;
    }

    .main_index{
        background-image: url("../images/index_mobile_bg.svg");
        height: 100vh;
    }

    .index_header {
        font-size: 15vw;
        color: white;
        margin: 20vw 0vw 0vw 5vw;
        text-align: center;
    }

    .logo {
        width: 90%;
        margin: 0vw 5vw 0vw 5vw;
    }

    .main_meet{
        background-image: url("../images/meet_mobile_bg.svg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height: 80vh;
        display: flex;
        flex-direction: column;
    }

    .main_about{
        height: 60vh;
    }

    .about_header {
        font-size: 7vw;
        margin: 9vw 0vw 0vw 0vw;
        padding: 1.5vw 5vw 1.5vw 9vw;
    }

    .about_body {
        font-size: 3.2vw;
    }

    .creator_header{
        font-size: 7vw;
        margin: 9vw 20vw 0vw 0vw;
        padding: 1.5vw 0vw 1.5vw 4vw;
    }

    .creator_img {
        width: 40vw;
        height: 100%;
        filter: drop-shadow(0px 0px 10px black) drop-shadow(10px 10px 20px rgba(0,0,0/30%));
    }

    .creator_body {
        font-size: 3.2vw;
    }

    .creator_img {
        width: 300px;
        /* margin: 0vw 0vw 0vw 7vw; */
        float: none;
    }

    .main_services_header {
        font-size: 7vw;
    }

    .main_services {
        height: 170vh;
    }

    .services_sec{
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 2vw 0vw;
    }
    
    .services_sec1{
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 2vw 0vw -7vw 0vw;
    }
    
    .services_sec2{
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 3vw 0vw;
    }
    
    .services_sec3{
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 25vw 0vw 0vw 0vw;
    }

    .services_text {
        width: 250px;
        height: fit-content;
        backdrop-filter: blur(12px);
        padding: 3vw 3vw 3vw 3vw;
        margin: -57vw 0vw 0vw 8vw;
        z-index: 20;
        border: 4px solid #fbfbfb;
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 1);
        color: white;
        text-align: center;
    }

    .services_text1 {
        width: 250px;
        height: fit-content;
        backdrop-filter: blur(12px);
        padding: 7vw 4vw 3vw 4vw;
        margin: 20vw 0vw 0vw 8vw;
        z-index: 20;
        border: 4px solid #fbfbfb;
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 1);
        color: white;
        text-align: center;
    }

    .services_text2 {
        width: 250px;
        height: fit-content;
        backdrop-filter: blur(12px);
        padding: 3vw 3vw 3vw 3vw;
        margin: -57vw 0vw 0vw 8vw;
        z-index: 20;
        border: 4px solid #fbfbfb;
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 1);
        color: white;
        text-align: center;
    }

    .services_text3{
        width: 250px;
        height: fit-content;
        backdrop-filter: blur(12px);
        padding: 3vw 3vw 3vw 3vw;
        margin: -57vw 0vw 0vw 8vw;
        z-index: 20;
        border: 4px solid #fbfbfb;
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 1);
        color: white;
        text-align: center;
    }

    .services_img {
        width: 350px;
        margin: -60vw 0vw 0vw 0vw;

    }

    .services_img1 {
        width: 350px;
        margin: -15vw 0vw 0vw 0vw;
        overflow: hidden;
    }

    .services_img2 {
        width: 350px;
        margin: -63vw 0vw 0vw 0vw;
        overflow: hidden;
    }

    .services_img3{
        width: 350px;
        margin: -23vw 0vw 0vw 0vw;
        overflow: hidden;
    }

    .services_p {
        font-size: 3vw;
        margin: 0;
    }

    .services_p1 {
        font-size: 1.9vw;
    }

    .services_p2 {
        font-size: 2.3vw;
    }

    .services_h31 {
        margin: -7px 1px 1px 1px;
        font-size: 2.3vw;
    }

    .campaign_header {
        font-size: 20px;
    }
    .campaign_body {
        font-size: 18px;
    }
    .contact_map {
        width: 420px;
        height: 250px;
    }

    .main_campaign {
        height: 80vh;
        margin: -38vw 0vw 0vw 0vw;
        background-color: #e3e3e7;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .campaign_header {
        font-size: 9vw;
        margin: 0;
    }

    .campaign_body {
        font-size: 4vw;
        margin: 0vw 0vw 0vw 0vw;
    }

    .campaign_info {
        width: 90%;
        margin: -35vw 4vw 0vw 4vw;
    }

    .video_container {
        display: flex;
        align-items: flex-end;
    }

    .video{
        width: 100%;
        height: 100%;
        margin: 0vw 1vw 1vw 1vw;
    }

    .contact_form{
        width: 40vw;
        height: 62vw;
        margin: -61vw 1vw 0vw 0vw;
    }

    .form_inputs{
        margin: 2vw 0vw;
        font-size: 12px;
        width: 28vw;
        margin: 2vw 0vw;
    }

    .form_icon {
        width: 40%;
    }

    .form_send{
        padding: 2% 5%;
        font-size: 10px;
    }

    .new_text{
        font-size: 6px;
        margin: 0;
    }

    .main_contact{
        /* height: 45vh; */
        height: fit-content;
    }

    .sm_sec {
        width: 40%;
        margin: -6vw 5vw 0vw 0vw;
    }

    .social_icon {
        width: 7%;
    }

    .social_text {
        font-size: 7px;
    }

    .follow {
        border-radius: 10px;
        padding: 5%;
        cursor: pointer;
        font-size: 7px;
        width: 70%;
        margin: 0vw 0vw 0vw 9vw;
    }

    .social_spanner {
        display: flex;
        align-items: center;
        color: white;
        margin: 0px 0px 4px 0px;
    }

    .follow_m{
        margin: -7vw 0vw 2vw 17vw;
    }

}