section.hero_image {
    background: url(../img/gdd-mast-01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    position: relative;
}

section.hero_image .gradient {
    min-height: 718px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    display: flex;
    flex-direction: column;
    justify-content: end;
}

section.hero_image .hero-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
}

section.hero_image .hero-cta h1 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 42.45px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: var(--text-white);
    width: 605px;
    gap: 13px;
    display: flex;
    flex-direction: row;
    margin-bottom: 0px;
}

section.hero_image .hero-cta a {
    height: 61px;
    border-radius: 1000px;
    gap: 34px;
    padding: 18px 40px;
    display: flex;
    flex-direction: row;
    background-color: var(--btn-color-green);
    border-color: var(--btn-color-green);
    transition: all 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
}

section.hero_image .hero-cta a:hover {
    background-color: var(--btn-color-green-hover);
    border-color: var(--btn-color-green-hover);
}

section.hero_image .hero-cta a span {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: var(--text-white);
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

section.hero_image .hero-cta a:hover span {
    margin-right: 5px;
}

section.hero_image .hero-cta a svg {
    width: 15.631898880004897px;
    height: 15.631898880004897px;
    transition: all 0.3s ease-in-out;
}

section.hero_image .hero-cta a:hover svg {
    transform: rotate(-45deg);
}

/* Newsletter */
section.newsletter {
    text-align: center;
    background-color: var(--white);
    padding: 75px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color-light-grey);
    justify-content: center;
    align-items: center;
}

section.newsletter .content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 624px;
    justify-content: center;
    align-items: center;
}

section.newsletter .content h2 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 50px;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: capitalize;
    color: var(--text-black);
    margin-bottom: 0;
}

section.newsletter .content p {
    font-family: "Inter", sans-serif;
    font-weight: 200;
    font-size: 20px;
    line-height: 37px;
    letter-spacing: 0;
    vertical-align: middle;
    color: var(--text-black);
    margin-bottom: 0;
}

#newsletter-form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 22px;
}

#newsletter-form.row>div {
    margin-top: 0px;
}

#newsletter-form .inputs {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 22px;
}

#newsletter-form input::placeholder {
    color: var(--text-green);
}

#newsletterSubmitBtn {
    width: 120px;
    height: 37px;
    border-radius: 10px;
    gap: 10px;
    padding: 6px 22px;
    background-color: var(--btn-color-green);
    border-color: var(--btn-color-green);
    display: flex;
}

#newsletterSubmitBtn span {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
}

#newsletterSubmitBtn svg {
    display: none;
}

#newsletterSubmitBtn:hover {
    background-color: var(--btn-color-green-hover);
    border-color: var(--btn-color-green-hover);
}

#newsletter-form select,
#newsletter-form .select2-container--default .select2-selection--single,
#newsletter-form .select2-container--default .select2-selection--single .select2-selection__placeholder,
#newsletter-form input {
    border: 0 !important;
    background-color: var(--form-fields-background-grey);
    color: var(--text-green);
}

#newsletter-form .select2-container--bootstrap-5.select2-container--focus .select2-selection,
#newsletter-form .select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: var(--green);
    box-shadow: 0 0 0 .25rem rgba(10, 91, 53, 0.25);
}

#newsletter-form .select2-container .select2-selection--single {
    height: 57px;
    border-radius: 6px;
    border-color: var(--form-fields-background-grey);
    background-color: var(--form-fields-background-grey);
}

#newsletter-form .select2-container--bootstrap-5 .select2-selection--single {
    background-image: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

#newsletter-form .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
    font-family: "Inter", sans-serif;
    color: var(--text-green);
}

#newsletter-form .select2-container .select2-selection--single .select2-selection__rendered {
    display: flex;
    justify-self: center;
    color: var(--text-green);
    font-family: "Inter", sans-serif;
}

#newsletter-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
}

#newsletter-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--green) transparent transparent transparent;
}

/* Category slider */
section.categories {
    padding: 50px 0px;
}

section.categories .category-slider {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    justify-content: center;
    align-items: end;
    flex-direction: row;
    gap: 21px;
    height: 472px;
    touch-action: pan-y;
}

section.categories .category-slider,
section.categories .category-slider * {
    user-select: none;
    -webkit-user-drag: none;
}

section.categories .category-slider.active {
    cursor: grabbing;
}

section.categories .category-slider::-webkit-scrollbar {
    display: none;
}

section.categories .category-slider {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

section.categories .category-slider .category-item {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

section.categories .category-slider .category-item:hover {
    /* position: relative; */
    transform: translateY(-30px);
}

section.categories .category-slider .category-item .card {
    display: flex;
    flex: 0 0 20%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

section.categories .category-slider .category-item .card .gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 5.58%, #000000 100%);
    width: 343px;
    height: 439px;
    gap: 10px;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: end;
}

section.categories .category-slider .category-item .card .card-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: -webkit-fill-available;
    align-items: center;
}

section.categories .category-slider .category-item .card .card-body span {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 20.59px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--text-white);
    border: 0;
}

section.categories .category-slider .category-item .card .card-body svg {
    width: 15.631898612476329px;
    height: 15.631898612476329px;
    rotate: -45deg;
}

section.adv {
    padding: 40px 0;
    overflow: hidden;
}

section.adv .external-adv .slick-slide a {
    width: -webkit-fill-available;
    display: flex;
}

section.adv .external-adv button.slick-arrow::before {
    display: none !important;
}

section.adv .external-adv .custom-prev,
section.adv .external-adv .custom-next {
    position: absolute;
    top: 50%;
    width: 65px !important;
    height: 65px !important;
    background: var(--btn-color-green) !important;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
}

section.adv .external-adv .custom-prev:hover,
section.adv .external-adv .custom-next:hover {
    background: var(--btn-color-green-hover) !important;
}

section.adv .external-adv .custom-prev {
    left: 10px;
}

section.adv .external-adv .custom-next {
    right: 10px;
}

section.adv .external-adv .custom-prev svg,
section.adv .external-adv .custom-next svg {
    width: 24px;
    height: 24px;
    display: flex;
    justify-self: center;
    align-self: center;
}

section.adv .col .slick-slide {
    text-align: center;
    display: block;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 0px 12px;
}

section.adv .col .slick-slide a img {
    border-radius: 10px;
    width: 100%;
}

section.adv .external-adv-mobile {
    display: none;
}

/* Discover Section */
section.discover {
    padding: 20px 0px 80px 0px;
}

section.discover .contents {
    gap: 100px;
    display: flex;
    flex-direction: column;
}

section.discover .discover-us {
    display: flex;
    flex-direction: column;
    gap: 38px;
    max-width: 1084px;
    margin: auto;
}

section.discover .discover-us .section-title {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 58px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 0;
    max-width: 795px;
    margin: auto;
}

section.discover .discover-us .section-subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 0;
    max-width: 648px;
    margin: auto;
}

section.discover .discover-us .features-list {
    display: flex;
    gap: 30px;
    justify-content: center;
}

section.discover .discover-us .features-list .feature-item {
    display: flex;
    gap: 20px;
    border-radius: 5px;
    padding: 27px 26px;
    align-items: center;
    background-color: var(--pricing-items);
}

section.discover .discover-us .features-list .feature-item .feature-icon svg {
    width: 25px;
    height: 25px;
}

section.discover .discover-us .features-list .feature-item .feature-text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    color: var(--text-green);
}

@media (max-width: 1024px) {
    section.categories .category-slider .card {
        flex: 0 0 30%;
    }

    section.adv .external-adv .custom-prev svg,
    section.adv .external-adv .custom-next svg {
        width: 16px;
        height: 16px;
    }

    section.adv .external-adv .custom-prev,
    section.adv .external-adv .custom-next {
        width: 40px !important;
        height: 40px !important;
    }
}

@media only screen and (max-width: 768px) {
    section.hero_image .gradient {
        min-height: 500px;
    }

    section.hero_image .hero-cta {
        margin-bottom: 65px;
    }

    section.categories .category-slider .card {
        flex: 0 0 45%;
    }

    section.adv .external-adv .custom-prev svg,
    section.adv .external-adv .custom-next svg {
        width: 8px;
        height: 8px;
    }

    section.adv .external-adv .custom-prev,
    section.adv .external-adv .custom-next {
        width: 25px !important;
        height: 25px !important;
    }
}

@media only screen and (max-width: 600px) {
    section.categories .category-slider .category-item:hover {
        /* position: relative; */
        transform: none;
    }

    section.newsletter .content {
        gap: 20px;
    }

    section.newsletter .content h2 {
        font-size: 18px;
        line-height: 23px;
    }

    #newsletter-form {
        gap: 4.43px;
        max-width: 95%;
    }

    #newsletter-form .inputs {
        flex-direction: column;
        gap: 12.19px;
    }

    #newsletter-form .inputs .email {
        padding: 8.86px 12.19px;
        border-radius: 2.77px;
        height: 39.73px;
    }

    #newsletter-form .select2-container .select2-selection--single {
        border-radius: 2.77px;
        height: 39.73px;
    }

    #newsletter-form .select2-container .select2-selection--single .select2-selection__rendered {
        justify-self: start;
    }

    #newsletter-form .select2-container--bootstrap-5 .select2-selection--single {
        justify-content: start;
        padding: .375rem .75rem;
    }

    #newsletterSubmitBtn {
        height: 45px;
        width: 100%;
        gap: 8.77px;
        padding: 19px 25px;
        border-radius: 257.94px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    #newsletterSubmitBtn svg {
        display: flex;
        width: 12px;
        height: 12px;
    }

    section.discover .discover-us .features-list {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 576px) {
    section.categories .category-slider .card {
        flex: 0 0 80%;
    }
}

@media only screen and (max-width: 425px) {
    section.hero_image .gradient {
        min-height: 337px;
    }

    section.hero_image .hero-cta {
        margin-bottom: 50px;
    }

    section.hero_image .hero-cta h1 {
        font-size: 18.3px;
        width: auto;
        white-space: normal;
    }

    section.hero_image .hero-cta a {
        height: 50px;
        gap: 8.77px;
        padding: 14px 25px;
        border-radius: 257.94px;
    }

    section.hero_image .hero-cta a span {
        font-size: 14px;
    }

    section.categories .category-slider {
        height: auto;
    }

    section.categories .category-slider .category-item .card .gradient {
        width: 242.37640380859375px;
        height: 333.53253173828125px;
    }

    .external-adv-mobile {
        display: block;
        max-width: 400px;
    }

    .external-adv-mobile img {
        max-width: 350px;
        width: -webkit-fill-available;
    }

    section.adv {
        padding-top: 10px;
        padding-bottom: 35px;
    }
}
