/* @font-face {
  font-family: 'Gotham Pro';
  src: url('GOTHAMPRO-MEDIUM.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Days One Regular';
  src: url('DaysOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
} */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* Advantages Container */
.advantages-container {
    padding-top: 45px;
}

.advantages-box {
    padding: 50px 55px 115px;
    border-radius: 50px 50px 0 0;
}

.advantages-box .container {
    display: flex;
    flex-wrap: wrap;
    gap: 74px 0;
}

.advantages-title {
    text-align: left;
    margin: 0 0 14px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important
}

.advantages-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #258AFF;
    border-radius: 20px;
}

.advantages-row > div:nth-of-type(1) {
    border-radius: 20px 0 0 20px;
}

.advantages-row > div:not(:last-child) {
    border-style: solid;
    border-color: #258AFF;
    border-width: 0 1px 0 0;
}

.advantages-row > div:nth-of-type(3) {
    border-radius: 0 20px 20px 0;
}

.adv-card {
    position: relative;
    background: #fff;
    padding: 16px 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px 0;
    overflow: hidden;
    z-index: 0;
    transition: background 300ms ease;
}

.adv-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, #004799 20%, #0077FF 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 300ms ease;
}

.adv-card:hover::before {
    opacity: 1;
}

.adv-icon svg {
    width: 120px;
    height: auto;
}

.adv-card .adv-icon svg path {
    fill: #2656A0;
    transition: fill 300ms ease;
}

.adv-card:hover .adv-icon svg path{
    fill: #fff;
}

.adv-card-title {
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    font-size: 24px;
    text-align: center;
    color: #05001F;
    margin: 0;
    transition: color 300ms ease;
}

.adv-card:hover .adv-card-title {
    color: #fff;
}

.adv-card-desc {
    font-size: 16px;
    font-weight: 700 !important;
    font-family: 'Montserrat', sans-serif !important;
    color: #05001F;
    margin: 0;
    transition: color 300ms ease;
}

.adv-card:hover .adv-card-desc {
    color: #fff;
}

/* Statistic Container */
.statistic-container {
    padding: 55px 55px 67px;
    text-align: left;
}

.statistic-container .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 39px 0;
}

.statistic-title {
    text-align: left;
    margin: 0;
    width: 100%;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important
}

.statistic-subtitle {
    margin: 0 0 25px;
    color: #05001F;
    width: 100%;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important
}

.statistic-row {
    /* display: flex;
    flex-wrap: wrap; */
    justify-content: center;
    /* border: 1px solid #004BA1; */
    border-radius: 20px;
    display: grid;
    gap: 0 20px;
    width: 100%;
}

.statistic-row.top {
    grid-template-columns: repeat(4, 1fr);
}

.statistic-row.bottom {
    grid-template-columns: repeat(3, 1fr);
}

/* .statistic-row > div:nth-of-type(1) {
    border-radius: 20px 0 0 20px;
}

.statistic-row > div:nth-last-of-type(1) {
    border-radius: 0 20px 20px 0;
}

.statistic-row > div:not(:last-child) {
    border-style: solid;
    border-color: #258AFF;
    border-width: 0 1px 0 0;
} */

.stat-card {
    position: relative;
    /* flex: 1 1 25%; */
    background: #fff;
    padding: 68px 34px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    z-index: 0;
    transition: background 300ms ease;
    border: 1px solid #004BA1;
    border-radius: 30px;
    gap: 30px 0;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, #004799 20%, #0077FF 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 300ms ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon svg {
    width: 94px;
    height: auto;
}

.stat-card svg path {
    fill: #2656A0;
    transition: fill 300ms ease;
}

.stat-card:hover svg path {
    fill: white;
}

.stat-card-title {
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px;
    color: #2656A0;
    margin: 0;
    transition: color 300ms ease;
}

.stat-card:hover .stat-card-title {
    color: white;
}

/* Questions Container */
.faq-container {
    padding: 76px 55px 79px;
    background-color: #2656A0;
}

.faq-title {
    color: #fff;
    text-align: left;
    margin: 0 0 41px 0;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

.faq-item {
    background: white;
    border-radius: 31px;
    overflow: hidden;
}

.faq-question {
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 38px 22px 47px;
    width: 100%;
    font-size: 28px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    cursor: pointer;
    text-align: left;
    color: #2656A0;
}

.faq-toggle-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    max-width: 46px;
    background-color: #2656A0;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-toggle-icon svg {
    transition: transform 300ms ease;
}

.faq-item.active .faq-toggle-icon svg {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 38px 0 47px;
    font-size: 28px;
    font-weight: 500 !important;
    font-family: 'Montserrat', sans-serif !important;
    color: #2656A0;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* должно быть больше максимально возможной высоты блока */
    padding: 14px 38px 18px 47px;
}

/* VideoPlayer Container */
.video-player-container {
    padding: 0 55px 46px;
    background-color: #2656A0;
    color: #fff;
    text-align: left; 
}

.video-player-container .container {
    display: flex;
    flex-direction: column;
    gap: 19px 0;
}

.video-player-title {
    font-size: 38px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    margin: 0;
}

.video-player-subtitle {
    font-size: 28px;
    font-weight: 700 !important;
    margin: 0 0 40px;
    font-family: 'Montserrat', sans-serif !important;
}

.video-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 487px;
    max-height: 487px;
    background-color: #000;
    cursor: pointer;
}

.video-wrapper iframe {
    min-height: 487px;
    max-height: 487px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    min-height: 487px;
    max-height: 487px;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 134px;
    height: 134px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Services Container */
.services-container {
    padding: 74px 55px 120px;
    /* background: #0056C7;
    color: #fff; */
    color: #2656A0;
}

.services-container .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 78px 0;
}

.services-title {
    text-align: left;
    margin: 0;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important
}

.services-inner {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    background: #fff;
    border-radius: 45px;
}

.services-list {
    /* padding: 42px 42px 42px 24px; */
    padding: 0 42px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.service-tab {
    background: #fff;
    color: #000000;
    border: 2px solid #2656A0;
    border-radius: 31px;
    padding: 19px 17px 19px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 300ms ease;
    font-weight: bold;
    gap: 0 15px;
}

.service-tab:hover {
    border: 2px solid #2656A0;
}

.service-tab:not(.active):hover {
    background: #2656A0;
}

.service-tab .service-step {
    font-size: 28px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    margin: 0;
    transition: all 300ms ease;
}

.service-tab:not(.active):hover .service-step {
    color: #fff;
}

.service-tab .service-name {
    font-size: 28px;
    font-weight: 700 !important;
    margin: 0;
    font-family: 'Montserrat', sans-serif !important;
    transition: all 300ms ease;
}

.service-tab:not(.active):hover .service-name {
    color: #fff;
}

.service-tab .service-arrow {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border-radius: 100%;
    background: #2656A0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 300ms ease;
}

.service-tab.active .service-arrow {
    background: #fff;
}

.service-tab .service-arrow svg {
    transform: rotate(-45deg);
    transition: transform 300ms ease;
}

.service-tab.active .service-arrow svg {
    transform: rotate(0deg);
}

.service-tab .service-arrow svg path {
    fill: #fff;
}

.service-tab.active .service-arrow svg path {
    fill: #2656A0;
}

.service-tab > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 27px;
}

.service-tab.active {
    background: #2656A0;
    color: #fff;
    border-color: transparent;
}

.services-content {
    flex: 1 1 55%;
    position: relative;
    min-height: 280px;
}

.service-detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms linear, visibility 500ms linear;
}

.service-detail.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.service-detail .service-image {
    width: 100%;
    height: 100%;
    border-radius: 44px;
    object-fit: cover;
    object-position: center;
    max-height: 556px;
}

.service-text {
    position: absolute;
    bottom: 26px;
    left: 22px;
    backdrop-filter: blur(30px);
    border-radius: 22px;
    padding: 34px 25px;
    color: #fff;
    width: calc(100% - 44px);
}

.service-text h3 {
    margin: 0 0 5px;
    font-size: 25px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
}

.service-text p {
    margin: 0;
    font-size: 22px;
    font-weight: 700 !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* Submit an Application Container */
.app-form-container {
    background-color: #fff;
}

.app-form-box {
    padding: 87px 55px 97px;
    background: #fff;
    border-radius: 50px 50px 0 0;
    text-align: left;
    
}

.app-form-box .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 49px 0;
}

.app-form-title {
    font-size: 60px;
    font-weight: 700 !important;
    margin: 0;
    font-family: 'Montserrat', sans-serif !important;
}

.app-form-desc {
    font-size: 28px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    margin: 0;
}

.app-form-form {
    background: #fff;
    padding: 53px 100px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 30px 0 #00000040;
    width: 100%;
}

.app-form-form form {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

.app-form-form form h2 {
    color: #2656A0;
    text-align: center;
    font-size: 48px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    margin: 0;
    text-transform: uppercase;
}

.app-form-form form > div > p {
    margin: 0;
    font-family: 'Montserrat', sans-serif !important;
}

.app-form-form form > div label {
    color: #2656A0;
    font-size: 25px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.app-form-form form input {
    padding: 28px 39px;
    font-size: 20px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    color: #000;
    border: 3px solid #0000003B;
    border-radius: 20px;
    width: 100%;
}

.app-form-form form input[type="submit"] {
    background: linear-gradient(180deg, #004799 20%, #0077FF 100%);
    color: #fff;
    font-size: 36px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    padding: 34px 50px;
    transition: all 300ms ease;
    border: 0;
}

.app-form-form form input[type="submit"]:hover {
    background: linear-gradient(180deg, #0077FF 0%, #004799 80%);
}

.app-form-form form >  p {
    margin: 0;
}

.app-form-form .input-car {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.app-form-form .input-car > div > p {
    margin: 0;
}

.app-form-form .input-car input {
    border: 0;
}

.app-form-form .input-car > div:nth-of-type(1) input {
    border-style: solid;
    border-width: 3px 0 3px 3px;
    border-color: #0000003B;
    border-radius: 20px 0 0 20px;
}

.app-form-form .input-car > div:nth-of-type(2) input {
    border-style: solid;
    border-width: 3px 3px 3px 3px;
    border-color: #0000003B;
    border-radius: 0;
}

.app-form-form .input-car > div:nth-of-type(3) input {
    border-style: solid;
    border-width: 3px 3px 3px 0;
    border-color: #0000003B;
    border-radius: 0 20px 20px 0;
}

.app-form-form .input-number > p {
    position: relative;
}

.app-form-form .input-number .number-span {
    position: absolute;
    top: 52.5px;
    z-index: 1;
    font-size: 20px;
    font-weight: 500 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    color: #2656A0;
    left: 39px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0 16px;
}

.app-form-form .input-number .number-span::before {
    content: '';
    width: 3px;
    height: 62px;
    background-color: #0000003B
}

.app-form-form .input-number input {
    padding-left: 125px;
}

/* Sertificate Slider Container */
.sert-slider-widget {
    text-align: center;
    padding: 56px 105px 40px;
    background-color: #2656A0;
    color: #fff;
}

.sert-slider-widget .container {
    display: flex;
    flex-direction: column;
    gap: 101px 0;
}

.sert-title {
    text-align: left;
    font-size: 60px;
    font-weight: 700 !important;
    margin: 0;
    font-family: 'Montserrat', sans-serif !important;
}

.sert-slider-widget .swiper-slide img {
    width: 100%;
    height: 100%;
    min-height: 725px;
    max-height: 725px;
    object-fit: cover;
    object-position: center;
    border-radius: 18px!important;
}

.sert-slider-widget .swiper-container-wrapper {
    position: relative;
    padding-bottom: 55px;
}

.sert-slider-widget .swiper-pagination-bullet {
    margin: 0 9px;
    background: #FFFFFF80;
}

.sert-slider-widget .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #FFFFFF;
}

/* Header and Footer */
body.post, body.page, article.post, article.page {
    margin: 0;
}

header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px 2px rgba(34, 60, 80, 0.2);
    border-radius: 0 0 32px 32px;
}

header .hfe-retina-img {
    width: 58px;
    height: auto;
}

header .hfe-nav-menu__layout-horizontal.hfe-nav-menu__submenu-arrow {
    width: 100%!important;
}

header span {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important
}

.header-right {
    width: fit-content!important;
}

.header-right .hfe-menu-item, .header-right .hfe-sub-menu-item {
    width: fit-content;
    display: flex;
    align-items: center;
    padding: 8px 21px!important;
    border: 1px solid #0077FF;
    border-radius: 20px;
    font-size: 18px!important;
    font-weight: 700 !important;
    color: #0056C7!important;
    background: white;
    transition: background 0.3s!important;
    user-select: none;
}

.header-right .sub-menu {
    top: 110%!important;
    background: transparent!important;
    border-radius: 20px!important;
    width: fit-content!important;
    min-width: fit-content!important;
}

.header-right .menu-item-object-language_switcher .trp-flag-image {
    margin: 0 6px 0 0;
    width: 20px;
    height: auto;
}

.header-right .sub-arrow {
    display: none!important;
}

.header-right .hfe-sub-menu-item > span {
    display: flex;
    align-items: center;
}

footer {
    background: #2656A0;
}

footer .footer-top {
    padding: 100px 0 58px;
    border-radius: 32px 32px 0 0;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #2656A0;
    display: flex;
    justify-content: center!important;
    box-shadow: 0 4px 30px 0 #00000040;
}

footer .footer-bottom {
    padding: 59px 0 100px;
}

footer .footer-bottom p {
    margin: 0;
    font-family: 'Montserrat', sans-serif !important;
}

footer a.elementor-icon.elementor-social-icon {
    width: auto;
    height: auto;
}

header .hfe-nav-menu .hfe-menu-item {
    font-family: 'Montserrat', sans-serif !important;
    transition: all 300ms ease;
    font-weight: 700 !important;
    /* border-radius: 20px; */
}

/* Icon and Text Widget */
.icon-text-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-text-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 50px;
    height: auto;
}

.icon-text-icon svg {
    fill: #2656A0;
}

.icon-text-content {
    margin: 0;
    font-size: 16px;
    font-weight: 700 !important;
    font-family: 'Montserrat', sans-serif !important;
    line-height: 1.5;
    text-decoration: none;
    color: white;
    transition: color 300ms ease;
}

a.icon-text-content:hover {
    color: #09BEEC!important;
}

/* Banner Slider Container */
.banner-slider-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 184px 0 76px;
}

.banner-left {
    width: 50%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px 0;
}

.banner-title {
    font-size: 60px;
    font-weight: 700 !important;
    line-height: normal;
    font-family: 'Montserrat', sans-serif !important;
}

.banner-title span {
    color: #0078FF;
}

.banner-desc {
    font-size: 24px;
    margin: 0;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important
}

.banner-btn {
    padding: 27px 68px;
    background: linear-gradient(180deg, #004799 20%, #0077FF 100%);
    color: #fff;
    font-weight: 700 !important;
    font-size: 25px;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    width: fit-content;
    transition: all 300ms ease;
}

.banner-btn:hover {
    background: linear-gradient(180deg, #0077FF 0%, #004799 80%);
}

.banner-right {
    width: 50%;
    flex: 1;
}

.banner-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.banner-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.banner-modal-content {
    background: #fff;
    padding: 38px 43px 10px;
    max-width: 70vw;
    border-radius: 16px;
    position: relative;
}

.banner-modal-content form {
    gap: 14px 0;
}

.banner-modal-content form h2 {
    font-size: 36px;
    font-family: 'Montserrat', sans-serif !important;
}

.banner-modal-content form > div label {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif !important;
}

.banner-modal-content form input {
    font-size: 18px;
    padding: 20px 27px;
    font-family: 'Montserrat', sans-serif !important;
}

.banner-modal-content form > p {
    margin-top: 19px;
}

.banner-modal-content form input[type="submit"] {
    padding: 27px 35px;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif !important;
}

.banner-modal-content .input-number .number-span {
    top: 43.5px;
}

.banner-modal-content .input-number .number-span::before {
    height: 45px;
}

.banner-close {
    position: absolute;
    top: 20px; 
    right: 20px;
    cursor: pointer;
}

/* Container Styles */

.container {
    width: 100%;
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

@media (max-width: 1536px) {
    .container {
        max-width: 1280px;
    }
}

@media (max-width: 1280px) {
    .container {
        max-width: 1024px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 640px;
    }
}

@media (max-width: 640px) {
    .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Loan Calculator Container */
.loan-calculator {
    background: #2656A0;
}

.loan-container {
    padding: 72px 0 38px;
    border-radius: 50px 50px 0 0;
    background: #2656A0;
}

.lc-body {
    padding: 57px 36px 63px;
    background: #fff;
    border: 1px solid #0000001A;
    box-shadow: 0 4px 30px 0 #00000040;
    border-radius: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 50px;
}

.lc-heading { 
    font-size: 38px;
    font-weight: 700 !important;
    margin-bottom: 62px;
    font-family: 'Montserrat', sans-serif !important;
}

.ls-input > div:nth-of-type(1) {
    border: 3px solid #0000003B;
    border-radius: 20px;
    position: relative;
    padding: 14px 37px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

.ls-input > div:nth-of-type(1) label {
    font-size: 22px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    color: #848484;
}

.ls-input > div:nth-of-type(1) > div {
    font-size: 28px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    color: #000000;
}

.loan-calculator input[type=range] {
    -webkit-appearance: none;
    width: calc(100% - 14px);
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    outline: none;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 7px;
}

.lc-range-labels { 
    display: flex; 
    justify-content: space-between; 
    font-size: 12px;
    margin-top: 21px;
    margin-bottom: 35px; 
}

.lc-range-labels span {
    color: #2656A0;
    font-size: 18px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
}

.lc-interest { 
    margin-top: 72px; 
    font-size: 22px;
    font-weight: 700 !important;
    font-family: 'Montserrat', sans-serif !important;
}

.lc-right {
    padding: 42px 63px 27px;
    border: 3px solid #C4C4C4;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    gap: 23px 0;
    align-items: center;
}

.lc-result {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 9px 0;
}

.lc-result span {
    font-size: 22px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    color: #848484;
}

.lc-result div {
    font-size: 35px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    color: #2656A0;
}

.lc-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 23px 0;
    margin-top: 16px;
}

.lc-btn { 
    width: 100%;
    padding: 31px 40px;
    cursor: pointer;
    background: linear-gradient(180deg, #004799 20%, #0077FF 100%);
    color: #fff;
    font-size: 25px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    border-radius: 15px;
    transition: all 300ms ease;
    border: 0;
}

.lc-btn:hover {
    background: linear-gradient(180deg, #0077FF 0%, #004799 80%);
}

.loan-calculator input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: white;
    border: 4px solid #007bff;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.loan-calculator input[type=range]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: white;
    border: 4px solid #007bff;
    border-radius: 50%;
    cursor: pointer;
}

.loan-calculator input[type=range]::-moz-range-track {
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
}

.loan-calculator input[type=range]::-webkit-slider-runnable-track {
    background: linear-gradient(to right, #2656A0 0%, #2656A0 var(--progress), #e0e0e0 var(--progress), #e0e0e0 100%);
    height: 8px;
    border-radius: 4px;
}

.loan-calculator input[type=range]:focus {
    outline: none;
}

/* Выставление переменной прогресса */
.loan-calculator input[type=range] {
    --progress: 50%;
}

/* Table Loan Calculator */
/* Модалка */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 37px;
    max-height: 90vh;
    overflow: auto;
    width: 60vw;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.modal-title {
    margin: 0 0 20px;
    font-size: 38px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    text-align: center;
    color: #2656A0;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Таблица */
.table-wrapper {
    overflow-x: auto;
    max-height: 70vh;
}

.payment-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    /* font-family: sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    min-width: 400px;
}

.payment-table thead th {
    padding: 21px 30px;
    text-align: center;
    font-size: 22px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    color: #000000;
    border: 3px solid #0000003B;
}

.payment-table thead th:first-child {
    border-radius: 20px 0 0 20px;
}

.payment-table thead th:last-child {
    border-radius: 0 20px 20px 0;
}

.payment-table tbody td {
    font-size: 22px;
    font-weight: 700 !important;
    /* font-family: "Days One", Sans-serif; */
    font-family: 'Montserrat', sans-serif !important;
    color: #383838;
    padding: 17px;
    text-align: center;
    white-space: nowrap;
}

.payment-table tbody {
    font-size: 14px;
}

.hfe-nav-menu a.active {
    color: #09BEEC!important;
}

/* Success Block */
.success-block {
    width: 100%;
    margin-top: 160px;
    margin-bottom: 100px;
    border-radius: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 50px;
    gap: 40px 0;
    background-color: #2656A0;
}

.success-block h2 {
    font-size: 38px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif !important;
    margin: 0;
    color: #FFFFFF;
}

.success-block p {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif !important;
    color: #FFFFFF;
    margin: 0;
}

.success-block a {
    width: fit-content;
    padding: 30px 109px;
    background-color: #FFFFFF;
    border-radius: 50px;
    color: #2656A0;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif !important;
    text-align: center;
    transition: all 300ms linear;
    border: 2px solid #2656A0;
}

.success-block a:hover {
    color: #FFFFFF;
    background-color: #2656A0;
    border-color: #FFFFFF;
}

/* Mobile Adaptation */

@media screen and (max-width: 1280px) {
    .banner-title {
        font-size: 40px!important;
    }

    .banner-desc {
        font-size: 20px!important;
    }

    .banner-btn {
        font-size: 20px;
        padding: 20px 38px;
    }

    /*  */
    .advantages-title {
        font-size: 30px!important;
    }

    .adv-card-title {
        font-size: 18px;
    }

    .adv-card-desc {
        font-size: 14px;
    }

    .adv-icon svg {
        width: 90px;
    }

    /*  */
    .services-title {
        font-size: 30px!important;
    }

    .service-tab {
        padding: 15px 14px 15px 20px;
    }

    .service-tab .service-name {
        font-size: 20px;
    }

    .service-text h3 {
        font-size: 22px;
    }

    .service-text p {
        font-size: 18px;
    }

    .service-detail .service-image {
        max-height: 438px;
    }

    /*  */
    .video-player-title {
        font-size: 30px;
    }

    .video-player-subtitle {
        font-size: 20px;
    }

    /*  */
    .lc-heading {
        font-size: 30px!important;
    }

    .ls-input > div:nth-of-type(1) label  {
        font-size: 16px;
    }

    .ls-input > div:nth-of-type(1) > div {
        font-size: 20px;
    }

    .lc-interest {
        font-size: 16px;
    }

    .lc-result span {
        font-size: 18px;
    }

    .lc-result div {
        font-size: 25px;
    }

    .lc-btn {
        padding: 21px 25px;
        font-size: 20px;
    }

    /*  */
    .statistic-title {
        font-size: 30px!important;
    }

    .statistic-subtitle {
        font-size: 20px!important;
    }

    .stat-icon svg {
        width: 64px;
    }

    .stat-card-title {
        font-size: 16px;
    }

    .statistic-row.top {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /*  */
    .faq-title {
        font-size: 40px!important;
    }

    .faq-question {
        padding: 16px 28px 16px 37px;
        font-size: 22px;
    }

    .faq-answer {
        font-size: 22px;
    }

    .faq-item.active .faq-answer {
        padding: 12px 28px 14px 37px;
    }

    /*  */
    .app-form-title {
        font-size: 40px!important;
    }

    .app-form-desc {
        font-size: 20px!important;
    }

    .app-form-form {
        padding: 23px 45px 5px;
    }

    .app-form-form form > div label {
        font-size: 18px;
    }

    .app-form-form form input {
        padding: 20px 25px;
        font-size: 16px;
    }

    .app-form-form .input-number .number-span {
        top: 27.5px;
        font-size: 16px;
    }

    .app-form-form form input[type="submit"] {
        font-size: 26px;
        padding: 24px 30px;
    }

    /*  */
    .sert-title {
        font-size: 40px!important;
    }

    .sert-slider-widget .swiper-slide img {
        max-height: 490px;
        min-height: 490px;
    }

    /*  */
    .banner-modal-content .input-number .number-span {
        top: 32.5px;
    }

    .banner-modal-content form h2 {
        font-size: 28px;
    }

    /*  */
    .payment-table thead th {
        padding: 16px 20px;
        font-size: 16px;
    }

    .payment-table tbody td {
        font-size: 14px;
    }

    .modal-title {
        font-size: 28px;
    }

    .modal-content {
        width: 75vw;
    }

    /*  */
    .icon-text-icon {
        width: 40px;
    }

    .icon-text-content {
        font-size: 16px!important;
    }

    /*  */
    footer a.elementor-icon.elementor-social-icon > svg {
        width: 32px;
        height: auto;
    }

    footer .elementor-social-icons-wrapper.elementor-grid {
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width:1024px) {
    .header-right .hfe-menu-item, .header-right .hfe-sub-menu-item {
        font-size: 14px !important;
    }

    .header-right .menu-item-object-language_switcher .trp-flag-image {
        width: 15px;
    }

    .header-menu a {
        padding-left: 14px!important;
        padding-right: 14px!important;
        font-size: 12px!important;
    }

    .icon-text-icon svg {
        width: 30px;
        height: auto;
    }
    
    .icon-text-content {
        font-size: 14px!important;
    }

    footer .footer-top {
        padding: 25px 0 28px;
    }

    footer .footer-bottom {
        padding: 29px 0 18px;
    }

    /*  */
    .banner-slider-wrap {
        padding: 84px 0 16px;
        flex-direction: column;
        gap: 34px 0;
    }

    .banner-left, .banner-right {
        width: 100%;
    }

    .banner-title {
        font-size: 30px!important;
    }

    .banner-desc {
        font-size: 18px!important;
    }

    .banner-left {
        gap: 28px 0;
    }

    .banner-btn {
        font-size: 18px;
        padding: 16px 28px;
    }

    .banner-right img {
        width: 80%;
    }

    .swiper-slide {
        display: flex!important;
        justify-content: center;
    }

    /*  */
    .advantages-box {
        padding: 30px 0 55px;
    }

    .advantages-box .container {
        gap: 24px 0;
    }

    .adv-icon svg {
        width: 60px;
    }

    .adv-card {
        padding: 16px 20px 20px;
        gap: 10px 0;
    }

    .adv-card-title {
        font-size: 16px;
    }

    .adv-card-desc {
        font-size: 12px;
    }

    /*  */
    .services-container {
        padding: 34px 0 50px;
    }

    .services-container .container {
        gap: 28px 0;
    }

    .services-inner {
        display: flex;
        flex-direction: column-reverse;
    }

    .services-content {
        max-height: 350px;
    }

    .service-detail .service-image {
        max-height: 350px;
    }

    .service-text {
        padding: 18px 20px;
    }

    .service-text h3 {
        font-size: 20px;
    }

    .service-text p {
        font-size: 16px;
    }

    .services-list {
        padding: 20px;
        gap: 14px;
    }

    .service-tab {
        padding: 12px 11px 12px 15px;
    }

    .service-tab > div {
        gap: 0 12px;
    }

    .service-tab .service-step {
        font-size: 20px;
    }

    .service-tab .service-name {
        font-size: 16px;
    }

    .service-tab .service-arrow {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
    }

    .service-tab .service-arrow svg {
        width: 18px;
        height: auto;
    }

    /*  */
    .video-player-container {
        padding: 0 0 26px;
    }

    .video-player-subtitle {
        margin: 0 0 20px;
    }

    .video-play-button {
        width: 64px;
        height: 64px;
    }

    .video-play-button svg {
        width: 55px;
        height: auto;
    }

    .video-wrapper, .video-placeholder {
        min-height: 350px;
        max-height: 350px;
    }

    /*  */
    .loan-container {
        padding: 32px 0 18px;
    }

    .lc-heading {
        margin-bottom: 32px;
    }

    .lc-body {
        padding: 27px 20px 23px;
        gap: 30px 0;
        grid-template-columns: 1fr;
    }

    .lc-range-labels {
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .lc-range-labels span {
        font-size: 14px;
    }

    .lc-interest {
        margin-top: 32px;
    }

    .lc-right {
        padding: 22px 63px 17px;
        gap: 13px 0;
    }

    .lc-buttons {
        gap: 13px 0;
    }

    .lc-btn {
        padding: 16px 25px;
        font-size: 16px;
    }

    /*  */
    .modal-content {
        padding: 20px;
        width: 85vw;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-close svg {
        width: 18px;
        height: auto;
    }

    .payment-table thead th {
        padding: 10px 14px;
        font-size: 14px;
    }

    .payment-table tbody td {
        font-size: 12px;
    }

    /*  */
    .banner-modal-content {
        padding: 20px 23px 10px;
        max-width: 80vw;
    }

    .app-form-form form > div label {
        font-size: 16px;
    }

    .banner-modal-content form h2 {
        font-size: 22px;
    }

    .banner-modal-content form {
        gap: 10px 0;
    }

    .app-form-form form input {
        padding: 12px 20px;
        font-size: 12px;
    }

    .banner-modal-content .input-number .number-span {
        top: 20.5px;
    }

    .banner-modal-content .input-number .number-span::before {
        height: 44px;
    }

    .app-form-form form input[type="submit"] {
        font-size: 20px;
        padding: 14px 20px;
    }

    .banner-close svg {
        width: 18px;
        height: auto;
    }

    /*  */
    .statistic-container {
        padding: 25px 0 27px;
    }

    .statistic-container .container {
        gap: 19px 0;
    }

    .statistic-subtitle {
        margin: 0 0 10px;
    }

    .stat-card {
        padding: 14px;
    }

    .stat-icon svg {
        width: 44px;
    }

    .stat-card-title {
        font-size: 13px;
    }

    /*  */
    .faq-container {
        padding: 26px 0 29px;
    }

    .faq-title {
        margin: 0 0 21px;
    }

    .faq-question {
        padding: 12px 18px 12px 27px;
        font-size: 16px;
    }

    .faq-answer {
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 12px 18px 14px 27px;
    }

    .faq-toggle-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        max-width: 32px;
    }

    .faq-toggle-icon svg {
        width: 20px;
        height: auto;
    }

    .faq-list {
        gap: 12px 0;
    }

    /*  */
    .app-form-box {
        padding: 27px 0 27px;
    }

    .app-form-box .container {
        gap: 19px 0;
    }

    .app-form-form {
        padding: 20px 25px 5px;
    }

    .app-form-form form {
        gap: 15px 0;
    }

    .app-form-form .input-number .number-span::before {
        height: 44px;
    }

    .app-form-form .input-number .number-span {
        top: 20.5px;
        font-size: 12px;
    }

    /*  */
    .sert-slider-widget {
        padding: 26px 0 10px;
    }

    .sert-slider-widget .container {
        gap: 40px 0;
    }

    .sert-slider-widget .swiper-slide img {
        max-height: 450px;
        min-height: 450px;
    }
}

@media screen and (max-width:768px) {
    .header-menu {
        display: none!important;
    }

    .header-right .header-menu {
        display: flex!important;
    }

    /*  */
    footer a.elementor-icon.elementor-social-icon > svg {
        width: 24px;
    }

    /*  */
    .statistic-row.top {
        grid-template-columns: repeat(2, 1fr);
    }

    .statistic-row.bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width:540px) {
    .icon-text-wrapper {
        justify-content: center;
    }

    .icon-text-icon svg {
        width: 30px;
    }

    header .hfe-retina-img {
        width: 48px;
    }

    /*  */
    .banner-left {
        gap: 14px 0;
    }

    .banner-title {
        font-size: 20px !important;
        padding-left: 10px;
    }

    .banner-desc {
        font-size: 12px !important;
        padding-left: 10px;
    }

    .banner-btn {
        font-size: 12px;
        padding: 10px 18px;
    }

    /*  */
    .advantages-title {
        font-size: 20px !important;
        padding-left: 10px;
    }

    .advantages-row {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .advantages-row > div:not(:last-child) {
        border-width: 0 0 1px 0;
    }

    .advantages-row > div:nth-of-type(1) {
        border-radius: 20px 20px 0 0;
    }

    .advantages-row > div:nth-of-type(3) {
        border-radius: 0 0 20px 20px;
    }

    /*  */
    .services-title {
        font-size: 20px !important;
        padding-left: 10px;
    }

    .service-detail .service-image, .services-content {
        max-height: 250px;
        min-height: 250px;
    }

    .service-text h3 {
        font-size: 18px;
    }

    .service-text p {
        font-size: 12px;
    }

    .service-tab .service-step {
        font-size: 16px;
    }

    .service-tab .service-name {
        font-size: 14px;
    }

    .service-tab {
        padding: 6px 7px 6px 9px;
    }

    /*  */

    .video-player-title {
        padding-left: 10px;
        font-size: 20px;
    }

    .video-player-subtitle {
        font-size: 14px;
        padding-left: 10px;
    }

    .video-play-button svg {
        width: 35px;
    }

    .video-play-button {
        width: 40px;
        height: 40px;
    }

    .video-wrapper, .video-placeholder {
        min-height: 250px;
        max-height: 250px;
    }

    /*  */
    .lc-heading {
        font-size: 20px !important;
        padding-left: 10px;
    }

    .ls-input > div:nth-of-type(1) label {
        font-size: 14px;
    }

    .ls-input > div:nth-of-type(1) > div {
        font-size: 16px;
    }

    .lc-range-labels span {
        font-size: 12px;
    }

    .lc-interest {
        font-size: 14px;
    }

    .lc-result span {
        font-size: 14px;
    }

    .lc-result div {
        font-size: 20px;
    }

    .lc-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /*  */

    .statistic-title {
        padding-left: 10px;
        font-size: 20px!important;
    }

    .statistic-subtitle {
        padding-left: 10px;
        font-size: 14px!important;
    }

    /* .stat-card {
        flex: 1 1 100%;
    }

    .statistic-row > div:not(:last-child) {
        border-width: 0 0 1px 0;
    }

    .statistic-row > div:nth-of-type(1) {
        border-radius: 20px 20px 0 0;
    }

    .statistic-row > div:nth-last-of-type(1) {
        border-radius: 0 0 20px 20px;
    } */

    /*  */

    .faq-title {
        padding-left: 10px;
        font-size: 25px!important;
    }

    .faq-question {
        font-size: 14px;
        padding: 6px 12px 6px 17px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 6px 12px 8px 17px;
    }

    /*  */
    .app-form-title {
        padding-left: 10px;
        font-size: 25px!important;
    }

    .app-form-desc {
        padding-left: 10px;
        font-size: 14px!important;
    }

    /*  */
    .sert-title {
        padding-left: 10px;
        font-size: 25px!important;
    }

    .sert-slider-widget .container {
        gap: 20px 0;
    }

    .sert-slider-widget .swiper-container-wrapper {
        padding: 0 50px 35px;
    }

    /*  */
    .modal-title {
        font-size: 20px;
    }

    .payment-table thead th {
        font-size: 12px;
    }

    .payment-table tbody td {
        font-size: 10px;
    }

    .modal-close svg {
        width: 14px;
    }

    /*  */

    .banner-modal-content form h2 {
        font-size: 16px;
    }

    .banner-close svg {
        width: 14px;
    }

    .banner-modal-content form > p {
        margin-top: 0;
    }

    .app-form-form .input-number .number-span {
        top: 21px;
    }
}

@media screen and (max-width:431px) {
    .app-form-form form input {
        padding: 12px 10px;
        font-size: 10px;
    }

    .app-form-form form > div label {
        font-size: 14px;
    }

    .app-form-form .input-number .number-span::before {
        height: 40px;
    }

    .app-form-form .input-number input {
        padding-left: 105px;
    }

    .app-form-form .input-number .number-span {
        top: 22px;
    }

    .banner-modal-content .input-number .number-span {
        top: 21px;
    }

    /*  */
    .success-block {
        padding: 30px;
    }
    
    /*  */

    .lc-right {
        padding: 22px 20px 17px;
    }
    
    /*  */
    .statistic-row.top, .statistic-row.bottom {
        grid-template-columns: 1fr;
    }
}