:root {
  /* Основные цвета */
  --color-bg-dark: #2C2F1E;         /* Тёмно-оливковый фон */
  --color-card-bg: #E6DAC3;         /* Светлый песочный (фон карточек) */
  --color-accent: #C2612A;          /* Терракотовый (кнопки) */
  --color-text: #111111;            /* Основной текст */
  --color-icon: #8C5B2F;            /* Медный/коричневый (иконки и логотип) */
  --color-white: #FFFFFF;           /* Белый цвет */
  --color-black: #000000;           /* Чёрный цвет */

  /* Дополнительные цвета */
  --color-green-accent: #4B5E3B;    /* Хаки (hover, бордеры) */
  --color-light-gray: #F5F5F5;      /* Светлый фон (например, для новостей) */
  --color-dark-accent: #1A1A1A;     /* Угольно-чёрный (навигация, модальные окна) */
}

.qs-datepicker-container {
    font-size: 1rem;
    font-family: sans-serif;
    color: #000;
    position: absolute;
    width: 15.625em;
    display: flex;
    flex-direction: column;
    z-index: 9001;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid grey;
    border-radius: .263921875em;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1.25em 1.25em -.9375em #0000004d
}

.qs-datepicker-container * {
    box-sizing: border-box
}

.qs-centered {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.qs-hidden {
    display: none
}

.qs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: #000000bf;
    color: #fff;
    width: 100%;
    height: 100%;
    padding: .5em;
    z-index: 1;
    opacity: 1;
    transition: opacity .3s;
    display: flex;
    flex-direction: column
}

.qs-overlay.qs-hidden {
    opacity: 0;
    z-index: -1
}

.qs-overlay .qs-overlay-year {
    background: #0000;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    font-size: .875em;
    padding: .25em 0;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    display: block
}

.qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
    -webkit-appearance: none
}

.qs-overlay .qs-close {
    padding: .5em;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0
}

.qs-overlay .qs-submit {
    border: 1px solid #fff;
    border-radius: .263921875em;
    padding: .5em;
    margin: 0 auto auto;
    cursor: pointer;
    background: #80808066
}

.qs-overlay .qs-submit.qs-disabled {
    color: gray;
    border-color: gray;
    cursor: not-allowed
}

.qs-overlay .qs-overlay-month-container {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1
}

.qs-overlay .qs-overlay-month {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3);
    cursor: pointer;
    opacity: .5;
    transition: opacity .15s
}

.qs-overlay .qs-overlay-month.active,
.qs-overlay .qs-overlay-month:hover {
    opacity: 1
}

.qs-controls {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    flex-shrink: 0;
    background: #d3d3d3;
    filter: blur(0);
    transition: filter .3s
}

.qs-controls.qs-blur {
    filter: blur(5px)
}

.qs-arrow {
    height: 1.5625em;
    width: 1.5625em;
    position: relative;
    cursor: pointer;
    border-radius: .263921875em;
    transition: background .15s
}

.qs-arrow:hover.qs-left:after {
    border-right-color: #000
}

.qs-arrow:hover.qs-right:after {
    border-left-color: #000
}

.qs-arrow:hover {
    background: #0000001a
}

.qs-arrow:after {
    content: "";
    border: .390625em solid #fff0;
    position: absolute;
    top: 50%;
    transition: border .2s
}

.qs-arrow.qs-left:after {
    border-right-color: gray;
    right: 50%;
    transform: translate(25%, -50%)
}

.qs-arrow.qs-right:after {
    border-left-color: gray;
    left: 50%;
    transform: translate(-25%, -50%)
}

.qs-month-year {
    font-weight: 700;
    transition: border .2s;
    border-bottom: 1px solid #fff0
}

.qs-month-year:not(.qs-disabled-year-overlay) {
    cursor: pointer
}

.qs-month-year:not(.qs-disabled-year-overlay):hover {
    border-bottom: 1px solid grey
}

.qs-month-year:active:focus,
.qs-month-year:focus {
    outline: none
}

.qs-month {
    padding-right: .5ex
}

.qs-year {
    padding-left: .5ex
}

.qs-squares {
    display: flex;
    flex-wrap: wrap;
    padding: .3125em;
    filter: blur(0);
    transition: filter .3s
}

.qs-squares.qs-blur {
    filter: blur(5px)
}

.qs-square {
    width: calc(100% / 7);
    height: 1.5625em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .1s;
    border-radius: .263921875em
}

.qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
    background: orange
}

.qs-current {
    font-weight: 700;
    text-decoration: underline
}

.qs-active,
.qs-range-end,
.qs-range-start {
    background: #add8e6
}

.qs-range-start:not(.qs-range-6) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.qs-range-middle {
    background: #d4ebf2
}

.qs-range-middle:not(.qs-range-0):not(.qs-range-6) {
    border-radius: 0
}

.qs-range-middle.qs-range-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.qs-range-end:not(.qs-range-0),
.qs-range-middle.qs-range-6 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.qs-disabled,
.qs-outside-current-month {
    opacity: .2
}

.qs-disabled {
    cursor: not-allowed
}

.qs-day,
.qs-empty {
    cursor: default
}

.qs-day {
    font-weight: 700;
    color: gray
}

.qs-event {
    position: relative
}

.qs-event:after {
    content: "";
    position: absolute;
    width: .46875em;
    height: .46875em;
    border-radius: 50%;
    background: #07f;
    bottom: 0;
    right: 0
}

:root {
    --iti-hover-color: rgba(0, 0, 0, .05);
    --iti-border-color: #ccc;
    --iti-dialcode-color: #999;
    --iti-dropdown-bg: white;
    --iti-spacer-horizontal: 8px;
    --iti-flag-height: 12px;
    --iti-flag-width: 16px;
    --iti-border-width: 1px;
    --iti-arrow-height: 4px;
    --iti-arrow-width: 6px;
    --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
    --iti-arrow-padding: 6px;
    --iti-arrow-color: #555;
    --iti-path-flags-1x: url(/wp-content/themes/azov/assets/flags.webp);
    --iti-path-flags-2x: url(/wp-content/themes/azov/assets/flags@2x.webp);
    --iti-path-globe-1x: url(data:image/webp;base64,UklGRvoBAABXRUJQVlA4TO4BAAAvE8AEENXIkiRZtZu7H33ql07cqTlilvbz9i4tosSMZma27zWzHRGyIEk2bcu2bdvGn23btm3btm3btm0/m5PqAEkLTYYwxTPAW84Tl6wNgmvIqptKKH9nYAr4xle+TML/BDI2LSg6QHKT/nngE4+ZMIUePUGeTvly+YoV8F1DtkGUzlfst2LUKTX6PaWZeMWiDqN6PgcciGa2boYPmxlR5bIIL5l6RVyDYMXmY1f10pGb7PmAN6sRTBTN3N9C9Zi/LbVhlL+Oo2M7RxoE/a4+/nDjeBrSVwtGYXGGMIrUbJzCU1LgFftP9K1hkpOXmBim30cIJ1hgOkSwMhYCMgmaw7rXcfT5/wQcFhrcuaOEBuq5ytYblLPBEhV0Aq/ZqcDn/6RUDgrUL0/0UZgK/p+rR8/4nZAqFfuXA6TbtFQyJSe4gpj6T19a5q+HLEkox0mlWXvbIGbuJw28fkozjybhT5oXHNY4py5rH1CflcyeB1fId9wXDAvFmz/8m6AE/8TgYzEVGoRMCKUhND7PQho7jGo1utkdV559cm3llGFs3sxBZrmGbEExop91jyfg5G7BmCCi6evNaSDFBrG3vyaRNzt+HJ9kQpVbgj+xFUoNgr3abxqGfH3WfQq9lp5UZPRW74ZbFgpq+EGo67dUAQ==);
    --iti-path-globe-2x: url(data:image/webp;base64,UklGRlwFAABXRUJQVlA4TE8FAAAvJ8AJEEfHKJIkKdmcgvjj3wwill7QwKhtJEnOnIDmv/zJLAdGbSNJcuYENP/lT2Y5OGwjSZHmtL3wTFl9tp8SM/9xz47Ctm2b7mnwDggKFNd77jgHyxhIYVvLQBDEHEBKRQBIOXzQpAhiBQCIAMaIAACHhAQHIMFhhRkSRt1hlRIYDAZDhiE3CVrBS2gFkZGRYdA6mjQQBYAv6yOZSVAQCoPWMCWBIBQKwtCCUBANFARBlChBfPCG/dZUjxJECYJQECU+KGFQEC1YdN/NSUNRTDm4osQBGUwFjDFCBOYRo9QWxAmPlKQECRERMbVLCZapZ0owSrnz3hb6/P8auL9vAwr7/xeS5EV9q2sWU2vbtjla27Zt28akprq6a3bPtm2np87eJIvePUzd9fvoXkT0fwK4Vwdo8t6qyQW+O7Tn4k7NAdvi/jMR0fGpwhglhZBKm3B0pzvg3JcDrUuMEn7SDaUIRTLhhqb/AbDvw+bbJToMEq5QflFfv+QhJVPxcmkm/Ih9TzZfFxk/CJUnP7zMykJqnhsqQ51M6tTv2Pdgc/GKCuKmaI96HlhVAJy4vWVWWgRSfYJ9l4jv+4aB0F15Td3kH1YW4DiMnEJHGSaFOoOdw4LxOhCqPTf0JvLys6I8Wv/9BeeuhEkZfE+UZfNSOumqT+CArgHwbBHZw+ZB00AGeiYxIKKudH2zDxg97VK7FxdO6+9Pmt3l4J/bZR58rtyEOY6dtdhcMbPh2jsyNKr3mNnDy+c8Pig0od5wGXakg7DYgYgfU5648s0fC0Ljv9SigQVrHwUafXVgmNE92zBBBeYjsHn5L6Emz/6776EnxwJUsqKADMDmq8fG/T16fujr7lhknhheLG4PPwFD15IXs2xWFWBZVj4ndDW+fDItPRncssi75Fxv/iHQQL2PDbkg4k/zP/BfgfR1axxy59PM/IYdsypZWUCUiTlck2/zTz4fm3LzqkNlxxnzW+A4fK4vkbNrIbn7bgVoKn3djQu90krrllynQ1g7v2rpjUYsfeR6tdLSaqV5w5fR6E5+k8BVT/0aqqSXDAdV4wvpCplTCJnbFTLb9dTEHjoQQiTMC7Ah3PPuwbffOfD+xP4d3s7uMGDC+wcOvrs7kVKTZ6m4EMIVfn1O61JyrnuU3EM3A3znefrp142f5cnmnDXNyXecPFYUYNt2pVUlvot//qWFDszz9aTrCuGpQVX4Wn+KAw6rCrAgw/eqLZXQVQfmXZ5QnnCF2wrwdlJ5F8DhC1MP/itRnhv+wmHji7hpT+x0tekziRw7jxUF2LZznX3xOydH3e5fVhYWO5QOlClPzYFX9EMD65P9bBHZ16fLq7dHfrlal5vO2LxuKkTcfABvjZDxwsWvf9hs7pCv2ry5cowvB2/8iosq5YraWHw7JCxLyaAWZPoUrilMaRMKo8WwpQv0z2AXqnLzLA42H5gKEVcTuM76RfDtpVrzh9b5oTp0e5SI+Topy78hAzFm6QqRMN2gugNYLH0EoHF6Pyw3vm+OYQMRlwPpCd+sAep/WQ1OPGZZ13lO0ugpE0+m1xGRbdNKe67wzTN3Nouw3yfw03WH+nrnqUAnEul5YOXA5o20L4SnAiXjoX6f7Pm6RIeBl14EGe4a8VLad4UnvZTwysxR2DtOumEiUOpliLi7FWNb2vOEK4QQnnyoIav+Ko9XhGbUF1gZ7tWKcVBLX+T05HkOGmn0iA4WjsW9Ww6ny3WiTAjhyd41WWfGrv4sAof7t/l+ppGJlFeR7oBVr4kF2BYP0oYjDxsZpjuTsQDHsXjAUYxrrwwe9gGWRRRZ3CcA);
    --iti-flag-sprite-width: 3904px;
    --iti-flag-sprite-height: 12px;
    --iti-mobile-popup-margin: 30px
}

.iti {
    position: relative;
    display: inline-block
}

.iti * {
    box-sizing: border-box
}

.iti__hide {
    display: none
}

.iti__v-hide {
    visibility: hidden
}

.iti__a11y-text {
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    position: absolute
}

.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
    position: relative;
    z-index: 0;
    margin: 0 !important
}

.iti__country-container {
    position: absolute;
    top: 0;
    bottom: 0;
    padding: var(--iti-border-width)
}

.iti__selected-country {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border-radius: 0;
    font-weight: inherit;
    line-height: inherit;
    text-decoration: none
}

.iti__selected-country-primary {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal)
}

.iti__arrow {
    margin-left: var(--iti-arrow-padding);
    width: 0;
    height: 0;
    border-left: var(--iti-triangle-border) solid #fff0;
    border-right: var(--iti-triangle-border) solid #fff0;
    border-top: var(--iti-arrow-height) solid var(--iti-arrow-color)
}

[dir=rtl] .iti__arrow {
    margin-right: var(--iti-arrow-padding);
    margin-left: 0
}

.iti__arrow--up {
    border-top: none;
    border-bottom: var(--iti-arrow-height) solid var(--iti-arrow-color)
}

.iti__dropdown-content {
    border-radius: 3px;
    background-color: var(--iti-dropdown-bg)
}

.iti--inline-dropdown .iti__dropdown-content {
    position: absolute;
    z-index: 2;
    margin-top: 3px;
    margin-left: calc(var(--iti-border-width) * -1);
    border: var(--iti-border-width) solid var(--iti-border-color);
    box-shadow: 1px 1px 4px #0003
}

.iti__search-input {
    width: 100%;
    border-width: 0;
    border-radius: 3px
}

.iti__search-input+.iti__country-list {
    border-top: 1px solid var(--iti-border-color)
}

.iti__country-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch
}

.iti--inline-dropdown .iti__country-list {
    max-height: 185px
}

.iti--flexible-dropdown-width .iti__country-list {
    white-space: nowrap
}

@media (max-width:500px) {
    .iti--flexible-dropdown-width .iti__country-list {
        white-space: normal
    }
}

.iti__country {
    display: flex;
    align-items: center;
    padding: 8px var(--iti-spacer-horizontal);
    outline: none
}

.iti__dial-code {
    color: var(--iti-dialcode-color)
}

.iti__country.iti__highlight {
    background-color: var(--iti-hover-color)
}

.iti__country-list .iti__flag,
.iti__country-name {
    margin-right: var(--iti-spacer-horizontal)
}

[dir=rtl] .iti__country-list .iti__flag,
[dir=rtl] .iti__country-name {
    margin-right: 0;
    margin-left: var(--iti-spacer-horizontal)
}

.iti--allow-dropdown .iti__country-container:not(:has(+input[disabled])):not(:has(+input[readonly])):hover,
.iti--allow-dropdown .iti__country-container:not(:has(+input[disabled])):not(:has(+input[readonly])):hover button {
    cursor: pointer
}

.iti--allow-dropdown .iti__country-container:not(:has(+input[disabled])):not(:has(+input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+input[disabled])):not(:has(+input[readonly])) .iti__selected-country:has(+.iti__dropdown-content:hover) .iti__selected-country-primary {
    background-color: var(--iti-hover-color)
}

.iti .iti__selected-dial-code {
    margin-left: 4px
}

[dir=rtl] .iti .iti__selected-dial-code {
    margin-left: 0;
    margin-right: 4px
}

.iti--container {
    position: fixed;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: var(--iti-border-width)
}

.iti--container:hover {
    cursor: pointer
}

.iti--fullscreen-popup.iti--container {
    background-color: #00000080;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    padding: var(--iti-mobile-popup-margin);
    display: flex;
    flex-direction: column;
    justify-content: flex-start
}

.iti--fullscreen-popup .iti__dropdown-content {
    display: flex;
    flex-direction: column;
    max-height: 100%;
    position: relative
}

.iti--fullscreen-popup .iti__country {
    padding: 10px;
    line-height: 1.5em
}

.iti__flag {
    --iti-flag-offset: 100px;
    height: var(--iti-flag-height);
    width: var(--iti-flag-width);
    border-radius: 1px;
    box-shadow: 0 0 1px #888;
    background-image: var(--iti-path-flags-1x);
    background-repeat: no-repeat;
    background-position: var(--iti-flag-offset) 0;
    background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height)
}

.iti__ac {
    --iti-flag-offset: 0px
}

.iti__ad {
    --iti-flag-offset: -16px
}

.iti__ae {
    --iti-flag-offset: -32px
}

.iti__af {
    --iti-flag-offset: -48px
}

.iti__ag {
    --iti-flag-offset: -64px
}

.iti__ai {
    --iti-flag-offset: -80px
}

.iti__al {
    --iti-flag-offset: -96px
}

.iti__am {
    --iti-flag-offset: -112px
}

.iti__ao {
    --iti-flag-offset: -128px
}

.iti__ar {
    --iti-flag-offset: -144px
}

.iti__as {
    --iti-flag-offset: -160px
}

.iti__at {
    --iti-flag-offset: -176px
}

.iti__au {
    --iti-flag-offset: -192px
}

.iti__aw {
    --iti-flag-offset: -208px
}

.iti__ax {
    --iti-flag-offset: -224px
}

.iti__az {
    --iti-flag-offset: -240px
}

.iti__ba {
    --iti-flag-offset: -256px
}

.iti__bb {
    --iti-flag-offset: -272px
}

.iti__bd {
    --iti-flag-offset: -288px
}

.iti__be {
    --iti-flag-offset: -304px
}

.iti__bf {
    --iti-flag-offset: -320px
}

.iti__bg {
    --iti-flag-offset: -336px
}

.iti__bh {
    --iti-flag-offset: -352px
}

.iti__bi {
    --iti-flag-offset: -368px
}

.iti__bj {
    --iti-flag-offset: -384px
}

.iti__bl {
    --iti-flag-offset: -400px
}

.iti__bm {
    --iti-flag-offset: -416px
}

.iti__bn {
    --iti-flag-offset: -432px
}

.iti__bo {
    --iti-flag-offset: -448px
}

.iti__bq {
    --iti-flag-offset: -464px
}

.iti__br {
    --iti-flag-offset: -480px
}

.iti__bs {
    --iti-flag-offset: -496px
}

.iti__bt {
    --iti-flag-offset: -512px
}

.iti__bw {
    --iti-flag-offset: -528px
}

.iti__by {
    --iti-flag-offset: -544px
}

.iti__bz {
    --iti-flag-offset: -560px
}

.iti__ca {
    --iti-flag-offset: -576px
}

.iti__cc {
    --iti-flag-offset: -592px
}

.iti__cd {
    --iti-flag-offset: -608px
}

.iti__cf {
    --iti-flag-offset: -624px
}

.iti__cg {
    --iti-flag-offset: -640px
}

.iti__ch {
    --iti-flag-offset: -656px
}

.iti__ci {
    --iti-flag-offset: -672px
}

.iti__ck {
    --iti-flag-offset: -688px
}

.iti__cl {
    --iti-flag-offset: -704px
}

.iti__cm {
    --iti-flag-offset: -720px
}

.iti__cn {
    --iti-flag-offset: -736px
}

.iti__co {
    --iti-flag-offset: -752px
}

.iti__cr {
    --iti-flag-offset: -768px
}

.iti__cu {
    --iti-flag-offset: -784px
}

.iti__cv {
    --iti-flag-offset: -800px
}

.iti__cw {
    --iti-flag-offset: -816px
}

.iti__cx {
    --iti-flag-offset: -832px
}

.iti__cy {
    --iti-flag-offset: -848px
}

.iti__cz {
    --iti-flag-offset: -864px
}

.iti__de {
    --iti-flag-offset: -880px
}

.iti__dj {
    --iti-flag-offset: -896px
}

.iti__dk {
    --iti-flag-offset: -912px
}

.iti__dm {
    --iti-flag-offset: -928px
}

.iti__do {
    --iti-flag-offset: -944px
}

.iti__dz {
    --iti-flag-offset: -960px
}

.iti__ec {
    --iti-flag-offset: -976px
}

.iti__ee {
    --iti-flag-offset: -992px
}

.iti__eg {
    --iti-flag-offset: -1008px
}

.iti__eh {
    --iti-flag-offset: -1024px
}

.iti__er {
    --iti-flag-offset: -1040px
}

.iti__es {
    --iti-flag-offset: -1056px
}

.iti__et {
    --iti-flag-offset: -1072px
}

.iti__fi {
    --iti-flag-offset: -1088px
}

.iti__fj {
    --iti-flag-offset: -1104px
}

.iti__fk {
    --iti-flag-offset: -1120px
}

.iti__fm {
    --iti-flag-offset: -1136px
}

.iti__fo {
    --iti-flag-offset: -1152px
}

.iti__fr {
    --iti-flag-offset: -1168px
}

.iti__ga {
    --iti-flag-offset: -1184px
}

.iti__gb {
    --iti-flag-offset: -1200px
}

.iti__gd {
    --iti-flag-offset: -1216px
}

.iti__ge {
    --iti-flag-offset: -1232px
}

.iti__gf {
    --iti-flag-offset: -1248px
}

.iti__gg {
    --iti-flag-offset: -1264px
}

.iti__gh {
    --iti-flag-offset: -1280px
}

.iti__gi {
    --iti-flag-offset: -1296px
}

.iti__gl {
    --iti-flag-offset: -1312px
}

.iti__gm {
    --iti-flag-offset: -1328px
}

.iti__gn {
    --iti-flag-offset: -1344px
}

.iti__gp {
    --iti-flag-offset: -1360px
}

.iti__gq {
    --iti-flag-offset: -1376px
}

.iti__gr {
    --iti-flag-offset: -1392px
}

.iti__gt {
    --iti-flag-offset: -1408px
}

.iti__gu {
    --iti-flag-offset: -1424px
}

.iti__gw {
    --iti-flag-offset: -1440px
}

.iti__gy {
    --iti-flag-offset: -1456px
}

.iti__hk {
    --iti-flag-offset: -1472px
}

.iti__hn {
    --iti-flag-offset: -1488px
}

.iti__hr {
    --iti-flag-offset: -1504px
}

.iti__ht {
    --iti-flag-offset: -1520px
}

.iti__hu {
    --iti-flag-offset: -1536px
}

.iti__id {
    --iti-flag-offset: -1552px
}

.iti__ie {
    --iti-flag-offset: -1568px
}

.iti__il {
    --iti-flag-offset: -1584px
}

.iti__im {
    --iti-flag-offset: -1600px
}

.iti__in {
    --iti-flag-offset: -1616px
}

.iti__io {
    --iti-flag-offset: -1632px
}

.iti__iq {
    --iti-flag-offset: -1648px
}

.iti__ir {
    --iti-flag-offset: -1664px
}

.iti__is {
    --iti-flag-offset: -1680px
}

.iti__it {
    --iti-flag-offset: -1696px
}

.iti__je {
    --iti-flag-offset: -1712px
}

.iti__jm {
    --iti-flag-offset: -1728px
}

.iti__jo {
    --iti-flag-offset: -1744px
}

.iti__jp {
    --iti-flag-offset: -1760px
}

.iti__ke {
    --iti-flag-offset: -1776px
}

.iti__kg {
    --iti-flag-offset: -1792px
}

.iti__kh {
    --iti-flag-offset: -1808px
}

.iti__ki {
    --iti-flag-offset: -1824px
}

.iti__km {
    --iti-flag-offset: -1840px
}

.iti__kn {
    --iti-flag-offset: -1856px
}

.iti__kp {
    --iti-flag-offset: -1872px
}

.iti__kr {
    --iti-flag-offset: -1888px
}

.iti__kw {
    --iti-flag-offset: -1904px
}

.iti__ky {
    --iti-flag-offset: -1920px
}

.iti__kz {
    --iti-flag-offset: -1936px
}

.iti__la {
    --iti-flag-offset: -1952px
}

.iti__lb {
    --iti-flag-offset: -1968px
}

.iti__lc {
    --iti-flag-offset: -1984px
}

.iti__li {
    --iti-flag-offset: -2000px
}

.iti__lk {
    --iti-flag-offset: -2016px
}

.iti__lr {
    --iti-flag-offset: -2032px
}

.iti__ls {
    --iti-flag-offset: -2048px
}

.iti__lt {
    --iti-flag-offset: -2064px
}

.iti__lu {
    --iti-flag-offset: -2080px
}

.iti__lv {
    --iti-flag-offset: -2096px
}

.iti__ly {
    --iti-flag-offset: -2112px
}

.iti__ma {
    --iti-flag-offset: -2128px
}

.iti__mc {
    --iti-flag-offset: -2144px
}

.iti__md {
    --iti-flag-offset: -2160px
}

.iti__me {
    --iti-flag-offset: -2176px
}

.iti__mf {
    --iti-flag-offset: -2192px
}

.iti__mg {
    --iti-flag-offset: -2208px
}

.iti__mh {
    --iti-flag-offset: -2224px
}

.iti__mk {
    --iti-flag-offset: -2240px
}

.iti__ml {
    --iti-flag-offset: -2256px
}

.iti__mm {
    --iti-flag-offset: -2272px
}

.iti__mn {
    --iti-flag-offset: -2288px
}

.iti__mo {
    --iti-flag-offset: -2304px
}

.iti__mp {
    --iti-flag-offset: -2320px
}

.iti__mq {
    --iti-flag-offset: -2336px
}

.iti__mr {
    --iti-flag-offset: -2352px
}

.iti__ms {
    --iti-flag-offset: -2368px
}

.iti__mt {
    --iti-flag-offset: -2384px
}

.iti__mu {
    --iti-flag-offset: -2400px
}

.iti__mv {
    --iti-flag-offset: -2416px
}

.iti__mw {
    --iti-flag-offset: -2432px
}

.iti__mx {
    --iti-flag-offset: -2448px
}

.iti__my {
    --iti-flag-offset: -2464px
}

.iti__mz {
    --iti-flag-offset: -2480px
}

.iti__na {
    --iti-flag-offset: -2496px
}

.iti__nc {
    --iti-flag-offset: -2512px
}

.iti__ne {
    --iti-flag-offset: -2528px
}

.iti__nf {
    --iti-flag-offset: -2544px
}

.iti__ng {
    --iti-flag-offset: -2560px
}

.iti__ni {
    --iti-flag-offset: -2576px
}

.iti__nl {
    --iti-flag-offset: -2592px
}

.iti__no {
    --iti-flag-offset: -2608px
}

.iti__np {
    --iti-flag-offset: -2624px
}

.iti__nr {
    --iti-flag-offset: -2640px
}

.iti__nu {
    --iti-flag-offset: -2656px
}

.iti__nz {
    --iti-flag-offset: -2672px
}

.iti__om {
    --iti-flag-offset: -2688px
}

.iti__pa {
    --iti-flag-offset: -2704px
}

.iti__pe {
    --iti-flag-offset: -2720px
}

.iti__pf {
    --iti-flag-offset: -2736px
}

.iti__pg {
    --iti-flag-offset: -2752px
}

.iti__ph {
    --iti-flag-offset: -2768px
}

.iti__pk {
    --iti-flag-offset: -2784px
}

.iti__pl {
    --iti-flag-offset: -2800px
}

.iti__pm {
    --iti-flag-offset: -2816px
}

.iti__pr {
    --iti-flag-offset: -2832px
}

.iti__ps {
    --iti-flag-offset: -2848px
}

.iti__pt {
    --iti-flag-offset: -2864px
}

.iti__pw {
    --iti-flag-offset: -2880px
}

.iti__py {
    --iti-flag-offset: -2896px
}

.iti__qa {
    --iti-flag-offset: -2912px
}

.iti__re {
    --iti-flag-offset: -2928px
}

.iti__ro {
    --iti-flag-offset: -2944px
}

.iti__rs {
    --iti-flag-offset: -2960px
}

.iti__ru {
    --iti-flag-offset: -2976px
}

.iti__rw {
    --iti-flag-offset: -2992px
}

.iti__sa {
    --iti-flag-offset: -3008px
}

.iti__sb {
    --iti-flag-offset: -3024px
}

.iti__sc {
    --iti-flag-offset: -3040px
}

.iti__sd {
    --iti-flag-offset: -3056px
}

.iti__se {
    --iti-flag-offset: -3072px
}

.iti__sg {
    --iti-flag-offset: -3088px
}

.iti__sh {
    --iti-flag-offset: -3104px
}

.iti__si {
    --iti-flag-offset: -3120px
}

.iti__sj {
    --iti-flag-offset: -3136px
}

.iti__sk {
    --iti-flag-offset: -3152px
}

.iti__sl {
    --iti-flag-offset: -3168px
}

.iti__sm {
    --iti-flag-offset: -3184px
}

.iti__sn {
    --iti-flag-offset: -3200px
}

.iti__so {
    --iti-flag-offset: -3216px
}

.iti__sr {
    --iti-flag-offset: -3232px
}

.iti__ss {
    --iti-flag-offset: -3248px
}

.iti__st {
    --iti-flag-offset: -3264px
}

.iti__sv {
    --iti-flag-offset: -3280px
}

.iti__sx {
    --iti-flag-offset: -3296px
}

.iti__sy {
    --iti-flag-offset: -3312px
}

.iti__sz {
    --iti-flag-offset: -3328px
}

.iti__tc {
    --iti-flag-offset: -3344px
}

.iti__td {
    --iti-flag-offset: -3360px
}

.iti__tg {
    --iti-flag-offset: -3376px
}

.iti__th {
    --iti-flag-offset: -3392px
}

.iti__tj {
    --iti-flag-offset: -3408px
}

.iti__tk {
    --iti-flag-offset: -3424px
}

.iti__tl {
    --iti-flag-offset: -3440px
}

.iti__tm {
    --iti-flag-offset: -3456px
}

.iti__tn {
    --iti-flag-offset: -3472px
}

.iti__to {
    --iti-flag-offset: -3488px
}

.iti__tr {
    --iti-flag-offset: -3504px
}

.iti__tt {
    --iti-flag-offset: -3520px
}

.iti__tv {
    --iti-flag-offset: -3536px
}

.iti__tw {
    --iti-flag-offset: -3552px
}

.iti__tz {
    --iti-flag-offset: -3568px
}

.iti__ua {
    --iti-flag-offset: -3584px
}

.iti__ug {
    --iti-flag-offset: -3600px
}

.iti__us {
    --iti-flag-offset: -3616px
}

.iti__uy {
    --iti-flag-offset: -3632px
}

.iti__uz {
    --iti-flag-offset: -3648px
}

.iti__va {
    --iti-flag-offset: -3664px
}

.iti__vc {
    --iti-flag-offset: -3680px
}

.iti__ve {
    --iti-flag-offset: -3696px
}

.iti__vg {
    --iti-flag-offset: -3712px
}

.iti__vi {
    --iti-flag-offset: -3728px
}

.iti__vn {
    --iti-flag-offset: -3744px
}

.iti__vu {
    --iti-flag-offset: -3760px
}

.iti__wf {
    --iti-flag-offset: -3776px
}

.iti__ws {
    --iti-flag-offset: -3792px
}

.iti__xk {
    --iti-flag-offset: -3808px
}

.iti__ye {
    --iti-flag-offset: -3824px
}

.iti__yt {
    --iti-flag-offset: -3840px
}

.iti__za {
    --iti-flag-offset: -3856px
}

.iti__zm {
    --iti-flag-offset: -3872px
}

.iti__zw {
    --iti-flag-offset: -3888px
}

.iti__globe {
    background-image: var(--iti-path-globe-1x);
    background-size: contain;
    background-position: right;
    box-shadow: none;
    height: 19px
}

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:2x) {
    .iti__flag {
        background-image: var(--iti-path-flags-2x)
    }

    .iti__globe {
        background-image: var(--iti-path-globe-2x)
    }
}

*,
:before,
:after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

*,
:before,
:after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

:before,
:after {
    --tw-content: ""
}

html,
:host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: Oswald, sans;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: #fff0
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit
}

a {
    color: inherit;
    text-decoration: inherit
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button,
select {
    text-transform: none
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: #fff0;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
    margin: 0
}

fieldset {
    margin: 0;
    padding: 0
}

legend {
    padding: 0
}

ol,
ul,
menu {
    list-style: none;
    margin: 0;
    padding: 0
}

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    color: #9ca3af
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #9ca3af
}

button,
[role=button] {
    cursor: pointer
}

:disabled {
    cursor: default
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    vertical-align: middle
}

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

[hidden]:where(:not([hidden=until-found])) {
    display: none
}

[type=text],
input:where(:not([type])),
[type=email],
[type=url],
[type=password],
[type=number],
[type=date],
[type=datetime-local],
[type=month],
[type=search],
[type=tel],
[type=time],
[type=week],
[multiple],
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    border-radius: 0;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-shadow: 0 0 #0000
}

[type=text]:focus,
input:where(:not([type])):focus,
[type=email]:focus,
[type=url]:focus,
[type=password]:focus,
[type=number]:focus,
[type=date]:focus,
[type=datetime-local]:focus,
[type=month]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=time]:focus,
[type=week]:focus,
[multiple]:focus,
textarea:focus,
select:focus {
    outline: 2px solid #fff0;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty, );
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #2563eb;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    border-color: #2563eb
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #6b7280;
    opacity: 1
}

input::placeholder,
textarea::placeholder {
    color: #6b7280;
    opacity: 1
}

::-webkit-datetime-edit-fields-wrapper {
    padding: 0
}

::-webkit-date-and-time-value {
    min-height: 1.5em;
    text-align: inherit
}

::-webkit-datetime-edit {
    display: inline-flex
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
    padding-top: 0;
    padding-bottom: 0
}

select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right .5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact
}

[multiple],
[size]:where(select:not([size="1"])) {
    background-image: initial;
    background-position: initial;
    background-repeat: unset;
    background-size: initial;
    padding-right: .75rem;
    -webkit-print-color-adjust: unset;
    print-color-adjust: unset
}

[type=checkbox],
[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    display: inline-block;
    vertical-align: middle;
    background-origin: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    flex-shrink: 0;
    height: 1rem;
    width: 1rem;
    color: #2563eb;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    --tw-shadow: 0 0 #0000
}

[type=checkbox] {
    border-radius: 0
}

[type=radio] {
    border-radius: 100%
}

[type=checkbox]:focus,
[type=radio]:focus {
    outline: 2px solid #fff0;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty, );
    --tw-ring-offset-width: 2px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #2563eb;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)
}

[type=checkbox]:checked,
[type=radio]:checked {
    border-color: #fff0;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat
}

[type=checkbox]:checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")
}

@media (forced-colors:active) {
    [type=checkbox]:checked {
        -webkit-appearance: auto;
        -moz-appearance: auto;
        appearance: auto
    }
}

[type=radio]:checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")
}

@media (forced-colors:active) {
    [type=radio]:checked {
        -webkit-appearance: auto;
        -moz-appearance: auto;
        appearance: auto
    }
}

[type=checkbox]:checked:hover,
[type=checkbox]:checked:focus,
[type=radio]:checked:hover,
[type=radio]:checked:focus {
    border-color: #fff0;
    background-color: currentColor
}

[type=checkbox]:indeterminate {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
    border-color: #fff0;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat
}

@media (forced-colors:active) {
    [type=checkbox]:indeterminate {
        -webkit-appearance: auto;
        -moz-appearance: auto;
        appearance: auto
    }
}

[type=checkbox]:indeterminate:hover,
[type=checkbox]:indeterminate:focus {
    border-color: #fff0;
    background-color: currentColor
}

[type=file] {
    background: unset;
    border-color: inherit;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-size: unset;
    line-height: inherit
}

[type=file]:focus {
    outline: 1px solid ButtonText;
    outline: 1px auto -webkit-focus-ring-color
}

* {
    min-width: 0
}

[type=checkbox]:checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='black' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")
}

[type=radio]:checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='black' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")
}

[type=checkbox]:focus,
[type=radio]:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
    --tw-ring-offset-width: 0px
}

[type=checkbox],
[type=checkbox]:checked,
[type=checkbox]:checked:hover,
[type=checkbox]:checked:focus,
[type=checkbox]:indeterminate:hover,
[type=radio],
[type=radio]:checked,
[type=radio]:checked:hover,
[type=radio]:checked:focus {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1))
}

.container {
    width: 100%
}

@media (min-width:480px) {
    .container {
        max-width: 480px
    }
}

@media (min-width:820px) {
    .container {
        max-width: 820px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1200px
    }
}

@media (min-width:1600px) {
    .container {
        max-width: 1600px
    }
}

.form-checkbox,
.form-radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    display: inline-block;
    vertical-align: middle;
    background-origin: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    flex-shrink: 0;
    height: 1rem;
    width: 1rem;
    color: #2563eb;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    --tw-shadow: 0 0 #0000
}

.form-checkbox {
    border-radius: 0
}

.form-checkbox:focus,
.form-radio:focus {
    outline: 2px solid #fff0;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty, );
    --tw-ring-offset-width: 2px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #2563eb;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)
}

.form-checkbox:checked,
.form-radio:checked {
    border-color: #fff0;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat
}

.form-checkbox:checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")
}

@media (forced-colors:active) {
    .form-checkbox:checked {
        -webkit-appearance: auto;
        -moz-appearance: auto;
        appearance: auto
    }
}

.form-checkbox:checked:hover,
.form-checkbox:checked:focus,
.form-radio:checked:hover,
.form-radio:checked:focus {
    border-color: #fff0;
    background-color: currentColor
}

.form-checkbox:indeterminate {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
    border-color: #fff0;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat
}

@media (forced-colors:active) {
    .form-checkbox:indeterminate {
        -webkit-appearance: auto;
        -moz-appearance: auto;
        appearance: auto
    }
}

.form-checkbox:indeterminate:hover,
.form-checkbox:indeterminate:focus {
    border-color: #fff0;
    background-color: currentColor
}

.prose {
    color: var(--tw-prose-body);
    max-width: 65ch
}

.prose :where(p):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1.25em;
    margin-bottom: 1.25em
}

.prose :where([class~=lead]):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: var(--tw-prose-lead);
    font-size: 1.25em;
    line-height: 1.6;
    margin-top: 1.2em;
    margin-bottom: 1.2em
}

.prose :where(a):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: var(--tw-prose-links);
    text-decoration: underline;
    font-weight: 500
}

.prose :where(strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: var(--tw-prose-bold);
    font-weight: 600
}

.prose :where(a strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: inherit
}

.prose :where(blockquote strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: inherit
}

.prose :where(thead th strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: inherit
}

.prose :where(ol):not(:where([class~=not-prose], [class~=not-prose] *)) {
    list-style-type: decimal;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-inline-start: 1.625em
}

.prose :where(ol[type=A]):not(:where([class~=not-prose], [class~=not-prose] *)) {
    list-style-type: upper-alpha
}

.prose :where(ol[type=a]):not(:where([class~=not-prose], [class~=not-prose] *)) {
    list-style-type: lower-alpha
}

.prose :where(ol[type=A s]):not(:where([class~=not-prose], [class~=not-prose] *)) {
    list-style-type: upper-alpha
}

.prose :where(ol[type=a s]):not(:where([class~=not-prose], [class~=not-prose] *)) {
    list-style-type: lower-alpha
}

.prose :where(ol[type=I]):not(:where([class~=not-prose], [class~=not-prose] *)) {
    list-style-type: upper-roman
}

.prose :where(ol[type=i]):not(:where([class~=not-prose], [class~=not-prose] *)) {
    list-style-type: lower-roman
}

.prose :where(ol[type=I s]):not(:where([class~=not-prose], [class~=not-prose] *)) {
    list-style-type: upper-roman
}

.prose :where(ol[type=i s]):not(:where([class~=not-prose], [class~=not-prose] *)) {
    list-style-type: lower-roman
}

.prose :where(ol[type="1"]):not(:where([class~=not-prose], [class~=not-prose] *)) {
    list-style-type: decimal
}

.prose :where(ul):not(:where([class~=not-prose], [class~=not-prose] *)) {
    list-style-type: disc;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-inline-start: 1.625em
}

.prose :where(ol>li):not(:where([class~=not-prose], [class~=not-prose] *))::marker {
    font-weight: 400;
    color: var(--tw-prose-counters)
}

.prose :where(ul>li):not(:where([class~=not-prose], [class~=not-prose] *))::marker {
    color: var(--tw-prose-bullets)
}

.prose :where(dt):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    margin-top: 1.25em
}

.prose :where(hr):not(:where([class~=not-prose], [class~=not-prose] *)) {
    border-color: var(--tw-prose-hr);
    border-top-width: 1px;
    margin-top: 3em;
    margin-bottom: 3em
}

.prose :where(blockquote):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-weight: 500;
    font-style: italic;
    color: var(--tw-prose-quotes);
    border-inline-start-width: .25rem;
    border-inline-start-color: var(--tw-prose-quote-borders);
    quotes: "вЂњ" "вЂќ" "вЂ" "вЂ™";
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-inline-start: 1em
}

.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose], [class~=not-prose] *)):before {
    content: open-quote
}

.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose], [class~=not-prose] *)):after {
    content: close-quote
}

.prose :where(h1):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: var(--tw-prose-headings);
    font-weight: 800;
    font-size: 2.25em;
    margin-top: 0;
    margin-bottom: .8888889em;
    line-height: 1.1111111
}

.prose :where(h1 strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-weight: 900;
    color: inherit
}

.prose :where(h2):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: var(--tw-prose-headings);
    font-weight: 700;
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333
}

.prose :where(h2 strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-weight: 800;
    color: inherit
}

.prose :where(h3):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    font-size: 1.25em;
    margin-top: 1.6em;
    margin-bottom: .6em;
    line-height: 1.6
}

.prose :where(h3 strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-weight: 700;
    color: inherit
}

.prose :where(h4):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: .5em;
    line-height: 1.5
}

.prose :where(h4 strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-weight: 700;
    color: inherit
}

.prose :where(img):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 2em;
    margin-bottom: 2em
}

.prose :where(picture):not(:where([class~=not-prose], [class~=not-prose] *)) {
    display: block;
    margin-top: 2em;
    margin-bottom: 2em
}

.prose :where(video):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 2em;
    margin-bottom: 2em
}

.prose :where(kbd):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-weight: 500;
    font-family: inherit;
    color: var(--tw-prose-kbd);
    box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px rgb(var(--tw-prose-kbd-shadows) / 10%);
    font-size: .875em;
    border-radius: .3125rem;
    padding-top: .1875em;
    padding-inline-end: .375em;
    padding-bottom: .1875em;
    padding-inline-start: .375em
}

.prose :where(code):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: var(--tw-prose-code);
    font-weight: 600;
    font-size: .875em
}

.prose :where(code):not(:where([class~=not-prose], [class~=not-prose] *)):before {
    content: "`"
}

.prose :where(code):not(:where([class~=not-prose], [class~=not-prose] *)):after {
    content: "`"
}

.prose :where(a code):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: inherit
}

.prose :where(h1 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: inherit
}

.prose :where(h2 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: inherit;
    font-size: .875em
}

.prose :where(h3 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: inherit;
    font-size: .9em
}

.prose :where(h4 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: inherit
}

.prose :where(blockquote code):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: inherit
}

.prose :where(thead th code):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: inherit
}

.prose :where(pre):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: var(--tw-prose-pre-code);
    background-color: var(--tw-prose-pre-bg);
    overflow-x: auto;
    font-weight: 400;
    font-size: .875em;
    line-height: 1.7142857;
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
    border-radius: .375rem;
    padding-top: .8571429em;
    padding-inline-end: 1.1428571em;
    padding-bottom: .8571429em;
    padding-inline-start: 1.1428571em
}

.prose :where(pre code):not(:where([class~=not-prose], [class~=not-prose] *)) {
    background-color: #fff0;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit
}

.prose :where(pre code):not(:where([class~=not-prose], [class~=not-prose] *)):before {
    content: none
}

.prose :where(pre code):not(:where([class~=not-prose], [class~=not-prose] *)):after {
    content: none
}

.prose :where(table):not(:where([class~=not-prose], [class~=not-prose] *)) {
    width: 100%;
    table-layout: auto;
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: .875em;
    line-height: 1.7142857
}

.prose :where(thead):not(:where([class~=not-prose], [class~=not-prose] *)) {
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-th-borders)
}

.prose :where(thead th):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    vertical-align: bottom;
    padding-inline-end: .5714286em;
    padding-bottom: .5714286em;
    padding-inline-start: .5714286em
}

.prose :where(tbody tr):not(:where([class~=not-prose], [class~=not-prose] *)) {
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-td-borders)
}

.prose :where(tbody tr:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    border-bottom-width: 0
}

.prose :where(tbody td):not(:where([class~=not-prose], [class~=not-prose] *)) {
    vertical-align: baseline
}

.prose :where(tfoot):not(:where([class~=not-prose], [class~=not-prose] *)) {
    border-top-width: 1px;
    border-top-color: var(--tw-prose-th-borders)
}

.prose :where(tfoot td):not(:where([class~=not-prose], [class~=not-prose] *)) {
    vertical-align: top
}

.prose :where(th, td):not(:where([class~=not-prose], [class~=not-prose] *)) {
    text-align: start
}

.prose :where(figure>*):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 0;
    margin-bottom: 0
}

.prose :where(figcaption):not(:where([class~=not-prose], [class~=not-prose] *)) {
    color: var(--tw-prose-captions);
    font-size: .875em;
    line-height: 1.4285714;
    margin-top: .8571429em
}

.prose {
    --tw-prose-body: #374151;
    --tw-prose-headings: #111827;
    --tw-prose-lead: #4b5563;
    --tw-prose-links: #111827;
    --tw-prose-bold: #111827;
    --tw-prose-counters: #6b7280;
    --tw-prose-bullets: #d1d5db;
    --tw-prose-hr: #e5e7eb;
    --tw-prose-quotes: #111827;
    --tw-prose-quote-borders: #e5e7eb;
    --tw-prose-captions: #6b7280;
    --tw-prose-kbd: #111827;
    --tw-prose-kbd-shadows: 17 24 39;
    --tw-prose-code: #111827;
    --tw-prose-pre-code: #e5e7eb;
    --tw-prose-pre-bg: #1f2937;
    --tw-prose-th-borders: #d1d5db;
    --tw-prose-td-borders: #e5e7eb;
    --tw-prose-invert-body: #d1d5db;
    --tw-prose-invert-headings: #fff;
    --tw-prose-invert-lead: #9ca3af;
    --tw-prose-invert-links: #fff;
    --tw-prose-invert-bold: #fff;
    --tw-prose-invert-counters: #9ca3af;
    --tw-prose-invert-bullets: #4b5563;
    --tw-prose-invert-hr: #374151;
    --tw-prose-invert-quotes: #f3f4f6;
    --tw-prose-invert-quote-borders: #374151;
    --tw-prose-invert-captions: #9ca3af;
    --tw-prose-invert-kbd: #fff;
    --tw-prose-invert-kbd-shadows: 255 255 255;
    --tw-prose-invert-code: #fff;
    --tw-prose-invert-pre-code: #d1d5db;
    --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
    --tw-prose-invert-th-borders: #4b5563;
    --tw-prose-invert-td-borders: #374151;
    font-size: 1rem;
    line-height: 1.75
}

.prose :where(picture>img):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 0;
    margin-bottom: 0
}

.prose :where(li):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: .5em;
    margin-bottom: .5em
}

.prose :where(ol>li):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-inline-start: .375em
}

.prose :where(ul>li):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-inline-start: .375em
}

.prose :where(.prose>ul>li p):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: .75em;
    margin-bottom: .75em
}

.prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1.25em
}

.prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-bottom: 1.25em
}

.prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1.25em
}

.prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-bottom: 1.25em
}

.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: .75em;
    margin-bottom: .75em
}

.prose :where(dl):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1.25em;
    margin-bottom: 1.25em
}

.prose :where(dd):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: .5em;
    padding-inline-start: 1.625em
}

.prose :where(hr+*):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 0
}

.prose :where(h2+*):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 0
}

.prose :where(h3+*):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 0
}

.prose :where(h4+*):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 0
}

.prose :where(thead th:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-inline-start: 0
}

.prose :where(thead th:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-inline-end: 0
}

.prose :where(tbody td, tfoot td):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-top: .5714286em;
    padding-inline-end: .5714286em;
    padding-bottom: .5714286em;
    padding-inline-start: .5714286em
}

.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-inline-start: 0
}

.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-inline-end: 0
}

.prose :where(figure):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 2em;
    margin-bottom: 2em
}

.prose :where(.prose>:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 0
}

.prose :where(.prose>:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-bottom: 0
}

.prose-sm {
    font-size: 1rem;
    line-height: 1.7142857
}

.prose-sm :where(p):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1em;
    margin-bottom: 1em
}

.prose-sm :where([class~=lead]):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-size: 1.2857143em;
    line-height: 1.5555556;
    margin-top: .8888889em;
    margin-bottom: .8888889em
}

.prose-sm :where(blockquote):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
    padding-inline-start: 1.1111111em;
    padding: 2.5rem 1.5rem 1.5rem
}

.prose-sm :where(h1):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-size: 3.5em;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.2
}

.prose-sm :where(h2):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-size: 3em;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.4
}

.prose-sm :where(h3):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-size: 2.5em;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.5555556
}

.prose-sm :where(h4):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.4285714;
    font-size: 2.5em
}

.prose-sm :where(img):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em
}

.prose-sm :where(picture):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em
}

.prose-sm :where(picture>img):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 0;
    margin-bottom: 0
}

.prose-sm :where(video):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em
}

.prose-sm :where(kbd):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-size: .8571429em;
    border-radius: .3125rem;
    padding-top: .1428571em;
    padding-inline-end: .3571429em;
    padding-bottom: .1428571em;
    padding-inline-start: .3571429em
}

.prose-sm :where(code):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-size: .8571429em
}

.prose-sm :where(h2 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-size: .9em
}

.prose-sm :where(h3 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-size: .8888889em
}

.prose-sm :where(pre):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-size: .8571429em;
    line-height: 1.6666667;
    margin-top: 1.6666667em;
    margin-bottom: 1.6666667em;
    border-radius: .25rem;
    padding-top: .6666667em;
    padding-inline-end: 1em;
    padding-bottom: .6666667em;
    padding-inline-start: 1em
}

.prose-sm :where(ol):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1.1428571em;
    margin-bottom: 1.1428571em;
    padding-inline-start: 1.5714286em
}

.prose-sm :where(ul):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1.1428571em;
    margin-bottom: 1.1428571em;
    padding-inline-start: 1.5714286em
}

.prose-sm :where(li):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: .2857143em;
    margin-bottom: .2857143em
}

.prose-sm :where(ol>li):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-inline-start: .4285714em
}

.prose-sm :where(ul>li):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-inline-start: .4285714em
}

.prose-sm :where(.prose-sm>ul>li p):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: .5714286em;
    margin-bottom: .5714286em
}

.prose-sm :where(.prose-sm>ul>li>p:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1.1428571em
}

.prose-sm :where(.prose-sm>ul>li>p:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-bottom: 1.1428571em
}

.prose-sm :where(.prose-sm>ol>li>p:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1.1428571em
}

.prose-sm :where(.prose-sm>ol>li>p:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-bottom: 1.1428571em
}

.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: .5714286em;
    margin-bottom: .5714286em
}

.prose-sm :where(dl):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1.1428571em;
    margin-bottom: 1.1428571em
}

.prose-sm :where(dt):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 1.1428571em
}

.prose-sm :where(dd):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: .2857143em;
    padding-inline-start: 1.5714286em
}

.prose-sm :where(hr):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 2.8571429em;
    margin-bottom: 2.8571429em
}

.prose-sm :where(hr+*):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 0
}

.prose-sm :where(h2+*):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 0
}

.prose-sm :where(h3+*):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 0
}

.prose-sm :where(h4+*):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 0
}

.prose-sm :where(table):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-size: .8571429em;
    line-height: 1.5
}

.prose-sm :where(thead th):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-inline-end: 1em;
    padding-bottom: .6666667em;
    padding-inline-start: 1em
}

.prose-sm :where(thead th:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-inline-start: 0
}

.prose-sm :where(thead th:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-inline-end: 0
}

.prose-sm :where(tbody td, tfoot td):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-top: .6666667em;
    padding-inline-end: 1em;
    padding-bottom: .6666667em;
    padding-inline-start: 1em
}

.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-inline-start: 0
}

.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    padding-inline-end: 0
}

.prose-sm :where(figure):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
}

.prose-sm :where(figure>*):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 0;
    margin-bottom: 0
}

.prose-sm :where(figcaption):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-size: .8571429em;
    line-height: 1.3333333;
    margin-top: .6666667em
}

.prose-sm :where(.prose-sm>:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-top: 0
}

.prose-sm :where(.prose-sm>:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
    margin-bottom: 0
}

.prose-sm :where(h5):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-size: 1.5em;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
}

.prose-sm :where(h6):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-size: 1em;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
}

.prose-sm :where(blockquote):not(:where([class~=not-prose], [class~=not-prose] *)):before {
    left: 1.5rem;
    top: 1.25rem
}

.prose-news :where(h1):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-family: Oswald, sans;
    font-weight: 900;
    text-transform: uppercase
}

.prose-news :where(h2):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-family: Oswald, sans;
    font-weight: 900;
    text-transform: uppercase
}

.prose-news :where(h3):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-family: Oswald, sans;
    font-weight: 900;
    text-transform: uppercase
}

.prose-news :where(h4):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-family: Oswald, sans;
    font-weight: 900;
    text-transform: uppercase
}

.prose-news :where(h5):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-family: Oswald, sans;
    font-weight: 900;
    text-transform: uppercase
}

.prose-news :where(h6):not(:where([class~=not-prose], [class~=not-prose] *)) {
    font-family: Oswald, sans;
    font-weight: 900;
    text-transform: uppercase
}

.prose-news :where(p):not(:where([class~=not-prose], [class~=not-prose] *)) {
    text-align: left
}

.prose-news :where(a):not(:where([class~=not-prose], [class~=not-prose] *)) {
    text-decoration: none;
    color: #f0e500
}

.prose-news :where(a):not(:where([class~=not-prose], [class~=not-prose] *)):hover {
    color: #fff;
    text-decoration: underline
}

.prose-news :where(ul):not(:where([class~=not-prose], [class~=not-prose] *)) {
    list-style-type: "в—Џ"
}

.prose-news :where(blockquote):not(:where([class~=not-prose], [class~=not-prose] *)) {
    overflow: auto;
    quotes: none;
    text-align: left;
    position: relative;
    border: none;
    background-color: #171717;
    font-weight: 400;
    font-variant: normal;
    font-family: Tektur, sans;
    font-style: normal
}

.prose-news :where(blockquote):not(:where([class~=not-prose], [class~=not-prose] *)):before {
    width: 2rem;
    height: 2rem;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='33' fill='white'%3E%3Cpath fill='%23525252' d='M14.5 9.764v11a6.006 6.006 0 0 1-6 6 1 1 0 0 1 0-2 4 4 0 0 0 4-4v-1H5a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h7.5a2 2 0 0 1 2 2Zm12.5-2h-7.5a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2H27v1a4 4 0 0 1-4 4 1 1 0 0 0 0 2 6.006 6.006 0 0 0 6-6v-11a2 2 0 0 0-2-2Z'/%3E%3C/svg%3E");
    display: block;
    position: absolute
}

.prose-news {
    --tw-prose-body: #fff;
    --tw-prose-headings: #fff;
    --tw-prose-lead: #fff;
    --tw-prose-links: #fff;
    --tw-prose-bold: #fff;
    --tw-prose-counters: #fff;
    --tw-prose-bullets: #fff;
    --tw-prose-hr: #fff;
    --tw-prose-quotes: #fff;
    --tw-prose-quote-borders: #fff;
    --tw-prose-captions: #fff;
    --tw-prose-code: #fff;
    --tw-prose-pre-code: #fff;
    --tw-prose-pre-bg: #fff;
    --tw-prose-th-borders: #fff;
    --tw-prose-td-borders: #fff;
    --tw-prose-invert-body: #fff;
    --tw-prose-invert-headings: #fff;
    --tw-prose-invert-lead: #fff;
    --tw-prose-invert-links: #fff;
    --tw-prose-invert-bold: #fff;
    --tw-prose-invert-counters: #fff;
    --tw-prose-invert-bullets: #fff;
    --tw-prose-invert-hr: #fff;
    --tw-prose-invert-quotes: #fff;
    --tw-prose-invert-quote-borders: #fff;
    --tw-prose-invert-captions: #fff;
    --tw-prose-invert-code: #fff;
    --tw-prose-invert-pre-code: #fff;
    --tw-prose-invert-pre-bg: #fff;
    --tw-prose-invert-th-borders: #fff;
    --tw-prose-invert-td-borders: #fff
}

.form-checkbox:checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='black' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")
}

.pointer-events-none {
    pointer-events: none
}

.collapse {
    visibility: collapse
}

.static {
    position: static
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.sticky {
    position: sticky
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.top-0 {
    top: 0
}

.top-6 {
    top: 1.5rem
}

.z-10 {
    z-index: 10
}

.z-20 {
    z-index: 20
}

.z-30 {
    z-index: 30
}

.z-50 {
    z-index: 50
}

.col-span-4 {
    grid-column: span 4 / span 4
}

.col-span-full {
    grid-column: 1 / -1
}

.col-start-2 {
    grid-column-start: 2
}

.row-auto {
    grid-row: auto
}

.m-0 {
    margin: 0
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem
}

.-ml-1 {
    margin-left: -.25rem
}

.-ml-2 {
    margin-left: -.5rem
}

.-mt-4 {
    margin-top: -1rem
}

.ml-auto {
    margin-left: auto
}

.mr-0 {
    margin-right: 0
}

.mr-4 {
    margin-right: 1rem
}

.mt-8 {
    margin-top: 2rem
}

.mt-auto {
    margin-top: auto
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.grid {
    display: grid
}

.hidden {
    display: none
}

.aspect-\[1\/1\.43\] {
    aspect-ratio: 1/1.43
}

.aspect-\[250\/48\] {
    aspect-ratio: 250/48
}

.aspect-\[344\/45\] {
    aspect-ratio: 344/45
}

.aspect-\[60\/112\] {
    aspect-ratio: 60/112
}

.aspect-square {
    aspect-ratio: 1 / 1
}

.aspect-video {
    aspect-ratio: 16 / 9
}

.size-full {
    width: 100%;
    height: 100%
}

.h-0 {
    height: 0
}

.h-1 {
    height: .25rem
}

.h-10 {
    height: 2.5rem
}

.h-12 {
    height: 3rem
}

.h-14 {
    height: 3.5rem
}

.h-16 {
    height: 4rem
}

.h-2 {
    height: .5rem
}

.h-20 {
    height: 5rem
}

.h-36 {
    height: 9rem
}

.h-40 {
    height: 10rem
}

.h-48 {
    height: 12rem
}

.h-6 {
    height: 1.5rem
}

.h-64 {
    height: 16rem
}

.h-7 {
    height: 1.75rem
}

.h-8 {
    height: 2rem
}

.h-\[100vw\] {
    height: 100vw
}

.h-\[1px\] {
    height: 1px
}

.h-\[2px\] {
    height: 2px
}

.h-\[calc\(100vw-6rem\)\] {
    height: calc(100vw - 6rem)
}

.h-full {
    height: 100%
}

.h-max {
    height: -moz-max-content;
    height: max-content
}

.h-min {
    height: -moz-min-content;
    height: min-content
}

.h-screen {
    height: 100vh
}

.min-h-0 {
    min-height: 0
}

.min-h-\[calc\(100vh-8rem\)\] {
    min-height: calc(100vh - 8rem)
}

.min-h-full {
    min-height: 100%
}

.min-h-screen {
    min-height: 100vh
}

.w-10 {
    width: 2.5rem
}

.w-12 {
    width: 3rem
}

.w-16 {
    width: 4rem
}

.w-2 {
    width: .5rem
}

.w-20 {
    width: 5rem
}

.w-4 {
    width: 1rem
}

.w-40 {
    width: 10rem
}

.w-52 {
    width: 13rem
}

.w-6 {
    width: 1.5rem
}

.w-8 {
    width: 2rem
}

.w-full {
    width: 100%
}

.w-max {
    width: -moz-max-content;
    width: max-content
}

.w-min {
    width: -moz-min-content;
    width: min-content
}

.w-screen {
    width: 100vw
}

.min-w-0 {
    min-width: 0
}

.min-w-max {
    min-width: -moz-max-content;
    min-width: max-content
}

.max-w-\[28rem\] {
    max-width: 28rem
}

.max-w-\[30rem\] {
    max-width: 30rem
}

.max-w-full {
    max-width: 100%
}

.flex-auto {
    flex: 1 1 auto
}

.flex-none {
    flex: none
}

.shrink-0 {
    flex-shrink: 0
}

.grow-0 {
    flex-grow: 0
}

.border-collapse {
    border-collapse: collapse
}

.-translate-y-3 {
    --tw-translate-y: -.75rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-y-80 {
    --tw-translate-y: -20rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-x-2 {
    --tw-translate-x: .5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-3 {
    --tw-translate-y: .75rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-6 {
    --tw-translate-y: 1.5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-rotate-45 {
    --tw-rotate: -45deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.rotate-180 {
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.rotate-45 {
    --tw-rotate: 45deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@keyframes marquee {
    0% {
        transform: translate(100vw)
    }

    to {
        transform: translate(-100vw)
    }
}

.animate-marquee {
    animation: marquee 20s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.animate-spin-slow {
    animation: spin 3s linear infinite
}

.cursor-pointer {
    cursor: pointer
}

.list-decimal {
    list-style-type: decimal
}

.appearance-none {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr)
}

.grid-flow-col {
    grid-auto-flow: column
}

.grid-flow-col-dense {
    grid-auto-flow: column dense
}

.auto-rows-auto {
    grid-auto-rows: auto
}

.auto-rows-min {
    grid-auto-rows: min-content
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.grid-cols-subgrid {
    grid-template-columns: subgrid
}

.grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr))
}

.grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr))
}

.flex-row {
    flex-direction: row
}

.flex-col {
    flex-direction: column
}

.flex-col-reverse {
    flex-direction: column-reverse
}

.flex-wrap {
    flex-wrap: wrap
}

.flex-nowrap {
    flex-wrap: nowrap
}

.place-content-center {
    place-content: center
}

.place-content-start {
    place-content: start
}

.content-center {
    align-content: center
}

.content-between {
    align-content: space-between
}

.items-start {
    align-items: flex-start
}

.items-center {
    align-items: center
}

.justify-start {
    justify-content: flex-start
}

.justify-end {
    justify-content: flex-end
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.gap-1 {
    gap: .25rem
}

.gap-10 {
    gap: 2.5rem
}

.gap-12 {
    gap: 3rem
}

.gap-16 {
    gap: 4rem
}

.gap-2 {
    gap: .5rem
}

.gap-20 {
    gap: 5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-8 {
    gap: 2rem
}

.gap-x-6 {
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem
}

.gap-y-10 {
    row-gap: 2.5rem
}

.gap-y-12 {
    row-gap: 3rem
}

.gap-y-14 {
    row-gap: 3.5rem
}

.gap-y-16 {
    row-gap: 4rem
}

.gap-y-2 {
    row-gap: .5rem
}

.gap-y-6 {
    row-gap: 1.5rem
}

.self-start {
    align-self: flex-start
}

.self-end {
    align-self: flex-end
}

.self-stretch {
    align-self: stretch
}

.justify-self-end {
    justify-self: end
}

.overflow-hidden {
    overflow: hidden
}

.whitespace-nowrap {
    white-space: nowrap
}

.border-none {
    border-style: none
}

.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1))
}

.bg-\[\#1e1e1e\] {
    --tw-bg-opacity: 1;
    background-color: rgb(30 30 30 / var(--tw-bg-opacity, 1))
}

.bg-brand {
    --tw-bg-opacity: 1;
    background-color: var(--color-accent)
}

.bg-neutral-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1))
}

.bg-neutral-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1))
}

.bg-neutral-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1))
}

.bg-neutral-950\/90 {
    background-color: #0a0a0ae6
}

.bg-transparent {
    background-color: #fff0
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}

.bg-\[url\(\'\/img\/units-combat\.jpeg\'\)\] {
    background-image: url(/wp-content/themes/azov/img/units-combat.jpeg)
}

.bg-\[url\(\'\/img\/units-maintenance\.jpeg\'\)\] {
    background-image: url(/wp-content/themes/azov/img/units-maintenance.jpeg)
}

.bg-\[url\(\'\/img\/units-medical\.jpeg\'\)\] {
    background-image: url(/wp-content/themes/azov/img/units-medical.jpeg)
}

.bg-cover {
    background-size: cover
}

.bg-no-repeat {
    background-repeat: no-repeat
}

.fill-black {
    fill: #000
}

.fill-brand {
    fill: var(--color-accent);
}

.fill-white {
    fill: #fff
}

.object-contain {
    -o-object-fit: contain;
    object-fit: contain
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover
}

.object-center {
    -o-object-position: center;
    object-position: center
}

.p-0 {
    padding: 0
}

.p-2 {
    padding: .5rem
}

.p-2\.5 {
    padding: .625rem
}

.p-4 {
    padding: 1rem
}

.p-6 {
    padding: 1.5rem
}

.px-2 {
    padding-left: .5rem;
    padding-right: .5rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

.pb-10 {
    padding-bottom: 2.5rem
}

.pb-12 {
    padding-bottom: 3rem
}

.pb-16 {
    padding-bottom: 4rem
}

.pb-20 {
    padding-bottom: 5rem
}

.pb-8 {
    padding-bottom: 2rem
}

.pb-\[env\(safe-area-inset-bottom\)\] {
    padding-bottom: env(safe-area-inset-bottom)
}

.pl-0 {
    padding-left: 0
}

.pl-1 {
    padding-left: .25rem
}

.pl-4 {
    padding-left: 1rem
}

.pl-5 {
    padding-left: 1.25rem
}

.pr-12 {
    padding-right: 3rem
}

.pr-2 {
    padding-right: .5rem
}

.pt-1 {
    padding-top: .25rem
}

.pt-1\.5 {
    padding-top: .375rem
}

.pt-10 {
    padding-top: 2.5rem
}

.pt-24 {
    padding-top: 6rem
}

.pt-6 {
    padding-top: 1.5rem
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.font-display {
    font-family: Oswald, sans
}

.font-para {
    font-family: Tektur, sans
}

.font-sans {
    font-family: Oswald, sans
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-2xl\/\[100\%\] {
    font-size: 1.5rem;
    line-height: 100%
}

.text-2xl\/none {
    font-size: 1.5rem;
    line-height: 1
}

.text-2xl\/normal {
    font-size: 1.5rem;
    line-height: 1.5
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem
}

.text-4xl\/9 {
    font-size: 2.25rem;
    line-height: 2.25rem
}

.text-4xl\/none {
    font-size: 2.25rem;
    line-height: 1
}

.text-5xl {
    font-size: 3rem;
    line-height: 1
}

.text-5xl\/\[\.8\] {
    font-size: 3rem;
    line-height: .8
}

.text-5xl\/none {
    font-size: 3rem;
    line-height: 1
}

.text-\[4rem\] {
    font-size: 4rem
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-base\/none {
    font-size: 1rem;
    line-height: 1
}

.text-base\/normal {
    font-size: 1rem;
    line-height: 1.5
}

.text-base\/tight {
    font-size: 1rem;
    line-height: 1.25
}

.text-lg,
.text-lg\/7 {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-lg\/none {
    font-size: 1.125rem;
    line-height: 1
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-sm\/normal {
    font-size: .875rem;
    line-height: 1.5
}

.text-sm\/tight {
    font-size: .875rem;
    line-height: 1.25
}

.text-xl,
.text-xl\/7 {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-xl\/none {
    font-size: 1.25rem;
    line-height: 1
}

.text-xl\/tight {
    font-size: 1.25rem;
    line-height: 1.25
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.text-xs\/3 {
    font-size: .75rem;
    line-height: .75rem
}

.text-xs\/none {
    font-size: .75rem;
    line-height: 1
}

.font-black {
    font-weight: 900
}

.font-bold {
    font-weight: 700
}

.font-extrabold {
    font-weight: 800
}

.font-medium {
    font-weight: 500
}

.font-normal {
    font-weight: 400
}

.font-semibold {
    font-weight: 600
}

.uppercase {
    text-transform: uppercase
}

.leading-4 {
    line-height: 1rem
}

.leading-7 {
    line-height: 1.75rem
}

.leading-9 {
    line-height: 2.25rem
}

.leading-\[0\.95\] {
    line-height: .95
}

.leading-none {
    line-height: 1
}

.leading-normal {
    line-height: 1.5
}

.leading-tight {
    line-height: 1.25
}

.tracking-tight {
    letter-spacing: -.025em
}

.text-black {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1))
}

.text-brand {
    --tw-text-opacity: 1;
    color: rgb(240 229 0 / var(--tw-text-opacity, 1))
}

.text-neutral-500 {
    --tw-text-opacity: 1;
    color: rgb(115 115 115 / var(--tw-text-opacity, 1))
}

.text-neutral-900 {
    --tw-text-opacity: 1;
    color: rgb(23 23 23 / var(--tw-text-opacity, 1))
}

.text-neutral-950 {
    --tw-text-opacity: 1;
    color: rgb(10 10 10 / var(--tw-text-opacity, 1))
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.opacity-0 {
    opacity: 0
}

.opacity-100 {
    opacity: 1
}

.mix-blend-darken {
    mix-blend-mode: darken
}

.outline {
    outline-style: solid
}

.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.transition-\[opacity\,transform\] {
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.duration-100 {
    transition-duration: .1s
}

.duration-200 {
    transition-duration: .2s
}

.\@container {
    container-type: inline-size
}

.border-long-dashed {
    --color-line: 10px;
    --transparent-line: 10px;
    border: none;
    background-image: repeating-linear-gradient(to right, var(--border-color, white) 0, var(--border-color, white) var(--color-line), transparent calc(var(--transparent-line)), transparent calc(2 * var(--transparent-line)))
}

.\[--border-color\:\#525252\] {
    --border-color: #525252
}

.\[animation-delay\:0ms\] {
    animation-delay: 0ms
}

.\[animation-delay\:100ms\] {
    animation-delay: .1s
}

.\[animation-delay\:150ms\] {
    animation-delay: .15s
}

.\[animation-delay\:200ms\] {
    animation-delay: .2s
}

.\[animation-delay\:50ms\] {
    animation-delay: 50ms
}

[x-cloak] {
    display: none !important
}

:root .has-very-light-gray-background-color {
    --tw-bg-opacity: 1;
    background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    padding-right: 6rem;
    text-align: left;
    position: relative
}

:root .has-very-light-gray-background-color:before {
    width: 2rem;
    height: 2rem;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='33' fill='white'%3E%3Cpath fill='%23525252' d='M14.5 9.764v11a6.006 6.006 0 0 1-6 6 1 1 0 0 1 0-2 4 4 0 0 0 4-4v-1H5a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h7.5a2 2 0 0 1 2 2Zm12.5-2h-7.5a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2H27v1a4 4 0 0 1-4 4 1 1 0 0 0 0 2 6.006 6.006 0 0 0 6-6v-11a2 2 0 0 0-2-2Z'/%3E%3C/svg%3E");
    display: block;
    position: absolute;
    right: 1rem
}

:root .has-very-light-gray-background-color em {
    font-style: normal
}

:root .wp-block-embed__wrapper {
    display: block flex;
    flex-direction: column;
    align-items: center
}

:root .wp-block-embed__wrapper>iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    width: 100%
}

:root .screen-reader-response {
    display: none
}

:root .wpcf7-not-valid-tip {
    flex-basis: 100%;
    padding: 1rem 1rem 1.5rem
}

:root .iti {
    --iti-border-color: #d1d5db;
    --iti-dialcode-color: #fff;
    --iti-dropdown-bg: #171717;
    --iti-arrow-color: #fff;
    --iti-hover-color: #404040;
    --iti-path-flags-1x: url(/wp-content/themes/azov/img/flags/flags.webp);
    --iti-path-flags-2x: url(/wp-content/themes/azov/img/flags/flags@2x.webp);
    --iti-path-globe-1x: url(/wp-content/themes/azov/img/flags/globe.webp);
    --iti-path-globe-2x: url(/wp-content/themes/azov/img/flags/globe@2x.webp);
    width: 100%
}

:root .iti__country-name {
    max-width: 70%;
    color: #fff
}

:root .iti__search-input {
    --tw-bg-opacity: 1;
    background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1))
}

:root .iti--fullscreen-popup.iti--container {
    background-color: #171717
}

@media (min-width:480px) {
    .sm\:prose-base {
        font-size: 1rem;
        line-height: 1.75
    }

    .sm\:prose-base :where(p):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 1em;
        margin-bottom: 1em
    }

    .sm\:prose-base :where([class~=lead]):not(:where([class~=not-prose], [class~=not-prose] *)) {
        font-size: 1.25em;
        line-height: 1.6;
        margin-top: 1.2em;
        margin-bottom: 1.2em
    }

    .sm\:prose-base :where(blockquote):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 1.6em;
        margin-bottom: 1.6em;
        padding-inline-start: 1em;
        padding: 0 4rem 1.5rem 1.5rem
    }

    .sm\:prose-base :where(h1):not(:where([class~=not-prose], [class~=not-prose] *)) {
        font-size: 3.5em;
        margin-top: 3rem;
        margin-bottom: 3rem;
        line-height: 1.1111111
    }

    .sm\:prose-base :where(h2):not(:where([class~=not-prose], [class~=not-prose] *)) {
        font-size: 3em;
        margin-top: 3rem;
        margin-bottom: 3rem;
        line-height: 1.3333333
    }

    .sm\:prose-base :where(h3):not(:where([class~=not-prose], [class~=not-prose] *)) {
        font-size: 2.5em;
        margin-top: 3rem;
        margin-bottom: 3rem;
        line-height: 1.6
    }

    .sm\:prose-base :where(h4):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 3rem;
        margin-bottom: 3rem;
        line-height: 1.5;
        font-size: 2.5em
    }

    .sm\:prose-base :where(img):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 2em;
        margin-bottom: 2em
    }

    .sm\:prose-base :where(picture):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 2em;
        margin-bottom: 2em
    }

    .sm\:prose-base :where(picture>img):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 0;
        margin-bottom: 0
    }

    .sm\:prose-base :where(video):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 2em;
        margin-bottom: 2em
    }

    .sm\:prose-base :where(kbd):not(:where([class~=not-prose], [class~=not-prose] *)) {
        font-size: .875em;
        border-radius: .3125rem;
        padding-top: .1875em;
        padding-inline-end: .375em;
        padding-bottom: .1875em;
        padding-inline-start: .375em
    }

    .sm\:prose-base :where(code):not(:where([class~=not-prose], [class~=not-prose] *)) {
        font-size: .875em
    }

    .sm\:prose-base :where(h2 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
        font-size: .875em
    }

    .sm\:prose-base :where(h3 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
        font-size: .9em
    }

    .sm\:prose-base :where(pre):not(:where([class~=not-prose], [class~=not-prose] *)) {
        font-size: .875em;
        line-height: 1.7142857;
        margin-top: 1.7142857em;
        margin-bottom: 1.7142857em;
        border-radius: .375rem;
        padding-top: .8571429em;
        padding-inline-end: 1.1428571em;
        padding-bottom: .8571429em;
        padding-inline-start: 1.1428571em
    }

    .sm\:prose-base :where(ol):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 1.25em;
        margin-bottom: 1.25em;
        padding-inline-start: 1.625em
    }

    .sm\:prose-base :where(ul):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 1.25em;
        margin-bottom: 1.25em;
        padding-inline-start: 1.625em
    }

    .sm\:prose-base :where(li):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: .5em;
        margin-bottom: .5em
    }

    .sm\:prose-base :where(ol>li):not(:where([class~=not-prose], [class~=not-prose] *)) {
        padding-inline-start: .375em
    }

    .sm\:prose-base :where(ul>li):not(:where([class~=not-prose], [class~=not-prose] *)) {
        padding-inline-start: .375em
    }

    .sm\:prose-base :where(.sm\:prose-base>ul>li p):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: .75em;
        margin-bottom: .75em
    }

    .sm\:prose-base :where(.sm\:prose-base>ul>li>p:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 1.25em
    }

    .sm\:prose-base :where(.sm\:prose-base>ul>li>p:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-bottom: 1.25em
    }

    .sm\:prose-base :where(.sm\:prose-base>ol>li>p:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 1.25em
    }

    .sm\:prose-base :where(.sm\:prose-base>ol>li>p:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-bottom: 1.25em
    }

    .sm\:prose-base :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: .75em;
        margin-bottom: .75em
    }

    .sm\:prose-base :where(dl):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 1.25em;
        margin-bottom: 1.25em
    }

    .sm\:prose-base :where(dt):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 1.25em
    }

    .sm\:prose-base :where(dd):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: .5em;
        padding-inline-start: 1.625em
    }

    .sm\:prose-base :where(hr):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 3em;
        margin-bottom: 3em
    }

    .sm\:prose-base :where(hr+*):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 0
    }

    .sm\:prose-base :where(h2+*):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 0
    }

    .sm\:prose-base :where(h3+*):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 0
    }

    .sm\:prose-base :where(h4+*):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 0
    }

    .sm\:prose-base :where(table):not(:where([class~=not-prose], [class~=not-prose] *)) {
        font-size: .875em;
        line-height: 1.7142857
    }

    .sm\:prose-base :where(thead th):not(:where([class~=not-prose], [class~=not-prose] *)) {
        padding-inline-end: .5714286em;
        padding-bottom: .5714286em;
        padding-inline-start: .5714286em
    }

    .sm\:prose-base :where(thead th:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
        padding-inline-start: 0
    }

    .sm\:prose-base :where(thead th:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
        padding-inline-end: 0
    }

    .sm\:prose-base :where(tbody td, tfoot td):not(:where([class~=not-prose], [class~=not-prose] *)) {
        padding-top: .5714286em;
        padding-inline-end: .5714286em;
        padding-bottom: .5714286em;
        padding-inline-start: .5714286em
    }

    .sm\:prose-base :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
        padding-inline-start: 0
    }

    .sm\:prose-base :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
        padding-inline-end: 0
    }

    .sm\:prose-base :where(figure):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 3rem;
        margin-bottom: 3rem
    }

    .sm\:prose-base :where(figure>*):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 0;
        margin-bottom: 0
    }

    .sm\:prose-base :where(figcaption):not(:where([class~=not-prose], [class~=not-prose] *)) {
        font-size: .875em;
        line-height: 1.4285714;
        margin-top: .8571429em
    }

    .sm\:prose-base :where(.sm\:prose-base>:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-top: 0
    }

    .sm\:prose-base :where(.sm\:prose-base>:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
        margin-bottom: 0
    }

    .sm\:prose-base :where(h5):not(:where([class~=not-prose], [class~=not-prose] *)) {
        font-size: 1.5em;
        margin-top: 3rem;
        margin-bottom: 3rem
    }

    .sm\:prose-base :where(h6):not(:where([class~=not-prose], [class~=not-prose] *)) {
        font-size: 1em;
        margin-top: 3rem;
        margin-bottom: 3rem
    }

    .sm\:prose-base :where(blockquote):not(:where([class~=not-prose], [class~=not-prose] *)):before {
        right: 1rem;
        top: 1.25rem
    }
}

.placeholder\:text-neutral-500::-moz-placeholder {
    --tw-text-opacity: 1;
    color: rgb(115 115 115 / var(--tw-text-opacity, 1))
}

.placeholder\:text-neutral-500::placeholder {
    --tw-text-opacity: 1;
    color: rgb(115 115 115 / var(--tw-text-opacity, 1))
}

.checked\:text-white:checked {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.required\:mr-0:required {
    margin-right: 0
}

.hover\:cursor-pointer:hover {
    cursor: pointer
}

.hover\:bg-brand:hover {
    --tw-bg-opacity: 1;
    /* background-color: rgb(240 229 0 / var(--tw-bg-opacity, 1)) */
    background-color: var(--color-accent);
}

.hover\:text-black:hover {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1))
}

.hover\:text-brand:hover {
    --tw-text-opacity: 1;
    color: rgb(240 229 0 / var(--tw-text-opacity, 1))
}

.enabled\:opacity-100:enabled {
    opacity: 1
}

.disabled\:opacity-30:disabled {
    opacity: .3
}

.group:hover .group-hover\:block {
    display: block
}

.group:hover .group-hover\:hidden {
    display: none
}

.group:hover .group-hover\:w-4 {
    width: 1rem
}

.group:hover .group-hover\:w-8 {
    width: 2rem
}

.group:hover .group-hover\:scale-x-\[1\.5\] {
    --tw-scale-x: 1.5;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.group:hover .group-hover\:bg-brand\/80 {
    background-color: #f0e500cc
}

.group:hover .group-hover\:bg-brand\/90 {
    background-color: #f0e500e6
}

.group\/h:hover .group-hover\/h\:fill-brand,
.group:hover .group-hover\:fill-brand {
    fill: #f0e500
}

.group:hover .group-hover\:text-black {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1))
}

.group:hover .group-hover\:text-brand {
    --tw-text-opacity: 1;
    color: rgb(240 229 0 / var(--tw-text-opacity, 1))
}

.group:hover .group-hover\:grayscale {
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.group:enabled .group-enabled\:hidden {
    display: none
}

.group:disabled .group-disabled\:hidden {
    display: none
}

.peer:checked~.peer-checked\:bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}

.peer:checked~.peer-checked\:text-neutral-900 {
    --tw-text-opacity: 1;
    color: rgb(23 23 23 / var(--tw-text-opacity, 1))
}

.data-\[selected\]\:flex[data-selected],
.group[data-open] .group-data-\[open\]\:flex {
    display: flex
}

.group[data-open] .group-data-\[open\]\:rotate-180 {
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.group[data-open] .group-data-\[open\]\:bg-neutral-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1))
}

@container (min-width:10rem) {
    .\@\[10rem\]\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }
}

@container (min-width:12rem) {
    .\@3xs\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

@container (min-width:24rem) {
    .\@sm\:text-\[3rem\] {
        font-size: 3rem
    }
}

@container (min-width:28rem) {
    .\@md\:text-\[3\.5rem\] {
        font-size: 3.5rem
    }
}

@container (min-width:32rem) {
    .\@lg\:text-\[4rem\] {
        font-size: 4rem
    }
}

@container (min-width:36rem) {
    .\@xl\:text-\[4rem\] {
        font-size: 4rem
    }
}

@container (min-width:42rem) {
    .\@2xl\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .\@2xl\:text-\[5rem\] {
        font-size: 5rem
    }

    .\@2xl\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }
}

@container (min-width:48rem) {
    .\@3xl\:text-\[6rem\] {
        font-size: 6rem
    }
}

@container (min-width:56rem) {
    .\@4xl\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

.prose-headings\:font-display :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~=not-prose], [class~=not-prose] *))) {
    font-family: Oswald, sans
}

.prose-p\:text-left :is(:where(p):not(:where([class~=not-prose], [class~=not-prose] *))) {
    text-align: left
}

.prose-a\:no-underline :is(:where(a):not(:where([class~=not-prose], [class~=not-prose] *))) {
    text-decoration-line: none
}

.hover\:prose-a\:text-brand :is(:where(a):not(:where([class~=not-prose], [class~=not-prose] *))):hover {
    --tw-text-opacity: 1;
    color: rgb(240 229 0 / var(--tw-text-opacity, 1))
}

@media not all and (min-width:820px) {
    .max-md\:hidden {
        display: none
    }
}

@media (min-width:480px) {
    .sm\:col-span-4 {
        grid-column: span 4 / span 4
    }

    .sm\:col-span-5 {
        grid-column: span 5 / span 5
    }

    .sm\:col-start-2 {
        grid-column-start: 2
    }

    .sm\:block {
        display: block
    }

    .sm\:flex {
        display: flex
    }

    .sm\:grid {
        display: grid
    }

    .sm\:hidden {
        display: none
    }

    .sm\:aspect-\[3\/2\] {
        aspect-ratio: 3/2
    }

    .sm\:aspect-\[68\/43\] {
        aspect-ratio: 68/43
    }

    .sm\:h-14 {
        height: 3.5rem
    }

    .sm\:h-28 {
        height: 7rem
    }

    .sm\:h-full {
        height: 100%
    }

    .sm\:w-max {
        width: -moz-max-content;
        width: max-content
    }

    .sm\:max-w-\[35rem\] {
        max-width: 35rem
    }

    .sm\:grow {
        flex-grow: 1
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .sm\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .sm\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr))
    }

    .sm\:grid-cols-subgrid {
        grid-template-columns: subgrid
    }

    .sm\:flex-row {
        flex-direction: row
    }

    .sm\:flex-col {
        flex-direction: column
    }

    .sm\:flex-col-reverse {
        flex-direction: column-reverse
    }

    .sm\:flex-nowrap {
        flex-wrap: nowrap
    }

    .sm\:items-start {
        align-items: flex-start
    }

    .sm\:justify-start {
        justify-content: flex-start
    }

    .sm\:gap-10 {
        gap: 2.5rem
    }

    .sm\:gap-20 {
        gap: 5rem
    }

    .sm\:gap-4 {
        gap: 1rem
    }

    .sm\:gap-y-10 {
        row-gap: 2.5rem
    }

    .sm\:py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem
    }

    .sm\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .sm\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem
    }

    .sm\:pb-12 {
        padding-bottom: 3rem
    }

    .sm\:pt-24 {
        padding-top: 6rem
    }

    .sm\:text-left {
        text-align: left
    }

    .sm\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .sm\:text-3xl\/none {
        font-size: 1.875rem;
        line-height: 1
    }

    .sm\:text-4xl\/9 {
        font-size: 2.25rem;
        line-height: 2.25rem
    }

    .sm\:text-5xl {
        font-size: 3rem;
        line-height: 1
    }

    .sm\:text-6xl {
        font-size: 3.75rem;
        line-height: 1
    }

    .sm\:text-7xl\/\[\.8\] {
        font-size: 4.5rem;
        line-height: .8
    }

    .sm\:text-base\/none {
        font-size: 1rem;
        line-height: 1
    }

    .sm\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }

    .sm\:leading-\[0\.8\] {
        line-height: .8
    }

    @media not all and (min-width:820px) {
        .sm\:max-md\:flex {
            display: flex
        }

        .sm\:max-md\:text-3xl {
            font-size: 1.875rem;
            line-height: 2.25rem
        }

        .sm\:max-md\:text-base {
            font-size: 1rem;
            line-height: 1.5rem
        }
    }
}

@media (min-width:820px) {
    .md\:order-1 {
        order: 1
    }

    .md\:order-2 {
        order: 2
    }

    .md\:col-span-2 {
        grid-column: span 2 / span 2
    }

    .md\:col-span-3 {
        grid-column: span 3 / span 3
    }

    .md\:col-span-4 {
        grid-column: span 4 / span 4
    }

    .md\:col-start-2 {
        grid-column-start: 2
    }

    .md\:col-start-4 {
        grid-column-start: 4
    }

    .md\:mx-0 {
        margin-left: 0;
        margin-right: 0
    }

    .md\:my-auto {
        margin-top: auto;
        margin-bottom: auto
    }

    .md\:mr-auto {
        margin-right: auto
    }

    .md\:flex {
        display: flex
    }

    .md\:grid {
        display: grid
    }

    .md\:hidden {
        display: none
    }

    .md\:aspect-\[12\/7\] {
        aspect-ratio: 12/7
    }

    .md\:aspect-\[16\/9\] {
        aspect-ratio: 16/9
    }

    .md\:aspect-\[3\/2\] {
        aspect-ratio: 3/2
    }

    .md\:aspect-square {
        aspect-ratio: 1 / 1
    }

    .md\:h-16 {
        height: 4rem
    }

    .md\:h-\[calc\(40rem-6rem\)\] {
        height: 34rem
    }

    .md\:w-16 {
        width: 4rem
    }

    .md\:w-24 {
        width: 6rem
    }

    .md\:max-w-\[33rem\] {
        max-width: 33rem
    }

    .md\:max-w-\[45rem\] {
        max-width: 45rem
    }

    .md\:max-w-\[46rem\] {
        max-width: 46rem
    }

    .md\:max-w-\[66rem\] {
        max-width: 66rem
    }

    .md\:max-w-\[800px\] {
        max-width: 800px
    }

    .md\:max-w-none {
        max-width: none
    }

    .md\:flex-grow {
        flex-grow: 1
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .md\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr))
    }

    .md\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr))
    }

    .md\:flex-row {
        flex-direction: row
    }

    .md\:flex-col {
        flex-direction: column
    }

    .md\:items-start {
        align-items: flex-start
    }

    .md\:justify-start {
        justify-content: flex-start
    }

    .md\:justify-end {
        justify-content: flex-end
    }

    .md\:justify-center {
        justify-content: center
    }

    .md\:gap-10 {
        gap: 2.5rem
    }

    .md\:gap-32 {
        gap: 8rem
    }

    .md\:gap-6 {
        gap: 1.5rem
    }

    .md\:gap-y-20 {
        row-gap: 5rem
    }

    .md\:bg-\[url\(\'\/img\/recruit-centers\.jpeg\'\)\] {
        background-image: url(/wp-content/themes/azov/img/recruit-centers.jpeg)
    }

    .md\:bg-\[url\(\'\/wp-content\/themes\/azov\/assets\/recruit-centers\.jpeg\'\)\] {
        background-image: url(/wp-content/themes/azov/assets/recruit-centers.jpeg)
    }

    .md\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }

    .md\:text-left {
        text-align: left
    }

    .md\:text-center {
        text-align: center
    }

    .md\:text-right {
        text-align: right
    }

    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .md\:text-3xl\/none {
        font-size: 1.875rem;
        line-height: 1
    }

    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }

    .md\:text-5xl,
    .md\:text-5xl\/none {
        font-size: 3rem;
        line-height: 1
    }

    .md\:text-5xl\/tight {
        font-size: 3rem;
        line-height: 1.25
    }

    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1
    }

    .md\:text-7xl {
        font-size: 4.5rem;
        line-height: 1
    }

    .md\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }

    .md\:text-base\/none {
        font-size: 1rem;
        line-height: 1
    }

    .md\:text-xl\/tight {
        font-size: 1.25rem;
        line-height: 1.25
    }

    .md\:font-medium {
        font-weight: 500
    }

    @media not all and (min-width:1200px) {
        .md\:max-lg\:col-span-full {
            grid-column: 1 / -1
        }

        .md\:max-lg\:aspect-\[2\/1\] {
            aspect-ratio: 2/1
        }
    }

    @media (max-width:980px) {
        .md\:max-\[980px\]\:text-lg\/7 {
            font-size: 1.125rem;
            line-height: 1.75rem
        }
    }
}

@media (min-width:1200px) {
    .lg\:block {
        display: block
    }

    .lg\:flex {
        display: flex
    }

    .lg\:hidden {
        display: none
    }

    .lg\:aspect-\[2\/1\] {
        aspect-ratio: 2/1
    }

    .lg\:w-24 {
        width: 6rem
    }

    .lg\:w-\[16\.5rem\] {
        width: 16.5rem
    }

    .lg\:max-w-\[1200px\] {
        max-width: 1200px
    }

    .lg\:max-w-\[860px\] {
        max-width: 860px
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .lg\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr))
    }

    .lg\:grid-rows-1 {
        grid-template-rows: repeat(1, minmax(0, 1fr))
    }

    .lg\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }

    .lg\:text-8xl {
        font-size: 6rem;
        line-height: 1
    }

    .lg\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }

    .lg\:text-lg\/7 {
        font-size: 1.125rem;
        line-height: 1.75rem
    }

    .lg\:text-lg\/normal {
        font-size: 1.125rem;
        line-height: 1.5
    }
}

@media (min-height:42rem) {
    .\[\@media\(min-height\:42rem\)\]\:h-16 {
        height: 4rem
    }

    .\[\@media\(min-height\:42rem\)\]\:w-16 {
        width: 4rem
    }
}

@media (min-height:42rem) and (max-height:53.99rem) and (min-width:480px) {
    .\[\@media_\(min-height\:42rem\)_and_\(max-height\:53\.99rem\)_and_\(min-width\:480px\)\]\:text-7xl\/\[\.8\] {
        font-size: 4.5rem;
        line-height: .8
    }
}

@media (min-height:54rem) and (min-width:480px) {
    .\[\@media_\(min-height\:54rem\)_and_\(min-width\:480px\)\]\:text-8xl\/\[\.8\] {
        font-size: 6rem;
        line-height: .8
    }
}


.font-uni {
    font-family: 'Uniform Pro Xcon'
}

a {
    color: #f0e500
}

ul {
    list-style: disc;
    padding-left: 2rem;
    padding-bottom: 1rem
}

.nav-burger-menu-item {
    text-wrap-mode: nowrap
}

.application-btn {
    width: auto
}

#path.min-h-screen {
    min-height: 80vh
}

.about-h2-bgd {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.category-news-h1 {
    font-size: 5vw;
    font-weight: 200;
    line-height: .75;
    color: #fff0;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    text-transform: uppercase
}

#application-form .mr-4,
#application-form-military .mr-4,
#application-form-en .mr-4 {
    margin-right: 0
}

#application-form .translate-x-2,
#application-form-military .translate-x-2,
#application-form-en .translate-x-2 {
    margin-left: -1rem;
    --tw-translate-x: 1.5rem
}

#contract-18 {
    background-image: url(/wp-content/themes/azov/img/best_year.jpg)
}

.vacancy-item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out
}

.vacancy-item.show {
    opacity: 1;
    transform: translateY(0)
}

.vacancy-video iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%
}

.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: relative
}

.vacancies-text h2 {
    font-family: Tactic Sans, sans;
    font-size: 2.25rem;
    line-height: 2.25rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
    margin-top: 1rem;
    word-wrap: break-word
}

.vacancies-text p {
    font-size: 1rem;
    line-height: 1.5rem;
    padding-bottom: 1rem
}

.vacancies-text ul {
    list-style: disc;
    padding-left: 2rem;
    padding-bottom: 1rem
}

#contract-18 h2,
#contract-18 h3 {
    max-width: 18rem;
    line-height: .8
}

#contract-18 h2 {
    font-size: 4.375rem;
    letter-spacing: -2.1px
}

#contract-18 h3 {
    font-size: 1.5rem
}

#anketa-steps ul {
    list-style: disc;
    padding-left: 1.25rem;
    padding-bottom: 1rem
}

#anketa-steps ol {
    list-style: auto;
    padding-left: 2rem;
    padding-bottom: 1rem
}

#anketa-steps li span {
    font-family: Tektur, sans;
    font-size: 18px;
    line-height: 28px
}

#anketa-steps p,
#anketa-steps p span {
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 1rem
}

#anketa-steps p:last-child {
    padding-bottom: 0
}

.vacancies-accordion-item:hover .vacancies-vacancy-btn {
    visibility: visible
}

.vacancies-active-accordion {
    background-color: #171717;
    transition: background-color 0.5s ease-in-out
}

h1.vacancy-title span {
    display: block
}

#single-vacancy ul {
    list-style: disc
}

#single-vacancy #vacancy-long-desc h2 {
    font-family: Tactic Sans, sans;
    font-style: normal;
    font-weight: 900;
    font-size: 2.25rem;
    text-transform: uppercase;
    line-height: 2.25rem;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

#single-vacancy #vacancy-long-desc ul {
    padding-left: 1rem
}

.bg-paper {
    background-color: #171717
}

.tag-item {
    text-transform: lowercase
}

.iti__search-input {
    color: #fff
}

.iti__selected-dial-code {
    line-height: normal;
    color: #fff;
    font-weight: 600
}

input[name="acceptance"] {
    margin-left: 1rem
}

.iti__tel-input::placeholder {
    --tw-text-opacity: 1;
    color: rgb(115 115 115 / var(--tw-text-opacity, 1))
}

.breadcrumbs li.breadcrumb-item:after {
    padding: 1rem;
    font-size: .75rem;
    font-weight: 400;
    line-height: 1rem;
    color: #404040;
    content: '/'
}

.breadcrumbs__current {
    color: #737373
}

.breadcrumbs {
    font-family: Tektur, sans;
    font-size: .75rem;
    line-height: 1rem
}

.breadcrumbs li {
    display: inline-block;
    padding-bottom: .5rem
}

.breadcrumbs a {
    color: #fff;
    text-decoration: none
}

.breadcrumbs a:hover {
    --tw-text-opacity: 1;
    color: rgb(240 229 0 / var(--tw-text-opacity, 1))
}

.grecaptcha-badge {
    display: none
}

#tag-search svg {
    margin: 16px
}

#tag-search-input {
    color: #737373;
    height: 56px;
    border: none;
    padding-left: 56px
}

#tag-search-input:hover {
    background-color: #262626
}

#tag-search-input::placeholder {
    color: #737373;
    transform: none !important
}

#tag-suggestions {
    list-style: none
}

#tag-suggestions li {
    color: #737373
}

#tag-suggestions li:hover {
    background-color: #262626
}

.field-valid {
    border: 2px solid #4CAF50 !important
}

.field-invalid {
    border: 2px solid #f44336 !important
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .category-news-h1 {
        color: rgb(10 10 10 / var(--tw-bg-opacity, 1))
    }
}

@media (max-height:699.99px) {
    .height-less {
        display: none
    }
}

@media (max-width:1023.99px) {
    .about-h2-bgd {
        background-size: cover
    }
}

@media (max-width:479.99px) {
    .nav-burger-menu-item {
        font-size: 2.25rem
    }
}

.bg-emerald-500 {
    background-color: oklch(.696 .17 162.48)
}

.bg-red-600 {
    background-color: oklch(.577 .245 27.325)
}

.bg-center {
    background-position: center
}

.w-fit {
    width: fit-content
}

.w-24 {
    width: 6rem
}

.h-24 {
    height: 6rem
}

.h-140 {
    height: 35rem
}

.align-center {
    align-items: center
}

.mb-8 {
    margin-bottom: 2rem
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem
}

.px-\[5px\] {
    padding-left: 5px;
    padding-right: 5px
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
}

.pb-2 {
    padding-bottom: .5rem
}

.pb-4 {
    padding-bottom: 1rem
}

.pb-6 {
    padding-bottom: 1.5rem
}

.p-14 {
    padding: 3.5rem
}

.pt-20 {
    padding-top: 5rem
}

.pb-24 {
    padding-bottom: 6rem
}

.mt-16 {
    margin-top: 4rem
}

.-ml-8 {
    margin-left: -2rem
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem
}

.max-w-\[24rem\] {
    max-width: 24rem
}

.max-w-\[36rem\] {
    max-width: 36rem
}

.max-w-\[45rem\] {
    max-width: 45rem
}

.max-w-\[66rem\] {
    max-width: 66rem
}

.pl-\[56px\] {
    padding-left: 56px
}

.pt-16 {
    padding-top: 4rem
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem
}

.pb-32 {
    padding-bottom: 8rem
}

.pb-40 {
    padding-bottom: 10rem
}

.invisible {
    visibility: hidden
}

.visible {
    visibility: visible
}

.order-first {
    order: -9999
}

.self-center {
    align-self: center
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.text-justify {
    text-align: justify
}

.align-middle {
    vertical-align: middle
}

.h-auto {
    height: auto
}

.text-12 {
    font-size: 3rem
}

.text-16 {
    font-size: 4rem
}

.shrink-0 {
    flex-shrink: 0
}

.lowercase {
    text-transform: lowercase
}

.break-word {
    word-break: break-word
}

.translate-x-10 {
    --tw-translate-x: 2.5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@media (min-width:480px) {
    .sm\:h-140 {
        height: 35rem
    }

    .sm\:pt-10 {
        padding-top: 2.5rem
    }

    .sm\:text-12 {
        font-size: 3rem
    }

    .sm\:text-16 {
        font-size: 4rem
    }
}

@media (min-width:820px) {

    #contract-18 h2,
    #contract-18 h3 {
        max-width: 30rem
    }

    #contract-18 h2 {
        font-size: 7rem;
        letter-spacing: -3.36px
    }

    #contract-18 h3 {
        font-size: 3rem
    }

    .md\:text-12 {
        font-size: 3rem
    }

    .md\:h-150 {
        height: 37.5rem
    }

    .md\:max-w-\[26rem\] {
        max-width: 26rem
    }

    .md\:max-w-\[68rem\] {
        max-width: 68rem
    }

    .md\:block {
        display: block
    }

    .md\:float-right {
        float: right
    }

    .md\:inline {
        display: inline
    }

    .md\:pb-0 {
        padding-bottom: 0
    }

    .md\:gap-1 {
        gap: .25rem
    }

    .md\:gap-20 {
        gap: 5rem
    }

    .md\:order-last {
        order: 9999
    }

    .md\:pt-24 {
        padding-top: 6rem
    }

    .md\:px-0 {
        padding-left: 0;
        padding-right: 0
    }

    .md\:px-5 {
        padding-left: 1.125rem;
        padding-right: 1.125rem
    }

    .md\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .md\:py-40 {
        padding-top: 10rem;
        padding-bottom: 10rem
    }

    .md\:my-\[-6\] {
        margin-left: -1.5rem;
        margin-right: -1.5rem
    }

    .md\:bg-\[url\(\'\/wp-content\/themes\/azov\/img\/recruit-centers\.jpg\'\)\] {
        background-image: url(/wp-content/themes/azov/img/recruit-centers.jpg)  /* TODO */
    }
}

@media (min-width:1200px) {
    #contract-18 h2 {
        max-width: 30rem;
        font-size: 7rem;
        letter-spacing: -3.36px
    }

    #contract-18 h3 {
        font-size: 3rem
    }

    .lg\:h-150 {
        height: 37.5rem
    }

    .lg\:max-w-\[32rem\] {
        max-width: 32rem
    }

    .lg\:text-16 {
        font-size: 4rem
    }

    .lg\:p-14 {
        padding: 3.5rem
    }

    .lg\:pb-12 {
        padding-bottom: 3rem
    }

    .lg\:px-\[1\.675rem\] {
        padding-left: 1.675rem;
        padding-right: 1.675rem
    }

    .lg\:py-\[4\] {
        padding-top: 1rem;
        padding-bottom: 1rem
    }
}

@media (min-width:1584px) {
    .xl\:h-200 {
        height: 50rem
    }

    .\@2xl\:max-w-\[48rem\] {
        max-width: 48rem
    }

    .\@2xl\:text-\[6rem\] {
        font-size: 6rem
    }

    .\@2xl\:px-18 {
        padding-left: 4.5rem;
        padding-right: 4.5rem
    }

    .\@2xl\:py-\[1\.675rem\] {
        padding-top: 1.675rem;
        padding-bottom: 1.675rem
    }

    #contract-18 h2 {
        max-width: 44rem;
        font-size: 11.25rem;
        letter-spacing: -5.4px
    }

    #contract-18 h3 {
        font-size: 4.375rem
    }
}


.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
}

.btn {
	display: block;
	max-width: 480px;
	background-color: rgba(230, 222, 202, 1);
	color: #000000;
	padding: 10px 20px;
	margin: 0 auto 30px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
}

.btn:hover {
	background-color: rgba(204, 195, 173, 0.76);
}

/* Header
----------------------------------------------*/
.header__phone {
  color: var(--color-white);
  font-size: 24px;
}

.header__phone:hover {
  color: var(--color-accent);
}

/*Vacancies
----------------------------------------------*/
.vacancies {
  background-color: rgb(48, 50, 37);
  padding: 80px 0;
}

.vacancies__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.vacancies__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vacancies__item {
  background-color: rgb(230, 222, 202);
  padding: 30px;
  text-decoration: none;
  color: #000000;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 176px;
  transition: box-shadow 0.3s ease, background-color 0.3s ease,
    transform 0.3s ease;
}

.vacancies__item:hover {
  background-color: rgba(204, 195, 173, 0.76);
  box-shadow: 0 8px 16px rgb(0, 0, 0);
  transform: translateY(-8px);
}

.vacancies__item-content {
  color: inherit;
  margin-bottom: 20px;
  text-align: center;
}

.vacancies__button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgb(201, 107, 44);
  color: #ffffff;
  border: none;
  padding: 5px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.vacancies__button::before {
  content: "";
  width: 35px;
  height: 35px;
  background: url("../img/127-okrema-brygada-logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.vacancies__button:hover {
  background-color: rgb(231, 137, 74);
}

/* Last News
--------------------------------------------- */
.last-news {
  background-color: var(--color-light-gray);
  padding: 80px 0;
}

.last-news__item {
    background-color: var(--color-card-bg);
}

.last-news__item-date {
    color: var(--color-text);
    font-size: 18px;
}

.last-news__item-title {
	color: var(--color-text);
	font-size: 22px;
	text-transform: uppercase;
	font-weight: bold;
}

/* Slider
--------------------------------------------- */
.slider {
  padding: 80px 40px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */

.faq {
    background-color: rgb(48, 50, 37);
    padding-block: 80px;
}

.faq__inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 2px dashed var(--color-black);
    padding-block: 30px;
}

.faq__item:first-child {
    padding-top: 0;
}

.faq__item-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 20px;
    cursor: pointer;
}

/* .faq__item-title::before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: url('img/question-icon.svg') center/contain no-repeat;
} */

.faq__item-title::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: url('../img/angle-down.svg') center/contain no-repeat;
    margin-left: auto;
    transition: transform 0.3s ease-in-out;
}

.faq__item.active .faq__item-title::after {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}

.faq__item-content {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 500;
    padding: 0 54px 0 20px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__text {
    color: #000;
    background-color: var(--color-accent);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    margin-top: 20px;
    padding: 20px;
    text-align: center;
}

/* Footer
--------------------------------------------- */
.footer {
}

.footer__row {
  display: flex;
}

.footer__block:nth-of-type(1) {
  width: 35%;
  background-color: rgb(48, 50, 37);
}

.footer__block:nth-of-type(2) {
  width: 65%;
  background-color: rgb(232, 230, 230);
}

.footer__info {
  padding: 40px;
  text-align: center;
}

.footer__qr-code {
  width: 200px;
}

.social-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.social-list li + li {
  margin-left: 5px;
}

.footer .slogan {
  color: var(--color-white);
  font-size: 22px;
  margin-bottom: 20px;
}

.footer .btn {
  max-width: 330px;
}

.footer__form {
  padding: 40px;
}

.main-form {
  max-width: 635px;
  margin: 0 auto;
}

.main-form label {
  display: block;
  color: rgb(65, 65, 65);
  font-size: 14px;
  margin-bottom: 8px;
}

.main-form input {
  height: 35px;
}

.main-form textarea {
  height: 85px;
}

.main-form input,
.main-form textarea {
  width: 100%;
  border: 1px solid rgb(65, 65, 65);
  border-radius: 0;
  outline: none;
}

.main-form input:hover,
.main-form textarea:hover,
.main-form input:focus,
.main-form textarea:focus {
  border: 2px solid rgb(65, 65, 65);
}

.main-form input[type="submit"] {
  color: #ffffff;
  background-color: rgb(201, 107, 44);
  border: 1px solid rgb(201, 107, 44);
  padding: 7px 15px;
  cursor: pointer;
  transition: border-color 0.4s ease-in-out, background-color 0.4s ease-in-out;
}

.main-form input[type="submit"]:hover {
  color: rgb(201, 107, 44);
  background-color: #ffffff;
  border: 1px solid rgb(201, 107, 44);
  padding: 7px 15px;
  cursor: pointer;
  transition: border-color 0.4s ease-in-out, background-color 0.4s ease-in-out;
}

.main-form__control {
  margin-bottom: 20px;
}

.main-form__control--flex {
  display: flex;
  column-gap: 25px;
}

.main-form__control--flex > div {
  width: 50%;
}

@media (max-width: 992px) {
  .footer__row {
    flex-direction: column;
  }
  .footer__block {
    width: 100% !important;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 32px;
  }

  .vacancies {
    padding: 40px 0;
  }

  .vacancies__grid {
    grid-template-columns: 1fr;
  }

  .vacancies__item {
    font-size: 18px;
  }

  .vacancies__button {
    font-size: 14px;
    padding: 8px 16px;
  }
  .last-news {
	  padding: 40px 0;
  }

  .slider {
	  padding: 40px 20px;
  }

  .faq {
	  padding-block: 40px;
  }
}