#main{
    height: 110vh;
    margin-top: 10.5rem
}
#dateline{
    display: flex;
    justify-content: center;
    margin-top: 6rem;
}
.dateline-list{
    width: 22%;
}
.dateline-list button{
    background-color: transparent;
    width: 130px;
    color: #fff;
    padding: .3rem .5rem;
    border-radius: 10px;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 0, 0, 0.418);
    overflow: hidden;
}
.line{
    display: flex;
    align-items: center;
}
.line span{
    width: 15px;
    height: 15px;
    box-shadow: 0 0 3px 3px red;
    border-radius: 50%;
    background-color: red;
}
.line p{
    width: 100%;
    height: 1.5px;
}
.dateline-image{
    width: 80%;
}
.dateline-image img{
    max-width: 100%;
}
#dateline .dateline-image p{
    font-size: .75rem;
    line-height: 15px;
    text-align: left;
    margin-top: .75rem;
    color: #ebebeb;
}
#partners{
    position: relative;
}
#partners p#about-partners{
    font-size: 1.85rem;
    font-weight: 500;
    font-family: "Michroma", serif;
    /*background: conic-gradient( rgb(250, 250, 250), rgb(150, 150, 150), rgb(250, 250, 250))*/
}
.star1{
    width: 80px;
    position: absolute;
    top: 7.5%;
    left: 18%;
}
.star2{
    width: 80px;
    position: absolute;
    bottom: 40%;
    right: 30%;
}
#partner-trust{
    margin-top: 6rem;
}
#partner-trust span{
    color: red;
}
#partners img{
    width: 100px;
}
#partners .partners-div{
    display: flex;
    gap: 10rem;
    flex-wrap: wrap;
}
.partners{
    display: none;
}
#team{
    padding-block: 4.5rem;
}
#team h1{
    color: #fff;
    font-family: "Michroma", serif;
    text-align: center;
    font-weight: 300;
}
#team > div{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}
.team-list{
    width: 20%;
}
#team img{
    max-width: 100%;
}
.team-details{
    background-color: #fff;
    text-align: center;
    margin-top: -7px;
    border-radius: 0 0 7px 7px;
    padding: .5rem;
}
.team-name{
    font-size: 1.55rem;
    font-family: "Michroma", serif;
    margin-block-end: .15rem;
}
.team-portfolio{
    color: #a1a1a1;
    font-family: "Inter", serif;
    margin: 0;
}

#core-values{
    background-color: #fff;
    padding-block: 4rem 3rem;
    padding-inline: 3rem;
}
.core-values-div{
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
#core-values img{
    width: 50px;
}
#core-values h1{
    font-family: "Michroma", serif;
    text-align: center;
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}
.core-values-list{
    display: flex;
    gap: 3rem;
    width: 45%;
    padding: 1.5rem;
    align-items: start;
    border-radius: 7px;
}
.core-black{
    color: #fff;
    background-image: linear-gradient(180deg, rgb(20, 20, 20) 40%, rgb(95, 95, 95));
}
.core-white{
    border: 1px solid rgb(117, 117, 117)
}
.core-header{
    font-family: "Michroma", serif;
    font-size: 2rem;
}
.core-body{
    font-family: "Inter", serif;
    margin-top: 1.5rem;
    line-height: 30px;
}
@media screen and (max-width: 598px) {
    #main{
        height: auto;
        margin-top: 2rem;
    }
    #dateline{
        display: none;
    }
    .partners{
        display: flex;
        justify-content: center;
    }
    .dateline-list{
        width: 100%;
    }
    .star1, .star2{
        display: none;
    }
    .dateline-image{
        width: 100%;
    }
    #partners p#about-partners{
        font-size: 1.4rem;
        /*background: conic-gradient( rgb(250, 250, 250), rgb(150, 150, 150), rgb(250, 250, 250))*/
    }
    #partners .partners-div{
        gap: 2rem;
    }
    #team > div{
        display: block;
    }
    .team-list{
        width: 100%;
    }
    #core-values{
        background-color: #fff;
        padding-block: 2rem;
        padding-inline: .5rem;
    }
    .core-values-div{
        display: block
    }
    #core-values h1{
        font-size: 1.4rem;
    }
    .core-values-list{
        gap: 1rem;
        width: 100%;
        padding: 1rem;
        margin-top: 1rem;
    }
    .core-header{
        font-family: "Michroma", serif;
        font-size: 1.5rem;
    }
    .core-body{
        font-size: .85rem;
    }
    #core-values img{
        width: 25px;
    }
}