html {
    font-size  : 10px;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #FFF;
    overflow-x      : hidden;
}

* {
    padding        : 0;
    margin         : 0;
    text-decoration: none;
    list-style     : none;
}

.navbar {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    padding        : 1rem 1rem 7rem 1rem;
}

.navbar img {
    height: auto;
    width : 100px;
}

.header-section {
    display              : grid;
    grid-template-columns: repeat(1, 1fr);
    /* display           : flex; */
    /* flex-direction    : column; */
}

.left-section {
    display        : flex;
    flex-direction : column;
    justify-content: center;
    align-items    : center;
    text-align     : center;
    width          : 100%;
}

.left-section .sub-heading {
    color         : #2c2a37;
    font-size     : 14px;
    text-transform: uppercase;
    padding-bottom: 6px;
}

.left-section .heading {
    font-size  : 20px;
    font-family: 'MontserratSemiBold', sans-serif;
    color      : #007ef6;
    padding    : 0 5rem;
}

.left-section .heading .nowrap {
    white-space: nowrap;
}

.left-section .event-schedule {
    color         : #2c2a37;
    font-size     : 14px;
    text-transform: uppercase;
    padding-top   : 10px;
}

.left-section .event-address {
    color    : #525157;
    font-size: 12px;
    padding  : 0.6rem 0 1.5rem 0;
}

.left-section .placeholder {
    color      : #2c2a37;
    font-size  : 12px;
    font-weight: 600;
    padding    : 1.5rem 5rem;
}

.left-section .cta-btn {
    font-family  : "Montserrat", sans-serif;
    font-size    : 15px;
    width        : 200px;
    height       : 40px;
    border-radius: 27px;
    color        : #FFF;
    background   : #007ef6;
    border       : none;
    cursor       : pointer;
}

.right-section {
    padding-top: 5rem;
}

.counter-section-wrapper {
    display       : flex;
    flex-direction: column;
    background    : #efefef;
}

.portofolio-section-wrapper {
    background: #efefef;
}

.heading-counter-section {
    text-align: center;
    padding   : 3.5rem 2.5rem 0rem 2.5rem;
}

.heading-portofolio-section {
    text-align: center;
    padding   : 3.5rem 2.5rem 2rem 2.5rem;
}

.heading-counter-section h2,
.heading-portofolio-section h2 {
    font-size     : 18px;
    font-family   : 'MontserratBold', sans-serif;
    color         : #007ef6;
    padding-bottom: 1.5rem;
}

.heading-counter-section h3,
.heading-portofolio-section h3 {
    font-size: 24px;
    color    : #2f2c33;
}

.counter-section {
    display        : flex;
    flex-direction : column;
    justify-content: space-evenly;
    align-items    : center;
    height         : auto;
    gap            : 4rem;
    padding        : 4em;
}

.item {
    display        : flex;
    justify-content: center;
    flex-direction : column;
    align-items    : center;
    font-size      : 14px;
}

.item p {
    font-size : 15px;
    color     : #575560;
    text-align: center;
    padding   : 5px 2rem;
}

.item .number {
    font-size  : 56px;
    color      : #007ef6;
    font-family: 'MontserratBold', sans-serif;
}

.content-wrapper {
    display       : flex;
    flex-direction: column-reverse;
    width         : 100%;
    height        : auto;
}

.content-section {
    display        : flex;
    flex-direction : column;
    justify-content: center;
    align-items    : start;
    gap            : 10px;
    padding        : 3rem;
    background     : #007ef6;
}

.content-text {
    color    : #FFF;
    font-size: 18px;
}

.content-image {
    width : 180px;
    height: 150px;
}

.content-heading {
    color      : #2f2c33;
    font-size  : 28px;
    font-family: 'Montserrat', sans-serif;
}

.partnership-section {
    display        : flex;
    flex-direction : column;
    justify-content: center;
    align-items    : center;
    gap            : 1rem;
    padding        : 6rem 0;
}

.blue-logo {
    width: 250px;
}

.partnership-logo {
    display        : flex;
    flex-wrap      : wrap;
    justify-content: space-around;
    align-items    : center;
}

.logo-item img {
    max-width: 150px;
}

.portofolio-section {
    display       : flex;
    flex-direction: column;
    padding       : 2rem;
}

.portofolio-section .portofolio-left-section img {
    width : 100%;
    height: auto;
}

.portofolio-section .portofolio-left-section p {
    text-align: start;
    font-size : 18px;
    padding   : 2rem 0rem 3rem 0rem;
}

.portofolio-section .portofolio-right-section p {
    font-size  : 18px;
    white-space: pre-line;
}

/* carousel container */
.carousel-container {
    width     : 100%;
    position  : relative;
    margin-top: 2rem;
}

/* hide slides by default */
.slides {
    display: none;
}

/* next & prev  */

.prev,
.next {
    cursor       : pointer;
    position     : absolute;
    top          : 50%;
    width        : auto;
    margin-top   : -22px;
    padding      : 16px;
    color        : #007ef6;
    font-weight  : bold;
    font-size    : 35px;
    transition   : 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select  : none;
    background   : transparent;
}

.next {
    right        : 0;
    border-radius: 3px;
}

.prev:hover,
.next:hover {
    background: rgba(245, 239, 239, 0.827);
}

.active {
    background: #007ef6;
}

.fade {
    animation         : fade;
    animation-duration: 1s;
}

.slide-img {
    width       : 100%;
    height      : auto;
    aspect-ratio: 16 / 9;
    object-fit  : contain;
}

.portofolio-right-section a {
    text-decoration: underline;
}

.heading-wrapper {
    padding-bottom: 1.5rem;
}

@keyframes fade {
    from {
        opacity: .2;
    }

    to {
        opacity: 1;
    }
}

@media only screen and (min-width: 768px) {
    .content-image {
        width : 150px;
        height: 100px;
    }

    .content-heading {
        font-size: 30px;
    }

    .partnership-logo {
        gap            : 2rem;
        padding        : 0 4rem;
        justify-content: center;
    }

    .logo-item img {
        max-width: 200px;
    }
}

@media only screen and (min-width: 1024px) {
    .navbar {
        padding: 1.5rem 2rem 3rem 2rem;
    }

    .navbar img {
        width: 120px;
    }

    .header-section {
        /* flex-direction: row; */
        grid-template-columns: repeat(2, 1fr);
        padding-bottom       : 10rem;
    }

    .left-section .sub-heading {
        font-size: 20px;
    }

    .left-section .heading {
        font-size: 26px;
        padding  : 0 11rem;
    }

    .left-section .event-schedule {
        font-size: 20px;
    }

    .left-section .event-address {
        font-size: 15px;
    }

    .left-section .placeholder {
        padding: 0rem 9rem 2rem 9rem;
    }

    .left-section .cta-btn {
        font-size: 23px;
        width    : 300px;
        height   : 50px;
    }

    .right-section {
        padding-top: 0;
        width      : 50%;
        height     : auto;
    }

    .counter-section {
        flex-direction: row;
        height        : 200px;
        gap           : 10rem;
        padding       : 0 0 2rem 0;
    }

    .content-wrapper {
        flex-direction: row;
    }

    .content-section {
        width  : 40%;
        padding: 4rem;
    }

    .content-heading {
        font-size: 28px;
    }

    img.country-image {
        width       : 60%;
        height      : auto;
        aspect-ratio: 16 / 9;
    }

    .portofolio-section {
        flex-direction: row;
    }

    .portofolio-left-section {
        padding-left: 12rem;
    }

    .portofolio-section .portofolio-left-section img {
        width: 35vw;
    }

    .portofolio-section .portofolio-left-section p {
        text-align: start;
        font-size : 18px;
        padding   : 2rem 3rem 3rem 0rem;
    }

    .portofolio-section .portofolio-right-section {
        padding: 2rem 10rem 0rem 7rem;
    }

    .carousel-container {
        margin-top: 0;
    }
}