/*=============== GOOGLE FONTS ===============*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/

:root {
    --first-color: hsl(228, 66%, 53%);
    --first-color-alt: hsl(228, 66%, 47%);
    --first-color-light: hsl(228, 62%, 59%);
    --first-color-lighten: hsl(228, 100%, 97%);
    --second-color: hsl(25, 83%, 53%);
    --title-color: hsl(228, 57%, 28%);
    --text-color: hsl(228, 15%, 50%);
    --text-color-light: hsl(228, 12%, 75%);
    --border-color: hsl(228, 99%, 98%);
    --body-color: #fff;
    --container-color: #fff;
}


/* Responsive typography */


/*=============== BASE ===============*/

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 0.938rem;
    background-color: var(--body-color);
    color: var(--text-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    /* For animation dark mode */
}

h1,
h2,
h3 {
    color: var(--title-color);
    font-weight: 600;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

input,
button {
    font-family: "Poppins", sans-serif;
    outline: none;
    border: none;
}


/*=============== THEME ===============*/

.change-theme {
    font-size: 1.25rem;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.change-theme:hover {
    color: var(--first-color);
}


/*========== Variables Dark theme ==========*/

body.dark-theme {
    --first-color: hsl(228, 66%, 62%);
    --second-color: hsl(25, 57%, 42%);
    --title-color: hsl(228, 8%, 95%);
    --text-color: hsl(228, 8%, 70%);
    --border-color: hsl(228, 16%, 14%);
    --body-color: hsl(228, 12%, 8%);
    --container-color: hsl(228, 16%, 12%);
}


/*========== 
    Color changes in some parts of 
    the website, in dark theme 
==========*/

.dark-theme .swiper-button-next,
.dark-theme .swiper-button-prev {
    border: 3px solid var(--border-color);
}

.dark-theme .nav__menu,
.dark-theme .popular__card:hover,
.dark-theme .value__img,
.dark-theme .accordion-open,
.dark-theme .accordion-open .value__accordion-icon,
.dark-theme .accordion-open .value__accordion-arrow,
.dark-theme .contact__img,
.dark-theme .contact__card-box:hover,
.dark-theme .scrollup {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dark-theme .value__orbe,
.dark-theme .value__accordion-icon,
.dark-theme .value__accordion-arrow,
.dark-theme .contact__orbe,
.dark-theme .contact__card i,
.dark-theme .contact__card-button {
    background-color: var(--container-color);
}

.dark-theme::-webkit-scrollbar {
    background-color: #252528;
}

.dark-theme::-webkit-scrollbar-thumb {
    background-color: #3d3e42;
}

.dark-theme::-webkit-scrollbar-thumb:hover {
    background-color: #56575d;
}


/*=============== REUSABLE CSS CLASSES ===============*/

.container {
    max-width: 1024px;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.grid {
    display: -ms-grid;
    display: grid;
}

.section {
    padding: 4.5rem 0 2rem;
}

.section__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.section__title span {
    color: var(--second-color);
}

.section__subtitle {
    display: block;
    font-size: 0.813rem;
    color: var(--second-color);
}

.main {
    overflow: hidden;
    /* For the animations ScrollReveal*/
}


/*=============== HEADER & NAV ===============*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 100;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.nav {
    height: 3.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav__logo {
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 1.5rem;
}

.nav__logo i {
    font-size: 1.25rem;
    color: var(--second-color);
}

.brand-logo {
    max-width: 70px;
    height: auto;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

@media screen and (max-width: 1023px) {
    .nav__menu {
        position: fixed;
        bottom: 2rem;
        background-color: var(--container-color);
        -webkit-box-shadow: 0 8px 24px rgba(39, 69, 190, 0.15);
        box-shadow: 0 8px 24px rgba(39, 69, 190, 0.15);
        width: 90%;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 1.3rem 3rem;
        border-radius: 1.25rem;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }
    .nav__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .nav__link {
        color: var(--text-color);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0.5rem;
        border-radius: 50%;
    }
    .nav__link i {
        font-size: 1.25rem;
    }
    .nav__link span {
        display: none;
    }
}


/* Change background header */

.scroll-header {
    background-color: var(--body-color);
    -webkit-box-shadow: 0 1px 4px rgba(37, 37, 40, 0.1);
    box-shadow: 0 1px 4px rgba(37, 37, 40, 0.1);
}

.scroll-header .nav__logo {
    color: var(--title-color);
}

.scroll-header .change-theme {
    color: var(--title-color);
}


/* Active link */

.active-link {
    background: linear-gradient(101deg, #3858d6, #2948c7);
    color: #fff;
    -webkit-box-shadow: 0 4px 8px rgba(39, 69, 190, 0.25);
    box-shadow: 0 4px 8px rgba(39, 69, 190, 0.25);
}


/*=============== HOME ===============*/


/*=============== BUTTON ===============*/

.button {
    display: inline-block;
    background: linear-gradient(101deg, #3858d6, #2948c7);
    color: #fff;
    padding: 14px 28px;
    border-radius: 0.5rem;
    font-size: 0.938rem;
    font-weight: 500;
    -webkit-box-shadow: 0 4px 8px rgba(39, 69, 190, 0.25);
    box-shadow: 0 4px 8px rgba(39, 69, 190, 0.25);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}

.button:hover {
    -webkit-box-shadow: 0 4px 12px rgba(39, 69, 190, 0.25);
    box-shadow: 0 4px 12px rgba(39, 69, 190, 0.25);
}

.nav__button {
    display: none;
}


/*========== INLANDS ==========*/

.islands {
    height: 100vh;
    position: relative;
}

.islands__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.bg__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.bg__overlay_gallery {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.2);
}

.islands__container {
    text-align: center;
    position: relative;
    height: 100%;
    display: -ms-grid;
    display: grid;
    place-items: center;
}

.islands__subtitle,
.islands__title {
    color: #f5fffe;
}

.islands__subtitle {
    font-size: 2rem;
    font-weight: var(--font-medium);
}

.islands__title {
    font-size: 1.75rem;
}

@media screen and (min-width: 768px) {
    .islands__title {
        font-size: 3rem;
    }
}

.islands__description {
    margin: auto;
    width: 100%;
    text-align: center;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .islands__description {
        width: 60%;
    }
    .islands__title {
        font-size: 5.5rem;
    }
}


/* For tall screens on mobiles y desktop*/

@media screen and (min-height: 721px) {
    .islands {
        height: 640px;
    }
}


/*=============== LOGOS ===============*/

.logos__container {
    padding-top: 2rem;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    justify-items: center;
}

.logos__img img {
    height: 60px;
    opacity: 0.2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.logos__img img:hover {
    opacity: 0.6;
}


/*=============== POPULAR ===============*/

.popular__container {
    padding: 1rem 0 5rem;
}

.popular__card {
    width: 290px;
    background-color: var(--container-color);
    padding: 0.5rem 0.5rem 1.5rem;
    border-radius: 1rem;
    margin: 0 auto;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.popular__card a {
    color: inherit;
}

.popular__all {
    display: -ms-grid;
    display: grid;
    gap: 2rem;
}

@media screen and (min-width: 768px) {
    .popular__all {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    }
}

.popular__img {
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.popular__data {
    padding: 0 1rem 0 0.5rem;
}

.popular__price {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.popular__price span {
    color: var(--second-color);
}

.popular__title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.popular__description {
    font-size: 0.813rem;
}

.popular__card:hover {
    -webkit-box-shadow: 0 12px 16px rgba(39, 69, 190, 0.1);
    box-shadow: 0 12px 16px rgba(39, 69, 190, 0.1);
}


/* Swiper class */

.swiper-button-prev::after,
.swiper-button-next::after {
    content: "";
}

.swiper-button-next,
.swiper-button-prev {
    top: initial;
    bottom: 0;
    width: initial;
    height: initial;
    background-color: var(--container-color);
    border: 2px solid var(--text-color-light);
    padding: 6px;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    color: var(--first-color);
}

.swiper-button-prev {
    left: calc(50% - 3rem);
}

.swiper-button-next {
    right: calc(50% - 3rem);
}


/*=============== VALUE ===============*/

.value__container {
    row-gap: 3rem;
}

.value__images {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.value__orbe {
    width: 266px;
    height: 316px;
    background-color: #f6f6f9;
    border-radius: 135px 135px 16px 16px;
}

.value__img {
    position: absolute;
    width: 250px;
    height: 300px;
    overflow: hidden;
    border-radius: 125px 125px 12px 12px;
    inset: 0;
    margin: auto;
    -webkit-box-shadow: 0 16px 32px rgba(89, 22, 106, 0.25);
    box-shadow: 0 16px 32px rgba(89, 22, 106, 0.25);
}

.value__description {
    font-size: 0.813rem;
    margin-bottom: 2rem;
}

.value__accordion {
    display: -ms-grid;
    display: grid;
    row-gap: 1.5rem;
}

.value__accordion-item {
    background-color: var(--body-color);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem 0.75rem;
}

.value__accordion-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.value-accordion-icon {
    background-color: var(--first-color-lighten);
    padding: 5px;
    border-radius: 0.25rem;
    font-size: 18px;
    color: var(--first-color);
    margin-right: 0.75rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.value__accordion-title {
    font-size: 0.813rem;
}

.value__accordion-arrow {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-color: var(--first-color-lighten);
    padding: 0.25rem;
    color: var(--first-color);
    border-radius: 2px;
    font-size: 10px;
    margin-left: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.value__accordion-arrow i {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.value__accordion-description {
    font-size: 0.75rem;
    padding: 1.25rem 2.5rem 0 2.75rem;
}

.value__accordion-content {
    overflow: hidden;
    height: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}


/*Rotate icon and add shadows*/

.accordion-open {
    -webkit-box-shadow: 0 12px 32px rgba(39, 69, 190, 0.1);
    box-shadow: 0 12px 32px rgba(39, 69, 190, 0.1);
}

.accordion-open .value__accordion-icon {
    -webkit-box-shadow: 0 4px 4px rgba(39, 69, 190, 0.1);
    box-shadow: 0 4px 4px rgba(39, 69, 190, 0.1);
}

.accordion-open .value__accordion-arrow {
    -webkit-box-shadow: 0 2px 4px rgba(39, 69, 190, 0.1);
    box-shadow: 0 2px 4px rgba(39, 69, 190, 0.1);
}

.accordion-open .value__accordion-arrow i {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}


/*=============== CONTACT ===============*/

.contact__container {
    row-gap: 2rem;
    align-items: center;
}

.contact__images {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contact__orbe {
    width: 266px;
    height: 316px;
    background-color: #f6f6f9;
    border-radius: 135px 135px 16px 16px;
}

.contact__img {
    position: absolute;
    width: 250px;
    height: 300px;
    overflow: hidden;
    border-radius: 125px 125px 12px 12px;
    inset: 0;
    margin: auto;
    -webkit-box-shadow: 0 16px 32px rgba(22, 39, 106, 0.25);
    box-shadow: 0 16px 32px rgba(22, 39, 106, 0.25);
}

.contact__description {
    font-size: 0.813rem;
    margin-bottom: 2.5rem;
}

.contact__card {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.75rem;
}

.contact__card-box {
    background-color: var(--body-color);
    border: 2px solid var(--border-color);
    padding: 1.25rem 0.75rem;
    border-radius: 0.5rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.contact__card-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 0.75rem;
    column-gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.contact__card i {
    padding: 6px;
    background-color: var(--first-color-lighten);
    border-radius: 6px;
    font-size: 1.25rem;
    color: var(--first-color);
}

.contact__card-title {
    font-size: 0.938rem;
}

.contact__card-description {
    font-size: 0.75rem;
}

.contact__card-button {
    font-size: 0.813rem;
    padding: 14px 0;
    width: 100%;
    border-radius: 0.25rem;
    background: var(--first-color-lighten);
    color: var(--first-color);
    font-weight: 600;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact__card-button:hover {
    background-color: var(--first-color);
    color: #fff;
}

.contact__card-box:hover {
    -webkit-box-shadow: 0 8px 24px rgba(39, 69, 190, 0.1);
    box-shadow: 0 8px 24px rgba(39, 69, 190, 0.1);
}


/*=============== FOOTER ===============*/

.footer__container {
    row-gap: 2.5rem;
}

.footer__logo {
    color: var(--first-color);
    font-size: 1.5rem;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.75rem;
}

.footer__logo i {
    font-size: 1.25rem;
    color: var(--second-color);
}

.footer__description,
.footer__link {
    font-size: 0.813rem;
    font-weight: 500;
}

.footer__content,
.footer__links {
    display: -ms-grid;
    display: grid;
}

.footer__content {
    -ms-grid-columns: (max-content)[2];
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    gap: 2.5rem 4rem;
}

.footer__title {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer__links {
    row-gap: 0.5rem;
}

.footer__link {
    color: var(--text-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer__link:hover {
    color: var(--title-color);
}

.footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1rem;
    column-gap: 1rem;
}

.footer__social-link {
    font-size: 1.25rem;
    color: var(--text-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer__social-link:hover {
    color: var(--title-color);
}

.footer__info,
.footer__privacy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer__info {
    padding-bottom: 6rem;
    margin-top: 5.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    row-gap: 1.5rem;
}

.footer__copy,
.footer__privacy a {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-color);
}

.footer__privacy {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 1.25rem;
    column-gap: 1.25rem;
}


/*=============== SCROLL BAR ===============*/

::-webkit-scrollbar {
    width: 0.6rem;
    border-radius: 0.5rem;
    background-color: #c5bdc7;
}

::-webkit-scrollbar-thumb {
    background-color: #a89cab;
    border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #8f8093;
}


/*=============== SCROLL UP ===============*/

.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -30%;
    background-color: var(--container-color);
    -webkit-box-shadow: 0 8px 12px rgba(39, 69, 190, 0.1);
    box-shadow: 0 8px 12px rgba(39, 69, 190, 0.1);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0.35rem;
    border-radius: 0.25rem;
    color: var(--title-color);
    font-size: 1.25rem;
    z-index: 10;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.scrollup:hover {
    -webkit-transform: translateY(-0.25rem);
    transform: translateY(-0.25rem);
    color: var(--first-color);
}


/* Show Scroll Up*/

.show-scroll {
    bottom: 8rem;
}


/*=============== BREAKPOINTS ===============*/


/* For small devices */

@media screen and (max-width: 350px) {
    .container {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .section {
        padding: 3.5rem 0 1rem;
    }
    .contact__card {
        -ms-grid-columns: (180px)[1];
        grid-template-columns: repeat(1, 180px);
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media screen and (max-width: 320px) {
    .nav__menu {
        padding: 1.3rem 1.5rem;
    }
    .logos__container {
        gap: 2rem 1rem;
    }
    .popular__card {
        width: 230px;
        padding: 0.5rem 0.5rem 0.75rem;
    }
    .value__img,
    .contact__img {
        width: 220px;
        height: 260px;
    }
    .value__orbe,
    .contact__orbe {
        width: 236px;
        height: 280px;
    }
    .footer__content {
        gap: 2.5rem;
    }
}


/* For medium devices */

@media screen and (min-width: 576px) {
    .nav__menu {
        width: 342px;
    }
    .contact__card {
        -ms-grid-columns: (192px)[2];
        grid-template-columns: repeat(2, 192px);
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer__content {
        -ms-grid-columns: (max-content)[3];
        grid-template-columns: repeat(3, -webkit-max-content);
        grid-template-columns: repeat(3, max-content);
    }
}

@media screen and (min-width: 767px) {
    .logos__container {
        -ms-grid-columns: (max-content)[4];
        grid-template-columns: repeat(4, -webkit-max-content);
        grid-template-columns: repeat(4, max-content);
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .value__container,
    .contact__container {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .contact__images {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .contact__card {
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
    }
    .footer__container {
        -ms-grid-columns: (max-content)[2];
        grid-template-columns: repeat(2, -webkit-max-content);
        grid-template-columns: repeat(2, max-content);
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}


/* For large devices */

@media screen and (min-width: 1023px) {
    .section {
        padding: 7.5rem 0 1rem;
    }
    .section__title {
        font-size: 2.25rem;
    }
    .section__subtitle {
        font-size: 0.938rem;
    }
    .nav {
        height: calc(3.5rem + 1.5rem);
    }
    .nav__menu {
        width: initial;
        margin-left: auto;
    }
    .nav__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-column-gap: 3rem;
        column-gap: 3rem;
    }
    .nav__link {
        color: #fff;
    }
    .nav__link i {
        display: none;
    }
    .nav__button {
        display: inline-block;
    }
    .active-link {
        background: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: var(--title-color);
        font-weight: 500;
    }
    .change-theme {
        margin: 0 3rem;
        color: #fff;
    }
    .scroll-header .nav__link,
    .scroll-header .change-theme {
        color: var(--text-color);
    }
    .scroll-header .active-link {
        color: var(--title-color);
    }
    .logos img {
        height: 100px;
    }
    .popular__container {
        padding-top: 3rem;
    }
    .popular__card {
        width: 320px;
        padding: 0.75rem 0.75rem 2rem;
    }
    .popular__data {
        padding: 0 0.25rem 0 0.75rem;
    }
    .value__container,
    .contact__container {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: center;
        -webkit-column-gap: 5rem;
        column-gap: 5rem;
    }
    .value__orbe,
    .contact__orbe {
        width: 501px;
        height: 641px;
        border-radius: 258px 258px 16px 16px;
    }
    .value__img,
    .contact__img {
        width: 461px;
        height: 601px;
        border-radius: 238px 238px 12px 12px;
    }
    .value__img img,
    .contact__img img {
        max-width: initial;
        width: 490px;
    }
    .value__description,
    .contact__description {
        font-size: 0.938rem;
        margin-bottom: 2.5rem;
    }
    .value__accordion-title {
        font-size: 0.938rem;
    }
    .value__accordion-item {
        padding: 1.25rem 1.25rem 1.25rem 1rem;
    }
    .value__accordion-description {
        padding-bottom: 1rem;
        font-size: 0.813rem;
    }
    .contact__card {
        -ms-grid-columns: (200px)[2];
        grid-template-columns: repeat(2, 200px);
    }
    .contact__card-box {
        padding: 28px 1.5rem 1.5rem;
    }
    .footer__content {
        -ms-grid-columns: (max-content)[4];
        grid-template-columns: repeat(4, -webkit-max-content);
        grid-template-columns: repeat(4, max-content);
    }
    .footer__title {
        margin-bottom: 1.5rem;
    }
    .footer__links {
        row-gap: 1rem;
    }
    .footer__info {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-bottom: 2rem;
    }
    .show-scroll {
        bottom: 3rem;
        right: 3rem;
    }
}

@media screen and (min-width: 1040px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
}


/* For 2K & 4K resolutions */

@media screen and (min-width: 2048px) {
    body {
        zoom: 1.5;
    }
}

@media screen and (min-width: 3840px) {
    body {
        zoom: 2;
    }
}


/*=============== BLOG ===============*/

.blog__container {
    padding-bottom: 2rem;
}

.blog__content {
    row-gap: 3rem;
}

.blog__image {
    position: relative;
    margin-bottom: 1.5rem;
}

.blog__img {
    border-radius: 0.5rem;
}

.blog__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-color: #fff;
    padding: 0.75rem;
    border-radius: 0.5rem 0 0.5rem 0;
    font-size: 1.25rem;
    color: var(--first-color);
    position: absolute;
    right: 0.1rem;
    bottom: 0.4rem;
}

.blog__button i {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.blog__button:hover i {
    -webkit-transform: rotate(-30deg) translateX(0.25rem);
    transform: rotate(-30deg) translateX(0.25rem);
}

.blog__title {
    font-size: var(--h2-font-size);
    margin-bottom: 0.75rem;
}

.blog__title:hover {
    text-decoration: underline;
}

.blog__description {
    margin-bottom: 1.5rem;
}

.blog__footer,
.blog__reaction {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog__footer {
    -webkit-column-gap: 1.5rem;
    column-gap: 1.5rem;
}

.blog__reaction {
    -webkit-column-gap: 0.25rem;
    column-gap: 0.25rem;
}

.blog__reaction i {
    font-size: 1.25rem;
}

.blog__reaction span {
    font-size: var(--small-font-size);
}


/* For medium devices */

@media screen and (min-width: 576px) {
    .blog__content {
        -ms-grid-columns: 450px;
        grid-template-columns: 450px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media screen and (min-width: 1024px) {
    .blog__container {
        padding-bottom: 5rem;
    }
    .blog__content {
        -ms-grid-columns: (300px)[3];
        grid-template-columns: repeat(3, 300px);
        -webkit-column-gap: 3rem;
        column-gap: 3rem;
        padding-top: 2rem;
    }
}

.content__container {
    display: -ms-grid;
    display: grid;
    gap: 2rem;
}

.content__container p {
    text-align: justify;
    margin-bottom: 1rem;
}

.package-travel ul {
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.package-travel ul li a {
    color: var(--text-color);
}

@media screen and (min-width: 768px) {
    .content__container {
        -ms-grid-columns: 1.5fr 0.5fr;
        grid-template-columns: 1.5fr 0.5fr;
    }
}


/*========== INLANDS ==========*/

.islands {
    height: 100vh;
    position: relative;
}

.islands__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.islands__container {
    text-align: center;
}

.islands__subtitle,
.islands__title {
    color: #fff;
}

.islands__subtitle {
    font-size: 1.25rem;
}

.islands__title {
    font-size: 2rem;
}

@media screen and (min-width: 768px) {
    .islands__title {
        font-size: 5rem;
    }
}


/* Controls */

.controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 0.25rem 0.5rem;
    background-color: var(--body-color);
    border-radius: 0.75rem;
    z-index: 99;
    overflow: hidden;
}

.controls__img {
    width: 35px;
    height: 35px;
    border-radius: 0.5rem;
    cursor: pointer;
}

.controls__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1rem;
    column-gap: 1rem;
}


/* Active controls */

.swiper-slide-thumb-active {
    width: 45px;
    height: 45px;
}

.card {
    margin-top: 2rem;
    border: 1px solid var(--text-color-light);
    border-radius: 0.25rem;
    padding: 2.5rem 1.25rem 1.75rem;
}

.card input {
    border: 1px solid var(--text-color-light);
    width: 100%;
    height: 45px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
    color: var(--text-color);
    background-color: var(--container-color);
}

.card .button-booking {
    padding: 0.75rem 1.25rem;
    display: block;
    width: 100%;
    margin-top: 1rem;
}


/*========== MEDIA QUERIES ==========*/


/* For small devices */

@media screen and (max-width: 320px) {
    .controls__container {
        -webkit-column-gap: 0.25rem;
        column-gap: 0.25rem;
    }
}

@media screen and (min-width: 768px) {
    .controls {
        padding: 0.5rem;
        border-radius: 1.25rem;
    }
    .controls__container {
        -webkit-column-gap: 1.5rem;
        column-gap: 1.5rem;
    }
    .controls__img {
        width: 45px;
        height: 45px;
        border-radius: 0.75rem;
    }
    .swiper-slide-thumb-active {
        width: 55px;
        height: 55px;
    }
}


/* Video */

.video-section {
    text-align: center;
}

.login-page {
    background-image: url(../img/bg-login.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login-logo {
    width: 100px;
    height: auto;
}


/* Gallery */

.gallery-header {
    /* margin-top: 100px;
    text-align: center;
    width: 100%; */
}

.gallery-header img {
    height: 50vh;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gallery-content {
    text-align: center;
    position: relative;
    height: 100%;
    display: -ms-grid;
    display: grid;
    place-items: center;
}

.youtube-video {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.feed {
    margin-top: 300px !important;
}

.learn_more {
    margin-top: 20px;
}


/* slider gallery */

.slideshow-img {
    display: grid;
    place-items: center;
    padding-bottom: 40px;
}

.gallery-slider-pot {
    height: 350px;
    margin: auto;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.slide-track-pot {
    display: flex;
    /* width: calc(200px * 18); */
    animation: slide 40s linear infinite;
    gap: 10px;
}


/*.slide-track-pot:hover {*/


/*    animation-play-state: paused;*/


/*}*/

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 9));
    }
}

.slide-item-pot {
    height: 400px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 0;
    perspective: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slide-item-pot img {
    width: 100%;
    height: auto;
    transition: transform 1s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.slide-item-pot img:hover {
    transform: translateZ(5px);
}

.gallery-slider-pot::before {
    /* background: linear-gradient(to right, rgba(255, 255, 255, 1)0%, rgba(255, 255, 255, 0)100%); */
    content: '';
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
}

.gallery-slider-pot::after {
    /* background: linear-gradient(to left, rgba(255, 255, 255, 1)0%, rgba(255, 255, 255, 0)100%); */
    content: '';
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
}

.gallery-slider-pot::before {
    left: 0;
    top: 0;
}

.gallery-slider-pot::after {
    right: 0;
    top: 0;
    transform: translateZ(180deg);
}


/* hero slider */

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .4;
    z-index: -1;
}

.hero h2,
.hero h1,
.hero p {
    color: #ffffff;
    text-align: center;
}

.hero h1 {
    font-size: 1.8rem;
}

@media screen and (min-width:360px) {
    .hero h1 {
        font-size: 2rem;
    }
}

@media screen and (min-width:537px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media screen and (min-width:900px) {
    .hero h1 {
        font-size: 5rem;
    }
}

.background-hero {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -5;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.show-hero {
    opacity: 1;
}

.hero .emblem {
    max-width: 150px;
    height: auto;
}


/* img lazy */

.lazy_img {
    filter: blur(3px);
    transition: 0.5s;
}

.lazy_img.loaded {
    filter: blur(0);
}

.shareArticle {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    padding: 15px;
}

.shareSocial {
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .shareSocial {
        flex-flow: column;
    }
}

.shareSocial .socialTitle {
    /* margin: 0 15px 0 0; */
    font-size: 14px;
}

@media (max-width: 767px) {
    .shareSocial .socialTitle {
        margin-bottom: 15px;
        text-align: center;
    }
}

.shareSocial .socialList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    justify-content: center;
    flex-flow: row wrap;
}

.shareSocial .socialList li {
    margin: 5px;
    list-style: none;
}

.shareSocial .socialList li:first-child {
    padding-left: 0;
}

.shareSocial .socialList li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    text-decoration: none;
    background-color: #999;
    color: #fff;
    transition: 0.35s;
    font-size: 20px;
}

.shareSocial .socialList li a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: top left;
    transform: scale(1) translate(-50%, -50%);
    transition: 0.35s;
    color: #fff;
}

.shareSocial .socialList li a:hover i {
    transform: scale(1.5) translate(-50%, -50%);
}

.shareSocial .socialList li:nth-child(1) a {
    background-color: #135cb6;
}

.shareSocial .socialList li:nth-child(2) a {
    background-color: #00aced;
}

.shareSocial .socialList li:nth-child(3) a {
    background-color: #1fb381;
}


/* .shareSocial .socialList li:nth-child(4) a {
    background-color: #bd081c;
} */

.shareSocial .socialList li:nth-child(4) a {
    background-color: #111;
}

.shareLink .permalink {
    position: relative;
    border-radius: 30px;
}

.shareLink .permalink .textLink {
    text-align: center;
    padding: 12px 60px 12px 30px;
    height: 45px;
    width: 450px;
    font-size: 16px;
    letter-spacing: 0.3px;
    color: #494949;
    border-radius: 25px;
    border: 1px solid #f2f2f2;
    background-color: #f2f2f2;
    outline: 0;
    appearance: none;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .shareLink .permalink .textLink {
        width: 100%;
    }
}

.shareLink .permalink .textLink:focus {
    border-color: #d8d8d8;
}

.shareLink .permalink .textLink::selection {
    color: #fff;
    background-color: #ff0a4b;
}

.shareLink .permalink .copyLink {
    position: absolute;
    top: 50%;
    right: 25px;
    cursor: pointer;
    transform: translateY(-50%);
}

.shareLink .permalink .copyLink:hover:after {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
}

.shareLink .permalink .copyLink:after {
    content: attr(tooltip);
    width: 140px;
    bottom: -40px;
    left: 50%;
    padding: 5px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    background-color: #000;
    color: #fff;
    transform: translateY(-10px) translateX(-50%);
    transition: all 300ms ease;
    text-align: center;
}

.shareLink .permalink .copyLink i {
    font-size: 20px;
    color: #ff0a4b;
}

.status-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.status-message {
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 5px 0;
}


/* contact-form */

.contact-area {
    margin: 50px 0;
}

.form-area {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    font-size: 12px;
    padding: 15px;
    width: 100%;
    margin-bottom: 1rem;
}

.form-group textarea {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    font-size: 12px;
    padding: 15px;
    width: 100%;
    height: 100%;
    margin-bottom: 1rem;
}

.notification {
    position: fixed;
    z-index: 1000;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    /* Warna hijau */
    color: white;
    padding: 15px;
    border-radius: 5px;
    display: none;
    /* Mulai tersembunyi */
}

.notification.error {
    background-color: #dc3545;
    /* Warna merah */
}

.loading {
    display: none;
    position: absolute;
    right: 10px;
}

.spinner-border {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    vertical-align: middle;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.d-none {
    display: none;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}


/* grid col */

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-6 {
    order: 6;
}

.order-7 {
    order: 7;
}

.order-8 {
    order: 8;
}

.order-9 {
    order: 9;
}

.order-10 {
    order: 10;
}

.order-11 {
    order: 11;
}

.order-12 {
    order: 12;
}

@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-sm-1 {
        order: 1;
    }
    .order-sm-2 {
        order: 2;
    }
    .order-sm-3 {
        order: 3;
    }
    .order-sm-4 {
        order: 4;
    }
    .order-sm-5 {
        order: 5;
    }
    .order-sm-6 {
        order: 6;
    }
    .order-sm-7 {
        order: 7;
    }
    .order-sm-8 {
        order: 8;
    }
    .order-sm-9 {
        order: 9;
    }
    .order-sm-10 {
        order: 10;
    }
    .order-sm-11 {
        order: 11;
    }
    .order-sm-12 {
        order: 12;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-md-1 {
        order: 1;
    }
    .order-md-2 {
        order: 2;
    }
    .order-md-3 {
        order: 3;
    }
    .order-md-4 {
        order: 4;
    }
    .order-md-5 {
        order: 5;
    }
    .order-md-6 {
        order: 6;
    }
    .order-md-7 {
        order: 7;
    }
    .order-md-8 {
        order: 8;
    }
    .order-md-9 {
        order: 9;
    }
    .order-md-10 {
        order: 10;
    }
    .order-md-11 {
        order: 11;
    }
    .order-md-12 {
        order: 12;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-lg-1 {
        order: 1;
    }
    .order-lg-2 {
        order: 2;
    }
    .order-lg-3 {
        order: 3;
    }
    .order-lg-4 {
        order: 4;
    }
    .order-lg-5 {
        order: 5;
    }
    .order-lg-6 {
        order: 6;
    }
    .order-lg-7 {
        order: 7;
    }
    .order-lg-8 {
        order: 8;
    }
    .order-lg-9 {
        order: 9;
    }
    .order-lg-10 {
        order: 10;
    }
    .order-lg-11 {
        order: 11;
    }
    .order-lg-12 {
        order: 12;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-xl-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-xl-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-xl-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-xl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-xl-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-xl-1 {
        order: 1;
    }
    .order-xl-2 {
        order: 2;
    }
    .order-xl-3 {
        order: 3;
    }
    .order-xl-4 {
        order: 4;
    }
    .order-xl-5 {
        order: 5;
    }
    .order-xl-6 {
        order: 6;
    }
    .order-xl-7 {
        order: 7;
    }
    .order-xl-8 {
        order: 8;
    }
    .order-xl-9 {
        order: 9;
    }
    .order-xl-10 {
        order: 10;
    }
    .order-xl-11 {
        order: 11;
    }
    .order-xl-12 {
        order: 12;
    }
}

.share-button {
    background-color: transparent;
    color: var(--text-color);
}

.share-button:hover {
    color: #ba2c19;
}


/*# sourceMappingURL=style.css.map */