* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
    scroll-behavior: smooth;
    /* Smooth scrolling */
}

html {
    scroll-behavior: smooth;
}
a{
    text-decoration: none !important;
    color: inherit !important;
}
.wtsapp-sticky {
    position: fixed;
    bottom: 35px;
    right: 50px;
    background-color: #8b5e2b;
    color: #fff;
    padding: 4px 7px;
    font-size: 30px;
    border-radius: 50%;
    transition: 0.3s;
}
.call-sticky {
    position: fixed;
    bottom: 100px;
    right: 50px;
    background-color: #000000;
    color: #fff;
    padding: 9px 12px;
    font-size: 23px;
    border-radius: 50%;
     transition: 0.3s;
}
.wtsapp-sticky:hover,.call-sticky:hover {
    transform: scale(1.1);
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease-in-out all;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 33%;
    max-height: 90vh;
    position: relative;
    text-align: center;
    overflow-y: auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
    overflow: clip;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close {
    position: absolute;
    right: 5px;
    top: -6px;
    color: #8b5e2b;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #6a4a20;
    text-decoration: none;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    margin-bottom: 20px;
    border-radius: 5px !important;
    object-fit: contain;
}

.register-btn {
    background-color: #8b5e2b;
    color: white;
    border: none;
    padding: 12px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 15px 0;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.register-btn:hover {
    background-color: #6a4a20;
    transform: translateY(-2px);
}

.register-btn:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        padding: 20px 0px;
    }
    
    .modal-image {
        max-height: 60vh;
    }
}

/* ==HEADER */
.header {
    top: 0;
    background: rgba(248, 246, 239, 1);
}

header.scrolled {
    /* background: #ffffff; */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    z-index: 1;
    background: linear-gradient(45deg, #fcf8f5, #f7ebda);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.nav-side {
    align-items: center;
    gap: 10px;
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    height: 50px;
    z-index: 999;
    display: none;
}

.burger {
    cursor: pointer;
    border: none;
    outline: none;
    color: #0000;
    background: none;
    box-shadow: none;
    position: relative;
    display: block;
    width: 1.5rem;
    height: 1rem;
    z-index: 99;
    visibility: visible;
}
.logo img{
    width: 150px;
}

@media only screen and (min-width: 48rem) {
    .burger {
        display: none;
        visibility: hidden;
    }
}

.burger-line {
    position: absolute;
    right: 0;
    opacity: 1;
    width: 100%;
    height: 2px;
    line-height: 1.25;
    background-color: #000000;
    transition: all 0.25s ease;
}

.burger-line:nth-child(1) {
    top: 0.25rem;
}

.burger-line:nth-child(2) {
    top: 0.75rem;
}

.burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
    background-color: #000000;
}

.burger.is-active .burger-line:nth-child(2) {
    top: 0.5rem;
    transform: rotate(-135deg);
    background-color: #000000;
}


/* Navigation */
.nav-menu nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.2rem;
    margin: 0;
}

.nav-menu nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu nav ul li a:hover {
    color: #B4853B;
}

.contact-btn {
    text-decoration: none;
    background: linear-gradient(169deg, #9C783D, #392117);
    color: #fff;
    font-weight: 500;
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    margin-left: 1.5rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(180, 133, 59, 0.4);
}

.contact-btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.contact-btn:hover .arrow {
    transform: translate(4px, -4px);
    /* moves diagonally */
}

/* 15 */
.btn-15 {
    background: #a16f13;
    border: none;
    z-index: 1;
    border-radius: 100px
}

.btn-15:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: rgba(156, 120, 61, 1);
    border-radius: 5px;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    transition: all 0.3s ease;
    border-radius: 100px
}

.btn-15:hover {
    color: #fff;
    border-radius: 100px;
    transform: translateY(-4px);

}

.btn-15:hover:after {
    left: 0;
    width: 100%;
    border-radius: 100px;
}

.btn-15:active {
    top: 2px;
    border-radius: 100px;
}

.frame {
    width: 90%;
    margin: 40px auto;
    text-align: center;
}

.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 100px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: linear-gradient(99deg, rgba(156, 120, 61, 1), rgba(57, 33, 23, 1));
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
}



/* ===HERO=== */
#hero {
    position: relative;
}

.hero-bg {
    position: relative;
}

.hero-bg img {
    width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-section {
    display: flex;
    flex-direction: column;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 26%;
    top: 57%;
        color: #fff;
}

.hero-section h1 {
    font-weight: 600;
    line-height: 1.3;
    font-size: 43px;
}

.hero-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 23px;
}

a.btn-primary {
    text-decoration: none;
    background: rgba(155, 119, 58, 1);
    padding: 12px 21px;
    border-radius: 8px;
    color: white;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.25);
    font-weight: 500;
    transition: all 0.3s ease;
}

a.btn-primary:hover {
    background: rgba(180, 140, 70, 1);
    /* slightly lighter color */
    transform: translateY(-4px);
    box-shadow: 0px 10px 20px rgba(155, 119, 58, 0.4);
    color: #fff;
}

a.btn-outline {
    text-decoration: none;
    border: 1px solid rgba(155, 119, 58, 1);
    padding: 12px 21px;
    border-radius: 8px;
    color: rgba(155, 119, 58, 1);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    background: transparent;
}

a.btn-outline:hover {
    background: rgba(155, 119, 58, 1);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0px 8px 18px rgba(155, 119, 58, 0.3);
}

/* ==ABOUT== */
p.subtitle {
    font-size: 15px;
    letter-spacing: 3px;
}

.left-img {
    position: relative;
}

.left-img img {
    width: 100%;
}

.tag-text {
    display: flex;
    gap: 5px;
    bottom: 1px;
    background: rgb(197, 195, 195);
    width: fit-content;
    padding: 10px 10px;
}

.tag-text h3 {
    font-weight: 600;
    color: rgba(59, 46, 26, 1);
}

.tag-text p {
    color: rgba(50, 50, 50, 1);
    margin: 0;
    font-weight: 600;
}

.subtitle::before {
    content: "";
    width: 38px;
    height: 2px;
    background: #a8a6b1;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.about-text h2 span {
    color: #9C783D;
}

.about-text p {
    color: rgba(68, 68, 68, 1);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 36px;
}

.more-btn {
    text-decoration: none;
    background: rgba(155, 119, 58, 1);
    padding: 12px 21px;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.25);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.more-btn:hover {
    background: rgba(180, 140, 70, 1);
    /* slightly lighter shade */
    transform: translateY(-4px);
    box-shadow: 0px 10px 20px rgba(155, 119, 58, 0.4);
}

section#about {
    margin-bottom: 65px;
    margin-top: 50px;
}

/* ===SERVICES=== */

section#services {
    background: linear-gradient(99deg, rgba(229, 203, 167, 0.5), rgba(255, 251, 246, 1));
    padding: 78px 28px;
}

.service-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-heading p {
    color: rgba(92, 74, 53, 1);
    font-size: 14px;
    margin-bottom: 56px;
}

.service-heading h4 {
    color: rgba(58, 45, 31, 1);
}

.service-card {
    border: solid 1px rgba(193, 193, 193, 1);
    border-radius: 12px;
    padding: 10px 10px;
    height: -webkit-fill-available;
    transition: all 0.3s ease-in-out;
    height: 100%;
    min-height: 390px;
    margin: 0rem 0.4rem;
}


.service-card:hover {
    background: white;
    transform: translateY(-3px);
    border: none;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.25);
}

.img-container img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    padding: 20px;
    text-align: left;
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
    color: #1a1a1a;
}

.service-title.gold {
    color: #111111;
}

.service-content ul {
    padding: 0;
    margin: 0 0 15px;
}

.service-content ul li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    margin-left: 18px;
}
.service-content img{
    width: 70px;
    margin-bottom: 15px;
}

.read-btn {
    margin-top: 35px;
    transition: all 0.3s ease;
}


a.btn-read.outline {
    list-style: none;
    text-decoration: none;
    font-size: 12px;
    border: solid 1px rgba(155, 119, 58, 1);
    border-radius: 100px;
    padding: 5px 10px;
    color: rgba(155, 119, 58, 1);
}

.btn-read.outline:hover {
    transform: translateY(-3px);
    color: white;
    background: rgba(155, 119, 58, 1);
}

.autoplay {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.autoplay .slick-list{
    height: fit-content;
    padding-top: 1rem;
}
.slick-list{
    padding: 1rem 0rem !important;
}




/* ==quote-heading */
.qoute-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    padding-top: 37px;
}

.qoute-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.4;
}

.qoute-heading p {
    color: rgba(68, 68, 68, 1);
    font-size: 15px;
}

.qoute-cnt p {
    font-size: 15px;
    color: rgba(85, 85, 85, 1);
    line-height: 1.9;
    margin-bottom: 34px;
}

.appointment-btn {
    text-decoration: none;
    background: rgba(155, 119, 58, 1);
    padding: 12px 21px;
    border-radius: 8px;
    color: #fff !important;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.25);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.appointment-btn:hover {
    background: rgba(180, 140, 70, 1);
    /* lighter shade for hover */
    transform: translateY(-4px);
    box-shadow: 0px 10px 20px rgba(155, 119, 58, 0.4);
    color: #fff;
}

section#wellness-qoute {
    padding: 60px 10px;

    background: rgba(253, 249, 247, 1);
}


/* ==PARALLAX IMG */
.paralax-img {
    position: relative;
    height: max-content;
}

.paralax-img img {
    width: 100%;

}


.content-section {
    background-color: transparent;
    color: #333;
}

.parallax-text h1 {
    font-family: "Playfair Display", serif;
    color: rgb(242 239 239);
    font-size: 54px;
    letter-spacing: 5px;
}

/* ==WHY CHOOSE */
section#why\ choose {
    padding: 67px 20px;
    padding-top: 98px;
    background: rgba(250, 247, 244, 1);
    position: relative;
}

.section-title {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.section-title span {
    color: rgba(156, 120, 61, 1);
}

.why-list {
    margin-top: 20px;
}

.why-item {
    margin-bottom: 18px;
    display: flex;
    gap: 16px;
}

.why-item h5 {
    font-weight: 600;
    color: rgba(109, 70, 27, 1);
    font-size: 18px;
    margin-bottom: 6px;
}

.why-item p {
    font-size: 15px;
    color: rgba(60, 60, 60, 1);
    line-height: 1.6;
}

.why-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.logo-point {
    height: 20px;
    /* width: 30px; */
}

.logo-point {
    height: 100%;
}

.leaf-images {
    position: absolute;
    top: 0;
    left: -86px;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Optional subtle delay for child items (staggered effect) */
.why-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.why-item.active {
    opacity: 1;
    transform: translateY(0);
}

.why-item:nth-child(1) {
    transition-delay: 0.1s;
}

.why-item:nth-child(2) {
    transition-delay: 0.2s;
}

.why-item:nth-child(3) {
    transition-delay: 0.3s;
}

.why-item:nth-child(4) {
    transition-delay: 0.4s;
}

.why-item:nth-child(5) {
    transition-delay: 0.5s;
}

/* ==ARMOINA== */
section#armonia\ team {
    padding: 100px 0px;
}

.experts-txt {
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 3px;
}

.team-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.section-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.divider {
    position: relative;
    text-align: center;
    margin: 30px auto;
    max-width: 600px;
    margin-bottom: 126px;
}

.divider::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 254, 254, 1), rgba(137, 80, 56, 1));
    width: 33%;
}

.divider::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 254, 254, 1) rgba(137, 80, 56, 1), );
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 33%;
    height: 1px;
    background: linear-gradient(to right, rgba(137, 80, 56, 1), rgba(255, 254, 254, 1));
    transform: translateY(-50%);
    z-index: -1;
}

.divider::before {
    background: linear-gradient(to left, rgba(137, 80, 56, 1), rgba(255, 254, 254, 1));

}

.divider-text {
    position: relative;
    background: #fff;
    padding: 10px 30px;
    font-weight: 600;
    color: #8b5e2b;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    /* z-index: 100; */
}

.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-right: 19px;
}

.team-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.team-card:hover img {
    transform: scale(1.02);
    border-radius: 12px;
}

.team-card h6 {
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
    font-size: 17px;
}

.team-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

.directors {
    margin-bottom: 68px;
}

.directors-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.doctors-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    margin-right: 20px;
}

.doctors-name {
    background-color: #f9f6f3;
    /* light beige, match your theme */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 246px;
}

.counslr-name {
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    paading-top: 22px;
    margin-top: 37px;
}

.doctors-name:hover {
    transform: translateY(-5px);
}

p.dr-name {
    font-weight: 600;
    margin-bottom: 4px
}

span.qualification {
    font-size: 15px;
    font-weight: 500;
}

p.designation {
    font-size: 13px;
}

.dctrs-img {
    margin-bottom: 8px;
}

/* ===FOOTER=== */
#footer {
    background: linear-gradient(172deg, rgba(74, 48, 16, 1) 6%, rgba(229, 202, 178, 1) 272%);
    padding: 61px 0px;
    padding-bottom: 23px;
    padding-top: 54px;
    position: relative;
}

.footer-text {
    color: rgba(207, 207, 207, 1);
    font-size: 13px;
}

.footer-content img {
    width: 150px;
    height: auto;
    display: block;
}

span.wellnus-hub {
    font-size: 15px;
    font-weight: 500;
    color: rgba(211, 211, 211, 1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 11px;
}

.footer-media p {
    color: rgba(229, 231, 235, 1);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 7px;
}

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

.media-location {
    color: rgba(229, 231, 235, 1);
    display: flex;
    gap: 19px;
}

.media-location p {
    color: rgba(229, 231, 235, 1);
    font-weight: lighter;
}



i.fa-solid.fa-envelope {
    margin: 0;
    margin-top: 2px;
}

.footer-nav p {
    color: rgba(255, 255, 255, 1);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 13px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-left: 22px;
}

.footer-nav a {
    text-decoration: none;
    color: rgba(229, 231, 235, 1) !important;
    font-weight: lighter;
    font-size: 15px;
}

.footer-icons {
    margin-top: 64px;
}

.footer-icons p {
    color: rgba(255, 255, 255, 1);
    font-weight: bold;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.icons {
    background: white;
    border-radius: 127px;
    padding: 4px 6px;
}

.ftr-button {
    background: rgba(155, 119, 58, 1);
    padding: 12px 21px;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.25);
    font-weight: 500;
    text-align: center;
    margin-top: 48px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.ftr-button a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}
.ftr-bg{
    width: 80%;
}

/* Hover effect */
.ftr-button:hover {
    background: rgba(180, 140, 70, 1);
    /* slightly lighter shade */
    transform: translateY(-4px);
    box-shadow: 0px 10px 20px rgba(31, 24, 12, 0.4);
}

.ftr-button:hover a {
    color: #fff;
    /* keeps text color white */
}

hr {
    /* margin: 4rem 0; */
    color: rgba(173, 173, 173, 1);
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    margin-top: 58px;
}

.copyright-text {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 26px;
    color: rgb(220 225 233);
}

.copyright-text a {
    color: rgb(220 225 233) !important;
    text-decoration: none;
}

.logo-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.slick-arrow {
    display: none !important;
}

.ftr-container {
    position: relative;
    z-index: 2;
}

/* --- Slider container --- */
.new-begining {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
    padding-top: 0px;
}

/* --- Each slide image --- */
.new-begining img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease-in-out;
}

/* --- Hover effect --- */
.new-begining img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* --- Slick slide spacing --- */
.new-begining .slick-slide {
    padding: 0 10px;
    transition: all 0.3s ease;
}

/* --- Center active slide emphasis --- */
.new-begining .slick-center img {
    transform: scale(1.08);
    opacity: 1;
}

/* --- Non-active slides a bit dimmed --- */


.new-begining .slick-center img {
    opacity: 1;
}

/* --- Dots styling --- */
.slick-dots {
    bottom: -25px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: #9b773a;
    /* gold tone */
    opacity: 0.6;
}

/* --- slick arrow buttons --- */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background-color: rgba(155, 119, 58, 0.8);
    /* gold tone */
    color: #000000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: rgba(58, 45, 31, 1);
}


.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}


.slick-prev i,
.slick-next i {
    font-size: 16px;
}


@media (max-width: 768px) {

    .slick-prev,
    .slick-next {
        display: none !important;
    }
}

/* ==PARALLAX IMG */

.parallax {
  /* Replace with your image */
  background-image: url('../images/parallax-image.png');
  height: 75vh;
  background-attachment: fixed;   /* Key part of the effect */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.paralax-img {
    position: relative;
    height: max-content;
}

.paralax-img img {
    width: 100%;

}


.content-section {
    background-color: transparent;
    color: #333;
}



@supports (-webkit-touch-callout: none) {
    .parallax {
        background-attachment: scroll;
        background-position: center center;
    }
}

.new-begining .slick-slide img {
    filter: none !important;
    background: transparent !important;
    box-shadow: none !important;
    mix-blend-mode: normal !important;
}

.new-begining .slick-slide {
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.4s ease;
    filter: none !important;
}

.new-begining .slick-slide.is-active {
    opacity: 1;
    transform: scale(1.08);
    filter: none !important;
    z-index: 5;
}

.new-begining .slick-slide img {
    background: transparent !important;
}

.fancybox__thumbs,
.fancybox__dots {
    display: none !important;
}

.event{
    margin-top: 5rem;
    margin-bottom: 4rem;
}
.event img{
    width: 100%;
    border-radius: 15px;
}
.event-image {
    cursor: pointer;
    border: 3px solid #5b3f241c;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: 0.3s ease all;
}
.event-image:hover {
    transform: scale(1.02);
}