@charset "utf-8";

/* Fonts */
/* FuturaNew */
@font-face {
    font-family: "FuturaNew";
    src: url("../fonts/futuranew/FuturaNewBook.otf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "FuturaNew";
    src: url("../fonts/futuranew/FuturaNewLight.otf");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "FuturaNew";
    src: url("../fonts/futuranew/FuturaNewMedium.otf");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "FuturaNew";
    src: url("../fonts/futuranew/FuturaNewDemi.otf");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "FuturaNew";
    src: url("../fonts/futuranew/FuturaNewBold.otf");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "FuturaNew";
    src: url("../fonts/futuranew/FuturaNewHeavy.otf");
    font-weight: 900;
    font-style: normal;
}
/* FuturaNew */

/* TacticSans */
@font-face {
    font-family: "Tactic";
    src: url("../fonts/tacticsans/TacticSans-Reg.otf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Tactic";
    src: url("../fonts/tacticsans/TacticSans-RegIt.otf");
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: "Tactic";
    src: url("../fonts/tacticsans/TacticSans-Bld.otf");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "Tactic";
    src: url("../fonts/tacticsans/TacticSans-BldIt.otf");
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: "Tactic";
    src: url("../fonts/tacticsans/TacticSans-Blk.otf");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Tactic";
    src: url("../fonts/tacticsans/TacticSans-BlkIt.otf");
    font-weight: 900;
    font-style: italic;
}
/* TacticSans */

/* TacticSansExd */
@font-face {
    font-family: "TacticExd";
    src: url("../fonts/tacticsansexd/TacticSansExd-Reg.otf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "TacticExd";
    src: url("../fonts/tacticsansexd/TacticSansExd-RegIt.otf");
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: "TacticExd";
    src: url("../fonts/tacticsansexd/TacticSansExd-Lgt.otf");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "TacticExd";
    src: url("../fonts/tacticsansexd/TacticSansExd-Med.otf");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "TacticExd";
    src: url("../fonts/tacticsansexd/TacticSansExd-MedIt.otf");
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: "TacticExd";
    src: url("../fonts/tacticsansexd/TacticSansExd-Bld.otf");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "TacticExd";
    src: url("../fonts/tacticsansexd/TacticSansExd-BldIt.otf");
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: "TacticExd";
    src: url("../fonts/tacticsansexd/TacticSansExd-Blk.otf");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "TacticExd";
    src: url("../fonts/tacticsansexd/TacticSansExd-BlkIt.otf");
    font-weight: 900;
    font-style: italic;
}
/* TacticSansExd */
/* Fonts */

/* Main */
* {
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    font-family: "FuturaNew", sans-serif;
}

body {
    overflow: hidden;
    overflow-y: auto;
    background-color: #0a1024;
    background-image: url(../images/background.first.png), url(../images/background.bottom.png);
    background-repeat: no-repeat;
    background-position: center top, center bottom;
    background-size: auto;
}
body.overlayed {
    overflow: hidden;
}

main {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

img, iframe {
    vertical-align: middle;
}

nav {
    list-style: none;
}

.full {
    width: 100%;
}

.wrapper {
    width: calc(100% - 200px);
    margin: 0 auto;
    height: 100%;
    -webkit-overflow-scrolling: touch;
}

.transition {
    transition: all .24s ease-in-out;
}

.close {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 10px;
    right: 10px;
    /*background-image: url(../images/icons/close.png);*/
}

/* Modal */
#overlay {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
}
#overlay.active {
     z-index: 9999;
     opacity: 1;
     visibility: visible;
}
.modal__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
.modal__wrapper.active {
    z-index: auto;
    opacity: 1;
    visibility: visible;
}
.modal {
    position: relative;
    width: 100%;
    max-width: 590px;
    margin: auto;
    box-shadow: 0 9px 40px rgba(0, 0, 0, .35);
    background: #fff;
    border-radius: 10px;
    border: 1px solid #d2d2d2;
    padding: 30px 20px 20px;
}
form {
    width: 100%;
    position: relative;
}
.form .form__inner, .form .form__thanks {
    width: 100%;
    flex-direction: column;
    align-items: center;
}
.form .form__thanks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.form .hidden {
    z-index: -1;
    opacity: 0;
}
.form .visible {
    z-index: 2;
    opacity: 1;
}
/* Modal */

.button {
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #fff;
    cursor: pointer;
    height: 56px;
    line-height: 53px;
    font-size: 16px;
    font-weight: 900;
    background: transparent;
    border: 3px solid #fff;
    border-radius: 4px;
    text-align: center;
    padding: 0 40px;
    overflow: hidden;
    position: relative;
}
.button::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    background: #fff;
    pointer-events: none;
    transition: inherit;
    z-index: -1;
    visibility: hidden;
}
.button:hover {
    color: #000;
}
.button:hover:before {
    transform: scale(22, 10);
    visibility: visible;
}

.flex {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.show-for-mobile {
    display: none;
}
.show-for-tablet {
    display: none;
}
.show-for-desktop {
    display: block;
}

.centered {
    text-align: center;
}
/* Main */

/* Header */
#page-header {
    position: relative;
    padding: 40px 0;
}
#page-header .wrapper {
    align-items: center;
}

.logo {
    width: 217px;
}

.logo > img {
    width: 100%;
}

.has-icon {
    padding-left: 28px;
    min-height: 24px;
    line-height: 24px;
}
.icon-phone {
    background: url(../images/icons/phone.png) no-repeat left center;
    background-size: contain;
}
.icon-location {
    background: url(../images/icons/location.png) no-repeat left center;
    background-size: contain;
}

#page-header .link {
    margin-right: 18px;
}
#page-header .logo {
    margin-left: 18px;
    width: 280px;
}

.underline {
    position: relative;
}
.underline::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, .2);
    transform: scale(0, 1);
    transition: inherit;
    left: calc(50% - 15px);
    bottom: 0;
    pointer-events: none;
}
.underline:hover:after {
    transform: scale(1, 1);
}

/* Main navigation */
.page-navigation {

}
.page-navigation li {
    padding: 12px 0;
}
.page-navigation li:not(:last-child) {
    margin-right: 48px;
}
.page-navigation a, .link {
    font-size: 16px;
    font-weight: bold;
    color: rgba(255, 255, 255, .5);
}
.page-navigation a {
    color: #ff4716;
}

#header-navigation {
    margin: 0 156px 0 auto;
}

#header-navigation .underline::after {
    background: linear-gradient(to bottom, #fe7226, #ff0000, #ec1127);
    height: 5px;
    box-shadow: 0 3px 11px rgba(255, 28, 76, .7);
    bottom: -5px;
}
/* Main navigation */

/* Mobile navigation */
#mobile-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url(../images/background.mobile-menu.png) no-repeat center bottom;
    background-size: cover;
    z-index: 9999;
    overflow: auto;
    display: none;
}
#mobile-navigation header {
    padding: 40px 30px;
    align-items: center;
}

#mobile-navigation header .icon-phone {
    margin-left: auto;
}

.mobile-menu {
    display: none;
    width: 32px;
    height: 32px;
    background: url(../images/menu.png) no-repeat center center;
    cursor: pointer;
}
.mobile-menu.mobile-menu__close {
    background: url(../images/menu.close.png) no-repeat center center;
    margin: 0 18px 0 0;
}

#mobile-navigation nav {
    margin-top: 50px;
}
#mobile-navigation nav li a {
    font-size: 36px;
    color: #ff4716;
    padding: 14px 50px;
    display: block;
    text-align: center;
}
/* Mobile navigation */
/* Header */

/* Content */
.field-wrapper {
    position: relative;
    padding-top: 20px;
}
.field-wrapper label {
    position: absolute;
    color: #6e73ac;
    font-size: 17px;
    font-weight: 300;
    left: 0;
    bottom: 18px;
    pointer-events: none;
}
.field-wrapper:focus-within label, .field-wrapper.not-empty label {
    bottom: calc(100% - 26px);
}
label.required::after {
    content: '*';
    color: #ff3d12;
}

.field, textarea {
    background: transparent;
    width: 100%;
    height: 52px;
    border: none;
    border-bottom: 2px solid #1D1F38;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}
textarea.field {
    resize: none;
    height: 80px;
    padding: 10px 0;
}
.field:focus, textarea:focus {

}

.left, .right {
    width: 50%;
}

.text {
    line-height: 1.6;
    color: #868ccd;
    font-size: 18px;
    font-weight: 300;
}
.text p:not(:first-of-type) {
    margin-top: 20px;
}
.text b, .text strong {
    font-weight: bold;
    color: #fff;
}

/* Slider */
.slider {
    position: relative;
}
.arrow {
    position: absolute;
}
/*.arrow.arrow-left {
    background: url(../images/icons/arrow.left.png);
    left: 0;
}
.arrow.arrow-right {
    background: url(../images/icons/arrow.right.png);
    right: 0;
}*/
/* Slider */

/* Home */
#first h1 {
    font-size: 145px;
    color: #fff;
    font-family: "Tactic", sans-serif;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    line-height: 184px;
    margin-top: 60px;
}
#first h1:first-line {
    font-size: 305px;
}
#first .wrapper:first-of-type {
    min-height: calc(100vh - 167px);
    align-items: stretch;
}
#first .left {
    padding-left: 100px;
}
#first .right {
    position: relative;
}
#first .right img {
    position: absolute;
    right: -165px;
    top: -50px;
    pointer-events: none;
}

#first .icon-location {
    margin: auto 18px 0 auto;
}
#first h2 {
    font-size: 30px;
    color: #fff;
    text-align: right;
    font-family: "TacticExd", sans-serif;
    font-weight: 500;
    font-style: italic;
    margin-right: 85px;
}
#first ul {
    font-weight: 300;
    color: #fff;
    font-size: 16px;
    list-style: none;
    column-count: 2;
    counter-reset: list;
}
#first ul li {
    padding-left: 22px;
    position: relative;
    counter-increment: list;
    margin-bottom: 15px;
}
#first ul li::before {
    content: "0"counter(list);
    font-size: 12px;
    font-weight: bold;
    color: #ff3444;
    position: absolute;
    left: 0;
    top: 1px;
}

.line-left {
    position: relative;
    padding-left: 24px;
}
.line-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, #fe7226, #ff0000, #ec1127);
    height: 45px;
    width: 10px;
    transform: skewX(-8deg);
    box-shadow: 0 3px 11px rgba(255, 28, 76, .66);
}

.title-section {
    font-family: "TacticExd", sans-serif;
    font-size: 40px;
    color: #fff;
    font-weight: 500;
    font-style: italic;
}

/* Services */
#services {
    margin-top: 200px;
}
#services .wrapper {
    background: url(../images/background.services.png) no-repeat left top;
    background-size: cover;
    position: relative;
}
#services .wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 80%;
    left: 10%;
    height: 150px;
    box-shadow: 0 0 250px rgba(0, 0, 0, .9);
    z-index: -1;
    pointer-events: none;
}

#services header {
    padding: 145px 200px;
}
#services header .title-section {
    margin-right: 100px;
}

.services {
    padding: 0 20px;
}
.service {
    width: calc(25% - 15px);
    height: 545px;
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
    cursor: pointer;
}
.services .service:not(:last-of-type):not(:nth-of-type(4n)) {
    margin-right: 20px;
}

.service:hover, .service.active {
    transform: scale(1.1);
    z-index: 5;
}

.service__image, .service__content {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    left: 0;
    top: 0;
}
.service__image {
    background-color: rgba(0, 0, 0, .75);
    pointer-events: none;
    z-index: 1;
}
.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .25;
}
.service__content {
    z-index: 2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 75px;
}
.services .service:nth-of-type(n + 4) .service__content {
    padding: 0 50px;
}

.service__content:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(rgba(50, 63, 124, 0), #465abb);
    opacity: 0;
    transition: inherit;
}
.service:hover .service__content:before, .service.active .service__content:before {
    opacity: .3;
}

.service__content-label {
    color: #a6a6a6;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 5px;
}
.service__content h3 {
    position: relative;
    color: #fff;
    font-size: 30px;
    line-height: 50px;
    font-weight: 900;
    text-align: center;
    padding-bottom: 25px;
}
.service__content h3:after {
    position: absolute;
    width: 50px;
    height: 6px;
    pointer-events: none;
    content: '';
    left: calc(50% - 25px);
    bottom: 0;
    background: linear-gradient(to left, #fe7226, #ff0000, #ec1127);
    box-shadow: 0 3px 11px rgba(255, 28, 76, .66);
}
.service__content-price {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    margin-top: 25px;
}
.service__content-price small:first-of-type {
    font-weight: 300;
    font-size: 14px;
    align-self: flex-end;
    padding: 0 5px 5px 0;
}
.service__content-price small:last-of-type {
    font-weight: 300;
    font-size: 16px;
    padding: 5px 0 0 7px;
}

.service__content .text {
    color: #c3c5e1;
    display: none;
    margin-top: 50px;
    transition: inherit;
    opacity: 0;
}
.service:hover .service__content .text, .service.active .service__content .text {
    display: block;
    opacity: 1;
}

#services .buttons {
    justify-content: center;
    padding: 60px 0 80px;
}
#services .buttons .button {
    border-color: rgba(255, 255, 255, .1);
}
#services .buttons .button::before {
    background: rgba(255, 255, 255, .1);
    z-index: 0;
}
#services .buttons .button:hover {
    color: #fff;
}
/* Services */

/* Advantages */
#advantages {
    margin-top: 490px;
}
#advantages .wrapper {
    padding: 0 70px;
}
#advantages .left {
    width: 30%;
    padding-right: 70px;
}
#advantages .right {
    width: 70%;
}
#advantages .title-section {
    margin-bottom: 55px;
}

.advantages {
    background: url(../images/background.advantages.png) no-repeat 30% center, url(../images/background.advantages.png) no-repeat 66% center;
}
.advantages > article {
    width: calc(100% / 3);
    padding: 60px 55px;
    flex-direction: column;
    position: relative;
    z-index: 10;
    cursor: default;
}
.advantages > article::before {
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    background-color: #2b3457;
    background-image: radial-gradient(circle at 100% 0, rgba(41, 44, 87, 0), #182452);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: inherit;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}
.advantages > article:hover:before {
    opacity: 1;
}

.advantages > article .image {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    opacity: 1;
    position: relative;
}
.advantages > article .image img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: inherit;
}
.advantages > article .image img.hovered {
    opacity: 0;
}
.advantages > article:hover .image img.hovered {
    opacity: 1;
}

.advantages > article h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 15px;
}
/* Advantages */

/* Car */
#car {
    margin-top: 320px;
    background: url(../images/background.car.png) no-repeat left calc(50% + 100px);
    position: relative;
}
#car::before {
    content: 'A';
    position: absolute;
    font-family: "Tactic", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1500px;
    top: -450px;
    right: 0;
    color: #0F142F;
    pointer-events: none;
    z-index: -1;
    text-shadow: 0 81px 100px rgba(8, 13, 31, .79);
}
#car .title {
    margin-bottom: 250px;
}
#car .title p {
    font-family: "Tactic", sans-serif;
    color: #fff;
    font-size: 88px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
}
#car .title strong {
    font-family: "Tactic", sans-serif;
}
#car .title strong:first-of-type {
    font-size: 124px;
}
#car .title strong:last-of-type {
    font-size: 133px;
}
#car .wrapper {
    position: relative;
}
#car .left {
    width: 100%;
    padding: 0 50px;
}
#car .right {
    position: absolute;
    left: -100px;
    width: calc(100% + 200px);
    height: 350px;
    bottom: 0;
    pointer-events: none;
}
#car .right img {
    max-width: 100%;
}
/* Car */

/* Feedback */
#feedback {
    margin-top: 550px;
}

#feedback header {
    padding: 0 18px;
    margin-bottom: 120px;
    justify-content: space-between;
    align-items: center;
}
.controls .arrow {
    width: 30px;
    height: 30px;
    position: relative;
    opacity: .25;
}
.controls .arrow.arrow-left {
    background: url(../images/arrow.left.png) no-repeat center center;
    margin-right: 18px;
}
.controls .arrow.arrow-right {
    background: url(../images/arrow.right.png) no-repeat center center;
}
.controls .arrow:hover {
    opacity: 1;
}

.review {
    width: 100%;
    background: radial-gradient(circle at 100% 100%, #363547, #351B32, #12152A 70%);
    padding: 100px 110px 170px;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}
.review:hover {
    transform: translateY(-60px);
}
.review .image {
    width: 250px;
    height: 250px;
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 50%;
}
.review h4 {
    font-weight: bold;
    font-size: 30px;
    color: #fff;
    margin-bottom: 15px;
}
.review .text {
    position: relative;
}
.review .text::after {
    position: absolute;
    width: 50px;
    height: 40px;
    background: url(../images/review.png) no-repeat center center;
    content: '';
    left: calc(50% - 25px);
    bottom: -70px;
}

#feedback .reviews {
    margin: -60px -100px;
    width: calc(100% + 200px);
}
#feedback .owl-carousel .owl-stage-outer {
    padding: 60px 0;
}
/* Feedback */

/* About */
#about {
    margin-top: 720px;
    position: relative;
}
#about::before, #about::after {
    content: '&';
    position: absolute;
    font-size: 1200px;
    font-family: "Tactic", sans-serif;
    font-weight: bold;
    font-style: italic;
    top: -780px;
    left: 50%;
    color: #0F142F;
    pointer-events: none;
    z-index: -1;
    transform: translateX(-50%);
    text-shadow: 0 81px 100px rgba(8, 13, 31, .79);
}
#about::after {
    content: 'A';
    top: auto;
    bottom: -950px;
    font-size: 1500px;
    left: auto;
    right: -300px;
    transform: translateX(0);
}
#about .left {
    padding-left: 80px;
    padding-right: 80px;
}
#about .title-section {
    margin-bottom: 50px;
}
#about .text {
    padding: 0 130px 0 180px;
}
#about .right {
    padding: 80px 20px 0 80px;
    position: relative;
    z-index: 2;
}
#about .right img, #about .additional-image img  {
    max-width: 100%;
    box-shadow: 0 20px 150px rgba(0, 0, 0, .55);
}
#about .additional-image {
    padding-left: 200px;
    margin-top: -150px;
    position: relative;
    z-index: 1;
}
/* About */

/* Contacts */
#contact {
    margin-top: 470px;
    /*background: url(../images/background.contact.png) no-repeat left bottom;
    background-size: 100vw auto;*/
    padding-bottom: 250px;
}
#contact .wrapper {
    align-items: stretch;
    padding: 0 18px;
}
#contact .left {
    position: relative;
    overflow: hidden;
}
#contact .left img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}
#contact .right {
    position: relative;
    padding: 130px 180px 140px 160px;
    /*background: rgba(1, 1, 23, .9);*/
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
#contact .right::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: url(../images/background.contact.blur.png) no-repeat -50vw bottom;
    background-size: 100vw 100%;
    pointer-events: none;
}
#contact .title-section {
    margin-bottom: 20px;
}
#contact .button {
    margin-top: 50px;
    border-color: rgba(255, 255, 255, .25);
}
#contact .button:hover {
    color: #fff;
}
#contact .button::before {
    background: rgba(255, 255, 255, .25)
}
/* Contacts */
/* Home */

/* Gallery */
.breadcrumbs {
    color: #6e73ac;
    margin: 34px 0 70px;
}
.breadcrumbs a {
    color: #6e73ac;
    font-size: 15px;
}
.breadcrumbs a:not(:last-of-type):after {
    content: '/';
    display: inline-block;
    margin: 0 8px;
}
.breadcrumbs a:last-of-type {
    color: #ff4314;
}

#gallery {
    flex-direction: column;
    align-items: center;
    padding-left: 18px;
    padding-right: 18px;
    margin-bottom: 200px;
}

@media screen and (max-width: 767px) {
    #gallery {
        padding-left: 0;
        padding-right: 0;
    }
}

#gallery #images {
    background: url(../images/background.gallery.png) no-repeat left top / cover;
    padding: 25px;
}
#gallery #images > a {
    width: calc(100% / 3);
    padding: 5px;
    height: 260px;
    position: relative;
}

@media screen and (max-width: 1360px) {
    #gallery #images > a {
        width: 50%;
        height: 226px;
    }
}
@media screen and (max-width: 767px) {
    #gallery #images {
        padding: 25px 10px;
    }
    #gallery #images > a {
        height: 100px;
    }
}

#gallery #images > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#gallery #images > a:before, #gallery #images > a:after {
    content: '';
    position: absolute;
    width: calc(100% - 10px);
    height:  calc(100% - 10px);
    top: 5px;
    left: 5px;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(rgba(50, 63, 124, 0), #465abb);
    opacity: 0;
    transition: inherit;
}
#gallery #images > a:hover:before {
    opacity: .7;
}

#gallery #images > a:after {
    z-index: 2;
    background: rgba(0, 0, 0, .4) url(../images/icons/zoom.png) no-repeat center center;
}

@media screen and (max-width: 1360px) {
    #gallery #images > a:after {
        background-size: 30px;
    }
}

#gallery #images > a:hover:after {
    opacity: 1;
}
/* Gallery */
/* Content */

/* Footer */
#page-footer {

}
#page-footer .wrapper {
    padding-left: 18px;
    padding-right: 18px;
}
.page-footer__contacts .left {
    width: 64%;
}
.map {
    box-shadow: 0 20px 80px rgba(0, 0, 0, .5);
    height: 520px;
}
.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-footer__contacts .right {
    width: 36%;
    margin: auto 0 -35px;
}
.page-footer__contacts .right article {
    color: #6e73ac;
    width: 50%;
    padding-left: 90px;
    font-weight: 300;
    font-size: 15px;
    line-height: 2;
    margin-bottom: 50px;
}
.page-footer__contacts .right article strong, .page-footer__contacts .right article a {
    color: #fff;
    font-weight: 900;
    margin-bottom: 10px;
}
.page-footer__contacts .right article strong {
    display: block;
}
.page-footer__contacts .right article a {
    text-decoration: underline;
    display: inline-block;
}

.page-footer__bottom {
    border-top: 1px solid rgba(0, 41, 255, .25);
    justify-content: space-between;
    color: #1f2892;
    font-size: 12px;
    font-weight: 300;
    padding: 35px 0;
    margin-top: 75px;
}
/* Footer */

/* Responsive */
@media screen and (max-width: 1600px) {
    #first .right img {
        max-width: 200%;
        bottom: -165px;
    }
    #first .left {
        padding-left: 0;
    }
    #first h1 {
        font-size: 130px;
        line-height: 125%;
    }
    #first h1:first-line {
        font-size: 2.1em;
    }
    #about .text {
        padding: 0 0 0 100px;
    }
    #about .right {
        padding-top: 180px;
    }
    #about .additional-image {
        margin-top: -100px;
    }

    .review {
        padding: 80px 60px 140px;
    }

    .service__content {
        padding: 0 20px;
    }
}
@media screen and (max-width: 1440px) {
    #first .right img {
        max-width: 180%;
        top: auto;
        bottom: -100px;
    }
    .wrapper {
        width: calc(100% - 120px);
    }
    #services header {
        padding: 100px 150px;
    }
    .service__content h3 {
        line-height: 130%;
        font-size: 24px;
    }
    .service__content {
        padding: 0 40px;
    }
    .services .service .service__content {
        padding: 0 25px;
    }
    #advantages {
        margin-top: 300px;
    }
    #advantages .wrapper {
        padding: 0;
    }

    #car .title p {
        font-size: 60px;
    }
    #car .title strong:first-of-type {
        font-size: 86px;
    }
    #car .title strong:last-of-type {
        font-size: 89px;
    }

    #car::before {
        font-size: 1000px;
        top: -250px;
    }

    #about {
        margin-top: 400px;
    }
    #about::before, #about::after {
        font-size: 900px;
        top: -450px;
    }
    #about::after {
        font-size: 1000px;
        top: auto;
        bottom: -550px;
    }

    #about .left {
        padding: 0;
    }
    #about .right {
        padding-right: 0;
    }
    #about .additional-image {
        padding-left: 100px;
    }

    #contact {
        margin-top: 300px;
        padding-bottom: 200px;
    }
    #contact .right {
        padding: 120px 100px;
    }
}
@media screen and (max-width: 1279px) {
    body {
        background-size: 130% auto, auto;
        background-position: center 200px, center bottom;
    }

    .show-for-tablet {
        display: block;
    }
    .show-for-desktop, .hide-for-tablet {
        display: none;
    }

    .wrapper {
        width: 100%;
        padding: 0 30px;
    }

    .mobile-menu {
        display: block;
    }

    #header-navigation {
        display: none;
    }

    #page-header .logo {
        width: 110px;
    }
    #page-header .icon-phone {
        margin-left: auto;
        margin-right: 30px;
    }
    #page-header .mobile-menu {
        margin-right: 18px;
    }

    #first .left, #first .right, #advantages .left, #advantages .right {
        width: 100%;
    }
    #first .left {
        padding-left: 0;
    }
    #first .right img {
        width: 100%;
        right: 0;
        top: -350px;
    }
    #first .right {
        flex-direction: column;
        align-items: center;
    }
    #first .right .button {
        margin-top: auto;
    }

    #first h1 {
        text-align: center;
        font-size: 110px;
    }
    #first h1:first-line {
        font-size: 233px;
    }

    #first .wrapper:last-of-type {
        margin-top: 200px;
        flex-direction: column;
        align-items: center;
    }
    #first h2 {
        text-align: center;
        margin: 0 0 30px;
    }

    #mobile-navigation {
        display: block;
        opacity: 0;
        pointer-events: none;
        z-index: -999;
    }
    #mobile-navigation.active {
        opacity: 1;
        z-index: 9999;
        pointer-events: auto;
    }

    .title-section {
        font-size: 30px;
    }
    .line-left::before {
        height: 35px;
    }

    #services {
        margin-top: 150px;
    }
    #services .wrapper {
        width: calc(100% - 40px);
        margin: 0 auto;
        padding: 0 20px;
    }
    #services header {
        padding: 60px;
    }
    #services .title-section {
        margin-bottom: 20px;
    }
    .services {
        padding: 0;
    }
    .services .service {
        margin-right: 0 !important;
        height: 450px;
    }
    .services .service:not(:first-of-type):not(:nth-of-type(2n + 1)) {
        margin-right: 20px !important;
    }
    .services .service:first-of-type {
        width: 100%;
    }
    .services .service:not(:first-of-type) {
        width: calc(50% - 10px);
    }
    .services .service__content .text {
        margin-top: 40px !important;
    }

    #advantages {
        margin-top: 140px;
    }
    #advantages .wrapper {
        padding: 0 60px;
    }
    #advantages .left {
        padding-right: 0;
    }
    #advantages .title-section {
        margin-bottom: 35px;
    }
    .advantages {
        background-position: center 30%, center 66%;
        margin-top: 50px;
    }
    .advantages > article {
        width: 50%;
        padding: 46px;
        flex-direction: row;
    }
    .advantages > article .image {
        margin-bottom: 0;
    }
    .advantages > article .content {
        width: calc(100% - 80px);
        padding-left: 30px;
    }

    #car {
        margin-top: 140px;
    }
    #car .title p {
        font-size: 76px;
        text-align: center;
    }
    #car .title strong:first-of-type {
        font-size: 107px;
    }
    #car .title strong:last-of-type {
        font-size: 115px;
    }
    #car::before {
        display: none;
    }
    #car .right {
        bottom: -40px;
    }

    #feedback {
        margin-top: 100px;
    }
    #feedback header {
        margin-bottom: 50px;
    }
    #feedback .reviews {
        width: calc(100% + 60px);
        margin: -60px -30px;
    }
    #feedback .controls.show-for-tablet {
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: 30px;
        z-index: 10;
    }

    #about {
        margin-top: 140px;
    }
    #about::before, #about::after {
        display: none;
    }
    #about .left, #about .right, #contact .left, #contact .right {
        width: 100%;
    }
    #about .left {
        padding-left: 30px;
        padding-right: 30px;
    }
    #about .right {
        padding: 60px 30px 0 50%;
    }
    #about .additional-image {
        padding: 0 30% 0 30px;
    }

    #contact {
        margin-top: 140px;
        background-position: left calc(100% + 360px);
    }
    #contact .wrapper {
        padding: 0 30px;
    }
    #contact .left {
        height: 480px;
    }
    #contact .right {
        padding: 60px 70px;
    }
    #contact .title-section {
        margin-right: auto;
    }
    #contact .right::before {
        background-size: 200vw calc(100% + 50px);
        background-position: -100vw calc(100% + 50px);
    }

    #page-footer {
        margin-top: -110px;
    }
    #page-footer .wrapper {
        padding: 0 30px;
    }
    .page-footer__contacts .left, .page-footer__contacts .right {
        width: 100%;
    }
    .page-footer__contacts .right {
        padding: 60px 0;
        justify-content: center;
    }
    .page-footer__contacts .right article {
        padding-left: 0;
        width: 30%;
    }
    .page-footer__contacts .right article:not(:nth-of-type(2n)) {
        margin-right: 100px;
    }

    #page-footer .page-footer__bottom {
        padding: 35px 30px;
        margin-top: 0;
    }
}
@media screen and (max-width: 767px)
{
    .show-for-tablet, .show-for-desktop {
        display: none;
    }
    .show-for-mobile {
        display: block;
    }

    body {
        background-size: 100% auto;
        background-position: center 150px;
    }
    .wrapper {
        padding: 0 14px;
    }

    .has-icon {
        padding-left: 0;
        background: none;
    }

    #page-header {
        padding: 24px 0 40px;
    }

    #page-header .logo {
        width: 85px;
        margin-left: 0;
    }
    #page-header .mobile-menu {
        margin-right: 0;
    }

    #mobile-navigation header {
        padding: 24px 14px 40px;
    }

    #mobile-navigation nav li a {
        font-size: 24px;
    }

    #first .wrapper:first-of-type {
        min-height: calc(100vh - 160px);
    }
    #first h1 {
        font-size: 41px;
        line-height: 60px;
    }
    #first h1:first-line {
        font-size: 86px;
    }

    #first .right img {
        top: 0;
        margin-top: -90px;
        position: relative;
    }

    #first h2, .title-section {
        font-size: 18px;
    }
    #first .wrapper:last-of-type {
        margin-top: 80px;
    }

    .line-left {
        padding-left: 16px;
    }
    .line-left::before {
        width: 6px;
        height: 22px;
    }

    .button {
        padding: 0 30px;
    }

    #services {
        margin-top: 80px;
    }
    #services .wrapper {
        width: 100%;
        padding: 0 14px;
    }
    #services header {
        padding: 40px 21px;
    }
    #services header .title-section {
        margin-right: 0;
    }
    .services {
        padding: 0 6px;
    }
    .services .service {
        height: 340px;
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 10px;
    }
    .services .service:not(:first-of-type):not(:nth-of-type(2n + 1)) {
        margin-right: 0 !important;
    }
    .service__content {
        padding: 0 30px;
    }
    .service__content-label {
        font-size: 12px;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }
    .service__content h3 {
        font-size: 18px;
        line-height: normal;
    }
    .service:hover .service__content .text, .service.active .service__content .text {
        width: 100%;
        margin-top: 20px !important;
        font-size: 14px;
        line-height: 1.2;
    }
    .services .service:nth-of-type(n + 4) {
        height: 340px;
    }

    .button {
        height: 40px;
        line-height: 36px;
        font-size: 12px;
    }

    #services .buttons {
        padding: 20px 0 40px;
    }

    #advantages {
        margin-top: 80px;
    }
    #advantages .wrapper {
        padding: 0 14px;
    }
    #advantages .title-section {
        margin-bottom: 25px;
    }

    .advantages {
        background: none;
        margin-top: 40px;
    }
    .advantages > article {
        width: 100%;
        padding: 20px 0;
    }
    .advantages > article .content {
        padding-left: 15px;
    }

    #car {
        margin-top: 80px;
        background-size: 120% auto;
    }
    #car .left {
        padding: 0;
    }
    #car .title {
        margin-bottom: 20px;
    }
    #car .title p {
        font-size: 30px;
    }
    #car .title strong:first-of-type {
        font-size: 42px;
    }
    #car .title strong:last-of-type {
        font-size: 45px;
    }
    #car .right {
        position: relative;
        top: -20px;
        bottom: auto;
        left: 0;
        height: auto;
    }
    #car .right img {
        max-width: 130%;
        margin-left: -15%;
    }

    #feedback header {
        padding: 0;
        margin-bottom: 25px;
    }
    #feedback .reviews {
        width: calc(100% + 28px);
        margin: -60px -14px;
    }

    .review {
        padding: 35px 18px 78px;
        transform: translateY(0) !important;
    }
    .review .image {
        width: 140px;
        height: 140px;
        margin-bottom: 20px;
    }
    .review h4 {
        font-size: 18px;
    }
    .review .text::after {
        bottom: -50px;
    }

    #about, #contact {
        margin-top: 80px;
    }
    #about .title-section {
        margin-bottom: 25px;
    }
    #about .left, #about .text {
        padding: 0;
    }
    #about .right {
        padding: 40px 14px 0 50%;
    }
    #about .additional-image {
        padding: 0 30% 0 14px;
        margin-top: -10%;
    }

    #contact .wrapper {
        padding: 0 14px;
    }
    #contact .left {
        height: 200px;
    }
    #contact .right {
        padding: 35px 30px;
        background: rgba(0, 0, 0, .2);
    }
    #contact .buttons {
        justify-content: center;
    }
    #contact .button {
        margin-top: 30px;
    }
    #contact .right::before {
        display: none;
    }

    #page-footer {
        margin-top: -150px;
    }
    #page-footer .wrapper {
        padding: 0 14px;
    }
    .map {
        height: 400px;
    }
    .page-footer__contacts .right {
        padding: 40px 0;
    }
    .page-footer__contacts .right article {
        width: 100%;
        margin-bottom: 20px;
    }

    #page-footer .page-footer__bottom {
        padding: 20px 14px;
        flex-direction: column;
        align-items: center;
    }
    #page-footer .page-footer__bottom span:first-of-type {
        margin-bottom: 10px;
    }
}
/* Responsive */

/* Animation */
@media screen and (min-width: 1170px) {
    .animationSlideUp {
        opacity: 0;
        -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
        transform: translateY(100px);
        -webkit-transform-style: flat;
        transform-style: flat;
        -webkit-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }
    .animationSlideDown {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        transform: translateY(-50px);
        -webkit-transform-style: flat;
        transform-style: flat;
        -webkit-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }
    .animationSlideRight {
        transform: translateX(-30vw);
        transition: all .5s ease-in-out;
        opacity: 0;
    }
    .animationFadeIn {
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .animationSlideUp.element-visible, .animationSlideDown.element-visible {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    .animationSlideRight.element-visible {
        opacity: 1;
        transform: translateX(0);
    }

    .animationFadeIn.element-visible {
        opacity: 1;
    }
}
/* Animation */

/* Other */
div.wpcf7-response-output, div.wpcf7 .ajax-loader {
    display: none !important;
}
.wpcf7-form-control-wrap {
    position: static !important;
}
span.wpcf7-not-valid-tip {
    position: absolute;
    width: 100%;
}
/* Other */