:root {
    --green-color: #00C689;
    --grey-color: #82A8A8;
    --white-color: #FFFFFF;
    --dark-grey-color: #223B3F;
    --primary-text-color: #1D4A5B;
    --text-font-size: 16px;
    --text-small-font-size: 14px;
}

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

body {
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    background: #FFFFFF;
}

/* BASIC STYLES */

.hidden {
    display: none !important;
}

.container {
    max-width: 1480px;
    padding: 0 20px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Manrope, sans-serif;
    line-height: 100%;
    letter-spacing: 0;
}

h1 {
    font-weight: 700;
    font-size: 96px;
    color: #223B3F;
    margin-bottom: 36px;
}

h2 {
    font-weight: 700;
    font-size: 48px;
    color: #1A1A1A;
}

h3 {
    font-weight: 400;
    font-size: 36px;
    line-height: 1.2;
    color: #1D4A5B;
}

h4 {
    font-weight: 700;
    font-size: 30px;
    color: #223B3F;
}

h5 {
    font-weight: 700;
    font-size: 24px;
    color: #223B3F;
}

.primary-text {
    font-weight: 400;
    font-size: var(--text-font-size);
    line-height: 140%;
    letter-spacing: 0;
    color: var(--primary-text-color);
}

.primary-text.small {
    font-size: var(--text-small-font-size);
}

.footer-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #21366B;
}

.green-color {
    color: var(--green-color) !important;
}

.grey-color {
    color: var(--grey-color) !important;
}

.dark-grey-color {
    color: var(--dark-grey-color) !important;
}

.text-center {
    text-align: center;
}

.gradient-text-bg {
    background: linear-gradient(85.93deg, #70CAC1 -33.07%, #C9F156 112.59%);
    padding: 4px;
    border-radius: 26px;
}

.backdrop {
    background: rgba(0, 0, 0, 0.4);
    mix-blend-mode: multiply;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 20;
    top: 0;
}

.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.checkbox-label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    user-select: none;
    padding-left: 28px;
    line-height: 20px;
    vertical-align: middle;
}

.checkbox-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: white;
    border: 2px solid #afabab;
    display: block;
    box-sizing: border-box;
    transition: background 120ms ease, border 120ms ease, transform 120ms ease;
}

input[type="checkbox"]:checked + .checkbox-label::before {
    background: linear-gradient(91.01deg, #00ED65 -7.18%, #00859B 99.8%);
    border: none;
}

.checkbox-label::after {
    content: "";
    position: absolute;
    left: 5.5px;
    top: 50%;
    transform: translateY(-68%) rotate(41deg);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    display: none;
    box-sizing: content-box;
}

input[type="checkbox"]:checked + .checkbox-label::after {
    display: block;
}

.demo-row {
    margin-bottom: 12px;
}

.modal {
    position: fixed;
    top: 20%;
    background: #FFFFFF;
    left: 50%;
    transform: translateX(-50%);
    padding: 48px 24px 24px 24px;
    border-radius: 30px;
    max-width: 660px;
    width: 100%;
    z-index: 25;
}

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

.modal .btn {
    max-width: 466px;
    width: 100%;
}

.modal.call-modal .call-modal__wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 24px;
    max-width: 466px;
    width: 100%;
    margin: 0 auto;
}

.modal.call-modal .input-wrapper {
    width: 100%;
}

.modal.call-success-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    padding-bottom: 72px;
}

.modal.call-success-modal img {
    margin-bottom: 12px;
}

.d-flex-column-default {
    display: flex;
    flex-direction: column;
}

.d-flex {
    display: flex;
}

.ai-c {
    align-items: center;
}

.ai-e {
    align-items: flex-end;
}

.ai-s {
    align-items: flex-start;
}

.jc-c {
    justify-content: center;
}

.jc-e {
    justify-content: flex-end;
}

.jc-s {
    justify-content: flex-start;
}

.gap-16 {
    gap: 16px;
}

.gap-20 {
    gap: 20px;
}

.gap-24 {
    gap: 24px;
}

.gap-40 {
    gap: 40px;
}

.media-1240 {
    display: none !important;
}

.inputs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.input-wrapper {
    position: relative;
}

.input-wrapper .err-text {
    font-size: 14px;
    line-height: 140%;
    color: #E04A4D;
    display: none;
}

input[type=text].error ~ .err-text, input[type=password].error ~ .err-text {
    display: block;
    text-align: left !important;
}

input[type=text], input[type=password] {
    height: 64px;
    max-width: 628px;
    width: 100%;
    background: #E6F4F4;
    padding: 26px 12px 16px 16px;
    border-radius: 24px;
    outline: none;
    border: none;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #223B3F;
}

input[type=text].error, input[type=password].error {
    border: 2px solid #E04A4D !important;
    background: #FFDCDC !important;
}

input[type=text]:valid, input[type=password]:valid {
    background: #C7E9E9;
}

label.input-placeholder {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #00859B;
    position: absolute;
    top: 19px;
    left: 17px;
    transition: .2s all linear;
}

input[type=text].error ~ label.input-placeholder {
    color: #E04A4D;
}

input[type=text]:valid ~ label.input-placeholder,
input[type=text]:focus ~ label.input-placeholder,
input[type=password]:valid ~ label.input-placeholder,
input[type=password]:focus ~ label.input-placeholder {
    top: 9px;
    font-size: 14px;
}

input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Track styles for WebKit browsers (Chrome, Safari, Edge) */
input[type="range"]::-webkit-slider-runnable-track {
    height: 24px;
    border-radius: 24px;
    background: linear-gradient(to right, #C9FFAF 0%, #56CEFF var(--fill-percent), #E6F4F4 var(--fill-percent), #E6F4F4 100%);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 32px;
    width: 32px;
    background: linear-gradient(96.94deg, #C9FFAF 0%, #56CEFF 100%);
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    cursor: pointer;
    margin-top: -3px;
}

/* Track styles for Firefox */
input[type="range"]::-moz-range-track {
    height: 24px;
    border-radius: 24px;
    background: linear-gradient(to right, #C9FFAF 0%, #56CEFF var(--fill-percent), #E6F4F4 var(--fill-percent), #E6F4F4 100%);
    border: none;
}

input[type="range"]::-moz-range-thumb {
    height: 32px;
    width: 32px;
    background: linear-gradient(96.94deg, #C9FFAF 0%, #56CEFF 100%);
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    cursor: pointer;
    margin-top: -3px;
}

/* For the unfilled portion of the track */
input[type="range"] {
    background: #ECECEC;
    border-radius: 24px;
}

/* Firefox specific - to show the unfilled portion */
input[type="range"]::-moz-range-progress {
    background: linear-gradient(to right, #C9FFAF 0%, #56CEFF var(--fill-percent), #E6F4F4 var(--fill-percent), #E6F4F4 100%);
    height: 24px;
    border-radius: 24px;
}

.calculator input[type="text"] {
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;

}

.calculator input[type="text"]::placeholder {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
}

.calculator {
    max-width: 466px;
    background: #FFFFFF;
    width: 100%;
    padding: 30px;
    border-radius: 30px;
}

.calculator-details {
    width: 100%;
}

.calculator-details .btn {
    width: 100%;
    margin-bottom: 32px;
}

.calculator-details .additional-info {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #949494;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.calculator-calculation__list .calculator-detail {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #239CE6;
}

.calculator-calculation__list li {
    display: flex;
    gap: 4px;
    justify-content: space-between;
}

.calculator-calculation__list .value {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #239CE6;
}

.calculator-wrapper {
    display: flex;
    gap: 48px;
}

.calculator-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    position: relative;
    margin-bottom: 32px;
}

.calculator-block-wrapper {
    background: #FFFFFF;
    padding: 32px 32px 64px 32px;
    border-radius: 32px;
    max-width: 852px;
    width: 100%;
}

.calculator-indicators-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.calculator-indicators-wrapper .calculator-indicator {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    color: #949494;
}

.calculator-details {
    width: 100%;
}

.calculator-details .btn {
    width: 100%;
    margin-bottom: 32px;
}

.calculator-details .additional-info {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #949494;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.calculator-calculation__list {
    background: #E6F4F4;
    padding: 12px;
    border-radius: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.calculator-calculation__list .calculator-detail {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #223B3F;
}

.calculator-calculation__list li {
    display: flex;
    gap: 4px;
    justify-content: space-between;
}

.calculator-calculation__list .value {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #00859B;
}

.btn.btn-gradient {
    background: linear-gradient(91.01deg, #00ED65 -7.18%, #00859B 99.8%);
    width: 100%;
    max-width: 500px;
    color: #FFFFFF;
    transition: .3s all linear;
    margin-bottom: 0;
}

.btn.btn-gradient:hover {
    background: linear-gradient(91.01deg, #03f86b -7.18%, #039db6 99.8%);
}

.burger {
    border: none;
    background: transparent;
    cursor: pointer;
    transition: .3s all linear;
}

.burger:hover {
    transform: scale(1.05);
}

#burger {
    user-select: none;
    width: 25px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#burger span {
    display: block;
    position: absolute;
    height: 7px;
    width: 36px;
    border-radius: 6px;
    background: #223B3F;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#burger span:nth-child(1) {
    top: -16px;
}

#burger span:nth-child(2) {
    top: -4px;
}

#burger span:nth-child(3) {
    top: 8px;
}

#burger.open span:nth-child(1) {
    top: -4px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#burger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#burger.open span:nth-child(3) {
    top: -4px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

body.disable-body header {
    background: #FFFFFF;
}

.side-menu {
    position: fixed;
    z-index: 25;
    margin-top: 50px;
    top: 26px;
    right: -110%;
    height: 100vh;
    background: #F8F8F9;
    padding: 64px 24px 0 24px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: right 0.5s ease;
}

.side-menu .language-select {
    display: none;
}

.side-menu .enter-btn {
    display: none;
}

.side-menu .get-call-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.side-menu .get-call-wrapper a {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    color: #223B3F;
}

.side-menu .additional-info {
    margin-top: -24px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #82A8A8;
}

.side-menu.open {
    right: 0;
}

.side-menu .divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(96.94deg, #C9FFAF 0%, #56CEFF 100%);
    margin: 60px 0;
}

.side-menu nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.side-menu nav ul li a {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    color: #223B3F;
}

.plus-minus {
    position: relative;
    width: 25px;
    height: 25px;
    cursor: pointer;
    user-select: none;
}

.plus-minus.active:before {
    transform: translatey(-50%) rotate(-90deg);
    opacity: 0;
}

.plus-minus.active:after {
    transform: translatey(-50%) rotate(0);
}

.plus-minus:before, .plus-minus:after {
    content: "";
    display: block;
    background-color: #6AC6FF;
    position: absolute;
    top: 50%;
    left: 0;
    transition: 0.35s;
    width: 100%;
    height: 3px;
}

.plus-minus:before {
    transform: translatey(-50%);
}

.plus-minus:after {
    transform: translatey(-50%) rotate(90deg);
}

.btn {
    background: #223B3F;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 32px;
    width: 100%;
    height: 64px;
    max-width: 161px;
    border-radius: 50px;
    cursor: pointer;
    transition: .2s all linear;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    border: none;
    outline: none;
}

.btn:disabled {
    background: #82A8A8;
    color: #FFFFFF;
}

.btn:hover {
    background: #345b61;
}

.btn.btn-transparent {
    border: 2px solid #223B3F;
    max-width: 278px;
    width: 100%;
    background: transparent;
    color: #223B3F;
    transition: .2s all linear;
}

.btn.btn-transparent:hover {
    background: #f6eaea;
}

.checkbox-wrapper {
    display: flex;
}

.checkbox-wrapper .checkbox-text-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.checkbox-wrapper .checkbox-text-content {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #82A8A8;
}

.checkbox-wrapper .checkbox-text-content a {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    text-decoration: underline;
    text-decoration-style: solid;
    color: #00859B;
}

section {
    padding: 48px 0;
}

/* HEADER */

header {
    background: linear-gradient(96.94deg, #C9FFAF 0%, #56CEFF 100%);
    position: fixed;
    width: 100%;
    z-index: 10;
}

header .header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
}

header .right-side {
    display: flex;
    gap: 16px;
    align-items: center;
}

header nav ul {
    display: flex;
    gap: 60px;
    align-items: center;
}

header nav ul li a {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #223B3F;
    transition: .1s all linear;
}

header nav ul li a:hover {
    color: #345a61;
}

.language-select {
    display: flex;
    align-items: center;
    padding: 4px;
    gap: 4px;
    border: 2px solid #223B3F;
    height: 64px;
    max-width: 124px;
    width: 100%;
    border-radius: 50px;
    user-select: none;
}

.language-select .language-select__item {
    width: 56px;
    height: 56px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #223B3F;
    transition: .2s all linear;
    cursor: pointer;
}

.language-select .language-select__item.active {
    background: #223B3F;
    color: #FFFFFF;
}

a.phone-number .phone-icon-wrapper {
    background: #223B3F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    transition: .1s all linear;
}

a.phone-number .phone-icon-wrapper:hover {
    background: #345b61;
}

a.phone-number {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #223B3F;
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* FIRST SCREEN */

section.first-screen {
    padding: 180px 0 61px 0;
    background: url("../img/first-screen-bg-1.svg") center center/cover no-repeat, linear-gradient(96.94deg, #C9FFAF 0%, #56CEFF 100%),
    radial-gradient(51.74% 148.28% at 50.76% 127.76%, #56CEFF 0%, #C9FFAF 56.73%, #F8F8F9 100%);;
    background-position-y: 100px;
}

section.first-screen .first-screen__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

/* HOW TO GET */

section.how-to-get {
    padding-top: 96px;
}

section.how-to-get ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 52px;
    margin-top: 40px;
}

section.how-to-get ul li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 396px;
    width: 100%;
}

section.how-to-get ul li h5 {
    margin-bottom: 16px;
}

section.how-to-get ul li.arrow {
    max-width: 22px;
}

/* WHY WE */

section.why-we {
    padding-bottom: 96px;
}

section.why-we ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
}

section.why-we ul li {
    max-width: 464px;
    min-height: 271px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    border-radius: 30px;
    border: 2px solid #C9FFAF;
}

/* GET */

section.get {
    padding: 0;
    background: #F8F8F9;
}

section.get .get__wrapper {
    display: flex;
    gap: 32px;
}

section.get .get__wrapper .img-wrapper {
    position: relative;
}

section.get .get__wrapper .img-wrapper .card-img {
    position: absolute;
}

section.get .get__wrapper .img-wrapper .coins-img {
    position: relative;
    z-index: 2;
}

section.get h2 {
    max-width: 437px;
}

section.get .text-content {
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* FAQ */

section.faq {
    background: #F8F8F9;
    padding: 96px 0;
}

section.faq ul {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

section.faq ul li {
    width: 100%;
}

section.faq ul li .item-header {
    background: linear-gradient(96.94deg, #C9FFAF 0%, #56CEFF 100%);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

section.faq ul li .item-header img {
    transition: .2s all linear;
}

section.faq ul li .item-header img.rotate {
    transform: rotate(180deg);
}

section.faq ul li .item-content {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 30px;
}

/* CREDIT RATING */

section.credit-rating {
    padding: 96px 0 0 0;
}

section.credit-rating .credit-rating__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

section.credit-rating .credit-rating__wrapper .text-content {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

section.credit-rating .credit-rating__wrapper .text-content .btn {
    margin-top: 20px;
    max-width: 342px;
}

/* FEEDBACK */

section.feedback {
    padding: 96px 0;
}

section.feedback .feedback__wrapper {
    margin-top: 40px;
    display: flex;
    gap: 32px;
    justify-content: space-between;
}

section.feedback form {
    border: 2px solid #C9FFAF;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 708px;
    width: 100%;
}

section.feedback .get-call-wrapper {
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px;
}

section.feedback .get-call-wrapper a {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    color: #223B3F;
}

section.feedback .additional-info {
    margin-top: -24px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #82A8A8;
}

/* FOOTER */

footer {
    background: #F8F8F9;
    padding: 96px 0;
}

footer .footer__wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

footer .info-list {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

footer .contacts-list {
    display: flex;
    gap: 24px;
}

footer .contacts-list li {
    display: flex;
    gap: 6px;
    align-items: center;
}

footer .contacts-list li .primary-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #82A8A8;
}

footer .contacts-list li .primary-text.value {
    color: #223B3F;
}

footer .socials-list {
    display: flex;
    gap: 32px;
}

footer .documents-list {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

footer .documents-list li {
    display: flex;
    justify-content: center;
}

footer .documents-list a {
    font-family: 'Noto Sans', sans-serif;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-decoration: underline;
    color: #00C689;
}