/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Krona One", sans-serif;
    --nav-font: "Montserrat", sans-serif;
}

/* Global Colors */
:root {
    --background-color: #ffffff;
    --background-color-rgb: 255, 255, 255;
    --default-color: #090f0c;
    --default-color-rgb: 33, 37, 41;
    --primary-color: linear-gradient(131deg, #184E68 5.47%, #57CA85 100%);
    --primary-b-color: linear-gradient(135deg, #57ca85 0%, #184e68 100%);
    --primary-color-rgb: 24, 78, 104;
    --secondary-color: #57CA85;
    --secondary-color-rgb: 87, 202, 133;
    --custom-color: #184E68;
    --custom-color-rgb: 24, 78, 104;
    --contrast-color: #ffffff;
    --contrast-color-rgb: 255, 255, 255;
}

/* Nav Menu Colors */
:root {
    --nav-color: #184e68;
    --nav-hover-color: #57CA85;
    --nav-dropdown-color: #184e68;
    --nav-dropdown-hover-color: #57CA85;
    --nav-dropdown-background-color: #ffffff;
    --nav-mobile-background-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: rgba(var(--secondary-color), 0.7);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: var(--heading-font);
}

section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    overflow: clip;
}


.read-more {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--custom-color);
    padding-right: 19px;
}

.read-more:hover i {
    margin-left: 10px;
}



.read-more-btn {
    background: var(--primary-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.read-more-btn i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: var(--primary-b-color);
    color: var(--contrast-color);
    padding-right: 19px;
}

.read-more-btn:hover i {
    margin-left: 10px;
}


/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title h1 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--heading-font);
    background-color: var(--background-color);
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}


.page-title nav {
    background-color: rgba(var(--default-color-rgb), 0.05);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.page-title nav ol li a {
    color: var(--secondary-color);
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: rgba(var(--default-color-rgb), 0.3);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--secondary-color);
    background-color: var(--contrast-color);
    font-family: var(--heading-font);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo img {
    max-height: 55px;
    margin-right: 6px;
}

.header .btn-contact-us,
.header .btn-contact-us:focus {
    color: var(--contrast-color);
    background: var(--primary-color);
    border: 1px solid var(--custom-color);
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
}

.header .btn-contact-us:hover,
.header .btn-contact-us:focus:hover {
    background: var(--primary-b-color);
}


 .header {
    --background-color: #ffffff;
    --secondary-color: #184e68;
    --nav-color: #184e68;
    --nav-hover-color: #57CA85;
    --background-btn-color: var(--primary-b-color);
    --logo-filter: none;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-contact-us {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

/* Global Header on page scroll
------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
    --secondary-color: #184e68;
    --nav-color: #184e68;
    --nav-hover-color: #57CA85;
    --background-btn-color: var(--primary-b-color);
    --logo-filter: none;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

.scrolled .header .btn-contact-us,
.scrolled .header .btn-contact-us:focus {
    color: var(--contrast-color);
    background: var(--primary-color);
}

.scrolled .header .btn-contact-us:hover,
.scrolled .header .btn-contact-us:focus:hover {
    /* color: var(--primary-color); */
    background: var(--primary-b-color);
}

/* Global Scroll Margin Top
------------------------------*/
section {
    scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
    section {
        scroll-margin-top: 66px;
    }
}

/* Home Page Custom Header
------------------------------*/
.index-page .header {
    --background-color: rgba(255, 255, 255, 0);
    --secondary-color: #ffffff;
    --nav-color: rgba(255, 255, 255, 0.515);
    --nav-hover-color: #ffffff;
    --background-btn-color: transparent;
    --logo-filter: brightness(1500%);
}


/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: #ffffff;
    --secondary-color: #184e68;
    --nav-color: #184e68;
    --nav-hover-color: #57CA85;
    --background-btn-color: var(--primary-color);
    --logo-filter: none;

}

.index-page .header {
    --background-color: #ffffff;
    --secondary-color: #184e68;
    --nav-color: #184e68;
    --nav-hover-color: #57CA85;
    --background-btn-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
        font-weight: bold;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }

    .navmenu .megamenu {
        position: static;
    }

    .navmenu .megamenu ul {
        margin: 0;
        padding: 10px;
        background: var(--nav-dropdown-background-color);
        box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
        display: block;
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        display: flex;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }

    .navmenu .megamenu ul li {
        flex: 1;
    }

    .navmenu .megamenu ul li a,
    .navmenu .megamenu ul li:hover>a {
        padding: 10px 20px;
        font-size: 15px;
        color: var(--nav-dropdown-color);
    }

    .navmenu .megamenu ul li a:hover,
    .navmenu .megamenu ul li .active,
    .navmenu .megamenu ul li .active:hover {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .megamenu:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dd-box-shadow {
        box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: rgba(var(--primary-color-rgb), 0.1);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--primary-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
        font-weight: bold;

    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--primary-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
        font-weight: bold;

    }

    .navmenu .dropdown ul,
    .navmenu .megamenu ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul,
    .navmenu .megamenu ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active,
    .navmenu .megamenu>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #ffffff;
    line-height: 0;
}

.scroll-top:hover {
    background-color: rgba(var(--primary-color-rgb), 0.8);
    color: #ffffff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader div {
    width: 13px;
    height: 13px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
    position: absolute;
    left: 50%;
}

#preloader div:nth-child(1) {
    left: calc(50% + 8px);
    animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
    left: calc(50% + 8px);
    animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
    left: calc(50% + 32px);
    animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
    left: calc(50% + 56px);
    animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes animate-preloader-3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes animate-preloader-2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    color: var(--contrast-color);
    background-color: var(--custom-color);
    font-size: 14px;
    padding-bottom: 50px;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 0;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 80px;
    margin-right: 6px;
    filter: brightness(1500%);
}

.footer .footer-about .logo span {
    color: var(--secondary-color);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--default-font);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--default-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 15%;
    border: 1px solid rgba(var(--contrast-color-rgb), 0.5);
    font-size: 16px;
    color: rgba(var(--contrast-color-rgb), 0.5);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--contrast-color);
    border-color: var(--contrast-color);
}

.footer h4 {
    color: var(--contrast-color);
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    font-family: var(--default-font);
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: rgba(var(--contrast-color-rgb), 0.6);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--contrast-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: rgba(var(--default-color-rgb), 0.05);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
#hero {
    width: 100%;
    margin-top: 84px;
    height: 80vh;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: relative;
  }

  #hero .carousel,
  #hero .carousel-inner,
  #hero .carousel-item,
  #hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }

  #hero .carousel-item img {
    height: 100%;
    width: 100%;
   object-fit: cover;
  }

  #hero .carousel-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 60px;
    top: 70px;
    left: 55px;
    right: 55px;
  }

  #hero .carousel-content {
    text-align: justify;
    background: rgba(4, 4, 4, 0.7);
    padding: 20px;
    color: #fff;
    border-top: 5px solid var(--secondary-color);
  }

  #hero .carousel-content h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
  }

  #hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
  }

  #hero .carousel-inner .carousel-item,
  #hero .carousel-inner .active.carousel-item-start,
  #hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
  }

  #hero .carousel-inner .active,
  #hero .carousel-inner .carousel-item-next.carousel-item-start,
  #hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
  }

  #hero .carousel-inner .carousel-item-next,
  #hero .carousel-inner .carousel-item-prev,
  #hero .carousel-inner .active.carousel-item-start,
  #hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
/*
  #hero .carousel-control-next-icon,
  #hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.6);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #hero .carousel-control-next-icon:hover,
  #hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.8);
  } */

  #hero .carousel-indicators button {
    list-style-type: none;
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
  }

  #hero .carousel-indicators button.active {
    opacity: 1;
    background: var(--secondary-color);
  }

  @media (min-width: 1024px) {
    #hero .carousel-content {
      width: 60%;
    }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
      width: 5%;
    }
  }

  @media (max-width: 992px) {
    #hero .carousel-container {
      top: 58px;
    }

    #hero .carousel-content h2 {
      margin-bottom: 15px;
      font-size: 22px;
    }

    #hero .carousel-content p {
      font-size: 15px;
    }
  }

  @media (max-height: 500px) {
    #hero {
      height: 120vh;
    }
  }



/* About Section - Home Page
------------------------------*/

.about .content h3 {
    color: var(--default-color);
    font-family: var(--default-font);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .about-img .img-fluid {
    max-width: 70%;
}

.about .about-img {
    position: relative;
    margin: 0 0 60px 0;
}

.about .about-img:before {
    position: absolute;
    inset: 0 0 -60px 80px;
    z-index: 1;
    content: "";
    background: url("/assets/img/points_start_bottom.png") bottom left;
    background-repeat: no-repeat;
}

@media (max-width: 575px) {
    .about .about-img {
        margin: 0 0 30px 0;
    }

    .about .about-img:before {
        inset: 0 0 -30px 10px;
    }
}


/* Services Section - Home Page
------------------------------*/
.services {
    --background-color: rgba(var(--secondary-color-rgb), 0.1);
    background-image: url("../img/services_background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.services .content h3 {
    color: var(--default-color);
    font-family: var(--default-font);
    font-weight: 700;
    margin-bottom: 1rem;
}

.services .content p:last-child {
    margin-bottom: 0;
}

.services .icon-box {
    padding: 50px 40px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease-out 0s;
    background-color: #fff;
    cursor: pointer;
}

.services .icon-box i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 0;
    transition: all 0.4s ease-out 0s;
    background-color: rgba(var(--secondary-color-rgb), 0.1);
    color: var(--custom-color);
}

.services .icon-box h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--default-font);
    color: var(--default-color);
}

.services .icon-box p {
    margin-bottom: 0;
}

.services .icon-box:hover i {
    background-color: var(--custom-color);
    color: var(--contrast-color);
}

.services .icon-boxes .col-md-6:nth-child(2) .icon-box,
.services .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 40px;
}

@media (max-width: 768px) {

    .services .icon-boxes .col-md-6:nth-child(2) .icon-box,
    .services .icon-boxes .col-md-6:nth-child(4) .icon-box {
        margin-top: 0;
    }
}


/* Vision Section - About Page
------------------------------*/
.visions {
    margin: 60px 0;
}

.visions .content h3 {
    color: var(--default-color);
    font-family: var(--default-font);
    font-weight: 700;
    margin-bottom: 1rem;
}

.visions .content p:last-child {
    margin-bottom: 0;
}

.visions .icon-box {
    padding: 50px 40px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease-out 0s;
    background-color: #fff;
    cursor: pointer;
}

.visions .icon-box i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 0;
    transition: all 0.4s ease-out 0s;
    background-color: rgba(var(--secondary-color-rgb), 0.1);
    color: var(--custom-color);
}

.visions .icon-box h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--default-font);
    color: var(--default-color);
}

.visions .icon-box p {
    margin-bottom: 0;
}

.visions .icon-box:hover i {
    background-color: var(--custom-color);
    color: var(--contrast-color);
}

/* .visions .icon-boxes .col-md-6:nth-child(2) .icon-box,
.visions .icon-boxes .col-md-6:nth-child(4) .icon-box,
.visions .icon-boxes .col-md-6:nth-child(6) .icon-box,
.visions .icon-boxes .col-md-6:nth-child(8) .icon-box {
    margin-top: 40px;
}

@media (max-width: 768px) {

    .visions .icon-boxes .col-md-6:nth-child(2) .icon-box,
    .visions .icon-boxes .col-md-6:nth-child(4) .icon-box,
    .visions .icon-boxes .col-md-6:nth-child(6) .icon-box,
    .visions .icon-boxes .col-md-6:nth-child(8) .icon-box {
        margin-top: 0;
    }
} */


/* Pub Section - Home Page
------------------------------*/
.pub {
    --default-color: #ffffff;
    --default-color-rgb: 255, 255, 255;
    --background-color-rgb: transparent;
    position: relative;
    padding: 80px 0;
}

.pub img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}

.pub:before {
    content: "";
    background: rgba(var(--background-color-rgb), 0.6);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.pub .container {
    position: relative;
    z-index: 3;
}

.pub .pub-item {
    padding: 30px;
    width: 100%;
}

.pub .pub-item h4 {
    display: block;
    color: var(--default-color);
    font-weight: 700;
}

.pub a,
.pub a:focus {
    color: var(--contrast-color);
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--contrast-color);
    font-size: 16px;
    font-weight: 600;
    padding: 8px 26px;
    margin: 3rem 0 0 0;
    border-radius: 4px;
    transition: 0.3s;
}

.pub a:hover,
.pub a:focus:hover {
    color: var(--custom-color);
    background: var(--contrast-color);
}

/* Staff Section - Home Page
------------------------------*/
.staff {
    --background-color: #fff;
}

.staff .member {
    position: relative;
}

.staff .member .member-img {
    width: 90%;
    margin: auto;
    border-radius: 10%;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--background-color);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .staff .member .member-img {
        width: 70%;
        margin: auto;
    }
}

.staff .member .member-img img {
    position: relative;
    max-width: 100%;
    height: auto;
    min-width: 100%;
    aspect-ratio: 1 / 1;
    z-index: 1;
}

.staff .member .member-img .social {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-bottom: 20px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

.staff .member .member-img .social a {
    transition: 0.3s;
    color: var(--contrast-color);
    font-size: 20px;
    margin: 0 8px;
}

.staff .member .member-img .social a:hover {
    color: var(--primary-color);
}

.staff .member .member-info {
    margin-top: 30px;
}

.staff .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 18px;
    color: var(--default-color);
}

.staff .member .member-info span {
    font-style: italic;
    display: block;
    font-size: 15px;
    color: rgba(var(--default-color-rgb), 0.6);
    margin-bottom: 10px;
}

.staff .member .member-info p {
    margin-bottom: 0;
    font-size: 14px;
}

.staff .member:hover .member-img .social {
    padding-bottom: 0;
    visibility: visible;
    color: var(--secondary-color);
    opacity: 1;
}

/* Our Products Section
----------------------------------------------*/
.product .prod {
    text-align: center;
    background: rgba(var(--secondary-color-rgb), 0.2);
    border-radius: 10px;
    padding: 15px;
    overflow: hidden;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.product .prod img {
    border-radius: 10px;
    overflow: hidden;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.product .prod .prod-content {
    padding: 0 20px 30px 20px;
}

.product .prod h4 {
    font-weight: bolder;
    margin-top: 16px;
    margin-bottom: 2px;
    font-size: 16px;
    font-family: var(--default-font);
    color: var(--default-color);
}

.bg-light-green {
    background-color: #d7eede; /* Vert clair doux */
}



/* Clients Section
----------------------------------------*/
.clients {
    padding: 40px 0;
    background: var(--primary-color);
}

.clients .swiper {
    padding: 10px 0;
}

.clients .swiper-slide img {
    transition: 0.3s;
}

.clients .swiper-slide img:hover {
    transform: scale(1.1);
}

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--custom-color);
    opacity: 1;
    background-color: var(--custom-color);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--custom-color);
}




/*Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
    background: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
  }

  .recent-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
  }

  .recent-posts .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 10px;
  }

  .recent-posts .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .recent-posts .title a {
    color: var(--heading-color);
    transition: 0.3s;
  }

  .recent-posts .title a:hover {
    color: var(--accent-color);
  }

  .recent-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
  }

  .recent-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
  }

  .recent-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 0;
  }




/*Contact Section
-------------------------------------------------------*/

.contact .map iframe {
    border: 0;
    width: 100%;
    height: 400px;
    margin-top: 2rem;
}

.contact .info {
    padding: 40px;
    box-shadow: 0px 2px 15px rgba(var(--default-color-rgb), 0.1);
    overflow: hidden;
}

.contact .info .nav-link.active {
    background: var(--primary-color);
}

.contact .info .nav-link.active h4 {
    color: var(--color-white);
}


.contact .info p {
    margin-bottom: 30px;
    font-size: 15px;
}

.contact .info-item+.info-item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(var(--secondary-color-rgb), 0.3);
}

.contact .info-item i {
    font-size: 20px;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
    /* margin-right: 2px; */
}

.contact .info-item h4 {
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    background: var(--primary-color);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: black;
}

.contact .nav-link.active .info-item p {
    color: white;
}

.contact .php-email-form {
    width: 100%;
    background: var(--color-white);
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: var(--color-white);
    background: var(--color-red);
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: var(--color-white);
    background: var(--color-green);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: var(--color-white);
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--color-green);
    border-top-color: var(--color-white);
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    border-radius: 0px;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--default-color-light);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
    height: 48px;
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
    height: 290px;
}

.contact .php-email-form button[type=submit] {
    background: var(--primary-color);
    display: block;
    width: 100%;
    border: 0;
    padding: 13px 50px;
    color: var(--contrast-color);
    transition: 0.4s;
    border-radius: 0;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.contact .php-email-form button[type=submit] span {
    transform: rotate(45deg);
}

.contact .php-email-form button[type=submit]:hover {
    background: var(--primary-b-color);
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/*--------------------------------------------------------------
# About Details Page
--------------------------------------------------------------*/
/* About-details Section - About Details Page
------------------------------*/

.about-details p {
    font-size: 15px;
}

.about-details .about-details-img {
    position: relative;
    margin: 60px 0 0 60px;
}

.about-details .about-details-img:before {
    position: absolute;
    inset: -60px 0 0 -60px;
    z-index: 1;
    content: "";
    background: url("../img/points_start_top.png") top left;
    background-repeat: no-repeat;
}

@media (max-width: 575px) {
    .about-details .about-details-img {
        margin: 30px 0 0 30px;
    }

    .about-details .about-details-img:before {
        inset: -30px 0 0 -30px;
    }
}

.about-details h3 {
    color: var(--default-color);
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-details h5 i {
    font-size: 25px;
    color: var(--primary-color);
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1rem;
}

.about-details h5 {
    font-size: 18px;
    color: var(--default-color);
    font-family: var(--font-secondary);
    font-weight: bolder;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .about-details h3 {
        font-size: 28px;
    }
}



/*--------------------------------------------------------------
# Services Details Page
--------------------------------------------------------------*/
/* Services-details Section - Services Details Page
------------------------------*/

.color-primary {
    color: var(--primary-color);
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.color-green {
    color: var(--secondary-color);
}

.color-orange {
    color: orangered;
}

.color-blue {
    color: blue;
}

.color-yellow {
    color: yellow;
}

.color-purple {
    color: purple;
}

.color-pink {
    color: rgb(247, 78, 106);
}

.color-cyan {
    color: cyan;
}

.color-brown {
    color: brown;
}

.color-indigo {
    color: rgb(124, 4, 209);
}

.color-navy {
    color: navy;
}

.services-details .nav-tabs {
    border: 0;
}

.services-details .nav-link {
    border: 0;
    padding: 25px 20px;
    color: var(--default-color);
    box-shadow: 5px 5px 25px rgba(var(--default-color-rgb), 0.15);
    text-align: center;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0s;
    cursor: pointer;
    height: 100%;
}

.services-details .nav-link i {
    font-size: 32px;
    line-height: 0;
}

.services-details .nav-link h4 {
    font-size: 20px;
    font-weight: bolder;
    margin: 10px 0 0 0;
    font-family: var(--default-font);
    color: var(--default-color);
}

/* .services-details .nav-link:hover {
  color: var(--custom-color);
} */

.services-details .nav-link.active {
    transition: 0.3s;
    background: var(--custom-color);
    border-color: var(--secondary-color);
}

.services-details .nav-link.active h4 {
    color: var(--contrast-color);
}

.services-details .nav-link.active i {
    color: var(--contrast-color) !important;
}

.services-details .tab-content {
    margin-top: 30px;
}

.services-details .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.services-details .tab-pane h3 {
    font-weight: bolder;
    font-size: 36px;
    color: var(--default-color);
    font-family: var(--default-font);

}

.services-details .tab-pane h5 {
    font-weight: bolder;
    color: var(--default-color);
    font-family: var(--default-font);

}

.services-details .tab-pane ul {
    list-style: none;
    padding: 0;
    margin-left: 3rem;
}

.services-details .tab-pane ul li {
    padding-bottom: 10px;
}

.services-details .tab-pane ul i {
    font-size: 2px;
    margin-right: 4px;
}

.services-details .tab-pane ul.sun-list {
    margin: 0;
}

.services-details .tab-pane ul.sun-list li {
    margin: 10px 0;
}

.services-details .tab-pane ul.sun-list i {
    font-size: 24px;
    color: var(--secondary-color);
    box-shadow: 0 0 15px 3px rgb(25 69 11 / 10%);
    padding: 5px 10px;
    margin-right: 1rem;
}

.services-details .tab-pane p:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}




/* achievements-details Section - Home Page
------------------------------*/
.achievements-details .achievements-details-item {
    color: rgba(var(--default-color-rgb), 0.8);
}

.achievements-details .achievements-details-item+.achievements-details-item {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .achievements-details .achievements-details-item+.achievements-details-item {
        margin-top: 40px;
    }
}

.achievements-details .achievements-details-item h3 {
    font-family: var(--default-font);
    color: var(--default-color);
    font-weight: bolder;
    font-size: 26px;
}

.achievements-details .achievements-details-item .btn-get-started {
    background-color: var(--primary-color);
    color: var(--contrast-color);
    padding: 8px 30px 10px 30px;
    border-radius: 4px;
}

.achievements-details .achievements-details-item .btn-get-started:hover {
    background-color: rgba(var(--primary-color-rgb), 0.9);
}

.achievements-details .achievements-details-item ul {
    list-style: none;
    padding: 0;
}

.achievements-details .achievements-details-item ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.achievements-details .achievements-details-item ul li:last-child {
    padding-bottom: 0;
}

.achievements-details .achievements-details-item ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--primary-color);
}

.achievements-details .achievements-details-item img {
    border: 10px solid var(--background-color);
    box-shadow: 0 15px 30px -10px rgb(5 50 13 / 32%);

}

.achievements-details .achievements-details-item .image-stack {
    display: grid;
    position: relative;
    grid-template-columns: repeat(12, 1fr);
}

.achievements-details .achievements-details-item .image-stack .stack-back-s {
    grid-column: 1/span 8;
    grid-row: 1;
    max-width: 350px;
    width: 100%;
    z-index: 1;
}

.achievements-details .achievements-details-item .image-stack .stack-front-s {
    grid-row: 1;
    grid-column: 5/-1;
    margin-top: 20%;
    max-width: 350px;
    width: 100%;
    z-index: 2;
}

.achievements-details .achievements-details-item .image-stack .stack-back-e {
    grid-column: 5/-1;
    grid-row: 1;
    width: 100%;
    z-index: 1;
}

.achievements-details .achievements-details-item .image-stack .stack-front-e {
    grid-row: 1;
    grid-column: 1/span 8;
    margin-top: 20%;
    width: 100%;
    z-index: 2;
}




/* galerie Section - Home Page
------------------------------*/
.galerie .galerie-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.galerie .galerie-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-font);
}

.galerie .galerie-filters li:hover,
.galerie .galerie-filters li.filter-active {
    color: var(--secondary-color);
}

.galerie .galerie-filters li:first-child {
    margin-left: 0;
}

.galerie .galerie-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .galerie .galerie-filters li {
        font-size: 14px;
        margin: 0 0 10px 0;
    }
}

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

.galerie .galerie-item .galerie-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -100%;
    z-index: 3;
    transition: all ease-in-out 0.5s;
    background: rgba(var(--background-color-rgb), 0.9);
    padding: 15px;
}

.galerie .galerie-item .galerie-info h4 {
    font-size: 14px;
    font-weight: 600;
    padding-right: 50px;
}

.galerie .galerie-item .galerie-info p {
    color: rgba(var(--default-color-rgb), 0.7);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.galerie .galerie-item .galerie-info .preview-link,
.galerie .galerie-item .galerie-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 14px);
    color: rgba(var(--default-color-rgb), 0.7);
    transition: 0.3s;
    line-height: 0;
}

.galerie .galerie-item .galerie-info .preview-link:hover,
.galerie .galerie-item .galerie-info .details-link:hover {
    color: var(--primary-color);
}

.galerie .galerie-item .galerie-info .details-link {
    right: 14px;
    font-size: 28px;
}

.galerie .galerie-item:hover .galerie-info {
    opacity: 1;
    bottom: 0;
}



/*--------------------------------------------------------------
# Events Page
--------------------------------------------------------------*/
/* Events Section - Events Page
------------------------------*/
.events .posts-list article {
    box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.events .posts-list .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.events .posts-list .post-category {
    font-size: 16px;
    color: rgba(var(--default-color-rgb), 0.6);
    margin-bottom: 0px;
}

.events .posts-list .title {
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    margin: 0 0 20px 0;
}

.events .posts-list .title a {
    color: #000;
    transition: 0.3s;
}

.events .posts-list .title a:hover {
    color: var(--secondary-color);
}

.events .posts-list .post-date {
    font-size: 14px;
    color: rgba(var(--default-color-rgb), 0.6);
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Event Details Page
--------------------------------------------------------------*/
/* Event-details Section - Event Details Page
------------------------------*/
.event-details .article {
    box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
    padding: 30px;
}

.event-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.event-details .title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.event-details .content {
    margin-top: 20px;
}

.event-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.event-details .content blockquote {
    overflow: hidden;
    background-color: rgba(var(--default-color-rgb), 0.05);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.event-details .content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.event-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.event-details .meta-top {
    margin-top: 20px;
    color: rgba(var(--default-color-rgb), 0.6);
}

.event-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.event-details .meta-top ul li+li {
    padding-left: 20px;
}

.event-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: rgba(var(--default-color-rgb), 0.6);
}

.event-details .meta-top a {
    color: rgba(var(--default-color-rgb), 0.6);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.event-details .sidebar {
    padding: 30px;
    box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.event-details .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0;
}

.event-details .sidebar .sidebar-item+.sidebar-item {
    margin-top: 40px;
}

.event-details .sidebar .recent-posts .post-item {
    display: flex;
    margin-top: 15px;
}

.event-details .sidebar .recent-posts img {
    width: 80px;
    margin-right: 15px;
    max-height: 50px;
    object-fit: cover;
}

.event-details  img.max-500 {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.event-details .sidebar .recent-posts h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.event-details .sidebar .recent-posts h4 a {
    color: var(--default-color);
    transition: 0.3s;
}

.event-details .sidebar .recent-posts h4 a:hover {
    color: var(--secondary-color);
}

.event-details .sidebar .recent-posts time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: rgba(var(--default-color-rgb), 0.5);
}


.max-height-450{
    max-height: 450px;
}

.max-height-500{
    max-height: 500px;
}
