@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-brands/css/uicons-brands.css');
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-rounded/css/uicons-regular-rounded.css');
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-bold-straight/css/uicons-bold-straight.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

:root {
    --primary-color: #B08E28;
    --secondary-color: #1E5E2B;
    --accent-color: #28a745;
    --background-color: #f8f9fa;
    --text-color: #313131;
    --light-text-color: #848484;
    --white: #fff;
    --black: #000;
    --border-color: #dee2e6;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --success-color: #28a745;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.fi {
    display: flex;
}

ul {
    list-style-type: none;
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

header {
    width: 100%;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 2;
    position: absolute;
}

header .header-row {
    align-items: center;
    border-radius: 10px;
    padding-block: 4px;
    background-color: var(--white);
}

header .logo {
    width: 100px;
    height: 64px;
}

header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
}

header .main-menu ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

header .main-menu ul li a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-color);
    transition: all 0.3s ease;
}

header .main-menu ul li a:hover,
header .main-menu ul li a.active {
    font-weight: 500;
    transition: all 0.3s ease;
}

header .contact-btn {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

header .contact-btn i {
    font-size: 18px;
}

header #menu-btn {
    border: none !important;
}

header #menu-btn i {
    font-size: 20px;
}

@keyframes animateToRight {
    from {
        left: -300px;
        opacity: 0
    }
    to {
        left: 0;
        opacity: 1
    }
}

@keyframes animateToLeft {
    from {
        left: 0;
        opacity: 1;
    }
    to {
        left: -300px;
        opacity: 0;
    }
}

.my-modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 5%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal--content {
    position: relative;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    height: 100%;
    border: none;
    background-color: var(--white);
    max-width: 300px;
}

.modal--show {
    animation-name: animateToRight;
    animation-duration: 1s
}

.modal--hide {
    animation-name: animateToLeft;
    animation-duration: 1s
}

.close {
    position: absolute;
    color: var(--light);
    font-size: 36px;
    font-weight: 600;
    cursor: pointer;
    top: 0px;
    right: 12px;
    min-height: min-content;
    padding: 0px 2px;
    border-radius: 4px;
}

.close:hover {
    color: var(--light);
}

.nav-link {
    color: var(--light) !important;
}

.nav--item {
    cursor: pointer;
}

.nav--item.active {
    font-weight: bold;
}

.nav--item:hover {
    font-weight: bold;
}

.nav--item a {
    cursor: pointer;
    color: var(--light) !important;
    text-decoration: none;
}

.hero-section {
    width: 100%;
    padding-block-start: 200px;
    padding-block-end: 140px;
    /* height: 100vh; */
    position: relative;
    overflow: hidden;
}

.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.background-slider img.active {
    opacity: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-section .hero-title {
    font-size: 55px;
    line-height: 64px;
    font-weight: 700;
    color: var(--white);
    margin-block-end: 20px;
}

.hero-section .hero-text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--white);
    margin-block-end: 40px;
}

.hero-section .explore-btn {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 12px 26px;
    border-radius: 8px;
    color: var(--white);
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-section .explore-btn:hover {
    background-color: #917523;
    transition: all 0.3s ease;
}

.hero-section .read-more-btn {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 12px 26px;
    border-radius: 8px;
    color: var(--secondary-color);
    background-color: var(--white);
    border: 1px solid var(--white);
    transition: all 0.3s ease;
}

.hero-section .read-more-btn:hover {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    transition: all 0.3s ease;
}

section {
    padding-block: 80px;
}

section .section-title {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    color: var(--text-color);
    margin-block-end: 20px;
}

section .section-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--light-text-color);
}

.about-section .counter {
    display: flex;
    align-items: center;
    border-radius: 12px;
    background-color: var(--secondary-color);
}

.about-section .counter .counter-item {
    display: flex;
    flex-direction: column;
    padding: 30px 14px;
    flex: 1;
}

.about-section .counter .counter-item>span {
    font-size: 34px;
    line-height: 40px;
    font-weight: 700;
    color: var(--white);
}

.about-section .counter .counter-item p {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: var(--white);
    margin-block-end: 0 !important;
}

.about-section .about-text {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--light-text-color);
}

.about-section .about-img {
    width: 100%;
}

.about-section .about-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.service-section {
    background-color: var(--primary-color);
}

.service-section .section-title,
.service-section .section-text {
    text-align: center;
    color: var(--white);
}

.service-section .service-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    padding-block-end: 0 !important;
    transition: all 0.3s ease;
}

.service-section .service-item:hover svg {
    scale: 1.2;
    transition: all 0.3s ease;
}

.service-section .service-item svg {
    width: 46px !important;
    height: 46px !important;
    transition: all 0.3s ease;
}

.service-section .service-item .service-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-block-start: 14px;
    color: var(--white);
}

.service-section .service-item .service-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--white);
}

.gallery-section {
    padding: 0 !important;
}

.categories .btn {
    font-size: 14px;
    line-height: 20px;
    border-radius: 8px;
    padding: 10px 20px;
    color: var(--white);
    border: 1px solid var(--white);
    background-color: transparent;
    transition: all 0.3s ease;
}

.categories .btn.active,
.categories .btn:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
    transition: all 0.3s ease;
}

.gallery-section .gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 !important;
}

@media (max-width: 1600px) {
    .gallery-section .gallery-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1400px) {
    .gallery-section .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .gallery-section .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-section .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-section .gallery-container .gallery-item {
        max-height: 300px !important;
        min-height: 300px !important;
    }
    .gallery-section .gallery-container .gallery-item img {
        min-height: 300px !important;
    }
}

.gallery-section .gallery-container .gallery-item {
    max-height: 420px;
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

.gallery-section .gallery-container .gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(176, 142, 40, 0.5);
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-section .gallery-container .gallery-item:hover .overlay {
    opacity: 1;
    transition: all 0.3s ease;
}

.gallery-section .gallery-container .gallery-item .overlay i {
    font-size: 30px;
    color: var(--white);
}

.gallery-section .gallery-container .gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center center;
    transition: all 0.3s ease;
}

.gallery-section .view-more-btn {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    padding: 20px 20px;
    border-radius: 0 !important;
    color: var(--white);
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.gallery-section .view-more-btn:hover {
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.article-section.bg-secondary .content {
    font-size: 14px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
}

.article-section.bg-secondary .section-title,
.article-section.bg-secondary .section-text {
    color: var(--white) !important;
}

.article-section.bg-secondary .card {
    background-color: transparent !important;
}

.article-section.bg-secondary .card .card-date,
.article-section.bg-secondary .card .card-title,
.article-section.bg-secondary .card .card-text {
    color: var(--white);
}

.article-section .card {
    height: 100%;
    border: none !important;
    box-shadow: none !important;
    padding-inline: 10px;
}

.article-section .card .card-img-top {
    max-height: 220px;
    min-height: 220px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.article-section .card .card-img-top img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.article-section .card:hover .card-img-top img {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.article-section .card .card-body {
    padding-inline: 0 !important;
}

.article-section .card .card-date {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: var(--light-text-color);
}

.article-section .card .card-title {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    margin-block-start: 10px;
    margin-block-end: 4px;
    color: var(--text-color);
}

.article-section .card .card-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--light-text-color);
}

.article-section .card .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-inline: 0 !important;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: var(--primary-color)
}

.article-section .card .read-more-btn i {
    font-size: 20px;
}

.article-section .next-btn,
.article-section .prev-btn {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 20px;
    color: var(--white);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 100;
}

.article-section .next-btn:hover,
.article-section .prev-btn:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.article-section .next-btn {
    right: 0;
}

.article-section .prev-btn {
    left: 0;
}

.adventure-section {
    padding-top: 0;
}

.adventure-section .adventure-row {
    padding: 20px;
    border-radius: 30px;
    align-items: center;
    background-color: var(--primary-color);
}

.adventure-section .adventure-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 360px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.adventure-section .adventure-img .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 46px;
    color: var(--white);
    cursor: pointer;
}

.adventure-section .adventure-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.adventure-section .section-title,
.adventure-section .section-text {
    text-align: right;
    color: var(--white);
}

.adventure-section .contact-btn {
    font-size: 14px;
    font-weight: 500;
    padding: 12px 26px;
    border-radius: 8px;
    color: var(--secondary-color);
    background-color: var(--white);
    border: 1px solid var(--white);
    transition: all 0.3s ease;
    text-align: right;
}

.adventure-section .contact-btn:hover {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    transition: all 0.3s ease;
}

footer {
    background-color: var(--text-color);
}

footer .footer-row {
    padding-block: 80px;
}

footer .footer-logo {
    width: 100%;
    height: 100%;
    max-height: 100px;
}

footer .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
}

footer .footer-title {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    margin-top: 20px;
    color: var(--white);
}

footer .footer-text {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: var(--white);
}

footer .social-media {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-block-start: 20px;
}

footer .social-media i {
    font-size: 20px;
    color: var(--primary-color);
}

footer h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

footer .quick-links,
footer .latest-articles,
footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    padding: 0 !important;
}

footer .quick-links li a,
footer .latest-articles li a,
footer .contact-info li a {
    color: #A7ABB4;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
}

footer .quick-links li.active a,
footer .latest-articles li.active a,
footer .contact-info li.active a {
    color: var(--white);
    text-decoration: underline;
}

footer .quick-links li a:hover,
footer .latest-articles li a:hover,
footer .contact-info li a:hover {
    color: var(--white);
    text-decoration: underline;
}

footer hr {
    border: none;
    border-top: 1px solid #A7ABB4;
    margin-block-start: 0 !important;
    margin-block-end: 20px !important;
}

footer .copyright-text {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: var(--white);
}

footer .developed-by {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: var(--primary-color);
}

footer .developed-by a {
    text-transform: uppercase;
    color: var(--primary-color);
}

.page-hero-section {
    padding-block-start: 120px;
    padding-block-end: 40px;
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.page-hero-section .hero-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.page-hero-section .hero-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0;
}

.page-hero-section .left-asset,
.page-hero-section .right-asset {
    position: absolute;
    z-index: 0;
    height: 100%;
}

.page-hero-section .left-asset img,
.page-hero-section .right-asset img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.page-hero-section .left-asset {
    height: 150px;
    bottom: 0;
    left: 0;
}

.page-hero-section .right-asset {
    top: 0;
    right: 0;
}

.page-hero-section .blog-date {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--white);
    margin-block-end: 10px;
}

.page-hero-section .blog-title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: var(--white);
    margin-block-end: 20px;
}

.page-hero-section .blog-main-img {
    width: 100%;
    max-height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.page-hero-section .blog-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-section-2 .service-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service-section-2 .service-item:hover {
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-section-2 .service-item .service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-section-2 .service-item:hover .service-icon {
    scale: 1.1;
    transition: all 0.3s ease;
}

.service-section-2 .service-item .service-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.service-section-2 .service-item .service-title {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    margin-block-start: 20px;
    margin-block-end: 10px;
    color: var(--white);
}

.service-section-2 .service-item .service-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0;
    text-align: center;
}

.contact-form-section {
    padding: 0 !important;
}

.contact-form-section h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
}

.contact-form-section h4 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}

.contact-form-section a,
.contact-form-section p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--light-text-color);
}

.contact-form-section .form-group {
    margin-block-end: 20px !important;
}

.contact-form-section .form-control {
    font-size: 14px;
    line-height: 30px;
    outline: none !important;
    box-shadow: none !important;
    background-color: #F8F8F8 !important;
}

.contact-form-section .submit-btn {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 12px 26px;
    border-radius: 8px;
    color: var(--white);
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.vision-mission-section {
    padding-block-start: 0;
}

.vision-mission-section .nav {
    border: none !important;
}

.vision-mission-section .nav-tabs .nav-link {
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 0;
    border: none !important;
    color: var(--text-color);
    background-color: #F8F8F8;
}

.vision-mission-section .nav-tabs .nav-link.active {
    color: var(--white) !important;
    background-color: var(--primary-color);
}

.vision-mission-section .tab-content {
    border: none !important;
    background-color: #F8F8F8;
}

.vision-mission-section .tab-content .tab-pane {
    padding: 20px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--light-text-color);
}

.vision-mission-section .tab-content .tab-pane p {
    margin-bottom: 0;
}

.toastify.on {
    font-size: 14px !important;
    line-height: 20px !important;
    color: var(--white) !important;
    background: var(--primary-color) !important;
}