@font-face {
    font-family: 'Axiforma';
    font-weight: 700;
    font-style: normal;
    src: url('../fonts/AxiForma/AxiformaBold.eot');
    src: url('../fonts/AxiForma/AxiformaBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AxiForma/AxiformaBold.woff') format('woff'),
        url('../fonts/AxiForma/AxiformaBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Axiforma';
    font-weight: 500;
    font-style: normal;
    src: url('../fonts/AxiForma/AxiformaMedium.eot');
    src: url('../fonts/AxiForma/AxiformaMedium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AxiForma/AxiformaMedium.woff') format('woff'),
        url('../fonts/AxiForma/AxiformaMedium.ttf') format('truetype');
}

@font-face {
    font-family: 'Axiforma';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/AxiForma/AxiformaRegular.eot');
    src: url('../fonts/AxiForma/AxiformaRegular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AxiForma/AxiformaRegular.woff') format('woff'),
        url('../fonts/AxiForma/AxiformaRegular.ttf') format('truetype');
}

@font-face {
    font-family: 'MonumentExtended';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/MonumentExtended/MonumentExtended-Regular.eot');
    src: url('../fonts/MonumentExtended/MonumentExtended-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MonumentExtended/MonumentExtended-Regular.woff') format('woff'),
        url('../fonts/MonumentExtended/MonumentExtended-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'ProximaNova';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/ProximaNova/proxima-nova-regular.eot');
    src: url('../fonts/ProximaNova/proxima-nova-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ProximaNova/proxima-nova-regular.woff') format('woff'),
        url('../fonts/ProximaNova/proxima-nova-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/Montserrat/Montserrat-Regular.eot');
    src: url('../fonts/Montserrat/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-Regular.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 500;
    font-style: normal;
    src: url('../fonts/Montserrat/Montserrat-Medium.eot');
    src: url('../fonts/Montserrat/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-Medium.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 600;
    font-style: normal;
    src: url('../fonts/Montserrat/Montserrat-SemiBold.eot');
    src: url('../fonts/Montserrat/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat/Montserrat-SemiBold.woff') format('woff'),
        url('../fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype');
}

:root {
    --color-red: #FF0404;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-grey: #969696;
    --color-lightGrey: #EEEEEE;

    --font-size-h1: 14.4rem;
    --font-size-h2: 4.8rem;
    --font-size-h3: 3rem;
    --font-size-h4: 2.4rem;
    --font-size-h5: 1.8rem;
    --font-size-text: 1.6rem;
}

* {
    outline: none;
}

html {
    font-size: 10px;
    min-width: 375px;

}

body {
    position: relative;
    font-family: 'Axiforma', sans-serif;
    font-weight: 400;
    font-size: var(--font-size-text);
    color: var(--color-black);
}

section,
footer,
header {
    max-width: 2400px;
    margin: 0 auto;
}

button {
    background: none;
    border: none;
}

input:focus,
button:focus {
    outline: none;
}

input:focus::placeholder {
    font-size: 0;
}

a {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

a,
a:hover {
    text-decoration: none;
    color: #000000;
}

ul {
    padding: 0;
    margin-bottom: 0;
}

ul li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p {
    margin: 0;
}

.h1 {
    font-family: "Axiforma";
    font-weight: 700;
    font-size: var(--font-size-h1);
    line-height: 20.2rem;
    color: var(--color-black);
}

.h2 {
    position: relative;
    font-family: "Axiforma";
    font-weight: 700;
    font-size: var(--font-size-h2);
    line-height: 6.2rem;
    color: var(--color-black);
    text-transform: uppercase;
}

.h2::before,
.h2::after {
    position: absolute;
    content: "";
    background: var(--color-red);
}

.h2::before {
    width: 8.57rem;
    height: .735rem;
    top: -25px;
    left: 3px;
}

.h2::after {
    width: 9.352rem;
    height: .735rem;
    bottom: -15px;
    right: 0;
}

.h2:hover::before {
    animation: 2.5s linear 1 forwards line-right;
    -webkit-animation: 2.5s linear 1 forwards line-right;
}

.h2:hover::after {
    animation: 2.5s linear 1 forwards line-left;
    -webkit-animation: 2.5s linear 1 forwards line-left;
}

@keyframes line-right {
    0% {
        left: 3px;
    }

    50% {
        left: 25%;
    }

    100% {
        left: 3px;
    }
}

@keyframes line-left {
    0% {
        right: 0;
    }

    50% {
        right: 25%;
    }

    100% {
        right: 0;
    }
}

.h3 {
    font-family: "Axiforma";
    font-weight: 700;
    font-size: var(--font-size-h3);
    line-height: 4.5rem;
    color: var(--color-black);
}

.h4 {
    font-family: "Axiforma";
    font-weight: 700;
    font-size: var(--font-size-h4);
    color: #1B1D1E;
    line-height: 4.5rem;
}

.h5 {
    font-family: "Axiforma";
    font-weight: 700;
    font-size: var(--font-size-h5);
    line-height: 2.5rem;
    color: var(--color-black);
}

section>div:not(section>.block-form) {
    position: relative;
    z-index: 1;
}

.lock {
    overflow: hidden;
}

.container {
    max-width: 1200px;
}

.btn1 {
    width: 17.5rem;
    height: 5.6rem;
    padding: 10px;
    background: var(--color-black);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Axiforma",sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 2.2rem;
    color: var(--color-white);
    text-transform: uppercase;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    overflow: auto;
}

.btn1:hover {
    color: var(--color-white);
    background: var(--color-red);
}

.h2title-box>.row {
    align-items: center;
    margin: -2.5rem -1.5rem;
}

.h2title-box>.row>div {
    padding: 2.5rem 1.5rem;
}

.h2title-box .h2 {
    display: inline;
}

.h2title-box a {
    margin-left: auto;
}

.h2title-box--white .h2 {
    color: var(--color-white);
}

.link-fancybox {
    position: relative;
}

.link-fancybox:hover::after {
    opacity: 1;
}

.link-fancybox::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, .25);
    z-index: 2;
    opacity: 0;
    transition: all .8s ease;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease;
}

.soc {
    display: flex;
    width: 11.6rem;
    justify-content: space-between;
}

.soc-link {
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
}

.soc-link::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.soc-link:hover::before {
    background: rgba(255, 255, 255, .1);
}

.tel-and-graph>span {
    display: block;
}

.tel-and-graph>a {
    display: block;
    font-family: "MonumentExtended";
    font-size: 1.8rem;
    line-height: 2.5rem;
    margin-bottom: .7rem;
}

.tel-and-graph span,
.email>span {
    color: rgba(0, 0, 0, .5);
}


.email {
    font-size: 1.4rem;
    line-height: 2rem;
}

.email>span {
    display: inline;
    margin-right: .8rem;
}

.slick-dots li button::before {
    content: "";
    width: .8rem;
    height: .8rem;
    background: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.slick-dots li,
.slick-dots li button {
    width: .8rem;
    height: .8rem;
}

.slick-dots li button {
    padding: 0;
}

.page-control {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 997;
}

.page-control a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: var(--color-black);
}

.page-control a svg {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.page-section>div:first-child {
    padding-top: 25rem;
}

.page-section>.about-company:first-child {
    padding-bottom: 8rem;
}

.page-section>.comments {
    padding: 8.23rem 0 8rem 0;
}

.page-section>.works-more {
    padding: 9.4rem 0 11rem 0;
}

.page-section>.news:first-child {
    padding-bottom: 8rem;
}

.page-section>.news:not(:first-child) {
    padding: 10rem 0 9rem 0;
}

.page-section>.about-company:last-child {
    padding-top: 8.3rem;
}

.about-company.about-company--reverse .row>div:last-child {
    order: 1;
}

.about-company.about-company--reverse .about-company__slider {
    padding-left: 0;
    padding-right: 7rem;
}

.about-company.about-company--reverse .row>div:first-child {
    order: 2;
}

.page-section>.our-works {
    padding-bottom: 24rem;
}

.page-section.page-works>.our-works {
    background: url(../image/3d-slider/bg.png) top / 1920px 1306px no-repeat;
    padding-bottom: 13.6rem;
}

/*HEADER*/

.header {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.header .header__content {
    position: relative;
    min-height: 100vh;
}

.header .row:nth-child(2) {
    margin: 0;
}

.header .row:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.header .header__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100vh;
    z-index: 1;
}

.header.header--white .header__content .h4,
.header.header--white .header__content .h1 {
    color: var(--color-white);
}

.header__content .h4:nth-of-type(1) {
    letter-spacing: 0.66em;
    text-transform: uppercase;
}

.header__content .h4:nth-of-type(2) {
    letter-spacing: 0.395em;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 999;
}

.menu .soc {
    visibility: hidden;
}

.menu.active {
    height: 668px;
    background: url(../image/bg-menu.jpg) center / cover no-repeat;
}

.menu>.container {
    position: static;
    display: flex;
    align-items: flex-start;
}

.menu-logo {
    flex: 0 1 auto;
    margin-right: 3.55rem;
}

.menu-logo img {
    height: 18rem;
    width: 16.4rem;
    object-fit: cover;

}

.menu-content {
    padding-top: 28px;
    flex: 1 1 auto;
}

.menu-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 -10px;
}

.menu-head div:nth-child(n) {
    padding: 0 10px;
    box-sizing: content-box;
}

.menu-btn {
    padding: 8px 10px 4px 10px;
    background: var(--color-red);
    font-size: 1.4rem;
    line-height: 2rem;
    text-transform: uppercase;
    color: var(--color-white);
}

.menu-head .email span {
    display: block;
}

.menu-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 2rem;
}

.menu__burger {
    display: none;
    position: relative;
    z-index: 999;
    width: 3.6rem;
    height: 2.6rem;
}

.menu__burger.active span {
    background: transparent;
}

.menu__burger.active::before {
    top: 11px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.menu__burger.active::after {
    bottom: 13px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.menu__burger::before,
.menu__burger::after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: .2rem;
    border-radius: .25rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    -ms-border-radius: .25rem;
    -o-border-radius: .25rem;
    background: var(--color-red);
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.menu__burger::before {
    top: 0;
}

.menu__burger::after {
    bottom: 0;
}

.menu__burger span {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: .2rem;
    border-radius: .25rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    -ms-border-radius: .25rem;
    -o-border-radius: .25rem;
    background: var(--color-red);
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.menu .nav {
    margin: -.5rem -2.55rem;
}

.menu .nav.active a {
    color: var(--color-white);
}

.menu .nav.active span {
    color: rgba(255, 255, 255, .5);
}

.menu .nav-item {
    padding: .5rem 2.55rem;
}

.menu-text--white .nav-link,
.mega-menu .nav-link {
    color: var(--color-white);
}

.menu.menu-text--white .soc,
.mega-menu .soc {
    visibility: visible;
}

.menu-text--white .tel-and-graph a,
.menu-text--white .email a,
.mega-menu .tel-and-graph a,
.mega-menu .email a {
    color: var(--color-white);
}

.menu-text--white .tel-and-graph span,
.menu-text--white .email>span,
.mega-menu .tel-and-graph span,
.mega-menu .email span {
    color: rgba(255, 255, 255, .5);
}

.menu .nav-link {
    position: relative;
    padding: 0;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.2rem;
    text-transform: uppercase;
}

.menu .nav-link::after {
    position: absolute;
    bottom: -6px;
    left: 0;
    content: "";
    width: 100%;
    height: .2rem;
    background: var(--color-red);
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.menu .nav-item:hover .nav-link::after,
.menu .nav-item.active .nav-link::after {
    opacity: 1;
}

.menu .dropdown {
    position: static;
}

.menu .dropdown-menu {
    position: absolute;
    top: 130px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    display: block;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    border: none;
    padding: 8rem 1.5rem 3.5rem 1.5rem;
    border-radius: 0;
}

.menu .dropdown-menu .nav-two__content {
    justify-content: flex-start;
}

.dropdown-menu {
    background: none;
}

.dropdown-menu .row>div:nth-child(1)>.h2 {
    color: var(--color-white);
    margin-bottom: 30px;
}

.dropdown-menu .row>div:nth-child(2)>.h2 {
    color: var(--color-grey);
    margin-bottom: 35px;
}

.dropdown-menu .row>div>.h2::before,
.dropdown-menu .row>div>.h2::after {
    display: none;
}

.dropdown>img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 66.8rem;
    object-fit: cover;
    display: block;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.dropdown:hover {
    padding-bottom: 5.8rem;
}

.dropdown:hover>img {
    opacity: 1;
    visibility: visible;
}

.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}


.dropdown-menu .small__slider .slick-dots {
    padding-left: 0;
    position: relative;
    bottom: 0px;
    margin-top: 10px;
}

.header__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.header__control {
    position: absolute;
    bottom: 50px;
    left: calc(50% - 2.3rem);
    z-index: 1;
}

.header__control a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.header__control a svg {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}

.header__bg::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8);
}

.header__bg>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*PRICES*/
.prices {
    padding-bottom: 11rem;
}

.prices .h2title-box,
.services .h2title-box {
    margin-bottom: 5rem;
}

.prices .row {
    margin-top: -2rem;
    margin-bottom: -2rem;
}

.prices .row>div {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.prices .h4 {
    line-height: 3.4rem;
}

/*SERVICES*/
.services {
    padding-bottom: 13.1rem;
}

.services .nav-two {
    max-width: 85.5rem;
}

.services .nav-two+div {
    margin-top: 10rem;
}

.services .nav-two__item a {
    font-size: 1.8rem;
    line-height: 2.5rem;
    color: var(--color-black);
}

/*SEVICES-PRICES-SLIDER*/
.services-prices {
    padding: 10rem 0 10.3rem 0;
}

.services-prices .h2title-box {
    margin-bottom: 5.6rem;
}

.services-slider {
    position: relative;
}

.slider-arrow {
    position: absolute;
    width: 5.6rem;
    height: 5.6rem;
    top: calc(50% - 2.3rem);
    border: 1px solid #EEEEEE;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    z-index: 5;
}

.slider-arrow:hover {
    border-color: var(--color-black);
    background: var(--color-black);
}

.slider-arrow:hover>svg path {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.slider-arrow:hover>svg path {
    fill: var(--color-white);
}

.slider-arrow.arrow-prev {
    left: -86px;
}

.slider-arrow.arrow-next {
    right: -86px;
}

.slider-arrow.arrow-next svg {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
}

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

.services-slider__item {
    max-width: 30rem;
    width: 100%;
    padding: 0 1.5rem;
    font-weight: 700;
}

.services-card {
    display: block;
}

.services-card:hover .services-card__image::before {
    opacity: 1;
}

.services-card__image {
    position: relative;
    width: 100%;
    height: 27rem;
    margin-bottom: 2.6rem;
}

.services-card__image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-card__image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .25);
    opacity: 0;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
}

.services-card__name {
    height: 6.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: .8rem;
}

.services-card__price {
    font-size: 1.4rem;
    line-height: 2rem;
    color: #969696;
    margin-bottom: 2.6rem;
}

.services-card__price>span {
    display: inline-block;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 3.4rem;
    color: #000000;
    margin-left: .6rem;
}

.services-card__price>span>span {
    font-size: 1.4rem;
}

.services-card__link {
    display: inline-block;
    padding: 0;
    font-size: 1.6rem;
    line-height: 2.2rem;
    text-transform: uppercase;
    border-bottom: 1px solid #969696;
    color: #969696;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.services-card__link:hover {
    color: var(--color-red);
    border-bottom: 1px solid var(--color-red);
}

/*OUT WORKS*/
.our-works {
    padding: 9rem 0 9.5rem 0;
    overflow: hidden;
    background: url(../image/3d-slider/bg.png) top / 1920px 1096px no-repeat;
}

.contorl-section {
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contorl-section nav+button {
    margin-top: 50px;
}

.pagination {
    align-items: center;
}

.page-item:last-child .page-link,
.page-item:first-child .page-link {
    width: 5.6rem;
    height: 5.6rem;
    padding: 0;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid var(--color-lightGrey);
}

.page-item:last-child {
    margin-left: 2.5rem;
}

.page-item:first-child {
    margin-right: 2.5rem;
}

.page-item:last-child .page-link:hover,
.page-item:first-child .page-link:hover {
    background: var(--color-black);
    border-color: var(--color-black);
}

.page-item:last-child .page-link svg path,
.page-item:first-child .page-link svg path {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.page-item:last-child .page-link:hover svg path,
.page-item:first-child .page-link:hover svg path {
    fill: var(--color-white);
}

.page-item:last-child .page-link svg {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}


.page-item.active .page-link {
    background: none;
    color: var(--color-black);
}

.page-link {
    background: none;
    padding: .5rem 2.5rem;
    border: none;
    color: var(--color-grey);
    font-family: 'Axiforma';
    font-weight: 700;
    font-size: 3.6rem;
}

.page-item:not(:first-child, :last-child) .page-link:hover {
    background: none;
    color: var(--color-black);
}

.our-works .h2title-box {
    margin-bottom: 5.6rem;
}

.works-more {
    padding: 10rem 0 11rem 0;
}

.works-more .h2title-box {
    margin-bottom: 100px;
}

.works-more .works-more__content>div:not(:nth-child(1), :nth-child(2)) {
    margin-top: 40px;
}

.slider-3d {
    position: relative;
}

.slider-3d__box .slick-list {
    overflow: visible;
}

.slider-3d__box.slick-dotted.slick-slider {
    margin-bottom: 48px;
}

.slider-3d__box .slick-dots {
    bottom: -5rem;
}

.slider-3d__box .slick-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    transition: transform 1s, opacity 1s;
}

.slick-snext,
.slick-sprev {
    display: block;
}

.slider-3d__box .slick-snext {
    opacity: 1;
    transform: scale(0.58) translate3d(-90%, 0, -10px);
    -webkit-transform: scale(0.58) translate3d(-90%, 0, -10px);
    -moz-transform: scale(0.58) translate3d(-90%, 0, -10px);
    -ms-transform: scale(0.58) translate3d(-90%, 0, -10px);
    -o-transform: scale(0.58) translate3d(-90%, 0, -10px);
    z-index: 1;
    perspective: 1000px;
}

.slider-3d__box .slick-sprev {
    opacity: 1;
    transform: scale(0.58) translate3d(90%, 0, -10px);
    -webkit-transform: scale(0.58) translate3d(90%, 0, -10px);
    -moz-transform: scale(0.58) translate3d(90%, 0, -10px);
    -ms-transform: scale(0.58) translate3d(90%, 0, -10px);
    -o-transform: scale(0.58) translate3d(90%, 0, -10px);
}

.slider-3d__box .slick-current {
    opacity: 1;
    position: relative;
    display: block;
    z-index: 2;
}

.slider-3d .slider-arrow {
    border: 1px solid rgba(238, 238, 238, 0.25);
    z-index: 2;
}

.slider-3d .slider-arrow svg path {
    fill: #FFFFFF;
}

.slider-3d .slider-arrow:hover svg path {
    fill: #000000;
}

.slider-3d .slider-arrow:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
}

.slider-3d__box .slick-current a::before {
    background: radial-gradient(52.86% 103.08% at 0% 110.92%, #000000 0%, rgba(0, 0, 0, 0) 100%) !important;
}

.slider-3d__box .slick-current a span,
.slider-3d__box .slick-current a .h5 {
    opacity: 1 !important;
}

.slider-3d__box .slider-3d__item a::before {
    background: rgba(0, 0, 0, 0.5);
}

.slider-3d__box .slider-3d__item a span,
.slider-3d__box .slider-3d__item a .h5 {
    opacity: 0;

}

.slider-3d__box .slick-track {
    max-width: 100% !important;
    transform: translate3d(0, 0, 0) !important;
    perspective: 100px;
}

.slider-3d__item {
    width: 100% !important;
    height: 600px;
}

.slider-3d__item>a {
    position: relative;
    padding: 50px 50px 42px 50px;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    width: inherit;
    height: 100%;
    display: block;
}

.slider-3d__item>a::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-3d__item>a>.h5 {
    position: relative;
    z-index: 1;
    max-width: 41.8rem;
    width: 100%;
    color: var(--color-white);
}

.slider-3d__item>a>img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.our-works__content {
    margin-top: 40px;
}

.our-works__content>div:not(:nth-child(1), :nth-child(2)) {
    margin-top: 40px;
}

.our-works-card {
    width: 100%;
    font-family: "Montserrat";
    font-size: 1.4rem;
    color: var(--color-grey);
}

.our-works-card>a {
    position: relative;
    width: inherit;
    height: auto;
    display: block;
}

.our-works-card a>img {
    width: inherit;
    height: 37.4rem;
    object-fit: cover;
}

.our-works-card .h5 {
    margin-top: 2.4rem;
}

.our-works-card p {
    margin-top: 1.4rem;
}

.our-works-card-contol {
    display: flex;
    margin: 2.4rem -1rem 0 -1rem;
    font-family: "Axiforma";
}

.our-works-card-contol a {
    position: relative;
    display: inline-block;
    margin: 0 1rem;
    font-size: 1.6rem;
    line-height: 2.2rem;
    text-transform: uppercase;
    color: var(--color-grey);
    transition: 0s;
    -webkit-transition: 0s;
    -moz-transition: 0s;
    -ms-transition: 0s;
    -o-transition: 0s;
}

.our-works-card-contol a:hover {
    font-weight: 700;
    color: var(--color-black);
}

.our-works-card-contol a:hover::after {
    background: var(--color-black);
}

.our-works-card-contol a::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: .1rem;
    background: var(--color-grey);
}

/*ABOUT*/

.about-company {
    padding: 12.4rem 0 8rem 0;
}

.border-top {
    border-top: rgba(196, 196, 196, 0.5);
}

.about-company .h2title-box {
    margin-bottom: 6.9rem;
}

.about-company__text {
    color: rgba(0, 0, 0, .5);
}

.about-company__text>p:not(:last-child) {
    margin-bottom: 4rem;
}

.about-company__slider {
    padding-left: 7rem;
}

.small__slider-box {
    position: relative;
}

.small__slider .slick-dots {
    bottom: 17px;
    left: 0;
    text-align: left;
    padding-left: 12px;
}

.about-company__slider .small__slider-item {
    height: 45.5rem;
}

.small__slider-item>a {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

.icon-full-size {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #FFFFFF;
    z-index: 3;
}

.icon-full-size::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url(../image/icon/FullSize.svg) center / auto no-repeat;
}

.small__slider-box.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.small__slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*NEWS*/

.news {
    padding: 8rem 0 10rem 0;
}

.news .h2title-box {
    margin-bottom: 6.6rem;
}

.news__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: -1.25rem -1.5rem;
}

.news__item {
    position: relative;
    margin: 1.25rem 1.5rem;
}

.news-card {
    display: flex;
    align-items: flex-end;
    padding: 3.1rem 3.4rem 3rem 3rem;
    background: #EEEEEE;
}

.news__item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
}

.news__item:nth-child(1),
.news__item:nth-child(2) {
    grid-column: 1/2;
    grid-row: auto;
}

.news__item:nth-child(3) {
    grid-column: 2/4;
    grid-row: 1/3;
}

.news__item:nth-child(8),
.news__item:nth-child(9) {
    grid-column: 3/4;
    grid-row: auto;
}

.news__item:nth-child(7) {
    grid-column: 1/3;
    grid-row: 4/6;
}

.news__item:hover::before {
    opacity: 1;
}

.news__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .25);
    opacity: 0;
    z-index: 1;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
}

.news-card>img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.news-card__text {
    position: relative;
    z-index: 2;
    max-width: 306px;
}

.news-card__text .h4 {
    font-weight: 400;
    line-height: 3.4rem;
    margin-bottom: 2.4rem;
}

.news-card__text p:not(.h4) {
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2rem;
    color: rgba(27, 29, 30, .75);
}

.news-card__date {
    display: inline-block;
    padding: .6rem 1rem;
    font-size: 1.2rem;
    line-height: 1.7rem;
    background: #FFFFFF;
    margin-bottom: 2.4rem;
}

.news-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 3rem;
    height: 3rem;
    background: #FFFFFF;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}


.news-card-img--text .news-icon>svg>path {
    fill: #FFFFFF;
}

.news-card-img--text,
.news-card-img--text .news-card__text>.h4,
.news-card-img--text .news-card__text .news-card__date {
    color: #FFFFFF;
}

.news-card-img--text .news-card__text .news-card__date,
.news-card-img--text .news-icon {
    background: rgba(255, 255, 255, 0.1);
}

.news-card-img--text .news-card__text>p {
    color: rgba(255, 255, 255, .75);
}

/*BLOCK-FORM*/
.block-form.block-form--reverse>.container>.row,
.block-form.block-form--reverse>.container>.row>div {
    justify-content: flex-start;
}

.block-form {
    position: relative;
    background: rgba(238, 238, 238, .5);
}

.block-form.block-form--reverse>img {
    left: initial;
    right: 0;
    height: 84.4rem;
    object-position: left;
}

.block-form>img {
    position: absolute;
    left: 0px;
    top: -144px;
    width: 104.5rem;
    height: 89.4rem;
    object-fit: cover;
    object-position: right;
}

.block-form>.container {
    padding: 14.5rem 1.5rem 14.2rem 1.5rem;
}

.block-form>.container>.row {
    justify-content: flex-end;
}

.block-form>.container>.row>div {
    display: flex;
    justify-content: flex-end;
}

.block-form__box .form__subtitle {
    margin: 0 0 4.8rem 0 !important;
}

.form {
    max-width: 47.3rem;
    width: 100%;
}

.form .form__subtitle {
    margin: 0 auto 4.8rem auto;
}

.form__subtitle {
    max-width: 38.5rem;
    width: 100%;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2.5rem;
    opacity: .5;
    margin-bottom: 4.8rem;
}

.form .h2title-box {
    max-width: 41.2rem;
    width: 100%;
    margin-bottom: 6.1rem;
}

.form .h2title-box>.h2title-box__content,
.form .h2title-box .h2 {
    margin: 0;
}

.form__main {
    width: 100%;
}

.form__main>input {
    display: block;
    width: 100%;
    padding: 1.6rem 2.7rem 1.2rem 2.7rem;
    border: 1px solid #969696;
    font-weight: normal;
    font-size: 1.4rem;
    background: rgba(238, 238, 238, .5);
}

.form__main>input::placeholder {
    color: #000000;
    text-transform: uppercase;
}

.form__main>input+input {
    margin-top: 1rem;
}

.form__control {
    display: flex;
    justify-content: space-between;
    margin-top: 3.5rem;
}

.form__checkbox {
    position: relative;
    display: flex;
    max-width: 21rem;
    font-family: "ProximaNova";
    font-size: 1.3rem;
    line-height: 1.7rem;
}

.form__checkbox input[type="checkbox"]:checked,
.form__checkbox input[type="checkbox"]:not(:checked) {
    position: absolute;
    left: 0;
    overflow: hidden;
}

.form__checkbox input[type="checkbox"]:checked+label:before {
    background: var(--color-red) !important;
    border-color: var(--color-red) !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.form__checkbox input[type="checkbox"]:checked+label:before,
.form__checkbox input[type="checkbox"]:not(:checked)+label:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--color-grey);
    background-color: #ffffff;
}

.form__checkbox input[type="checkbox"]:checked+label:after,
.form__checkbox input[type="checkbox"]:not(:checked)+label:after {
    content: "";
    position: absolute;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    left: 5px;
    top: 6px;
    width: 1rem;
    height: 0.6rem;
    border-radius: 1px;
    border-left: 3px solid var(--color-white);
    border-bottom: 3px solid var(--color-white);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.form__checkbox>label {
    position: relative;
    padding-left: 4.1rem;
}

.form__checkbox>label>a {
    display: inline;
    border-bottom: 1px solid var(--color-red);
    color: var(--color-red);
}

/*TABS*/
.tabs {
    padding: 10.1rem 0 7.5rem;
}

.tabs .nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.tabs .nav::before {
    top: 0;
    width: 8.57rem;
    height: .735rem;
    background: var(--color-red);
}

.tabs .nav::before,
.tabs .nav:after {
    position: absolute;
    content: "";
    left: 0;

}

.tabs .nav:after {
    bottom: -2px;
    width: 100%;
    height: .7rem;
    background: var(--color-lightGrey);
    z-index: 1;
}

.tabs .nav-item {
    margin: 0 -1rem -1rem -1rem;
}

.tabs .nav-link {
    display: flex;
    align-items: center;
    padding: 1.5rem 1rem;
}

.tabs .nav-link .h2 {
    color: #969696;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.tabs .nav-link .h2::before,
.tabs .nav-link .h2::after {
    opacity: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.tabs .nav-link .h2::after {
    bottom: -7px;
    left: 0;
}

.tabs .nav-link .h2::after {
    width: 100%;
    z-index: 2;
}

.tabs .nav-link.active .h2 {
    color: var(--color-black);
}

.tabs .nav-link.active .h2::after {
    opacity: 1;
}

.tabs .nav-link.active .col-comments {
    background: var(--color-black);
    color: var(--color-red);
}

.col-comments {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-lightGrey);
    color: var(--color-grey);
    min-width: 3.8rem;
    height: 3.6rem;
    margin-left: 2.2rem;
    font-weight: 700;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

/*CONTACTS*/
.contacts {
    padding-bottom: 9.5rem;
}

.h2title-box {
    margin-bottom: 8rem;
}

.contacts__content {
    margin-bottom: 5rem;
}

.contacts__content .row {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
}

.contacts__content .row>div {
    display: flex;
    justify-content: flex-end;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.contacts__content-name {
    margin-bottom: 3rem;
}

.contacts__content-contact {
    font-size: 1.4rem;
}

.contacts__content-contact span {
    display: block;
    color: var(--color-grey);
    line-height: 2rem;
}

.contacts__content-contact p {
    font-size: 1.8rem;
    line-height: 2.5rem;
}

.contacts__map {
    width: 100%;
    height: 60rem;
}

/*COMMENT*/
.comments .row>div {
    padding: 2rem 1.5rem;
}

.comments .row {
    margin-top: -2rem;
    margin-bottom: -2rem;
}

.comments {
    padding: 7.45rem 0 8rem 0;
}

.comments .h2title-box {
    margin-bottom: 80px;
}

.comment {
    line-height: 2.6rem;
    font-size: 1.6rem;
}

.comment__content {
    position: relative;
    padding: 41px 0 44px;
}

.comment__content::after,
.comment__content::before {
    position: absolute;
    content: "";
}

.comment__content::before {
    top: 0;
    left: 0;
    width: 2rem;
    height: 1.9rem;
    background: url(../image/icon/quotes.svg) center / cover no-repeat;
}

.comment__content::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.7rem;
    background: url(../image/icon/cooment-line.svg) top left / cover no-repeat;
}

.comment__text {
    color: rgba(0, 0, 0, .5);
    margin-bottom: 21px;
}

.comment__photos {
    display: flex;
    flex-wrap: wrap;
    margin: -.8rem -.8rem;
}

.comment__photos>.link-fancybox::after {
    left: 8px;
    right: 8px;
    top: 8px;
    bottom: 8px;
}

.comment__photos img {
    width: 10.7rem;
    height: 10rem;
    padding: .8rem .8rem;
}

.comment__footer {
    margin-top: 2.6rem;
}

.comment__author {
    font-size: 2rem;
    line-height: 3.2rem;
}

.comment__author+.comment__address {
    margin-top: 6px;
}

.comment__address {
    font-size: 1.4rem;
    line-height: 2.2rem;
    color: rgba(0, 0, 0, .5);
}

.answer {
    max-width: 998px;
    font-size: 1.6rem;
    color: rgba(0, 0, 0, .5);
}

.answer__accordion>div+div:not(.collapse, .collapsing) {
    margin-top: 20px;
}

.answer__title {
    font-size: 2rem;
    line-height: 3.2rem;
}

.answer__title-box>button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}

.answer__title-box span {
    position: relative;
    min-width: 3.8rem;
    height: 3.6rem;
    margin-right: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-lightGrey);
}

.tab-btn {
    color: var(--color-red);
    text-align: left;
}

.tab-btn.collapsed {
    color: var(--color-black);
}

.tab-btn.collapsed span {
    background: transparent;
}

.tab-btn.collapsed span::before {
    content: "+";
}

.answer__title-box span::before {
    position: relative;
    content: "-";
    font-size: 2rem;
    color: var(--color-black);
}

.answer__accordion .collapse,
.answer__accordion .collapsing {
    padding-left: 6rem;
}

.answer__content {
    padding: 2rem 0 0 0;
}

/*FOOTER*/

.footer {
    padding: 4rem 0 3.5rem 0;
    background: var(--color-black);
    color: var(--color-white);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(2, auto) 2fr;
    margin: -1.5rem -6rem;
}

.footer__content-column {
    padding: 1.5rem 6rem;
    box-sizing: content-box;
}

.footer__content-column:nth-child(1) {
    max-width: 22.3rem;
    width: 100%;
}

.footer__content-column:nth-child(3) .nav-two__content,
.menu .dropdown-menu .nav-two__content,
.services .nav-two__content {
    margin: 0 -3rem;
}

.footer__content-column:nth-child(3) .nav-two__content .nav-two__box,
.menu .dropdown-menu .nav-two__content .nav-two__box,
.services .nav-two__content .nav-two__box {
    padding: 0 3rem;
}

.footer__contacts {
    font-size: 1.2rem;
    line-height: 1.7rem;
}

.footer__contacts .tel-and-graph a,
.footer__contacts .email a {
    color: var(--color-white);
}

.footer__contacts .tel-and-graph span,
.footer__contacts .email span {
    color: rgba(255, 255, 255, .5);
}

.footer__contacts-logo {
    width: 16.447rem;
    height: 10rem;
    object-fit: cover;
    margin-bottom: 3rem;
}

.footer__contacts-address {
    opacity: .5;
    margin-bottom: 1.8rem;
}

.footer__contacts .tel-and-graph {
    margin-bottom: 1.8rem;
}

.footer__contacts .soc {
    margin-top: 5.7rem;
}

.nav-two {
    font-weight: 500;
    font-size: 1.4rem;
}

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

.nav-two .nav-two__title {
    font-size: 1.6rem;
    line-height: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}

.nav-two__box {
    font-size: 1.4rem;
}

.nav-two__item:not(:last-child, :first-child) {
    margin: 1.6rem 0;
}

.nav-two__item {
    line-height: 2rem;
}

.nav-two__item a {
    position: relative;
    opacity: .5;
    color: var(--color-white);
    display: inline;
    font-weight: 500;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.nav-two__item a::before {
    position: absolute;
    content: "";
    bottom: -.8rem;
    left: 0;
    width: 100%;
    height: .2rem;
    background: var(--color-red);
    opacity: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.nav-two__item a:hover::before,
.nav-two__item a:hover {
    opacity: 1;
}

.footer__rights {
    margin-top: -1rem;
    margin-bottom: -1rem;
    margin-top: 5rem;
    font-size: 1.2rem;
    color: #FFFFFF;
    opacity: 0.5;
}

.footer__rights>div:last-child {
    text-align: right;
}

.footer__rights>div {
    padding-top: 1rem;
    page-break-inside: 1rem;
}

/*PAGE DETAILS*/
.page-details {
    overflow: hidden;
}

.page-details__head {
    max-width: 87.5rem;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 5rem;
}

.page-details__head-title {
    margin-bottom: 5rem;
}

.page-details__head-title .h2 {
    font-weight: 400;
}

.page-details__head-title .h2::after,
.page-details__head-title .h2::before {
    display: none;
}

.page-details__tags {
    margin-bottom: 5rem;
}

.tags-soc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -1.5rem;
}

.tags-soc>div {
    padding: 1.5rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    margin: -1.5rem;
}

.tags__item {
    padding: 1.5rem;
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.6rem;
    color: var(--color-grey);
}

.page-details__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -2rem;
}

.page-details__info .date,
.page-details__info .soc2 {
    padding: 2rem;
}

.date {
    font-size: 1.6rem;
    line-height: 2.1rem;
    color: var(--color-grey);
}

.soc2__box {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem -.4rem;
}

.soc2__box-item {
    padding: 1rem .4rem;
}

.soc2__box-item--more {
    display: none;
}

.soc2__box-item--more.active {
    display: block;
}

.more-soc.active {
    background: var(--color-black);
}

.more-soc.active svg path {
    fill: var(--color-white);
}

.soc2__box-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    background: var(--color-lightGrey);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.soc2__box-link svg path {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.soc2__box-link:hover {
    background: var(--color-black);
}

.soc2__box-link:hover svg path {
    fill: var(--color-white);
}

.page-details__content {
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 2rem;
    line-height: 3rem;
}

.page-details__footer {
    max-width: 87.5rem;
    width: 100%;
    margin: 0 auto;
    margin-top: 5rem;
}

.page-details__content-twocolums .row {
    margin: -1.5rem;
}

.page-details__content-twocolums .row>div {
    padding: 1.5rem;
}

.page-details__comment {
    min-width: 22rem;
    max-width: 22rem;
    font-family: "Montserrat";
    font-size: 1.4rem;
    line-height: 2.1rem;
    margin-left: auto;
}

.page-details__comment-title {
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.page-details__comment-text {
    border-bottom: 1px solid var(--color-lightGrey);
}

.page-details__comment-text p {
    margin-bottom: 2.8rem;
}

.page-details__comment-author {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 3rem;
}

.page-details__content .page-details__comment-author img {
    min-width: 56px;
    max-width: 56px;
    height: 56px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 14px;
}

.page-details__comment-author p {
    font-size: 1.6rem;
    color: #999999;
}

.news-details .page-details__head-title>.h2 {
    text-transform: none;
}

.news-details .page-details__footer .page-details__info {
    justify-content: flex-end;
}

.page-details__content-item:nth-child(3n+1) {
    padding-bottom: 5rem;
}

.page-details__content-item:nth-child(3n+2) {
    padding-bottom: 5.6rem;
}

.page-details__content-item:nth-child(3n+3) {
    padding-bottom: 6rem;
}

.page-details__content-item:nth-child(3n+4) {
    padding-bottom: 4rem;
}

.page-details__content-item>.h3 {
    font-family: "Montserrat";
    font-weight: 400;
    color: var(--color-grey);
}

.page-details__content-item>.h3+p,
.page-details__content-item>p+.h3 {
    margin-top: 5rem;
}

.page-details__content .page-details__content-item>.page-details__block .h3+.page-details__img {
    margin-top: 5rem;
}

.page-details__content .page-details__content-item:nth-child(3n+3)>.page-details__block .h3+.page-details__img {
    margin-top: 5.6rem;
}

.page-details__content .page-details__content-item:nth-child(3n+4)>.page-details__block .h3+.page-details__img {
    margin-top: 9rem;
}

.page-details__content>.ul1>li:not(:last-child) {
    margin-bottom: 3.5rem;
}

.page-details__content .page-details__img img+p {
    margin-top: 0 !important;
}

.page-details__img>p {
    font-size: 1.4rem;
    line-height: 2.1rem;
    color: var(--color-grey);
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--color-lightGrey);
}

.page-details__content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-details .page-details__content>p,
.works-details .page-details__content>ul,
.page-details__content-box {
    max-width: 87.5rem;
    width: 100%;
    margin: 0 auto;
}

.page-details__content .ul1>li {
    padding-left: 22px;
    position: relative;
}

.page-details__content .ul2 {
    counter-reset: orderedlist;
}

.page-details__content .ul2>li {
    position: relative;
    padding: 0 30px;
}

.page-details__content .ul2>li:not(:last-child) {
    margin-bottom: 30px;
}

.page-details__content .ul2>li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: counter(orderedlist);
    counter-increment: orderedlist;
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 2rem;
    line-height: 3rem;
    color: var(--color-black);
}

.page-details__content .ul1>li:not(:last-child) {
    margin-bottom: 3.5rem;
}

.page-details__content .ul1>li::before {
    position: absolute;
    content: "";
    top: 13px;
    left: 0;
    width: 0.4rem;
    height: 0.4rem;
    background: #000000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.page-details__content>ul>li>span {
    display: inline-block;
    font-family: "Montserrat";
    font-weight: 600;
    color: #2F80ED;
}

.page-details__content>ul+img {
    margin-top: 6.8rem;
}

.page-details__content>p+p,
.page-details__content-item p+p {
    margin-top: 3rem !important;
}

.page-details__content-item .page-details__img+p {
    margin-top: 60px;
}

.page-details__content p>a {
    position: relative;
    display: inline-block;
    color: #2F80ED;
}

.page-details__content p>a:after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #2F80ED;
}

.page-details__content blockquote {
    font-size: 1.8rem;
    line-height: 2.7rem;
    font-weight: 500;
    padding: 5.9rem 9.3%;
    border: 2px solid var(--color-lightGrey);
}

.page-details__content .page-details__block>.ul1 {
    padding-left: 18px;
}

.page-details__content .page-details__block p+ul {
    margin-top: 5.6rem;
}

.page-details__content .page-details__block ul+blockquote,
.page-details__content .page-details__block blockquote+ul {
    margin-top: 6rem;
}

.page-details__content>img+p,
.page-details__content img+ul,
.page-details__content>p+img,
.page-details__content p+ul,
.page-details__content ul+p,
.page-details__content .page-details__block .page-details__img+.page-details__content-twocolums,
.works-details .page-details__content>p+.slider-3d,
.works-details .page-details__content>img+.slider-3d .works-details .page-details__content>.slider-3d+p,
.works-details .page-details__content>.slider-3d+img {
    margin-top: 5rem !important;
}

/*PAGE SERVICE*/
.block-service {
    overflow: hidden;
}

.block-service__about>.container {
    padding-bottom: 7.6rem;
    border-bottom: 1px solid var(--color-lightGrey);
}

.block-service .block-service__slider .slider-3d .slick-dots,
.page-details .slider-3d .slick-dots {
    display: none !important;
}

.block-service .block-service__slider .slider-3d__box.slick-dotted.slick-slider,
.page-details .slider-3d__box.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.block-service .h2title-box {
    margin-bottom: 5rem;
}

.block-service__content {
    position: relative;
    max-width: 87.5rem;
    width: 100%;
    margin: 0 auto;
}

.block-service__text {
    position: relative;
    padding-top: 4.5rem;
    font-family: "Montserrat";
    font-size: 1.8rem;
    line-height: 2.7rem;
}

.block-service__content+.block-service__content,
.block-service__content+.block-service__slider,
.block-service__content+.block-service__table,
.block-service__slider+.block-service__content {
    margin-top: 5rem;
}

.block-service__slider+.tags-soc,
.block-service__content+.tags-soc,
.block-service__table+.block-service__content {
    margin-top: 3.5rem;
}

.block-service__text .h3 {
    font-family: "Montserrat";
    font-weight: 400;
    max-width: 51.4rem;
    width: 100%;
}

.block-service__text .h3+p,
.block-service__text p+p {
    margin-top: 3.4rem;
}

.block-service__text::before {
    content: "***";
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 3rem;
    line-height: 4rem;
    color: var(--color-red);
}

.block-service__control {
    position: absolute;
    display: inline-block;
    left: -325px;
    top: calc(39% - 80px);
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    z-index: 40;
}

.block-service__control a {
    display: flex;
    flex-flow: row-reverse;
    align-items: center;
    font-weight: 500;
    font-size: 1.4rem;
    color: rgba(0, 0, 0, .5);
}

.block-service__control a>button {
    width: 5.6rem;
    height: 5.6rem;
    margin-left: 1.5rem;
    border: 1px solid var(--color-lightGrey);
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.block-service__control a>button svg path {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.block-service__control a:hover>button {
    background: var(--color-black);
    border-color: var(--color-black);
}

.block-service__control a:hover>button svg path {
    fill: var(--color-white);
}

.block-service__control a:hover {
    color: rgba(0, 0, 0, 1);
}

.block-service__table {
    overflow-x: auto;
}

.table-class {
    display: table;
    width: 100%;
    font-family: "Axiforma", sans-serif;
    font-size: 1.8rem;
    line-height: 2.5rem;
}

.table-class th,
.table-class td {
    text-align: center;
    padding: 1.2rem 1rem 1.1rem 1rem;
    border: 1px solid var(--color-lightGrey);
}

.table-class__head {
    font-weight: 700;
}

.table-class__name {
    padding-top: 3.3rem;
    padding-bottom: 2.3rem;
    background: rgba(238, 238, 238, .5);
    font-weight: 700;
    color: #000000;
    text-align: center;
    caption-side: top;
}

.block-service__classification {
    padding: 5rem 0 8rem;
}

.block-service__classification .row {
    margin-top: -5rem;
    margin-bottom: -5rem;
}

.block-service__classification .row>div {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.block-service__classification-title {
    margin-bottom: 5rem;
}

.block-service__classification-title .h2 {
    font-weight: 400;
}

.block-service__classification-title .h2::before,
.block-service__classification-title .h2::after {
    display: none;
}

.block-service__classification-list {
    max-width: 24rem;
    width: 100%;
}

.block-service__classification-name {
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 3.9rem;
}

.block-service__classification-item {
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.1rem;
}

.block-service__classification-item:not(:last-child) {
    margin-bottom: 2rem;
}

.table-class__body {
    font-weight: 400;
}

.block-service__info {
    padding: 7.6rem 0;
    background: rgba(238, 238, 238, .5);
    overflow: hidden;
}

.block-service__info-content {
    max-width: 87.5rem;
    width: 100%;
    margin: 0 auto;
}

.block-service__info-item {
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.7rem;
    display: inline-block;
}

.block-service__info-item span {
    color: var(--color-red);
}

.block-service__info-item:not(:last-child) {
    margin-bottom: 3rem;
}

.block-service__info-item--bold,
.block-service__info-item span>span,
.block-service__info-item--underline {
    font-weight: 600;
}

.block-service__info-item span>span {
    color: var(--color-black);
}

.block-service__info-item--underline {
    position: relative;
}

.block-service__info-item--underline::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--color-red);
}

.block-service__info-item--attention {
    position: relative;
}

.block-service__info-item--attention::before {
    content: "";
    position: absolute;
    left: -104%;
    width: 100%;
    height: 100%;
    background-color: var(--color-red);
}

/*CRUMBS*/
.crumbs {
    background: #111111;
}

.crumbs .container {
    padding-top: 2.6rem;
    padding-bottom: 2.4rem;
}

.crumbs__box {
    padding: -1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.crumbs__item.active .crumbs__link {
    color: rgba(255, 255, 255, 1);
}

.crumbs__link {
    position: relative;
    color: rgba(255, 255, 255, .5);
    display: block;
    padding: 1.25rem;
    font-weight: 500;
    font-size: 1.4rem;
}

.crumbs__link:hover {
    color: rgba(255, 255, 255, 1);
}

.crumbs__item:not(:last-child) .crumbs__link::after {
    position: absolute;
    content: "/";
    right: -5px;
    color: rgba(255, 255, 255, .25);

}

/*MODAL*/
.modal-dialog {
    max-width: 60rem;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.modal-content {
    background: var(--color-lightGrey);
}

.modal-body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem;
}

.modal-body .close {
    position: absolute;
    z-index: 1;
    top: -25px;
    right: -25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: var(--color-white);
    opacity: 1;
}

.modal-body .h2 {
    text-align: center;
    margin-bottom: 3.7rem;
}

.modal-body .form__subtitle {
    text-align: center;
}

.modal-body .form__subtitle {
    margin-bottom: 0;
}

.modal-body .form__subtitle+button {
    margin-top: 4.6rem;
}

.modal-body .form__subtitle+form {
    margin-top: 3.4rem;
}