/* PAGE */

.global-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* SECTION 1 */ 

.section-1{
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1100px;
}

/* section 2 */

.section-2{
    width: 100%;
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 75px;
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.section-2 .text-1{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-2 .text-1 p{
    width: 100%;
    padding: 20px;
    border-top: 1px solid var(--text);
    border-right: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
    border-left: 5px solid var(--secondary);
}

.section-2 .text-2{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* SECTION 3 */

.global-tools{
    width: 100%;
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 75px;
}

.global-tools .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    background: var(--surface);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.global-tools .tool{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.global-tools .tool .tool-title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 75px;
    margin-bottom: 20px;
}

.global-tools .tool .tool-title img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    padding: 15px;
}

/* global-degree */

.global-degree{
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
    padding-inline: 75px;
    padding: 50px;
    border-radius: 20px;
    background: var(--surface);
}

.global-degree .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.global-degree .degree{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
}

.global-degree .degree .degree-title{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.global-degree h2{
    color: var(--primary);
    font-size: 20px;
    font-family: "Libre Baskerville", serif;
}

.global-degree img{
    width: 60px;
    height: 60px;
}

.global-degree .degree-line{
    width: 100%;
    height: 1px;
    margin-top: 20px;
    margin-bottom: 20px;
    background: var(--background);
}

/* swiper */

.global-swiper {
    width: 100%;
    max-width: 1050px;
    margin-inline: auto;
    padding-inline: 75px;
    margin-top: 50px;
}

.swiper-wrapper{
    transition-timing-function: linear !important;
}

.myThirdSwiper{
    width: 100%;
    max-width: 1050px;
    margin-inline: auto;
}

.swiper-slide img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

@media (max-width : 780px) {
    .section-1{
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .section-2{
        padding-inline: 20px;
        gap: 50px;
    }

    .global-tools{
        padding-inline: 20px;
    }

    .global-tools .subtitle {
        gap: 20px;
        margin-bottom: 10px;
    }

    .global-tools .tool .tool-title img{
        width: 50px;
        height: 50px;
        padding: 10px;
    }

    .global-degree{
        padding-inline: 20px;
        padding: 20px;
        border-radius: 0px;
    }

    .global-degree .degree{
        gap: 30px;
    }

    .global-degree h2{
        font-size: 15px;
    }

    .global-degree img{
        width: 40px;
        height: 40px;
    }

    .global-swiper {
        padding-inline: 20px;
    }

    .swiper-slide img {
        width: 60px;
        height: 60px;
    }
}

