* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.quem-somos {
    padding-top: 216px;
    padding-bottom: 128px;
}
.col2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 60px;
}
.col2 .left {
    width: calc(55% - 15px);
}
.col2 .left .image {
    height: 469px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    top: -25px;
}
.col2 .right {
    width: calc(50% - 15px);
}
.col2 .right h2 {
    font-weight: bold;
    font-size: 26px;    
    line-height: 39px;
    color: #000000;
    margin-bottom: 40px;
}
.col2 .right p {
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    color: #000000;
    margin-bottom: 40px;
}
.col2 .left p {
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    color: #000000;
    margin-bottom: 40px;
}
.col2 .right .image {
    height: 469px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    top: -2px;
}
.col2 button {
    background: #FF6D08;
    border-radius: 8px;
    width: fit-content;
    height: 48px;
    border: 0px !important;
    outline: 0px;
    padding: 0 70px;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    transition: ease-in-out 0.32s;
    cursor: pointer;
}
.col2 button:hover {
    border-radius: 16px;
    transition: ease-in-out 0.32s;
}
.section1 {
    position: relative;
    margin-bottom: 64px;
}
.section1 .bottom-line {
    height: 380px;
    width: 100%;
    max-width: 100%;
    background-image: url(../img/bottom-line-2.svg);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: -240px;
    left: 0;
    z-index: -11;
}
.video {
    margin-top: 128px;
}
.video-container {
    height: 482px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 64px;
}
.video button {
    background: #FF6D08;
    border-radius: 8px;
    width: fit-content;
    height: 48px;
    border: 0px !important;
    outline: 0px;
    padding: 0 70px;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    transition: ease-in-out 0.32s;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}
.video button:hover {
    border-radius: 16px;
    transition: ease-in-out 0.32s;
}
.cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 128px;
    position: relative;
}
.cards .card {
    height: 283px;
    width: calc(33% - 44px);
    background: #FFFFFF;
    box-shadow: 3px 3px 6px rgb(0 0 0 / 20%);
    border-radius: 9px;
    border-top: 9px solid #FF6D08;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.32s;
    cursor: pointer;
}   
.cards .card:hover {
    border-top: 0px solid #FF6D08;
    transition: ease-in-out 0.32s;
}
.cards .card p {
    margin-top: 40px;
    font-weight: bold;
    font-size: 26px;
    line-height: 39px;
    color: #000000;
}
.cards .elipse {
    position: absolute;
    left: -70px;
    top: -50px;
}
.line-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 182px;
    background-image: url(../img/bottom-line-3.svg);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: -190px;
    z-index: -1;
}
@media screen and (max-width: 768px) {
    .quem-somos {
        padding-top: 36px;
        padding-bottom: 128px;
    }
    .col2 {
        flex-direction: column;
    }
    .col2 .right {
        width: 100%;
    }
    .col2 .left {
        width: 100%;
    }
    .col2 .left .image {
        height: 229px;
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: relative;
        top: 0px;
        margin-bottom: 24px;
    }
    .section1 .bottom-line {
        display: none;
    }
    .video-container {
        height: 300px;
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        margin-bottom: 64px;
    }
    .video-container iframe {
        height: 300px;
    }
    .cards {
        display: flex;
        flex-direction: column;
    }
    .cards .card  {
        width: 100%;
        margin-bottom: 24px;
    }
    .video {
        margin-top: 49px;
    }
}