@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');


*{
    margin: 0;
    padding: 0;
}


.header{
    background-color: #7030CC;
    border-radius: 40px 40px 0 0;
    color: #ffffff;
    height: 110vh;
}

nav{
    height: 20vh;
    /* width: 100%; */
    padding: 0 10vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo img{
    height: 50px;
}

.list-items{
    margin-left: 18vw;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 35vw;
    font-family: 'Open Sans', sans-serif;
}

.nav-button button{
    color: #fff;
    border: none;
    padding: 12px 20px;
    background-color: #1BBCEF;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
}

.list-item:hover{
    color: #2E9DE7;
    cursor: pointer;
    border-bottom: 1px solid #C968DD;
}

.intro{
    margin-left: 10vw;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.intro-left{
    margin-top: 8vh;
    font-family: 'Open Sans', sans-serif;
}

.intro-left h1{
    font-size: 55px;
    font-weight: 700;
}

.intro-left p{
    margin-top: 30px;

    font-weight: 300;
    width: 26vw;
}

.intro-right img{
    margin-top: -10vh;
    float: right;
    height: 90vh;
}

.detail-section{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20vh 5vw 0 10vw;
    font-family: 'Open Sans', sans-serif;
}

.details-left img{
    height: 100vh;
    margin-left: -6vw;
    margin-top: -15vh;
}

.details-right{
    width: 33vw;
}

.details-right>h1{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 80px;
}

.detail-pointer{
    display: flex;
    flex-direction: row;
    margin-top: 50px;

}

.pointer-image img{
    height: 15px;
    margin-top: 10px;
}

.pointer-heading{
    margin-left: 15px;
}

.detail-pointer h3{
    font-size: 25px;
    font-weight: 700;
}

.detail-pointer p{
    margin-top: 10px;
    width: 20vw;
}

.feature-section{
    /* width: 100%; */
    /* margin-top: ; */
    text-align: center;
    font-family: 'Open Sans', sans-serif;

}

.features{
    margin: 8vh  12vw 10vh 12vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.feature{
    height: 43vh;
    width: 15vw;
    border-radius: 25px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);

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

.feature-image{
    height: 27vh;
    width: 100%;
    display: grid;
    place-items: center;
}

.image-background{
    background-color: #FAEAEB;
    height: 160px;
    width: 160px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.feature img{
    height: 80px;
}

.feature-description{
    border-radius: 25px;
    height: 16vh;

}

.feature-description h1{
    font-size: 25px;
    padding: 5px 0;
}

.feature-description p{
    padding:  0 15px;
}

.feature-image-1>.image-background>img{
    filter: invert(77%) sepia(8%) saturate(2106%) hue-rotate(314deg) brightness(84%) contrast(83%);
}

.feature-image-2 .image-background{
    background-color: #FBF0EE;
}

.feature-image-3>.image-background>img{
    filter: invert(61%) sepia(6%) saturate(1337%) hue-rotate(130deg) brightness(91%) contrast(87%);
}

.feature-image-3 .image-background{
    background-color: #E9F4F6;
}

.feature-image-4>.image-background>img{
    filter: invert(28%) sepia(91%) saturate(1246%) hue-rotate(267deg) brightness(91%) contrast(82%);
}

.feature-image-4 .image-background{
    background-color: #F2E7F5;
}

.feature:hover{
    cursor: pointer;
}

.feature:hover .feature-description{
    background-color: #6429B7;
    color: #ffffff;
}