/*-- Values -------------------------*/

#values{
    position: relative;
}

#values-title{
    padding: 150px clamp(20px, 10%, 10%);
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: clamp(50px, 10%, 10%);
}

#values-text{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
}

#values-text h2{
    font-size: 60px;
}

#values-image{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#values-image img{
    width: 100%;
    max-width: 600px;
}

#values-list{
    padding: 150px clamp(20px, 10%, 10%);
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 90px;
    background-color: #0C3760;
}

.values-item{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
    background-color: #0a2d4e;
    padding: 50px clamp(20px, 5%, 5%);
    border-radius: 30px;
}


.values-item:nth-of-type(even){
    transform: translateY(50%)
}

.values-item:nth-of-type(even) .values-text{
    order: 2;
}

.values-text{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
    gap: 10px;
}

.values-text h3{
    font-size: 35px;
}

.values-image{
    display: flex;
    justify-content: center;
    align-items: center;
}

.values-image img{
    width: 100%;
    border-radius: 20px;
    height: 100%;
    max-height: 200px;
    object-fit: contain;
}











/*-- Approach -------------------------*/

#approach{
    position: relative;
    padding: 100px clamp(20px, 10%, 10%);
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

#approach-content{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
    gap: 10px;
}

#approach-content hr{
    width: 100%;
    max-width: 100px;
    border: 4px solid #000000;
    margin-bottom: 30px;
}

#approach-content h2{
    font-size: 45px;
    max-width: 900px;
    font-weight: 800;
}

#approach-content h2 b{
    color: #00000080;
}

#approach-content p{
    max-width: 900px;
}

#approach-content ul{
    margin-left: 29px;
}

#approach-image{
    display: flex;
    justify-content: center;
    align-items: center;
}

#approach-image img{
    border-radius: 30px;
    width: 100%;
}















/*-- Responsive Design -------------------------*/

@media screen and (max-width: 1300px){
    #values-list{
        grid-template-columns: repeat(1,1fr)
    }
    .values-item:nth-of-type(even){
        transform: translateY(0%)
    }
    .values-item:nth-last-of-type(1){
        grid-column: unset;
    }
}

@media screen and (max-width: 1125px){
    #values-title{
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 1000px) {
    
}

@media screen and (max-width: 900px) {
    .values-item{
        grid-template-columns: repeat(1,1fr);
    }

    .values-item:nth-of-type(even) .values-text{
        order: initial;
    }

    #approach{
        grid-template-columns: repeat(1,1fr);
    }
}

@media screen and (max-width: 560px) {
    
}

@media screen and (max-width: 420px) {
    
}













/*-- Animations -------------------------*/

#values{
    transform: translateY(70px);
    opacity: 0;
    animation: mainAnim 0.5s ease forwards;   
}

#values-title{
    transform: translateY(70px);
    opacity: 0;
    animation: mainAnim 0.5s ease forwards;   
}

@keyframes mainAnim{
    from{ }
    to{ transform: translateY(0); opacity: 1; }
}

#approach-content.animate{
    transform: translateX(-70px);
    opacity: 0;
}
#approach-image.animate{
    transform: translateX(70px);
    opacity: 0;
}