/* #region fonts */
@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Regular.ttf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Medium.ttf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-SemiBold.ttf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Bold.ttf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/* #endregion fonts */

/* #region reset css */
* {
    padding: 0;
    margin: 0;
    border: 0;
}

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

html,body {
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

nav,footer,header,aside,picture {
    display: block;
}

input, button, textarea {
    font-family: inherit;
}

img, video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

button {
    background-color: transparent;
    cursor: pointer;
}

button[disabled] {
    cursor: default;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/* #endregion reset css */

/* #region base */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 65px;
}

body {
    font-family: "Inter", sans-serif;
    line-height: normal;
}

body.overflow-hidden {
    overflow: hidden;
}

.container {
    min-width: 360px;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

h2 {
    font-size: 32px;
    font-weight: 600;
}

.company-table__hide-row,
.company-table__show-more--hide {
    display: none;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    h2 {
        font-size: 45px;
    }
}

@media (min-width: 1200px) {
    h2 {
        font-size: 60px;
    }
}
/* #endregion base */

/* #region elements */
@keyframes lds-ring {
    0% {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

.sr-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.position-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* #region .btn  */
.btn {
    padding: 5px;
    position: relative;
}

.btn__loading, .btn__checked {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    display: none
}

.btn__loading img, .btn__checked img {
    width: 35px;
    height: 35px;
}

.btn__loading img {
    animation: lds-ring 1.2s linear infinite;
}

.btn--loading .btn__loading {
    display: block;
}

.btn--checked .btn__checked {
    display: block;
}

.btn--loading span {
    opacity: 0;
}

.btn--accent {
    background-color: #FCC936;
    border-radius: 16px;
    font-size: 16px;
    line-height: 19.36px;
    font-weight: 600;
    height: 60px;
}

.btn--accent-large {
    border-radius: 12px;
    font-size: 20px;
    height: 56px;
}
/* #endregion .btn  */

/* #region .search-form */
.search-form {
    display: none !important;
}

.search-form--vertical {
    gap: 12px;
    flex-direction: column;
}

.search-form--horizontal {
    gap: 16px;
    justify-content: center;
}

.search-form--horizontal .form-field {
    max-width: 323px;
}

.search-form--horizontal .btn {
    width: 176px;
}
/* #endregion .search-form */

/* #region .form-field */
.form-field {
    position: relative;
}

.form-field--search {
    position: relative;
}

.form-field__label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    display: inline-block;
}

.form-field--search .form-field__label {
    display: block;
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.form-field__area-unit {
    color: #000;
    line-height: 56px;
    position: absolute;
    bottom: 0;
    right: 0;
    padding-right: 18px;
}

.form-field--area {

}

.form-field__input,
.form-field__select {
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 12px;
    width: 100%;
    height: 56px;
    padding: 0 16px;
    font-size: 20px;
    line-height: 24px;
}

.form-field__input--error,
.form-field__select--error {
    border-color: red;
}

.form-field__input:disabled,
.form-field__select:disabled {
    color: #BABABA;
    opacity: 0.7;
}

.form-field__select {
    appearance: none;
    color: #BABABA;
}

.form-field__select--selected {
    color: #000;
}

.form-field__input--area {
    -moz-appearance: textfield;
}

.form-field__input--area::-webkit-outer-spin-button,
.form-field__input--area::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-field--search .form-field__input {
    padding-left: 50px;
}

/* #endregion .form-field */
/* #endregion elements */

/* #region .header */
.header {
    background-color: #fff;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
}

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

.header__logo {
    width: 210px;
}
/* #endregion .header */

/* #region .privacy */
.privacy {
    padding: 0 0 50px;
}

.privacy__body {
    max-width: 768px;
}

.privacy__head h1 {
    font-size: 25px;
    margin-bottom: 20px;
}

.privacy__head h2 {
    font-weight: 700;
}

.privacy__head h2, .privacy__list li strong {
    font-size: 22px;
    margin-bottom: 15px;
}

.privacy__head p {
    font-size: 18px;
}

.privacy__head p + p {
    margin-top: 10px;
}

.privacy__list {
    margin-top: 20px;
    font-size: 18px;
    list-style: none;
}

.privacy__list ol {
    padding-left: 15px;
    list-style: none;
}

.privacy__list strong {
    font-size: 20px;
    margin-bottom: 15px;
}

.privacy__list li + li,
.privacy__list strong + ol {
    margin-top: 15px;
}
/* #endregion .privacy */
