
/* Section 1 */

.section-1{
    display: flex;
    width: 100%;
    height: 414px;
    margin-top: 130px;
}
.section-1-left{
    flex-basis: 50%;
    background-color: rgb(6, 78, 174);
    display: flex;
    padding: 25px 115px;
    flex-direction: column;
}
.section-1-left h1{
    color: white;
    font-family: "Gazpecho";
    font-size: 48px;
    margin-bottom: 12px;
    line-height: 57px;
}
.section-1-left p{
    color: white;
    font-family: "TT Norms Pro Normal";
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 32px;
}
.section-1-btn{
    background-color: rgb(63, 0, 11);
    color: rgb(254, 235, 208);
    font-size: 18px;
    font-weight: 700;
    padding: 18.5px;
    border: none;
    border-radius: 50px;
    width: max-content;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.section-1-btn:hover{
    background-color: rgb(159, 128, 133);
}
.section-1-right{
    flex-basis: 50%;
    display: flex;
}

/* Section 2 */

.section-2{
    width: 100%;
    height: 702px;
    background: url('../images/section-2-bg.svg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
}
.section-2-cards{
    padding: 70px 20px;
    transition: transform 0.3s ease;
}
.section-2-cards:hover{
    transform: scale(1.05);
}
.section-2-cards:hover .section-2-card-title{
    text-decoration: underline;
    text-underline-offset: 7px;
    text-decoration-thickness: 1px;
}
.section-2-img{
    width: 330px;
    display: flex;
    height: 220px;
    object-fit: cover;
}
.section-2-card-info{
    width: 330px;
    height: 342px;
    display: inline-block;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    padding: 20px;
}
.section-2-card-title{
    color: rgb(63, 0, 11);
    width: 280px;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    margin-top: 32px;
    margin-bottom: 10px;
    cursor: pointer;
}
.section-2-card-description{
    color: rgb(63, 0, 11);
    font-family: "TT Norms Pro Normal";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 15px;
}

/* Common in sections */

.section{
    width: 100%;
    height: 688px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.section-img{
    width: 900px;
    overflow: hidden;
}
.section-img img{
    width: 900px;
    height: 550px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.section-text{
    z-index: 1;
    background-color: white;
    width: 363px;
    height: 418px;
    padding: 0 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
.section-text h2{
    color: rgb(63, 0, 11);
    font-family: "Gazpecho";
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    line-height: 38px;
    margin-bottom: 20px;
}
.section-text p{
    color: rgb(63, 0, 11);
    font-family: "TT Norms Pro Normal";
    display: block;
    text-align: center;
    font-size: 17px;
    font-weight: 100;
    line-height: 25.5px;
    margin-bottom: 25.5px;
}
.section-btn{
    background-color: rgb(63, 0, 11);
    color: rgb(254, 235, 208);
    font-size: 18px;
    font-weight: 700;
    padding: 17px 20px;
    border: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}
.section-btn:hover{
    background-color: rgba(63, 0, 11, 0.5);
    cursor: pointer;
}
.img-to-txt-section-text{
    margin-left: -55px;
}
.txt-to-img-section-text{
    margin-right: -55px;
}



/* Section 3 */

.section-3{
    background-color: rgb(254, 235, 208);
}

/* Section 4 */

.section-4{
    background-color: rgb(145, 38, 142);
    background-image: url('../images/section-4-bg.svg');
}

/* Section 5 */

.section-5{
    background-color: white;
    background-image: url('../images/section-5-bg.webp');
}

/* Section 6 */

.section-6{
    background-color: rgb(8, 169, 160);
}
.section-6-video video{
    width: 900px;
    height: 550px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Section 7 */

.section-7{
    background-color: white;
    width: 100%;
    height: 667px;
    display: flex;
    justify-content: center;
    
    padding: 70px 0;
}
.section-7-container{
    width: 100%;
    display: flex;
    justify-content: center;
}
.section-7-card{
    padding: 23px 25px;
    display: flex;
    height: fit-content;
    flex-direction: column;
    cursor: pointer;
}
.section-7-img-div{
    width: 370px;
    height: 370px;
    overflow: hidden;
}
.section-7-card:hover img{
    transform: scale(1.2);
}
.section-7-card:hover p{
    text-decoration: none;
    color: rgb(63, 0, 11);
}
.section-7-card img{
    width: 370px;
    height: 370px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.section-7-card p{
    color: rgb(0, 123, 189);
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
    margin-top: 10px;
    margin-bottom: 4px;
}

/* Section 8 */

.section-8{
    background-color: rgb(254, 235, 208);
    background-image: url('../images/section-8-bg.svg');
}
