@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    overflow-x: hidden;
}

html {
    font-family: sans-serif;
    scroll-snap-type: mandatory;
    scroll-snap-points-y: repeat(100vh);
    scroll-snap-type: y mandatory;

    scroll-behavior: smooth;
}

section {
    padding: 1rem;
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    text-align: center;
    position: relative;
}

.home {
    /* padding-top: 100px; */
}

.home #logo {
    width: 70%;
    height: auto;
    position: relative;
    right: 100px;
    top: -50px;
}

#center-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home h1 {
    font-size: 80px;
    margin-left: 10%;
    text-align: left;
}

.home p {
    font-size: 30px;
    color: #666666;
    font-weight: 400;
    width: 80%;
    text-align: left !important;
    margin-left: 10%;
}

.down {
    height: 35px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}


.feature {
    padding: 50px;
    color: white;
}

.feature .wrapper {
    margin-left: 90px;
    width: auto;
    height: 50vh;
    transform: translateY(60%);
}

.feature {
    height: 100vh;
    background-image: url("../image/background.svg");
    background-repeat: no-repeat;
    background-position: right;
}

.feature h1 {
    text-align: left;
    font-size: 3.0rem;
    font-weight: 700;
    width: auto !important;
}

.feature p {
    color: #ffffffc7;
    /* width: 80% !important; */
    font-size: 30px;
    font-weight: 500;
    width: auto;
    text-align: left;
}

.feature svg {
    position: absolute;
    right: 0;
    width: 50%;
    height: auto;
}


@media screen and (max-width: 1400px){
    .home h1 {
        font-size: 70px;
    }
}


@media screen and (max-width: 1200px) {
    .home h1 {
        font-size: 65px;
    }

    .home p {
        font-size: 20px;
    }

    .home #logo {
        width: 60%;
        top: -30px;
        right: 60px;
    }

}
@media screen and (max-width: 992px){
    .home{
        /* padding-top: 40px; */
    }
    .home h1 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .home #logo {
        width: 30%;
        top: -30px;
        right: auto;
        left: auto;
    }
    .home p {
        text-align: center !important;
        width: 50%;
        font-size: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    .feature .wrapper {
        transform: translateY(50%);
        width: auto;
        margin-left: 30px;
        margin-right: 30px;
    }
    .feature h1 {
        text-align: center;
    }
    .feature p {
        font-size: 25px;
        text-align: center;
    }
}

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

    /* .home{
        height: auto !important;
    } */
    /* .home #logo {
        width: 40%;
        height: auto;
        position: relative;
        right: 0px;
        top: -30px;
    } */

    /* .home p {
        text-align: center !important;
        position: relative;
        left: -15%;
        width: 100%;
    } */


    .feature {
        padding: 20px;
    }

    .feature .wrapper {
        margin-top: 100px;
        transform: translateY(20%);
    }

    .feature h1 {
        font-size: 60px;
    }

}

@media screen and (max-width: 650px){
    .home{
        /* padding-top: 100px; */
    }
    .home h1 {
        font-size: 65px;
    }

    .home p {
        font-size: 20px;
        width: 80%;
    }

    .home #logo {
        width: 40%;
        top: -30px;
    }
    .feature h1 {
        font-size: 2.8rem;
    }

    .wwd p {
        font-size: large !important;
    }

}

@media screen and (max-width: 480px) {
    .home #logo{
        width:50% ;
    }
    .home h1 {   
        font-size: 45px;
    }
    .home p {
        font-size: 20px;
        width: 100%;
    }

    .feature {
        padding: 10px;
    }

    .feature .wrapper {
        margin-top: 70px;
    }

    .feature h1 {
        font-size: 2.5em;
        text-align: center !important;
        margin-bottom: 30px;
    }

    .feature p {
        font-size: 25px;
        text-align: center !important;
    }

    .hide {
        display: none !important;
    }
}

.vcenter {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.feature .vcenter {
    margin-left: 30px;
    margin-right: 30px;
}


.logos {
    position: absolute;
    bottom: 50px;
    width: 100%;
    left: auto;
    right: 0;
}

.logos-inner {
    margin: auto;
    width: fit-content;
}

.logos img {
    height: 50px;
}
