@import url("https://fonts.googleapis.com/css2?family=Prata&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
    font-family: "Lorin";
    src:
        url("../fonts/Lorin-Bold.woff2") format("woff2"),
        url("../fonts/Lorin-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lorin";
    src:
        url("../fonts/Lorin-Regular.woff2") format("woff2"),
        url("../fonts/Lorin-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lorin";
    src:
        url("../fonts/Lorin-Light.woff2") format("woff2"),
        url("../fonts/Lorin-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lorin";
    src:
        url("../fonts/Lorin-ExtraBold.woff2") format("woff2"),
        url("../fonts/Lorin-ExtraBold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    background: var(--background-bg);
    counter-reset: list-counter;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
    text-align: left;
    font-family: "Raleway", sans-serif;
    scroll-behavior: smooth;
    /* scroll-padding-top: 10px; */
}

* {
    scroll-behavior: smooth;
}

*,
::after,
::before {
    box-sizing: border-box;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/*Dark Theme and Light theme */
:root {
    --font-lorin: "Lorin";
    --background-bg: #f4f4f4;
    --text-color: #000;
    --text-orange: #f7574b;
    --button-bg: var(--background-bg);
    --button-shadow: #1e1e1e1a;
    --theme-button-shadow: 0.3rem 0.3rem 0.6rem rgb(230 230 230), -0.2rem -0.2rem 0.5rem rgb(255 255 255);
    --theme-button-shadow-hover: inset 4px 4px 14px #e0e0e0;
    --theme-header-shadow: 0.3rem 0.3rem 0.6rem #e6e6e6, -0.4rem -0.4rem 0.3rem #ffffff;
    --text-header-color: #383838;
    --title-color: #1c1917;
    --card-color: #ffffff;
    --card-gradient-color: radial-gradient(72.56% 72.56% at 0.93% 0%, #e5e5e5 0%, #fff 100%);
    --card-border-color: #e8e8e8;
    --card-box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.08);
    --border-new: radial-gradient(47.52% 60.66% at 70% 0%, #f5564a 0%, #e5e5e5 100%);
    --text-grey-color: #383838;
    --text-gradient-color: linear-gradient(177.1deg,
            #3d3d3d -10.49%,
            #373737 26.64%,
            #999999 60%,
            #2e2e2e 77.05%,
            #272727 92.19%);
    --brand-bg: #f4f4f4;
    --text-new-grey-color: var(--text-grey-color);
    --bg-image-shadow: url("../img/bg-shadow-light.png");
}

.light-mode {
    --background-bg: #f4f4f4;
    --text-color: #000;
    --text-orange: #f7574b;
    --button-bg: var(--background-bg);
    --button-shadow: #1e1e1e1a;
    --theme-button-shadow: 0.3rem 0.3rem 0.6rem rgb(230 230 230), -0.2rem -0.2rem 0.5rem rgb(255 255 255);
    --theme-button-shadow-hover: inset 4px 4px 14px #e0e0e0;
    --theme-header-shadow: 0.3rem 0.3rem 0.6rem #e6e6e6, -0.4rem -0.4rem 0.3rem #ffffff;
    --text-header-color: #383838;
    --title-color: #1c1917;
    --card-color: #ffffff;
    --card-gradient-color: radial-gradient(72.56% 72.56% at 0.93% 0%, #e5e5e5 0%, #fff 100%);
    --card-border-color: #e8e8e8;
    --card-box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.08);
    --border-new: radial-gradient(47.52% 60.66% at 70% 0%, #f5564a 0%, #e5e5e5 100%);
    --text-grey-color: #383838;
    --text-gradient-color: linear-gradient(177.1deg,
            #3d3d3d -10.49%,
            #373737 26.64%,
            #999999 60%,
            #2e2e2e 77.05%,
            #272727 92.19%);
    --brand-bg: #f4f4f4;
    --text-new-grey-color: var(--text-grey-color);
    --bg-image-shadow: url("../img/bg-shadow-light.png");
}

.dark-mode {
    --background-bg: #1e1e1e;
    --text-color: #fff;
    --text-orange: #f7574b;
    --button-bg: var(--background-bg);
    --button-shadow: #f4f4f41a;
    --theme-button-shadow: 0.3rem 0.3rem 0.3rem #191919, -0.3rem -0.3rem 0.8rem #292929;
    --theme-button-shadow-hover: inset 4px 4px 14px #131212;
    --theme-header-shadow: 0.3rem 0.3rem 0.6rem #1a1a1a, -0.3rem -0.3rem 0.8rem #2e2d2d;
    --text-header-color: #fff;
    --title-color: #fff;
    --card-color: #181818;
    --card-gradient-color: radial-gradient(72.56% 72.56% at 0.93% 0%, #2b2b2b 0%, #1e1e1e 100%);
    --card-border-color: #282828;
    --card-box-shadow: 0px 0px 21.3px 0px rgba(0, 0, 0, 0.25);
    --border-new: radial-gradient(47.52% 60.66% at 70% 0%, #f5564a 0%, #2c2c2c 100%);
    --text-grey-color: #d6d6d6;
    --text-gradient-color: linear-gradient(180deg, #ffffff 0%, #f2f2f2 47%, #999999 71.5%, #dcdcdc 81%, #ffffff 95%);
    --brand-bg: #202020;
    --text-new-grey-color: #b9b9b9;
    --bg-image-shadow: url("../img/bg-shadow-dark.png");
}

ul {
    padding: 0;
    list-style: none;
    margin: 0px;
}

a {
    transition: 0.5s;
}

.animsition-overlay-slide {
    background: var(--background-bg);
}

.animsition-loading {
    padding: 0px;
    width: auto !important;
    height: auto !important;
    border-radius: 0px;
}

.animsition-loading img {
    width: 180px;
}

.animsition-loading:after {
    display: none !important;
}

.dark-mode .animsition-loading .light-assets,
.light-mode .animsition-loading .dark-assets {
    display: none;
}

.padder-15 {
    padding: 50px 0px 40px 0px;
}

.mainTitle {
    margin-bottom: 70px;
    position: relative;
}

.mainTitle .themeTitle {
    font-family: var(--font-lorin);
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;

    color: var(--title-color);
    text-align: center;
    margin-bottom: 0px;
    position: relative;
}

.mainTitle .outerBorder {
    width: 100%;
    position: absolute;
    left: 0px;
    right: 0;
    bottom: -20px;
}

.mainTitle .outerBorder img {
    max-width: 100%;
}

.mainTitle .small-text {
    font-family: var(--font-lorin);
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    color: var(--text-new-grey-color);
    margin: 40px 0px 0px 0px;
}

@media screen and (max-width: 992px) {
    .padder-15 {
        padding: 40px 0px 30px 0px;
    }

    .mainTitle .themeTitle {
        font-size: 30px;
        line-height: 110%;
    }

    .mainTitle {
        margin-bottom: 40px;
    }

    .mainTitle .small-text {
        font-size: 16px;
    }
}

/* button custom css start */
.btn {
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all ease-in-out 500ms;
    padding: 12px 30px;
}

.btn-theme {
    color: var(--text-orange);
    background-color: var(--button-bg);
    box-shadow: var(--theme-button-shadow);
}

.btn-theme:hover,
.btn-theme:focus {
    box-shadow: var(--theme-button-shadow-hover);
    color: var(--content-bg);
}

.btn-lg {
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
}

/* button custom css end */
/* Header section Start */
.themeHeader {
    flex-flow: column;
    padding: 0;
    position: relative;
    z-index: 2;
    background-color: var(--background-bg);
    transition: 0.5s;
    position: sticky;
    top: 100px;
}
@media (max-width: 1366px) {
    .themeHeader {
        top: 65px;
    }
}

.top-header {
    width: 100%;
    min-height: 80px;
    align-items: center;
}

.top-header .header-left-wrapper {
    display: flex;
    align-items: center;
}

.top-header .navbar-toggler {
    outline: 0;
    box-shadow: none;
}

.top-header .dark-light-toggler .checkbox {
    opacity: 0;
    position: absolute;
}

.top-header .dark-light-toggler .label {
    width: 46px;
    height: 24px;
    background-color: #f4f4f4;
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 3px;
    position: relative;
    box-shadow: 0px 0px 2px 0px #00000059 inset;
    cursor: pointer;
    margin-bottom: 0;
}

.top-header .dark-light-toggler img {
    filter: invert(65%) sepia(0%) saturate(522%) hue-rotate(194deg) brightness(89%) contrast(81%);
}

.top-header .ball {
    width: 21px;
    height: 21px;
    background: #909090;
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

.top-header .fa-moon {
    color: #909090;
}

.top-header .theme-brand,
.themeHeader .rightMenu .theme-brand {
    display: inline-flex;
    width: 180px;
    transition: 0.5s;
}

.top-header .theme-brand a,
.themeHeader .rightMenu .theme-brand a {
    display: inline-flex;
}

.themeHeader .rightMenu .theme-brand lottie-player {
    display: inline-flex;
    width: 180px;
    transition: 0.5s;
}

.top-header .header-right-wrapper .btn {
    padding: 12px 40px;
}

.themeHeader .rightMenu {
    background-color: var(--background-bg);
    box-shadow: var(--theme-header-shadow);
    width: 100%;
    position: relative;
}

.themeHeader .navbar-nav {
    padding: 18px 0px;
}

.themeHeader .navbar-nav .nav-protostar-item .nav-link {
    font-family: var(--font-lorin);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--text-header-color);
    position: relative;
    padding: 0px 20px;
    transition: 0.5s;
}

.themeHeader .navbar-nav .nav-protostar-item .nav-link::after {
    content: "";
    position: absolute;
    right: 0px;
    width: 1px;
    height: 100%;
    background-color: #777777;
}

.themeHeader .navbar-nav .nav-protostar-item:last-child .nav-link::after {
    display: none;
}

.themeHeader .navbar-nav .nav-protostar-item .nav-link:hover,
.themeHeader .navbar-nav .nav-protostar-item .nav-link:focus {
    color: var(--text-orange);
}

.themeHeader .rightMenu .social-link {
    display: inline-block;
    position: absolute;
    right: 50px;
}

.themeHeader .rightMenu .social-link li {
    display: inline-block;
    width: auto;
    margin-left: 10px;
}

.themeHeader .rightMenu .social-link li a {
    fill: var(--text-color);
    width: 22px;
    transition: 0.5s;
}

.themeHeader.scrolled-menu .navbar-nav {
    padding: 13px 0px;
}

/* .themeHeader.scrolled-menu {
    position: fixed;
    width: 100%;
    transition: 0.5s;
} */

.themeHeader.scrolled-menu .navbar-nav .nav-protostar-item .nav-link {
    font-size: 14px;
    line-height: 20px;
}

.themeHeader.scrolled-menu .top-header .theme-brand {
    width: 150px;
}

.themeHeader .rightMenu .theme-brand,
.themeHeader .rightMenu .header-right-wrapper {
    display: none;
}

.burger {
    position: relative;
    width: 25px;
    height: 25px;
    display: none;
    background: transparent;
    border: 0;
    padding: 0px;
    margin: 5px;
    padding: 0;
}

.burger:focus {
    outline: 0;
}

.burger span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    transition: all 0.2s, background 0s;
    background: var(--text-color);
}

.burger span:nth-child(1),
.burger span:nth-child(3) {
    width: 15px;
    margin: 0 auto;
    right: 0;
}

.burger span:nth-child(2) {
    top: 7px;
}

.burger span:last-child {
    top: 15px;
}

.burger.show-x span:first-child {
    transform: rotate(45deg);
}

.burger.show-x span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.burger.show-x span:last-child {
    transform: rotate(-45deg);
}

.burger.show-x span:first-child,
.burger.show-x span:last-child {
    top: 8px;
    width: 100%;
}

@media screen and (max-width: 992px) {
    .main-body {
        overflow: hidden;
    }

    .top-header {
        position: relative;
        min-height: auto;
    }

    .top-header .dark-light-toggler {
        position: absolute;
        right: 0px;
    }

    .top-header.top-header .header-right-wrapper {
        width: 25px;
    }

    .top-header.top-header .header-right-wrapper {
        display: none;
    }

    .top-header .theme-brand {
        width: 130px;
    }

    .themeHeader.scrolled-menu .top-header .theme-brand {
        width: 110px;
    }

    .themeHeader .burger {
        display: block;
    }

    .themeHeader .burger.show-x {
        z-index: 11;
    }

    .themeHeader .burger:hover,
    .themeHeader .burger:focus {
        outline: 0;
        box-shadow: none;
    }

    .themeHeader .rightMenu {
        position: fixed;
        left: -100%;
        background: var(--background-bg);
        top: 0px;
        z-index: 5;
        width: 100%;
        height: 100% !important;
        transition: transform 0.2s ease-in;
        transition: 0.5s;
        padding: 30px 0px;
        flex-flow: column;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .themeHeader .rightMenu.show {
        height: 100%;
        left: 0px;
        top: 0px;
    }

    .themeHeader .navbar-nav {
        padding: 13px 0px;
        margin: 0px !important;
    }

    .themeHeader .rightMenu .theme-brand,
    .themeHeader .rightMenu .header-right-wrapper {
        display: inline-flex;
    }

    .themeHeader .rightMenu .header-right-wrapper {
        width: 100%;
        padding: 15px;
    }

    .themeHeader .rightMenu .header-right-wrapper .btn {
        width: 100%;
    }

    .themeHeader.scrolled-menu .navbar-nav,
    .themeHeader .navbar-nav {
        padding: 30px 50px;
        width: 100%;
        list-style: auto;
    }

    .themeHeader .navbar-nav .nav-protostar-item::marker {
        font-size: 20px;
        color: var(--text-orange);
        font-weight: 800;
        font-family: var(--font-lorin);
    }

    .themeHeader .navbar-nav .nav-protostar-item .nav-link {
        padding: 13px 5px;
    }

    .themeHeader .navbar-nav .nav-protostar-item .nav-link::after {
        width: 100%;
        height: 1px;
        left: 0px;
        bottom: 0px;
    }

    .themeHeader .rightMenu .social-link {
        display: inline-block;
        position: relative;
        right: inherit;
    }
}

/* Header section end */
/* Banner Section Start */
.theme-banner {
    background-color: var(--background-bg);
}

.theme-banner > .item {
    position: relative;
}

.theme-banner .banner-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
}

.theme-banner .slick-slide {
    position: relative;
}

.banner-image {
    display: inline-block;
    width: 100%;
    height: 82vh;
    object-fit: cover;
    position: relative;
}

.banner-image img {
    width: 100%;
    height: 100%;
}

.theme-banner .banner-inner img {
    width: auto;
    max-width: 100%;
}

.theme-banner .banner-inner .banner-logo {
    margin-bottom: 25px;
}

.theme-banner .banner-inner .banner-logo img {
    margin: 0 auto;
}

.theme-banner .banner-inner .title {
    font-family: var(--font-lorin);
    font-weight: 800;
    font-size: 64px;
    line-height: 118%;

    text-align: center;
    color: var(--text-color);
    margin-bottom: 25px;
}

.theme-banner .banner-inner .small-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    margin: 0 auto 40px;
    color: var(--text-color);
}

.theme-banner .slick-dots {
    position: absolute;
    bottom: 130px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.theme-banner .slick-dots li {
    display: inline-flex;
}

.theme-banner .slick-dots li button {
    width: 25px;
    height: 7px;
    margin: 5px;
    border: 0px;
}

.theme-banner .slick-dots li button {
    background: var(--text-orange);
    opacity: 0.4;
    border-radius: 50px;
    font-size: 0px;
}

.theme-banner .slick-dots li.slick-active button {
    opacity: 1;
}

.banner-second .banner-image img{
    height: auto;
}

.theme-banner .banner-second .banner-inner .lfm-text{
    font-family: var(--font-lorin);
    font-weight: 800;
    font-size: 30px;
    text-align: center;
    font-style: italic;
    color: #AB9F96;
    margin-bottom: 10px;
}
.theme-banner .banner-second .banner-inner .lfm-text span{
    font-style: normal;
}
 .theme-banner .banner-second .banner-inner .title {
    font-size: 48px;
    font-family: var(--font-lorin);
    color: #fff;
}
.theme-banner  .banner-second .banner-inner .small-text {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 400;
}
.theme-banner  .banner-second .banner-inner .small-text span{
    font-weight: 600;
    color: #fff;
}
.theme-banner  .banner-second .small-hashed{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.theme-banner  .banner-second .small-hashed span{
    font-size: 20px;
    color: #fff;
    margin-right: 15px;
}

.btn-outer{
    padding: 2px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    width: auto;
}
.btn-outer .btn-theme-2 {
    font-size: 14px;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0px;
    font-family: "Satoshi-Regular";
    color: #fff;
    background:linear-gradient(81.01deg, #bb3f35 -7.71%, #f7574b 117.08%);
}
.btn-outer .btn-theme-2:hover,
.btn-outer .btn-theme-2:focus {
    background: linear-gradient(81.01deg, #f7574b -7.71%, #bb3f35 117.08%);
    color: #fff;
    box-shadow: none;
}
.btn-outer .btn-theme-2>span:nth-child(1) {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(171, 159, 150, 0), rgba(255, 255, 255, 0.8));
    animation: animate1 2s linear infinite;
}
.btn-outer .btn-theme-2>span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, rgba(171, 159, 150, 0), rgba(255, 255, 255, 0.8));
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}
.btn-outer .btn-theme-2>span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, rgba(171, 159, 150, 0), rgba(255, 255, 255, 0.8));
    animation: animate3 2s linear infinite;
    border-radius: 5px;
}
.btn-outer .btn-theme-2>span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to top, rgba(171, 159, 150, 0), rgba(255, 255, 255, 0.8));
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate1 {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}
@keyframes animate2 {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}
@keyframes animate3 {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}


@keyframes animate4 {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(-100%);
	}
}

@media screen and (min-width: 768px) and (max-width: 1680px) {
    .theme-banner .banner-inner .title {
        font-size: 50px;
    }

    .theme-banner .banner-second .banner-inner .title {
        font-size: 42px;
    }
    .theme-banner  .banner-second .banner-inner .small-text {
        font-size: 18px;
    }

    .theme-banner .banner-inner img {
        height: 40px;
    }

    .theme-banner .owl-dots {
        bottom: 100px;
    }
}

@media screen and (max-width: 767px) {
    .banner-image {
        height: 500px;
    }

    .theme-banner .banner-inner .banner-logo {
        margin-bottom: 20px;
    }

    .theme-banner .banner-inner .title,
    .theme-banner .banner-second .banner-inner .title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .theme-banner .banner-inner img {
        height: 40px;
    }

    .theme-banner .banner-second .banner-inner img {
        height: 30px;
    }

    .theme-banner .owl-dots {
        bottom: 100px;
    }

    .theme-banner .banner-inner {
        padding: 0px 15px;
    }

    .theme-banner .banner-inner .small-text,
    .theme-banner  .banner-second .banner-inner .small-text  {
        font-size: 14px;
        margin: 0 auto 30px;
    }
    .theme-banner .banner-inner .title br,
    .theme-banner .banner-inner .small-text br {
        display: none;
    }
    .theme-banner .banner-second .banner-inner .title br {
        display: inline-block;
    }
    .theme-banner .banner-inner {
        top: 0;
    }
    .theme-banner .banner-second .banner-inner .lfm-text {
        font-size: 22px;
    }
    .theme-banner  .slick-dots {
        bottom: 30px;
    }
    .theme-banner .banner-second .small-hashed span {
        font-size: 16px;
        margin-right: 5px;
    }
    .btn-outer .btn-theme-2 {
        font-size: 13px;
    }
}

@media screen and (max-width: 320px) {
    .theme-banner .banner-inner img {
        height: 30px;
    }

    .theme-banner .banner-inner .title,
    .theme-banner .banner-second .banner-inner .title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .theme-banner .banner-inner .small-text {
        font-size: 13px;
        margin: 0 auto 30px;
    }
    .theme-banner  .banner-second .banner-inner .small-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 350px) {
    .theme-banner .banner-inner img {
        height: 28px;
    }
    .theme-banner .banner-second .banner-inner .lfm-text {
        font-size: 18px;
    }
    .theme-banner .banner-second .banner-inner .title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .theme-banner .banner-second .banner-inner img{
        height: auto;
    }
}

/* Banner Section End */
/* Program Overview Section Start */
.program-list {
    display: inline-block;
    width: 100%;
    position: sticky;
    top: 150px;
}

.program-list li {
    margin-bottom: 12px;
}

.program-list li:last-child {
    margin-bottom: 0px;
}

.program-list li .program-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    border-radius: 50px;
    border: solid 1px transparent;
    text-decoration: inherit;
    font-weight: 800;
    font-size: 14px;
    line-height: 100%;
    color: #8a8a8a;
    position: relative;
    box-sizing: border-box;
    background: var(--background-bg);
    background-clip: padding-box;
}

.program-list li .program-link .arrow-icon {
    opacity: 0;
    transition: 0.5s;
}

.program-list li .program-link:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    transition: 0.5s;
}

.program-list li .program-link:hover,
.program-list li .program-link.active {
    color: var(--text-orange);
}

.program-list li .program-link:hover::before,
.program-list li .program-link.active::before {
    background: -webkit-linear-gradient(140deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
}

.program-list li .program-link:hover .arrow-icon,
.program-list li .program-link.active .arrow-icon {
    opacity: 1;
}

.program-section .accordion-button,
.program-section .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

.program-section .accordion-item {
    background: var(--card-gradient-color);
    border: solid 1px transparent;
    position: relative;
    box-sizing: border-box;
    background-clip: padding-box;
    margin-bottom: 20px;
}

.program-section .accordion-item:last-child {
    margin-bottom: 0px;
}

.program-section .accordion-item:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    transition: 0.5s;
    background: -webkit-linear-gradient(100deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.3) 100%);
}

.program-section .accordion-header .accordion-button {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    color: var(--text-orange);
}

.program-section .accordion-body p,
.program-section .accordion-body ul li {
    font-weight: 500;
    font-size: 15px;
    line-height: 160%;
    color: var(--text-color);
    margin-bottom: 5px;
}

.program-section .accordion-body p:last-child,
.program-section .accordion-body ul li:last-child {
    margin-bottom: 0px;
}

.program-section .accordion-body h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;

    color: var(--text-color);
    margin-bottom: 15px;
}

.program-section .accordion-body h6 img {
    margin-right: 10px;
}

.program-section .accordion-body ul {
    padding-left: 1rem;
    list-style: disc;
}

@media screen and (min-width: 991px) {
    .program-section .accordion-header .accordion-button::after {
        display: none !important;
    }

    .program-section .collapse,
    .program-section .collapsing {
        height: auto !important;
        transition: inherit;
    }

    .program-section .collapse:not(.show) {
        display: block;
        height: auto !important;
    }

    .program-section .accordion-item {
        border-radius: 20px;
    }

    .program-section .accordion-button,
    .program-section .accordion-button:not(.collapsed) {
        cursor: inherit;
        display: block;
        width: auto;
    }

    .program-section .accordion-button,
    .program-section .accordion-body {
        padding: 0px;
    }

    .program-section .accordion-item {
        padding: 25px;
    }

    .program-section .accordion-header .accordion-button {
        margin-bottom: 12px;
    }

    .program-section .accordion {
        /* max-height: 550px;
        overflow: auto;
        position: relative;
        padding: 0px 10px; */
    }

    .program-section .accordion .shadow-box {
        position: sticky;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(178.21deg, rgba(0, 0, 0, 0) 9.22%, var(--background-bg) 80.86%);
        height: 130px;
    }

    /* scrollbar */
    .program-section .accordion::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    .program-section .accordion::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(247, 87, 75, 0.3);
        -webkit-border-radius: 10px;
        border-radius: 10px;
    }

    .program-section .accordion::-webkit-scrollbar-thumb {
        -webkit-border-radius: 10px;
        border-radius: 10px;
        background: var(--text-orange);
        -webkit-box-shadow: inset 0 0 6px rgba(247, 87, 75, 0.5);
    }

    .program-section .accordion::-webkit-scrollbar-thumb:window-inactive {
        background: var(--text-orange);
    }
}

@media screen and (max-width: 991px) {
    .program-list {
        display: none;
    }

    .program-section .accordion-item {
        border-radius: 12px;
    }

    .program-section .accordion-header .accordion-button {
        font-size: 16px;
        padding: 0.8rem 1.25rem;
        color: var(--text-color);
    }

    .program-section .accordion-header .accordion-button:not(.collapsed) {
        color: var(--text-orange);
    }

    .program-section .accordion-body {
        padding-top: 0px;
    }

    .program-section .accordion-item {
        margin-bottom: 10px;
    }

    .program-section .accordion-body p, .program-section .accordion-body ul li {
        font-size: 14px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1680px) {
    .program-list li .program-link {
        padding: 10px;
    }

    .program-section .accordion-item {
        padding: 20px;
    }

    .program-section .accordion-header .accordion-button {
        font-size: 20px;
    }

    .program-section .accordion-body p, .program-section .accordion-body ul li {
        font-size: 14px;
    }
}

/* Program Overview Section End */
/*  Protostars Cohort 1 Overview Section Start */
.protostars-section .card {
    background: var(--card-color);
    height: calc(100% - 20px);
    margin: 10px 0px;
    border-radius: 26px;
    border: solid 2px var(--card-border-color);
    box-shadow: var(--card-box-shadow);
    overflow: hidden;
}

.protostars-section .card .label {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: var(--text-orange);
    margin-bottom: 15px;
}

.protostars-section .card .small-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 40px;
    font-family: var(--font-lorin);
    margin-bottom: 5px;
    background: var(--text-gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.protostars-section .card .info-text,
.protostars-section .card .small-text {
    font-family: var(--font-lorin);
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--text-color);
}

.protostars-section .card .small-text {
    color: var(--text-grey-color);
    font-size: 18px;
    font-weight: 400;
}

.first-card .inner-img {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: right;
}

.first-card .inner-img img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.first-card .card-body {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 35px;
}

.protostars-section .card-border {
    padding: 15px 0px;
    position: relative;
}

.protostars-section .card-border:first-child {
    padding-top: 0px;
}

.protostars-section .card-border:last-child::after {
    display: none;
}

.protostars-section .card-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100%;
    left: 0px;
    background: linear-gradient(90deg, rgb(147, 83, 83) 0%, rgba(147, 83, 83, 0.1) 60%, rgba(102, 102, 102, 0) 100%);
}

.seconde-card .card-body {
    padding: 25px;
}

.protostars-section .card .brand-img {
    display: inline-block;
    width: 100%;
    border-radius: 12px;
    background-color: var(--brand-bg);
    padding: 20px;
    text-align: center;
}

.protostars-section .card .brand-img img {
    max-width: 100%;
}

.protostars-section .card-four {
    border-radius: 18px;
    border: solid 1px rgba(255, 255, 255, 0.2);
    background: radial-gradient(77.66% 163.43% at 90.25% 22.39%, #f5564a 0%, #8f322b 100%);
}

.card-four .card-body {
    padding: 25px;
    position: relative;
}

.protostars-section .card.card-four .small-title {
    margin-bottom: 15px;
    background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 47%, #999999 71.5%, #dcdcdc 81%, #ffffff 95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.protostars-section .card.card-four .info-text {
    color: #fff;
}

.card-four .card-body .icon {
    position: absolute;
    right: 25px;
}

.card-four .card-body {
    padding: 25px;
    position: relative;
}

.card-five .card-body {
    padding: 25px;
}

.protostars-section .card-five .mainTitle .themeTitle {
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    font-family: var(--font-lorin);
    margin-bottom: 20px;
    background: var(--text-gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.protostars-section .card-five .mainTitle {
    margin-bottom: 30px;
}

.protostars-section .card-five .small-text {
    font-size: 20px;
    line-height: 100%;
}

.protostars-section .card-five .label {
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 8px;
}

.card-six img {
    max-width: 100%;
}

@media screen and (min-width: 1201px) and (max-width: 1500px) {
    .first-card .card-body {
        padding: 25px;
    }

    .card-four .card-body,
    .seconde-card .card-body {
        padding: 15px;
    }

    .card-five .card-body {
        padding: 20px 15px;
    }

    .protostars-section .card .small-title {
        font-size: 40px;
        line-height: 30px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1500px) {
    .protostars-section .card-five .mainTitle .themeTitle {
        font-size: 30px;
    }

}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .protostars-section .card {
        border-radius: 15px;
    }

    .first-card .card-body {
        padding: 25px;
    }

    .protostars-section .card .label {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .protostars-section .card .small-title {
        font-size: 34px;
        line-height: 25px;
    }

    .protostars-section .card .info-text, .protostars-section .card .small-text {
        font-size: 16px;
        line-height: 140%;
    }

    .seconde-card .card-body {
        padding: 20px 15px;
    }

    .card-four .card-body {
        padding: 15px;
    }

    .protostars-section .card.card-four .small-title {
        margin-bottom: 10px;
    }

    .protostars-section .card .brand-img {
        margin-bottom: 10px;
    }

    .protostars-section .card-five .mainTitle .themeTitle {
        font-size: 30px;
    }

    .card-five .card-body {
        padding: 20px 15px;
    }

    .protostars-section .card-five .label {
        font-size: 16px;
        line-height: 120%;
        margin-bottom: 5px;
    }

    .card-four .card-body .icon {
        height: 44px;
    }

    .protostars-section .card .brand-img {
        padding: 15px 10px;
    }

    .protostars-section .card.card-six {
        height: auto;
    }
}

@media screen and (max-width: 992px) {
    .protostars-section .card {
        border-radius: 15px;
    }

    .first-card .card-body {
        padding: 25px;
    }

    .protostars-section .card .label {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .protostars-section .card .small-title {
        font-size: 34px;
        line-height: 32px;
    }

    .protostars-section .card .info-text, .protostars-section .card .small-text {
        font-size: 16px;
        line-height: 140%;
    }

    .seconde-card .card-body {
        padding: 20px 15px;
    }

    .card-four .card-body {
        padding: 15px;
    }

    .protostars-section .card.card-four .small-title {
        margin-bottom: 10px;
    }

    .protostars-section .card .brand-img {
        margin-bottom: 10px;
    }

    .protostars-section .card-five .mainTitle .themeTitle {
        font-size: 32px;
    }

    .card-five .card-body {
        padding: 20px 15px;
    }

    .protostars-section .card-five .label {
        font-size: 16px;
        line-height: 120%;
        margin-bottom: 5px;
    }
}

/*  Protostars Cohort 1 Overview Section End */
/* Our Previous Partners Start */
.partners-section {
    position: relative;
}

.partners-section .banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.partners-section .banner-img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.partners-section .card {
    background: var(--card-gradient-color);
    border: solid 2px transparent;
    position: relative;
    box-sizing: border-box;
    background-clip: padding-box;
    border-radius: 26px;
    box-shadow: var(--card-box-shadow);
    margin-top: 50px;
}

.partners-section .col-md-6:nth-child(even) .card {
    margin-top: 200px;
}

.partners-section .card:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    transition: 0.5s;
    background: var(--border-new);
}

.partners-section .card .card-body {
    padding: 90px 35px 35px 35px;
}

.partners-section .card .brand-img {
    position: absolute;
    top: -35px;
    right: 50px;
    background: var(--card-color);
    border: solid 2px var(--card-border-color);
    box-shadow: var(--card-box-shadow);
    border-radius: 50px;
    padding: 20px 30px;
    text-align: center;
}

.partners-section .card .title {
    font-family: var(--font-lorin);
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    color: var(--text-color);
    margin-bottom: 20px;
}

.partners-section .card .small-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: var(--text-grey-color);
    margin-bottom: 20px;
}

.partners-section .card .social-list {
    display: inline-flex;
    width: 100%;
}

.partners-section .card .social-list li {
    margin-right: 10px;
}

@media screen and (max-width: 1180px) {
    .partners-section .card .card-body {
        padding: 90px 20px 25px 20px;
    }

    .partners-section .card .title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .partners-section .card .brand-img {
        padding: 15px 20px;
    }

    .partners-section .col-md-6:nth-child(even) .card {
        margin-top: 150px;
    }
}

@media screen and (max-width:767px) {
    .partners-section .card .card-body {
        padding: 60px 20px 25px 20px;
    }

    .partners-section .col-md-6:nth-child(even) .card {
        margin-top: 60px;
    }

    .partners-section .card .title {
        font-size: 24px;
        margin-bottom: 15px;
    }
}

/* Our Previous Partners End */
/* Past Speakers Section Start Start */
.past-speakers .item {
    margin: 0px 15px;
}

.past-speakers .partners-img {
    position: relative;
}

.past-speakers .partners-img .partners-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.past-speakers .partners-img .partners-bg-img img {
    max-width: 100%;
    max-height: 100%;
}

.past-speakers .partners-img .partners-bg-img .shadow-img {
    position: absolute;
    top: 0;
    opacity: 0;
    transition: 0.5s;
}

.past-speakers .partners-img .partners {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.past-speakers .partners-card:hover .partners-img .partners-bg-img .shadow-img,
.past-speakers .partners-card:focus .partners-img .partners-bg-img .shadow-img {
    opacity: 1;
}

.past-speakers .partners-card .partners-info {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

.past-speakers .partners-info .name {
    font-family: var(--font-lorin);
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    color: var(--text-color);
    margin-bottom: 8px;
}

.past-speakers .partners-info .profile {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--text-color);
    margin: 0;
}

.past-speakers .partners-info .social-list {
    display: inline-flex;
    width: 100%;
    margin-top: 10px;
}

.past-speakers .partners-info .social-list li {
    margin-right: 10px;
}

@media screen and (max-width:992px) {
    .past-speakers .partners-info .name {
        font-size: 22px;
    }
}

/* Past Speakers Section Start End */
/*  Two box Section Start*/
.two-box .card {
    background: var(--card-color);
    height: calc(100% - 20px);
    margin: 10px 0px;
    border-radius: 26px;
    border: solid 2px var(--card-border-color);
    box-shadow: var(--card-box-shadow);
    overflow: hidden;
    flex-flow: inherit;
    align-items: center;
    transition: 0.5s;
}

.two-box .card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 100%;
    left: 0px;
    background: linear-gradient(90deg,
            rgba(247, 87, 75, 0.5) 0%,
            rgba(247, 87, 75, 0.1) 50%,
            rgba(247, 87, 75, 0) 100%);
}

.two-box .card:hover {
    box-shadow: 0px 5px 25px 0px rgba(247, 87, 75, 0.15);
    transform: translateY(-20px);
}

.two-box .card .icons {
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.two-box .card .info-inner {
    position: relative;
    z-index: 1;
    flex: 1 auto;
    padding: 20px 30px;
    height: 100%;
    align-items: center;
    display: inline-flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
}

.two-box .card .info-inner .title {
    font-family: var(--font-lorin);
    font-weight: 800;
    font-size: 18px;
    line-height: 130%;
    color: var(--text-color);
    margin-bottom: 25px;
}

.two-box .card .info-inner .btn {
    font-weight: 800;
    padding: 12px 35px;
}

@media screen and (max-width:767px) {
    .two-box .card {
        border-radius: 16px;
    }

    .two-box .card .icons {
        padding: 20px 15px;
    }

    .two-box .card .icons img {
        height: 80px;
    }

    .two-box .card .info-inner {
        padding: 15px;
    }

    .two-box .card .info-inner .title {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/*  Two box Section End*/
/* Frequently Asked Questions Sectuin Start */
.partners-section,
.faq-section {
    background-image: var(--bg-image-shadow);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.faq-section .banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.faq-section .banner-img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.faq-section .card {
    background: var(--card-color);
    border-radius: 26px;
    border: solid 2px var(--card-border-color);
    box-shadow: none;
}

.faq-section .card .card-body {
    padding: 50px 60px;
}

.faq-section .card .accordion-button {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    font-family: var(--font-lorin);
    font-weight: 800;
    font-size: 18px;
    line-height: 26px;

    color: var(--text-color);
}

.program-section .accordion-header .accordion-button::after,
.faq-section .card .accordion-button::after {
    content: "+";
    border: solid 1px var(--text-color);
    border-radius: 50px;
    color: var(--text-color);
    background-image: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    width: 24px;
    height: 24px;
    transform: inherit;
    font-family: var(--font-lorin);
}

.program-section .accordion-header .accordion-button:not(.collapsed)::after,
.faq-section .card .accordion-button:not(.collapsed)::after {
    content: "-";
}

.faq-section .card .accordion-item {
    background-color: transparent;
    border: 1px solid transparent;
    transition: 0.5s;
    border-radius: 20px;
}

.faq-section .card .accordion-item.open {
    border-color: var(--text-orange);
}

.faq-section .card .accordion-button,
.faq-section .accordion-body {
    padding: 20px;
}

.faq-section .accordion-body {
    padding-top: 0px;
}

.faq-section .accordion-body p {
    margin-bottom: 15px;
}

.faq-section .accordion-body p,
.faq-section .accordion-body ul li {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    color: var(--text-new-grey-color);
}

.faq-section .accordion-body ul li {
    margin-bottom: 5px;
}

.faq-section .accordion-body p:last-child {
    margin-bottom: 0px;
}

.faq-section .accordion-body ul {
    padding-left: 1rem;
    list-style: disc;
}

@media screen and (min-width: 767px) and (max-width: 1300px) {
    .faq-section .card .card-body {
        padding: 40px 30px;
    }

    .faq-section .card .accordion-button {
        font-size: 16px;
        line-height: 24px;
    }

    .faq-section .card .accordion-button, .faq-section .accordion-body {
        padding: 15px;
    }

    .faq-section .accordion-body {
        padding-top: 0px;
    }
}

@media screen and (max-width:767px) {
    .faq-section .card .card-body {
        padding: 30px 10px;
    }

    .faq-section .card .accordion-button, .faq-section .accordion-body {
        padding: 10px;
    }

    .faq-section .card .accordion-item {
        border-radius: 12px;
    }

    .faq-section .card .accordion-button {
        font-size: 15px;
        line-height: 24px;
    }

    .faq-section .accordion-body {
        padding-top: 0px;
    }

    .faq-section .accordion-body p, .faq-section .accordion-body ul li {
        font-size: 14px;
        line-height: 140%;
    }
}

/* Frequently Asked Questions Sectuin End */
/* Stay in the LOOP Section Section Start */
.stay-section .title {
    font-family: var(--font-lorin);
    font-weight: 700;
    font-size: 54px;
    line-height: 100%;
    text-align: center;
    color: var(--text-color);
    margin: 20px 0px;
}

.stay-section .small-info {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;

    text-align: center;
    color: var(--text-color);
    max-width: 60%;
    margin: 0 auto 40px;
}

.stay-section .form-info {
    width: 650px;
    margin: 0 auto;
    position: relative;
}

.stay-section .form-info .icon {
    position: absolute;
    top: 15px;
    z-index: 1;
    left: 20px;
}

.stay-section .form-info input {
    border: solid 1px transparent;
    border-radius: 50px;
    background-color: var(--card-color);
    box-shadow: var(--theme-button-shadow);
    font-family: var(--font-lorin);
    padding: 16px 180px 15px 55px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    transition: 0.5s;
    position: relative;
}

.stay-section .form-info input:focus {
    outline: 0px;
    border-color: var(--text-orange);
}

.stay-section .form-info .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    font-weight: 700;
    font-size: 15px;
    line-height: normal;
}

@media screen and (max-width: 1400px) {
    .stay-section .small-info {
        max-width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .stay-section .title {
        font-size: 38px;
    }

    .stay-section .small-info {
        font-size: 14px;
        line-height: 24px;
        margin: 0 auto 20px;
    }
}

@media screen and (max-width:767px) {
    .stay-section .form-info {
        width: 100%;
    }

    .stay-section .form-info input {
        padding: 12px 12px 12px 55px;
        width: 100%;
        font-size: 14px;
    }

    .stay-section .form-info .btn {
        position: inherit;
        top: 0px;
        margin-top: 15px;
    }

    .stay-section .form-info .icon {
        top: 10px;
    }
}

/* Stay in the LOOP Section Section End */
/* country Section Start  */
.country-section {
    padding-top: 100px;
}
.country-section .country-card {
    padding-top: 100px;
    border-radius: 10px;
    background-color: var(--card-color);
    box-shadow: var(--theme-button-shadow);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.country-section .country-card::after {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    width: 90%;
    height: 1px;
    background-color: var(--text-orange);
    left: 0px;
    right: 0px;
}

.country-section .country-list {
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: var(--card-color);
    padding: 0px 15px;
}

.country-section .country-list .label {
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.country-section .country-list .small-label {
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    vertical-align: middle;
    color: var(--text-color);
}

@media screen and (max-width: 992px) {
    .country-section .country-list .label {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 5px;
    }

    .country-section .country-list .small-label {
        font-size: 12px;
        line-height: 18px;
    }

    .country-section .country-card {
        padding: 20px 15px;
    }

    .country-section .country-list {
        padding: 0px 10px;
    }
}

@media screen and (max-width:767px) {
    .country-section .country-card {
        flex-flow: column;
    }

    .country-section .country-list {
        padding: 15px 0px;
        margin: 15px 0px;
    }

    .country-section .country-list:first-child {
        margin-top: 0px;
    }

    .country-section .country-list:last-child {
        margin-bottom: 0px;
    }

    .country-section .country-card::after {
        width: 1px;
        height: 90%;
    }
}

/* country Section End  */
/* footer Section Start */
.footer-section .footer-nav {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding-bottom: 15px;
}

.footer-section .footer-nav .nav-protostar-item {
    display: inline-block;
    width: auto;
}

.footer-section .footer-nav .nav-protostar-item .nav-link {
    font-family: var(--font-lorin);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--text-header-color);
    position: relative;
    padding: 0px 20px;
    transition: 0.5s;
}

.footer-section .footer-nav .nav-protostar-item .nav-link::after {
    content: "";
    position: absolute;
    right: 0px;
    width: 1px;
    height: 100%;
    background-color: #777777;
}

.footer-section .footer-nav .nav-protostar-item:last-child .nav-link::after {
    display: none;
}

.footer-section .footer-nav .nav-protostar-item .nav-link:hover,
.footer-section .footer-nav .nav-protostar-item .nav-link:focus {
    color: var(--text-orange);
}

.footer-section .social-list {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-top: 30px;
}

.footer-section .social-list li {
    display: inline-block;
    width: auto;
    margin-right: 15px;
}

.footer-section .social-list li:last-child {
    margin-right: 0px;
}

.footer-section .social-list .social-link {
    display: inline-block;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: var(--card-color);
    box-shadow: var(--theme-button-shadow);
    filter: grayscale(100%);
}

.footer-section .social-list .social-link:hover,
.footer-section .social-list .social-link:focus {
    filter: grayscale(0%);
}

.footer-bottom {
    padding: 15px 0px;
}

.footer-bottom .small-text,
.footer-bottom .small-link {
    display: inline-block;
    font-family: var(--font-lorin);
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    vertical-align: middle;
    color: var(--text-new-grey-color);
}

.footer-bottom .small-link {
    text-decoration: inherit;
    margin-left: 15px;
}

.footer-bottom .small-link:hover,
.footer-bottom .small-link:focus {
    color: var(--text-orange);
}

.footer-bottom .small-link:first-child {
    margin-left: 0px;
}

@media screen and (max-width:767px) {
    .footer-section .footer-nav .nav-protostar-item .nav-link {
        padding: 0px 10px;
        font-size: 14px;
    }

    .footer-section .social-list {
        margin-top: 10px;
    }

    .footer-section .social-list li {
        margin: 5px;
    }

    .footer-section .social-list .social-link {
        display: inline-block;
        padding: 8px;
        width: 40px;
        height: 40px;
    }
}

.slick-slide {
    height: auto; /* Ensure each slide has the appropriate height */
}

/* footer Section End */