@import url("./satoshi.css");

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: "Satoshi-Medium";
    scroll-behavior: smooth;
    scroll-padding-top: 10px;
}

* {
    scroll-behavior: smooth;
}

*,
::after,
::before {
    box-sizing: border-box;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1240px;
    }
}
@media (min-width: 1500px) {
    .container {
        max-width: 1400px;
    }
}
/*theme */
:root {
    --background-bg: #061418;
    --primary-color: #51fffc;
    --secondary-color: #f7574b;
    --button-bg: linear-gradient(81.01deg, #bb3f35 -7.71%, #f7574b 117.08%);
    --button-hover-bg: linear-gradient(81.01deg, #f7574b -7.71%, #bb3f35 117.08%);
    --text-color: #fff;
    --text-light-color: #c8d9de;
    --primary-rgb: 14, 29, 32;
}

ul {
    padding: 0;
    list-style: none;
    margin: 0px;
}

a {
    transition: 0.5s;
}
.padder-50 {
    padding: 40px 0px;
}
.themeTitle {
    font-size: 36px;
    line-height: 120%;
    font-family: "Satoshi-Bold";
    color: var(--text-color);
    margin-bottom: 20px;
}
.themeTitle span {
    color: var(--secondary-color);
    font-family: "Satoshi-Medium";
}
.themeInfo {
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    font-family: "Satoshi-Regular";
    color: var(--text-light-color);
    margin-bottom: 35px;
}
.themeInfo a{
    color: var(--text-light-color);
}
.themeInfo a:hover {
    color: var(--secondary-color);
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
    .padder-50 {
        padding: 30px 0px;
    }
    .themeTitle {
        font-size: 30px;
    }
    .themeInfo {
        font-size: 18px;
    }
}
@media screen and (max-width: 767px) {
    .padder-50 {
        padding: 20px 0px;
    }
    .themeTitle {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .themeInfo {
        font-size: 16px;
        margin-bottom: 20px;
    }
}
/* button custom css start */
.btn {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0px;
    transition: all ease-in-out 500ms;
    padding: 8px 20px;
    font-family: "Satoshi-Bold"; 
 
}
.btn-outer{
    padding: 2px;
    overflow: hidden;
    position: relative; 
    display: inline-block;
    width: auto;
}
.btn-theme {
    color: var(--text-color);
    background: var(--button-bg); 
} 
.btn-theme:hover,
.btn-theme:focus {
    background: var(--button-hover-bg);
    color: var(--text-color);
    box-shadow: none;
}
.btn-theme>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-theme>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-theme>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-theme>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%);
	}
}

/* button custom css End */
/* Header section Start */
.themeHeader {
    margin-top: 25px;
}
.themeHeader .navbar {
    border: solid 1px var(--secondary-color);
    background-color: rgba(var(--primary-rgb), 0.8);
    padding: 10px 25px;
}
.themeHeader .navbar-nav {
    padding-right: 50px;
}
.themeHeader .navbar-brand {
    padding: 0px;
    margin: 0px;
}
.themeHeader .navbar-brand img {
    max-width: 100%;
    height: 28px;
}
.themeHeader .navbar-nav .nav-item .nav-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color);
    position: relative;
    padding: 0px 15px;
    transition: 0.5s;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.themeHeader .navbar-nav .nav-item .nav-link span {
    display: block;
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition:
        transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55),
        -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.themeHeader .navbar-nav .nav-item .nav-link:hover span,
.themeHeader .navbar-nav .nav-item .nav-link:focus span {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}
.themeHeader .navbar-nav .nav-item .nav-link:after {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    content: attr(data-hover);
    display: inline;
    text-align: center;
    -webkit-transition: top 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: top 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.themeHeader .navbar-nav .nav-item .nav-link:hover:after,
.themeHeader .navbar-nav .nav-item .nav-link:focus:after {
    top: 0;
}
.themeHeader .navbar-nav .nav-item .nav-link:hover,
.themeHeader .navbar-nav .nav-item .nav-link:focus,
.themeHeader .navbar-nav .nav-item .nav-link.active,
.themeHeader .navbar-nav .nav-item .nav-link:hover span {
    color: var(--primary-color);
}

.burger {
    position: relative;
    width: 25px;
    height: 25px;
    display: none;
    background: transparent;
    border: 0;
    padding: 0px;
    margin: 8px 5px 0px 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: #dcdcdc;
}

.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%;
}
.themeHeader.scrolled-menu {
    position: fixed;
    width: 100%;
    transition: 0.5s;
    z-index: 5;
    margin-top: 10px;
}
.themeHeader.scrolled-menu .navbar {
    background-color: rgba(var(--primary-rgb), 1);
    box-shadow: 5px 4px 8px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 992px) {
    .main-body {
        overflow: hidden;
    }

    .themeHeader .burger {
        display: block;
    }
    .themeHeader .navbar {
        padding: 10px 15px;
        justify-content: space-between;
    }
    .themeHeader .burger.show-x {
        z-index: 11;
    }

    .themeHeader .burger:hover,
    .themeHeader .burger:focus {
        outline: 0;
        box-shadow: none;
    }
    .themeHeader .navbar-brand img {
        height: 24px;
    }
    .themeHeader .rightMenu {
        position: fixed;
        right: -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: 90px 0px;
    }

    .themeHeader .rightMenu.show {
        height: 100%;
        right: 0px;
        top: 0px;
    }
    .themeHeader .navbar-nav {
        margin: 0 auto !important;
        padding: 0px 20px;
    }

    .themeHeader .navbar-nav .nav-item .nav-link {
        font-size: 14px;
        padding: 10px 15px;
    }
    .themeHeader .navbar-nav .nav-item {
        background: #152226;
        border-bottom: solid 1px #30515b;
    }
    .themeHeader .navbar-nav .nav-item:last-child {
        border-bottom: 0px;
    }
    .themeHeader .right-side {
        text-align: center;
        margin-top: 15px;
    }
    .main-body .themeHeader .navbar-brand {
        position: relative;
        z-index: 6;
    }
}
@media (min-width: 576px) {
    .themeHeader .navbar-nav {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .themeHeader .navbar-nav {
        max-width: 720px;
    }
}
@media screen and (max-width: 320px) {
    .themeHeader .navbar {
        padding: 8px;
    }
    .burger {
        width: 22px;
        height: 22px;
    }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
    .themeHeader .navbar {
        padding: 10px 12px;
    }
    .themeHeader .navbar-nav .nav-item .nav-link {
        font-size: 13px;
        padding: 0px 8px;
    }
    .themeHeader .navbar-brand img {
        height: 20px;
    }
    .themeHeader .btn {
        padding: 7px 12px;
        font-size: 13px;
    }
    .themeHeader .navbar-nav {
        padding-right: 0px;
    }
}
@media screen and (max-width: 420px) {
    .themeHeader .navbar-brand img {
        height: 23px; 
    }
}
@media screen and (max-width: 330px) {
    .themeHeader .navbar-brand img {
        height: 21px; 
    }
}
/* Header section End */
/* Banner Section Start */
.home-page {
    display: inline-block;
    width: 100%;
    background-image: url("../img/banner-bg.png");
    background-position: top right;
    background-size: cover;
}
.theme-banner {
    padding: 80px 0px;
    text-align: center;
}
.theme-banner .banner-brand {
    margin-bottom: 40px;
}
.theme-banner .banner-brand img {
    max-width: 100%;
    max-height: 100%;
}
.theme-banner .title {
    font-size: 48px;
    line-height: 125%;
    letter-spacing: 1px;
    font-family: "Satoshi-Bold";
    color: var(--text-color);
    margin: 0px;
}
.theme-banner .small-text {
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    font-family: "Satoshi-Regular";
    color: var(--text-light-color);
    margin: 0px;
}
.theme-banner .small-text span {
    color: var(--text-color);
    font-family: "Satoshi-Bold";
}
.theme-banner .btn {
    font-size: 14px;
    padding: 10px 25px;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
    .theme-banner .title {
        font-size: 34px;
    }
    .theme-banner .small-text {
        font-size: 18px;
        line-height: 140%;
    }
}
@media screen and (max-width: 767px) {
    .theme-banner {
        padding: 80px 0px 50px 0px;
    }
    .theme-banner .title {
        font-size: 28px;
    }
    .theme-banner .title.mb-4 {
        margin-bottom: 1rem !important;
    }
    .theme-banner .small-text br {
        display: none;
    }
    .theme-banner .banner-brand {
        margin-bottom: 30px;
    }
    .theme-banner .banner-brand img {
        max-width: 75%;
    }
    .home-page {
        background-size: 1300px;
        background-repeat: no-repeat;
    }
}
@media screen and (max-width: 420px) {
    .theme-banner .title {
        font-size: 25px;
    }
    .theme-banner .small-text {
        font-size: 14px;
    }
    .theme-banner .btn {
        font-size: 14px;
    }
}

/* Banner Section End */
/* City Auditions Section Start */
 
/* City Auditions Section Start */
.theme-card-border {
    background: linear-gradient(90deg, rgba(9, 31, 33, 1) 0%, rgba(13, 31, 33, 1) 50%, rgba(12, 29, 31, 1) 100%);
    box-shadow: 5px 4px 6px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    height: calc(100% - 20px);
    margin: 10px 0px;
}
.theme-card-border::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #8e3a34 60%, transparent 50%),
        linear-gradient(to right, rgb(247 87 75 / 48%) 60%, transparent 60%),
        linear-gradient(to bottom, #9e3c35 60%, transparent 60%),
        linear-gradient(to bottom, #762721 60%, transparent 60%);
    background-position:
        left top,
        left bottom,
        left top,
        right top;
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size:
        10px 1px,
        10px 1px,
        1px 10px,
        1px 10px;
}
.theme-card-border::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url("../img/box-shadow.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.theme-card-border.city-card::after {
    background-image: url("../img/box-sec-shadow.png");
}
.theme-card-border .card-body {
    position: relative;
    z-index: 1;
    height: 100%;
}
.vc-partner {
    text-align: center;
}
.vc-partner .card-body {
    padding: 25px 10px;
}

.vc-partner .small-title {
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
    color: var(--text-light-color);
    font-family: "Satoshi-Regular";
    margin-bottom: 15px;
}
.vc-partner .month {
    font-family: "Satoshi-Medium";
    font-size: 24px;
    line-height: 100%;
    color: var(--text-color);
}
.vc-partner  .auditions-text{
    font-family: "Satoshi-Bold";
    font-size: 24px;
    line-height: 100%;
    color: var(--text-color); 
}
.vc-partner  .auditions-text span{
    color: var(--text-light-color);
    font-family: "Satoshi-Regular";
}
@media (min-width: 768px) {
    .investments  .col-md-5 { 
        width: 45%;
    }
    .investments  .col-md-2 { 
        width: 10%;
    }
}
.investments .amount {
    font-family: "Satoshi-Bold";
    font-size: 24px;
    line-height: 100%;
    color: var(--text-color);
    margin-bottom: 5px;
}
.investments .amount span{
    font-family: "Satoshi-Medium";
}
.investments .small-title {
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
    color: var(--text-light-color);
    font-family: "Satoshi-Regular";
}
.investments .card-body {
    padding: 25px;
} 
.investments  .investments-row {
    display: flex;
    justify-content: center;
    align-items: center; 
}
.investments .plus {
    font-size: 32px;
    line-height: 100%;
    font-weight: 400;
    color: var(--secondary-color);
    font-family: "Satoshi-Bold";
    padding: 0px 20px;
}
.city-card .card-body {
    padding: 40px 50px;
}
.city-card .small-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    font-family: "Satoshi-Bold";
    color: var(--text-color);
    margin: 0px;
}
.city-card .list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.city-card .list li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0px 15px;
    flex: 0 0 auto;
    width: 25%;
    position: relative;
}
.city-card .list li::after {
    content: "";
    position: absolute;
    right: 0px;
    width: 2px;
    height: 42px;
    background: linear-gradient(180deg, #0a2426 0%, #226a6c 49.71%, #0a2426 100%);
    margin: auto 0;
    top: 0px;
    bottom: 0px;
}
.city-card .list li:last-child::after {
    display: none;
}
.city-card .list li:first-child {
    padding-left: 0px;
}
.city-card .list li img {
    margin-right: 15px;
}
.city-card .list li .small-text {
    font-size: 24px;
    line-height: 100%;
    font-family: "Satoshi-Medium";
    color: var(--text-color);
}
/* .not-available img,
.not-available .small-text,
.not-available .city-img,
.not-available .city-name,
.city-title.not-available{
    filter: blur(6px);
} */
.team-members .card-body {
    padding: 25px 10px;
}

.team-members .small-title {
    font-size: 24px;
    line-height: 120%;
    color: var(--text-color);
    font-family: "Satoshi-Medium";
    text-align: center;
}
@media (min-width: 1024px) {
    .first-card .big-card {
        width: 40%;
    }
    .first-card .small-card {
        width: 30%;
    }
}
@media screen and (min-width: 1251px) and (max-width: 1399px) {
    .city-card .card-body {
        padding: 35px 30px;
    }
    .city-card .small-title {
        font-size: 24px;
    }
}
@media screen and (min-width: 993px) and (max-width: 1250px) {
    .city-card .card-body {
        padding: 35px 25px;
    }
    .city-card .small-title {
        font-size: 20px;
    }
    .city-card .list li img {
        margin-right: 10px;
    }
    .city-card .list li .small-text {
        font-size: 20px;
    }
}
@media screen and (max-width: 992px) {
    .city-card .card-body {
        padding: 20px;
    }
    .city-card .small-title {
        text-align: center;
        margin-bottom: 10px;
        font-size: 20px;
    }
    .city-card .list {
        flex-wrap: inherit;
    }
 
    .city-card .list li img {
        margin-right: 5px;
        width: 25px;
    }
    .city-card .list li .small-text {
        font-size: 14px;
    }
    .city-card .list li::after {
        height: 100%;
    }
}
@media screen and (min-width: 767px) and (max-width: 1180px) {
    .investments .card-body {
        padding: 25px 15px;
    }
    .investments .small-title {
        font-size: 14px;
    }
    .vc-partner .month {
        font-size: 20px;
    }
    .vc-partner .small-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .investments .amount {
        font-size: 16px;
        text-align: center; 
    }
    .investments .plus{
        font-size: 28px;
        padding: 0px;
    }
    .team-members .small-title {
        font-size: 20px;
    }
    .vc-partner .auditions-text { 
        font-size: 18px; 
    }
    .vc-partner img{
        height: 35px;
    }
}
@media screen and (max-width: 767px) {
    .city-auditions .theme-card-border {
        height: calc(100% - 10px);
        margin: 5px 0px;
    }
    .team-members .small-title {
        font-size: 18px;
    }
    .investments .small-title {
        font-size: 14px;
    }
    .vc-partner .month {
        font-size: 20px;
    }
    .vc-partner .small-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .investments .amount {
        font-size: 17px;
        text-align: center; 
    }
    .investments .plus{ 
        width: 20%;
        font-size: 28px;
        padding: 0px;
        text-align: center;
    }
    .vc-partner .auditions-text { 
        font-size: 18px; 
    }
    .vc-partner .card-body {
        padding: 20px 10px;
    } 
    .city-card .list li {
        width: auto;
    }
    .vc-partner img{
        height: 35px;
    }
}
@media screen and (max-width: 560px) {
    .city-card .small-title {
        margin-bottom: 18px;
        font-size: 16px;
    }
    .city-card .small-title {
        text-align: center;
        margin-bottom: 18px;
        font-size: 17px;
    }
    .city-card .list {
        flex-wrap: wrap;
    }
    .city-card .list li {
        width: 50%;
        padding: 5px;
        justify-content: flex-start;
    }
}
/* City Auditions Section End */
/* Program Overview Section Start */
.program-overview .theme-card-border {
    box-shadow: none;
    background: transparent;
}
.program-overview .theme-card-border::before {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 60%, transparent 50%),
        linear-gradient(to right, #f7574b 60%, transparent 60%),
        linear-gradient(to bottom, #f7574b 60%, transparent 60%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, transparent 60%);
}
.program-overview .theme-card-border::after {
    background-image: url("../img/box-thired-shadow.png");
}
.program-overview .card-body {
    padding: 35px 25px;
}
.program-overview .title {
    font-size: 24px;
    line-height: 124%;
    color: var(--text-color);
    font-family: "Satoshi-Bold";
    font-weight: 700;
    margin-bottom: 15px;
}
.program-overview .title span {
    color: var(--secondary-color);
}
.program-overview .small-text {
    font-size: 20px;
    line-height: 150%;
    font-family: "Satoshi-Regular";
    margin: 0px;
    color: var(--text-light-color);
}
.program-overview .small-text span {
    color: var(--text-color);
    font-family: "Satoshi-Medium";
}

@media screen and (min-width: 993px) and (max-width: 1380px) {
    .program-overview .card-body {
        padding: 20px;
    }
}
@media screen and (max-width: 1380px) {
    .program-overview .title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .program-overview .small-text {
        font-size: 16px;
    }
}
@media screen and (max-width: 992px) {
    .program-overview .theme-card-border::after {
        background-position: bottom;
    }
}
@media screen and (max-width: 767px) {
    .program-overview .card-body {
        padding: 25px 20px;
    }
}
@media screen and (max-width: 550px) {
    .program-overview .card-body {
        padding: 20px 15px;
    }
    .program-overview .title {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .program-overview .small-text {
        font-size: 14px;
    }
}
/* Program Overview Section End */
/* Benefits Section Start */
.benefits .theme-card-border::after {
    background-image: url("../img/box-four-shadow.png");
}
.benefits .card-body {
    padding: 40px 25px;
    display: flex;
}
.benefits .card-body .icon {
    margin-right: 30px;
    width: 60px;
}
.benefits .card-body .icon img {
    max-width: 100%;
}
.benefits .card-body .info {
    max-width: 85%;
}
.benefits .card-body .info .small-title {
    font-size: 24px;
    font-family: "Satoshi-Bold";
    line-height: 124%;
    letter-spacing: 0%;
    color: var(--text-color);
    margin-bottom: 5px;
}
.benefits .card-body .info .small-text {
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    font-family: "Satoshi-Regular";
    color: var(--text-light-color);
    margin: 0px;
}
.benefits .card-body .info .small-text span {
    font-family: "Satoshi-Bold"; 
}
.shadow-img {
    background-image: url("../img/shadow-img.png");
    background-size: cover;
    background-position: top;
}
@media screen and (min-width: 768px) and (max-width: 1380px) {
    .benefits .card-body {
        padding: 20px 15px;
        display: flex;
    }
    .benefits .card-body .info .small-title {
        font-size: 18px;
    }
    .benefits .card-body .info .small-text {
        font-size: 14px;
    }
    .benefits .card-body .icon {
        margin-right: 15px;
        width: 40px;
    }
}
@media screen and (max-width: 767px) {
    .benefits .card-body {
        padding: 20px 15px;
        display: flex;
    }
    .benefits .card-body .info .small-title {
        font-size: 18px;
    }
    .benefits .card-body .info .small-text {
        font-size: 14px;
    }
    .benefits .card-body .icon {
        margin-right: 15px;
        width: 35px;
    }
}
/* Benefits Section End */
/* Program Timeline Section Start  */
.program-timeline .timeline-list {
    position: relative;
    z-index: 1;
    margin-top: 15px;
}
.program-timeline .timeline-list .date-text {
    font-size: 20px;
    line-height: 100%;
    font-family: "Satoshi-Regular";
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.program-timeline .timeline-list .date-text sup{
    font-size: 13px;
}
.program-timeline .timeline-list .dot {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    background-color: var(--secondary-color);
    border: 2px solid #ffffff;
    box-shadow: 0px 0px 10px 5px rgba(247, 87, 75, 0.5);
    margin-bottom: 20px;
}
.program-timeline .timeline-list .small-title {
    font-size: 24px;
    font-family: "Satoshi-Bold";
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--text-color);
    margin-bottom: 20px;
}
.program-timeline .timeline-list .city-title {
    font-size: 20px;
    line-height: 110%;
    font-family: "Satoshi-Bold";
    letter-spacing: 0%;
    color: var(--primary-color);
    margin: 7px 0px;
}
.timeline-border {
    position: relative;
}
.timeline-border::before {
    content: "";
    position: absolute;
    top: 64px;
    left: -10px;
    width: 101%;
    height: 1px;
    background-image: linear-gradient(to right, rgb(255 255 255 / 80%) 60%, transparent 50%),
        linear-gradient(to right, rgb(247 87 75 / 0%) 60%, transparent 60%),
        linear-gradient(to bottom, rgb(255 255 255 / 0%) 60%, transparent 60%),
        linear-gradient(to bottom, rgb(255 255 255 / 0%) 60%, transparent 60%);
    background-position:
        left top,
        left bottom,
        left top,
        right top;
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size:
        20px 1px,
        20px 1px,
        1px 20px,
        1px 20px;
}
.program-timeline .timeline-list .small-info {
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    font-family: "Satoshi-Regular";
    color: var(--text-light-color);
    margin: 0px;
}
@media screen and (max-width: 1380px) {
    .program-timeline .timeline-list .date-text {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .program-timeline .timeline-list .small-title {
        font-size: 20px;
    }
    .program-timeline .timeline-list .city-title {
        font-size: 15px;
        line-height: 120%;
    }
    .program-timeline .timeline-list .small-info {
        font-size: 14px;
    }
    .timeline-border::before {
        top: 55px;
    }
}
@media screen and (max-width: 767px) {
    .program-timeline .timeline-list {
        padding-left: 35px;
    }
    .program-timeline .timeline-border {
        margin-top: 30px;
    }
    .program-timeline .timeline-border .col-md-3:first-child .timeline-list {
        margin-top: 0px;
    }
    .timeline-border::before {
        top: 0px;
        left: 25px;
        width: 1px;
        height: 100%;
        background-image: linear-gradient(to right, rgb(255 255 255 / 80%) 60%, transparent 50%),
            linear-gradient(to right, rgb(247 87 75 / 0%) 60%, transparent 60%),
            linear-gradient(to bottom, rgb(255 255 255 / 80%) 60%, transparent 60%),
            linear-gradient(to bottom, rgb(255 255 255 / 0%) 60%, transparent 60%);
    }
    .program-timeline .timeline-list .dot {
        position: absolute;
        top: 0;
        left: 5px;
    }
    .program-timeline .timeline-list .small-title {
        margin-bottom: 10px;
    }
}
/* Program Timeline Section End  */
/* Mentors Section Start  */
.mentors-slider {
    margin: 0px -10px;
}
.mentors .item {
    margin: 0px 10px;
}
.mentors-card .mentors-img {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 325px;
    background-color: #09272f;
    text-align: center;
    cursor: pointer;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
}
/* .mentors-card .mentors-img::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url("../img/mentor-shap-2.png");
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
} */
.mentors-card .mentors-img .mentors-animation {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transform: scale(1.4);
    transition: transform 1s;
}
.mentors-card .mentors-img:hover .mentors-animation {
    transform: scale(1);
    opacity: 1;
}
.mentors-card .mentors-img:hover::after {
    opacity: 1;
}
.mentors-card .mentors-img .mentorsimg {
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}
.mentors-card .mentors-info {
    display: inline-block;
    margin-top: 15px;
}
.mentors-card .mentors-info .mentors-name {
    font-size: 22px;
    font-family: "Satoshi-Bold";
    line-height: 100%;
    color: var(--text-color);
    margin-bottom: 8px;
}
.mentors-card .mentors-info .mentors-designation {
    font-size: 16px;
    font-family: "Satoshi-Regular";
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--text-light-color);
    margin-bottom: 8px;
}
.mentors-card .mentors-info .mentors-founder {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--text-light-color);
}
.mentors-card .mentors-info .mentors-founder span {
    display: inline-block;
    padding-right: 20px;
    font-family: "Satoshi-BlackItalic";
    color: #ab9f96;
    position: relative;
}
.mentors-card .mentors-info .mentors-founder span::after {
    content: "";
    position: absolute;
    right: 10px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #181818 0%, #ab9f96 49.71%, #181818 100%);
    margin: auto 0;
    top: 0px;
    bottom: 0px;
}
.mentors-card .social-icon{
    display: flex;
    width: 100%;
    margin-top: 15px;
}
.mentors-card  .social-icon li {
    display: inline-flex;
    align-items: center;
    width: auto; 
    margin-right: 10px;
}
.mentors-card  .social-icon li a{
    display: flex;
    align-items: center;
}
.mentors-card  .social-icon li a svg {
    fill: var(--text-color);
    width: 17px;
    height: 17px;
}
.mentors-card  .social-icon li a:hover svg {
    fill: var(--primary-color);
}
@media screen and (min-width: 767px) and (max-width: 1350px) {
    .mentors-card .mentors-img {
        height: 250px;
    }
    .mentors-card .mentors-info .mentors-name {
        font-size: 20px;
    }
    .mentors-card .mentors-info .mentors-founder {
        font-size: 14px;
    }
    .mentors-card .mentors-info .mentors-designation {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .mentors-card .mentors-info .mentors-founder span {
        padding-right: 10px;
    }
    .mentors-card .mentors-info .mentors-founder span::after {
        right: 4px;
        width: 1px;
    }
}
@media screen and (max-width: 767px) {
    .mentors-card .mentors-img {
        height: 225px;
    }
    .mentors-card .mentors-info .mentors-name {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .mentors-card .mentors-info .mentors-designation {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .mentors-card .mentors-info .mentors-founder {
        font-size: 12px;
        line-height: 120%;
    }
    .mentors-card .mentors-info .mentors-founder span {
        padding-right: 10px;
    }
    .mentors-card .mentors-info .mentors-founder span::after {
        right: 4px;
        width: 1px;
    }
}
@media screen and (max-width: 560px) {
    .mentors-card .mentors-img {
        height: 185px;
    }
}
/* Mentors Section End  */
/* Audition for LFM Section Start */
.audition .small-process {
    font-size: 24px;
    line-height: 124%;
    font-family: "Satoshi-Bold";
    color: var(--text-color);
}
.audition .theme-card-border {
    box-shadow: none;
    background: #061418;
    background-clip: padding-box;
    border: solid 1px transparent;
}
.audition .theme-card-border::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    width: auto;
    height: auto;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(90deg, #51fffc 0%, #061418 74.04%, #061418 100%);
    transition: 0.5s;
}
.audition .card-body {
    padding: 25px 20px;
}
.audition .card-body .number {
    font-size: 24px;
    line-height: 110%;
    font-family: "Satoshi-Black";
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.audition .card-body .title {
    font-size: 24px;
    line-height: 124%;
    font-family: "Satoshi-Bold";
    color: var(--text-color);
    margin-bottom: 10px;
}
.audition .card-body .small-info {
    font-size: 16px;
    line-height: 140%;
    color: var(--text-light-color);
    font-family: "Satoshi-Regular";
    margin: 0px;
}
.audition .stage-img {
    display: inline-block;
    width: 100%;
    margin-top: 5px;
}
.audition .stage-img img {
    width: 100%;
}
@media (min-width: 992px) {
    .audition .col-lg-2 {
        width: 20%;
    }
}
@media screen and (max-width: 1350px) {
    .audition .card-body {
        padding: 20px 15px;
    }
    .audition .card-body .number {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .audition .card-body .title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .audition .card-body .small-info {
        font-size: 14px;
    }
}
/* Audition for LFM Section End */
/* How to apply section start */
.how-to-apply {
    background-image: url("../img/dont-deletye.png");
    background-size: cover;
    background-position: 100% 80%;
}
.how-to-apply .theme-card-border {
    background: #061418;
    height: auto;
    margin-bottom: 30px;
}
.how-to-apply .theme-card-border:last-child {
    margin-bottom: 10px;
}
.how-to-apply .theme-card-border.first-card {
    height: calc(100% - 20px);
    margin: 10px 0px;
    box-shadow: 0px 0px 25px 5px rgba(81, 255, 252, 0.7);
}
.how-to-apply .theme-card-border::after {
    background-image: url("../img/box-five-shadow.png");
}
.how-to-apply .theme-card-border::before {
    background-image: linear-gradient(to right, #65a8a7 60%, transparent 50%),
        linear-gradient(to right, rgb(101 168 167 / 74%) 60%, transparent 60%),
        linear-gradient(to bottom, #65a8a7 60%, transparent 60%),
        linear-gradient(to bottom, rgb(101 168 167 / 49%) 60%, transparent 60%);
}
.how-to-apply .card-body {
    padding: 30px 25px;
}
.how-to-apply .card-body .number {
    font-size: 24px;
    line-height: 110%;
    font-family: "Satoshi-Black";
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.how-to-apply .theme-card-border.first-card .card-body .number {
    margin-bottom: 10px;
}
.how-to-apply .card-body .title {
    font-size: 24px;
    line-height: 124%;
    font-family: "Satoshi-Bold";
    color: var(--text-color);
    margin-bottom: 10px;
}
.how-to-apply .card-body .small-info {
    font-size: 16px;
    line-height: 140%;
    color: var(--text-light-color);
    font-family: "Satoshi-Medium";
    margin: 0px;
}
.city-list {
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
}
.city-list::before,
.city-list::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    background-position:
        left top,
        left bottom,
        left top,
        right top;
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size:
        10px 1px,
        10px 1px,
        1px 10px,
        1px 10px;
}
.city-list::before {
    width: 70%;
    height: 1px;
    background-image: linear-gradient(to right, rgb(255 255 255 / 45%) 60%, transparent 50%),
        linear-gradient(to right, rgb(255 255 255 / 0%) 60%, transparent 60%),
        linear-gradient(to bottom, #ffffff00 60%, transparent 60%),
        linear-gradient(to bottom, rgb(101 168 167 / 0%) 60%, transparent 60%);
}
.city-list::after {
    width: 1px;
    height: 100%;
    background-image: linear-gradient(to right, #ffffff00 60%, transparent 50%),
        linear-gradient(to right, rgb(255 255 255 / 0%) 60%, transparent 60%),
        linear-gradient(to bottom, rgb(255 255 255 / 39%) 60%, transparent 60%),
        linear-gradient(to bottom, rgb(101 168 167 / 0%) 60%, transparent 60%);
}
.how-to-apply .city-card {
    padding: 25px 10px;
    text-align: center;
}
.how-to-apply .city-card .city-img {
    margin-bottom: 15px;
}
.how-to-apply .city-card .city-img img {
    height: 52px;
}
.how-to-apply .city-card .city-name {
    font-size: 24px;
    line-height: 124%;
    text-align: center;
    font-family: "Satoshi-Medium";
    color: var(--text-color);
}
@media screen and (max-width: 1350px) {
    .how-to-apply .card-body {
        padding: 25px 20px;
    }
    .how-to-apply .card-body .title {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .how-to-apply .theme-card-border.first-card .card-body .number {
        margin-bottom: 5px;
    }
    .how-to-apply .card-body .small-info {
        font-size: 15px;
    }
    .how-to-apply .city-card .city-name {
        font-size: 18px;
    }
    .how-to-apply .city-card .city-img {
        margin-bottom: 10px;
    }
    .how-to-apply .city-card .city-img img {
        height: 45px;
    }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
    .how-to-apply .card-body .number {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .how-to-apply .card-body {
        padding: 15px;
    }
}
@media screen and (max-width: 767px) {
    .how-to-apply .city-card {
        padding: 15px 0px;
    }
    .how-to-apply .city-card .city-name {
        font-size: 15px;
    }
    .how-to-apply .city-card .city-img img {
        height: 40px;
    }
    .city-list {
        margin-top: 10px;
        margin-bottom: 25px;
    }
    .how-to-apply .card-body {
        padding: 20px 15px;
    }
    .how-to-apply .card-body .number {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .how-to-apply .theme-card-border {
        margin-bottom: 15px;
    }
}
/* How to apply section end */
/* FAQ Section Start */
.faq-section {
    background-image: url("../img/faq-bg.png");
    background-size: cover;
    background-position: bottom;
    padding-bottom: 80px;
}
.faq-section .accordion-item {
    background-color: transparent;
    border: 1px solid transparent;
    transition: 0.5s;
    border-radius: 0px;
    border-bottom: solid 1px #30515b;
}
.faq-section .accordion-button {
    padding: 15px 0px;
}
.faq-section .accordion-button {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    font-size: 18px;
    font-family: "Satoshi-Bold";
    line-height: 26px;
    color: var(--text-color);
}
.faq-section .accordion-body p,
.faq-section .accordion-body ul li {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    color: var(--text-light-color);
    font-family: "Satoshi-Regular";
}
.faq-section .accordion-body p:last-child {
    margin-bottom: 0px;
}
.faq-section .accordion-body {
    padding: 0px 0px 20px 0px;
}
.faq-section .accordion-item.open {
    border-bottom-color: var(--secondary-color);
}
.faq-section .accordion-body ul {
    padding-left: 1rem;
    list-style: auto;
}
.faq-section .accordion-body ul li {
    margin-bottom: 5px;
}
.faq-section .accordion-button::after {
    background-image: url("../img/hidden-icon.svg");
    transform: inherit;
}
.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("../img/read-icon.svg");
}
@media screen and (max-width: 1024px) {
    .faq-section .accordion-button {
        font-size: 16px;
        line-height: 22px;
    }
    .faq-section .accordion-button {
        padding: 12px 0px;
    }
    .faq-section .accordion-body {
        padding: 0px 0px 15px 0px;
    }
    .faq-section .accordion-body p,
    .faq-section .accordion-body ul li {
        font-size: 14px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
    .faq-section {
        padding-bottom: 30px;
    }
}
@media screen and (max-width: 767px) {
    .faq-section {
        padding-bottom: 20px;
    }
}
/* FAQ Section End */
/* footer section start */
.footer-section {
    background-image: url("../img/footer-bg.png");
    background-size: cover;
    background-position: center bottom;
}
.footer-section .top-footer {
    padding-top: 100px;
    padding-bottom: 30px;
}
.top-footer .left-footer .brand {
    margin-bottom: 40px;
}
.top-footer .left-footer .brand img {
    max-width: 100%;
}
.footer-section .top-footer .small-info {
    font-size: 20px;
    line-height: 140%;
    color: var(--text-light-color);
    font-family: "Satoshi-Regular";
    margin-bottom: 20px;
}
.footer-section .top-footer .email {
    display: inline-block;
    padding: 10px 18px;
    font-size: 18px;
    color: var(--text-color);
    font-family: "Satoshi-Medium";
    text-decoration: inherit;
    background-clip: padding-box;
    border: solid 1px transparent;
    position: relative;
    background-color: var(--background-bg);
    border-radius: 50px;
    transition: 0.3s;
}
.footer-section .top-footer .email img {
    margin-right: 10px;
}
.footer-section .top-footer .email::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    width: auto;
    height: auto;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.1) 5%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.1) 95%,
        rgba(255, 255, 255, 0.8) 100%
    );
    transition: 0.3s;
}
.footer-section .top-footer .email:hover {
    color: var(--secondary-color);
}
.footer-section .top-footer .email:hover::before {
    background: linear-gradient(
        90deg,
        rgba(247, 87, 75, 0.8) 0%,
        rgba(247, 87, 75, 0.2) 5%,
        rgba(247, 87, 75, 0.2) 50%,
        rgba(247, 87, 75, 0.2) 95%,
        rgba(247, 87, 75, 0.8) 100%
    );
}
.footer-section .footer-list .title {
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-family: "Satoshi-Bold";
    margin-bottom: 25px;
}
.footer-section .footer-list .list {
    display: inline-block;
    width: 100%;
}
.footer-section .footer-list .list li {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
}
.footer-section .footer-list .list li:last-child {
    margin-bottom: 0px;
}
.footer-section .footer-list .list .nav-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color);
    position: relative;
    padding: 0px;
    transition: 0.5s;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.footer-section .footer-list .list span {
    display: block;
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition:
        transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55),
        -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.footer-section .footer-list .list .nav-link:after {
    position: absolute;
    top: 100%;
    left: 0;
    content: attr(data-hover);
    display: inline;
    text-align: center;
    -webkit-transition: top 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: top 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.footer-section .footer-list .list .nav-link:hover,
.footer-section .footer-list .list .nav-link:focus,
.footer-section .footer-list .list .nav-link:hover span {
    color: var(--primary-color);
}
.footer-section .footer-list .list .nav-link:hover:after,
.footer-section .footer-list .list .nav-link:focus:after {
    top: 0;
}
.footer-section .footer-list .list .nav-link:hover span,
.footer-section .footer-list .list .nav-link:focus span {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}
.our-socials {
    display: flex;
    width: 100%;
}
.our-socials li {
    display: inline-flex;
    width: auto;
    margin-right: 15px;
}
.our-socials li:last-child {
    margin-right: 0px;
}
.our-socials li a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    text-decoration: inherit;
    background: linear-gradient(140deg, #1b3d47 60%, #0d242a 100%);
    background-clip: padding-box;
    border: solid 1px transparent;
    position: relative;
    transition: 0.5s;
}
.our-socials li a img {
    height: 20px;
}
.our-socials li a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    width: auto;
    height: auto;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(140deg, #1c494d 10%, #1d3d3d 60%, #2e8f8e 100%);
    transition: 0.5s;
}
.our-socials li a:hover::before {
    transition: 0.5s;
    background: linear-gradient(90deg, #51fffc 0%, #061418 74.04%, #061418 100%);
}
.top-footer  .aptoms-text{
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 50px;
}
.top-footer  .aptoms-text img{
    width: 100%; 
}
.top-footer .lfm-text {
    font-size: 4.9dvw;
    font-family: "Pragmatica Ext Extra";
    font-style: italic;
    color: rgba(255, 255, 255, 0.09);
    line-height: normal;
    text-align: center;
    margin-top: 50px;
}
.top-footer .lfm-text span {
    font-style: normal;
    font-family: "Satoshi-Medium";
}
.footer-section .second-footer {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: solid 1px rgba(200, 217, 222, 0.18);
}
.footer-section .second-footer .list {
    display: flex;
    width: auto;
}
.footer-section .second-footer .list li {
    display: inline-block;
    width: auto;
    padding: 0px 15px;
    position: relative;
}
.footer-section .second-footer .list li::after {
    content: "";
    position: absolute;
    right: 0px;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, #6b635e 0%, #ab9f96 100%);
    margin: auto 0;
    top: 0px;
    bottom: 0px;
}
.footer-section .second-footer .list li:last-child::after {
    display: none;
}
.footer-section .second-footer .list li:first-child {
    padding-left: 0px;
}
.footer-section .second-footer .list li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-light-color);
    position: relative;
    padding: 0px;
    transition: 0.5s;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: inherit;
}
.footer-section .second-footer .list li a span {
    display: block;
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition:
        transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55),
        -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.footer-section .second-footer .list li a:after {
    position: absolute;
    top: 100%;
    left: 0;
    content: attr(data-hover);
    display: inline;
    text-align: center;
    -webkit-transition: top 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: top 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.footer-section .second-footer .list li a:hover,
.footer-section .second-footer .list li a:focus,
.footer-section .second-footer .list li a:hover span {
    color: var(--primary-color);
}
.footer-section .second-footer .list li a:hover span,
.footer-section .second-footer .list li a:focus span {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}
.footer-section .second-footer .list li a:hover:after,
.footer-section .second-footer .list li a:focus:after {
    top: 0;
}
@media screen and (min-width: 1921px) {
    .top-footer .lfm-text {
        font-size: 2.4dvw;
    }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
    .footer-section .top-footer {
        padding-top: 30px;
    }
}

@media screen and (max-width: 1024px) {
    .footer-section .top-footer .small-info {
        font-size: 16px;
    }
    .footer-section .top-footer .email {
        padding: 10px 15px;
        font-size: 15px;
    }
    .top-footer .lfm-text {
        margin-top: 30px;
    }
}
@media screen and (min-width: 601px) and (max-width: 800px) {
    .top-footer .lfm-text {
        font-size: 5.5dvw;
    }
}
@media screen and (max-width: 767px) {
    .footer-section .top-footer {
        padding-top: 50px;
    }
    .footer-section .top-footer .small-info {
        font-size: 13px;
    }
    .top-footer .left-footer {
        margin-bottom: 30px;
        text-align: center;
    }
    .footer-section .top-footer .email img {
        margin-right: 5px;
    }
    .footer-section .top-footer .email {
        padding: 10px 15px;
        font-size: 16px;
    }
    .top-footer .left-footer .brand img {
        max-width: 70%;
    }
    .top-footer .left-footer .brand {
        margin-bottom: 20px;
    }
    .footer-section .footer-list .title {
        margin-bottom: 15px;
    }
    .footer-section .footer-list .list li {
        margin-bottom: 10px;
    }
    .footer-section .second-footer .list li a {
        font-size: 12px;
    }
    .footer-section .second-footer {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}
@media screen and (max-width: 580px) {
    .top-footer .lfm-text {
        font-size: 6dvw;
    }
    .footer-section .top-footer .email img {
        height: 18px;
    }
    .footer-section .top-footer .email {
        padding: 10px 12px;
        font-size: 14px;
    }
}
/* footer section end */
