@font-face {
    font-family: "Courgette";
    src: url("../fonts/Courgette-Regular.ttf") format("truetype");
}

/* Fonts */
:root {
    --font-default: "Open Sans", 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";
    --font-primary: "Roboto", sans-serif;
    --font-secondary: "Work Sans", sans-serif;
    --font-signature: "Courgette", sans-serif;
}

/* Colors */
:root {
    --color-default: #364d59;
    --color-primary: #e79e23;
    --color-secondary: #52565e;
    --color-tertiary: #f5f6f7;
    --color-quaternary: #f9e7c8;
}

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

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

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: #e79e23;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 80px 0;
    overflow: hidden;
}

.section-bg {
    background-color: var(--color-tertiary);
}

.section-header {
    text-align: center;
    padding-bottom: 70px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    display: inline-block;
}

.section-header h2:before {
    margin: 0 15px 10px 0;
}

.section-header h2:after {
    margin: 0 0 10px 15px;
}

.section-header p {
    margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
    .section-header p {
        max-width: 60%;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 140px 0 60px 0;
    min-height: 30vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumbs:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
}

.breadcrumbs h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-secondary);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
}

.breadcrumbs ol a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

.breadcrumbs ol a:hover {
    text-decoration: underline;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #fff;
    content: "/";
}

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

.scroll-top i {
    font-size: 24px;
    color: var(--color-secondary);
    line-height: 0;
}

.scroll-top:hover {
    background: #e79e23;
    color: #fff;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #fff;
    border-color: var(--color-primary) transparent var(--color-primary) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1.5s linear infinite;
    animation: animate-preloader 1.5s linear infinite;
}

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

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

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

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

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

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

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

    .navbar li {
        position: relative;
    }

    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-family: var(--font-primary);
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

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

    .navbar>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--color-primary);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }

    @media (min-width: 1280px) {

        .mobile-nav-show,
        .mobile-nav-hide {
            display: none;
        }
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgba(0, 0, 0, 0.8);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-primary);
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        text-transform: uppercase;
        transition: 0.3s;
    }

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

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }

    .mobile-nav-show {
        position: relative;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        padding-right: 10px;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

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

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9996;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    z-index: 997;
    position: absolute;
    padding: 30px 0;
    top: 0;
    left: 0;
    right: 0;
}

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

.header .logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    font-family: var(--font-primary);
}

.header .logo h1 span {
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    overflow-x: hidden;
    padding: 0;
}

.hero .hero-img-container {
    width: 100%;
    min-height: 100vh;
    padding: 80px 0;
    margin: 0;
    position: relative;
}

.hero .hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
    transition-duration: 0.4s;
}

.hero .hero-img::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    inset: 0;
}

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

.hero .info {
    position: absolute;
    inset: 0;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero .info {
        padding: 0 50px;
    }
}

.hero .info h2 {
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 56px;
    font-weight: 700;
    position: relative;
}

.hero .info h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

@media (max-width: 768px) {
    .hero .info h2 {
        font-size: 36px;
    }
}

.hero .info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.hero .info .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 1rem;
}

.hero .info .btn-get-started {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    border: 2px solid var(--color-primary);
}

.hero .info .btn-get-started:hover {
    background: var(--color-primary);
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
    background: #fff;
    box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
    padding: 30px;
}

.stats-counter .stats-item img {
    font-size: 42px;
    line-height: 0;
    margin-right: 20px;
    color: var(--color-primary);
}

.stats-counter .stats-item span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: var(--color-secondary);
}

.stats-counter .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--font-primary);
    font-size: 14px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h2 {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-secondary);
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .about h2 {
        font-size: 36px;
    }
}

.about .our-story {
    padding: 40px;
    background-color: #f5f6f7;
}

.about .our-story h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

@media (max-width: 992px) {
    .about .our-story h3 {
        font-size: 24px;
    }
}

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

.about ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.about ul li {
    padding: 6px 0;
    display: flex;
    align-items: start;

}

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

.about ul li:last-child {
    padding-bottom: 0;
}

.about ul li::before {
    font-size: 20px;
    margin-right: 8px;
    color: var(--color-primary);

    content: "\f26b";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.about ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--color-primary);
}

.about .about-img {
    background-size: cover;
    background-position: center top;
    min-height: 400px;
}

@media (min-width: 768px) {
    .about .about-img {
        min-height: 600px;
    }
}

/*--------------------------------------------------------------
# Associations
--------------------------------------------------------------*/
.associations {
    padding: 50px 0;
    text-align: center;
}

.associations .logo {
    justify-content: center;
}

.associations img {
    max-width: 70%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    /* filter: grayscale(100); */
}

/* .associations img:hover {
  filter: none;
  transform: scale(1.1);
} */

@media (max-width: 768px) {
    .associations img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team .member .member-img {
    margin: 0 24px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    max-width: 368px;
}

@media (max-width: 1024px) {
    .team .member .member-img {
        margin: 0 60px;
    }
}

.team .member .member-img img {
    position: relative;
    z-index: 1;
}

.team .member .member-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 150px;
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .team .member .member-info {
        min-height: unset;
    }
}

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

.team .member .member-info span {
    font-style: italic;
    display: block;
    font-size: 15px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.team .member .member-info .member-summary {
    margin-bottom: 0;
    font-size: 13.7px;
}

.team .btn {
    margin-top: 10px;
    font-size: 12px;
    width: max-content;
}

.team .member .member-img img {
    transition: all ease-in-out 0.3s;
}

.team .member .member-img:hover img {
    transform: scale(1.2);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    padding: 40px;
    padding-bottom: 20px;
    background: #fff;
    height: 100%;
}

.services .service-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-bottom: 50px;
}

.services .service-item .icon img {
    color: var(--color-secondary);
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
}

/* .services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: var(--color-primary);
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
} */

.services .service-item h3 {
    color: var(--color-default);
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 22px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid #ebebed;
    transition: 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

/* .services .service-item:hover .icon:before {
  background: var(--color-primary);
} */

.services .service-item h3 {
    border-color: var(--color-primary);
}

.services .service-item .signature-container {
    display: flex;
    margin-top: 32px;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}

.services .service-item .signature {
    align-self: flex-end;
    /* ✅ THIS does the trick */
    font-family: var(--font-signature);
    color: var(--color-default);
    background-color: var(--color-quaternary);
    font-size: 16px;
    padding: 5px 24px;
    text-align: center;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 20px 0 30px 0;
}

.contact .info-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 24px;
    line-height: 0;
    color: var(--color-primary);
    border-radius: 50%;
    border: 2px dotted #e79e23;
}

.contact .info-item h3 {
    font-size: 20px;
    color: #6c757d;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-item p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .info-item .description {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .info-item .address-icon {
    width: 30px;
}

.contact .info-item .email-icon {
    width: 24px;
}

.contact .info-item .call-icon {
    width: 24px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    color: #fff;
    background: url("../img/footer-bg.jpg") top center no-repeat;
    background-size: cover;
    font-size: 14px;
    padding: 80px 0 60px 0;
    position: relative;
}

.footer:before {
    content: "";
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    inset: 0;
}

.footer img {
    position: relative;
}

.footer .icon {
    margin-right: 15px;
    font-size: 24px;
    line-height: 0;
    position: relative;
    align-self: flex-start;
    width: 24px;
    height: 24px;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
    color: #fff;
}

.footer p {
    position: relative;
}

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

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
    position: relative;
}

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

.footer .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer .footer-policy {
    text-align: center;
    font-size: 13px;
    position: relative;
    margin-top: 8px;
}

.footer .footer-policy a {
    color: #fff;
}

/*--------------------------------------------------------------
# Scrollbar
--------------------------------------------------------------*/

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/*--------------------------------------------------------------
# Policy Pages
--------------------------------------------------------------*/
.policy .img-bg {
    background-size: cover;
    background-position: center center;
    min-height: 400px;
}

.policy h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.policy h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    bottom: 0;
}

.policy .icon-box {
    margin-top: 50px;
}

.policy .icon-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.policy .icon-box h4:hover {
    color: var(--color-primary);
    transition: 0.3s;
}

.policy .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.policy .info-container h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.policy .info-container h4:hover {
    color: var(--color-primary);
    transition: 0.3s;
}

.policy .info-container p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners .partners-content {
    display: flex;
    justify-content: space-around;
    background-color: var(--color-tertiary);
    padding: 40px;
    box-shadow: 0px 2px 14.1px 0px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
    .partners .partners-content {
        box-shadow: none;
    }
}

.partners .partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners .partner-item:nth-child(n+4) {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .partners .partner-item {
        margin-bottom: 32px;
    }

    .partners .partner-item:last-child {
        margin-bottom: 0;
    }

    .partners .partner-item:nth-child(n+4) {
        margin-top: 0;
    }
}

.partners .partner-logo img {
    height: 54px;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 992px) {
    .partners .partner-logo img {
        height: 40px;
    }
}

.partners .partner-description {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    color: var(--color-secondary);
}

.partners .partner-no-link {
    cursor: default;
}

/*--------------------------------------------------------------
# Investments & Exits Section
--------------------------------------------------------------*/
.investments,
.exits {
    padding-top: 0;
}

.investments .section-header,
.exits .section-header {
    padding-bottom: 20px;
}

.investments .investments-content,
.exits .exits-content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

@media (max-width: 992px) {

    .investments .investments-content,
    .exits .exits-content {
        gap: 16px;
    }
}

.investments .investment-item,
.exits .exit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-tertiary);
    box-shadow: 0px 2px 14.1px 0px rgba(0, 0, 0, 0.12);
    padding: 20px;
}

.investments .investment-item,
.exits .exit-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.investments .investment-item img,
.exits .exit-item img {
    max-height: 54px;
    max-width: 100%;
    object-fit: contain;
}

@media (min-width: 992px) {

    .investments .col-lg,
    .exits .col-lg {
        flex: 0 0 auto;
        width: 18%;
    }
}

@media (max-width: 992px) {

    .investments .col-lg,
    .exits .col-lg {
        width: 45%;
    }
}

/*--------------------------------------------------------------
# Exits Section
--------------------------------------------------------------*/
.exits {
    padding-top: 0;
}
