body {
    margin: 0;
    padding: 0;
}

p, h1, h2, h3, h4 {
    font-family: Lato;
    margin: 0;
}

.btn {
    font-size: 2rem;
    font-weight: 700;
    padding: 20px 40px;
    background-color: rgb(39, 179, 97);
    color: white;
    border: none;
    cursor: pointer;
}

.container {
    padding: 25px 65px;

}

.container.main {
    background-color: rgb(28, 28, 37);
    color: white;
    text-align: center;
}

.title{
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.subtitle {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.video-container {
    display: flex;
    align-items: center;
    gap: 65px;
}

iframe {
    width: 60vw;
    aspect-ratio: 16/9;
    background-color: white;
}

.video-container-cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

.cta-content {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.testimonials {
    background-color: rgb(255, 255, 255);

}

.images-container {
    display: flex;
    justify-content: space-between;
    padding: 80px 0;
    gap: 16px;
}

.image-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.testimonials img {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: black;
}

.container.info {
    background-color: rgb(28, 28, 37);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}

.info-subtitle {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 32px;
}

.text-container {
    display: flex;
    gap: 32px;
    width: 85%;
    margin: 0 auto 0;
    margin-bottom: 60px;
}

.text-container h4 {
    font-size: 1.2rem;
    font-weight: 600; 
    position: relative;
    margin-bottom: 12px;
}

.text-container h4::after {
    content: '';
    position: absolute;
    inset: auto 0 -6px 0;
    height: 5px;
    background-color: rgb(127, 217, 217);
}

.text-container p {
    font-size: 1rem;
    color: gray;
}

.info-cta-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
}

.info-cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 70px;
}

@media (max-width: 1024px) {
    .container {
        padding: 1rem;
    }

    .text-container {
        width: 100%;
    }

        .title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 763px) {
    .btn {
        font-size: 6vw;
        padding: 5vw 10vw;
    }
    
    .title {
        font-size: calc(5vw + 10px);
        margin-bottom: 16px;
    }

    .subtitle {
        font-size: calc(1.6vw + 11px);
        margin-bottom: 16px;
    }

    iframe {
        width: min(100%, 500px);
        margin: 0 0 20px;
    }

    .video-container {
        flex-direction: column;
    }

    .cta-content {
        font-size: calc(4vw + 16px);
    }

    .images-container {
        flex-direction: column;
    }

    .testimonials img {
        width: 70%;
    }

    .text-container {
        flex-direction: column;
    }
}