/* body {
    padding-bottom: 5000px;
} */

/* ------------------------------------ */
/* Hero Section Start */
/* ------------------------------------ */


.hero__section,
.hero__section img,
.hero__section__banner__overlay,
.hero__section__text__wrapper {
    width: 100%;
    height: 760px;
}

.hero__section {
    width: 100%;
    height: 760px;
    background-image: url(../home-page-content/demo-tourism-web-hero-img.png);
    background-size: cover;
    background-position: center;
    background-color: #000000;
}

.hero__section img {
    width: 100%;
    height: 760px;
    object-fit: cover;
    position: relative;
}

.hero__section__banner__img {
    width: 100%;
    height: 760px;
    object-fit: cover;
    position: relative;

}

.hero__section__banner__animation {
    background-color: #00000050;
    animation: fadeIn 750ms linear;
    /* transition-timing-function: cubic-bezier(0.1, 1.0, 0.1, 1.0); */
}

/* .js__hero__section__banner__wrapper {
    animation: fadeIn 1s;
} */

@keyframes fadeIn {
    0% {
        opacity: 0.5;
    }
    /* 50% {
        opacity: 0.75;
    } */
    100% {
        opacity: 1;
    }
  }

@keyframes slideAnimation {
    0% {
        background-color: black;
        right: -100%;
        transform: scale(0.8);
    }
    100% {
        right: 0px;
    }
}

.hero__section__banner__overlay {
    background-color: #00000060;
    position: absolute;
    top: 0;
    left: 0;
}

.hero__section__text__wrapper {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero__section__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero__section__heading {
    color: var(--clr-white);
    font-size: var(--size-4xl);
    font-weight: 700;
    /* width: 75%; */
    text-align: center;
}

.hero__section__description {
    color: var(--clr-white);
    font-size: var(--size-base);
    font-weight: 300;
    /* width: 60%; */
    text-align: center;

    padding-bottom: 0.5rem;
}


/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {

    .hero__section__heading {
        color: var(--clr-white);
        font-size: var(--size-6xl);
        font-weight: 600;
        width: 75%;
        text-align: center;
    }
    
    .hero__section__description {
        color: var(--clr-white);
        font-size: var(--size-base);
        font-weight: 300;
        width: 90%;
        text-align: center;
    
        padding-bottom: 1.5rem;
    }
}

/* lg */
@media (min-width: 1024px) {

    .hero__section__heading {
        color: var(--clr-white);
        font-size: var(--size-7xl);
        font-weight: 600;
        width: 75%;
        text-align: center;
    }
    
    .hero__section__description {
        color: var(--clr-white);
        font-size: var(--size-base);
        font-weight: 300;
        width: 60%;
        text-align: center;
    
        padding-bottom: 1.5rem;
    }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */

/* ------------------------------------ */
/* Hero Section End*/
/* ------------------------------------ */

/* ------------------------------------ */
/* Destinations Section Start */
/* ------------------------------------ */


/* .destinations__section {
    background-color: red;
    position: sticky;
    top: 0;
} */

.destinations__section__text__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding-bottom: 2rem;
}

.destiations__section__archive {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
    gap: 2rem 1rem;
}

.destinations__archive__card {
    border-radius: 1rem;
    overflow: hidden;

    position: relative;
}

.destinations__archive__card div {
    /* width: 190px; */
    height: 250px;
}

.destinations__archive__card__image__wrapper {
    position: relative;

    transition: all 0.3s;
}

.destinations__archive__card__image__wrapper:hover {
    transform: scale(1.1);
}

.destinations__archive__card__image,
.destinations__archive__card__image__overlay {
    height: 250px;
    width: 100%;
}

.destinations__archive__card__image {
    object-fit: cover;
}

.destinations__archive__card__image__overlay {
    position: absolute;
    top: 0;
    background-image: linear-gradient(#ffffff00, #00000050);
}

.destinations__archive__card h1 {
    z-index: 999;
    color: var(--clr-white);
    font-size: var(--size-base);
    font-weight:500;
    position: absolute;
    bottom: 0;
    padding: 0rem 0rem 1rem 1rem;
}




/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {
    
    .destiations__section__archive {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .destinations__archive__card div {
        width: 100%;
        height: 100%;
    }
    
    .destinations__archive__card__image,
    .destinations__archive__card__image__overlay {
        height: 350px;
        width: 100%;
    }
    
    .destinations__archive__card h1 {
        font-size: var(--size-xl);
    }
}

/* lg */
@media (min-width: 1024px) {
    
    .destiations__section__archive {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem 1rem;
    }
    
    .destinations__archive__card div {
        width: 100%;
        height: 100%;
    }
    
    .destinations__archive__card__image,
    .destinations__archive__card__image__overlay {
        height: 290px;
        width: 100%;
    }
    
    .destinations__archive__card h1 {
        font-size: var(--size-xl);
    }
}

/* xl */
@media (min-width: 1280px) {
    
    .destiations__section__archive {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem 1rem;
    }

    .destinations__archive__card div {
        width: 100%;
        height: 100%;
    }
    
    .destinations__archive__card__image,
    .destinations__archive__card__image__overlay {
        height: 350px;
        width: 100%;
    }
    
    .destinations__archive__card h1 {
        font-size: var(--size-2xl);
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */


/* ------------------------------------ */
/* Destinations Section End */
/* ------------------------------------ */

/* ------------------------------------ */
/* About US Section Start */
/* ------------------------------------ */

.about__us {
    display: grid;
    align-items: center;
    gap: 3rem;
}

.about__us__section__description {
    font-size: var(--size-sm);
    text-align: justify;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
}

.about__us__section__image img {
    border-radius: 1rem;
    border: 2px solid var(--clr-white);
    object-fit: fill;

    transition: all 0.3s;
}

.about__us__section__image img:hover {
    transform: scale(1.02);
    border: 2px solid var(--clr-yellow);
    box-shadow: 0px 0px 40px #FAAF1A50;
}


/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {

    .about__us {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .about__us__section__description {
        font-size: var(--size-sm);
    }

}

/* lg */
@media (min-width: 1024px) {

    .about__us__section__description {
        font-size: var(--size-base);
    }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */



/* ------------------------------------ */
/* About US Section End */
/* ------------------------------------ */

/* ------------------------------------ */
/* Why Choose US Section Start */
/* ------------------------------------ */

.why__choose__us__content__wrapper {
    background-image: url(../home-page-content/WHY\ CHOOSE\ US.webp);
    background-color: #32230570;
    background-blend-mode: overlay;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 700px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.why__choose__us__section__heading {
    color: var(--clr-white);
    font-size: var(--size-5xl);
    font-weight: 600;
    text-shadow: 0px 2px 4px #00000090;
}

.why__choose__us__section__description {
    color: var(--clr-white);
    font-size: var(--size-sm);
    width: 90%;

}

.why__choose__us__text__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.why__choose__us__points__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
}

.why__choose__us__points__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    /* background-color: #19110320; */
    border: 2px solid #00000000;
    padding: 1rem 0;
    border-radius: 1rem;

    transition: all 0.3s;
}

.why__choose__us__points__box:hover {
    background-color: #7d580d50;
    border: 2px solid var(--clr-yellow);
    box-shadow: 0px 0px 40px #FAAF1A70;
    transform: scale(1.1);
    cursor: pointer;
}

.why__choose__us__points__icon {
    font-size: var(--size-6xl);
    color: var(--clr-white);
} 

.why__choose__us__points__box__description {
    color: var(--clr-white);
    font-weight: 400;
    font-size: var(--size-lg);
    text-align: center;
    padding: 0 10%;
}


/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {

    .why__choose__us__content__wrapper {
        gap: 2.5rem;
    }
    
    .why__choose__us__section__description {
        font-size: var(--size-base);
        width: 70%;
    }
    
    .why__choose__us__points__wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 0 2rem;
    }
    
    .why__choose__us__points__box {
        padding: 3rem 0;
    }
    
    .why__choose__us__points__icon {
        font-size: var(--size-6xl);
        color: var(--clr-white);
    } 
    
    .why__choose__us__points__box__description {
        font-size: var(--size-xl);
    }
}

/* lg */
@media (min-width: 1024px) {

    .why__choose__us__content__wrapper {
        height: 500px;
        gap: 0rem;
    }
    
    .why__choose__us__section__description {
        font-size: var(--size-base);
        width: 70%;
    }
    
    .why__choose__us__points__wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 0 2rem;
    }
    
    .why__choose__us__points__box {
        padding: 3rem 0;
    }
    
    .why__choose__us__points__icon {
        font-size: var(--size-8xl);
    } 
    
    .why__choose__us__points__box__description {
        font-weight: 400;
        font-size: var(--size-2xl);
    }
}

/* xl */
@media (min-width: 1280px) {

    .why__choose__us__content__wrapper {
        height: 500px;
        gap: 1rem;
    }
    
    .why__choose__us__section__description {
        font-size: var(--size-base);
        width: 70%;
    }
    
    .why__choose__us__points__wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 0 2rem;
    }
    
    .why__choose__us__points__box {
        padding: 3rem 0;
    }
    
    .why__choose__us__points__icon {
        color: var(--clr-white);
    } 
    
    .why__choose__us__points__box__description {
        font-size: var(--size-2xl);
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */


/* ------------------------------------ */
/* Why Choose US Section End */
/* ------------------------------------ */

/* ------------------------------------ */
/* Our Gallery Section Start */
/* ------------------------------------ */

.gallery__section__text__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 2rem;
}

.gallery__images__grid__column__container {
    display: grid;
    gap: 1rem;
}

.gallery__images__grid__row__container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery__images__grid__image__box {
    border-radius: 0.5rem;
    border: 2px solid var(--clr-white);

    transition: all 0.3s;
}

.gallery__images__grid__image__box:hover {
    transform: scale(1.05);
    border: 2px solid var(--clr-yellow);
    box-shadow: 0px 0px 40px #FAAF1A50;
}

.hide__on__mobile__images {
    display: none;
}



/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {
    
    .gallery__images__grid__column__container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .gallery__images__grid__row__container {
        gap: 0.8rem;
    }

    .hide__on__mobile__images {
        display: block;
    }
}

/* lg */
@media (min-width: 1024px) {
    
    .gallery__images__grid__image__box {
        border-radius: 1rem;
    }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */


/* ------------------------------------ */
/* Our Gallery Section End */
/* ------------------------------------ */

/* ------------------------------------ */
/* Tour Packages Archive Section Start */
/* ------------------------------------ */

.tour__packages__section__text__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 2rem;
}

.tour__packages__section__text__wrapper p {
    width: 60%;
}

.tours__packages__arhcive__wrapper {
    display: grid;
    gap: 2rem 1.5rem;
}

.tour__packages__archive__card {
    background-color: #fffce6;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid var(--clr-white);

    transition: all 0.3s;
}

.tour__packages__archive__card:hover {
    transform: scale(1.025);
    border: 2px solid var(--clr-yellow);
    box-shadow: 0px 0px 40px #FAAF1A50;
}

.tour__packages__archive__card__text__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0.8rem;

    padding: 1.2rem;
}

.tour__packages__archive__card__image {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.tour__packages__archive__card__titel {
    color: var(--clr-black);
    font-size: var(--size-xl);
    font-weight: 500;
}

.tour__packages__archive__card__description {
    color: var(--clr-black);
    font-size: var(--size-sm);
    font-weight: 300;
}

.tour__packages__archive__card__day__night__container {
    display: flex;
    gap: 2rem;
}

.tour__packages__archive__card__day__night__container div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}


/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {
    
    .tours__packages__arhcive__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tour__packages__archive__card__titel {
        font-size: var(--size-2xl);
    }
    
    .tour__packages__archive__card__description {
        font-size: var(--size-base);
    }

}

/* lg */
@media (min-width: 1024px) {
    
    .tours__packages__arhcive__wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem 1rem;
    }
    
    .tour__packages__archive__card__titel {
        color: var(--clr-black);
        font-size: var(--size-lg);
        font-weight: 500;
    }
    
    .tour__packages__archive__card__description {
        color: var(--clr-black);
    }
}

/* xl */
@media (min-width: 1280px) {
    
    .tours__packages__arhcive__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tour__packages__archive__card__titel {
        font-size: var(--size-2xl);
    }
    
    .tour__packages__archive__card__description {
        font-size: var(--size-base);
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */



/* ------------------------------------ */
/* Tour Packages Archive Section End */
/* ------------------------------------ */

/* ------------------------------------ */
/* Contact Us Section Start */
/* ------------------------------------ */


.contact__us__section__wrapper {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.contact__us__section__content__outter__wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__us__section__text__wrapper {
    padding: 0.5rem;
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact__us__content__box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1rem 1.5rem 0rem;
    border-radius: 1rem;
    border: 2px solid var(--clr-white);

    transition: all 0.3s;
}

.contact__us__content__box:hover {
    background-color: #fffacc;
    transform: scale(1.05);
    padding: 1.5rem 1rem 1.5rem 1rem;
    border: 2px solid var(--clr-yellow);
    box-shadow: 0px 0px 40px #fff7e8;
}

.contact__us__content__box__icon__wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--clr-yellow);
    border-radius: 50px;
}

.contact__us__content__box i {
    font-size: var(--size-4xl);
}

.contact__us__content__box h3 {
    font-size: var(--size-2xl);
    font-weight: 600;
    color: var(--clr-black);
}
.contact__us__content__box p {
    font-size: var(--size-base);
    font-weight: 400;
    color: var(--clr-black);
}
.contact__form__container__wrapper {
    padding: 0 2rem;
    padding-top: 5rem;  
    padding-bottom: 5rem;
    border-radius: 1rem;
    background-color: #fff7e8;
}

.contact__form__container__wrapper h1 {
    text-align: center;
    padding-bottom: 1.5rem;
    color: var(--clr-black);
    font-size: var(--size-4xl);
    font-weight: 500;
}

.contact__form__container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__form__container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__form__container div {
    display: flex;
    flex-direction: column;
}


.contact__us__form__label {
    font-size: var(--size-xl);
    color: var(--clr-black);
}

.contact__us__form__input__field {
    padding: 0.5rem;
    box-sizing: border-box;
    border: 1px solid #666666;
    border-radius: 0.4rem;
    outline: none;
}

.contact__us__form__input__field[type=text]:focus {
    border: 1px solid black;
}

.contact__us__form__input__field[type=email]:focus {
    border: 1px solid black;
}

.contact__us__form__input__field__text__area:focus {
    border: 1px solid black;
}

.contact__us__form__input__field::placeholder {
    color: #666666;
}

.contact__form__submit__button__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact__form__submit__button {
    text-align: center;
}

.contact__us__form__submit__button {
    background-color: var(--clr-yellow);
    color: var(--clr-black);
    font-size: var(--size-base);
    font-weight: 500;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 0.8rem;
    margin-top: 1rem;
    box-shadow: 0px 2px 4px #00000025;

    transition: all 0.3s;
}

.contact__us__form__submit__button:hover {
    cursor: pointer;
    color: var(--clr-white);
    background-color: #00BFFF;

}


/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {

    .contact__us__section__wrapper {
        display: grid;
        gap: 2.5rem;
    }
    
    .contact__us__section__content__outter__wrapper {
        gap: 3rem;
    }

    .contact__us__section__text__wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-bottom: 2rem;
    }
    
    .contact__us__section .section__description {
        text-align: center;
    }

    .contact__us__section__content__wrapper {
        /* background-color: red; */
        /* display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        align-items: center; */
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1rem 2rem;
    }
    
    .contact__us__content__box h3 {
        font-size: var(--size-2xl);
    }
    
    .contact__form__container__wrapper {
        padding: 0 7rem;
        padding-top: 5rem;  
        padding-bottom: 5rem;
        border-radius: 1rem;
        background-color: #fff7e8;
    }
    
}

/* lg */
@media (min-width: 1024px) {
    
    .contact__us__section__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact__us__section__content__outter__wrapper {
        gap: 3rem;
    }

    .contact__us__section__text__wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: start;
        padding-bottom: 2rem;
    }

    .contact__us__section__content__wrapper {
        display: grid;
        justify-content: start;
        gap: 1rem 2rem;
    }
    
    .contact__form__container__wrapper {
        padding: 0 7rem;
        padding-top: 5rem;  
        padding-bottom: 5rem;
        border-radius: 1rem;
        background-color: #fff7e8;
        background-color: #fffacc;
    }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */

/* ------------------------------------ */
/* Contact Us Section End */
/* ------------------------------------ */




.why__choose__us__section__2 {
    padding: 2.5rem 0rem;
}

.why__choose__us__section__2__text__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.why__choose__us__section__2__content__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;

    margin-top: 2rem;
}

.why__choose__us__section__2__icon__box {
    background-color: #ccf2ff;
    background-color: #e6f9ff;
    padding: 1.5rem 1rem;
    border-radius: 0.8rem;
    border: 2px solid #e6f9ff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;

    gap: 0.6rem;

    transition: all 0.3s;
}

.why__choose__us__section__2__icon__box:hover {
    cursor: pointer;
    border: 2px solid #00BFFF;
}


.why__choose__us__section__2__icon__box img {
    display: inline;
}

.why__choose__us__section__2__icon__box h3 {
    color: var(--clr-black);
    font-size: var(--size-sm);
    font-weight: 500;
}


/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {

    .why__choose__us__section__2__content__wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    
        margin-top: 2rem;
    }
    
    .why__choose__us__section__2__icon__box {
        background-color: #ccf2ff;
        background-color: #e6f9ff;
        padding: 1.5rem 1rem;
        border-radius: 0.8rem;
        border: 2px solid #e6f9ff;
    
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    
        gap: 0.6rem;
    
        transition: all 0.3s;
    }
    
    .why__choose__us__section__2__icon__box:hover {
        cursor: pointer;
        border: 2px solid #00BFFF;
    }
    
    
    .why__choose__us__section__2__icon__box img {
        display: inline;
    }
    
    .why__choose__us__section__2__icon__box h3 {
        color: var(--clr-black);
        font-size: var(--size-xl);
        font-weight: 600;
    }
}

/* lg */
/* @media (min-width: 1024px) {} */

/* xl */
@media (min-width: 1280px) {

    .why__choose__us__section__2__content__wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    
        margin-top: 2rem;
    }
    
    .why__choose__us__section__2__icon__box {
        background-color: #ccf2ff;
        background-color: #e6f9ff;
        padding: 1.5rem 1rem;
        border-radius: 0.8rem;
        border: 2px solid #e6f9ff;
    
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    
        gap: 0.6rem;
    
        transition: all 0.3s;
    }
    
    .why__choose__us__section__2__icon__box:hover {
        cursor: pointer;
        border: 2px solid #00BFFF;
    }
    
    
    .why__choose__us__section__2__icon__box img {
        display: inline;
    }
    
    .why__choose__us__section__2__icon__box h3 {
        color: var(--clr-black);
        font-size: var(--size-xl);
        font-weight: 600;
    }
    
}

/* 2xl */
/* @media (min-width: 1536px) {} */