/* @font-face {
  font-family: 'Days One Regular';
  src: url('./DaysOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Pro';
  src: url('./GOTHAMPRO-MEDIUM.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');

body {
    margin: 0;
}

/* Header and Footer */

header {
    padding: 18px 0;
    box-shadow: 0 5px 30px rgba(0, 22, 84, 0.1);
    -webkit-box-shadow: 0 5px 30px rgba(0, 22, 84, 0.1);
    position: relative;
    z-index: 10;
    background: white;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    width: 58px;
    height: auto;
}

.header-tel {
    background-color: #2656A0;
    /* font-family: "Days One Regular", sans-serif; */
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    transition-duration: 300ms;
    border-radius: 20px 20px 20px 20px;
    padding: 9px 27px 9px 27px;
    color: #fff;
    text-decoration: none;
}

.header-tel:hover {
    background-color: #5A8ADE;
}

.footer {
    background: #2656A0;
    border-radius: 25px 25px 0 0;
}

.footer-top {
    padding: 55px 0 58px;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #FFFFFF;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 20px;
}

.footer-top > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px 0;
}

.footer-top h4 {
    /* font-family: "Days One Regular", sans-serif; */
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.footer-icon-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 12px;
}

.footer-icon-block svg {
    width: 65px;
    height: auto;
}

.footer-icon-block a, .footer-icon-block p {
    /* font-family: "Days One Regular", sans-serif; */
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 36px;
    color: #FFFFFF;
    text-decoration: none;
    margin: 0;
}

.footer-socials-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 25px;
}

.footer-socials-block a {
    background: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    transition: 200ms linear;
}

.footer-socials-block a:hover {
    background: #6091D2;
}

.footer-socials-block svg {
    width: auto;
    height: 21px;
    fill: #004299;
}

.footer-bottom {
    padding: 59px 0 38px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px 0;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 400;
    /* font-family: 'Gotham Pro', sans-serif; */
    font-family: 'Montserrat', sans-serif;
    line-height: 18px;
    color: #FFFFFF;
    margin: 0;
}

/* Container */

.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;
    }
}

/*  */

section {
    /* font-family: 'Gotham Pro', sans-serif; */
    font-family: 'Montserrat', sans-serif;
}

/* Banner Section */

.banner {
    background-image: url('./img/banner-background.png');
    background-position: center;
    background-size: cover;
    box-shadow: 0 5px 30px rgba(0, 22, 84, 0.1);
    -webkit-box-shadow: 0 5px 30px rgba(0, 22, 84, 0.1);
}

.banner .container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.banner h1 {
    font-size: 36px;
    font-weight: 600;
    /* font-family: "Days One Regular", sans-serif; */
    font-family: 'Montserrat', sans-serif;
    color: white;
}

/* Free / Vip Form */

#selection-block, #content > .vip, #content > .free {
	margin: 0 10%;
    background: rgb(243 240 240 / 90%);
    padding: 25px 75px;
}

#content > .vip {
	margin: 150px 10%;
}

.loan-selection-calculator.active {
	margin: 50px 0;
}

#selection-block button {
	padding: 10px 0;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 20px;
	background: #2656A0;
    border-color: #2656A0;
    margin-top: 0.6rem;
	color: #ffffff;
    border: 2px solid transparent;
    width: 100%;
    transition: all 300ms ease;
}

#selection-block button:hover {
    background: #5A8ADE;
    border-color: #5A8ADE;
}

#selection-block > h2,
.vip > h2,
.free > h2 {
	text-align: center;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.vip ul,
.free ul {
	text-align: left;
    font-size: 18px;
    list-style: decimal;
	margin-bottom: 30px;
}

.vip > div,
.free > div {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 12px;
	font-size: 18px;
}

.free > div > input {
	width: 16px;
	height: 16px;
}

.vip > div label,
.free > div label {
	margin-bottom: 0;
	line-height: 1;
}

.vip button,
.free button {
	padding: 10px 0;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 20px;
	background: #2656A0;
    border-color: #2656A0;
    margin-top: 0.6rem;
	color: #ffffff;
    border: 2px solid transparent;
    width: 100%;
}

#selection-block button {
    margin: 10px;
    padding: 10px 20px;
}

/* Free/Vip New Form */

.loan-selection-calculator table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
	border: 0!important;
}

.loan-selection-calculator table th,
.loan-selection-calculator table td {
    border: 1px solid #ddd!important;
    padding: 10px;
    text-align: center;
}

.loan-selection-calculator thead {
    color: #fff;
}

.loan-selection-calculator td {
    font-size: 18px;
}

.loan-selection-calculator td:first-child {
    text-align: left;
}

.loan-selection-calculator .vip-btn {
    display: flex;
    align-items: flex-start;
    gap: 0 5px;
}

.loan-selection-calculator .vip-btn>div:nth-of-type(1) {
    font-size: 50px;
    line-height: 1;
}

.loan-selection-calculator .vip-btn>div:nth-of-type(2) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.loan-selection-calculator .vip-btn>div>span:nth-last-of-type(1) {
    font-size: 13px;
}

.loan-selection-calculator .info-box {
    background-color: #eef5ff;
    padding: 15px;
    margin-top: 20px;
    border-left: 5px solid #00a8a8!important;
}

.loan-selection-calculator .info-box p {
    margin: 0;
}

.loan-selection-calculator thead tr>th:nth-last-of-type(1),
.loan-selection-calculator thead tr>th:nth-last-of-type(2) {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 15px 15px 0 0;
	color: #fff;
}

.loan-selection-calculator thead tr>th:nth-last-of-type(1) {
    background: #019939;
}

.loan-selection-calculator thead tr>th:nth-last-of-type(2) {
    background: #989898;
}

.loan-selection-calculator tbody tr>td:nth-last-of-type(1),
.loan-selection-calculator tbody tr>td:nth-last-of-type(2) {
    background: linear-gradient(180deg, rgba(233, 236, 242, 1) 0%, rgba(255, 255, 255, 1) 75%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loan-selection-calculator tbody tr:nth-last-of-type(1)>td:nth-last-of-type(1),
.loan-selection-calculator tbody tr:nth-last-of-type(1)>td:nth-last-of-type(2) {
    border-radius: 0 0 15px 15px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.loan-selection-calculator tbody tr:nth-last-of-type(1)>td:nth-last-of-type(1) button,
.loan-selection-calculator tbody tr:nth-last-of-type(1)>td:nth-last-of-type(2) button {
    color: #fff;
    font-size: 25px;
    text-transform: uppercase;
    font-stretch: condensed;
    padding: 0!important;
    outline: none!important;
    border: 0!important;
	background: none!important;
	font-weight: 500!important;
}

.loan-selection-calculator tbody tr:nth-last-of-type(1)>td:nth-last-of-type(1),
.loan-selection-calculator tbody tr:nth-last-of-type(1)>td:nth-last-of-type(1) button {
    background: #019939;
    gap: 0 10px;
}

.loan-selection-calculator tbody tr:nth-last-of-type(1)>td:nth-last-of-type(2),
.loan-selection-calculator tbody tr:nth-last-of-type(1)>td:nth-last-of-type(2) button {
    background: #989898;
}

.loan-selection-calculator thead tr>th,
.loan-selection-calculator tbody tr>td {
    border-width: 0!important;
}

.loan-selection-calculator tbody tr:nth-of-type(1)>td:nth-of-type(1) {
    border-radius: 15px 0 0 0;
}

.loan-selection-calculator tbody tr:nth-last-of-type(2)>td:nth-of-type(1) {
    border-radius: 0 0 0 15px;
}

.loan-selection-calculator tbody tr>td:nth-of-type(1) {
    background-color: #2656A0;
    color: #fff;
    border-width: 0 0 1px 0!important;
    border-color: #fff!important;
    border-style: solid!important;
    padding: 20px 20px 20px 20px;
    text-transform: uppercase;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.loan-selection-calculator .free-vip-table tbody tr>td:nth-of-type(1) img {
    width: 10px;
    height: auto;
}

.loan-selection-calculator .free-vip-table tbody tr>td:nth-last-of-type(1) img,
.loan-selection-calculator .free-vip-table tbody tr>td:nth-last-of-type(2) img {
    width: 32px;
    height: auto;
}

.loan-selection-calculator tbody tr:nth-last-of-type(1)>td:nth-of-type(1) {
    background: none;
    border-width: 0!important;
}

.loan-selection-calculator tbody tr,
.loan-selection-calculator thead tr {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.loan-selection-calculator #vipButton {
    display: flex;
    align-items: center;
	justify-content: center;
}

#selection-block {
	background: none!important;
    padding: 0!important;
	margin: 0!important;
}

.loan-selection-calculator.active {
	background-image: url('./img/background.png');
    background-size: cover;
}

.loan-selection-calculator .vip > div > img {
	width: 100px;
	height: auto;
}

.loan-selection-calculator .vip > div:nth-of-type(1) {
	padding: 20px 15px;
    border-radius: 15px;
    background: #fff;
    margin-bottom: 30px;
}

/* ToolTip */

.free-vip-table td[data-tooltip] {
    position: relative;
    cursor: pointer;
}

/* Скрытый tooltip */
.free-vip-table td[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 91%; /* Тултип находится на 100% выше ячейки */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    font-size: 12px;
    z-index: 10;
    width: 100%;
    max-width: 350px;
    white-space: pre-wrap;
}

/* Треугольник */
.free-vip-table td[data-tooltip]::before {
    content: "";
    position: absolute;
    top: 6px; /* Треугольник начинается сразу под тултипом */
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent; /* Повернутый треугольник */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 9; /* Чтобы треугольник находился под тултипом */
}

/* Отображение tooltip при наведении */
.free-vip-table td[data-tooltip]:hover::after,
.free-vip-table td[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Calculator Credit */

.swiper {
    padding: 30px!important;
    /* width: 100%; */
    height: 100%;
}

.slider {
    padding: 40px 0;
}

.slider-container {
    padding: 20px 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px 4px rgba(34, 60, 80, 0.4);
    position: relative;
}

/* .swiper-wrapper {
    gap: 0 25px;
} */

.swiper-slide {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s;
    /* margin-right: 0!important; */
}

.swiper-slide:hover {
    transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
    color: white!important;
    background-color: #2656A0!important;
    border-radius: 50%!important;
    padding: 15px!important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3)!important;
    position: absolute!important;
    top: 50%!important;
    transform: translateY(-50%)!important;
    z-index: 10!important;
    cursor: pointer!important;
    width: 10px!important;
    height: 10px!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    margin-top: 0!important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 12px!important;
}

.swiper-button-next {
    right: 0!important;
}

.swiper-button-prev {
    left: 0!important;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    box-shadow: 4px 4px 8px 6px rgba(34, 60, 80, 0.2);
}

.swiper-slide.active-slide {
    box-shadow: 0 0 8px 6px rgba(35, 129, 201, 0.2);
}

.swiper-slide img {
    width: auto;
    height: 80px!important;
}

.swiper-slide > div:nth-of-type(1) {
    padding: 25px 0;
}

.swiper-slide > div:nth-of-type(2) {
    background: #2656A0;
    color: white;
    border-radius: 0 0 10px 10px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    padding: 10px;
}

.swiper-slide.active-slide > div:nth-of-type(2) {
    background: #fff;
	color: #2656A0;
	border: 1px solid #2656A0;
}

/* Content */

.loan-selection-calculator {
	height: 100%;
	padding: 25px 0;
	position: relative;
	/* display: none; */
}

.content {
    padding: 20px 80px;
}

.content-header h2 {
    font-weight: 900!important;
    margin-bottom: 25px;
    font-size: 24px;
    text-transform: uppercase;
	color: #000!important;
}

.content-header h2 span {
    font-weight: bold!important;
    font-size: 18px;
}

.content-header p {
    font-weight: 600!important;
    font-size: 18px;
	color: #000!important;
}

.content-info {
    margin-bottom: 30px;
}

.content-info h3 {
    font-weight: 800!important;
    font-size: 18px;
    text-transform: uppercase;
}

.content-info ul {
    list-style: none;
    padding: 0;
}

.content-info li {
    margin-bottom: 5px;
	color: #000!important;
	font-weight: normal !important;
}

.content-info span {
    font-weight: 600!important;
}

.content-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 50px;
    gap: 0 30px;
}

.content-cards img {
    width: auto;
    height: 50px!important;
}

.content-cards > div {
    display: grid;
    grid-template-columns: 0.2fr 0.8fr;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.content-cards > div > div:nth-of-type(1) {
    background: #2656A0;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-cards > div > div:nth-of-type(2) {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 10px 10px 10px 25px;
    gap: 5px 0;
}

.content-cards > div > div:nth-of-type(2) h6 {
    font-size: 18px;
    font-weight: 900!important;
    text-align: left;
    text-transform: uppercase;
    margin: 0;
	color: #000!important;
}

.content-cards > div > div:nth-of-type(2) p {
    margin: 0;
    font-size: 14px;
    font-weight: 700!important;
    text-transform: uppercase;
	color: #000!important;
}

/* Calculator */

.calculator {
    padding: 40px 0;
}

.calculator > div {
    padding: 35px 30px 50px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: rgba(34, 60, 80, 0.4) 0 0 10px 4px;
    display: grid;
    grid-template-columns: 0.55fr 0.45fr;
    gap: 0 100px;
}

.calculator-input h3 {
    font-size: 38px;
    font-weight: 600!important;
    margin: 0 0 40px;
	color: #000!important;
}

.calculator-input > div:nth-last-of-type(2) {
    margin-bottom: 20px;
}

.calculator-input > div label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600!important;
	color: #000!important;
}

.calculator-input > div > div {
    position: relative;
}

.calculate {
    padding: 15px 25px;
    border-radius: 5px 5px 5px 5px;
    border: 1px solid #ddd9d9;
    margin-top: 2px;
    font-weight: 600;
	color: #000;
	min-height: 30px;
}

.range-input {
    width: 100%;
    margin: 0;
    position: absolute;
    bottom: -3px;
}

.range {
    display: flex;
    justify-content: space-between;
}

.range p {
    color: #afafaf;
}

.calculator-input > div:nth-last-of-type(1) {
    display: flex;
    gap: 0 20px;
    align-items: center;
}

.calculator-input > div:nth-last-of-type(1) img {
    width: 45px;
    height: fit-content;
}

.calculator-input > div:nth-last-of-type(1) p {
    margin: 0;
    font-weight: 600!important;
}

.calculator-output {
    border-radius: 30px;
    box-shadow: 4px 4px 8px 6px rgba(34, 60, 80, 0.2);
    background: #f4f4f4;
    margin: 50px 0 10px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.calculator-output p {
    font-size: 24px;
    font-weight: bold!important;
    margin: 20px 0 0;
    color: black;
}

.calculator-output > div {
    display: flex;
    justify-content: center;
}

#monthly-payment {
    font-size: 40px;
    font-weight: bold!important;
    color: #2656A0;
}

.calculator-output button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #2656A0;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-weight: 600;
}

.calculator-output button:hover {
    background-color: #5A8ADE;
}

#backButton {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 15px;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    border: none;
    background: #2656A0;
}

#back2Top {
    color: #fff; /* Цвет текста */
    border: none; /* Убираем границу */
    transition: background-color 0.3s ease, color 0.3s ease; /* Плавный переход */
    cursor: pointer; /* Указатель мыши при наведении */
    border-radius: 14px !important;
}

#back2Top:hover {
    background-color: #fff; /* Цвет кнопки при наведении */
    color: #5A8ADE; /* Цвет текста при наведении */
}

#back2Top:active {
    background-color: #fff; /* Цвет кнопки при нажатии */
    color: #5A8ADE; /* Цвет текста при нажатии */
}


.footer-links {
    text-decoration: none; /* Убираем стандартное подчеркивание */
    position: relative; /* Для позиционирования псевдоэлемента */
    color: inherit; /* Цвет текста, наследуемый от родителя */
}

/* Loan Calculator */

.loan-selection-calculator {
	height: 100%;
	padding: 25px 0;
	position: relative;
	/* display: none; */
}

.loan-selection-calculator form {
	margin: 50px 10%;
	background: rgb(243 240 240 / 90%);
	padding: 25px 75px;
    /* font-family: "Days One Regular", sans-serif; */
    font-family: 'Montserrat', sans-serif;
}

.loan-selection-calculator form h2 {
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 25px;
}

.loan-selection-calculator form p > label {
	color: #000;
	font-size: 14px;
	text-transform: uppercase;
	padding-left: 5px;
}

.loan-selection-calculator form input,
.loan-selection-calculator form select {
	border-radius: 12px;
	line-height: 58px;
	font-size: 16px;
	font-weight: 700;
    /* font-family: "Gotham Pro", sans-serif; */
    font-family: 'Montserrat', sans-serif;
}

.loan-selection-calculator form select {
	background-image: none;
}


.loan-selection-calculator form .form_row > div > p {
	position: relative;
}

.loan-selection-calculator form .form_row.select > div > p::after {
	content: '';
	background: url('/wp-content/uploads/2024/07/triangle-svgrepo-com-1.svg') no-repeat center center;
	background-size: 18px;
	position: absolute;
    right: 25px;
    top: 30px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.loan-selection-calculator form .form_row > div > p.open::after {
	transform: translateY(-50%) rotate(90deg);
}

.loan-selection-calculator form .form_row input {
	width: 100%;
    padding: 0 20px;
    border: 1px solid #e5e7ec;
    background-color: #FFFFFF !important;
    background: transparent;
    box-sizing: border-box;
}

.loan-selection-calculator form .form_row input::placeholder {
	color: #000;
}

.loan-selection-calculator .form_row > p,
.loan-selection-calculator .form_row > p label {
	margin-bottom: 0;
}

.loan-selection-calculator .form_row > div {
    position: relative;
}

.loan-selection-calculator .form_row.month > div input {
	padding: 0 20px 0 40px;
}

.loan-selection-calculator .form_row.month > div span:nth-last-of-type(1) {
	position: absolute;
    top: 30px;
    transform: translateY(-50%);
    left: 85px;
	color: #000;
    font-size: 16px;
    padding-left: 20px;
    border-left: 2px solid #000;
}


.loan-selection-calculator .form_row.tel > div input {
	padding: 0 20px 0 105px;
}

.loan-selection-calculator .form_row.tel > div span:nth-last-of-type(1) {
	position: absolute;
    top: 30px;
    transform: translateY(-50%);
    left: 20px;
    font-size: 20px;
    padding-right: 20px;
    border-right: 2px solid #000;
	color: #000;
}

.loan-selection-calculator form > p:nth-last-of-type(1){
	margin-top: 40px;
}

.loan-selection-calculator form > p:nth-last-of-type(1) input{
	padding: 10px 0;
	text-transform: uppercase;
    font-weight: 800;
    font-size: 20px;
}

/* for chrome */
.loan-selection-calculator form input[type=number]::-webkit-inner-spin-button,
.loan-selection-calculator form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* for mozilla */  
.loan-selection-calculator form input[type=number]{
    -moz-appearance: textfield;
}

.loan-selection-calculator form input, .loan-selection-calculator form select {
    border-radius: 12px;
    line-height: 58px;
    font-size: 16px;
    font-weight: 700;
}


.tezpul-form form > button {
    border-radius: 0.4rem;
    padding: 20px 0;
    background: #2656a0;
    border-color: #2656a0;
    margin-top: 0.6rem;
    font-size: 1em;
    color: #ffffff;
    border: 2px solid transparent;
    width: 100%;
    text-transform: uppercase;
    font-weight: 800;
    /* font-family: "Days One Regular", sans-serif; */
    font-family: 'Montserrat', sans-serif;
    transition: all 300ms ease;
}

.tezpul-form form > button:hover {
    background: #5A8ADE;
    border-color: #5A8ADE;
}

select {
    position: relative;
    width: 100%;
    padding: 0px 20px;
    border: 1px solid #e5e7ec;
    background-color: #FFFFFF !important;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: 14px;
    height: unset;
}

p, span, label, a, li {
    font-weight: 600!important;
}

h2, h3, h4 {
    font-weight: 800 !important;
}

h2 {
    line-height: 36px;
    font-size: 30px;
}

.form_row {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-row > label {
    margin-bottom: 3px;
}

/* Tarifs */
.tariff-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 100px;
    padding: 20px 0;
}

.tariff-container > div {
    border-radius: 30px;
    position: relative;
    padding-top: 103px;
    display: flex;
    flex-direction: column;
}

.tariff-container .tariff-title {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 44px;
    font-size: 36px;
    font-weight: 700;
    /* font-family: "Days One Regular", sans-serif; */
    font-family: 'Montserrat', sans-serif;
    color: #2656A0;
    text-transform: uppercase;
    padding: 18px 57px;
    border-radius: 30px;
    box-shadow: 0 4px 4px 0 #00000040;
    background: #fff;
}

.tariff-container .tariff-free {
    background: linear-gradient(90deg, #3A6C97 3.86%, #88D5F2 24.51%, #F6FDFF 50.49%, #89D6F2 78.7%, #3B6D98 99.35%);
}

.tariff-container .tariff-pro {
    background: linear-gradient(270deg, #B8C9D3 5.87%, #C8D4DA 26.47%, #FAFBFC 48.73%, #E3E9EE 63.57%, #D6DFE6 80.05%, #AEC0CE 95.71%);
}

.tariff-container .tariff-vip {
    background: linear-gradient(270deg, #E3A455 16.35%, #F6DBA6 36.06%, #FFEBC4 54.33%, #F0BE79 68.75%, #BA7F3B 88.46%);
}

.tariff-container .tariff-content {
    padding: 46px 27px 30px;
    background: #fff;
    box-shadow: 0 4px 30px 0 #258AFF80;
    border-radius: 30px;
    flex-grow: 1;
}

.tariff-sum {
    margin: 0;
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    /* font-family: "Days One Regular", sans-serif; */
    font-family: 'Montserrat', sans-serif;
    color: #2656A0;
}

.tariff-questions {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    padding: 36px 0 10px;
}

.tariff-questions > div {
    display: flex;
    justify-content: space-between;
    gap: 0 5px;
    align-items: center;
}

.tariff-questions > div p {
    width: 100%;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 400;
    /* font-family: "Days One Regular", sans-serif; */
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    margin: 0;
}

.tariff-questions .true p {
    color: #2656A0;
}

.tariff-questions .false p {
    color: #ADB0B3;
}

.tariff-questions .tariff-button {
    padding: 10px 18px;
    text-align: center;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 400;
    /* font-family: "Days One Regular", sans-serif; */
    font-family: 'Montserrat', sans-serif;
    border-radius: 10px;
    background-color: #26981A;
    outline: none;
    border: none;
    color: white;
    transition: 200ms all linear;
    cursor: pointer;
}

.tariff-questions .tariff-button:hover {
    background-color: #5cd54f;
}

.tariff-questions .tooltip-container {
    position: relative;
}

.tariff-questions .tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 14px;
    pointer-events: none;
    white-space: normal;
    max-width: 250px;
    display: none;
    z-index: 1000;
    text-align: center;
}

.tooltip-image {
    cursor: help;
}

/* Services Top/Bottom */
.services-top h3 {
    font-size: 32px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding-top: 50px;
}

.services-top > div {
    padding: 41px 61px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 50px;
}

.services-top .services-top-card {
    display: flex;
    gap: 0 25px;
    align-items: center;
}

.services-top-card img {
    width: auto;
    height: 63px;
}

.services-top-card p {
    color: #2656A0;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.services-bottom h3 {
    font-size: 32px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 25px;
    padding-top: 50px;
}

.services-bottom > div {
    padding: 35px 52px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 50px;
    background: #2656A0;
    margin-bottom: 50px;
    border-radius: 30px;
}

.services-bottom .services-bottom-card {
    display: flex;
    gap: 0 25px;
    align-items: center;
}

.services-bottom img {
    width: auto;
    height: 63px;
}

.services-bottom p {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

/* Mobile Adaptation */

@media screen and (max-width:1560px) {
    .tariff-container {
        gap: 0 20px;
    }

    .swiper-slide > div:nth-of-type(2) {
        font-size: 16px;
    }
}

@media screen and (max-width:1280px) {
    .tariff-container .tariff-title {
        font-size: 30px;
    }

    .tariff-sum {
        font-size: 26px;
    }

    .tariff-questions > div p {
        font-size: 14px;
    }

    .tariff-questions {
        gap: 15px 0;
    }

    .tooltip-container img {
        width: 15px;
        height: 15px;
    }

    .tariff-questions .tariff-button {
        font-size: 20px;
    }

    .swiper-slide > div:nth-of-type(2) {
        font-size: 14px;
    }

    .services-top > div {
        padding: 41px 0;
    }

    .services-top-card p {
        font-size: 16px;
    }

    .services-bottom p {
        font-size: 16px;
    }
}

@media screen and (max-width:1199px) {
    .tariff-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-top > div {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 50px;
    }

    .services-bottom > div {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 50px;
    }
}

@media screen and (max-width:1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px 0;
    }

    .footer-top > div {
        gap: 15px 0;
    }

    .footer-top h4 {
        font-size: 24px;
    }

    .footer-icon-block svg {
        width: 45px;
    }

    .footer-icon-block a, .footer-icon-block p {
        font-size: 18px;
    }

    /*  */
}

@media screen and (max-width:800px) {
    .tariff-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width:768px) {
    .services-top > div {
        grid-template-columns: 1fr;
    }

    .services-bottom > div {
        grid-template-columns: 1fr;
    }

    .services-bottom img {
        height: 43px;
    }
}

@media screen and (max-width:540px) {
    .header-logo {
        width: 40px;
    }

    .header-tel {
        font-size: 14px;
    }

    header {
        padding: 12px 0;
    }

    .footer-top {
        padding: 35px 0 38px;
        gap: 30px 0;
    }

    .footer-top h4 {
        font-size: 22px;
    }

    .footer-icon-block svg {
        width: 35px;
    }

    .footer-icon-block a, .footer-icon-block p {
        font-size: 14px;
        line-height: normal;
    }

    .footer-socials-block svg {
        height: 15px;
    }

    .footer-socials-block a {
        width: 32px;
        height: 32px;
    }

    .footer-bottom {
        padding: 39px 0 28px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /*  */

    .tariff-container {
        padding: 20px 10px;
    }

    .services-top > div {
        padding: 41px 20px;
    }

    .services-top-card img {
        height: 43px;
    }

    .services-top-card p {
        font-size: 14px;
    }

    .services-bottom p {
        font-size: 14px;
    }

    .services-bottom img {
        height: 33px;
    }

    .services-top h3 {
        font-size: 24px;
    }

    .services-bottom h3 {
        font-size: 24px;
    }

    .services-bottom > div {
        padding: 35px 22px;
    }
}

@media screen and (max-width:440px) {
    .footer-icon-block a, .footer-icon-block p {
        font-size: 12px;
    }

    .footer-icon-block svg {
        width: 30px;
    }

    .footer-icon-block {
        gap: 0 5px;
    }

    .services-top h3 {
        font-size: 20px;
    }

    .services-bottom h3 {
        font-size: 20px;
    }

    .services-top > div {
        gap: 20px 50px;
    }

    .services-bottom > div {
        gap: 30px 50px;
    }
}

@media screen and (max-width:375px) {
    .services-bottom p {
        font-size: 12px;
    }

    .services-top-card p {
        font-size: 12px;
    }

    .tariff-container .tariff-content {
        padding: 46px 10px 30px;
    }

    #selection-block button {
        margin: 0;
    }
}

/* Tezpul Mobile Styles */

@media screen and (max-width: 1400px) {
	.content-cards > div {
		grid-template-columns: 0.3fr 0.7fr;
	}
}

@media screen and (max-width: 1280px) {
	.content-cards {
		padding: 0;
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.content-cards img {
		height: 40px!important;
	}
	
	.loan-selection-calculator thead tr>th:nth-last-of-type(1), .loan-selection-calculator thead tr>th:nth-last-of-type(2) {
		font-size: 18px;
	}
	
	#selection-block button {
		font-size: 16px;
	}
	
	.loan-selection-calculator .free-vip-table tbody tr>td:nth-last-of-type(1) img, .loan-selection-calculator .free-vip-table tbody tr>td:nth-last-of-type(2) img {
		width: 20px;
	}
	
	.loan-selection-calculator tbody tr>td:nth-of-type(1) {
		font-size: 12px;
	}
	
	.loan-selection-calculator .vip-btn>div>span {
		font-size: 11px;
	}
	
	.loan-selection-calculator .vip-btn>div:nth-of-type(1) {
		font-size: 35px;
	}
}

@media screen and (max-width: 1024px) {
	.calculator > div {
		grid-template-columns: 1fr;
	}
	
	.calculator-output {
		gap: 30px;
	}
	
	#slider-content {
		padding: 20px 40px;
	}
	
	#content > .vip {
		margin: 100px 15px;
	}
	
	/**/
	.wrap_calc > div {
		grid-template-columns: 1fr!important;
	}
	
	div.right_side {
		display: grid;
    	grid-template-columns: repeat(4, 1fr);
		margin-bottom: 24px;
	}
}

@media screen and (max-width: 820px) {
	div.right_side {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.content-header p {
		font-size: 16px;
	}
	
	.content-cards > div > div:nth-of-type(2) h6 {
		font-size: 16px;
	}
	
	.content-cards > div > div:nth-of-type(2) p {
		font-size: 12px;
	}
	
	.calculator-input h3 {
		font-size: 30px;
	}
	
	#monthly-payment {
		font-size: 35px;
	}
	
	.content-cards {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 540px) {
	.slider, .calculator {
		padding: 40px 0;
	}
	
	#slider-content {
		padding: 20px 15px;
	}
	
	.calculator-input > div:nth-last-of-type(1) p {
		font-size: 14px;
	}
	
	.calculator-output button {
		font-size: 14px;
	}
	
	#selection-block {
		overflow: auto;
	}
	
	.loan-selection-calculator tbody tr>td:nth-of-type(1) {
		min-width: 200px;
	}
	
	.loan-selection-calculator tbody tr>td:nth-last-of-type(1), .loan-selection-calculator tbody tr>td:nth-last-of-type(2), .loan-selection-calculator thead tr>th:nth-last-of-type(1), .loan-selection-calculator thead tr>th:nth-last-of-type(2) {
		min-width: 250px;
	}
	
	#content > .vip {
		padding: 25px 15px;
	}
	
	.vip > h2 {
		font-size: 22px;
	}
	
	.loan-selection-calculator .vip > div:nth-of-type(1) {
		flex-direction: column;
		gap: 10px 0;
        margin-bottom: 20px;
	}
	
	.loan-selection-calculator .vip > div > img {
		width: 60px;
	}
	
	.loan-selection-calculator .vip > div:nth-of-type(1), .vip > div label {
		font-size: 14px;
	}
	
	.vip button {
		font-size: 15px;
	}
	
	/**/
	div.right_side {
		grid-template-columns: 1fr;
	}

    .loan-selection-calculator form {
		margin: 50px 10px;
		padding: 25px;
	}
	
	.loan-selection-calculator form h2,
	.archive .listing-sidebar form h2{
		font-size: 22px;
	}
}

@media screen and (max-width: 440px) {
    .banner h1 {
        font-size: 30px;
    }

    .slider-container {
        padding: 20px 20px;
    }
}

@media screen and (max-width: 375px) {
    .swiper-slide > div:nth-of-type(2) {
        font-size: 12px;
    }
}

/* Lang Switcher */

/* header lang */
.header-right {
    display: flex;
    align-items: center;
    gap: 0 32px;
}

.header-lang {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.header-lang a {
    color: #2656A0;
    text-decoration: none;
}

.lang-btn {
    display: flex;
    align-items: center;
    padding: 8px 21px;
    border: 1px solid #2656A0;
    border-radius: 20px;
    font-size: 18px;
    /* font-family: "Days One Regular", sans-serif; */
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #2656A0;
    background: white;
    transition: background 0.3s;
    user-select: none;
}

.lang-btn img {
    width: 25px;
    height: auto;
    margin-right: 6px;
}

.lang-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: white;
    padding: 8px 21px;
    border: 1px solid #2656A0;
    border-radius: 20px;
    font-size: 18px;
    /* font-family: "Days One Regular", sans-serif; */
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #2656A0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 10;
}

.lang-dropdown img {
    width: 25px;
    height: auto;
    margin-right: 6px;
}

.header-lang:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Burger Menu */

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 45px;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    color: #2656A0;
    text-decoration: none;
    font-weight: 600!important;
    font-size: 18px;
    /* font-family: 'Gotham Pro', sans-serif; */
    font-family: 'Montserrat', sans-serif;
    transition: all 300ms ease;
}

.nav-list li a:hover {
    color: #5A8ADE;
}

.burger-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 9999;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
}

.close-btn {
    font-size: 40px;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 30px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px 0;
}

.mobile-nav-list li {
    text-align: center;
}

.mobile-nav-list li a {
    color: #2656A0;
    text-decoration: none;
    font-weight: 400!important;
    font-size: 22px;
    /* font-family: 'Gotham Pro', sans-serif; */
    font-family: 'Montserrat', sans-serif;
    transition: all 300ms ease;
}

.mobile-nav-list li a:hover {
    color: #5A8ADE ;
}

.mobile-tel {
    margin-top: 20px;
    background-color: #2656A0;
    /* font-family: "Days One Regular", sans-serif; */
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400!important;
    transition-duration: 300ms;
    border-radius: 20px 20px 20px 20px;
    padding: 9px 27px 9px 27px;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

@media screen and (max-width:1280px) {
    .nav-list {
        gap: 25px;
    }

    .nav-list li a {
        font-size: 16px;
    }
}

@media screen and (max-width:1024px) {
    .nav-list, .header-tel {
        display: none;
    }

    .burger-icon {
        display: block;
        margin-left: auto;
    }
}

@media screen and (max-width:768px) {
      
}

@media screen and (max-width:540px) {
    .header-logo {
        width: 40px;
    }

    .header-tel {
        font-size: 14px;
    }
}

@media screen and (max-width:440px) {
    .lang-btn img, .lang-dropdown img {
        width: 18px;
    }

    .header-right {
        gap: 0 10px;
    }

    .lang-btn, .lang-dropdown {
        font-size: 14px;
        padding: 6px 12px;
    }

    .header-tel {
        font-size: 12px;
    }
}