html {
    font-size: 16px
}

body {
    font-family: "Roboto", Arial, sans-serif;
    color: #0c1724;
    background-color: #fff
}

* {
    box-sizing: border-box
}

.img-fluid {
    display: block;
    max-width: 100%
}

.visually-hidden {
    opacity: 0;
    visibility: hidden;
    display: block;
    width: 0;
    height: 0
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 30px;
    color: #0c1724;
    background-color: #fff;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    transition: all .3s ease
}

@media screen and (max-width:767px) {
    .btn {
        padding: 10px 28px;
        font-size: 14px
    }
}

.btn svg {
    display: block;
    margin-left: 8px;
    transition: all .15s ease
}

.btn:hover svg {
    transform: translateX(5px)
}

.btn--primary {
    color: #fff;
    background-color: #fa9d24 !important;
    border-color: #fa9d24 !important
}

.btn--primary:hover,
.btn--primary:focus {
    color: #fff;
    background-color: #fbb356 !important;
    border-color: #fbb356 !important
}

.btn--secondary {
    color: #0c1724;
    background-color: #fff !important;
    border-color: #0c1724 !important
}

.btn--secondary:hover,
.btn--secondary:focus {
    color: #fff;
    background-color: #0c1724 !important;
    border-color: #0c1724 !important
}

.btn--dark {
    color: #fff;
    background-color: #0c1724 !important;
    border-color: #0c1724 !important
}

.btn--dark:hover,
.btn--dark:focus {
    color: #fff;
    background-color: #fbb356 !important;
    border-color: #fbb356 !important
}

.btn--link {
    color: #0c1724;
    background-color: rgba(0, 0, 0, 0) !important;
    border-color: rgba(0, 0, 0, 0) !important
}

.btn--link:hover,
.btn--link:focus {
    color: #fa9d24
}

.btn--link:hover svg,
.btn--link:focus svg {
    transform: translateX(5px)
}

.btn--header-primary {
    color: #fff;
    background-color: #fa9d24 !important;
    border-color: #fa9d24 !important
}

.btn--header-primary:hover,
.btn--header-primary:focus {
    color: #fff;
    background-color: #fba83d !important;
    border-color: #fba83d !important
}

.btn--header-secondary {
    color: #fa9d24;
    background-color: #fff !important;
    border-color: #fa9d24 !important
}

.btn--header-secondary:hover,
.btn--header-secondary:focus {
    color: #fff;
    background-color: #fba83d !important;
    border-color: #fba83d !important
}

.container {
    padding-left: 30px;
    padding-right: 30px
}

@media screen and (min-width:1536px) {
    .container {
        max-width: 1360px !important
    }
}

@media screen and (max-width:1300px) {
    .container {
        max-width: 100% !important
    }
}

@media screen and (max-width:767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px
    }
}

.announcement-bar-slider,
.announcement-bar-slider .slider {
    width: 100%
}

.announcement-bar-slider--fade-in-next .announcement-bar__message,
.announcement-bar-slider--fade-in-previous .announcement-bar__message,
.announcement-bar-slider--fade-out-next .announcement-bar__message,
.announcement-bar-slider--fade-out-previous .announcement-bar__message {
    animation-duration: 250ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards
}

.announcement-bar-slider--fade-in-next.announcement-bar__message {
    --announcement-translate-from: -1.5rem;
    opacity: 0;
    animation-name: translateAnnouncementSlideIn;
    animation-delay: 250ms
}

.announcement-bar-slider--fade-in-previous.announcement-bar__message {
    --announcement-translate-from: 1.5rem;
    opacity: 0;
    animation-name: translateAnnouncementSlideIn;
    animation-delay: 250ms
}

.announcement-bar-slider--fade-out-next.announcement-bar__message {
    --announcement-translate-to: 1.5rem;
    animation-name: translateAnnouncementSlideOut
}

.announcement-bar-slider--fade-out-previous.announcement-bar__message {
    --announcement-translate-to: -1.5rem;
    animation-name: translateAnnouncementSlideOut
}

@keyframes translateAnnouncementSlideIn {
    0% {
        opacity: 0;
        transform: translateX(var(--announcement-translate-from))
    }

    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes translateAnnouncementSlideOut {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        transform: translateX(var(--announcement-translate-to))
    }
}

.input-switch {
    position: relative
}

.input-switch.disabled {
    pointer-events: none
}

.input-switch__icon {
    cursor: pointer;
    position: relative;
    display: block;
    width: 22px;
    height: 14px;
    background-color: #c8c9c1;
    border-radius: 10px
}

.input-switch__icon::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 2px;
    left: 2px;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #fff;
    transition: all .15s ease
}

.input-switch input[type=checkbox] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    transition: all .3s ease
}

.input-switch input[type=checkbox]:checked~.input-switch__icon {
    background-color:  #fa9d24
}

.input-switch input[type=checkbox]:checked~.input-switch__icon::before {
    left: 10px
}

.datepicker-input,
.date-input {
    padding: 0 10px;
    border: 1px solid #ebebeb;
    border-radius: 20px;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase
}

.date-input {
    margin: 2px 0;
    line-height: 16px
}

.date-input:hover,
.date-input:focus {
    outline: 0
}

.slick-slider {
    position: relative;
    display: none;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    touch-action: pan-y
}

.slick-slider.slick-initialized {
    display: block
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer
}

.slick-list .slick-track,
.slick-list .slick-list {
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track::before,
.slick-track::after {
    content: "";
    display: table
}

.slick-track::after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto
}

.slick-slide:hover,
.slick-slide:focus {
    outline: 0
}

.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    margin-top: -25px;
    color: #0c1724;
    background-color: rgba(0, 0, 0, 0) !important;
    border: 0;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
    font-size: 0;
    opacity: .6;
    overflow: hidden;
    transition: all .2s ease
}

@media screen and (max-width:767px) {
    .slick-arrow {
        width: 44px;
        height: 44px;
        border-radius: 44px;
        margin-top: -22px
    }
}

.slick-arrow:hover {
    opacity: 1
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-prev {
    left: 30px;
    background-image: url("../img/circle-arrow-left.svg") !important
}

.slick-next {
    right: 30px;
    background-image: url("../img/circle-arrow-right.svg") !important
}

.slick-dots {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 20px 0;
    list-style: none
}

@media(max-width:991px) {
    .slick-dots {
        padding-top: 15px
    }
}

.slick-dots li {
    padding: 0 4px;
    outline: 0
}

.slick-dots li:first-child {
    padding-left: 18px
}

.slick-dots li:last-child {
    padding-right: 18px
}

.slick-dots li.slick-active button {
    background-color: #fa9d24
}

.slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    background-color: #000;
    border: 0;
    border-radius: 50%;
    font-size: 0;
    outline: 0
}

.tippy-box[data-theme~=duchv] {
    padding: 5px;
    background-color: #fffee2;
    color: #555;
    box-shadow: 0 1px 3px 0 rgba(85, 85, 85, .25);
    font-size: 13px;
    text-align: center
}

.tippy-box[data-theme~=duchv][data-placement^=top]>.tippy-arrow::before {
    border-left-color: #fffee2;
    border-right: 0;
    transform-origin: 0 0;
    transform: rotate(-45deg);
    border-top-color: #fffee2;
    box-shadow: -2px 2px 2px 0 rgba(85, 85, 85, .1)
}

.tippy-box[data-theme~=duchv][data-placement^=bottom]>.tippy-arrow::before {
    border-bottom-color: #fffee2
}

.tippy-box[data-theme~=duchv][data-placement^=left]>.tippy-arrow::before {
    border-left-color: #fffee2
}

.tippy-box[data-theme~=duchv][data-placement^=right]>.tippy-arrow::before {
    border-right-color: #fffee2
}

.duchv-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.duchv-modal.active {
    opacity: 1;
    visibility: visible
}

.duchv-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2)
}

.duchv-modal__header {
    position: relative;
    min-height: 40px;
    padding: 10px 30px;
    font-weight: bold
}

.duchv-modal__container {
    position: relative;
    z-index: 2;
    display: block;
    width: 800px;
    max-width: 90%;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 50vmax rgba(0, 0, 0, .5)
}

.duchv-modal__container.medium {
    width: 600px
}

.duchv-modal__container.small {
    width: 480px
}

.duchv-modal__body {
    display: block;
    width: 100%;
    max-height: 80vh;
    padding: 30px;
    font-size: 14px;
    overflow-x: hidden;
    overflow-y: auto
}

.duchv-modal__body h1,
.duchv-modal__body h2,
.duchv-modal__body h3,
.duchv-modal__body h4,
.duchv-modal__body h5,
.duchv-modal__body h6 {
    font-weight: bold
}

.duchv-modal__body p {
    margin: 0 0 15px
}

.duchv-modal__body p:last-child {
    margin-bottom: 0
}

.duchv-modal__close {
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 5
}

.promo-banner {
    color: #0c1724;
    background-color: #f7f7f7
}

.promo-banner__inner {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: normal;
    line-height: 18px;
    text-align: center
}

@media screen and (max-width:767px) {
    .promo-banner__inner {
        padding: 10px 30px;
        font-size: 13px;
        line-height: 16px
    }
}

.promo-banner__inner a {
    display: flex;
    align-items: center;
    color: #fa9d24;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none
}

.promo-banner__inner a svg {
    display: block;
    max-height: 18px;
    margin-left: 6px;
    transition: all .3s ease
}

@media screen and (max-width:767px) {
    .promo-banner__inner a svg {
        width: 18px;
        height: 10px
    }
}

.promo-banner__inner a:hover svg {
    transform: translateX(6px)
}

.promo-banner__close {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 0
}

.promo-banner__close::before {
    content: "";
    cursor: pointer;
    background: linear-gradient(45deg, transparent calc(50% - 1px), #000 calc(50% - 1px), #000 calc(50% + 1px), transparent calc(50% + 1px)), linear-gradient(-45deg, transparent calc(50% - 1px), #000 calc(50% - 1px), #000 calc(50% + 1px), transparent calc(50% + 1px));
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 100%
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none
}

.logo img {
    display: block;
    max-width: 100%
}

.header {
    color: #0c1724;
    background-color: #fff
}

.header__inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:1199px) {
    .header__inner {
        padding: 5px 0
    }
}

.header__logo {
    width: 150px
}

.header__menu {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 136px)
}

@media screen and (max-width:1199px) {
    .header__menu {
        justify-content: flex-end
    }
}

.header__right {
    display: flex;
    flex-flow: row wrap;
    align-items: center
}

@media screen and (max-width:1199px) {
    .header__right {
        display: none
    }
}

.header-dropdown {
    position: relative
}

.header-dropdown__toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: color .3s ease
}

.header-dropdown__toggle svg {
    display: block;
    width: 20px;
    height: 20px
}

.header-dropdown__dropdown {
    position: absolute;
    top: 100%;
    right: 50%;
    z-index: 99;
    min-width: 160px;
    padding: 15px 20px;
    background-color: #fff;
    box-shadow: 0 18px 18px rgba(0, 0, 0, .08), 0 0 24px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transform: translate(50%, -5px);
    transition: all .3s ease-in-out
}

.header-dropdown__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.header-dropdown__link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 0;
    color: #0c1724;
    font-size: 15px;
    font-weight: 500;
    transition: color .3s ease
}

.header-dropdown__link:hover {
    color: #fa9d24
}

.header-dropdown:hover .header-dropdown__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(50%, 0)
}

.header-actions {
    display: flex;
    gap: 0 10px;
    margin-left: 10px
}

@media screen and (max-width:1300px) {
    .header-actions {
        margin-left: 10px
    }
}

.header-actions .btn {
    height: 40px;
    font-size: 14px
}

.footer {
    color: #0c1724;
    background-color: #f7f7f7
}

.footer__main {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
    padding: 80px 0
}

@media screen and (max-width:767px) {
    .footer__main {
        padding: 60px 0
    }
}

.footer__bottom {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid rgba(166, 166, 166, .52)
}

@media screen and (max-width:767px) {
    .footer__bottom {
        padding: 20px 0
    }
}

.footer__col {
    width: 33.3333%;
    padding-left: 15px;
    padding-right: 15px
}

@media screen and (max-width:767px) {
    .footer__col {
        width: 100%
    }

    .footer__col~.footer__col {
        margin-top: 30px
    }
}

.footer-copyright {
    color: #737373;
    font-size: 14px;
    line-height: 20px
}

@media screen and (max-width:767px) {
    .footer-copyright {
        width: 100%;
        text-align: center
    }
}

.footer-menus {
    display: flex;
    flex-flow: row wrap
}

.footer-menu {
    min-width: 170px;
    margin-right: 30px
}

@media screen and (max-width:767px) {
    .footer-menu {
        min-width: 160px;
        margin-bottom: 40px;
        margin-right: 20px
    }
}

.footer-menu__title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase
}

.footer-menu__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.footer-menu__item {
    margin-top: 16px
}

.footer-menu__link {
    display: flex;
    color: #737373;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
    white-space: nowrap;
    text-decoration: none;
    transition: all .3s ease
}

.footer-menu__link:hover {
    color: var(--color-primary, #fa9d24)
}

.footer-newsletter {
    position: relative;
    overflow: hidden
}

.footer-newsletter__desc {
    max-width: 400px;
    padding: 5px 0 16px;
    color: #737373
}

.footer-newsletter__form {
    padding-top: 10px
}

.footer-newsletter__group {
    display: flex;
    flex-flow: row nowrap;
    gap: 0 16px;
    margin: 0 0 24px
}

@media screen and (max-width:1024px) {
    .footer-newsletter__group {
        flex-wrap: wrap
    }
}

.footer-newsletter__input {
    width: 100%;
    padding: 14px 16px;
    color: #0c1724;
    background-color: #fff;
    border: 1px solid #ebebeb;
    border-radius: 50px;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px
}

.footer-newsletter__input::-moz-placeholder {
    color: #999
}

.footer-newsletter__input::placeholder {
    color: #999
}

.footer-newsletter__input:hover,
.footer-newsletter__input:focus {
    outline: 0
}

.footer-newsletter__button {
    display: flex;
    justify-content: center;
    min-width: 140px;
    padding: 14px 16px;
    border: 0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
    transition: all .3s ease
}

@media screen and (max-width:1024px) {
    .footer-newsletter__button {
        margin-top: 10px;
        padding: 12px 16px;
        font-size: 14px;
        line-height: 16px
    }
}

.footer-newsletter__summary {
    color: #737373;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px
}

.footer-newsletter__summary a {
    color: #737373;
    text-decoration: underline
}

.footer-social {
    display: flex
}

@media screen and (max-width:767px) {
    .footer-social {
        width: 100%;
        margin-top: 15px;
        justify-content: center
    }
}

.footer-social__title {
    margin: 0 15px 0 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px
}

.footer-social__list {
    display: flex;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;
    list-style: none
}

.footer-social__list li {
    padding: 0 5px
}

.footer-social__list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #737373;
    text-decoration: none;
    transition: all .3s ease
}

.footer-social__list a:hover {
    color: #fa9d24
}

.footer-logo {
    display: flex
}

.footer-logo img {
    display: block;
    max-width: 180px
}

.footer-logo__summary {
    padding: 16px 0;
    color: #737373;
    font-size: 16px;
    line-height: 1.6
}

.header-menu {
    position: relative
}

.header-menu__toggle {
    cursor: pointer;
    position: relative;
    padding: 10px 0;
    padding-right: 24px;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    transition: color .3s ease
}

@media screen and (max-width:1300px) {
    .header-menu__toggle {
        padding-right: 10px
    }
}

.header-menu__toggle svg {
    display: block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    transition: transform .4s ease-in-out
}

.header-menu__dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 99;
    min-width: 260px;
    background-color: #fff;
    box-shadow: 0 18px 18px rgba(0, 0, 0, .08), 0 0 24px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all .3s ease-in-out
}

.header-menu__list {
    margin: 0;
    padding: 10px 0;
    list-style: none
}

.header-menu__item {
    padding: 10px 20px
}

.header-menu__link {
    position: relative;
    display: inline-flex;
    font-size: 15px;
    font-weight: 500
}

.header-menu__link::after {
    content: "";
    pointer-events: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #0c1724;
    transition: width .3s ease
}

.header-menu__link:hover::after {
    width: 100%
}

.header-menu__sub-text {
    color: #363c44;
    font-size: 14px
}

.header-menu:hover .header-menu__toggle {
    color: #fa9d24
}

.header-menu:hover .header-menu__toggle svg {
    transform: rotate(180deg)
}

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

.header-search__toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: color .3s ease
}

.header-search__toggle svg {
    display: block;
    width: 20px;
    height: 20px
}

.header-search__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 18px 18px rgba(0, 0, 0, .08), 0 0 24px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out
}

.header-search__group {
    display: flex;
    align-items: center;
    padding: 15px
}

.header-search__input {
    width: 100%;
    padding: 9px 15px;
    color: #0c1724;
    background-color: #fff;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    font-size: 16px;
    line-height: 20px;
    transition: border .3s ease
}

.header-search__input:hover,
.header-search__input:focus {
    outline: 0;
    border-color: #0c1724
}

.header-search__btn {
    margin-left: 15px;
    white-space: nowrap
}

.header-search:hover .header-search__dropdown {
    opacity: 1;
    visibility: visible
}

.main-menu {
    display: flex;
    flex-flow: row wrap;
    padding-left: 30px
}

@media screen and (max-width:1199px) {
    .main-menu {
        padding-top: 30px;
        padding-left: 0
    }
}

@media screen and (max-width:1199px) {
    .main-menu__item {
        position: relative;
        width: 100%
    }
}

.main-menu__item--dropdown {
    position: relative
}

.main-menu__item--mega .main-menu__dropdown {
    left: 0;
    width: 100%;
    max-width: 100%
}

.main-menu__item:hover>.main-menu__dropdown {
    opacity: 1;
    visibility: visible
}

@media screen and (min-width:1200px) {
    .main-menu__item:hover>.main-menu__link svg {
        transform: rotate(180deg)
    }
}

.main-menu__link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-size: 16px;
    /* font-weight: 500; */
    line-height: 20px;
    transition: color .3s ease
}

@media screen and (max-width:1260px)and (min-width:1200px) {
    .main-menu__link {
        padding: 10px 6px
    }
}

@media screen and (max-width:1199px) {
    .main-menu__link {
        justify-content: space-between;
        color: #0c1724
    }
}

.main-menu__link>svg {
    display: block;
    width: 12px;
    height: 12px;
    margin-left: 5px;
    transition: all .3s ease
}

.main-menu__link:hover {
    color: #fa9d24
}

@media screen and (max-width:1199px) {
    .main-menu__link:hover {
        color: #0c1724
    }
}

.main-menu__title {
    margin: 0 0 8px;
    padding: 6px 0 10px;
    color: #0c1724;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #ebebeb
}

@media screen and (max-width:1199px) {
    .main-menu__title {
        margin: 0 10px 5px;
        padding: 0 0 5px
    }
}

@media screen and (min-width:1200px) {
    .main-menu__dropdown {
        position: absolute;
        top: 100%;
        left: -10px;
        z-index: 100;
        min-width: 300px;
        padding: 20px 30px;
        background-color: #fff;
        box-shadow: 0 0 50px 0 rgba(0, 0, 0, .2);
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transition: all .1s ease
    }
}

@media screen and (max-width:1199px) {
    .main-menu__dropdown {
        display: none;
        width: 100% !important;
        padding: 10px 20px
    }

    .main-menu__dropdown .grid {
        display: block
    }
}

@media screen and (max-width:1199px) {
    .main-menu__dropdown-column {
        margin-bottom: 15px
    }
}

@media screen and (max-width:1199px) {
    .main-menu__dropdown-list {
        padding: 0 10px
    }
}

.main-menu__dropdown-item {
    display: flex;
    padding: 6px 0
}

.main-menu__dropdown-link {
    position: relative;
    display: block;
    padding: 0;
    color: #0c1724;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
    transition: color .3s ease
}

.main-menu__dropdown-link::after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fa9d24;
    transition: width .3s ease
}

.main-menu__dropdown-link:hover {
    color: #fa9d24
}

.main-menu__dropdown-link:hover::after {
    width: 100%
}

.mm-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    color: #0c1724;
    background-color: rgba(0, 0, 0, 0);
    border: 0
}

.mm-toggle svg {
    display: block;
    width: 30px;
    height: 30px
}

@media screen and (min-width:1200px) {
    .mm-toggle {
        display: none
    }
}

.mm-toggle:hover,
.mm-toggle:focus {
    color: #0c1724;
    background-color: rgba(0, 0, 0, 0)
}

@media screen and (max-width:1199px) {
    .menu-primary {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 999;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease
    }

    .menu-primary__overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-color: rgba(0, 0, 0, .8);
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease
    }

    .menu-primary__content {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 2;
        overflow-x: hidden;
        overflow-y: auto;
        display: block;
        width: 320px;
        padding-bottom: 220px;
        background-color: #fff;
        transform: translateX(-320px);
        transition: all .3s ease
    }
}

@media screen and (max-width:1199px)and (max-width:380px) {
    .menu-primary__content {
        width: 260px
    }
}

@media screen and (max-width:1199px) {
    .menu-primary--open {
        pointer-events: auto;
        opacity: 1;
        visibility: visible
    }

    .menu-primary--open .menu-primary__overlay {
        opacity: 1;
        visibility: visible
    }

    .menu-primary--open .menu-primary__content,
    .menu-primary--open .menu-primary__footer {
        transform: translateX(0)
    }
}

.menu-primary__footer {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    width: 320px;
    padding: 15px;
    background-color: #f1f5f9;
    transform: translateX(-320px);
    transition: all .3s ease
}

@media screen and (min-width:1200px) {
    .menu-primary__footer {
        display: none
    }
}

@media screen and (max-width:380px) {
    .menu-primary__footer {
        width: 260px
    }
}

.menu-languages {
    display: flex;
    flex-flow: row wrap;
    grid-gap: 10px;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none
}

.menu-languages__link {
    display: flex;
    justify-content: center;
    min-width: 38px;
    padding: 3px;
    border: 1px solid #ebebeb;
    border-radius: 3px
}

.menu-languages__link.active {
    border-color: #fa9d24
}

.menu-account {
    margin: 0;
    padding: 5px 0 0;
    list-style: none
}

.menu-account__item {
    margin: 10px 0 0
}

.menu-account .btn {
    width: 100%;
    padding: 6px 20px;
    justify-content: center;
    font-size: 13px;
    text-transform: uppercase
}

.menu-search {
    margin: 20px 0 0
}

.menu-search .header-search__input {
    border-radius: 40px
}

.menu-search__group {
    position: relative
}

.menu-search__btn {
    position: absolute;
    top: 5px;
    right: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px
}

.next-section {
    color: #fff;
    text-decoration: none;
    transition: all .3s ease
}

.next-section:hover {
    color: #fa9d24
}

.next-section svg {
    display: block;
    width: 31px;
    height: 18px
}

.section {
    position: relative;
    padding: 120px 0;
    overflow: hidden
}

@media screen and (max-width:1024px) {
    .section {
        padding: 80px 0
    }
}

@media screen and (max-width:767px) {
    .section {
        padding: 50px 0
    }
}

.section--gray {
    background-color: #f7f7f7
}

.section--gray+.section--gray {
    padding-top: 0
}

.section--white {
    background-color: #fff
}

.section--white+.section--white {
    padding-top: 0
}

.section--primary {
    color: #fff;
    background-color: #fa9d24
}

.section--primary .section__text {
    max-width: 100%
}

.section--primary .section__title {
    color: #fff;
    font-size: 32px;
    line-height: 1.2
}

@media screen and (max-width:1024px) {
    .section--primary .section__title {
        margin: 0 0 15px;
        font-size: 22px
    }
}

@media screen and (max-width:1024px) {
    .section--primary .section__summary {
        font-size: 14px;
        line-height: 1.5
    }
}

@media screen and (max-width:1024px) {
    .section--primary .section__actions {
        margin-top: 15px
    }
}

.section--primary .btn--primary {
    border-color: #fff !important
}

.section__row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px
}

@media screen and (min-width:768px) {
    .section__row--reverse .section__col:nth-child(2n) {
        order: 1
    }
}

@media screen and (min-width:768px) {
    .section__row--reverse .section__col:nth-child(2n+1) {
        order: 2
    }
}

@media screen and (min-width:768px) {
    .section__row--reverse .section__text {
        margin-right: auto;
        margin-left: 0
    }
}

.section__col {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px
}

@media screen and (max-width:767px) {
    .section__col {
        width: 100%;
        padding-top: 15px;
        padding-bottom: 15px
    }
}

.section__image {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden
}

.section__image img {
    display: block;
    max-width: 100%;
    margin: 0 auto
}

.section__text {
    max-width: 485px;
    margin: 0 auto
}

.section__subtitle {
    margin: 0 0 10px;
    color: #fa9d24;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: .5px;
    text-transform: uppercase
}

@media screen and (max-width:767px) {
    .section__subtitle {
        margin: 0 0 5px;
        font-size: 14px
    }
}

.section__title {
    margin: 0 0 16px;
    color: #0c1724;
    font-size: 40px;
    font-weight: bold
}

@media screen and (max-width:1024px) {
    .section__title {
        font-size: 32px
    }
}

@media screen and (max-width:767px) {
    .section__title {
        margin: 0 0 10px;
        font-size: 20px
    }
}

.section__summary {
    font-size: 18px;
    line-height: 1.6
}

@media screen and (max-width:1024px) {
    .section__summary {
        font-size: 16px
    }
}

@media screen and (max-width:767px) {
    .section__summary {
        font-size: 14px
    }
}

.section__summary p {
    margin: 0 0 15px
}

.section__summary p:last-child {
    margin-bottom: 0
}

.section__actions {
    display: flex;
    gap: 15px;
    margin-top: 30px
}

@media screen and (max-width:767px) {
    .section__actions {
        margin-top: 16px
    }
}

.section__rte {
    padding: 0;
    font-size: 16px;
    line-height: 1.6
}

@media screen and (max-width:767px) {
    .section__rte {
        font-size: 14px
    }
}

.section__rte p {
    margin: 0 0 20px
}

.section__rte img {
    display: inline-block;
    max-width: 100%
}

.section__rte h1,
.section__rte .h1,
.section__rte h2,
.section__rte .h2,
.section__rte h3,
.section__rte .h3,
.section__rte h4,
.section__rte .h4,
.section__rte h5,
.section__rte .h5,
.section__rte h6,
.section__rte .h6 {
    margin: 0 0 15px;
    font-weight: bold
}

.section__rte h1,
.section__rte .h1 {
    font-size: 40px
}

.section__rte h2,
.section__rte .h2 {
    font-size: 32px
}

.section__rte h3,
.section__rte .h3 {
    font-size: 28px
}

.section__rte h4,
.section__rte .h4 {
    font-size: 24px
}

.section__rte h5,
.section__rte .h5 {
    font-size: 20px
}

.section__rte h6,
.section__rte .h6 {
    font-size: 16px
}

.section__rte ul {
    margin-bottom: 20px;
    list-style-type: disc;
    padding-left: 20px
}

.section__rte ol {
    margin-bottom: 20px;
    list-style-type: decimal;
    padding-left: 20px
}

.home-hero .slick-dots {
    display: none !important
}

.home-hero .slick-arrow {
    opacity: 0
}

.home-hero:hover .slick-arrow {
    opacity: .6
}

.home-hero__group:not(.slick-initialized) .home-hero__item {
    display: none
}

.home-hero__group:not(.slick-initialized) .home-hero__item:first-child {
    display: block
}

.home-hero__box {
    position: relative;
    overflow: hidden
}

.home-hero__box-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%
}

.home-hero__box-image::before,
.home-hero__box-image::after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%
}

.home-hero__box-image::before {
    background-color: #1b1e28;
    opacity: .2
}

.home-hero__box-image::after {
    background: linear-gradient(0, #1b1e28 0, rgba(27, 30, 40, 0.13) 68.75%, #1b1e28 100%), rgba(0, 0, 0, 0)
}

.home-hero__img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    filter: blur(0)
}

.home-hero__box-content {
    position: relative;
    z-index: 20
}

.hero-text {
    position: relative;
    max-width: 60%;
    padding-top: 150px;
    padding-bottom: 60px
}

@media screen and (max-width:1024px) {
    .hero-text {
        padding-top: 100px;
        padding-bottom: 50px
    }
}

@media screen and (max-width:767px) {
    .hero-text {
        max-width: 100%;
        padding-top: 50px;
        padding-bottom: 30px
    }
}

.hero-text__title {
    margin: 0 0 15px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2
}

@media screen and (max-width:1024px) {
    .hero-text__title {
        font-size: 32px
    }
}

@media screen and (max-width:767px) {
    .hero-text__title {
        font-size: 26px
    }
}

.hero-text__desc {
    max-width: 500px;
    margin: 0 0 30px;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    opacity: .8
}

@media screen and (max-width:1024px) {
    .hero-text__desc {
        font-size: 16px
    }
}

@media screen and (max-width:767px) {
    .hero-text__desc {
        font-size: 14px
    }
}

.hero-text__btn {
    padding: 15px 30px;
    font-size: 18px
}

@media screen and (max-width:767px) {
    .hero-text__btn {
        padding: 12px 28px;
        font-size: 14px
    }
}

.hero-news {
    position: relative;
    padding-bottom: 100px
}

.hero-news__row {
    margin-left: -15px;
    margin-right: -15px
}

.hero-news__row:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    gap: 30px
}

@media screen and (max-width:767px) {
    .hero-news__row:not(.slick-initialized) {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
        gap: 20px
    }
}

.hero-news__col {
    padding-left: 15px;
    padding-right: 15px
}

.hero-news__item {
    position: relative;
    display: block;
    width: 100%;
    min-height: 260px;
    border-bottom: 3px solid #fff;
    border-radius: 6px 6px 0 0;
    overflow: hidden
}

.hero-news__item::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(0, rgba(0, 0, 0, 0.79) 20%, rgba(0, 0, 0, 0) 100%)
}

.hero-news__item:hover .hero-news__item-title::after {
    transform: translateX(4px)
}

.hero-news__item-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.hero-news__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.hero-news__item-title {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 3;
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2
}

@media screen and (max-width:1024px) {
    .hero-news__item-title {
        left: 20px;
        right: 20px;
        bottom: 20px;
        font-size: 20px
    }
}

.hero-news__item-title::after {
    content: "";
    position: relative;
    top: 2px;
    left: 8px;
    display: inline-block;
    width: 17px;
    height: 17px;
    background-image: url("../img/arrow-image-card.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: transform .3s cubic-bezier(0.33, 1, 0.68, 1)
}

.hero-news__next {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center
}

.home-alert {
    position: relative;
    color: #fff;
    background-color: #fa9d24;
    overflow: hidden
}

.home-alert__message {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0
}

.home-alert__message a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    line-height: 26px
}

@media screen and (max-width:1024px) {
    .home-alert__message a {
        font-size: 16px;
        line-height: 24px
    }
}

@media screen and (max-width:767px) {
    .home-alert__message a {
        font-size: 14px;
        line-height: 18px
    }
}

.home-alert__message a svg {
    display: block;
    margin-left: 8px
}

@media screen and (max-width:767px) {
    .home-alert__message a svg {
        position: relative;
        top: -1px;
        width: 8px;
        height: 15px
    }
}

.breadcrumb {
    position: relative;
    display: block;
    height: 300px;
    padding: 32px 0;
    overflow: hidden
}

@media screen and (max-width:767px) {
    .breadcrumb {
        height: 200px
    }
}

.breadcrumb__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block
}

.breadcrumb__image::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4)
}

.breadcrumb__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.breadcrumb__content {
    position: relative;
    z-index: 2
}

.breadcrumb__items {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-flow: row wrap
}

.breadcrumb__item {
    position: relative
}

.breadcrumb__item+.breadcrumb__item {
    margin-left: 22px
}

.breadcrumb__item+.breadcrumb__item::before {
    content: "/";
    position: absolute;
    top: 0;
    left: -12px;
    color: #fff;
    opacity: .5;
    font-size: 13px
}

.breadcrumb__item:last-child .breadcrumb__link::after {
    display: none
}

.breadcrumb__link {
    position: relative;
    display: block;
    color: #fff;
    font-size: 13px
}

.breadcrumb__link::after {
    content: "";
    pointer-events: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
    opacity: .5;
    transition: all .3s ease
}

.breadcrumb__link:hover::after {
    opacity: 1
}

.breadcrumb__title {
    margin: 0;
    padding: 15px 0;
    color: #fff;
    font-size: 66px;
    font-weight: bold;
    line-height: 1
}

@media screen and (max-width:1024px) {
    .breadcrumb__title {
        font-size: 40px
    }
}

@media screen and (max-width:767px) {
    .breadcrumb__title {
        font-size: 32px
    }
}

.top-content {
    position: relative;
    padding: 100px 0;
    overflow: hidden
}

@media screen and (max-width:767px) {
    .top-content {
        padding: 50px 0
    }
}

.top-content__header {
    max-width: 832px;
    margin: 0 auto 80px;
    text-align: center
}

@media screen and (max-width:767px) {
    .top-content__header {
        max-width: 100%;
        margin: 0 0 30px
    }
}

.top-content__subtitle {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase
}

@media screen and (max-width:1024px) {
    .top-content__subtitle {
        font-size: 15px
    }
}

@media screen and (max-width:767px) {
    .top-content__subtitle {
        margin: 0 0 10px;
        font-size: 14px
    }
}

.top-content__title {
    margin: 0 0 16px;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2
}

@media screen and (max-width:1024px) {
    .top-content__title {
        font-size: 32px
    }
}

@media screen and (max-width:767px) {
    .top-content__title {
        margin: 0 0 10px;
        font-size: 26px
    }
}

@media screen and (max-width:767px) {
    .top-content__summary {
        font-size: 14px
    }
}

.top-content__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    gap: 50px
}

@media screen and (max-width:1024px) {
    .top-content__row {
        grid-gap: 30px;
        gap: 30px
    }
}

@media screen and (max-width:767px) {
    .top-content__row {
        grid-template-columns: repeat(1, 1fr)
    }
}

.top-content__item-image {
    margin: 0 0 16px;
    overflow: hidden
}

.top-content__item-image img {
    display: block;
    max-width: 100%
}

.top-content__item-heading {
    margin: 0 0 16px;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.2
}

@media screen and (max-width:1024px) {
    .top-content__item-heading {
        font-size: 20px
    }
}

@media screen and (max-width:767px) {
    .top-content__item-heading {
        margin: 0 0 10px;
        font-size: 16px
    }
}

@media screen and (max-width:767px) {
    .top-content__item-desc {
        font-size: 14px
    }
}

.publications {
    position: relative;
    overflow: hidden
}

.publications .section__text {
    max-width: 600px;
    margin-left: 0;
    margin-right: auto
}

.publications .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    width: 100%;
    padding: 10px 0
}

.publications .slick-dots li {
    padding: 0 10px
}

.publications .slick-dots li.slick-active button {
    background-color: #fa9d24
}

.publications .slick-dots button {
    width: 12px;
    height: 12px;
    background-color: #ccc
}

.publications .slick-prev {
    left: -60px
}

.publications .slick-next {
    right: -60px
}

.publications__container {
    position: relative;
    padding: 0 65px;
    padding-bottom: 60px
}

.publications__carousel {
    position: relative
}

.publications__carousel:not(.slick-initialized) .publications__item {
    display: none
}

.publications__carousel:not(.slick-initialized) .publications__item:first-child {
    display: block;
    max-width: 33.33333%
}

.publications__item {
    padding: 15px
}

.publications__card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, .2);
    text-decoration: none
}

.publications__card::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 141%
}

.publications__card>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.publications__form {
    margin-top: 30px
}

.publications__form-group {
    position: relative
}

.publications__form-input {
    display: block;
    width: 100%;
    padding: 15px 24px;
    padding-right: 80px;
    color: #0c1724;
    background-color: #f7f7f7;
    border: 2px solid #f7f7f7;
    border-radius: 4px;
    font-size: 18px;
    line-height: 26px;
    transition: all .3s ease
}

.publications__form-input:hover,
.publications__form-input:focus {
    outline: 0;
    border-color: #fa9d24
}

.publications__form-submit {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #0c1724;
    background-color: rgba(0, 0, 0, 0);
    border: 0
}

.section-prebottom {
    position: relative;
    background-color: #f7f7f7;
    overflow: hidden
}

.section-prebottom__top {
    padding: 64px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center
}

@media screen and (max-width:767px) {
    .section-prebottom__top {
        padding: 40px 20px
    }
}

.section-prebottom__title {
    margin: 0 0 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    line-height: 48px
}

@media screen and (max-width:1024px) {
    .section-prebottom__title {
        font-size: 32px;
        line-height: 38px
    }
}

@media screen and (max-width:767px) {
    .section-prebottom__title {
        margin: 0 0 16px;
        font-size: 26px;
        line-height: 36px
    }
}

.section-prebottom__actions {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 20px
}

.section-prebottom__actions .btn--secondary {
    color: #fff;
    background-color: rgba(0, 0, 0, 0) !important;
    border-color: #fff !important
}

.section-prebottom__actions .btn--secondary:hover,
.section-prebottom__actions .btn--secondary:focus {
    color: #fff;
    background-color: #fbb356 !important;
    border-color: #fbb356 !important
}

.newsletter {
    margin: 80px 0;
    padding: 32px 40px;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    background-color: #fff
}

@media screen and (max-width:767px) {
    .newsletter {
        margin: 40px 0;
        padding: 30px 20px
    }
}

.newsletter__wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-left: -20px;
    margin-right: -20px
}

.newsletter__content {
    width: 40%;
    padding-left: 20px;
    padding-right: 20px
}

@media screen and (max-width:767px) {
    .newsletter__content {
        width: 100%
    }
}

.newsletter__form {
    width: 60%;
    max-width: 750px;
    padding-left: 20px;
    padding-right: 20px
}

@media screen and (max-width:767px) {
    .newsletter__form {
        width: 100%;
        margin-top: 30px
    }
}

.newsletter__title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: bold
}

@media screen and (max-width:767px) {
    .newsletter__title {
        font-size: 16px
    }
}

.newsletter__summary {
    opacity: .8
}

@media screen and (max-width:767px) {
    .newsletter__summary {
        font-size: 14px
    }
}

.newsletter__form-group {
    position: relative
}

.newsletter__form-input {
    display: block;
    width: 100%;
    padding: 15px 30px;
    padding-right: 180px;
    color: #0c1724;
    background-color: #f7f7f7;
    border: 1px solid #ebebeb;
    border-radius: 50px;
    transition: all .3s ease
}

@media screen and (max-width:767px) {
    .newsletter__form-input {
        padding: 10px 30px;
        padding-right: 80px;
        font-size: 14px
    }
}

.newsletter__form-input:focus {
    outline: 0;
    border-color: #0c1724
}

.newsletter__form-submit {
    position: absolute;
    top: 8px;
    right: 8px;
    justify-content: center;
    min-width: 160px;
    padding: 8px 20px
}

@media screen and (max-width:767px) {
    .newsletter__form-submit {
        top: 5px;
        right: 4px;
        min-width: 80px;
        padding: 5px 15px;
        font-size: 12px
    }
}

.newsletter__form-summary {
    margin: 16px 0 0;
    font-size: 12px;
    text-align: right;
    opacity: .8
}

.newsletter__form-summary a {
    text-decoration: underline
}

.pagination {
    display: flex;
    flex-flow: row wrap;
    align-items: center
}

.pagination__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #fa9d24;
    background-color: rgba(0, 0, 0, 0);
    border: 0
}

.pagination__arrow--prev {
    margin-right: 30px
}

.pagination__arrow--prev svg {
    transform: rotate(180deg)
}

.pagination__arrow--next {
    margin-left: 30px
}

.pagination__content {
    display: flex;
    align-items: center
}

.pagination__input-text {
    margin-left: 8px;
    color: gray;
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
    letter-spacing: .5px
}

.pagination__input {
    width: 50px;
    height: 34px;
    padding: 3px 5px 4px;
    border: 2px solid rgba(250, 157, 36, .5);
    border-radius: 5px;
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    text-align: center
}