/* ----- LOGO ----- */
.av-logo img {
    width: 119px;
}
/* ----- LINK ----- */
.av-link {
    padding: 5px 20px;
    color: var(--main-red);
    text-decoration: none;
}
.av-link:visited {
    color: var(--link-active);
}
.av-link:hover {
    color: var(--link-hover)!important;
}
.av-link:visited {
    color: var(--link-visited);
}
.av-link:focus {
    color: var(--main-red);
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 2px 14px 0 rgba(203, 14, 19, 0.14);
}
.av-link.without-padding {
    padding: 0;
}

/* ----- TRANSITION ----- */
.av-transition {
    transition-property: all;
    transition-delay: 0ms;
    transition-timing-function: ease-out;
}
.av-transition-slow {
     transition-duration: 540ms;
 }
.av-transition-medium {
    transition-duration: 300ms;
}
.av-transition-fast {
    transition-duration: 540ms;
}

/* ----- LISTS ----- */
.av-list {
    list-style-type: none;
}
.av-list li {
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 18px;
    position: relative;
}
.av-list li:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: -21px;
    top: calc((100% - 8px) / 2);
    background-color: #AAA;
    border-radius: 50%;
}
.av-list {
    list-style-type: none;
}
.av-list li {
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 18px;
    position: relative;
}
.av-list li:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: -21px;
    top: calc((100% - 8px) / 2);
    background-color: #AAA;
    border-radius: 50%;
}
.av-list-num li {
    font-weight: 400;
    line-height: 32.4px;
    margin-bottom: 18px;
}
.av-list-num li > ul {
    margin-top: 14px;
}

/* ----- INPUT ----- */
.av-input {
    display: flex;
    width: 100%;
    height: 54px;
    max-width: 480px;
    padding: 18px 24px;
    align-items: center;
    gap: 10px;
    color: var(--input-text);
    border: 1px solid var(--input-border);
    background: var(--input-background);
    border-radius: 0;
    cursor: pointer;
}
.av-input:hover {
    border: 1px solid var(--input-border-active-hover);
}
.av-input:focus {
    border: 1px solid var(--input-border-active-hover);
    background: var(--input-background-active);
    box-shadow: 0 2px 10px 0 rgba(105, 0, 198, 0.20);
    color: var(--main-white);
}
.av-input:placeholder-shown, .av-input::placeholder {
    color: var(--input-text);
}
.av-input:disabled {
    cursor: auto;
    border: 1px solid var(--input-border-disabled);
    background: var(--input-background-disabled);
    color: var(--input-text-disabled);
}
.av-input:disabled::placeholder {
    color: var(--input-text-disabled);
}

.av-input-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.av-input-addon {
    display: flex;
    width: 54px;
    height: 54px;
    padding: 16px 30px;
    justify-content: center;
    align-items: center;
    background: var(--main-red);
    box-shadow: 0 8px 30px 0 rgba(203, 14, 19, 0.40);
}

.av-input-container .av-input {
    min-width: 285px;
}

/* ----- CAH-INPUT ----- */
.avs-captcha-input input {
    display: flex;
    width: 100%;
    height: 54px;
    max-width: 480px;
    padding: 18px 24px;
    align-items: center;
    gap: 10px;
    color: var(--input-text);
    border: 1px solid var(--input-border);
    background: var(--input-background);
    border-radius: 0;
    cursor: pointer;
}
.avs-captcha-input input:hover {
    border: 1px solid var(--input-border-active-hover);
}
.avs-captcha-input input:focus {
    border: 1px solid var(--input-border-active-hover);
    background: var(--input-background-active);
    box-shadow: 0 2px 10px 0 rgba(105, 0, 198, 0.20);
    color: var(--main-white);
}
.avs-captcha-input input:disabled {
    cursor: auto;
    border: 1px solid var(--input-border-disabled);
    background: var(--input-background-disabled);
    color: var(--input-text-disabled);
}
.avs-captcha-input input:disabled::placeholder {
    color: var(--input-text-disabled);
}

/* ----- CHECKBOX ----- */
.av-checkbox {
    margin-top: 0.4em;
    border-radius: 0!important;
    border: 1px solid var(--input-border);
    background-color: var(--input-background);
    cursor: pointer;
}
.av-checkbox:checked {
    margin-top: 0.4em;
    border-radius: 0!important;
    border: 1px solid var(--main-red);
    background: var(--input-background);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23CB0E13' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")!important;
}
.av-checkbox:focus {
    border: 1px solid var(--main-red);
    box-shadow: 0 2px 10px 0 rgba(203, 14, 19, 0.50);
    background: var(--input-background);
}
.av-checkbox:disabled {
    border: 1px solid var(--checkbox-border-disabled);
    background: var(--input-background);
}
.av-checkbox + label {
    color: var(--checkbox-label);
    font-size: 14px;
    font-weight: 400;
}
.av-checkbox:checked + label {
    color: var(--checkbox-label-active);
}
.av-checkbox:focus + label {
    color: var(--checkbox-label-active);
}
.av-checkbox:disabled + label {
    color: var(--checkbox-label-disabled);
}


/* ----- BUTTON ----- */
.av-button {
    width: 100%;
    height: 56px;
    max-width: 446px;
    padding: 19px 67px;
    background-color: var(--main-red);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 0;
    border-color: var(--main-red);
    box-shadow: 0 8px 30px 0 rgba(203, 14, 19, 0.40);
    font-size: 15px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 2.24px;
    text-transform: uppercase;
}
.av-button-secondary {
    display: inline-flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none;
    border: 1px solid var(--input-border);
    border-radius: 0;
    font-size: 15px;
    padding: 16px 37px;
    color: var(--main-white);
    line-height: normal;
    letter-spacing: 2.24px;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 1600px) {
    .av-button-secondary {
        font-size: 14px;
        padding: 13px 30px;
    }
}

.av-button-secondary img {
    max-height: 19px;
}
.av-button-secondary:hover,
.av-button:hover {
    background-color: var(--button-hover-active-background);
    border-color: var(--button-hover-active-background);
}
.av-button-secondary:active,
.av-button:active {
    background-color: var(--button-active-background)!important;
    border-color: var(--button-active-background)!important;
}
.av-button-secondary:focus,
.av-button:focus {
    background-color: var(--button-hover-active-background);
    border: 4px solid rgba(238, 19, 25, 0.40);
}
.av-button-secondary:focus {
    border: 1px solid rgba(238, 19, 25, 0.40);
}
.av-button-secondary:disabled,
.av-button:disabled {
    background-color: var(--button-disabled-background);
    border-color: var(--button-disabled-background);
    box-shadow: none;
    color: var(--button-disabled-text);
}
.av-button-loading,
.av-button-loading:hover,
.av-button-loading:active,
.av-button-loading:focus,
.av-button-loading:disabled {
    background-color: var(--button-loading-background);
    border-color: var(--button-loading-background);
    box-shadow: none;
    color: var(--button-loading-text);
}

.av-button-link {
    display: inline-block;
}

img.av-button-loading-image {
    animation: 1s linear 0s normal none infinite running av-button-loading-image;
    -webkit-animation: 1s linear 0s normal none infinite running av-button-loading-image;
}
@keyframes av-button-loading-image {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes av-button-loading-image {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* ----- SECTION ----- */

.av-section {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.av-section-full {
    min-height: 100vh;
    background-color: var(--section-background-dark);
}

/* ----- COUNTERS ----- */
.av-counter {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 337px;
    width: 100%;
    border-top: 1px solid var(--counter-border);
}

.av-counter > b {
    display: inline-block;
    color: var(--main-red);
    margin: 15px 0;
    font-size: 74px;
    font-weight: 700;
    line-height: normal;
}

.av-counter > h4 {
    font-size: ;
    color: var(--main-black);
}

/* ----- PRODUCTS SLIDER -----*/
.av-products-slider-item {
    opacity: 0.45;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: 796px;
    cursor: pointer;
}
@media (max-width: 1600px) {
    .av-products-slider-item {
        height: 630px;
    }
}

.swiper-slide-active .av-products-slider-item {
    opacity: 1;
}

.av-products-slider-item-image {
   height: 500px;
}
@media (max-width: 1600px) {
    .av-products-slider-item-image {
        height: 379px;
    }
}

.swiper-slide-active .av-products-slider-item .av-products-slider-item-image {
    height: 658px;
}
@media (max-width: 1600px) {
    .swiper-slide-active .av-products-slider-item .av-products-slider-item-image {
        height: 451px;
    }
}

.av-products-slider-item > h3 {
    margin-bottom: 38px;
    opacity: 0;
    text-align: center;
    height: 94px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

.swiper-slide-active .av-products-slider-item > h3 {
    opacity: 1;
}

.av-products-slider-item img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* ----- ADVANTAGES ----- */
.av-advantages {
    margin: 60px 0;
}

.av-advantage.av-product_completed {
    padding-bottom: 110px!important;
}
.av-advantage {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid var(--counter-border);
    padding-bottom: 50px!important;
}

.av-advantage:not(:first-child) {
    border-left: none;
}

.av-advantage:nth-child(5) {
    border: 1px solid var(--counter-border);
}
/*.av-advantage:nth-child(4) {*/
/*    border-left: 1px solid var(--counter-border);*/
/*}*/
/*.av-advantage:nth-child(4),*/
/*.av-advantage:nth-child(5),*/
/*.av-advantage:nth-child(6) {*/
/*    border-top: none;*/
/*}*/
.av-advantage p {
   padding: 0 15px;
}
.av-advantage.av-carbon {
    padding-bottom: 0px!important;
}
.av-advantage-image {
    width: 100px;
    height: 100px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background-color: var(--main-red);
    border-radius: 50%;
    margin: 50px 0 27px 0;
}
.av-carbon-images {
    width: 100px;
    height: 100px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: 10px 0 15px 0;
}
.av-carbon-images img {
    max-width: 100%;
}
.av-carbon-description {
    font-size: 18px;
    min-height: 90px;
}
.av-carbon-sub-title {
    margin-top: 20px;
}
.av-about-section-carbon {
    position: relative;
    background-color: var(--main-white);
    text-align: center;
    align-items: stretch;
    padding-bottom: 120px;
}

.av-about-section-carbon h2 {
    margin: 0;
}
.av-advantage h5 {
    padding: 0 15px;
    height: 89px;
    font-size: 15px;
    line-height: 29px;
    font-weight: 500;
    color: var(--main-text);
}

.av-advantage h5.with-description {
    height: auto;
}

/* ----- BENEFITS ----- */
.av-benefits {
    margin: 55px 0;
}

.av-benefits > div:nth-child(1),
.av-benefits > div:nth-child(3) {
    padding-right: 10px;
}
.av-benefits > div:nth-child(2),
.av-benefits > div:nth-child(4) {
    padding-left: 10px;
}

.av-benefit {
    height: 355px;
    width: 100%;
    position: relative;
    max-width: 100%;
    padding: 48px;
    margin-bottom: 19px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    align-items: flex-start;
}

.av-benefit h4 {
    z-index: 1;
    color: var(--main-white);
    text-transform: uppercase;
}

.av-benefit p {
    display: block;
    z-index: 1;
    color: var(--main-white);
    overflow: hidden;
    max-width: 500px;
    margin: 0;
    height: 0;
    opacity: 0;
}

.av-benefit:hover p {
    height: 64px!important;
    opacity: 1;
}

/* ----- FEEDBACK ----- */
.av-feedback {
    width: 100%;
    max-width: 460px;
    height: 385px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: flex-start;
    background-color: var(--feedback-background);
    margin-top: 30px;
    padding: 49px 33px;
    position: relative;
}

.av-feedback-text {
    margin-bottom: 24px;
}

.av-feedback-text p {
    height: 154px;
}

.av-feedback-customer-info > h5 {
    color: var(--main-black);
}

.av-feedback-customer-info > p {
    font-size: 16px;
}

.av-feedback-icon {
    position: absolute;
    top: -15px;
    right: 15px;
}

.swiper-pagination {
    position: relative;
    margin-top: 60px;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 0;
    background: none;
    border: 1px solid var(--counter-border);
}

.swiper-pagination-bullet-active {
    background: var(--main-red);
    border: 1px solid var(--main-red);
}

/* ----- ACCORDION ----- */
.accordion,
.accordion-item,
.accordion-body,
.accordion-button {
    background: transparent!important;
    border: none;
    border-radius: 0!important;
    padding: 0;
    height: auto!important;
    box-shadow: none!important;
}

.accordion-button > h5 {
    color: var(--main-white);
}

.accordion-button:not(.collapsed) > h5 {
    color: var(--main-red);
}

.accordion-item {
    border-bottom: 1px solid var(--input-border);
    padding-bottom: 15px;
}

.accordion-item:not(:last-child) {
    margin-bottom: 23px;
}


.accordion-body {
    margin-top: 10px;
    color: var(--main-white);
    font-size: 16px;
    line-height: 26px;
    padding-right: 10%;
}

.accordion-button::after {
    background-image: url('/images/icons/plus.svg');
}

.accordion-button:not(.collapsed)::after {
    background-image: url('/images/icons/minus.svg');
}

/* ----- NEWS ----- */
.av-news-image {
    width: 100%;
    max-width: 340px;
    height: 303px;
}

.av-news-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.av-news-content {
    padding: 0 63px 0 33px;
    font-size: 16px;
    line-height: 26px;
}

.av-news-content > h4 {
    margin-bottom: 14px;
}

.av-news-description {
    height: 109px;
    overflow: hidden;
}

.av-news-date {
    margin-bottom: 9px;
}

.av-news-link {
    position: relative;
    left: -21px;
}

.av-news.big {
    width: 100%;
    max-width: 501px;
}

.av-news.big .av-news-image {
    width: 100%;
    max-width: 501px;
    height: 338px;
}

.av-news.big .av-news-content {
    padding: 0;
    margin-top: 30px;
}

/* ----- SOCIAL ----- */
.av-social {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: auto;
    border: 1px solid var(--main-red);
}

.av-social.vertical {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
}

.av-social.light {
    border: none;
}

.av-social:not(:last-child) {
    margin-right: 21px;
}

.av-social.vertical:not(:last-child) {
    margin-right: 0;
    margin-bottom: 31px;
}

.av-social:hover svg path {
    fill: var(--main-red);
}
/* TEAM PAGE */

.av-team-black-block {
    background-image: url("/images/team/backgroud.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 446px;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: end;
    align-items: center;
}
.av-team-black-block-img {
    position: absolute;
    top: -45px;
    width: 390px;
}
.av-team-black-block-text {
    background: linear-gradient(180deg, rgba(203, 14, 19, 0.72) 0%, #420002 77.62%);
    width: 100%;
    min-height: 130px;
    z-index: 5;
}
.av-team-container {
    padding: 20px!important;
    margin-top: 31px;
}
.av-team-black-block-text-name {
    color: var(--main-white);
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    line-height: 36px;
    text-transform: uppercase;
    padding-top: 15px;
    margin-bottom: 5px;
}
.av-team-black-block-text-sub-title {
    color: var(--team-sub-title);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.av-team-gray-block {
    height: calc(100% - 446px);
    background-color: var(--background-about-section-gray);
}
.av-team-gray-block-title {
    color: var(--main-black);
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    line-height: 30px;
    padding: 20px 20px;
    text-align: center;
}
.av-team-gray-block-title span {
    color: var(--main-red) !important;
}
.av-team-gray-block-sub-title {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 0px 20px 30px 20px;
}

/* ----- MODAL ----- */
.av-modal .modal-body {
    height: 100%;
    overflow-y: scroll;
    background-image: url('/images/backgrounds/background-main-menu.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.av-modal.modal.show .modal-dialog {
    margin: 0;
}

.av-modal .modal-dialog {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow-y: scroll;
    margin-top: 0;
}

.av-modal .modal-content {
    border-radius: 0;
    height: 100%;
    border: none;
}

/* ----- COPYRIGHT ----- */
.av-copyright {
    color: var(--main-white);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}
/* ----- TABS* ----- */
.av-blur {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 111px;
    width: 100%;
    background: var(--about-tabs-content-background);
    opacity: 0.65;
    filter: blur(4.1px);
}

/* ----- START PAGE SECTION ----- */
.av-page-start-section {
    background-color: var(--section-background-dark);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    position: relative;
    padding-top: 154px;
    padding-bottom: 34px;
    text-align: center;
}
.av-page-start-section h1 {
    color: var(--main-white);
}
.av-page-start-section nav {
    margin-bottom: 30px;
}
.breadcrumb-item a {
    color: var(--main-white);
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
}
.breadcrumb-item.active {
    color: var(--link-breadcrumbs);
    text-transform: uppercase;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: '|'
}


/* ----- PRODUCT CATEGORY CARD ----- */
.av-product-category-card {
    background-image: url('/images/backgrounds/background-product-category-card.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 25px 41px 25px;
    width: 100%;
    height: 100%;
}
.av-product-category-card-image {
    position: relative;
    top: -69px;
    height: 433px;
}
.av-product-category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (min-width: 1110px) {
    .av-category-products-container .av-product-category-card-main {
        height: 0;
        overflow: hidden;
        position: absolute;
        width: 100%;
        transition-delay: 0ms;
        transition-duration: 190ms;
        transition-property: all;
        transition-timing-function: linear;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.6);
        padding: 0 15px;
    }
    .av-category-products-container .av-product-category-card:hover .av-product-category-card-main {
        height: 100%;
        padding: 15px;
    }
}
.av-product-category-card-description {
    color: var(--main-white);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 31px;
    height: 105px;
}
.av-product-category-card-button {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}
.av-product-category-card-button button {
    font-size: 13px;
}
.av-product-category-card-title {
    color: var(--main-white);
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    line-height: 36px;
    letter-spacing: 0.96px;
    min-height: 73px;
    margin-bottom: 15px;
}

.av-product-category-card.big {
    align-items: center;
}

.av-product-category-card.big .av-product-category-card-image {
    height: 331px;
    top: -50px;
}

.av-product-category-card.product {
    padding-top: 31px;
}

.av-product-category-card.product .av-product-category-card-image {
    top: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: 369px;
}
.av-product-category-card.product .av-product-category-card-title {
    margin-top: 14px;
}

/* ----- PRODUCT RECOMMEND CARD ----- */
.av-product-recommend-card {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    background-image: url('/images/backgrounds/background-product-recommend-card.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
}
.av-product-recommend-card-content {
    padding: 67px 0 76px 80px;
}
.av-product-recommend-card-title {
    color: var(--main-white);
    font-size: 24px;
    font-weight: 800;
    line-height: 36px;
    letter-spacing: 0.96px;
    margin-bottom: 31px;
}
.av-product-recommend-card-image {
    width: 169px;
    height: 100%;
    position: relative;
}
.av-product-recommend-card-image img {
    height: 150%;
    position: absolute;
    top: -25%;
    right: -21%;
}

/* ----- CASE CARD ----- */
.av-case-card {
    width: 100%;
    height: 100%;
}
.av-case-card-image {
    width: 100%;
    object-fit: cover;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: 390px;
}
.av-case-card-image > a {
    display: block;
    height: 100%;
    width: 100%;
}
.av-case-card-image > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.av-case-card-title {
    color: var(--main-black);
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 800;
    line-height: 36px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    height: 73px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
.av-case-card-description {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    height: 96px;
    margin-bottom: 14px;
}
.av-case-card-button {
    margin-top: 43px;
}
.av-case-card-button button {
    font-size: 14px;
    padding: 19px 25px;
}
.av-case-card-content {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    background-color: var(--background-about-section-gray);
    padding: 19px;
}

/* ----- FORM ----- */
.av-form {
    width: 100%;
    max-width: 700px;
    padding: 31px 115px;
    border: 1px solid var(--about-tabs-border-buttons);
    background: linear-gradient(111deg, #191A1E 41.67%, #202226 100%);
    box-shadow: 0 34px 50px 0 rgba(0, 0, 0, 0.40);
}
.av-form form > div {
    margin-bottom: 19px!important;
}
.av-form form > div.av-form-title {
    color: var(--main-white);
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 13px!important;
}
.av-form form > p.av-form-sub-title {
    text-align: center;
    font-size: 14px;
}

/* ----- LANG SWITCHER ----- */
.av-lang-switcher {
    position: relative;
}
.av-lang-switcher-options {
    position: absolute;
    display: none;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    z-index: 9999;
    width: 100%;
}
.av-lang-switcher-options.open {
    display: flex;
}
.av-lang-switcher-option {
    width: 100%;
    background: linear-gradient(111deg, #191A1E 41.67%, #202226 100%);
}
.av-lang-switcher-option > a > button {
    width: 100%;
}
.av-lang-switcher-option > a {
    width: 100%;
}
.av-error-section {
    height: 100vh;
    background-image: url("/images/404.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.av-error-page-text {
    margin-top: 50px;
    color: var(--main-white);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.av-error-page-404 {
    color: var(--main-white);
    text-align: center;
    font-size: 220px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.av-error-page-link {
    text-align: center;
}

/* ----- VIDEO BACKGROUND ----- */
.av-video-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.av-video-background:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.4)
}
.av-video-background > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- MAP ----- */
.av-map-dots {
    cursor: pointer;
    box-shadow: 0 0 0 rgb(204 44 44 / 66%);
    animation: pulse 4s infinite;
    width: 9px;
    height: 9px;
    overflow: visible;
    background-color: var(--main-red);
    position: absolute;
    z-index: 31;
}
.av-map-dots:hover {
    animation: none;
}

.av-map-dots-info {
    position: absolute;
    display: flex;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.9);
    flex-flow: row nowrap;
    opacity: 0;
    justify-content: center;
    align-items: center;
    z-index: 41;
    margin-left: 10px;
    margin-top: -85px;
    color: var(--main-white);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.56px;
    text-transform: uppercase;
}

.av-map-dots:hover + .av-map-dots-info {
    opacity: 1;
    width: 215px;
    height: 85px;
}

.av-map-dot-ukraine {
    top: calc(175px - 91px);
    left: 387px;
    animation-delay: 0ms;
}

.av-map-dot-finland {
    top: calc(208px - 91px);
    left: 356px;
    animation-delay: 1000ms;
}

.av-map-dot-poland {
    top: calc(164px - 91px);
    left: 334px;
    animation-delay: 2000ms;
}

.av-map-dot-holand {
    top: calc(175px - 91px);
    left: 312px;
    animation-delay: 3000ms;
}

.av-map-dot-britain {
    top: calc(186px - 91px);
    left: 356px;
    animation-delay: 4000ms;
}

.av-map-dot-belgium {
    top: calc(218px - 91px);
    left: 323px;
    animation-delay: 5000ms;
}

.av-map-dot-deutch {
    top: calc(197px - 91px);
    left: 334px;
    animation-delay: 6000ms;
}

.av-map-dot-romania {
    top: calc(197px - 91px);
    left: 376px;
    animation-delay: 7000ms;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(204,44,44, 0.9);
    }
    70% {
        -webkit-box-shadow: 0 0 0 41px rgba(204,44,44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204,44,44, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(204,44,44, 0.9);
        box-shadow: 0 0 0 0 rgba(204,44,44, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 41px rgba(204,44,44, 0);
        box-shadow: 0 0 0 41px rgba(204,44,44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,44,44, 0);
        box-shadow: 0 0 0 0 rgba(204,44,44, 0);
    }
}

/* ----- COOKIES ----- */
.av-cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    display: none;
    z-index: 99999;
}
.av-cookies h4 {
    color: var(--main-white);
}
.av-cookies p {
    color: var(--main-white);
}
.av-cookies-background {
    display: none;
    width: 100vw;
    height: 100vh;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
}
.av-cookies-buttons {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.av-cookies-buttons > button:not(:last-child) {
    margin-bottom: 15px;
}
.av-cookies-buttons > button {
    width: 300px;
}

/* ----- PRELOADER ----- */
.av-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: var(--main-white);
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.av-preloader video {
    width: 500px;
    position: relative;
    z-index: 999;
}
.av-margin-top-20 {
    margin-top: 20px;
}
.av-product-completed-image img {
    position: absolute;
    top: 39%;
    height: 469px;
}