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

body {
    font-family: Roboto, sans-serif;
    position: relative;
    padding-top: 125px;
}

.general-wrapper {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 1000px) {
    .general-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }
}

.hidden {
    display: none !important;
}

.ui__rows {
    display: flex;
    flex: 1 0 100%;
}

.ui__cols {
    display: flex;
    flex-direction: column;
    flex: 1 0 100%;
}

.ui__display-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.ui__display-justify-between {
    display: flex;
    justify-content: space-between;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0 5px 4px #0000000d;
    height: 125px;
}

header .header-inner {
    display: flex;
    flex-wrap: wrap;
}

header .contact {
    justify-content: flex-end;
    flex: 1 0 100%;
    font-size: 13px;
    color: #898989;
    padding: 10px 0;
}

header .contact img {
    width: 20px;
    filter: brightness(0) saturate(100%) invert(60%) sepia(0%) saturate(0%) hue-rotate(52deg) brightness(91%)
        contrast(89%);
    margin-right: 10px;
}

header .contact span {
    white-space: nowrap;
}

@media screen and (max-width: 600px) {
    header .contact span:first-of-type {
        display: none;
    }
}

header .contact span a {
    color: #898989;
    text-decoration: none;
}

header .contact > span + span {
    margin-left: 30px;
}

@media screen and (max-width: 600px) {
    header .contact > span + span {
        margin-left: 10px;
    }
}

header nav.nav {
    margin-left: auto;
    max-width: 300px;
    width: 100%;
}

@media screen and (max-width: 600px) {
    header nav.nav {
        position: relative;
        max-width: calc(100% - 100px);
    }
}

header nav.nav ul {
    list-style: none;
}

@media screen and (max-width: 600px) {
    header nav.nav ul {
        display: none;
    }

    header nav.nav ul.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        background: #fff;
        right: 0;
        top: 85px;
        width: 210px;
        box-shadow: 0 15px 18px #0000006b;
    }
}

header nav.nav ul li a {
    color: #333;
    text-decoration: none;
    height: 85px;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.1s linear, height 0s;
}

@media screen and (max-width: 600px) {
    header nav.nav ul li a {
        width: 100%;
        padding: 0 10px;
        height: 60px;
    }
}

header nav.nav ul li a.active,
header nav.nav ul li a:hover {
    border-bottom: 3px solid #99ca3c;
    color: #62d35d;
}

header .logo {
    margin-top: -33px;
    transition: transform 0.2s linear;
    transform: scale(1);
    cursor: pointer;
    transition: width 0.2s linear;
    width: 140px;
}

@media screen and (max-width: 600px) {
    header .logo {
        margin-top: -10px;
        width: 90px;
    }
}

header .logo img {
    width: 100%;
}

header .logo:hover {
    transform: scale(1.05);
}

header.scrolled {
    height: 70px;
}

header.scrolled .contact {
    display: none;
}

header.scrolled .logo {
    margin: auto 0;
    width: 80px;
}

@media screen and (max-width: 600px) {
    header.scrolled nav.nav ul.active {
        top: 70px;
    }
}

header.scrolled nav.nav ul li a {
    height: 70px;
}

header .mobile-nav-icon {
    display: none;
}

@media screen and (max-width: 600px) {
    header .mobile-nav-icon {
        display: block;
        margin-left: auto;
        max-width: 40px;
    }

    header .mobile-nav-icon span {
        height: 4px;
        display: block;
        width: 100%;
        background-color: #6f687c;
        margin: 8px 0;
        border-radius: 10px;
    }

    header .mobile-nav-icon.active span {
        background-color: #a09da5;
    }
}

.about-us-promo {
    align-items: flex-start;
    margin-top: 100px;
}

@media screen and (max-width: 700px) {
    .about-us-promo {
        margin-top: 30px;
    }
}

@media screen and (max-width: 570px) {
    .about-us-promo {
        flex-direction: column;
    }
}

.about-us-promo .about-us__row {
    flex: 1 0 50%;
}

.about-us-promo .about-us__row:nth-child(2) {
    letter-spacing: 1.2px;
    text-align: center;
}

@media screen and (max-width: 1100px) {
    .about-us-promo .about-us__row:nth-child(2) {
        flex: 1 1 100%;
        padding-left: 40px;
    }
}

@media screen and (max-width: 570px) {
    .about-us-promo .about-us__row:nth-child(2) {
        padding-left: 0;
    }
}

.about-us-promo .about-us__row p {
    text-align: left;
}

.about-us-promo .about-us__row h3 {
    font-size: 35px;
    margin-top: 5px;
    margin-bottom: 70px;
    color: #333;
    font-weight: 400;
    text-transform: uppercase;
}

@media screen and (max-width: 700px) {
    .about-us-promo .about-us__row h3 {
        font-size: 25px;
        margin-bottom: 20px;
    }
}

.about-us-promo .about-us__row p,
.about-us-promo .about-us__row span {
    font-size: 14px;
    line-height: 30px;
    color: #888;
}

@media screen and (max-width: 700px) {
    .about-us-promo .about-us__row p,
    .about-us-promo .about-us__row span {
        line-height: 20px;
    }
}

@media screen and (max-width: 1100px) {
    .about-us-promo .about-us__row:nth-child(1) {
        flex: 1 0 300px;
    }
}

@media screen and (max-width: 700px) {
    .about-us-promo .about-us__row:nth-child(1) {
        flex: 1 0 230px;
    }
}

@media screen and (max-width: 1100px) {
    .about-us-promo .about-us__row img {
        width: 100%;
    }
}

@media screen and (max-width: 700px) {
    .about-us-promo .about-us__row img {
        margin-top: 30px;
    }
}

.promovation-promo {
    background-color: #5498c7;
    background-image: url(/images/uploads/big__blue.png);
    padding: 130px 0;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    margin-top: 50px;
}

.promovation-promo .about-us-promo {
    margin-top: 0;
}

.promovation-promo .about-us__row p,
.promovation-promo .about-us__row span,
.promovation-promo .about-us__row h3 {
    color: #fff;
}

.promovation-promo .about-us__row h3 {
    text-transform: capitalize;
}

.promovation-promo .about-us__row p {
    font-size: 15px;
    line-height: 25px;
}

.promovation-promo .about-us__row span {
    font-size: 16px;
    letter-spacing: 1.2px;
}

.promovation-promo .promovation_button {
    display: block;
    background-color: #1d1d22;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 32px;
    text-align: center;
    width: fit-content;
    padding: 20px 50px;
    margin-top: 30px;
}

.learning .promovation-promo {
    padding: 100px 0;
}

.service-promo {
    margin-top: 70px;
    flex-wrap: wrap;
}

.service-promo .service_img {
    background-color: #f8f8f8;
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}

.service-promo .service_content {
    flex: 1 0 calc(33.33% - 20px);
    margin: 0 10px;
}

@media screen and (max-width: 800px) {
    .service-promo .service_content {
        flex: 1 0 calc(33.33% - 10px);
        margin: 0 5px;
    }
}

@media screen and (max-width: 730px) {
    .service-promo .service_content {
        flex: 1 0 calc(50% - 10px);
        margin: 0 5px;
    }
}

@media screen and (max-width: 480px) {
    .service-promo .service_content {
        flex: 1 0 100%;
        margin: 0;
    }
}

.service-promo .service_text {
    margin-top: 35px;
    padding: 0 30px;
    margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
    .service-promo .service_text {
        padding: 0 5px;
    }
}

.service-promo .service_text h3 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-promo .service_text p {
    color: #888;
    font-size: 15px;
    line-height: 30px;
}

.service-promo .service_text p a {
    color: #039be5;
    text-decoration: none;
}

.learning .service-promo .service_content:nth-child(1) .service_img {
    background-color: #4ec3c7;
}

.learning .service-promo .service_content:nth-child(2) .service_img {
    background-color: #f4da80;
}

.learning .service-promo .service_content:nth-child(3) .service_img {
    background-color: #f36c36;
}

.learning .service-promo .service_content:nth-child(4) .service_img {
    background-color: #9cce67;
}

.learning .service-promo .service_content:nth-child(5) .service_img {
    background-color: #f8f8f8;
}

.learning .service-promo .service_content:nth-child(6) .service_img {
    background-color: #2c5871;
}

.contact-promo {
    background: #99ca3c;
    padding: 80px 0;
    margin-top: 100px;
}

@media screen and (max-width: 800px) {
    .contact-promo {
        padding: 50px 10px;
        margin-top: 50px;
    }
}

@media screen and (max-width: 400px) {
    .contact-promo {
        padding: 30px 10px;
    }
}

.contact-promo__inner {
    max-width: 1100px;
    justify-content: space-between;
    margin: 0 auto;
}

.contact-promo h3 {
    font-size: 36px;
    margin-right: 30px;
    color: #fff;
    font-weight: 500;
}

@media screen and (max-width: 800px) {
    .contact-promo h3 {
        font-size: 26px;
    }
}

@media screen and (max-width: 400px) {
    .contact-promo h3 {
        font-size: 22px;
        margin-right: 10px;
    }
}

.contact-promo a {
    width: 220px;
    height: 60px;
    line-height: 60px;
    background: #fff;
    color: #333;
    border-radius: 50px;
    font-size: 17px;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-align: center;
    box-shadow: 0 3px 6px #0003;
    transition: transform 0.1s linear;
    transform: translate(0);
}

.contact-promo a:hover {
    transform: translateY(-3px);
}

@media screen and (max-width: 800px) {
    .contact-promo a {
        width: 200px;
        height: 50px;
        line-height: 50px;
        border-radius: 50px;
        font-size: 15px;
    }
}

.contact-promo .img-wrapper {
    margin-left: 50px;
}

@media screen and (max-width: 800px) {
    .contact-promo .img-wrapper {
        margin-left: 0;
        margin-top: 20px;
    }
}

.contact-promo .efactura {
    justify-content: space-between;
}

@media screen and (max-width: 800px) {
    .contact-promo .efactura {
        flex-direction: column;
    }
}

.finished-projects {
    margin-top: 100px;
}

@media screen and (max-width: 960px) {
    .finished-projects {
        margin-top: 50px;
    }
}

.finished-projects .title {
    text-align: center;
    margin-bottom: 70px;
}

@media screen and (max-width: 640px) {
    .finished-projects .title {
        margin-bottom: 30px;
    }
}

.finished-projects .title h3 {
    font-size: 36px;
    color: #333;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 500;
    padding: 0 10px;
}

@media screen and (max-width: 640px) {
    .finished-projects .title h3 {
        font-size: 26px;
    }
}

.finished-projects .title span {
    color: #888;
    font-size: 14px;
    letter-spacing: 1.2px;
}

.finished-projects .projects-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    background-color: #2a3c4f;
}

.finished-projects .projects-wrapper .project {
    background-size: cover;
    background-repeat: no-repeat;
    flex: 0 0 calc(20% - 20px);
    margin: 10px;
    background-color: #ededed;
    height: 400px;
}

@media screen and (max-width: 1300px) {
    .finished-projects .projects-wrapper .project {
        flex: 0 0 calc(25% - 20px);
    }
}

@media screen and (max-width: 960px) {
    .finished-projects .projects-wrapper .project {
        flex: 0 0 calc(33.33% - 10px);
        margin: 5px;
    }
}

@media screen and (max-width: 640px) {
    .finished-projects .projects-wrapper .project {
        flex: 0 0 calc(50% - 10px);
    }
}

@media screen and (max-width: 430px) {
    .finished-projects .projects-wrapper .project {
        flex: 1 0 100%;
        margin: 5px 0;
    }
}

.finished-projects .projects-wrapper .project .ui__display-center {
    opacity: 0;
    height: 100%;
    background: #63d35dc7;
    width: 100%;
    font-size: 21px;
    text-align: center;
    text-decoration: none;
    color: #fff;
}

.finished-projects .projects-wrapper .project:hover .ui__display-center {
    opacity: 1;
}

.price-promo {
    background: #2a3c4f url(/images/uploads/cat_design.png) center top no-repeat;
    padding: 160px 0 33px;
    margin-top: 70px;
}

@media screen and (max-width: 800px) {
    .price-promo {
        background-position-x: 64%;
    }
}

@media screen and (max-width: 700px) {
    .price-promo {
        margin-top: 0;
    }
}

.price-promo h3 {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
}

@media screen and (max-width: 700px) {
    .price-promo h3 {
        font-size: 25px;
    }
}

@media screen and (max-width: 430px) {
    .price-promo h3 {
        font-size: 20px;
    }
}

.price-promo a {
    background-color: #62d35d;
    color: #fff;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    padding: 20px 50px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-left: 70px;
}

.price-promo a:hover {
    background-color: #6eea67;
}

@media screen and (max-width: 700px) {
    .price-promo a {
        font-size: 16px;
        padding: 15px 30px;
        margin-left: 30px;
        white-space: nowrap;
    }
}

@media screen and (max-width: 430px) {
    .price-promo a {
        font-size: 16px;
        padding: 15px 20px;
        margin-left: 10px;
        white-space: nowrap;
    }
}

.trust-promo {
    flex-wrap: wrap;
}

.trust-promo .trust_title {
    flex: 1 0 100%;
    text-align: center;
    margin-bottom: 70px;
}

.trust-promo .trust_title h3 {
    color: #033;
    font-size: 35px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 10px;
}

.trust-promo .trust_title span {
    color: #888888b5;
    font-weight: 600;
    font-size: 14px;
}

.trust-promo .trust_img,
.trust-promo .trust_content {
    flex: 1 0 50%;
}

.trust-promo .trust_content .trust_slider:nth-child(1) .trust_icon {
    background-color: #4ad5c0;
}

.trust-promo .trust_content .trust_slider:nth-child(2) .trust_icon {
    background-color: #4cccfc;
}

.trust-promo .trust_content .trust_slider:nth-child(3) .trust_icon {
    background-color: #f4b71f;
}

.trust-promo .trust_content .trust_slider:nth-child(1) .trust_icon img {
    width: 25px;
}

.trust-promo .trust_content .trust_slider:nth-child(2) .trust_icon img {
    width: 35px;
}

.trust-promo .trust_content .trust_slider:nth-child(3) .trust_icon img {
    width: 35px;
}

.trust-promo .trust_img {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.trust-promo .trust_img img {
    max-width: 100%;
}

.trust-promo .trust_content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 12px;
}

.trust-promo .trust_content p {
    font-size: 15px;
    max-width: 400px;
    color: #888;
    line-height: 30px;
}

.trust-promo .trust_content > .trust_slider + .trust_slider {
    margin-top: 40px;
}

.trust-promo .trust_content .trust_slider .trust_icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    border-radius: 3px;
    margin-right: 30px;
}

.trust-promo .trust_content .trust_slider .trust_icon img {
    width: 25px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(206deg) brightness(110%)
        contrast(101%);
}

.index .trust-promo {
    margin-top: 100px;
}

.learning .trust-promo {
    margin-top: 50px;
}

.learning .trust-promo .trust_img {
    justify-content: flex-start;
}

.learning .trust-promo .trust_content .trust_slider:nth-child(2) .trust_icon img {
    width: 25px;
}

.learning .trust-promo .trust_content .trust_slider:nth-child(3) .trust_icon img {
    width: 25px;
}

.contacts {
    margin-top: 40px;
}

.contacts .trust-promo {
    align-items: flex-start;
}

.contacts .trust-promo .trust_img {
    flex-direction: column;
    align-items: flex-end;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        font-size: 200px;
    }

    to {
        opacity: 1;
        font-size: 78px;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
        font-size: 78px;
    }

    to {
        opacity: 0;
        font-size: 0px;
    }
}

@keyframes fade-in_mobile {
    0% {
        opacity: 0;
        font-size: 200px;
    }

    to {
        opacity: 1;
        font-size: 38px;
    }
}

@keyframes fade-out_mobile {
    0% {
        opacity: 1;
        font-size: 38px;
    }

    to {
        opacity: 0;
        font-size: 0px;
    }
}

.parallax-container {
    position: relative;
    max-width: 100vw;
    width: 100%;
    height: 929px;
    overflow: hidden;
    perspective: 1000px;
    background-color: #f9f9f9;
}

@media screen and (max-width: 1230px) {
    .parallax-container {
        height: 600px;
    }
}

@media screen and (max-width: 700px) {
    .parallax-container {
        height: 400px;
    }
}

.parallax-container .floating-element {
    position: absolute;
    font-size: 24px;
    padding: 10px;
    border-radius: 5px;
    transition: transform 0.1s ease-out;
}

@media screen and (max-width: 700px) {
    .parallax-container .floating-element {
        transform: scale(0.6);
    }
}

.parallax-container .floating-element:nth-child(1) {
    width: 635px;
    top: -132px;
    left: -258px;
}

@media screen and (max-width: 1230px) {
    .parallax-container .floating-element:nth-child(1) {
        width: 525px;
        top: -135px;
        left: -250px;
    }
}

@media screen and (max-width: 700px) {
    .parallax-container .floating-element:nth-child(1) {
        left: -330px;
    }
}

.parallax-container .floating-element:nth-child(2) {
    width: 684px;
    top: -199px;
    right: -2%;
}

@media screen and (max-width: 1230px) {
    .parallax-container .floating-element:nth-child(2) {
        width: 485px;
        top: -160px;
        right: -5%;
    }
}

@media screen and (max-width: 700px) {
    .parallax-container .floating-element:nth-child(2) {
        right: -45%;
    }
}

.parallax-container .floating-element:nth-child(3) {
    width: 880px;
    left: -363px;
    top: 424px;
}

@media screen and (max-width: 1230px) {
    .parallax-container .floating-element:nth-child(3) {
        width: 450px;
        left: -170px;
        top: 230px;
    }
}

@media screen and (max-width: 700px) {
    .parallax-container .floating-element:nth-child(3) {
        left: -200px;
        top: 130px;
    }
}

.parallax-container .floating-element:nth-child(4) {
    width: 195px;
    left: 131px;
    top: 570px;
}

@media screen and (max-width: 1230px) {
    .parallax-container .floating-element:nth-child(4) {
        width: 140px;
        left: 60px;
        top: 280px;
    }
}

@media screen and (max-width: 700px) {
    .parallax-container .floating-element:nth-child(4) {
        left: 30px;
        top: 220px;
    }
}

.parallax-container .floating-element:nth-child(5) {
    width: 293px;
    left: 177px;
    top: 704px;
}

.parallax-container .floating-element:nth-child(6) {
    width: 70px;
    left: 338px;
    top: 581px;
    rotate: -45deg;
}

@media screen and (max-width: 1230px) {
    .parallax-container .floating-element:nth-child(6) {
        width: 50px;
        left: 180px;
        top: 330px;
    }
}

@media screen and (max-width: 700px) {
    .parallax-container .floating-element:nth-child(6) {
        left: 150px;
        top: 280px;
    }
}

.parallax-container .floating-element:nth-child(7) {
    width: 70px;
    left: 384px;
    top: 617px;
}

@media screen and (max-width: 1230px) {
    .parallax-container .floating-element:nth-child(7) {
        width: 50px;
        left: 200px;
        top: 380px;
    }
}

@media screen and (max-width: 700px) {
    .parallax-container .floating-element:nth-child(7) {
        top: 330px;
    }
}

.parallax-container .floating-element:nth-child(8) {
    width: 714px;
    right: -10%;
    top: 491px;
}

@media screen and (max-width: 1000px) {
    .parallax-container .floating-element:nth-child(8) {
        top: 290px;
    }
}

@media screen and (max-width: 700px) {
    .parallax-container .floating-element:nth-child(8) {
        top: 90px;
        right: -120%;
    }
}

.parallax-container .floating-element:nth-child(9) {
    width: 293px;
    top: 352px;
    right: 20%;
}

@media screen and (max-width: 700px) {
    .parallax-container .floating-element:nth-child(9) {
        width: 150px;
        top: -60px;
        right: 10%;
    }
}

.parallax-container .text-wrapper {
    position: fixed;
    left: 50%;
    top: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 700px) {
    .parallax-container .text-wrapper {
        top: 62%;
    }
}

.parallax-container .button a {
    background-color: #ff5351;
    padding: 20px 50px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    border-radius: 6px;
}

@media screen and (max-width: 700px) {
    .parallax-container .button a {
        padding: 10px 30px;
        font-size: 16px;
        border-radius: 6px;
    }
}

.parallax-container .button:hover {
    box-shadow: 0 10px 30px #0003;
}

.parallax-container .sub-title {
    font-size: 20px;
    margin: -10px 0 60px;
    white-space: nowrap;
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .parallax-container .sub-title {
        margin: -20px 0 40px;
    }
}

@media screen and (max-width: 700px) {
    .parallax-container .sub-title {
        font-size: 16px;
    }
}

.parallax-container .main-title {
    font-size: 78px;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.5s linear;
    position: absolute;
    left: 50%;
    top: -80%;
    transform: translate(-50%, -50%);
    animation: fade-out 0.5s forwards;
}

.parallax-container .main-title.active {
    animation: fade-in 0.5s forwards;
}

@media screen and (max-width: 1000px) {
    .parallax-container .main-title {
        font-size: 50px;
    }
}

@media screen and (max-width: 700px) {
    .parallax-container .main-title {
        font-size: 30px;
    }
    .parallax-container .main-title {
        animation: fade-out_mobile 0.5s forwards;
    }

    .parallax-container .main-title.active {
        animation: fade-in_mobile 0.5s forwards;
    }
}

footer {
    z-index: 100;
    background-color: #1d1d22;
    box-shadow: 0 5px 4px #0000000d;
    padding-top: 70px;
}

@media screen and (max-width: 620px) {
    footer {
        padding-top: 20px;
    }
}

footer .footer-inner {
    display: flex;
    flex-wrap: wrap;
}

footer .contact {
    justify-content: flex-end;
    flex: 1 0 100%;
    font-size: 15px;
    color: #898989;
    padding: 25px 0;
    border-top: 1px solid #343439;
    margin-top: 30px;
}

@media screen and (max-width: 1150px) {
    footer .contact {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 620px) {
    footer .contact {
        margin-top: 20px;
        padding: 25px 0 30px;
    }
}

footer .contact img {
    width: 20px;
    filter: brightness(0) saturate(100%) invert(60%) sepia(0%) saturate(0%) hue-rotate(52deg) brightness(91%)
        contrast(89%);
    margin-right: 10px;
}

footer .contact span {
    white-space: nowrap;
}

@media screen and (max-width: 1150px) {
    footer .contact span {
        white-space: normal;
    }
}

footer .contact span a {
    color: #898989;
    text-decoration: none;
}

@media screen and (max-width: 1150px) {
    footer .contact span:nth-child(1) {
        margin-bottom: 20px;
        flex: 1 0 100%;
    }
}

@media screen and (max-width: 1150px) {
    footer .contact span:nth-child(3) {
        margin-left: 20px;
    }
}

footer .contact > span + span {
    margin-left: 30px;
}

@media screen and (max-width: 1150px) {
    footer .contact > span + span {
        margin-left: 0;
    }
}

footer nav.nav {
    margin-left: 200px;
    max-width: 300px;
    width: 100%;
}

@media screen and (max-width: 620px) {
    footer nav.nav {
        margin-left: 50px;
        max-width: 250px;
    }
}

@media screen and (max-width: 420px) {
    footer nav.nav {
        margin-left: 20px;
        max-width: calc(100% - 80px);
    }
}

footer nav.nav ul {
    list-style: none;
}

footer nav.nav li a {
    color: #fff;
    text-decoration: none;
    height: 50px;
    border-bottom: 1px solid transparent;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.1s linear;
}

footer nav.nav li a.active,
footer nav.nav li a:hover {
    border-bottom: 1px solid #eb4e4e;
    color: #eb4e4e;
}

footer .logo {
    transition: transform 0.2s linear;
    transform: scale(1);
    cursor: pointer;
}

footer .logo img {
    width: 90px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(106deg) brightness(106%)
        contrast(104%);
}

@media screen and (max-width: 420px) {
    footer .logo img {
        width: 60px;
        margin-top: 8px;
    }
}

footer .logo:hover {
    transform: scale(1.05);
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
    font-weight: 400;
    font-style: normal;
}

:root {
    --swiper-theme-color: #007aff;
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0);
}

.swiper-horizontal {
    touch-action: pan-y;
}

.swiper-vertical {
    touch-action: pan-x;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
}

.swiper-3d {
    perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
    background: #00000026;
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, #00000080, #0000);
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
    width: 1px;
    height: var(--swiper-virtual-size);
}

:root {
    --swiper-navigation-size: 44px;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
    display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
    transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
}

.swiper-button-lock {
    display: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next";
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    transform: translateZ(0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet:only-child {
    display: none !important;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-lock {
    display: none;
}

.swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    touch-action: none;
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
    touch-action: none;
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper.swiper-cube {
    overflow: visible;
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper.swiper-flip {
    overflow: visible;
}

.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
    overflow: visible;
}

.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
}

.clients-promo {
    margin-top: 100px;
}

@media screen and (max-width: 470px) {
    .clients-promo {
        margin-top: 50px;
    }
}

.clients-promo h3 {
    font-size: 28px;
    color: #eee;
    background-color: #2a3c4f;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    padding: 30px 0;
    margin-bottom: 50px;
}

.clients-promo .clients-wrapper {
    max-width: 1010px;
    overflow: hidden;
    margin: 70px auto 0;
    padding: 0 10px;
}

@media screen and (max-width: 470px) {
    .clients-promo .clients-wrapper {
        margin-top: 40px;
    }
}

.clients-promo .clients-wrapper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.clients-promo .clients-wrapper .swiper-wrapper .swiper-slide {
    cursor: pointer;
    width: 100%;
}

.clients-promo .clients-wrapper .swiper-wrapper .swiper-slide img {
    width: 100%;
}

.contacts .contact-promo {
    padding: 40px 0;
}

.contacts .contact-promo .img-wrapper > img + img {
    margin-left: 40px;
}
