:root {
    --primary-color: #5391c6;
    --primary-color-dark: #5391c6;
    --secondary-color: #10bd3b;
    --accent-color: #f49306;
    --teal-color: #09898d;
    --orange-color: #f18725;
    --red-color: #d8343d;
    --green-color: #87bd41;
    --green-color-dark: #1d2c02;
    --nav-text-color: #444444;
    --nav-text-active-color: #5391c6;
    --nav-hover-background: #f8f9fa;

}

.tealColor {
    color: var(--teal-color);
}

.blueColor {
    color: var(--primary-color);
}

.redColor {
    color: var(--red-color);
}

.orangeColor {
    color: var(--orange-color);
}

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

.darkGreenColor {
    color: var(--green-color-dark);
}

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

.tealBackground {
    background-color: var(--teal-color);
}

.lightTealBackground {
    background-color: #529799;
}

.primaryDarkBackground {
    background-color: var(--primary-color-dark);
}

.orangeBackground {
    background-color: var(--orange-color);
}

.greenBackground {
    background-color: var(--green-color);
}

.redBackground {
    background-color: var(--red-color);
}

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




h1 {
    font-size: clamp(39px, 4vw, 52px);
    /* Minimum: 39px, Preferred: 4vw, Maximum: 52px */
    margin: 0;
    padding: 0;
}

h2 {
    font-size: clamp(33px, 3.33vw, 43px);
    /* Minimum: 33px, Preferred: 3.33vw, Maximum: 43px */
    margin: 0;
    padding: 0;
}

h3 {
    font-size: clamp(28px, 2.8vw, 36px);
    /* Minimum: 28px, Preferred: 2.8vw, Maximum: 36px */
    margin: 0;
    padding: 0;
}

h4 {
    font-size: clamp(24px, 2.33vw, 30px);
    /* Minimum: 24px, Preferred: 2.33vw, Maximum: 30px */
    margin: 0;
    padding: 0;
}

h5 {
    font-size: clamp(15px, 1.94vw, 20px);
    /* Minimum: 20px, Preferred: 1.94vw, Maximum: 25px */
    margin: 0;
    padding: 0;
}

h6 {
    font-size: clamp(15px, 1.63vw, 17px);
    /* Minimum: 17px, Preferred: 1.63vw, Maximum: 21px */
    margin: 0;
    padding: 0;
}

p {
    font-size: clamp(16px, 2vw, 22px);
    /* Minimum: 19px, Preferred: 2vw, Maximum: 22px */
    text-align: justify;
    line-height: 1.5;
}
.customLi {
    font-size: clamp(16px, 2vw, 22px);
}
.p-sm {
    font-size: clamp(15px, 1.64vw, 18px) !important;
    /* Minimum: 15px, Preferred: 1.64vw, Maximum: 18px */
    text-align: justify;
    line-height: 1.2;
}

.p-lg {
    font-size: clamp(22px, 2.8vw, 26px);
    /* Minimum: 22px, Preferred: 2.8vw, Maximum: 26px */
    text-align: center;
    line-height: 1.5;
}

.p-md {
    font-size: clamp(18px, 0.2vw, 24px);
    /* Minimum: 22px, Preferred: 2.8vw, Maximum: 26px */
    text-align: center;
    line-height: 1.5;
}

.p-lg-spaced {
    font-size: clamp(22px, 2.8vw, 26px);
    /* Minimum: 22px, Preferred: 2.8vw, Maximum: 26px */
    text-align: center;
    line-height: 2;
}


.p-align-left {
    text-align: start;
}








body {
    font-family: 'Roboto', sans-serif;
}


a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

header .header-logo {
    color: #001b4f;
    font-weight: 700;
    font-size: 23px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

header {
    background: #fff;
    -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.4);
    box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.4);
    position: -webkit-sticky;
    position: relative;
    top: 0;
    z-index: 1000;
}



.registerNsearch {
    padding-top: 8px;
}

header .main-menu>li {
    position: relative;
    font-family: 'Jost', sans-serif !important;
}

header .main-menu>li>a {
    color: var(--nav-text-color);
    font-size: 15px;
    padding: clamp(5px, 1.5vw, 18px);
    font-weight: 700;
    display: block;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    text-decoration: none;
}

header .main-menu>li.active>a {
    color: var(--nav-text-active-color);
}

header .main-menu>li:hover>a {
    color: var(--nav-text-active-color);
}

header .main-menu>li>a>i {
    color: var(--nav-text-color);
}

header .main-menu>li>a:hover>i {
    color: #fff;
}

header .main-menu>li:hover>a i {
    color: #fff;
}

header .main-menu .sub-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 100%;
    width: 300px;
    overflow: hidden;
    border-top: 2px solid var(--orange-color);
    background: #fff;
    border-radius: 0px 0px 5px 5px;
    -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
    box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
    z-index: 5;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

header .main-menu .sub-menu a {
    padding: 11px 10px;
    display: block;
    color: var(--nav-text-color);
    font-weight: 600;
    font-size: 15px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    text-decoration: none;
}

header .main-menu .sub-menu a i {
    color: var(--nav-text-color);
}

header .main-menu .sub-menu a:hover {
    color: var(--nav-text-active-color);
    background-color: var(--nav-hover-background);
}

header .main-menu>li:hover .sub-menu {
    display: block;
}

header .header-logo figure img {
    max-width: 200px;
}

header .demo-link {
    margin-left: 1vw;
}

header .side-menu-close {
    background: transparent;
}

header .side-menu-close span {
    background: #21395F;
    width: 28px;
}

#call-action .call-action {
    color: #001b4f;
    font-weight: 700;
    font-size: 23px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

#call-action .call-action:hover {
    color: #10bd3b;
}

/* side menu */
.side-menu-wrap {
    width: 300px;
    position: fixed;
    left: -100%;
    top: 0;
    background: #fff;
    height: 100%;
    -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
    box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
    overflow-y: auto;
    z-index: 15000;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.side-menu-wrap.opened {
    left: 0;
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
}

.side-menu-logo {
    border-bottom: 2px solid #FE8204;
}

.side-menu-nav .main-menu>li {
    position: relative;
    border-bottom: 1px solid #ccc;
}

.side-menu-nav .main-menu>li>a>i {
    color: var(--nav-text-color);
}

.side-menu-nav .main-menu .sub-menu {
    border-top: 1px solid #FE8204;
    background: #fff;
    display: none;
}

.side-menu-nav .main-menu .sub-menu li {
    border-bottom: 1px solid #eee;
}

.side-menu-nav .main-menu .sub-menu a {
    padding: 10px 22px;
    display: block;
    color: #212529;
    font-weight: 600;
    font-size: .9em;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.side-menu-nav .main-menu .sub-menu a i {
    color: var(--nav-text-color);
}

.side-menu-nav .main-menu .sub-menu~i {
    font-size: .8em;
    position: absolute;
    padding: 21px 11px;
    right: 0;
    top: 0;
    border-left: 1px solid #ccc;
}

.side-menu-nav .main-menu .sub-menu a:hover {
    background: #F5F5F5;
}

.side-menu-nav .main-menu>li>a {
    color: #212529;
    padding: 15px 30px 15px 10px;
    font-weight: 600;
    display: block;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.side-menu-wrap .side-menu-close {
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
    width: 30px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.side-menu-close {
    height: 40px;
    width: 40px;
    background: var(--teal-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.side-menu-close span {
    height: 2px;
    width: 20px;
    background: #fff;
    position: relative;
    opacity: 1;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.side-menu-close span:nth-child(1) {
    top: -5px;
}

.side-menu-close span:nth-child(3) {
    bottom: -5px;
}

.side-menu-close.closed span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    -webkit-transform: translateY(7px) rotate(45deg);
    -moz-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -o-transform: translateY(7px) rotate(45deg);
}

.side-menu-close.closed span:nth-child(2) {
    opacity: 0;
}

.side-menu-close.closed span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -moz-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -o-transform: translateY(-7px) rotate(-45deg);
}



.oddSection {
    background-color: #bdbdbd16;
    padding-top: clamp(10px, 8vh, 60px);
    /* Minimum: 8vh, Preferred: 10vh, Maximum: 11.5vh */
    padding-bottom: clamp(10px, 8vh, 60px);
    /* Minimum: 9vh, Preferred: 11vh, Maximum: 12.5vh */
}

.evenSection {
    background-color: #fff;
    padding-top: clamp(10px, 8vh, 60px);
    /* Minimum: 8vh, Preferred: 10vh, Maximum: 11.5vh */
    padding-bottom: clamp(10px, 8vh, 60px);
    /* Minimum: 9vh, Preferred: 11vh, Maximum: 12.5vh */
}

.summaryMainV2 {
    margin-top: clamp(10px, 8vh, 60px);
    ;
    margin-bottom: clamp(10px, 8vh, 60px);
    ;
}

/*  custom overlay */
.custom-overlay {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 12500;
    visibility: hidden;
    opacity: 0;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.custom-overlay.show {
    visibility: visible;
    opacity: 1;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}


.search-form {
    right: 200px;
    top: 200px;
}

.search-field {
    background-color: transparent;
    background-image: url(https://wp-themes.com/wp-content/themes/twentythirteen/images/search-icon.png);
    background-position: 5px center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    border: none;
    cursor: pointer;
    height: 40px;
    margin: 3px 0;
    padding: 0 0 0 34px;
    position: relative;
    -webkit-transition: width 400ms ease, background 400ms ease;
    transition: width 400ms ease, background 400ms ease;
    width: 0px;
    cursor: pointer;
}

.search-field:focus {
    border-radius: 5px;
    background-color: #edf6ff;
    border: 2px solid #c9e6ff;
    cursor: text;
    outline: 0;
    width: 100px;
    color: #fff;
}

.search-form .search-submit {
    display: none;
}



.submit-button {
    padding: 15px 40px;
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    transition: all .4s cubic-bezier(0.645, 0.045, 0.355, 1);
    cursor: pointer;
    display: block;
}

.submit-button::after,
.submit-button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.submit-button::after {
    width: 30px;
    height: 1px;
    background: white;
    transform: translateX(-3px);
    margin-top: 0px;
}

.submit-button::before {
    content: "";
    transform: rotate(-135deg) translateX(50%);
    width: 11px;
    height: 11px;
    background: transparent;
    border-left: 1px solid white;
    border-bottom: 1px solid white;
    margin-top: -1px;
}


.submit-button:hover {
    padding: 15px 60px 15px 20px;
}

.submit-button:hover::after,
.submit-button:hover::before {
    opacity: 1;
    right: 15px;
}

.submit-button-sm {
    padding: 10px 40px;
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    transition: all .4s cubic-bezier(0.645, 0.045, 0.355, 1);
    cursor: pointer;
    display: block;
}

.submit-button-sm::after,
.submit-button-sm::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.submit-button-sm::after {
    width: 30px;
    height: 1px;
    background: white;
    transform: translateX(-3px);
    margin-top: 0px;
}

.submit-button-sm::before {
    content: "";
    transform: rotate(-135deg) translateX(50%);
    width: 11px;
    height: 11px;
    background: transparent;
    border-left: 1px solid white;
    border-bottom: 1px solid white;
    margin-top: -1px;
}


.submit-button-sm:hover {
    padding: 10px 60px 10px 20px;
}

.submit-button-sm:hover::after,
.submit-button-sm:hover::before {
    opacity: 1;
    right: 15px;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 8px;
    padding-top: 8px;
}

.logo-group-left,
.logo-group-right {
    display: flex;
    align-items: center;
}

.logo {
    max-height: 55px;
    height: auto;
    width: auto;
    margin: 0 10px;
    /* Adjust margin as needed */
}

.logo-sm {
    max-height: 40px;
    height: auto;
    width: auto;
    margin: 0 10px;
    /* Adjust margin as needed */
}

.logo-sm-in {
    max-height: 30px;
    height: auto;
    width: auto;
    margin: 0 10px;
    /* Adjust margin as needed */
}

@media (max-width: 991px) {
    .logo-container {
        display: none;
    }
}

.rounded-image {
    border-radius: 10px;
}

.introImage {
    max-height: 300px;
}

.coverContainer {
    width: 100%;
    max-width: 1350px;
    padding-left: 1rem;
    /* Adjust padding as needed */
    padding-right: 1rem;
    /* Adjust padding as needed */
    margin-left: auto;
    margin-right: auto;
}


.search-form-sm {
    padding: 8px;
    display: flex;
    gap: 0.5rem;
    /* Adjust space between input and button as needed */
    width: 100%;
    /* Ensure the form takes the full width of the parent */
    max-width: 600px;
    /* Adjust as needed */
    margin: 0 auto;
    /* Center the form within its parent */
}

.search-field-sm {
    flex: 1;
    /* Allows the search box to grow and fill available space */
    min-width: 0;
    /* Prevents the search box from overflowing */
}

.search-submit-sm {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background-color: var(--teal-color);
    color: #fff;
}





.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
}

.content-overlay-sm {
    display: none;
}

.ytp-chrome-top,
.ytp-show-cards-title {
    display: none !important;
}

.ytp-gradient-top {
    display: none !important;
}


.customH1 {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: url('../assets/images/f-merge.jpg');
    background-size: cover;
    background-position: center;
    animation: moveBackground 20s linear infinite;
    font-weight: 700;
    font-size: clamp(100px, 19vw, 300px);
    text-align: center;
    font-family:
        -apple-system,
        system-ui,
        Segoe UI,
        Noto Sans,
        Helvetica,
        Arial,
        sans-serif;
}

.customH2 {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: url('../assets/images/a-merge.jpg');
    background-size: 200%;
    animation: moveBackground 20s linear infinite;
    font-weight: 700;
    font-size: clamp(100px, 19vw, 300px);
    /* Minimum: 100px, Preferred: 10vw, Maximum: 300px */
    text-align: center;
    font-family:
        -apple-system,
        system-ui,
        Segoe UI,
        Noto Sans,
        Helvetica,
        Arial,
        sans-serif;
}

.customH3 {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: url('../assets/images/o-merge.jpg');
    background-size: 200%;
    animation: moveBackground 20s linear infinite;
    font-weight: 700;
    font-size: clamp(100px, 19vw, 300px);
    /* Minimum: 100px, Preferred: 10vw, Maximum: 300px */
    text-align: center;
    font-family:
        -apple-system,
        system-ui,
        Segoe UI,
        Noto Sans,
        Helvetica,
        Arial,
        sans-serif;
}

.customH4 {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: url('../assets/images/timur1-1.png');
    background-size: cover;
    background-position: center;
    animation: moveBackground 20s linear infinite;
    font-weight: 700;
    font-size: clamp(100px, 19vw, 300px);
    text-align: center;
    font-family:
        -apple-system,
        system-ui,
        Segoe UI,
        Noto Sans,
        Helvetica,
        Arial,
        sans-serif;
}

.customH5 {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: url('../assets/images/carda1-1.png');
    background-size: cover;
    background-position: center;
    animation: moveBackground 20s linear infinite;
    font-weight: 700;
    font-size: clamp(100px, 19vw, 300px);
    text-align: center;
    font-family:
        -apple-system,
        system-ui,
        Segoe UI,
        Noto Sans,
        Helvetica,
        Arial,
        sans-serif;
}

.customH6 {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: url('../assets/images/highland-potato.jpg');
    background-size: cover;
    background-position: center;
    animation: moveBackground 20s linear infinite;
    font-weight: 700;
    font-size: clamp(100px, 19vw, 300px);
    text-align: center;
    font-family:
        -apple-system,
        system-ui,
        Segoe UI,
        Noto Sans,
        Helvetica,
        Arial,
        sans-serif;
}

@keyframes moveBackground {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

.video-section {
    width: 100%;
    aspect-ratio: 21.3/9;
    position: relative;
    overflow: hidden;
}

.video-section-16-9 {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#player-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    /* Increased scale for 25% zoom */
    object-fit: cover;
}


#muteButton {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    cursor: pointer;
}



.nepalFoodForumTitle {
    background-color: #87bd41;
    color: white;
    padding-top: 5%;
    padding-bottom: 2%;
}

.nepalFoodForum {
    margin-bottom: 6%;
}

.nepalFoofForumCustomCards {
    margin-top: -5%;
    z-index: 1000;
}

.emptySpaceForCards {
    height: 100px;
}

.cutomCard1 {
    min-height: 350px;
    height: 100%;
    background-color: #09898d;
    transition: ease-in-out 0.32s;
    color: #fff;
    border-bottom: 8px solid #f58521;
    border-left: 1px solid #f58521;
    border-right: 1px solid #f58521;
    border-top: 1px solid #f58521;
}

.cutomCard1:hover {
    margin-top: -4%;
    transition: ease-in-out 0.3s;
    padding-bottom: 4%;
    color: #f58521;
    background-color: #fff;

}

.cutomCard2 {
    min-height: 350px;
    height: 100%;
    background-color: #fff;
    border-bottom: 8px solid #09898d;
    border-left: 1px solid #09898d;
    border-right: 1px solid #09898d;
    border-top: 1px solid #09898d;
    transition: ease-in-out 0.3s;
    background-color: #09898d;
    color: #fff;
}

.cutomCard2:hover {
    margin-top: -4%;
    background-color: #fff;
    transition: ease-in-out 0.3s;
    padding-bottom: 4%;
    color: #09898d;
}

.cutomCard2:hover .cardDescription {
    color: #000;
}

.cutomCard3:hover .cardDescription {
    color: #000;
}

.cutomCard1:hover .cardDescription {
    color: #000;
}

.cutomCard3 {
    min-height: 350px;
    height: 100%;
    background-color: #f18725;
    color: #fff;
    border-bottom: 8px solid #f18725;
    border-left: 1px solid #f18725;
    border-right: 1px solid #f18725;
    border-top: 1px solid #f18725;
    transition: ease-in-out 0.3s;
}

.cutomCard3:hover {
    margin-top: -4%;
    transition: ease-in-out 0.3s;
    padding-bottom: 4%;
    color: #f18725;
    background-color: #fff;
}

.hihComoditiesAlt {
    padding-top: 11.5vh;
    padding-bottom: 1vh;
    width: 100%;
    background-image: url('../assets/images/Rectangle-103.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hAIcard {
    position: relative;
    overflow: hidden;
}

.hAIcard .image-overlay {
    opacity: 1;
}


.comoditiesImage {
    position: relative;
    overflow: hidden;
}

.comoditiesImage img {
    width: 100%;
    display: block;
    transition: filter 0.3s ease;
    transition: ease-in-out 0.3s;
}

.hAIcard:hover .comoditiesImage img {
    transform: scale(1.2);
    transition: ease-in-out 0.3s;
}

.commoditiesImageFixed {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* 4:3 Aspect Ratio (3 / 4 = 0.75 or 75%) */
    overflow: hidden;
    min-height: 200px;
    margin: 0;
    padding: 0;
}

.commoditiesImageFixed img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    /* Ensures the image covers the container */
    transition: filter 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.0);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay .overlay-content {
    text-align: bottom;
    padding: 20px;
    margin-top: 90%;
    transition: ease-in-out 0.3s;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    white-space: normal;

}

.hih-read-more {
    position: absolute;
    bottom: 5%;
    right: 0px;
    /* clip-path: polygon(14% 3%, 100% 0%, 100% 100%, 14% 100%, 0% 50%); */
    color: white;
    padding: 5px 30px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.hih-read-more-bottom {
    position: absolute;
    bottom: 20%;
    right: 0px;
    color: white;
    padding: 5px 30px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.hih-name-bottom {
    background-color: #0000004f;
    color: white;
    padding: 5px 30px;
    opacity: 1;
    transition: opacity 0.3s ease;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.hAIcard:hover .hih-read-more {
    opacity: 1;

}

.hAIcard:hover .hih-read-more-bottom {
    opacity: 1;

}

.hAIcard:hover .hih-name-bottom {
    opacity: 1;

}

.logo-marquee,
.logo-marquee-reverse {
    overflow: hidden;
    position: relative;
    width: 100%;
    background-color: transparent;
}

.marquee-content,
.marquee-content-reverse {
    display: flex;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-content-reverse {
    animation: marquee-reverse 20s linear infinite;
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }

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

.partnerContainer img {
    max-width: 100%;
    height: auto;
}

.highlightMain {
    margin-left: 2%;
    margin-right: 2%;
    width: 100%;
    /* height: 100%; */
    overflow: hidden;
    position: relative;
    border-radius: 0px;
    border-bottom: 12px solid #09898d;
    transition: ease-in-out 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.img-wrapper {
    position: relative;
    /* Ensure child elements position relative to this */
    width: 100%;
    height: auto;
    overflow: hidden;
}

.inner-img {
    width: 100%;
    height: clamp(200px, 40vh, 300px);
    transition: transform 0.3s ease;
    /* Smooth transition for the hover effect */
    filter: brightness(100%);
    /* Darken the image */
}

.highlightMain .eventTitle {
    height: clamp(110px, 9vh, 150px);
}

.highlightMain .eventTitle h5 {
    padding-top: 4px;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
}


.hihComoditiesAlt {
    padding-top: 11.5vh;
    padding-bottom: 1vh;
    width: 100%;
    background-image: url('../assets/images/Rectangle-103.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.highlightMain:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.highlightMain:hover .inner-img {
    transform: scale(1.1);
    /* Enlarge the image on hover */
    filter: brightness(100%);
    /* Reset brightness on hover */
}

.highlightText {
    position: absolute;
    top: 20px;
    /* Adjust as needed */
    left: 20px;
    /* Adjust as needed */
    color: #fff;
    z-index: 1;
    /* Ensure text is above the image */
    transition: ease-in-out 0.3s;
    letter-spacing: -1px;
}

.read-more {
    position: absolute;
    top: 59.5%;
    right: 0px;
    /* Remove clip-path for testing */
    clip-path: polygon(14% 3%, 100% 0%, 100% 100%, 14% 100%, 0% 50%);
    color: white;
    padding: 5px 30px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.highlightMain:hover .read-more {
    opacity: 1;
}

.footer {
    color: white;
    background-color: #2f5e99;
    box-shadow: 0 -4px 6px -2px rgba(0, 0, 0, 0.3);
}

.carasaulButton {
    background-color: var(--teal-color);
    color: #fff;
    border-radius: 100%;
    aspect-ratio: 1;
}

.carasaulButton:hover {
    border: 1px solid #000;
}



.summaryData-v2 {
    padding-top: 4vh;
    padding-bottom: 4vh;
    transition: ease-in-out 0.3s;
    border: 2px solid #09898d00;
}

.summaryData-v2:hover {
    margin-top: -2vh;
    margin-bottom: 2vh;
    height: 100%;
    background-color: white;
    color: #046265;
    border: 2px solid #045e61;
    border-radius: 10px;
    box-shadow: 4px 8px 8px #00000046;
    transform: scale(1.05);
    transition: ease-in-out 0.3s;

}

.summaryData-green-v2 {
    padding-top: 4vh;
    padding-bottom: 4vh;
    transition: ease-in-out 0.3s;
    border: 2px solid #09898d00;
}

.summaryData-green-v2:hover {
    margin-top: -2vh;
    margin-bottom: 2vh;
    height: 100%;
    background-color: white;
    color: #325603;
    border: 2px solid #46730b;
    border-radius: 10px;
    box-shadow: 4px 8px 8px #00000046;
    transform: scale(1.05);
    transition: ease-in-out 0.3s;

}

.summaryData-orange-v2 {
    padding-top: 4vh;
    padding-bottom: 4vh;
    transition: ease-in-out 0.3s;
    border: 2px solid #09898d00;
    color: #fff;
}

.summaryData-orange-v2:hover {
    margin-top: -2vh;
    margin-bottom: 2vh;
    height: 100%;
    background-color: white;
    color: #673302;
    border: 2px solid #673302;
    border-radius: 10px;
    box-shadow: 4px 8px 8px #00000046;
    transform: scale(1.05);
    transition: ease-in-out 0.3s;

}

.custom-border-end {
    padding-left: 4px;
    /* Adjust padding if needed */
    padding-right: 4px;
    /* Adjust padding if needed */
}

.custom-border-bottom {
    padding-left: 4px;
    /* Adjust padding if needed */
    padding-right: 4px;
    /* Adjust padding if needed */
}

.custom-border-x {
    padding-left: 4px;
    /* Adjust padding if needed */
    padding-right: 4px;
    /* Adjust padding if needed */
}

@media (min-width: 768px) {
    .custom-border-end {
        border-right: 1px solid #f8f9fa;
        /* Change this to the border color you need */
    }
}

@media (max-width: 768px) {
    .custom-border-bottom {
        border-bottom: 1px solid #f8f9fa;
        /* Change this to the border color you need */
    }
}

@media (min-width: 992px) {
    .custom-border-end-lg {
        border-right: 1px solid #f8f9fa;
        /* Change this to the border color you need */
    }
    
    header .main-menu>li:nth-of-type(3) .sub-menu {
        left: 200%;
    }
    
    header .main-menu>li:nth-of-type(6) .sub-menu, header .main-menu>li:last-of-type .sub-menu {
        left: 160%;
    }
}

.registerForThisEvent {
    align-items: center;
    border-radius: 10px;
    padding: 4vh;
}

.registerForThisEventButton {
    padding: 14px;
    color: white;
    font-size: 24px;
    font-weight: 500;
    border: 3px solid #fff;
    border-radius: 10px;
    transition: ease-in-out 0.3s;
    display: flex;
    gap: 8px;
}

.registerForThisEventButton:hover {
    background-color: #FFF;
    color: #f18725;
    transition: ease-in-out 0.3s;
}

.registerForThisEventButtonGreen {
    padding: 14px;
    color: white;
    font-size: 24px;
    font-weight: 500;
    border: 3px solid #fff;
    border-radius: 10px;
    transition: ease-in-out 0.3s;
    display: flex;
    gap: 8px;
}

.registerForThisEventButtonGreen:hover {
    background-color: #FFF;
    color: #87bd41;
    transition: ease-in-out 0.3s;
}

.socials {
    background-color: #ffffff;
    height: 30px;
    width: 30px;
    display: flex;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    color: #000;
}

.socials-lg {
    background-color: #ffffff;
    height: 40px;
    width: 40px;
    display: flex;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    color: #000;
}

.socials-lg img {
    height: 30px;
    width: 30px;
}

.go-to-top {
    position: fixed;
    bottom: 32px;
    right: 40px;
    display: none;
    width: 50px;
    height: 50px;
    background-color: #00000086;
    color: white;
    border: none;
    border-radius: 5px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: ease-in-out 0.3s;
}

.go-to-top:hover {
    background-color: #5391c5;
    transition: ease-in-out 0.3s;
}

.whyInvestInNepalContainer {
    transition: ease-in-out 0.3s;
}

.whyInvestInNepalContainer:hover {
    transform: scale(1.01);
    transition: ease-in-out 0.3s;
}

.whyInvestInNepalDescription {
    background-color: #87bd4128;
}

.whyInvestInNepalContainer:hover .whyInvestInNepalDescription {
    transition: ease-in-out 0.2s;
    background-color: #87bd41;
    color: #fff;
}

.descriptionLine {
    height: 2px;
    width: 100%;
    background-color: #4f2e32;
}

.w-img-fluid {
    width: 100%;
    /* Make the image width 100% of its parent */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    /* Remove any extra spacing below the image */
    border-radius: 5px;
}

.standard-button {
    display: inline-block;
    padding: 8px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: ease-in-out 0.3s;
    border: 1px solid transparent;
    max-height: 60px;
}

.standard-button:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    transition: ease-in-out 0.3s;
}

.product-name {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-name .row {
    height: 100%;
    margin: 0;
}

.product-name .col-4 {
    padding: 0;
}

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

.product-name .overlay {
    position: relative;
    height: 100%;
}

.product-name h1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    padding-top: 65px;
    height: 100%;
    color: #fff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    /* Dark background with transparency */
    text-align: center;
    margin: 0;
}

.legend-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    margin: auto;
    padding: 20px;
    border-radius: 5px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
}


.red {
    background-color: red;
}

.redAlt {
    background-color: #f5999a;
}

.cream {
    background-color: #fef0cb;
}

.orange {
    background-color: orange;
}

.pink {
    background-color: pink;
}

.green {
    background-color: #688f31;
}

.light-green {
    background-color: #a2d567;
}

.light-green-1 {
    background-color: #a2d567;
}

.light-green-2 {
    background-color: #cdf2b7;
}

.light-green-2 {
    background-color: #eaffde;
}

.white {
    background-color: white;
    border: 1px solid #ddd;
}

.legend-label {
    font-size: 14px;
}


.divider {
    border-right: 0.5px solid white;
}

.highlightMainOrange {
    margin-left: 2%;
    margin-right: 2%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Ensures the enlarged image doesn't overflow */
    position: relative;
    /* Needed for positioning the read-more container */
    border-radius: 0px;
    border-bottom: 12px solid #f18725;
    transition: ease-in-out 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



.highlightMainOrange:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.highlightMainOrange:hover .inner-img {
    transform: scale(1.1);
    /* Enlarge the image on hover */
    filter: brightness(100%);
    /* Reset brightness on hover */
}

.highlightMainOrange:hover .eventTitle {
    color: #f18725;
    transition: ease-in-out 0.3s;
}

.highlightMainOrange:hover .read-more {
    opacity: 1;
}


.highlightMainRed {
    margin-left: 2%;
    margin-right: 2%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Ensures the enlarged image doesn't overflow */
    position: relative;
    /* Needed for positioning the read-more container */
    border-radius: 0px;
    border-bottom: 12px solid #d8343d;
    transition: ease-in-out 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.highlightMainRed:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.highlightMainRed:hover .inner-img {
    transform: scale(1.1);
    /* Enlarge the image on hover */
    filter: brightness(100%);
    /* Reset brightness on hover */
}

.highlightMainRed:hover .eventTitle {
    color: #d8343d;
    transition: ease-in-out 0.3s;
}

.highlightMainRed:hover .read-more {
    opacity: 1;
}

.highlightMainTeal {
    margin-left: 2%;
    margin-right: 2%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Ensures the enlarged image doesn't overflow */
    position: relative;
    /* Needed for positioning the read-more container */
    border-radius: 0px;
    border-bottom: 12px solid #09898d;
    transition: ease-in-out 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.highlightMainTeal:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.highlightMainTeal:hover .inner-img {
    transform: scale(1.1);
    /* Enlarge the image on hover */
    filter: brightness(100%);
    /* Reset brightness on hover */
}

.highlightMainTeal:hover .eventTitle {
    color: #09898d;
    transition: ease-in-out 0.3s;
}

.highlightMainTeal:hover .read-more {
    opacity: 1;
}


/* accordion customization */
.accordion-item {
    margin: 10px;
    border: none;
}

.accordion-button {
    border-radius: 10px;
    padding: 8px;
    padding-inline: 16px;
    font-weight: 500;
    font-size: 1rem;
    color: #212529;
    background-color: #09898d1f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

/* Hover effect only when accordion is closed */
.accordion-button.collapsed:hover {
    color: #09898d;
    /* Blue text on hover when closed */
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    /* White text when open */
    background-color: #09898d;
    /* Blue background when open */
}

.accordion-button:focus {
    box-shadow: none;
}

/* Remove default Bootstrap arrow */
.accordion-button::after {
    display: none;
}

/* Style for the question text */
.question-text {
    flex-grow: 1;
}

/* Style for the plus sign */
.plus-sign {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease-in-out, color 0.3s ease;
}

/* Hover effect for plus sign only when accordion is closed */
.accordion-button.collapsed:hover .plus-sign {
    color: #5391c6;
    /* Blue plus sign on hover when closed */
}

/* Rotate plus sign when opened and make it white */
.accordion-button:not(.collapsed) .plus-sign {
    transform: rotate(45deg);
    color: #ffffff;
    /* Ensure plus sign is also white when open */
}

.accordion-body {
    padding: 15px;
    background-color: #fff;
}

@import "https://fonts.googleapis.com/css?family=Dosis:300,400,500,600,700";

#timeline .timeline-item:after,
header:after,
#timeline .timeline-item:before,
header:before {
    content: "";
    display: block;
    width: 100%;
    clear: both;
}

#timeline ul li {
    font-size: clamp(16px, 2vw, 22px);
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

img {
    max-width: 100%;
}

.agendaContainer {
    margin: 0 auto;
}



.project-name {
    text-align: center;
    padding: 10px 0;
}



#timeline {
    width: 100%;
    margin: 30px auto;
    position: relative;
    padding: 0 10px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#timeline:before {
    content: "";
    width: 3px;
    height: 100%;
    background: #ee4d4d;
    left: 50%;
    top: 0;
    position: absolute;
}

#timeline:after {
    content: "";
    clear: both;
    display: table;
    width: 100%;
}

#timeline .timeline-item {
    margin-bottom: 50px;
    position: relative;
}

#timeline .timeline-item .timeline-icon {
    background: #ee4d4d;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 50%;
    overflow: hidden;
    margin-left: -23px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

#timeline .timeline-item .timeline-icon svg {
    position: relative;
    top: 14px;
    left: 14px;
}

#timeline .timeline-item .timeline-content {
    width: 45%;
    background: #fff;
    padding: 20px;
    -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#timeline .timeline-item .timeline-content h5 {
    padding: 15px;
    background: #ee4d4d;
    color: #fff;
    margin: -20px -20px 0 -20px;
    font-weight: 300;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    -ms-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

#timeline .timeline-item .timeline-content:before {
    content: "";
    position: absolute;
    left: 45%;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #ee4d4d;
}

#timeline .timeline-item .timeline-content.right {
    float: right;
}

#timeline .timeline-item .timeline-content.right:before {
    content: "";
    right: 45%;
    left: inherit;
    border-left: 0;
    border-right: 7px solid #ee4d4d;
}



@media screen and (max-width: 768px) {
    #timeline {
        margin: 30px;
        padding: 0px;
        width: 90%;
    }

    #timeline:before {
        left: 0;
    }

    #timeline .timeline-item .timeline-content {
        width: 90%;
        float: right;
    }

    #timeline .timeline-item .timeline-content:before,
    #timeline .timeline-item .timeline-content.right:before {
        left: 10%;
        margin-left: -6px;
        border-left: 0;
        border-right: 7px solid #ee4d4d;
    }

    #timeline .timeline-item .timeline-icon {
        left: 0;
    }
}

.MultiCarousel {
    float: left;
    overflow: hidden;
    padding: 15px;
    width: 100%;
    position: relative;
}

.MultiCarousel .MultiCarousel-inner {
    transition: 1s ease all;
    float: left;
}

.MultiCarousel .MultiCarousel-inner .item {
    float: left;
}

.MultiCarousel .MultiCarousel-inner .item>div {
    text-align: center;
    padding: 10px;
    margin: 0 8px;
    /* Half of the 16px gap on each side */
    background: transparent;
    color: #666;
}

.leftLst,
.rightLst {
    border-radius: 50%;
}

.leftLst {
    margin-right: 8px;
}

.rightLst {
    margin-left: 8px;
}

.leftLst.over,
.rightLst.over {
    pointer-events: none;
    background: #ccc;
}




.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
}

.content-overlay-sm {
    display: none;
}

.ytp-chrome-top,
.ytp-show-cards-title {
    display: none !important;
}

.ytp-gradient-top {
    display: none !important;
}

.form-label {
    font-weight: 500;
    color: #09898d;
}

.iframe-container {
    height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.policy-container {
    background-color: aliceblue;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #0000001c;
}

.custom-vertical-nav .nav-link.active {
    background-color: #09898d;
    color: white;
}

.custom-vertical-nav .nav-link {
    border: none;
    color: #09898d;
    font-weight: bold;
    border: 1px solid #09898d;
    border-radius: 0;
}

.custom-vertical-nav .nav-link:hover {
    background-color: lightblue;
    color: #09898d;
}

.custom-vertical-nav-2 .nav-link {
    color: #000;
    /* Removes border from the nav-link elements */
}

.custom-vertical-nav-2 .nav-link.active {
    background-color: #09898d;
    color: white;
    /* Ensures no border for the active tab */
}

.custom-vertical-nav-2 .nav-link:hover {
    background-color: lightblue;
    color: #09898d;
    /* Ensures no border on hover */
}


.socialImpactContainer {
    transition: ease-in-out 0.3s;
    border: 1px solid #ecc3c8;
}

.socialImpactContainer:hover {
    transform: scale(1.01);
    transition: ease-in-out 0.3s;
}

.socialImpactDescription {
    background-color: #F1872528;

}

.socialImpactContainer:hover .socialImpactDescription {
    transition: ease-in-out 0.2s;
    background-color: #F18725;
    color: #fff;
}

.socialImpactImage {
    width: 100%;
    height: auto;
    object-fit: fill;
}

@media (max-width: 991.98px) {
    .socialImpactImage {
        max-height: 200px;
        /* Adjusted max height for small screens */
    }
}


.descriptionLine {
    height: 2px;
    width: 100%;
    background-color: #4f2e32;
}

.sec-image-container img {
    max-height: 200px;
    /* Set the maximum height of the image */
    width: 100%;
    /* Make the image take the full width of the parent div */
    object-fit: cover;
    /* Ensure the image covers the parent div without distortion */
}

.investorsss {
    background-color: #fff;
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    padding: 12px;
    width: 95%;
    height: 100%;
    margin-top: 8px;
    transition: ease-in-out 0.3s;
}

.investorsss:hover {
    box-shadow: 2px 2px 4px #d3d3d3;
    transition: ease-in-out 0.3s;
}

.footer-image-container {
    height: 75px;
    background-image: url('assets/images/4-better-trimmed.png');
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.footer-repeated-image {
    height: 100%;
    max-height: 75px;
    object-fit: contain;
    width: 100%;
    flex-shrink: 0;
}



.hallLogo {
    height: clamp(50px, 7vw, 95px);
    width: clamp(40px, 5vw, 80px);
}

.hallButton {
    padding: 0;
    border: none;
    background-color: #00000005;
    width: 100%;
    transition: ease-in-out 0.3s;
    border-radius: 5px;
    border: 1px solid #00000033;
}

.hallButton.active {
    border: 1px solid var(--teal-color);
    box-shadow: 4px 4px 8px #00000036;
    transform: scale(1.03);
    transition: ease-in-out 0.3s;
}

.eyeButton {
    position: absolute;
    bottom: 0px;
    right: 5px;
    color: #00000033;
}

.profileCommodity {
    width: 100%;
    max-height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.investment-ready-page {
    background: #09898d1c;
    padding-top: 6vh;
    padding-bottom: 6vh;

}

.invest-here {
    background-color: #09898d;
}


.pannelistCardMain {
    margin-top: 20vh;
}

.pannelistCard {
    border: 1px solid #aeaeae;
    padding: 16px;
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 10vh;
}


.pannelestProfilePic {
    position: absolute;
    top: -40%;
    left: 35%;

}

.pannelestProfilePic img {
    height: 120px;
    width: 120px;
    border: 4px solid var(--accent-color);
    border-radius: 100%;
}



.testimonialCard {
    border-radius: 8px;
    border: 2px solid #aeaeae;
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonialCardAlt {
    border-radius: 8px;
    position: relative;
    margin-top: 8vh;
    width: 100%;
    height: 100%;
}

.testimonialContent {
    padding: 16px;
    text-align: center;
    margin-bottom: 8vh;

}

.testimonialContentAlt {
    padding: 16px;
    text-align: center;
    margin-bottom: 8vh;
    border: 2px solid #aeaeae;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    /* Adjust this value based on your font size and line height */
    line-height: 1.5em;
    /* Adjust as needed */
}


.testimonialPic {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#ourSpeakers .modal button {
    border-radius: 1rem;
    width: 2rem;
    height: 2rem;
    float: right;
}

.testimonialPicAlt,
.testimonialPicAltBlue,
.testimonialPicAltTeal {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.testimonialPicAlt img {
    background-color: #fff;
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    border-radius: 100%;
    border: 4px solid var(--orange-color);
}

.testimonialPicAltTeal img {
    background-color: #fff;
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    border-radius: 100%;
    border: 4px solid var(--teal-color);
}

.testimonialPicAltBlue img {
    background-color: #fff;
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    border-radius: 100%;
    border: 4px solid var(--primary-color);
}

.testimonialPic img {
    background-color: #fff;
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    border-radius: 100%;
    border: 4px solid var(--orange-color);
}

.testimonialPic.teal img {
    border: 4px solid var(--teal-color) !important;
}

.testimonialName {
    width: 100%;
    background-color: var(--orange-color);
    color: #fff;
}

.testimonialNameAlt {
    padding-top: 4vh;
    width: 100%;
    color: #fff;
    flex: auto;
}

.largeQuote {
    font-size: 48px;
    text-align: start;
    color: var(--orange-color);
}

.profileImage img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--orange-color);
}

.profileImageTeal img {
    aspect-ratio: 1 / 1;
    width: 160px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--teal-color);
}

.companyLogo img {
    width: 100%;
}

.exibitorsDescription {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2em;
    max-height: 4.8em;
}

.testimonialCardAlt,
.exhibitorCard {
    cursor: pointer;
}

.exhibitorCard {
    max-height: 150px
}

#itemsPerPage {
    border-radius: 5px;
    padding: 4px;
}

.active>.page-link,
.page-link.active {
    z-index: 3;
    color: #fff;
    background-color: var(--teal-color);
    border-color: var(--teal-color);
}

.page-link {
    z-index: 2;
    color: var(--teal-color);
    background-color: #fff;
    border-color: var(--teal-color);
}

.page-item.disabled {
    color: var(--teal-color);
    border-color: var(--teal-color);
}

.activityRow,
.activityTitle,
.activitySubTitle,
.activitySubTitleTeal,
.activityRowTeal,
.activitySubTitleGreen,
.activityRowGreen {
    padding: 12px;
    height: 100%;
}

.activityTitle {
    background-color: var(--orange-color);
    color: #FFF;
    font-weight: 600;
}

.activityRow {
    background-color: #f188253f;
    border-bottom: 1px solid var(--accent-color);
    transition: ease-in-out 0.3s;
}

.activityRow:hover {
    transform: scale(1.01);
    z-index: 1000;
    box-shadow: 2px 2px 4px #00000031;
    transition: ease-in-out 0.3s;
}

.activityRowTeal {
    background-color: #09898d31;
    border-bottom: 1px solid var(--teal-color);
    transition: ease-in-out 0.3s;
}

.activityRowTeal:hover {
    transform: scale(1.01);
    z-index: 1000;
    box-shadow: 2px 2px 4px #00000031;
    transition: ease-in-out 0.3s;
}

.activityRowGreen {
    background-color: #87bd4144;
    border-bottom: 1px solid var(--green-color);
    transition: ease-in-out 0.3s;
}

.activityRowGreen:hover {
    transform: scale(1.01);
    z-index: 1000;
    box-shadow: 2px 2px 4px #00000031;
    transition: ease-in-out 0.3s;
}


.activitySubTitle {
    background-color: var(--nav-text-active-color);
    color: #fff;
    font-weight: 600;
    justify-content: center;
    text-align: center;
}

.activitySubTitleTeal {
    background-color: var(--teal-color);
    color: #fff;
    font-weight: 600;
    justify-content: center;
    text-align: center;
}

.activitySubTitleGreen {
    background-color: var(--green-color);
    color: #fff;
    font-weight: 600;
    justify-content: center;
    text-align: center;
}