html {
    scroll-behavior: smooth;
}

body.modal-active #modal-container, html.modal-active #modal-container {
    pointer-events: all
}

#modal-container {
    display: table;
    height: 100%;
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: scale(0);
    width: 100%;
    z-index: 10000
}

#modal-container.two {
    transform: scale(1)
}

#modal-container.two .modal-background {
    animation: fadeIn .5s cubic-bezier(.165, .84, .44, 1) forwards;
    background: transparent
}

#modal-container.two .modal-background .modal {
    animation: scaleUp .5s cubic-bezier(.165, .84, .44, 1) forwards;
    opacity: 0
}

#modal-container.two + .content {
    animation: scaleBack .5s cubic-bezier(.165, .84, .44, 1) forwards
}

#modal-container.two.out {
    animation: quickScaleDown 0s linear .5s forwards
}

#modal-container.two.out .modal-background {
    animation: fadeOut .5s cubic-bezier(.165, .84, .44, 1) forwards
}

#modal-container.two.out .modal-background .modal {
    animation: scaleDown .5s cubic-bezier(.165, .84, .44, 1) forwards
}

#modal-container.two.out + .content {
    animation: scaleForward .5s cubic-bezier(.165, .84, .44, 1) forwards
}

#modal-container .modal-background {
    background: rgba(0, 0, 0, .8);
    display: table-cell;
    text-align: center;
    vertical-align: middle
}

#modal-container .modal-background .modal {
    background: #fff;
    background: #ffb700;
    border-radius: 10px;
    display: inline-block;
    font-weight: 300;
    max-width: 100vw;
    position: relative;
    width: 900px
}

#modal-container .modal-background .modal iframe {
    border-radius: 0 0 10px 10px
}

#modal-container .modal-background .modal h2 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 15px
}

#modal-container .modal-background .modal p {
    font-size: 18px;
    line-height: 22px
}

#modal-container .modal-background .modal .close {
    align-items: end;
    cursor: pointer;
    display: flex;
    gap: .5rem;
    justify-content: end;
    padding: 1rem;
    text-align: right
}

#modal-container .modal-background .modal .close img {
    height: 25px;
    width: 25px
}

#modal-container .modal-background .modal .modal-svg {
    border-radius: 3px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

#modal-container .modal-background .modal .modal-svg rect {
    stroke: #fff;
    stroke-width: 2px;
    stroke-dasharray: 778;
    stroke-dashoffset: 778
}

#modal-container .content {
    background: #fff;
    height: 100%;
    min-height: 100%;
    position: relative;
    z-index: 0
}

#modal-container .content h1 {
    font-size: 30px;
    line-height: 30px;
    padding: 75px 0 30px;
    text-align: center
}

#modal-container .content .buttons {
    margin: 0 auto;
    max-width: 800px;
    padding: 0;
    text-align: center
}

#modal-container .content .buttons .button {
    background: red;
    background-color: #efefef;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    margin: 10px;
    padding: 10px 15px;
    text-align: center
}

#modal-container .content .buttons .button:hover {
    background: #009bd5;
    color: #fff
}

@keyframes fadeIn {
    0% {
        background: transparent
    }
    to {
        background: rgba(0, 0, 0, .7)
    }
}

@keyframes fadeOut {
    0% {
        background: rgba(0, 0, 0, .7)
    }
    to {
        background: transparent
    }
}

@keyframes scaleUp {
    0% {
        opacity: 0;
        transform: scale(.8) translateY(1000px)
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

@keyframes scaleDown {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
    to {
        opacity: 0;
        transform: scale(.8) translateY(1000px)
    }
}

@keyframes scaleBack {
    0% {
        transform: scale(1)
    }
    to {
        transform: scale(.85)
    }
}

@keyframes scaleForward {
    0% {
        transform: scale(.85)
    }
    to {
        transform: scale(1)
    }
}

@keyframes quickScaleDown {
    0% {
        transform: scale(1)
    }
    99.9% {
        transform: scale(1)
    }
    to {
        transform: scale(0)
    }
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    overflow: hidden;
    padding-left: 8px;
    padding-right: 20px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.select2-container .select2-selection--single .select2-selection__clear {
    background-color: transparent;
    border: none;
    font-size: 1em
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
    padding-left: 20px;
    padding-right: 8px
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline;
    list-style: none;
    padding: 0
}

.select2-container .select2-selection--multiple .select2-selection__clear {
    background-color: transparent;
    border: none;
    font-size: 1em
}

.select2-container .select2-search--inline .select2-search__field {
    border: none;
    box-sizing: border-box;
    font-family: sans-serif;
    font-size: 100%;
    height: 18px;
    margin-left: 5px;
    margin-top: 5px;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
    resize: none;
    vertical-align: bottom;
    word-break: keep-all
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-dropdown {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    left: -100000px;
    position: absolute;
    width: 100%;
    z-index: 1051
}

.select2-results {
    display: block
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0
}

.select2-results__option {
    padding: 6px;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

.select2-results__option--selectable {
    cursor: pointer
}

.select2-container--open .select2-dropdown {
    left: 0
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-search--dropdown {
    display: block;
    padding: 4px
}

.select2-search--dropdown .select2-search__field {
    box-sizing: border-box;
    padding: 4px;
    width: 100%
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-search--dropdown.select2-search--hide {
    display: none
}

.select2-close-mask {
    background-color: #fff;
    border: 0;
    display: block;
    filter: alpha(opacity=0);
    height: auto;
    left: 0;
    margin: 0;
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    padding: 0;
    position: fixed;
    top: 0;
    width: auto;
    z-index: 99
}

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

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 700;
    height: 26px;
    margin-right: 20px;
    padding-right: 0
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    right: 1px;
    top: 1px;
    width: 20px
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888;
    border-width: 0 4px 5px
}

.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    padding-bottom: 5px;
    padding-right: 5px;
    position: relative
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
    padding-right: 25px
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    font-weight: 700;
    height: 20px;
    margin-right: 10px;
    margin-top: 5px;
    padding: 1px;
    position: absolute;
    right: 0
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    max-width: 100%;
    overflow: hidden;
    padding: 0 0 0 20px;
    position: relative;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    cursor: default;
    padding-left: 2px;
    padding-right: 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-bottom-left-radius: 4px;
    border-right: 1px solid #aaa;
    border-top-left-radius: 4px;
    color: #999;
    cursor: pointer;
    font-size: 1em;
    font-weight: 700;
    left: 0;
    padding: 0 4px;
    position: absolute;
    top: 0
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: #f1f1f1;
    color: #333;
    outline: none
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 2px
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 4px;
    border-left: 1px solid #aaa;
    border-right: none;
    border-top-left-radius: 0;
    border-top-right-radius: 4px
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
    float: left;
    margin-left: 10px;
    margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #000;
    outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa
}

.select2-container--default .select2-search--inline .select2-search__field {
    -webkit-appearance: textfield;
    background: transparent;
    border: none;
    box-shadow: none;
    outline: 0
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em
}

.select2-container--default .select2-results__option--group {
    padding: 0
}

.select2-container--default .select2-results__option--disabled {
    color: #999
}

.select2-container--default .select2-results__option--selected {
    background-color: #ddd
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #5897fb;
    color: #fff
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    background-image: linear-gradient(180deg, #fff 50%, #eee);
    background-repeat: repeat-x;
    border: 1px solid #aaa;
    border-radius: 4px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
    outline: 0
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 700;
    height: 26px;
    margin-right: 20px
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    background-image: linear-gradient(180deg, #eee 50%, #ccc);
    background-repeat: repeat-x;
    border: none;
    border-bottom-right-radius: 4px;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
    height: 26px;
    position: absolute;
    right: 1px;
    top: 1px;
    width: 20px
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-radius: 0;
    border-bottom-left-radius: 4px;
    border-right: 1px solid #aaa;
    border-top-left-radius: 4px;
    left: 1px;
    right: auto
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888;
    border-width: 0 4px 5px
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    background-image: linear-gradient(180deg, #fff, #eee 50%);
    background-repeat: repeat-x;
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    background-image: linear-gradient(180deg, #eee 50%, #fff);
    background-repeat: repeat-x;
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0)
}

.select2-container--classic .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
    padding-bottom: 5px;
    padding-right: 5px
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
    cursor: default;
    padding-left: 2px;
    padding-right: 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    color: #888;
    cursor: pointer;
    font-size: 1em;
    font-weight: 700;
    padding: 0 4px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555;
    outline: none
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 2px
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 0;
    border-top-right-radius: 4px
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0
}

.select2-container--classic .select2-search--inline .select2-search__field {
    box-shadow: none;
    outline: 0
}

.select2-container--classic .select2-dropdown {
    background-color: #fff;
    border: 1px solid transparent
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none
}

.select2-container--classic .select2-dropdown--below {
    border-top: none
}

.select2-container--classic .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--classic .select2-results__option--group {
    padding: 0
}

.select2-container--classic .select2-results__option--disabled {
    color: grey
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #3875d7;
    color: #fff
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb
}

#cookie-bar {
    background: #17253f;
    bottom: 0;
    color: #fff;
    display: block;
    left: 0;
    max-width: 100%;
    position: fixed;
    width: 100%;
    z-index: 9999999999999
}

#cookie-bar p {
    color: #adadad;
    font-size: .8rem;
    line-height: 24px
}

#cookie-bar button {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    padding: 15px 20px;
    text-transform: uppercase
}

#cookie-bar button:hover {
    background: #fff;
    color: #17253f
}

#cookie-bar a {
    color: #fff
}

#contentcookie {
    grid-gap: 1rem;
    display: grid
}

@media (max-width: 767px) {
    #cookie-bar p {
        font-size: 14px;
        width: 100%
    }

    #cookie-bar button {
        width: 100%
    }

    #cookie-bar a {
        color: #fff
    }

    #contentcookie {
        margin: auto;
        padding: 20px 0;
        width: 90%
    }
}

@media only screen and (min-width: 768px) {
    #contentcookie {
        grid-gap: 2rem;
        grid-template-columns:1fr 200px
    }
}

@media only screen and (min-width: 1024px) {
    #contentcookie {
        padding: 20px
    }
}

@media only screen and (min-width: 1280px) {
    #contentcookie {
        padding: 20px 0
    }
}

a.underline {
    background: linear-gradient(currentColor, currentColor) bottom/0 .1em no-repeat;
    background-position: 0 100%;
    text-decoration: none;
    transition: background-size .5s
}

a.underline:hover {
    background-size: 100% .1em
}

.menu-btn-3 {
    cursor: pointer;
    height: 32px;
    width: 40px
}

.menu-btn-3 span, .menu-btn-3 span:after, .menu-btn-3 span:before {
    background: #fff;
    content: "";
    height: 6px;
    margin-top: 13px;
    position: absolute;
    transform: rotate(180deg);
    transition: .5s ease-in-out;
    width: 40px
}

.menu-btn-3 span:before {
    margin-top: -12px
}

.menu-btn-3 span:after {
    margin-top: 12px
}

.menu-open.menu-btn-3 span {
    background: transparent
}

.menu-open.menu-btn-3 span:after, .menu-open.menu-btn-3 span:before {
    background: #17253f
}

.menu-btn-3.menu-open span:before {
    margin-top: 0;
    transform: rotate(45deg)
}

.menu-btn-3.menu-open span:after {
    margin-top: 0;
    transform: rotate(-45deg)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

video {
    border: 0 !important
}

html {
    --content-space: 2rem;
    --page-max-width: 75rem;
    margin-top: 0 !important;
    overflow-x: hidden !important;
    position: relative
}

address {
    font-style: normal
}

textarea {
    font-family: Helvetica Now Display, sans-serif
}

input:-webkit-autofill, input:-webkit-autofill:active, input:-webkit-autofill:focus, input:-webkit-autofill:hover {
    -webkit-transition: background-color 5000000s ease-in-out 0s;
    transition: background-color 5000000s ease-in-out 0s
}

input {
    font-family: Helvetica Now Display, sans-serif
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    max-width: 100%
}

body {
    background: #fff;
    color: #17253f;
    position: relative;
}

.mtb1 {
    margin-bottom: 1rem;
    margin-top: 1rem
}

body, html {
    max-width: 100%;
    position: relative
}

.container {
    padding: 1.5rem
}

ul {
    padding-left: 15px
}

.notmobile, .notmobile--table {
    display: none
}

.hidden {
    display: none !important
}

@media only screen and (min-width: 768px) {
    .nottablet {
        display: none
    }

    .notmobile {
        display: initial
    }

    .notmobile--table {
        display: table-cell
    }

    .nottablet {
        display: initial
    }

    .notdesktop {
        display: none
    }

    .scroll-lock {
        overflow-y: hidden;
        position: fixed
    }
}

.final-grid {
    grid-gap: 1.5rem;
    display: grid
}

@media only screen and (min-width: 1024px) {
    .container {
        margin-inline: auto;
        max-width: 1214px;
        padding: 80px 20px 200px 20px;
    }

    .final-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .final-grid section {
        max-height: 370px
    }
}

@media only screen and (min-width: 1280px) {
    .container {
        padding-left: 0;
        padding-right: 0
    }

    .final-grid section {
        max-height: 305px
    }
}

b {
    font-weight: 700 !important
}

a {
    color: #17253f;
    text-decoration: underline
}

a:hover {
    text-decoration: none
}

nav ul {
    list-style-type: none
}

nav ul a {
    text-decoration: none
}

@font-face {
    font-family: Helvetica Now Display;
    font-style: italic;
    font-weight: 700;
    src: url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-BoldIta.eot);
    src: local("Helvetica Now Display Bold Ita"), local("HelveticaNowDisplay-BoldIta"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-BoldIta.eot?#iefix) format("embedded-opentype"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-BoldIta.woff2) format("woff2"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-BoldIta.woff) format("woff"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-BoldIta.ttf) format("truetype")
}

@font-face {
    font-family: Helvetica Now Display;
    font-style: italic;
    font-weight: 500;
    src: url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-MedIta.eot);
    src: local("Helvetica Now Display Med Ita"), local("HelveticaNowDisplay-MedIta"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-MedIta.eot?#iefix) format("embedded-opentype"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-MedIta.woff2) format("woff2"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-MedIta.woff) format("woff"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-MedIta.ttf) format("truetype")
}

@font-face {
    font-family: Helvetica Now Display;
    font-style: normal;
    font-weight: 700;
    src: url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Bold.eot);
    src: local("Helvetica Now Display Bold"), local("HelveticaNowDisplay-Bold"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Bold.eot?#iefix) format("embedded-opentype"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Bold.woff2) format("woff2"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Bold.woff) format("woff"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Bold.ttf) format("truetype")
}

@font-face {
    font-family: Helvetica Now Display;
    font-style: italic;
    font-weight: 800;
    src: url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtBdIta.eot);
    src: local("Helvetica Now Display ExtBd Ita"), local("HelveticaNowDisplay-ExtBdIta"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtBdIta.eot?#iefix) format("embedded-opentype"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtBdIta.woff2) format("woff2"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtBdIta.woff) format("woff"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtBdIta.ttf) format("truetype")
}

@font-face {
    font-family: Helvetica Now Display;
    font-style: normal;
    font-weight: 100;
    src: url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Thin.eot);
    src: local("Helvetica Now Display Thin"), local("HelveticaNowDisplay-Thin"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Thin.eot?#iefix) format("embedded-opentype"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Thin.woff2) format("woff2"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Thin.woff) format("woff"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Thin.ttf) format("truetype")
}

@font-face {
    font-family: Helvetica Now Display;
    font-style: normal;
    font-weight: 800;
    src: url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtraBold.eot);
    src: local("Helvetica Now Display ExtBd"), local("HelveticaNowDisplay-ExtraBold"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtraBold.eot?#iefix) format("embedded-opentype"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtraBold.woff2) format("woff2"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtraBold.woff) format("woff"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtraBold.ttf) format("truetype")
}

@font-face {
    font-family: Helvetica Now Display;
    font-style: italic;
    font-weight: 900;
    src: url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtBlkIta.eot);
    src: local("Helvetica Now Display ExtBlkIta"), local("HelveticaNowDisplay-ExtBlkIta"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtBlkIta.eot?#iefix) format("embedded-opentype"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtBlkIta.woff2) format("woff2"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtBlkIta.woff) format("woff"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-ExtBlkIta.ttf) format("truetype")
}

@font-face {
    font-family: Helvetica Now Display;
    font-style: normal;
    font-weight: 500;
    src: url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Medium.eot);
    src: local("Helvetica Now Display Medium"), local("HelveticaNowDisplay-Medium"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Medium.eot?#iefix) format("embedded-opentype"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Medium.woff2) format("woff2"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Medium.woff) format("woff"), url(../assets/fonts/HelveticaNowDisplay/HelveticaNowDisplay-Medium.ttf) format("truetype")
}

@font-face {
    font-family: BrushUp;
    font-style: normal;
    font-weight: 400;
    src: url(../assets/fonts/BrushUp.ttf) format("opentype")
}

@font-face {
    font-family: BebasNeue;
    font-style: normal;
    font-weight: 400;
    src: url(../assets/fonts/Bebas_Neue/BebasNeue-Regular.ttf) format("opentype")
}

@font-face {
    font-family: BebasNeue;
    font-style: normal;
    font-weight: 200;
    src: url(../assets/fonts/Bebas_Neue/BebasNeue-Regular.ttf) format("opentype")
}

body {
    -webkit-font-smoothing: antialiased;
    font-family: Helvetica Now Display, sans-serif;
    font-synthesis: none !important
}

h1, h2, h3 {
    font-weight: 800
}

h2 {
    color: #17253f
}

h4 {
    font-weight: 400
}

h1, h2, h3, h4 {
    font-family: BebasNeue, sans-serif
}

.h1, h1 {
    font-size: 150px
}

@media only screen and (max-width: 768px) {
    .h1, h1 {
        font-size: 90px
    }

    .contact-form-wrapper h4, .h1, .hero h4, .hero--detail h4, h1 {
        text-align: center
    }
}

.h2, h2 {
    font-size: 6.25rem;
    line-height: 90px
}

@media only screen and (max-width: 768px) {
    .h2, h2 {
        font-size: 40px;
        text-align: center
    }
}

.h2 span, h2 span {
    color: #17253f;
    display: block;
    font-size: 5.625rem;
    font-weight: 400;
    line-height: 1.75rem;
    margin-bottom: 1rem
}

.h3, h3 {
    font-size: 25px
}

.h4, h4 {
    font-size: 23px;
    line-height: 140%
}

p {
    font-size: 16px;
    line-height: 180%
}

.info, .info p {
    font-size: 14px;
    opacity: .5
}

.info p--upper, .info--upper {
    letter-spacing: 2.8px;
    text-transform: uppercase
}

b {
    font-weight: 800 !important
}

.button {
    background-size: contain;
    border: none;
    border-radius: 21.5px;
    color: #000;
    cursor: pointer;
    display: block;
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 900;
    height: 43px;
    line-height: 43px;
    text-align: center;
    text-decoration: none;
    text-transform: lowercase;
    transition: all .1s ease;
    width: 224px
}

.button--primary {
    background-color: #ffceec
}

.button--secondary {
    background-color: #f9ff8e
}

.button:hover {
    background-color: #fff
}

.two-one-layout {
    display: grid;
    padding-top: 0;
    position: relative
}

.one-one-layout {
    grid-gap: 2.5rem;
    display: grid
}

.one-two-layout {
    grid-gap: 1rem;
    display: grid
}

@media only screen and (min-width: 1024px) {
    .two-one-layout {
        grid-gap: 1.5rem;
        grid-template-columns:2fr 1fr
    }

    .one-one-layout {
        grid-template-columns:repeat(2, 1fr)
    }

    .one-two-layout {
        grid-template-columns:1fr 2fr
    }
}

#ageModal {
    align-items: center;
    background-color: rgba(0, 0, 0, .7);
    display: none;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000
}

.modal-content {
    align-items: center;
    background: #fff;
    border-radius: 21.5px;
    display: flex;
    flex-direction: column;
    font-family: Helvetica Now Display, sans-serif;
    gap: 2rem;
    max-width: 400px;
    padding: 2rem;
    text-align: center;
    width: 90%
}

.modal-content .logo {
    max-width: 150px
}

.modal-content h2 {
    font-size: 3.5rem;
    line-height: 100%
}

.modal-content h3 {
    font-family: Helvetica Now Display, sans-serif
}

.modal-content .btn-yes {
    background-color: #28a745;
    color: #fff
}

.modal-content .btn-yes:hover {
    background-color: #007e1d
}

.modal-content .btn-no {
    background: transparent;
    border: none;
    color: #17253f;
    font-family: Helvetica Now Display, sans-serif;
    font-weight: 700;
    outline: none;
    text-decoration: underline
}

.modal-content__buttons {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.header {
    position: relative;
    z-index: 10
}

.header--fixed {
    max-height: 100%;
    position: relative
}

.header > .container {
    align-items: center;
    display: flex;
    height: 200px;
    justify-content: space-between;
    padding-bottom: 2rem;
    padding-top: 2rem;
    padding-left: 20px;
    padding-right: 20px;
    position: relative
}

@media only screen and (max-width: 768px) {
    .header > .container {
        align-items: center;
        display: flex;
        height: 150px;
        margin-bottom: 4rem;
        padding-block: 1rem
    }
}

.header .social-media {
    display: flex;
    gap: 36px;
    position: absolute;
    right: 0
}

.header .social-media a {
    text-decoration: none
}

.header .social-media a svg path {
    fill: #fff;
}

.header .social-media a:hover svg path {
    fill: #FEBD0D;
}

@media only screen and (max-width: 1280px) {
    .header > .container > .social-media {
        display: none
    }
}

.header .center {
    margin: 0 auto
}

.header nav ul {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0
}

.header .container .right {
    gap: 2rem
}

@media only screen and (max-width: 1280px) {
    .header .container .right {
        justify-content: center
    }
}

@media only screen and (max-width: 550px) {
    .header .container .right {
        display: none
    }
}

.header nav ul {
    gap: 2rem
}

.header nav ul a {
    font-family: BebasNeue, serif;
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    text-shadow: 0px 0px 15px #000000;
}

.header nav ul li:hover a {
    text-decoration: underline;
}

.header .mobile-menu-trigger {
    align-items: center;
    cursor: pointer;
    display: none;
    height: 44.5px;
    justify-content: center;
    position: absolute;
    right: 10px;
    width: 60px;
    z-index: 99
}

@media only screen and (max-width: 1280px) {
    .header .mobile-menu-trigger {
        display: flex
    }
}

.header .mobile-menu-trigger.menu-open {
    border-color: #fff
}

.header .mobile-menu-trigger.menu-open .svg-container {
    transform: rotate(180deg);
    transition: all .25s ease-in-out
}

.header .mobile-menu-trigger.menu-open .svg-container svg path {
    fill: #fff
}

@media only screen and (max-width: 1280px) {
    .header .btn--header, .header .header-nav--desktop {
        display: none
    }
}

.header .logo {
    left: 20px;
    position: absolute;
    z-index: 999999
}

@media only screen and (max-width: 768px) {
    .header .logo {
        left: 50%;
        transform: translateX(-50%)
    }
}

.header .header-logo img {
    max-width: 189px;
    position: relative;
    z-index: 1000
}

@media only screen and (max-width: 768px) {
    .header .header-logo img {
        width: 120px
    }
}

.overlay-slidedown {
    justify-content: center;
    transform: translateY(-100%);
    transition: transform .4s ease-in-out, visibility 0s .4s;
    visibility: hidden
}

.overlay {
    align-items: center;
    background: #ffb700;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99
}

.overlay .overlay-content {
    bottom: 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    left: 50%;
    position: absolute;
    transform: translateX(-50%)
}

.overlay .overlay-content .social-media {
    justify-content: center;
    position: relative
}

.overlay .overlay-content .header-contacts {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center
}

.overlay .overlay-content .header-contacts a {
    font-size: 1.125rem
}

.overlay nav {
    height: 50%;
    left: 50%;
    position: relative;
    position: absolute;
    text-align: right;
    top: 50%;
    transform: translate(-50%, -50%);
    width: -moz-max-content;
    width: max-content
}

.overlay ul {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%
}

.overlay ul li {
    backface-visibility: hidden;
    display: block
}

.overlay ul li:hover a {
    color: #fff !important
}

.overlay ul li a {
    color: #17253f;
    display: block;
    font-size: 2.1875rem;
    font-weight: 700;
    line-height: 35px;
    transition: color .2s
}

@media only screen and (max-width: 1280px) {
    .overlay ul li a {
        font-size: 34px
    }
}

.overlay ul li a:hover {
    color: #fff !important;
    text-decoration: underline
}

.overlay-slidedown.open {
    transform: translateY(0);
    transition: transform .25s ease-in-out;
    visibility: visible
}

.header .overlay nav ul {
    justify-content: center
}

.footer {
    background-image: url(../img/homepage/bottom-banner-blue-lagon/banner.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    color: #fff;
    clip-path: ellipse(200% 100% at 50% 103%);
    margin-top: -70px;
}

.footer a,
.footer .footer-contact {
    color: #fff;
}

footer .gradient-img {
    margin: 0 auto;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .footer .footer-logo {
        max-width: 155px
    }
}

.footer__upper {
    display: grid;
    grid-template-columns:1fr 522px 1fr;
    position: relative;
    width: 100%;
    padding-top: 160px;
    padding-bottom: 90px;
}

@media only screen and (max-width: 768px) {
    .footer__upper {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 3rem
    }
}

.footer__upper .title {
    color: #fff
}

@media only screen and (max-width: 768px) {
    .footer__upper .title {
        font-size: 5.625rem
    }
}

.footer__upper .subtitle * {
    display: block;
    font-size: 2.1875rem;
    font-weight: 900;
    line-height: 2.1875rem;
    margin-inline: auto;
    margin-top: 1rem;
    max-width: 522px
}

@media only screen and (max-width: 768px) {
    .footer__upper .subtitle * {
        font-size: 1.5625rem
    }
}

.footer__upper .subtitle, .footer__upper .title {
    text-align: center
}

.footer__main {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    padding-top: 0 !important;
    padding-bottom: 90px;
    position: relative;
    width: 100%
}

@media only screen and (max-width: 768px) {
    .footer__main {
        display: flex;
        flex-direction: column-reverse
    }
}

.footer__main .col {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

@media only screen and (max-width: 1024px) {
    .footer__main .col {
        padding-bottom: 5rem
    }
}

@media only screen and (max-width: 768px) {
    .footer__main .col {
        padding-bottom: 2rem
    }
}

.footer__main .col.address {
    padding-top: 5rem
}

@media only screen and (max-width: 768px) {
    .footer__main .col.address {
        justify-content: start;
        padding-top: 0;
        text-align: left
    }
}

.footer__main .footer-contacts {
    gap: 1rem;
    margin-top: 2rem;
    text-align: center
}

.footer__main .footer-contacts, .footer__main .footer-contacts .footer-contact {
    display: flex;
    flex-direction: column
}

@media only screen and (max-width: 768px) {
    .footer__main .footer-contacts .footer-contact {
        align-items: center
    }
}

.footer__main .footer-contacts .footer-contact span {
    color: #fff;
    font-family: BebasNeue;
    font-size: 2.5rem
}

.footer__main .footer-contacts .footer-contact a {
    color: #fff;
    font-size: 2.1875rem;
    font-weight: 900
}

.footer__bottom {
    padding-bottom: 2rem;
    position: relative;
    z-index: 10
}

.footer__bottom a {
    padding-bottom: 4px
}

.footer__bottom a:hover {
    text-decoration: underline
}

.footer__bottom .center {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center
}

.footer__bottom .container {
    align-items: center;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    padding-block: 1rem
}

@media only screen and (max-width: 768px) {
    .footer__bottom .container {
        align-items: start;
        display: flex;
        flex-direction: column-reverse;
        gap: 1rem;
        justify-content: start;
        width: 100%
    }
}

.footer__bottom nav ul {
    display: flex;
    gap: 5rem;
    padding-left: 0
}

.footer__bottom nav ul a {
    text-decoration: underline;
}

.footer .footer__bottom nav ul a:hover {
    color: #00AFB1;
}

@media only screen and (max-width: 768px) {
    .footer__bottom nav ul {
        flex-direction: row;
        gap: .5rem
    }
}

.footer__bottom .credit {
    text-align: right;
}

.footer__bottom .credit a {
    font-weight: 700
}

.footer .footer__bottom .credit a:hover {
    color: #00AFB1;
}

@media only screen and (max-width: 768px) {
    .footer__bottom .credit {
        order: 3
    }

    .footer__bottom nav {
        order: 1
    }

    .footer__bottom p.copyright {
        order: 2
    }
}

.footer .footer-bottles {
    bottom: 0;
    position: absolute;
    right: 20%
}

@media only screen and (max-width: 768px) {
    .footer .footer-bottles {
        right: -100px
    }
}

.section-contacts {
    margin-bottom: -3rem;
    margin-top: 10rem;
    position: relative;
    z-index: 10
}

@media only screen and (max-width: 500px) {
    .section-contacts {
        margin-top: 2rem
    }
}

@media only screen and (max-width: 768px) {
    .section-contacts {
        text-align: center
    }
}

.section-contacts .container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    padding-bottom: 0
}

.section-contacts .container .left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem
}

.section-contacts .container .location__title {
    font-size: 20px;
    font-weight: 800
}

.section-contacts .container .location__address {
    display: flex;
    gap: 1rem;
    justify-content: space-between
}

@media only screen and (max-width: 500px) {
    .section-contacts .container .location__address {
        flex-direction: column
    }
}

@media only screen and (max-width: 768px) {
    .section-contacts .container .location__address {
        text-align: center
    }
}

.section-contacts .container .location__address address {
    font-size: 18px;
    max-width: 315px
}

@media only screen and (max-width: 768px) {
    .section-contacts .container .location__address address {
        margin-inline: auto
    }
}

.section-contacts .container .company-id {
    font-size: 18px
}

.section-contacts .container .contacts {
    background: #fff;
    border: 2px solid #1a3617;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    height: -moz-fit-content;
    height: fit-content;
    padding: 3rem
}

@media only screen and (max-width: 500px) {
    .section-contacts .container .contacts {
        padding: 2rem 1.5rem;
        width: 100%
    }
}

.section-contacts .container .contacts__phones {
    grid-gap: 1rem;
    display: grid;
    grid-template-columns:repeat(2, 1fr)
}

@media only screen and (max-width: 500px) {
    .section-contacts .container .contacts__phones {
        grid-template-columns:1fr;
        width: 100%
    }
}

.section-contacts .container .contacts .contact__title {
    font-size: 20px;
    font-weight: 800
}

.section-contacts .container .contacts .contact__value {
    font-size: 21px
}

@media only screen and (max-width: 500px) {
    .section-contacts .container .contacts .contact__value {
        font-size: 1.2rem
    }
}

.section-contacts .container .contacts .contact__value a {
    text-decoration: underline
}

.section-contacts .container .contacts .contact__value a:hover {
    text-decoration: none
}

.section-contacts .map-iframe {
    border-radius: 40px;
    height: 377px;
    list-style: none;
    max-width: 570px;
    max-width: 100%;
    overflow: hidden;
    transition: none;
    width: 570px
}

@media only screen and (max-width: 620px) {
    .section-contacts .map-iframe {
        max-width: 100%;
        transform: scale(1.1);
        width: 100%
    }
}

.table-container {
    border: 2px solid #e8f4ff;
    border-radius: 12px;
    display: block;
    margin-top: 1.5rem;
    overflow: hidden;
    width: -moz-fit-content;
    width: fit-content
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    font-weight: 700
}

table td, table th {
    padding: 1rem
}

table td {
    background-color: #fff
}

table th {
    background: #17253f;
    color: #fff;
    text-transform: uppercase
}

table tr:nth-of-type(odd) td {
    background: #e8f4ff
}

table td:first-of-type {
    text-decoration: underline;
    text-transform: uppercase
}

.page--error {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    text-align: center
}

.underline {
    position: relative;
    text-decoration: none !important;
    width: -moz-fit-content;
    width: fit-content
}

.underline:after {
    background-color: #3c331b;
    background-image: linear-gradient(90deg, #ffb700 50%, rgba(60, 51, 27, .3) 0);
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: 200% 100%;
    bottom: -.01em;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: .3s cubic-bezier(.165, .84, .44, 1);
    width: 100%
}

.underline:hover:after {
    background-position: 0 50%
}

.underline--thick:after {
    height: 4px
}

.underline--nav {
    padding-bottom: 4px
}

.underline--nav:after {
    background-image: linear-gradient(90deg, rgba(60, 51, 27, .3) 50%, #ffb700 0) !important;
    bottom: -.09em;
    opacity: 0
}

.underline--nav:after:hover {
    opacity: 1
}

.eapps-instagram-feed-posts-grid-load-more {
    display: none !important
}

@media only screen and (max-width: 650px) {
    .footer__main {
        padding-bottom: 0;
    }

    .footer__upper .title {
        font-size: 3.5rem;
    }

    .footer__upper {
        padding-top: 120px;
        padding-bottom: 20px;
    }

    .footer__main .footer-contacts .footer-contact a {
        font-size: 1.5rem;
    }

    .footer__main .col.address {
        text-align: center;
    }

    .footer__bottom .container {
        align-items: center;
    }

    .footer {
        background-image:
                linear-gradient(to bottom, rgba(0,0,0,0) calc(100% - 20px), rgba(0,0,0,1) 100%),
                url(../img/homepage/bottom-banner-blue-lagon/banner.jpg);
        background-color: #000;
        background-size: auto 300px;
        background-position: top right;
        background-repeat: no-repeat;
    }
}