* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root {
    --primary: #fdd340;
    /*--primary: #0052A4;*/
    --secondary: #1d252b;
    --heading: #333;
    --para: #848484;
    --bg-gray: #f3f4f5;
}
body {
    font-family: 'Nunito Sans', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Quicksand', sans-serif;
}
a {
    text-decoration: none;
    color: var(--heading);
}
a:hover {
    color: var(--primary);
}
.p-top {
    padding-top: 140px;
}
.p-bottom {
    padding-bottom: 140px;
}
.bg-gray {
    background-color: var(--bg-gray);
}
.nav-active {
    color: var(--para) !important;
    width: 100%;
    border-bottom: 2px solid var(--primary);
}
.navbar {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px -3px 20px 0px rgb(0 0 0 / 30%);
    position: relative;
    padding: 8px 0px;
    background-color: #fff;
}
.navbar-toggler {
    font-size: 1rem;
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.offcanvas {
    background-color: var(--secondary);
}
.offcanvas-start {
    width: 65%;
}
.btn-warning-custom {
    color: var(--heading);
    position: absolute;
    height: 100%;
    background-color: var(--primary);
    border: none;
    outline: none;
    right: 0;
    top: 0;
    text-align: center;
    line-height: 65px;
    border-radius: 0px;
    font-size: 14px;
    width: 175px;
    font-weight: 700;
    font-family: 'Quicksand';
    transition: all 0.3s ease-in-out;
}
.btn-warning-custom:hover {
    background-color: var(--secondary);
    color: var(--bg-gray);
    border-bottom: 0px;
}
.navbar-logo {
    color: var(--primary);
    text-decoration: none;
    font-size: 25px;
    padding: 0px 20px;
}
.navbar-links {
    list-style-type: none;
    display: flex;
    margin: 0;
}
.navbar-links li {
    padding: 20px;
}
.navbar-links li a {
    display: block;
    text-decoration: none;
    color: var(--heading);
    /* padding: 20px 20px; */
    font-weight: 700;
    transition: 0.4s all;
}
.navbar-links li.navbar-dropdown {
    position: relative;
}
.navbar-links li.navbar-dropdown:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}
.nav-link {
    padding: 0;
}
.navbar-links li.navbar-dropdown .dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: 20px 0;
    top: 100%;
    transform: translateY(50px);
    right: 0;
    width: 250px;
    background-color: var(--secondary);
    box-shadow: 0px 10px 10px 3px rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    z-index: 111;
    transition: 0.4s all;
}
.navbar-links li.navbar-dropdown .dropdown a {
    padding-top: 10px;
    padding-bottom: 10px;
    width: fit-content;
    font-weight: 400;
    color: var(--bg-gray);
}
.navbar-links li a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width .3s;
}
.navbar-links li a:hover::after {
    width: 100%;
    /* transition: width .3s; */
}
.navbar-dropdown .dropdown a:hover {
    padding-left: 30px;
    color: var(--para) !important;
}
.navbar-links li a:hover {
    color: var(--para);
}
.dropdown-item:focus,
.dropdown-item:hover {
    background-color: transparent;
}
.dropdown-menu {
    border: 0px;
}
.dropdown-toggle::after {
    margin-left: 10px;
}
.fa-chevron-down {
    font-size: 12px;
}
/* ======================= Main Slider ============================= */
.slide {
    position: relative;
    transition: 1s;
}
.slide .slide__img {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.slide .slide__img img {
    max-width: 100%;
    width: 100%;
    height: auto;
    opacity: 1 !important;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    transition: all 1s ease;
}
.slide .slide__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.slide .slide__content.slide__content__left {
    left: 15%;
    transform: translate(-15%, -50%);
}
.slide .slide__content.slide__content__right {
    right: 15%;
    left: auto;
    transform: translate(5%, -50%);
}
.slide .slide__content--headings {
    color: #FFF;
}
.slide .slide__content--headings h2 {
    font-size: 4.5rem;
    margin: 10px 0;
}
.slide .slide__content--headings .animated {
    transition: all 0.5s ease;
}
.slide .slide__content--headings .top-title {
    /* font-family: "Playball", cursive; */
    font-size: 2.5rem;
}
.slide .slide__content--headings .title {
    font-size: 3.5rem;
}
.slide .slide__content--headings .button-custom {
    text-decoration: none;
    color: #333;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}
.slider [data-animation-in] {
    opacity: 0;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
    transition: 1s;
}
.slick-dotted .slick-slider {
    margin-bottom: 30px;
}
.slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: #fdd340;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.simple-dots .slick-dots li {
    width: 20px;
    height: 20px;
}
.simple-dots .slick-dots li button {
    border-radius: 50%;
    background-color: white;
    opacity: 0.25;
    width: 20px;
    height: 20px;
}
.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
    opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}
.stick-dots .slick-dots li {
    height: 3px;
    width: 50px;
}
.stick-dots .slick-dots li button {
    position: relative;
    background-color: white;
    opacity: 0.25;
    width: 50px;
    height: 3px;
    padding: 0;
}
.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
    opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}
.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
    opacity: 1;
}
/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
        transition: 1s;
    }
    to {
        transform: scale3d(1.1, 1.1, 1.1);
        transition: 1s;
    }
}
@keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
        transition: 1s;
    }
    to {
        transform: scale3d(1.1, 1.1, 1.1);
        transition: 1s;
    }
}
.zoomInImage {
    -webkit-animation-name: zoomInImage;
    animation-name: zoomInImage;
}
@-webkit-keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
        transition: 1s;
    }
    to {
        transform: scale3d(1, 1, 1);
        transition: 1s;
    }
}
@keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
        transition: 1s;
    }
    to {
        transform: scale3d(1, 1, 1);
        transition: 1s;
    }
}
.zoomOutImage {
    -webkit-animation-name: zoomOutImage;
    animation-name: zoomOutImage;
    transition: 1s;
}
.slick-nav {
    --active: #fff;
    --border: rgba(255, 255, 255, .12);
    width: 44px;
    height: 44px;
    position: absolute;
    cursor: pointer;
    top: calc(50% - 44px);
}
.slick-nav.prev-arrow {
    left: 3%;
    transform: scaleX(-1);
    z-index: 999;
}
.slick-nav.next-arrow {
    left: auto;
    right: 3%;
}
.slick-nav i {
    display: block;
    position: absolute;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
}
.slick-nav i:before,
.slick-nav i:after {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--active);
    margin: -1px 0 0 -5px;
    display: block;
    transform-origin: 9px 50%;
}
.slick-nav i:before {
    transform: rotate(-40deg);
}
.slick-nav i:after {
    transform: rotate(40deg);
}
.slick-nav:before,
.slick-nav:after {
    content: "";
    display: block;
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    border-radius: 50%;
    border: 2px solid var(--border);
}
.slick-nav svg {
    width: 44px;
    height: 44px;
    display: block;
    position: relative;
    z-index: 1;
    color: var(--active);
    stroke-width: 2px;
    stroke-dashoffset: 126;
    stroke-dasharray: 126 126 0;
    transform: rotate(0deg);
}
.slick-nav.animate svg {
    -webkit-animation: stroke 1s ease forwards 0.3s;
    animation: stroke 1s ease forwards 0.3s;
}
.slick-nav.animate i {
    -webkit-animation: arrow 1.6s ease forwards;
    animation: arrow 1.6s ease forwards;
}
.slick-nav.animate i:before {
    -webkit-animation: arrowUp 1.6s ease forwards;
    animation: arrowUp 1.6s ease forwards;
}
.slick-nav.animate i:after {
    -webkit-animation: arrowDown 1.6s ease forwards;
    animation: arrowDown 1.6s ease forwards;
}
@-webkit-keyframes stroke {
    52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
    }
    52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
    }
    100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
    }
}
@keyframes stroke {
    52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
    }
    52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
    }
    100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
    }
}
@-webkit-keyframes arrow {
    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }
    23% {
        transform: translateX(17px);
        opacity: 1;
    }
    24%,
    80% {
        transform: translateX(-22px);
        opacity: 0;
    }
    81% {
        opacity: 1;
        transform: translateX(-22px);
    }
}
@keyframes arrow {
    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }
    23% {
        transform: translateX(17px);
        opacity: 1;
    }
    24%,
    80% {
        transform: translateX(-22px);
        opacity: 0;
    }
    81% {
        opacity: 1;
        transform: translateX(-22px);
    }
}
@-webkit-keyframes arrowUp {
    0%,
    100% {
        transform: rotate(-40deg) scaleX(1);
    }
    20%,
    80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}
@keyframes arrowUp {
    0%,
    100% {
        transform: rotate(-40deg) scaleX(1);
    }
    20%,
    80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}
@-webkit-keyframes arrowDown {
    0%,
    100% {
        transform: rotate(40deg) scaleX(1);
    }
    20%,
    80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}
@keyframes arrowDown {
    0%,
    100% {
        transform: rotate(40deg) scaleX(1);
    }
    20%,
    80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}
/* ================== About us ============================ */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.25);
    /* Black see-through */
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity: 0;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: start;
}
.show-overlay {
    opacity: 1;
}
.about-img-box .img-content {
    position: absolute;
    bottom: 0;
    padding: 40px;
    color: #fff;
}
.about-img-box .img-content h4 {
    font-size: 30px;
    font-weight: 700;
    line-height: 50px;
    text-transform: uppercase;
}
.about-img-box .img-content h4 span:nth-of-type(2) {
    font-weight: 300;
}
.content-area h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    text-transform: uppercase;
}
.content-area h2 span:nth-of-type(1) {
    border-bottom: 1px solid var(--primary);
}
.content-area h2 span:nth-of-type(2) {
    font-weight: 300;
}
/* ================== Image Gallery ================== */
.heading-title h2 {
    display: inline-block;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--primary);
}
.gallery-box {
    overflow: hidden;
    position: relative;
}
.gallery-box img {
    height: inherit;
    object-fit: cover;
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.gallery-box:hover img {
    transform: scale(1.2);
}
.gallery-box:hover .overlay {
    opacity: 1;
    background: #fdd34080;
}
.gallery-content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.gallery-content h3 {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}
.gallery-box:hover .gallery-content {
    background-color: var(--primary);
}
.gallery-box:hover .gallery-content h3 {
    color: var(--secondary);
}
/* =========================== Tour Package ================== */
.package-content .package-title h2 {
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 10px;
    display: inline-block;
    border-bottom: 1px solid var(--primary);
}
.package-content .card {
    border: none;
    border-radius: 0;
    box-shadow: 0px 0px 12px 0px #02020273;
}
.package-content .card img {
    width: 100%;
    height: 100%;
    max-height: 160px;
    object-fit: cover;
}
.package-content .custom-list {
    border: none;
    transition: all 0.3s ease-in-out;
}
.package-content .custom-list:hover {
    background-color: var(--secondary);
    color: var(--bg-gray);
}
.package-banner .banner-content .btn-load {
    transition: all 0.3s ease-in-out;
}
/* =================== Testimonials ============================ */
.testi-content .testi-title p {
    font-size: 12px;
}
.testi-content .testi-title h2 {
    font-size: 35px;
    font-weight: 700;
}
.testi-content .testi-title h2 span:nth-of-type(1) {
    border-bottom: 1px solid var(--primary);
}
.quotes .slick-dots .slick-active button {
    background-color: var(--primary);
    border-radius: 50%;
    padding: 10px;
}
.bubble blockquote {
    margin: 10px 10px 0;
    background: var(--bg-gray);
    padding: 60px;
    position: relative;
    border: none;
    border-radius: 8px;
    font-size: 1.25em;
    color: var(--para);
}
.bubble blockquote:before,
.bubble blockquote:after {
    content: "\201C";
    position: absolute;
    font-size: 80px;
    padding: 10px;
    line-height: 1;
    color: var(--primary);
}
.bubble blockquote:before {
    top: 0;
    left: 10px;
}
.bubble blockquote:after {
    content: "\201D";
    right: 10px;
    bottom: -.5em;
}
.bubble div {
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--bg-gray);
    margin: 0 0 0 60px;
    margin-bottom: 10px;
}
.bubble cite {
    padding-left: 20px;
    font-size: 1.25em;
    color: var(--secondary);
}
/* ======================= Safari Tour  ============================= */
.grid__item .card {
    border: none;
    overflow: hidden;
    border-radius: 0;
}
.grid__item {
    border-radius: 0.4rem;
    overflow: hidden;
    box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.2s;
}
.grid__item:hover {
    transform: translateY(-0.5%);
    box-shadow: 0 4rem 8rem rgba(0, 0, 0, 0.2);
}
.card__img {
    display: block;
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: all 0.5s;
}
.grid__item:hover .card__img {
    transform: scale(1.2);
}
/*.grid__item:hover .card__content {
    background-color: #fff;
    transform: translateY(0px);
}
.grid__item:hover .card__header {
    color: var(--secondary);
}
.grid__item:hover .card__text {
    display: block;
} */
.card__content {
    padding: 2rem 1rem;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    transform: translateY(40px);
    transition: all 0.3s ease-in-out;
}
.card__header {
    font-size: 35px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 1rem;
    transition: all 0.3s ease-in-out;
}
.card__text {
    display: none;
    font-size: 13px;
    letter-spacing: 0.05rem;
    line-height: 1.7;
    color: #3d3d3d;
    margin-bottom: 0rem;
}
.card__btn {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 16px;
    text-align: center;
    color: var(--secondary);
    background-color: var(--primary);
    border: none;
    transition: 0.2s;
    font-weight: 700;
    cursor: pointer;
}
.btn__2 {
    color: var(--primary);
    background-color: var(--secondary);
}
.card__btn span {
    margin-left: 1rem;
    transition: 0.2s;
}
.card__btn:hover,
.card__btn:active {
    background-color: #dce4ff;
}
.btn__2:hover,
.btn__2:active {
    color: var(--secondary);
}
.card__btn:hover span,
.card__btn:active span {
    margin-left: 1.5rem;
}
/* =============== Footer ====================== */
ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
    background: var(--secondary);
    position: relative;
}
.footer-cta {
    border-bottom: 1px solid #373636;
}
.single-cta i {
    color: var(--primary);
    font-size: 30px;
    float: left;
    margin-top: 8px;
}
.cta-text {
    padding-left: 15px;
    display: inline-block;
}
.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}
.cta-text span {
    color: #757575;
    font-size: 15px;
}
.footer-content {
    position: relative;
    z-index: 2;
}
.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}
.footer-logo {
    margin-bottom: 30px;
}
.footer-logo img {
    max-width: 100%;
}
.footer-text p {
    margin-bottom: 14px;
    font-size: 15px;
    color: #7e7e7e;
    line-height: 28px;
}
.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}
.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}
.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}
.facebook-bg {
    background: #3b5998;
}
.twitter-bg {
    background: #55acee;
}
.google-bg {
    background: #dd4b39;
}
.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}
.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: var(--primary);
}
.footer-widget ul li {
    display: inline-block;
    /* float: left; */
    /*width: 50%;*/
    margin-bottom: 12px;
}
.footer-widget ul li a:hover {
    color: var(--primary);
}
.footer-widget ul li a {
    color: #878787;
    text-transform: capitalize;
}
.subscribe-form {
    position: relative;
    overflow: hidden;
}
.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2e2e2e;
    border: 1px solid #2e2e2e;
    color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: var(--primary);
    padding: 13px 20px;
    border: 1px solid var(--primary);
    top: 0;
}
.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}
.copyright-area {
    background: #202020;
    padding: 25px 0;
}
.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}
.copyright-text p a {
    color: var(--primary);
}
.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}
.footer-menu li:hover a {
    color: var(--primary);
}
.footer-menu li a {
    font-size: 14px;
    color: #878787;
}
/* ======================= my-breadcrumb ====================== */
.my-breadcrumb {
    position: relative;
    height: 40vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.my-breadcrumb .overlay {
    background: linear-gradient(90deg, rgb(33 37 41 / 75%), transparent);
}
.my-breadcrumb .container h1 {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}
.breadcrumb-item.active {
    color: var(--primary);
}
.breadcrumb-item a {
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.breadcrumb-item:hover a {
    color: var(--primary);
}
/* ==================== Contact Form ===================== */
.form-control {
    border-radius: 0px;
}
.form-control:focus {
    border-color: #212529;
    box-shadow: 0 0 0 0.25rem #21252959;
}
form .custom-list:hover {
    background-color: var(--secondary);
    color: #fff;
}
.custom-card {
    border-radius: 0px;
    padding: 100px 0px;
}
.custom-card-side {
    padding: 30px 0px;
    border-radius: 0;
}
.custom-card-side .form-floating > label {
    padding: 0.3rem 0.75rem;
}
.custom-card-side .form-floating > .form-control,
.form-floating > .form-select {
    height: calc(2.5rem + 2px);
}
.custom-card-side h3 {
    font-size: 25px;
}
.category .card__img {
    height: 15rem;
}
.category .card__header {
    font-size: 25px;
}
.sidebar-fixed {
    position: sticky;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    height: 100%;
    top: 20px;
    bottom: auto;
}
/* ================== Pagination ===================== */
li.page-item {
    margin-right: 10px;
}
.page-item .page-link {
    color: var(--heading);
    font-weight: 600;
}
.page-item.p-active .page-link {
    z-index: 3;
    color: var(--heading);
    width: auto;
    background-color: var(--primary);
    border-color: var(--primary);
}
.pagination-lg .page-item:first-child .page-link,
.pagination-lg .page-item:last-child .page-link {
    border-radius: 0px;
}
.page-link:focus,
.page-link:hover {
    box-shadow: none;
    background-color: var(--secondary);
    color: #fff;
}
/* ================== Detailed Page Slider ================== */
.page-slider .slick-dots {
    position: static;
}
.slider-dots .slide img {
    border-radius: 7px;
    height: 130px;
    width: 100%;
    object-fit: cover;
}
.slider-dots .slide {
    padding: 0px 7px;
}
.list-group-item {
    border: none;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid rgb(236, 236, 236);
}
.list-group-item:hover {
    padding-left: 10px;
}
/* =================== Media Queries ================ */
@media (max-width:490px) {
    .navbar {
        padding: 10px 15px;
    }
    .category .card__header {
        font-size: 22px;
        margin-bottom: 1rem;
    }
    .category .card__img {
        height: 12rem;
    }
    .category .card__content {
        padding: 1rem 2rem;
    }
    .navbar-logo {
        padding: 0;
    }
    .navbar-links {
        list-style-type: none;
        display: flex;
        width: 100%;
        margin-top: 10px;
        padding: 0 15px;
        flex-direction: column;
    }
    .fa-chevron-down,
    .navbar-links li a:not(focus).fa-chevron-down {
        float: right;
        font-size: 10px;
        transform: rotate(-90deg);
        transition: all 0.3s ease-in-out;
    }
    .navbar-links li a:focus .fa-chevron-down {
        transform: rotate(0deg);
    }
    .navbar-links li {
        padding: 10px;
    }
    .navbar-links li a {
        display: block;
        text-decoration: none;
        color: #ffffffde;
        font-weight: 500;
        font-size: 14px;
        transition: 0.4s all;
    }
    .navbar-links li.navbar-dropdown .dropdown {
        position: static;
        padding: 8px 10px;
        width: 100%;
        background-color: var(--secondary);
        box-shadow: none;
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }
    .dropdown-toggle::after {
        float: right;
    }
    .btn-warning {
        height: auto;
        width: auto;
        right: 0;
        left: 0;
        bottom: 0;
        top: auto;
    }
}
@media (min-width: 992px) {
    .slider .slide {
        height: 80vh;
    }
    .page-slider .slide {
        height: 500px;
    }
}
@media (min-width: 992px) {
    .slide .slide__img {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}
@media (max-width: 490px) {
    .slide .slide__content--headings .top-title {
        font-size: 1.3rem;
    }
    .slide .slide__content--headings .title {
        font-size: 1.6rem;
    }
    .slide .slide__content--headings .button-custom {
        padding: 0.5rem 1rem;
        font-size: 14px;
    }
    .content-area h2,
    .heading-title h2 {
        font-size: 35px;
    }
    .card__img {
        height: 12rem;
    }
    .card__content {
        position: static;
        transform: translate(0, 0);
    }
    .card__header {
        color: var(--heading);
        font-size: 30px;
    }
    .card__text {
        display: block;
        font-size: 15px;
    }
    .testi-content .testi-title h2 {
        font-size: 30px;
    }
    .bubble blockquote {
        padding: 40px;
    }
    .slide .slide__img {
        height: 350px;
    }
    .slide .slide__img img {
        height: inherit;
        object-fit: cover;
    }
    .pagination-lg .page-link {
        padding: .5rem 1rem;
    }
    .slider-dots .slide img {
        height: 40px;
    }
    .page-slider .slide .slide__img {
        height: 200px;
    }
}