@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

h1 {
    font-family: 'Poppins', Roboto, Segoe UI, Helvetica, Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    color: #f5f5f5;
    margin: 1rem 0 2rem;
}

h2 {
    font-family: 'Poppins', Roboto, Segoe UI, Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    color: #f5f5f5;
    margin-bottom: 2rem;
}

h3 {
    font-family: 'Poppins', Roboto, Segoe UI, Helvetica, Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
    color: #00b3ac;
    margin-bottom: 1rem;
}

.page__main {
    font-family: 'Roboto', Segoe UI, Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #f5f5f5;
    background-color: #232b2b;
}

.b__radius {
    border-radius: 2rem;
}

/* Section 01 */

.content {
    display: flex;
    align-items: center;
}

.section__1 {
    padding: 4rem 0;
}

.section__1 .col-sm-5 {
    padding-left: 3rem;
}

.carousel-inner {
    border-radius: 2rem;
}

.carousel-control-prev-icon {
    background-image: url(./img/prev-icon.svg)
}

.carousel-control-next-icon {
    background-image: url(./img/next-icon.svg)
}

.carousel-indicators [data-bs-target] {
    background-color: #000;
}

.section__1 .col-sm-6:nth-child(2) {
    padding-left: 3rem;
}

.section__1 span {
    color: #00b3ac;
}

.section__1 ul {
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.section__1 ul li {
    font-size: 14px;
}

.section__1 ul li::marker {
    color: #00b3ac;
}

.section__1 .info__badges {
    display: flex;
    align-items: center;
}

.section__1 .info__badges a {
    display: flex;
    margin-top: 0;
    margin-right: 12px;
}

.section__1 a {
    display: block;
    font-size: 12px;
    color: #00b3ac;
    text-decoration: none;
    margin-top: 1.5rem;
}

.section__1 a:hover {
    text-decoration: underline;
}

/* Section 02 */

.section__2 {
    background-color: #121212;
    padding: 4rem 0;
}

.section__2 h2 {
    text-align: center;
}

.section__2 h3 {
    font-size: 1.2rem;
    color: #080808;
    margin-bottom: 0.75rem;
}

.section__2 p {
    margin-bottom: 0;
}

.top__content {
    margin: auto;
    max-width: 60rem;
    display: grid;
    grid-gap: max(1rem,1vw);
    grid-template-columns: repeat(auto-fit,minmax(15rem,22rem));
    grid-auto-rows: minmax(12rem,auto);
}

.feature {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 14px;
    color: #080808;
    background-color: #fefefe;
    border-radius: 1rem;
}

.feature::before {
    display: block;
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 2rem;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.feature:first-child {
    grid-column: 1;
    grid-row: 1/span 2;
    text-align: center;
}

.feature:nth-child(-n+2) {
    grid-gap: 2rem;
    gap: 2rem;
}

.feature:nth-child(2) {
    grid-column: 2/span 2;
    grid-row: 1;
    flex-direction: row;
}

.feature:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    text-align: center;
}

.feature:nth-child(3) h3 {
    margin-top: 8px;
}

.feature:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
    text-align: center;
}

.feature:nth-child(4) h3 {
    margin-top: 8px;
}

/* Section 03 */

.section__3 {
    padding: 4rem 0;
}

.section__3 h2 {
    margin-top: 1rem;
}

.section__3 p {
    margin-bottom: 2.5rem;
}

/* Section 04 */

.section__4 {
    padding: 4rem 0;
    background-color: #121212;
}

.section__4 h2 {
    margin-top: 1rem;
}

.section__4 p {
    margin-bottom: 2.5rem;
}

/* Section 05 */

.section__5 {
    padding: 4rem 0;
}

.section__5 h2 {
    margin-top: 1rem;
}

.section__5 p {
    margin-bottom: 2.5rem;
}

/* Bottom Content */

.bottom__content h2 {
    margin-top: 1rem;
}

.section__7 {
    padding: 5rem 0;
}

.section__9 {
    padding: 5rem 0;
}

.section__11 {
    padding: 5rem 0;
}

.section__13 {
    padding: 5rem 0;
}

.section__15 {
    padding: 5rem 0;
}

.section__17 {
    padding: 5rem 0;
}

.section__18 {
    padding-bottom: 5rem;
}

@media (max-width: 768px) {
    .order {
        order: -1 !important;
    }
    
    .section__1 {
        padding: 2rem 0 4rem;
    }

    .section__1 .col-sm-5 {
        margin-top: 2rem;
    }

    .carousel-inner {
        border-radius: 1rem;
    }

    .top__content {
        max-width: 38rem;
        grid-gap: max(0.5rem,1vw);
        grid-template-columns: repeat(auto-fit,minmax(6rem,22rem));
        grid-auto-rows: minmax(8rem,auto);
    }

    .top__content p {
        display: none;
    }

    .section__2 h3 {
        font-size: 0.75rem;
        margin-bottom: 0;
    }

    .bottom__content p {
        margin-bottom: 2.5rem;
    }
}
