/* ------------------------------------ */
/* Footer Start */
/* ------------------------------------ */


.footer {
    /* margin-top: 2rem; */
    background-color: var(--clr-black);
    color: var(--clr-white);
}

.footer__top__container,
.footer__bottom__container {
    padding-top: 5rem;
    /* border: 1px solid red; */
}

footer a {
    color: #fff7e8;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--clr-yellow);
}

.footer__top__container {
    display: grid;
    gap: 4rem;
    /* grid-template-columns: repeat(3, 1fr); */
}

.about__us__details img {
    padding-bottom: 1rem;
    width: 180px;
}

.about__us__details p {
    font-size: var(--size-sm);
    text-align: justify;
}

.contact__details h1 {
    font-weight: 500;
    padding-bottom: 1.8rem;
}

.contact__details p {
    padding-top: 1rem;
    width: 35ch;
}

.contact__details strong {
    font-weight: 400;
    font-size: var(--size-xl);
}

.social__icons__details h1 {
    font-weight: 500;
    padding-bottom: 1.5rem;
}

.social__icons__details ul {
    list-style: none;
    padding: 0px;
}

.social__icons__details li {
    font-size: var(--size-xl);
    color: var(--clr-white);
    padding-top: 1rem;
}

.social__icons__details p {
    background-color: red;
}

.social__icons__details .social__icon {
    color:var(--clr-white);
    font-size: var(--size-3xl);
    padding-right: 0.8rem;
}

.footer__bottom__container p {
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer__bottom__container a {
    font-weight: 600;
}

.footer__social__icons__trip__advisory__icon {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.8rem;
}

.footer__social__icons__trip__advisory__icon img {
    width: 26px;
}


/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {
    .footer__top__container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

/* lg */
/* @media (min-width: 1024px) {} */

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */



/* ------------------------------------ */
/* Footer End */
/* ------------------------------------ */