/*
Theme Name: A Bar A Ranch
Author: Gourav
Version: 1.0
*/

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

body {
    background: #ebe4d3;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

.sl-overlay {
    z-index: 9999 !important;
}

h5.page_sab_heading {
    color: #8b4a2b;
    font-size: 22px;
    letter-spacing: 0.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
}

.content-text h3 {
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    color: #8b4b2b;
    margin: 50px 0 20px;
    letter-spacing: 1px;
}

.content-text p {
    margin-bottom: 25px;
}


/* --------------------------------Scroll-Top Css----------------------------------------- */

#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #8a4525;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    display: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 35px -10px rgba(255, 255, 255, 0.8);
}

#scroll-top span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}

#scroll-top:hover {
    box-shadow: 0 0 40px -5px rgba(255, 255, 255, 0.8);
}


/* ========================= HEADER ========================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
    background: transparent;
    background: #ebe4d3;
}


/* STICKY ON SCROLL */

.main-header.sticky {
    background: #ebe4d3;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
}


/* BODY TOP SPACE */


/* OPTIONAL LOGO SIZE */

.main-header.sticky .header-logo img {
    max-height: 70px;
    transition: all 0.3s ease;
}

.header-wrapper {
    margin: auto;
    padding: 18px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}


/* ========================= LEFT / RIGHT ========================= */

.header-left,
.header-right {
    width: 35%;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 70px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-right .main-menu {
    justify-content: flex-end;
}


/* ========================= MENU LINKS ========================= */

.main-menu li {
    position: relative;
}

.main-menu li a {
    text-decoration: none;
    color: rgb(17, 17, 17);
    font-size: 17px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.main-menu li a:hover {
    color: #8b4a2b;
}


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

.reservation-btn a {
    background: #8b4a2b;
    color: #fff !important;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 17px !important;
}

.reservation-btn a:hover {
    background: #6f361c;
}


/* ========================= LOGO ========================= */

.header-logo {
    width: 30%;
    display: flex;
    justify-content: center;
}

.header-logo img {
    width: 340px;
    max-width: 100%;
    display: block;
}


/* ========================= NORMAL DROPDOWN ========================= */

.dropdown-menu {
    min-width: 260px;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    gap: 60px;
    background: #ebe4d3;
    padding: 65px 20px 20px;
    opacity: 0;
    visibility: hidden;
    /* transform: translateY(15px); */
    transition: 0.35s ease;
    z-index: 99999;
    border: none;
    border-radius: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 22px;
    font-size: 17px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    /* top:100%; */
    display: block;
}


/* ========================= MEGA MENU ========================= */

.mega-menu {
    position: absolute;
    top: 120%;
    left: 0;
    gap: 60px;
    background: #ebe4d3;
    padding: 65px 20px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.35s ease;
    z-index: 99999;
}

.mega-menu ul.destop_ul {
    padding: 0 12px;
}

.about-menu {
    min-width: 300px;
}

.mega-menu-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
}


/* COLUMN */

.mega-column {
    min-width: 180px;
}

.mega-column h4 {
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #111;
}

.mega-column ul {
    list-style: none;
}

.mega-column ul li {
    margin-bottom: 6px;
}

.mega-column ul li a {
    text-decoration: none;
    color: #111;
    font-size: 17px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.mega-column ul li a:hover {
    color: #8b4a2b;
}


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

.toggle-btn {
    width: 45px;
    height: 45px;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999999;
}

.toggle-btn span {
    width: 32px;
    height: 3px;
    background: #111;
    margin: 4px 0;
    transition: 0.4s ease;
}


/* ANIMATION */

.toggle-btn.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.toggle-btn.active span:nth-child(2) {
    opacity: 0;
}

.toggle-btn.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}


/* ========================= MOBILE MENU  ========================= */

.mobile-menu {
    width: 100%;
    background: #ebe4d3;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease;
}

.mobile-menu.active {
    max-height: 1200px;
    padding: 30px;
}

.mobile_ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile_ul li {
    margin-bottom: 18px;
    position: relative;
}

.mobile_ul .dropdown-menu li a {
    font-family: 'Archivo Narrow', sans-serif;
    /* font-weight: 400; */
    text-decoration: none;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    padding: 0 15px;
}

.mobile_ul li a {
    font-size: 18px;
    /* font-family: 'Oswald', sans-serif; */
    font-family: 'Archivo Narrow', sans-serif;
    /* font-weight: 400; */
    text-decoration: none;
    color: #111;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}


/* SUB MENU */

.mobile_ul .sub-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    padding-left: 15px;
    margin-top: 10px;
}

.mobile_ul .sub-menu li {
    margin: 12px 0;
}

.mobile_ul .sub-menu li a {
    font-size: 16px;
    text-transform: none;
}


/* OPEN DROPDOWN */

.mobile_ul .menu-item-has-children.active>.sub-menu {
    max-height: 500px;
}


/* PLUS ICON */

.mobile-arrow {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}


/* ROTATE ICON */

.mobile_ul .menu-item-has-children.active>.mobile-arrow {
    transform: rotate(45deg);
}


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

.abara-footer {
    position: relative;
    background: #8b4322;
    overflow: hidden;
    padding: 70px 70px 50px;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
}

.abara-footer-overlay {
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    height: 220px;
    background: rgba(255, 255, 255, 0.03);
    z-index: 1;
}

.abara-footer-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.abara-footer-links {
    display: flex;
    gap: 70px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-column a {
    color: #f3eadc;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
    width: fit-content;
}

.footer-column a:hover {
    opacity: 0.8;
}

.footer-column .active-link {
    background: #efe5d3;
    color: #8b4322;
    padding: 7px 18px;
    border-radius: 6px;
}

.abara-footer-center {
    text-align: center;
    margin-top: 10px;
}

.footer-logo img {
    width: 240px;
    max-width: 100%;
    object-fit: contain;
}

.stay-connected {
    margin-top: 55px;
}

.stay-connected h4 {
    color: #f3eadc;
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-icons a {
    color: #f3eadc;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.abara-footer-contact {
    max-width: 360px;
}

.abara-footer-contact p a {
    color: #f3eadc;
    text-decoration: none;
}

.abara-footer-contact p a:hover {
    color: #f3eadcc8;
}

.abara-footer-contact h3 {
    color: #f3eadc;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 28px;
    font-weight: 600;
    letter-spacing: 1px;
}

.abara-footer-contact p {
    color: #f3eadc;
    font-size: 19px;
    line-height: 1.15;
    margin-bottom: 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.abara-footer-contact .copyright {
    margin-top: 20px;
}


/* =========================    Home - CSS    ========================= */

.mobile_hide {
    display: none;
}

.destop_hide {
    display: block;
}


/* HERO SLIDER */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 720px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.08);
    transition: opacity 1.2s ease, transform 6s ease, visibility 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================
DOTS
========================= */

.slider-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s ease;
}

.dot.active {
    opacity: 1;
    transform: scale(1.2);
}


/* =========================
INTRO
========================= */

.intro-section {
    position: relative;
    padding: 90px 20px 120px;
    text-align: center;
}

.intro-section .all_heading {
    width: 80%;
    margin: auto;
}

.intro-bg-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 260px;
    opacity: 0.03;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
    white-space: nowrap;
}

.intro-section h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 60px;
}

.intro-section h3 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
    color: #8a4525;
    letter-spacing: 1px;
    font-size: 24px;
    margin-bottom: 30px;
}

.intro-section p {
    font-size: 29px;
    line-height: 1.5;
    max-width: 950px;
    margin: 0 auto 25px;
}

.manager-box {
    margin-top: 35px;
}

.manager-box span {
    display: block;
    font-size: 30px;
    margin-bottom: 15px;
}

.manager-box strong {
    display: block;
    font-size: 34px;
    font-weight: 700;
}

.manager-box b {
    font-size: 32px;
}


/* =========================
CONTENT
========================= */

.content-section {
    padding: 0px 50px 100px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 70px;
    align-items: center;
}

.content-image {
    position: relative;
}

.content-image img {
    width: 100%;
    position: relative;
    z-index: 2;
}

.image-title {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 62px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.content-text h4 {
    color: #8a4525;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 25px;
}

.content-text p {
    color: #111;
    font-size: 22px;
    line-height: 1.5;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
    margin-left: 50px;
}


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

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.media-item {
    position: relative;
    overflow: hidden;
}

.media-item video,
.media-item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.media-title {
    padding-top: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}


/* ----------------------------------- */


/* =========================
MEDIA SECTION
========================= */

.media-section {
    background: #ebe4d3;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


/* =========================
MEDIA ITEM
========================= */

.media-item img {
    width: 100%;
    display: block;
}


/* =========================
CUSTOM VIDEO
========================= */

.custom-video {
    position: relative;
    overflow: hidden;
    background: #000;
}


/* THUMB */

.video-thumb {
    width: 100%;
    display: block;
}


/* IFRAME */

.video-frame {
    width: 100%;
    height: 550px;
    border: none;
    display: none;
}


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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
}


/* PLAY ICON */

.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-left: 24px solid #111;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}


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

.abara-footer {
    background: #8a4525;
    padding: 55px 50px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-column a {
    color: #fff;
    font-size: 24px;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
}

.footer-active {
    background: #f3efe7;
    color: #8a4525 !important;
    padding: 8px 14px;
    width: fit-content;
}

.footer-center {
    text-align: center;
}

.footer-center img {
    width: 230px;
    margin: auto;
}

.footer-center h5 {
    color: #fff;
    font-size: 18px;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
    margin: 35px 0 18px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
}

.footer-contact h3 {
    color: #fff;
    font-size: 36px;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-contact p {
    color: #fff;
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 22px;
}


/* =========================    Horseback Riding  - CSS    ========================= */


/* HERO */

.horseback-hero {
    position: relative;
    height: 550px;
}

.horseback-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 300;
}


/* CONTENT */

.horseback-content {
    padding: 80px 0;
    position: relative;
}

.content-image img {
    width: 100%;
}

.content-text {
    font-size: 17px;
    line-height: 1.9;
}

.page-template-horseback-riding-page-templete .watermark {
    position: absolute;
    bottom: -140px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 170px;
    color: rgba(0, 0, 0, .03);
    z-index: 1;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
    white-space: nowrap;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}


/* VIDEO */

.video-section {
    padding: 30px 0 70px;
}

.video-text {
    text-align: center;
    margin-bottom: 25px;
    color: #111;
    font-size: 22px;
    line-height: 1.5;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
}

.video-wrapper {
    max-width: 700px;
    margin: auto;
}

.video-wrapper iframe {
    width: 100%;
    height: 400px;
}


/* GALLERY */

.gallery-section {
    padding-bottom: 80px;
}

.gallery-title {
    text-align: center;
    color: #8c4f2b;
    margin-bottom: 40px;
}

.gallery-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.gallery-arrow {
    text-align: center;
    margin-top: 30px;
    color: #c9b79e;
    font-size: 30px;
}


/* TESTIMONIAL */

.testimonial-section {
    background: #ebe2d3;
    padding: 100px 0;
}

.testimonial-content {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.testimonial-content p {
    font-size: 30px;
    line-height: 1.6;
}


/* MOBILE */

@media(max-width:991px) {
    .hero-overlay h1 {
        font-size: 50px;
    }
    .page-template-horseback-riding-page-templete .watermark {
        font-size: 70px;
    }
    .video-wrapper iframe {
        height: 320px;
    }
}

@media(max-width:767px) {
    .horseback-hero {
        height: 300px;
    }
    .hero-overlay h1 {
        font-size: 36px;
    }
    .testimonial-content p {
        font-size: 20px;
    }
}


/* =========================    Kids  - CSS    ========================= */

.sl-overlay {
    background: #000 !important;
}

.sl-wrapper .sl-navigation button.sl-next,
.sl-wrapper .sl-navigation button.sl-prev {
    color: #fff !important;
}

.sl-wrapper .sl-close,
.sl-wrapper .sl-close {
    top: 25% !important;
    color: #fff !important;
}

.ngg-galleryoverview {
    margin-bottom: 20px !important;
}

.kids-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.kids-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kids-overlay {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
}

.kids-overlay h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
}

.kids-content {
    background: #f3efe9;
    padding: 80px 0;
    position: relative;
}

.kids-text {
    max-width: 1050px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.kids-text p {
    color: #111;
    font-size: 22px;
    line-height: 1.5;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
}

.watermark {
    position: absolute;
    /* top: 270px; */
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    color: rgba(0, 0, 0, .03);
    bottom: -12%;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
    white-space: nowrap;
}

.kids-gallery-sec {
    background: #f3efe9;
    padding-bottom: 80px;
}

@media(max-width:991px) {
    .watermark {
        font-size: 90px;
    }
    .kids-overlay h1 {
        font-size: 55px;
    }
}

@media(max-width:767px) {
    .kids-hero {
        height: 320px;
    }
    .kids-overlay h1 {
        font-size: 40px;
    }
    .watermark {
        display: none;
    }
}


/* =========================    Hiking - CSS    ========================= */

.page-template-hiking-page-templete .horseback-content {
    background: #f1ecdf;
    padding: 60px 0 20px 0;
    position: relative;
}


/* =========================    Shooting Sports - CSS    ========================= */

.page-template-shooting-sports-page-templete .horseback-content {
    background: #f1ecdf;
    padding: 60px 0 20px 0;
    position: relative;
}


/* =========================    Dining - CSS    ========================= */

.page-template-dining-page-templete .watermark {
    position: absolute;
    /* top: 270px; */
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    color: rgba(0, 0, 0, .03);
    bottom: -70%;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
    white-space: nowrap;
}


/* =========================    Fly Fishing - CSS    ========================= */

.page-template-fly-fishing-page-templete .watermark {
    position: absolute;
    /* top: 270px; */
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    color: rgba(0, 0, 0, .03);
    bottom: -40%;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
    white-space: nowrap;
}


/* =========================    Horseback-Riding - CSS    ========================= */


/* =========================================
HORSEBACK PAGE
========================================= */

.horseback-page {
    background: #ebe4d3;
    overflow: hidden;
}


/* =========================================
HERO
========================================= */

.horseback-hero {
    position: relative;
}

.horseback-hero img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    object-position: top;
}

.horseback-overlay {
    transform: translateY(-50%);
    position: absolute;
    left: 50px;
    top: 40%;
}

.horseback-overlay h1 {
    color: #fff;
    font-size: 72px;
    line-height: 0.95;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
}


/* =========================================
CONTENT
========================================= */

.horseback-content {
    background: #f1ecdf;
    padding: 60px 0 100px 0;
    position: relative;
}

.horseback-left-img img {
    width: 100%;
    display: block;
}

.horseback-right-text {
    padding-left: 50px;
}

.horseback-right-text p {
    color: #111;
    font-size: 22px;
    line-height: 1.55;
    margin-bottom: 25px;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
}

.horseback-content .quote-bg {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    font-size: 200px;
    line-height: 1;
    opacity: 0.03;
    white-space: nowrap;
    font-family: 'Archivo Narrow', sans-serif;
    /* font-weight: 400; */
    font-weight: 700;
    color: #8b4a2b;
    text-align: center;
    margin: auto;
}


/* =========================================
VIDEO SECTION
========================================= */

.horseback-video-sec {
    background: #f1ecdf;
    /* padding-bottom:90px; */
}

.horseback-video-text {
    margin-bottom: 25px;
}

.horseback-video-text p {
    color: #111;
    font-size: 22px;
    line-height: 1.55;
    margin-bottom: 25px;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
}


/* VIDEO */

.custom-video {
    position: relative;
    overflow: hidden;
    background: #000;
}

.video-thumb {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.video-frame {
    width: 100%;
    height: 620px;
    border: none;
    display: none;
}


/* PLAY BUTTON */

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.53);
    border: none;
    cursor: pointer;
    z-index: 10;
}

.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-left: 24px solid #11111147;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}


/* =========================================
GALLERY
========================================= */


/* =========================================
GALLERY SECTION
========================================= */

.horseback-gallery-sec {
    padding: 50px 0;
    background: #f1ecdf;
}

.horseback-title {
    text-align: center;
    color: #8b4a2b;
    font-size: 56px;
    margin-bottom: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}


/* GALLERY */

.gallery-item {
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* =========================================
BOTTOM ARROW
========================================= */

.gallery-bottom-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}

.gallery-bottom-arrow span {
    width: 46px;
    height: 46px;
    border: 1px solid #cdbca7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #cdbca7;
    font-size: 22px;
    line-height: 1;
    transition: 0.3s ease;
}

.gallery-bottom-arrow span:hover {
    background: #cdbca7;
    color: #fff;
}


/* =========================================
POPUP MODAL
========================================= */

.horseback-modal {
    background: rgba(0, 0, 0, 0.92);
}

.horseback-modal .modal-dialog {
    max-width: 1100px;
}

.horseback-modal .modal-content {
    background: transparent;
    border: none;
    position: relative;
}

#galleryCarousel .carousel-item {
    margin: auto;
    justify-content: center;
}

.horseback-modal .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    max-width: 100%;
}


/* CLOSE BUTTON */

.gallery-close {
    position: absolute;
    top: -55px;
    right: 0;
    z-index: 999;
    background: none;
    border: none;
    color: #fff;
    font-size: 52px;
    line-height: 1;
    cursor: pointer;
}


/* ARROWS */

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 55px;
    height: 55px;
    background-size: 100%;
}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px) {
    .horseback-title {
        font-size: 44px;
    }
    .horseback-modal .carousel-item img {
        height: 500px;
    }
}

@media(max-width:767px) {
    .horseback-title {
        font-size: 34px;
    }
    .horseback-modal .carousel-item img {
        height: 280px;
    }
    .gallery-close {
        top: -40px;
        font-size: 38px;
    }
    .gallery-bottom-arrow {
        margin-top: 25px;
    }
    .gallery-bottom-arrow span {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 12%;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }
}

.gallery-arrow {
    text-align: center;
    margin-top: 20px;
    color: #808080b0;
    font-size: 35px;
}


/* =========================================
QUOTE SECTION
========================================= */

.activities-quote-sec {
    padding: 90px 20px;
    text-align: center;
    background: #ebe4d3;
}

.quote-slider {
    position: relative;
    max-width: 1000px;
    margin: auto;
    min-height: 260px;
}

.quote-slide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
}

.quote-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.quote-content h2 {
    font-size: 54px;
    line-height: 1.12;
    color: #111;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 35px;
    font-weight: 500;
}


/* DOTS */

.quote-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.quote-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8b4a2b;
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s ease;
}

.quote-dot.active {
    opacity: 1;
    transform: scale(1.2);
}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px) {
    .horseback-hero img {
        height: 420px;
    }
    .horseback-overlay h1 {
        font-size: 56px;
    }
    .video-thumb,
    .video-frame {
        height: 420px;
    }
    .quote-content h2 {
        font-size: 42px;
    }
}

@media(max-width:767px) {
    .horseback-hero img {
        height: 290px;
    }
    .horseback-overlay h1 {
        font-size: 40px;
    }
    .horseback-right-text p {
        font-size: 17px;
    }
    .video-thumb,
    .video-frame {
        height: 240px;
    }
    .horseback-title {
        font-size: 36px;
    }
    .gallery-item img {
        height: 120px;
    }
    .quote-content h2 {
        font-size: 28px;
        line-height: 1.35;
    }
    .activities-quote-sec {
        padding: 70px 20px;
    }
}


/* =========================    Activities - CSS    ========================= */

.section_two_activities {
    background-color: #ffffff8c;
    padding: 20px 50px 0 50px;
}


/* =========================================
ACTIVITIES PAGE
========================================= */

.activities-page {
    background: #ebe4d3;
    overflow: hidden;
}


/* =========================================
HERO
========================================= */

.activities-hero {
    position: relative;
}

.activities-hero img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    object-position: top;
}

.activities-hero-overlay {
    position: absolute;
    left: 50px;
    top: 40%;
}

.activities-hero-overlay h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
    line-height: 1;
}


/* =========================================
TOP TEXT
========================================= */

.activities-top-text {
    padding: 42px 0 35px;
}

.activities-top-text .container {
    padding: 0 20px;
}

.activities-top-text p {
    color: #111;
    font-size: 22px;
    line-height: 1.5;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
    margin: 0;
}


/* =========================================
GRID
========================================= */

.activities-grid-sec {
    padding-bottom: 200px;
}

.activity-box {
    position: relative;
    overflow: hidden;
}

.activity-box img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.activity-box:hover img {
    transform: scale(1.06);
}

.activity-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.activity-box h3 {
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    z-index: 2;
    margin: 0;
}


/* =========================================
QUOTE SECTION
========================================= */


/* =========================================
QUOTE SLIDER
========================================= */

.activities-quote-sec {
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    text-align: center;
}

.quote-bg {
    position: absolute;
    left: 50%;
    /* bottom: -20px; */
    transform: translateX(-50%);
    font-size: 200px;
    line-height: 1;
    opacity: 0.03;
    white-space: nowrap;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 700;
    color: #8b4a2b;
}

.quote-slider {
    position: relative;
    max-width: 1100px;
    margin: auto;
    min-height: 320px;
}

.quote-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.quote-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.quote-content h2 {
    font-size: 58px;
    line-height: 1.12;
    font-weight: 400;
    color: #111;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 40px;
    font-weight: 500;
}


/* DOTS */

.quote-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.quote-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8b4a2b;
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s ease;
}

.quote-dot.active {
    opacity: 1;
    transform: scale(1.2);
}


/* =========================    Conservation - CSS    ========================= */

body {
    background: #f2eee3;
    font-family: 'Helvetica Neue', sans-serif;
}


/* HERO */

.conservation-hero {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.conservation-hero img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    object-position: center top;
}

.conservation-overlay {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
}

.conservation-overlay h1 {
    color: #fff;
    font-size: 78px;
    line-height: 1.05;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}


/* INTRO */

.conservation-intro-sec {
    padding: 90px 0 50px;
    background: #f2eee3;
}

.conservation-intro-content p {
    margin-bottom: 15px;
    color: #212529;
    font-size: 22px;
    line-height: 1.45;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
}


/* BLOCKS */

.conservation-blocks-sec {
    /* padding-bottom:90px; */
    background: #f2eee3;
}

.conservation-row {
    margin-bottom: 50px;
}

.conservation-text-box p {
    margin-bottom: 15px;
    color: #212529;
    font-size: 22px;
    line-height: 1.45;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
}

.conservation-image-card {
    position: relative;
    overflow: hidden;
}

.conservation-image-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.conservation-image-title {
    line-height: 1.1;
    z-index: 2;
    margin: 0;
    max-width: 100%;
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.conservation-list-box.left_side {
    margin-left: 60px;
}

.conservation-list-box.right_side,
.conservation-text-box.right_side {
    margin-right: 60px;
}

.conservation-list-box ul {
    padding-left: 25px;
}

.conservation-list-box li {
    margin-bottom: 15px;
    color: #212529;
    font-size: 22px;
    line-height: 1.45;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
}


/* =========================================
GALLERY SECTION
========================================= */

.horseback-gallery-sec {
    /* padding:70px 0; */
    background: #f2eee3;
}

.horseback-title {
    text-align: center;
    color: #8b4a2b;
    font-size: 70px;
    margin-bottom: 45px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}


/* GALLERY */

.gallery-item {
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* ARROW */

.gallery-arrow {
    text-align: center;
    margin-top: 25px;
    color: #b7ab9a;
    font-size: 38px;
}


/* =========================================
POPUP MODAL
========================================= */

.horseback-modal {
    background: rgba(0, 0, 0, 0.92);
}

.horseback-modal .modal-dialog {
    max-width: 1100px;
}

.horseback-modal .modal-content {
    background: transparent;
    border: none;
    position: relative;
}

.horseback-modal .carousel-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}


/* CLOSE */

.gallery-close {
    position: absolute;
    top: -55px;
    right: 0;
    z-index: 999;
    background: none;
    border: none;
    color: #fff;
    font-size: 52px;
    cursor: pointer;
}


/* SLIDER ARROWS */

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 55px;
    height: 55px;
    background-size: 100%;
}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px) {
    .conservation-overlay h1 {
        font-size: 56px;
    }
    .conservation-intro-content p,
    .conservation-text-box p,
    .conservation-list-box li {
        font-size: 22px;
    }
    .conservation-image-title {
        font-size: 30px;
    }
    .horseback-title {
        font-size: 50px;
    }
}

@media(max-width:767px) {
    .conservation-hero {
        height: 420px;
    }
    .conservation-overlay {
        left: 25px;
    }
    .conservation-overlay h1 {
        font-size: 40px;
    }
    .conservation-intro-sec {
        padding: 60px 10px 20px 10px;
    }
    .conservation-intro-content p,
    .conservation-text-box p,
    .conservation-list-box li {
        font-size: 18px;
        line-height: 1.6;
    }
    .conservation-image-card img {
        height: 280px;
    }
    .conservation-image-title {
        font-size: 24px;
        left: 0;
        bottom: 20px;
    }
    .horseback-title {
        font-size: 40px;
    }
    .gallery-item img {
        height: 150px;
    }
    .horseback-modal .carousel-item img {
        height: 280px;
    }
    .gallery-close {
        top: -40px;
        font-size: 38px;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }
}


/* =========================    Cattle Ranches - CSS    ========================= */

.cattle-ranch-section {
    background: #ebe4d3;
    padding-bottom: 100px;
    overflow: hidden;
}


/* =========================================
HERO
========================================= */

.cattle-hero {
    position: relative;
    margin-bottom: 80px;
}

.cattle-hero img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    object-position: top;
}

.cattle-hero h2 {
    position: absolute;
    left: 50px;
    color: #fff;
    font-size: 70px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    top: 40%;
}


/* =========================================
TOP CONTENT
========================================= */


/* .top-content{
    max-width:1100px;
    margin:auto auto 80px;
} */

.section_3rd {
    margin-top: 100px;
}

.top-content h5 {
    color: #8b4a2b;
    font-size: 22px;
    letter-spacing: 0.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
}

.top-content p {
    color: #212529;
    font-size: 22px;
    line-height: 1.45;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
}


/* =========================================
ROW
========================================= */

.ranch-row {
    margin-bottom: 90px;
}

.ranch-text p {
    margin-bottom: 28px;
    color: #212529;
    font-size: 22px;
    line-height: 1.45;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
}

.ranch-image img {
    width: 100%;
    display: block;
}


/* =========================================
TITLE
========================================= */

.explore-title {
    text-align: center;
    font-size: 62px;
    color: #8b4a2b;
    margin-bottom: 50px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}


/* =========================================
SLIDER
========================================= */

.gallery-box {
    overflow: hidden;
}

.gallery-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s ease;
    display: block;
}

.gallery-box:hover img {
    transform: scale(1.05);
}


/* .carousel-item{
    transition:transform 1s ease-in-out;
} */


/* HIDE ARROWS */

.carousel-control-prev,
.carousel-control-next {
    display: none;
}


/* =========================    RESPONSIVE - CSS    ========================= */


/* =========================
HEADER
========================= */

.main-header {
    width: 100%;
    background: #ebe4d3;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 50px;
}


/* LEFT */

.header-left {
    width: 40%;
}


/* RIGHT */

.header-right {
    width: 40%;
}


/* LOGO */

.header-logo {
    width: 20%;
    display: flex;
    justify-content: center;
}

.header-logo img {
    width: 320px;
    max-width: 100%;
}


/* MENUS */

.main-menu {
    display: flex !important;
    align-items: center;
    gap: 55px;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.right-menu {
    justify-content: flex-end;
}

.main-menu li {
    list-style: none;
}

.main-menu li a {
    text-decoration: none;
    color: #111;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-menu ul.sub-menu.dropdown-menu li a {
    text-decoration: none;
    color: #111;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 5px;
}

.main-menu ul.sub-menu.dropdown-menu li:hover a {
    color: #8b4a2b;
}

.main-menu ul.sub-menu.dropdown-menu li.menu_main a {
    font-size: 26px;
    font-weight: 700;
}


/* RESERVATION BUTTON */

.main-menu li.header_btn a,
#mobile-menu li.header_btn a {
    background: #8b4a2b;
    color: #fff;
    padding: 11px 18px;
    border-radius: 4px;
    font-size: 17px;
}

#mobile-menu li.header_btn {
    margin-bottom: 30px;
}


/* --------------------------- */


/* ===================================
SLIDER FIX
=================================== */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ===================================
SLIDER DOTS
=================================== */

.slider-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s ease;
}

.dot.active {
    opacity: 1;
    transform: scale(1.2);
}


/* ===================================
VIDEO FIX
=================================== */

.custom-video {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: #000;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-left: 24px solid #111;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}


/* ===================================
MEDIA SECTION
=================================== */

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.media-item {
    position: relative;
    overflow: hidden;
}

.media-title {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}


/* =========================
FOOTER MENU CLEAN
========================= */

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-menu li a {
    color: #f3eadc;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    opacity: 0.8;
}


/* LAST BUTTON STYLE */

.footer-menu li.footer_menu_btn a {
    background: #efe5d3;
    color: #8b4322 !important;
    padding: 7px 18px;
    border-radius: 6px;
    display: inline-block;
}

.abara-footer .quote-bg {
    position: absolute;
    left: 50%;
    /* bottom: -20px; */
    transform: translateX(-50%);
    font-size: 230px;
    line-height: 1;
    opacity: 0.03;
    white-space: nowrap;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 700;
    color: #fff;
    top: 30%;
}


/* ========================================= RESPONSIVE CSS START========================================= */

@media(max-width:1440px) {}

@media(max-width:1366px) {
    .main-menu {
        gap: 60px;
    }
}

@media(max-width:1280px) {}

@media(max-width:1260px) {}

@media(max-width:1200px) {
    .abara-footer {
        padding: 60px 40px;
    }
    .abara-footer-container {
        gap: 40px;
    }
    .footer-column a {
        font-size: 20px;
    }
    .abara-footer-contact h3 {
        font-size: 30px;
    }
    .main-menu {
        gap: 40px;
    }
    .main-menu li a {
        font-size: 18px;
    }
    .header-logo img {
        width: 280px;
    }
    .intro-section h1 {
        font-size: 54px;
    }
    .content-text p {
        font-size: 23px;
    }
    .quote-content h2 {
        font-size: 48px;
    }
}

@media(max-width:1024px) {
    .conservation-list-box.left_side {
        margin-left: 30px;
    }
    .conservation-list-box.right_side,
    .conservation-text-box.right_side {
        margin-right: 30px;
    }
    .horseback-gallery-sec {
        padding: 40px 10px 40px;
    }
    .conservation-blocks-sec {
        padding: 0 10px;
    }
    .media-grid {
        grid-template-columns: 1fr;
    }
    .footer-logo img {
        width: 180px;
    }
    .image-title {
        font-size: 50px;
    }
    .media-item video,
    .media-item img {
        object-fit: fill;
    }
    .abara-footer-links {
        gap: 40px;
    }
    .header-left,
    .header-right {
        display: none;
    }
    .toggle-btn {
        display: flex;
    }
    .header-wrapper {
        justify-content: center;
        padding: 20px 30px;
    }
    .header-logo {
        width: 100%;
        justify-content: left;
    }
    .header-logo img {
        width: 230px;
    }
    .mobile_ul {
        padding: 0;
    }
    .header-wrapper {
        flex-wrap: wrap;
    }
    .header-left,
    .header-right {
        width: 100%;
        justify-content: center;
    }
    .header-logo {
        width: 100%;
        justify-content: flex-start;
    }
    .main-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
    }
    /* REMOVE DESKTOP DROPDOWN STYLE */
    .mobile_ul .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        width: 100%;
        padding: 0 0 0 15px;
        margin-top: 12px;
        display: none;
        box-shadow: none;
        border: none;
    }
    /* SHOW ON CLICK */
    .mobile_ul .menu-item-has-children.active>.dropdown-menu {
        padding: 0;
        display: block;
        overflow: auto;
    }
    /* SUBMENU LINKS */
    .mobile_ul .dropdown-menu li {
        margin-bottom: 10px;
    }
    .mobile_ul .dropdown-menu li a {
        font-size: 16px;
        text-transform: none;
        color: #111;
    }
    /* REMOVE HOVER EFFECT */
    .has-dropdown:hover .dropdown-menu {
        display: none;
    }
    /* MOBILE ARROW */
    .mobile-arrow {
        position: absolute;
        right: 0;
        top: 0;
        font-size: 24px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s ease;
    }
    /* ROTATE ICON */
    .mobile_ul .menu-item-has-children.active>.mobile-arrow {
        transform: rotate(45deg);
    }
}

@media(max-width:991px) {
    .hero-slider {
        height: 520px;
    }
    .intro-bg-text {
        font-size: 100px;
    }
    .mobile_hide {
        display: block;
    }
    .destop_hide {
        display: none;
    }
    .abara-header-inner {
        flex-direction: column;
        gap: 25px;
    }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .media-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .quote-content h2 {
        font-size: 42px;
    }
    .quote-bg,
    .horseback-content {
        font-size: 140px;
    }
    .activities-hero img {
        height: 420px;
    }
    .activities-hero-overlay h1 {
        font-size: 58px;
    }
    .activity-box img {
        height: 260px;
    }
    .activity-box h3 {
        font-size: 36px;
    }
    .quote-content h2 {
        font-size: 40px;
    }
    .cattle-ranch-section .container {
        max-width: 100%;
        padding: 0 35px;
    }
    .cattle-ranch-section .ranch_section_one {
        order: 2;
    }
    .cattle-ranch-section .ranch_section_two {
        order: 1;
    }
    .section_3rd {
        margin-top: 40px;
    }
    .ranch-row {
        margin-bottom: 30px;
    }
    .cattle-ranch-section .ranch_section_one {
        order: 2;
    }
    .cattle-hero img {
        height: 420px;
    }
    .cattle-hero h2 {
        left: 40px;
        bottom: 40px;
        font-size: 50px;
    }
    .explore-title {
        font-size: 46px;
    }
    .abara-footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .abara-footer-links {
        justify-content: center;
    }
    .abara-footer-contact {
        max-width: 100%;
    }
    .order_two_mobile {
        order: 1;
    }
    .order_one_mobile {
        order: 2;
    }
    .conservation-list-box.right_side,
    .conservation-text-box.right_side {
        margin-right: 0;
        margin-top: 20px;
    }
    .conservation-text-box p {
        margin-bottom: 0;
    }
    .conservation-list-box.left_side {
        margin-left: 0;
        margin-top: 20px;
    }
    .horseback-gallery-sec {
        padding: 0px 0px 40px 0;
    }
    .conservation-intro-sec {
        padding: 60px 0 50px;
    }
    .page-template-conservation .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media(max-width:768px) {
    .header-wrapper {
        padding: 18px 20px;
    }
    .header-logo img {
        width: 180px;
    }
    .mobile_ul li a {
        font-size: 18px;
    }
    .header-wrapper {
        padding: 18px 20px;
    }
    .header-logo img {
        width: 220px;
    }
    .main-menu li a {
        font-size: 16px;
    }
    .hero-slider {
        height: 380px;
    }
    .custom-video {
        height: 260px;
    }
    .play-button {
        width: 70px;
        height: 70px;
    }
    .media-title {
        font-size: 24px;
    }
    .video-frame {
        height: 240px;
    }
    .play-button {
        width: 70px;
        height: 70px;
    }
    .media-title {
        font-size: 20px;
    }
}

@media(max-width:767px) {
    .conservation-list-box.left_side {
        margin-left: 0px;
    }
    .conservation-list-box.right_side,
    .conservation-text-box.right_side {
        margin-right: 0px;
    }
    .horseback-overlay {
        left: 20px;
        top: 50%;
    }
    .activities-hero-overlay {
        left: 20px;
    }
    .horseback-content {
        padding: 40px 20px;
    }
    .horseback-video-sec {
        padding: 0 20px;
    }
    .gallery-item img {
        height: 100px;
    }
    .horseback-right-text {
        padding-left: 0;
    }
    .horseback-content .quote-bg {
        bottom: 0px;
        font-size: 80px;
    }
    .media-item video,
    .media-item img {
        height: 260px;
    }
    .intro-section .all_heading {
        width: 100%;
    }
    .hero-slider {
        height: 380px;
    }
    .slider-dots {
        bottom: 20px;
    }
    .header-left,
    .header-right {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-slider {
        height: 420px;
    }
    .intro-section {
        padding: 60px 20px 60px;
    }
    .intro-section h1 {
        font-size: 36px;
    }
    .intro-section p {
        font-size: 18px;
    }
    .content-section {
        padding: 0 20px 80px;
    }
    .content-text p {
        font-size: 18px;
        margin: 0;
    }
    .image-title {
        font-size: 42px;
    }
    .media-title {
        font-size: 38px;
    }
    .section_two_activities {
        padding: 20px 20px 0 20px;
    }
    .activities-quote-sec {
        padding: 80px 20px;
    }
    .quote-content h2 {
        font-size: 28px;
        line-height: 1.35;
    }
    .activities-hero img {
        height: 290px;
    }
    .activities-hero-overlay h1 {
        font-size: 42px;
    }
    .activities-top-text {
        padding: 30px 0;
    }
    .activities-top-text p {
        font-size: 16px;
        line-height: 1.7;
    }
    .activities-grid-sec {
        padding: 0;
        padding-bottom: 80px;
    }
    .activity-box img {
        height: 230px;
    }
    .activity-box h3 {
        font-size: 30px;
    }
    .activities-quote-sec {
        padding: 70px 20px 80px;
    }
    .quote-bg {
        font-size: 70px;
        margin-top: 10px;
    }
    .quote-content h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    .cattle-ranch-section {
        padding-bottom: 70px;
    }
    .cattle-hero {
        margin-bottom: 50px;
    }
    .cattle-hero img {
        height: 290px;
    }
    .cattle-hero h2 {
        left: 20px;
        bottom: 20px;
        font-size: 38px;
    }
    .top-content {
        margin-bottom: 50px;
    }
    .top-content p,
    .ranch-text p {
        font-size: 17px;
    }
    .explore-title {
        font-size: 36px;
        margin-bottom: 35px;
    }
    .gallery-box img {
        height: 180px;
    }
    .col-lg-6.ranch_section_one {
        margin-top: 30px;
    }
    .abara-footer {
        padding: 50px 20px;
    }
    .abara-footer-links {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }
    .footer-column {
        align-items: center;
        gap: 20px;
    }
    .footer-column a {
        font-size: 18px;
    }
    .footer-logo img {
        width: 180px;
    }
    .stay-connected {
        margin-top: 35px;
    }
    .abara-footer-contact h3 {
        font-size: 28px;
    }
    .abara-footer-contact p {
        font-size: 17px;
    }
    .footer-menu {
        align-items: center;
        gap: 20px;
    }
    .footer-menu li a {
        font-size: 18px;
    }
    .abara-footer .quote-bg {
        font-size: 80px;
        top: 97%;
    }
}

@media(max-width:575px) {}

@media(max-width:480px) {}

@media(max-width:414px) {}

@media(max-width:360px) {}


/* ========================================= RESPONSIVE CSS END ========================================= */