:root {
    --color-primary: #ffbf00;
    --color-border: #eff2f4;
    --color-success: #82DE6E;
    --color-error: red;
}

.photo-right {
    float: right;
    width: 50%;
    margin: 0 0 15px 15px;
}
.photo-left {
    float: left;
    width: 50%;
    margin: 0 15px 15px 0;
}
.photo-center {
    float: left;
    width: 100%;
    margin: 0 0 15px 0;
}

.video-block {
    margin-bottom: 30px;
}
.par-video {
    width: 100%;
}
.par-video-inner {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 56.25%;
    position: relative;
}
.par-video .par-video-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.par-video-caption {
    width: 100%;
    display: block;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    color: #383838;
    padding: 12px;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.14px;
    border-bottom: 3px solid #e04b40;
    line-height: 1.6;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
h1.beta {
    margin-left: 5px;
}

/* submenu */
.menu-list-sub {
    position: absolute;
    z-index: 1001;
    top: 100%;
    left: -999em;
    min-width: 175px;
    transform: translateX(-50%);
    display: block;
    background-color: #fff;
    border: none;
    border-top: solid 2px #ffbf00;
}
.menu-list-sub:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 4.5px 5px 4.5px;
    border-color: transparent transparent #ffbf00 transparent;
    display: block;
    position: absolute;
    top: -7px;
    transform: translateX(-50%);
    left: 50%;
}
.menu-list-sub > li {
    line-height: 36px;
}
.menu-list-sub > li a {
    display: block;
    height: 100%;
    line-height: 36px;
    font-size: 0.8125rem;
    text-transform: uppercase;
}
.menu-list-sub > li:hover {
    background-color: #eee;
}
.menu-list-sub > li:hover a {
    color: #ffbf00;
}
.menu-list-item:focus > ul,
.menu-list-item:hover > ul,
.menu-list-item > ul:hover,
.menu-list-item > ul:focus {
    left: 50%;
}
.section-menu-links .btn-item-shadow {
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.2));
}
.section-menu-links {
    padding-bottom: 0;
}
.section-menu-links .btn-item-block:after {
    clear: both;
    content: "";
    display: table;
}
.section-menu-links .btn-item {
    float: left;
    margin-bottom: 20px;
}
.offer-icon .img-responsive,
.offer-flex .img-responsive {
    max-height: 71px;
    width: auto;
    height: auto;
}
.offer-content {
    width: 100%;
}

/* === COMMON === */

.icon-list {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1em;
}

.icon-list--dividers {
    gap: 0;
}

.icon-list--dividers > * + * {
    border-top: 1px solid var(--color-border);
    padding-top: 1em;
    margin-top: 1em;
    width: 100%;
}

.icon-item {
    font-size: inherit;
    position: relative;
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 1em;
    transition: all 125ms ease-out;
}

.icon-item__icon {
    fill: currentColor;
}

.icon-item a::before {
    content: "";
    position: absolute;
    inset: 0;
}

.icon-item:has(a) {
    font-weight: 600;
}

.icon-item:has(a) .icon-item__icon {
    color: var(--color-primary);
}

.icon-item:has(a:is(:hover, :active, :focus-visible)) {
    color: var(--color-primary);
    text-decoration: none;
}

.form-alert-success {
    color: var(--color-success);
}

.form-alert-error {
    color: var(--color-error);
}

.float-nav {
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 100;

    @media (max-width: 800px) {
        display: none;
    }
}

.page-index .float-nav {
    top: 15%;
}

.float-nav .social-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-nav .social-list-item {
    margin: 0;
    background: var(--color-primary);
    transition: all 150ms ease-in;
    box-shadow: 5px 0 0 var(--color-primary);
}

.float-nav .social-list-item:hover {
    transform: translateX(-5px);
}

/* === MODULES === */

.contact-form {
    filter: drop-shadow(0 0 33px rgba(0, 0, 0, 0.09));
}

.contact-form__inner {
    background-color: #fff;
    padding: 3rem;
    clip-path: polygon(
            0 0,
            100% 0,
            100% calc(100% - 32px),
            calc(100% - 32px) 100%,
            0 100%
    );
}

@media screen and (max-width: 767px) {
    .contact-form__inner {
        padding: 1.5rem 1rem;
    }
}

/* === UTILITY === */

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