:root {
    --swiper-pagination-color: white;
    --swiper-pagination-bullet-size: 12px;
    --swiper-pagination-bullet-width: 12px;
    --swiper-pagination-bullet-height: 12px;
    --swiper-pagination-bullet-inactive-color: white;
    --swiper-pagination-bullet-inactive-opacity: 0.15;
    --swiper-pagination-bullet-opacity: 1;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-vertical-gap: 6px;
    --swiper-pagination-bottom: 0;
    --swiper-pagination-top: 15px;
}

html {
    scroll-behavior: smooth;
}

body {
    font: 16px/24px "Open Sans", sans-serif;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.form-group {
    margin-bottom: 1rem;
}

.topbar {
    height: 50px;
    color: white;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.topbar__container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    gap: 10px;
}

@keyframes flickerAnimation {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.flick {
    animation: flickerAnimation 1s infinite;
}

a.white-link {
    color: white;
    text-decoration: none;
}

.white-link--flex {
    display: flex;
    align-items: center;
    gap: 5px;
}

.home-header {
    position: relative;
}

.home-header__bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: black;
    object-fit: cover;
    z-index: 1;
}

.home-header__mask {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.35);
    /*background: repeating-linear-gradient(*/
    /*        to bottom,*/
    /*        rgba(0, 0, 0, .25) 0px,*/
    /*        rgba(0, 0, 0, .25) 1px,*/
    /*        rgba(0,0,0,.15) 1px,*/
    /*        rgba(0,0,0,.15) 3px*/
    /*);*/
    z-index: 2;
}

.home-header__vidos {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-header__wrap {
    position: relative;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
}

.site-navbar {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 63px;
    transition: background-color .15s ease;
    z-index: 999999999;
}

.site-navbar.scrolled {
    position: fixed;
    top: 0;
    background: black;
}

@media (max-width: 767px) {
    .topbar {
        display: none;
    }
}

@media (max-width: 991px) {
    .site-navbar {
        display: none;
    }

    .topbar__container {
        padding-left: 80px;
        padding-right: 80px;
    }
}

.site-navbar__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
    align-items: center;
    padding-left: 56px;
    padding-right: 56px;
    gap: 20px;
}

.site-navbar__brand {
    display: flex;
    align-items: center;
}

.site-nav {
    display: flex;
    height: 100%;
    align-self: stretch;
    gap: 10px;
    justify-content: center;
}

a.site-nav__link {
    color: white;
    text-decoration: none;
    display: flex;
    height: 100%;
    font-weight: bold;
    position: relative;
    align-items: center;
    padding: 0 12px;
    white-space: nowrap;
}

a.site-nav__link:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: white;
    opacity: 0;
    transform: scaleX(0);
    transition: .3s ease;
    border-radius: 4px;
    /*box-shadow: 0 0 10px 3px rgba(255,255,255,.5);*/
    box-shadow:
            0 0 10px #ff8e57,   /* Оранжево-розовый */
            0 0 20px #ff5f70,   /* Коралловый */
            0 0 30px #ff3795,   /* Насыщенный розовый */
            0 0 40px #c81ee0,   /* Фиолетовый */
            0 0 50px #7d10f1,   /* Глубокий фиолетовый */
            0 0 60px #c81ee0,   /* Возвращаемся к фиолетовому */
            0 0 70px #ff3795,   /* Розовый */
            0 0 80px #ff5f70,   /* Коралловый */
            0 0 90px #ff8e57;   /* Оранжево-розовый */
}

a.site-nav__link:hover:after, a.site-nav__link.active:after {
    opacity: 1;
    transform: scaleX(1);
}

.home-header__center {
    padding-left: 15px;
    padding-right: 15px;
    display: table;
    margin: 0 auto;
    text-align: center;
}

.header-buttons {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

a.header-buttons__btn {
    position: relative;
    background: #0a0b0c;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    text-decoration: none;
    color: white;
    border-radius: 40px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: .3s ease;
    width: 200px;
}

@media (max-width: 767px) {
    .header-buttons {
        display: table;
        margin: 0 auto;
        margin-top: 30px;
    }

    a.header-buttons__btn {
        margin-bottom: 15px;
    }
}

a.header-buttons__btn:hover {
    transform: scale(1.05);
    box-shadow:
            0 0 10px rgba(255, 142, 87, 1),
            0 0 20px rgba(255, 95, 112, 0.91),
            0 0 30px rgba(255, 55, 149, 0.82),
            0 0 40px rgba(200, 30, 224, 0.73),
            0 0 50px rgba(125, 16, 241, 0.64),
            0 0 60px rgba(200, 30, 224, 0.55),
            0 0 70px rgba(255, 55, 149, 0.46),
            0 0 80px rgba(255, 95, 112, 0.37),
            0 0 90px rgba(255, 142, 87, 0.25);
}

.home-header__bottom {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.scrolldown-indicator {
    opacity: .35;
    animation: arrowBounce 1.5s infinite ease-in-out;
}

.services-section__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 767px) {
    .services-section__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .services-section__container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.video-cover {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.video-cover__video {
    width: 100%;
    transition: .3s ease;
    vertical-align: middle;
}

.services-section {
    background: #0a0b0c;
    padding: 100px 0;
    color: white;
}



.services-section__title {
    text-transform: uppercase;
    text-align: center;
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: center;
}

a.services-section__item {
    color: white;
    text-decoration: none;
    transition: .3s ease;
    border-radius: 4px;
}
a.services-section__item:hover {
    box-shadow:
            0 0 10px rgba(255, 142, 87, 0.4),
            0 0 20px rgba(255, 95, 112, 0.35),
            0 0 30px rgba(255, 55, 149, 0.3),
            0 0 40px rgba(200, 30, 224, 0.25),
            0 0 50px rgba(125, 16, 241, 0.2),
            0 0 60px rgba(200, 30, 224, 0.18),
            0 0 70px rgba(255, 55, 149, 0.15),
            0 0 80px rgba(255, 95, 112, 0.12),
            0 0 90px rgba(255, 142, 87, 0.1);
}
a.services-section__item:hover .video-cover__video {
    transform: scale(1.15);
}

.section-heading {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.portfolio-section {
    background: #000;
    padding: 100px 0;
    color: white;
}



.swiper {
    width: 100%;
    height: 300px;
    user-select: none;
}

.swiper * {
    outline: none;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(.95);
    transition: .3s ease;
    border-radius: 4px;
}

.swiper-slide:hover img {
    box-shadow:
            0 0 1px rgba(255, 142, 87, 1),
            0 0 2px rgba(255, 95, 112, 0.91),
            0 0 3px rgba(255, 55, 149, 0.82),
            0 0 4px rgba(200, 30, 224, 0.73),
            0 0 5px rgba(125, 16, 241, 0.64),
            0 0 6px rgba(200, 30, 224, 0.55),
            0 0 7px rgba(255, 55, 149, 0.46),
            0 0 8px rgba(255, 95, 112, 0.37),
            0 0 9px rgba(255, 142, 87, 0.25);
}

#map {
    background: black;
    width: 100%;
    height: 480px;
    padding: 0;
    margin: 0;
}

.ymaps-2-1-79-ground-pane {
    filter: grayscale(.5);
}

.map-wrap {
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .4;
    background: black;
    pointer-events: none;
    mix-blend-mode: darken;
}

.contact-form-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 6000;
    pointer-events: none;

}

.contact-form-wrap__container {
    position: relative;
    height: 100%;
}

.contact-form {
    position: absolute;
    right: 15px;
    top: 0;
    width: 420px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form__form {
    background: #0a0b0c;
    color: white;
    pointer-events: all;
    padding: 15px 15px;
    border-radius: 6px;
}

.form-control {
    background: black;
    height: 50px;
    border: none;
    border-bottom: 1px solid #1a1b1c;
    border-radius: 4px;
    color: white!important;
}

.form-control:focus {
    background: black;
    box-shadow: none;
    border-color: white;
}

.contact-form__title {
    margin-bottom: 10px;
    margin-top: 15px;
    text-align: center;
    font-size: 24px;
}

label {
    opacity: .5;
    font-size: 14px;
}

.btn-default {
    width: 100%;
    color: white;
    background: black;
    text-transform: uppercase;
    border-radius: 6px;
    transition: .3s;
    position: relative;
    border: none;
    display: block;
    height: 50px;

    background: linear-gradient(
            45deg,
            rgba(255, 142, 87, 1),
            rgba(255, 95, 112, 0.91),
            rgba(255, 55, 149, 0.82),
            rgba(200, 30, 224, 0.73),
            rgba(125, 16, 241, 0.64)
    );
}

.btn-default__inner {
    position: absolute;
    left: 3px;
    top: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background: black;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
    letter-spacing: 2px;
}

.btn-default:hover .btn-default__inner {
    background: transparent;
}

.site-footer {
    font-size: 14px;
    padding: 30px 0;
    background: black;
    color: rgba(255,255,255,.75);
}

.btn-default--small {
    height: 40px;
    font-size: 14px;
}

.btn-default--small .btn-default__inner {
    left: 1px;
    top: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 6px;
}

.gradient-text {
    background: linear-gradient(
            45deg,
            rgba(255, 142, 87, 1),
            rgba(255, 95, 112, 0.91),
            rgba(255, 55, 149, 0.82),
            rgba(200, 30, 224, 0.73),
            rgba(125, 16, 241, 0.64)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.features-section {
    background: #000;
    padding: 100px 0;
    color: white;
}



.features-section__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .features-section__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-section__container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.feature {
    position: relative;
    margin-bottom: 15px;
    padding-left: 45px;
}

.feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url("../img/icon_star.svg") left top no-repeat;
    background-size: cover;
    width: 30px;
    height: 30px;
}

.page-header {
    position: relative;
}

.page-header__bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: black;
    z-index: 1;
}

.page-header__mask {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.35);
    /*background: repeating-linear-gradient(*/
    /*        to bottom,*/
    /*        rgba(0, 0, 0, .25) 0px,*/
    /*        rgba(0, 0, 0, .25) 1px,*/
    /*        rgba(0,0,0,.15) 1px,*/
    /*        rgba(0,0,0,.15) 3px*/
    /*);*/
    z-index: 2;
}

.page-header__mask--blur {
    backdrop-filter: blur(5px);
}

.page-header__image {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-header__wrap {
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
}

.page-heading {
    position: relative;
    margin: 0;
    margin-top: 110px;
    padding-top: 50px;
    padding-bottom: 112px;
    padding-left: 0;
}

.page-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 74px;
    width: 9999px;
    margin-left: calc(-9999px - 20px);
    height: 4px;
    background: white;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .page-heading {
        margin-left: 30px;
    }

    .page-heading::before {
        top: 68px;
    }
}

.article-view {
    padding-top: 80px;
    padding-bottom: calc(80px - 16px);
    font-size: 19px;
    background: black;
    color: white;
}

.service-index {
    padding-top: 80px;
    padding-bottom: calc(80px - 16px);
    font-size: 19px;
    background: #0a0b0c;
}

.portfolio-index {
    padding-top: 80px;
    padding-bottom: calc(80px - 16px);
    font-size: 19px;
    background: black;
}

.portfolio-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767px) {
    .portfolio-photos {
        grid-template-columns: repeat(2, 1fr);
    }
}

a.portfolio-photos__item {
    display: block;
    height: 300px;
}

.portfolio-photos__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(.95);
    transition: .3s ease;
    border-radius: 4px;
}

a.portfolio-photos__item:hover .portfolio-photos__image {
    box-shadow: 0 0 1px rgba(255, 142, 87, 1), 0 0 2px rgba(255, 95, 112, 0.91), 0 0 3px rgba(255, 55, 149, 0.82), 0 0 4px rgba(200, 30, 224, 0.73), 0 0 5px rgba(125, 16, 241, 0.64), 0 0 6px rgba(200, 30, 224, 0.55), 0 0 7px rgba(255, 55, 149, 0.46), 0 0 8px rgba(255, 95, 112, 0.37), 0 0 9px rgba(255, 142, 87, 0.25);
}

.pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    user-select: none;
}

.pagination li {
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    background: #0a0b0c;
    border-radius: 6px;
}

.pagination a {
    color: white;
    text-decoration: none;
}

.pagination li.active {
    background: linear-gradient(
            45deg,
            rgba(255, 142, 87, 1),
            rgba(255, 95, 112, 0.91),
            rgba(255, 55, 149, 0.82),
            rgba(200, 30, 224, 0.73),
            rgba(125, 16, 241, 0.64)
    );
}

@media (max-width: 767px) {
    .services-section, .portfolio-section, .features-section {
        padding: 60px 0;
    }

    .article-view, .service-index, .portfolio-index {
        padding-top: 60px;
        padding-bottom: calc(60px - 16px);
    }
}

.other-services {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    margin-top: 15px;
}

@media (max-width: 767px) {
    .other-services {
        grid-template-columns: repeat(1, 1fr);
    }
}

.other-services__item {
    list-style: none;
}

a.other-services__link {
    text-decoration: none;
    color: white;
    font-size: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.other-services__video-wrapper {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    transition: .3s ease;
}

.other-services__video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a.other-services__link:hover .other-services__video-wrapper {
    transform: scale(1.1);
}

#callbackForm, #contactForm {
    color: white;
    background: #0a0b0c;
}

#contactForm {
    width: 100%;
    max-width: 500px;
}

#callbackForm.fancybox-content, #contactForm.fancybox-content {
    padding: 24px!important;
}

.alert {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 100%;
    z-index: 9999999;
    max-width: 330px;
    animation: arrowBounce 1.5s infinite ease-in-out;
}