@font-face {
    font-family: "Gotham"; 
    src: url(../fonts/Gotham.otf)
}

@font-face {
    font-family: "Proxima"; 
    src: url(../fonts/Proxima-light.ttf)
}
@font-face {
  font-family: "ProximaBold"; 
  src: url(../fonts/ProximaBold.otf)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    list-style: none;
    font-family: 'Proxima', sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary-text-color);
}

body {
    top: 0 !important;
}

.policy {
    line-height: 1.2;
    font-size: 12px;
    color: #777;
    margin: 5px 0 0 0;
    text-align: center;
}

.policy a {
    font-size: inherit;
    line-height: inherit;
    color: var(--primary-color);
}

.skiptranslate {
    display: none;
    height: 0;
}

a {
    cursor: pointer;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

:root {
    --primary-text-color: #1A1A1A;
    --primary-color: #006fba;
    --primary-color-hover: #1637b1;
    --section-mb: 80px;
}

.container {
    width: 1110px;
    margin: 0 auto;
}

.btn-fill {
    font-size: 13px;
    font-weight: 600;
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 5px;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-fill span {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    font-family: inherit;
}

.default-nav button {
    width: 40px;
    height: 40px;
    background-color: white;
    background-image: url('../image/arrow.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: calc(50% - 20px);
    z-index: 10;
    opacity: .7;
}

.default-nav button.owl-prev {
    transform: rotate(180deg);
    left: 10px;
}

.default-nav button.owl-next {
    right: 10px;
}

.default-nav button span {
    display: none;
}

.default-nav button.disabled {
    display: none;
}

.default-nav button:not(.disabled):hover {
    opacity: 1;
}

.block-title {
    margin: 0 0 30px;
    display: flex;
    justify-content: center;
}

.block-title.block-title_left {
    justify-content: flex-start;
}

.block-title span {
    font-size: 40px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    font-family: "Gotham";
}

.block-title.block-title_left span {
    text-align: left;
}

.block-desc {
    margin: 0 0 40px 0;
}

.block-desc span {
    font-size: 14px;
    line-height: 1.4;
}

.page-title {
    margin: 0 0 40px 0;
}

.page-title h1 {
    font-size: 44px;
    line-height: 1;
    font-weight: 600;
    font-family: "Gotham";
}

.form-row {
    display: flex;
    gap: 30px;
    width: 100%;
}

.field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.field label {
    font-size: 13px;
    font-family: "ProximaBold";
    color: #444;
}

.field input {
    border: 1px solid #c6c6c6;
    background: white;
    border-radius: 5px;
    padding: 12px 16px;
    color: #495057;
    font-size: 14px;
}

.field.error input {
    border: 1px solid red;
}

.form-row .field {
    width: calc(50% - 15px);
}