html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    padding: 0;
    margin: 0;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

:root {
    --main: #444343;
    --black: #151515;
    --blue: #174576;
    --bg: #fff;
    --gray-bg: #fafcf7;
}

.pros__slide-img::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 21, 21, 0.5);
}

.contacts__container {
    padding: 0 60px 20px !important;
}

.clients__column {
    flex: 0 0 20%;
    display: flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.wrapper {
    max-width: 1720px;
    margin: 0 auto;
}

.header__burger {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 30000;
    cursor: pointer;
    right: 75px;
}

.header__right.active {
    padding: 70px 110px;
}

.header__burger span {
    position: absolute;
    background-color: black;
    position: absolute;
    left: 0px;
    width: 70%;
    height: 2px;
    top: 15px;
    transition: all 0.3s linear;
}

.popup__content {
    max-width: 700px;
    width: 100%;
}

.contacts__item-email {
    margin-bottom: 20px;
}

.header__burger:before,
.header__burger:after {
    content: "";
    background-color: black;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0px;
    transition: all 0.3s linear;
}

.header__burger:before {
    top: 8px;
}

.header__burger:after {
    bottom: 6px;
}

.header__burger.active span {
    transform: scale(0);
}

.header__burger.active:before {
    transform: rotate(221deg);
    top: 14px;
}

.header__burger.active:after {
    transform: rotate(-41deg);
    bottom: 14px;
}

.ober.active {
    top: 0;
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    transition: all 0.2s ease 0s;
    background-color: white;
    padding: 70px 10px 100px 10px;
}

.header__burger {
    display: none !important;
}

.about__features-item--1::before {
    content: "100 %";
}

.process__content--bottom::after {
    top: 15px;
    background-position: bottom;
}

.popup__form-input {
    border: 1px solid #adadad;
    border-radius: 5px;
    padding: 14px 18px;
    margin-bottom: 5px;
    font-family: "Gilroy", sans-serif;
    font-size: 13px;
    line-height: 17px;
    color: #adadad;
}

.popup__checkbox-label {
    max-width: 260px;
    margin-bottom: 15px;
}

.contacts__map {
    max-width: 100%;
    max-height: 400px;
    margin: 0px;
}

.hero__inner::before,
.hero__inner::after {
    content: "";
    position: relative !important;
    z-index: 90;
    /* width: 484px; */
    /* height: 484px; */
    background-image: url(../images/circle.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.hero::before {
    min-height: 100%;
}

.clients__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 100px 10px 100px;
}

.photos__img-container {
    width: 100%;
    height: 200px;
}

.header__burger {
    right: 25px;
}

.clients__grid {
    display: flex;
    flex-wrap: wrap;
}

.contacts__inner {
    flex-direction: row;
}

body {
    overflow-x: hidden;
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    color: var(--main);
    background-color: var(--bg);
    background-image: url("../images/background.png");
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.visually-hidden {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
}

.container {
    max-width: 1720px;
    padding: 0 15px;
    margin: 0 auto;
}

.title {
    position: relative;
    padding-bottom: 10px;
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 64px;
    color: var(--black);
}

.title.anim::before {
    content: "";
    position: absolute;
    bottom: 0;
    max-width: 0;
    width: 0;
    height: 4px;
    background-color: #b35400;
    animation-name: a2;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}

@keyframes a2 {
    from {
        max-width: 0;
    }
    to {
        max-width: 130px;
        width: 100%;
    }
}

.task__btn {
    position: fixed;
    top: 27%;
    right: -65px;
    z-index: 200;
    border: none;
    padding: 8px 33px 9px 39px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    background-color: #d6553f;
    transform: rotate(-90deg);
}


/* ______HEADER______ */

.header {
    /* max-width: 1720px; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--bg);
    background-image: url("../images/background.png");
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 15%);
}

.header__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 0;
}

.header__left {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.logo-link {
    margin-right: 39px;
}

.header__address {
    position: relative;
    padding-left: 28px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: underline;
}

.header__address::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 14px;
    height: 20px;
    background-image: url("../images/geo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.header__right {
    display: flex;
}

.header__menu {
    margin-right: 61px;
    display: flex;
    align-items: center;
}

.menu__item {
    display: inline-block;
}

.menu__link {
    font-weight: 700;
    transition: color 0.3s ease;
}

.menu__link:hover {
    color: var(--blue);
}

.menu__item+.menu__item {
    margin-left: 30px;
}

.header__contacts {}

.contacts__mail {
    position: relative;
    display: inline;
    margin-right: 10px;
    margin-bottom: 11px;
    padding-left: 30px;
    font-weight: 700;
}

.contacts__mail::before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 16px;
    background-image: url("../images/mail.svg");
}

.contacts__phone {
    position: relative;
    padding-left: 29px;
    font-weight: 700;
}

.contacts__phone::before {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    background-image: url("../images/phone.svg");
}

.header__burger.active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    width: 30px;
    height: 30px;
    border: none;
    background-color: transparent;
}

.header__item {
    width: 100%;
    height: 2px;
    background-color: var(--black);
}

.header__item:last-child {
    width: 15px;
}


/* ______ HERO ______ */

.hero {
    position: relative;
    padding-top: 107px;
    margin-bottom: 34px;
}

.hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 635px;
    background-color: var(--blue);
    background-image: url("../images/background.png");
}

.hero__inner {
    position: relative;
}

.hero__inner::before,
.hero__inner::after {
    content: "";
    position: absolute;
    z-index: 90;
    width: 484px;
    height: 484px;
    background-image: url("../images/circle.svg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.hero__inner::before {
    top: -70px;
    left: 30px;
}

.hero__inner::after {
    right: -310px;
    top: -100px;
}

.hero__swiper-wrapper {
    position: relative;
    padding-bottom: 111px;
}

.hero__swiper-slide {
    position: relative;
    padding-top: 400px;
}

.hero__slide-content {
    margin-left: 350px;
    color: #fff;
}

.hero__slide-title {
    margin-bottom: 5px;
    font-size: 54px;
    line-height: 72px;
}

.hero__slide-subtitle {
    margin-bottom: 29px;
    font-size: 21px;
    line-height: 28px;
}

.hero__slide-btn {
    display: inline-block;
    padding: 14px 14px 15px 21px;
    border: 1px solid #fff;
    border-radius: 1px;
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: transparent;
    transition: color 0.5s ease, background 0.5s ease;
}

.hero__slide-btn:hover {
    color: var(--blue);
    background-color: #fff;
}

.hero__slide-btn:active {
    border: 1px solid transparent;
    color: #ccc;
    background-color: rgb(151, 164, 179);
    transform: translateY(1px);
}

.hero__slide-img-container {
    position: absolute;
    right: 120px;
    bottom: 0;
    z-index: -1;
    max-width: 1280px;
    width: 100%;
    height: 650px;
    box-shadow: 0 0 15px 1px #3d3d3d;
}

.hero__slide-img {
    object-fit: cover;
}

.hero__swiper-pagination.swiper-pagination-fraction {
    position: absolute;
    bottom: 45px;
    right: 132px;
    left: auto;
    width: fit-content;
    color: #fff;
    font-weight: 700;
}

.hero__swiper-button-prev,
.hero__swiper-button-next {
    position: absolute;
    top: auto;
    bottom: 35px;
    left: auto;
    width: 35px;
    height: 35px;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 1 !important;
}

.hero__swiper-button-prev {
    right: 189px;
}

.hero__swiper-button-next {
    right: 61px;
}

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

.hero__swiper-button-prev::before,
.hero__swiper-button-next::before {
    content: "";
    left: 50%;
    top: 50%;
    width: 7px;
    height: 11px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero__swiper-button-prev::before {
    background-image: url("../images/prev-arrow.svg");
}

.hero__swiper-button-next::before {
    right: 61px;
    background-image: url("../images/next-arrow.svg");
}


/* ______ STAT ______ */

.stat {
    background-color: var(--gray-bg);
    background-image: url("../images/background.png");
}

.stat__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 93px;
}

.stat__content {
    max-width: 880px;
}

.stat__title {
    margin-bottom: 33px;
    font-size: 46px;
    line-height: 62px;
}

.stat__title::before {
    content: unset;
}

.stat__list {
    margin-bottom: 24px;
}

.stat__item {
    padding: 13px 20px;
    max-width: 817px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 34px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.stat__item:not(:last-child) {
    margin-bottom: 20px;
}

@keyframes a1 {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.stat__item--blue.anim::before {
    display: block;
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--blue);
    animation-name: a1;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}

.stat__item--orange.anim::before {
    display: block;
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #b35400;
    animation-name: a1;
    animation-duration: 1s;
    animation-delay: 0.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}

.stat__item--gray.anim::before {
    display: block;
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #adadad;
    animation-name: a1;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}

.stat__text {
    margin-bottom: 49px;
    font-size: 23px;
    line-height: 29px;
    font-weight: 500;
}

.stat__btn {
    padding: 11px 39px 12px 49px;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 23px;
    font-weight: 700;
    color: #fff;
    background-color: var(--blue);
    transition: color 0.5s ease, border 0.5s ease, background 0.5s ease;
}

.stat__btn:hover {
    border: 2px solid var(--blue);
    color: var(--blue);
    background-color: #fff;
}

.stat__btn:active {
    color: #ccc;
    background-color: #103050;
    transform: translateY(1px);
    transition: background 0.1s linear;
}

.stat__img-container {
    height: 500px;
    max-width: 750px;
}

.stat__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ______ SERVICES ______ */

.services {
    margin-bottom: 19px;
}

.services__container {
    max-width: 1920px;
    padding: 0;
}

.services__inner {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.services__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(21, 21, 21, 0.5);
}

.services__item {
    position: relative;
    flex: 0 0 calc(100% / 3);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 360px;
}

.services__item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
    background-color: rgba(21, 21, 21, 0.5);
}

.services__item::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background-image: linear-gradient(to bottom, rgba(135, 129, 116, 0.15), rgba(135, 129, 116, 0.15));
    background-color: #174675;
    opacity: 0.85;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.services__item:hover.services__item::after {
    width: 240px;
    height: 240px;
}

.services__item--1 {
    background-image: url("../images/services-1.jpg");
}

.services__item--2 {
    background-image: url("../images/services-2.jpg");
}

.services__item--3 {
    background-image: url("../images/services-3.jpg");
}

.services__item--4 {
    background-image: url("../images/services-4.jpg");
}

.services__item--5 {
    background-image: url("../images/services-5.jpg");
}

.services__item--6 {
    background-image: url("../images/services-6.jpg");
}

.services__item-title {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
    width: fit-content;
    font-size: 20px;
    line-height: 27px;
    color: #fff;
    font-weight: 600;
    transform: translate(-50%, -50%);
}


/* ______ ABOUT ______ */

.about {
    /* background-color: var(--gray-bg);
	background: url("../images/background.png"); */
    background-size: cover;
}

.about__content {
    max-width: 800px;
}

.about__title {
    margin-bottom: 20px;
}

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

.about__text {
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 30px;
}

.about__features-list {
    display: flex;
    flex-wrap: wrap;
}

.about__features-item {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    max-width: 300px;
    margin-bottom: 33px;
}

.about__features-item::before {
    content: "";
    position: absolute;
    top: 0px;
    font-size: 78px;
    line-height: 1;
    font-weight: 700;
    color: var(--blue);
}

.about__features-item--4 {
    padding-left: 15px;
}

.about__features-item--1::before {
    content: "100%";
}

.about__features-item--2::before {
    content: "0";
}

.about__features-item--3::before {
    content: "4";
}

.about__features-item--4::before {
    content: "86";
}

.about__features-item:not(:nth-child(2n)) {
    margin-right: 180px;
}

.about__features-text {
    font-size: 12px;
    line-height: 35px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--gray-bg);
}

.about__descr {
    margin-bottom: 68px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
}

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

.about__signature-img {
    margin-right: 17px;
}

.about__signature-text {
    font-size: 15px;
    line-height: 24px;
}

.about__signature-text--bold {
    font-weight: 700;
    color: var(--black);
}

.about__img-container {
    margin-right: 216px;
}

.about__img-container img {
    height: 600px;
    margin-top: -26px;
    max-width: none;
}


/* ______ WORKS ______ */

.works {
    margin-bottom: 58px;
    margin-top: 30px;
}

.works__title {
    margin-bottom: 51px;
}

.works__swiper-wrapper {
    position: relative;
}

.works__slide-inner {
    display: flex;
}

.works__img-container {
    margin-right: 75px;
    width: 751px;
    height: 562px;
}

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

.works__slide-content {
    max-width: 625px;
}

.works__list {
    margin-bottom: 60px;
}

.works__item {
    position: relative;
    padding-left: 91px;
    max-width: 400px;
}

.works__item::before {
    content: "";
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.works__item--1::before {
    width: 49px;
    height: 42px;
    background-image: url("../images/works-1.svg");
}

.works__item--2::before {
    width: 47px;
    height: 41px;
    background-image: url("../images/works-2.svg");
}

.works__item--3::before {
    top: 0;
    bottom: auto;
    width: 41px;
    height: 38px;
    background-image: url("../images/works-3.svg");
}

.works__item:not(:last-child) {
    margin-bottom: 35px;
    padding-bottom: 14px;
}

.works__item-title {
    font-size: 18px;
    line-height: 30px;
}

.works__item-text {
    font-size: 16px;
    line-height: 35px;
}

.works__item-area {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 30px;
    color: #2c2c2c;
}

.works__item-descr {
    margin-bottom: 29px;
    font-size: 18px;
    line-height: 25px;
}

.works__item-btn {
    display: inline-block;
    padding: 11px 39px 12px 49px;
    margin-left: -15px;
    border: 2px solid transparent;
    cursor: pointer;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 23px;
    background-color: var(--blue);
    transition: border 0.5s ease, color 0.5s ease, background 0.5s ease;
}

.works__item-btn:hover {
    border: 2px solid var(--blue);
    color: var(--blue);
    background-color: #fff;
}

.works__item-btn:active {
    color: #ccc;
    background-color: #103050;
    transform: translateY(1px);
    transition: background 0.1s linear;
}

.works__swiper-button-prev,
.works__swiper-button-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--blue);
    transform: translateY(-50%);
}

.works__swiper-button-prev {
    left: 0;
}

.works__swiper-button-prev::before,
.works__swiper-button-next::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 11px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translate(-50%, -50%);
}

.works__swiper-button-prev::before {
    background-image: url("../images/prev-arrow.svg");
}

.works__swiper-button-next::before {
    background-image: url("../images/next-arrow.svg");
}


/* ______ PHOTOS ______ */

.photos {
    margin-bottom: 50px;
}

.photos__title {
    margin-bottom: 39px;
}

.photos__subtitle {
    margin-bottom: 55px;
}

.photos__swiper-container {
    margin-top: -180px;
}

.photos__swiper-wrapper {
    position: relative;
    padding-top: 180px;
}

.photos__swiper-slide {
    /* max-width: 426px; */
}

.photos__img-container {
    width: 100%;
    height: 261px;
}

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

.photos__swiper-button-prev,
.photos__swiper-button-next {
    position: absolute;
    top: 25px;
    right: auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--black);
    background-color: transparent;
}

.photos__swiper-button-prev::before,
.photos__swiper-button-next::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 11px;
    background-image: url("../images/photos-next-arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translate(-50%, -50%);
}

.photos__swiper-button-prev::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.photos__swiper-button-prev {
    left: 470px;
}

.photos__swiper-button-next {
    left: 540px;
}


/* ______ CLIENT ______ */

.clients {
    margin-bottom: 50px;
}

.clients__title {
    margin-bottom: 15px;
    font-size: 55px;
    line-height: 73px;
}

.clients__subtitle {
    margin-bottom: 89px;
    max-width: 705px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}

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

.clients__column {
    flex: 0 1 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.clients__img {
    transition: filter 0.5s ease;
}

.clients__img:hover {
    filter: grayscale(0);
}

.clients__img+.clients__img {
    margin-top: 57px;
}


/* ______ TEAM ______ */

.team {
    margin-bottom: 43px;
    width: 100%;
    overflow: hidden;
}

.team__swiper-container {
    z-index: -1;
    width: 100%;
    height: 937px;
}

.team__slide-inner {
    position: relative;
}

.team__slide-inner::after {
    content: "";
    position: absolute;
    top: 362px;
    left: 150px;
    width: 572px;
    height: 257px;
    background-image: url("../images/bg-text.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.team__container {
    max-width: 1920px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.team__swiper-wrapper {
    position: relative;
}

.team__img-container {
    position: relative;
    max-width: 1920px;
    width: 100%;
    height: 937px;
}

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

.team__img-container::before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 3px;
    z-index: 1;
    background-color: rgba(21, 21, 21, 0.6);
}

.team__slide-content {
    position: absolute;
    left: 151px;
    bottom: 415px;
    z-index: 10;
    max-width: 720px;
    color: #fff;
}

.team__slide-title {
    margin-bottom: 26px;
    font-size: 40px;
    line-height: 48px;
}

.team__slide-subtitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
}

.team__slide-subtitle--red {
    color: #d6553f;
}

.team__swiper-pagination.swiper-pagination-fraction {
    position: absolute;
    left: 220px;
    bottom: 69px;
    z-index: 10;
    width: unset;
    color: #fff;
}

.team__swiper-button-prev,
.team__swiper-button-next {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 60px;
    z-index: 10;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #d6553f;
}

.team__swiper-button-prev {
    left: 150px;
}

.team__swiper-button-next {
    left: 277px;
}

.team__swiper-button-prev::before,
.team__swiper-button-next::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 12px;
    background-image: url("../images/next-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.team__swiper-button-prev::before {
    transform: rotate(-90deg);
    top: 12px;
    left: 13px;
}

.team__swiper-button-next::before {
    transform: rotate(90deg);
    top: 12px;
    left: 13px;
}

.team__swiper-button-prev.swiper-button-disabled,
.team__swiper-button-next.swiper-button-disabled {
    border: 1px solid #fff;
    background-color: transparent;
}


/* ______ PROCESS ______ */

.process {
    background-color: var(--gray-bg);
}

.process__swiper-container {
    min-height: 392px;
    margin-top: -60px;
}

.process__swiper-wrapper {
    position: relative;
    padding-top: 105px;
}

.process__slide-inner {
    /* max-width: 300px; */
}

.process__img-container {
    margin-bottom: 50px;
}

.process__content {
    position: relative;
    padding-top: 55px;
    font-size: 15px;
}

.process__content::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background-color: var(--blue);
}

.process__content::after {
    content: "";
    position: absolute;
    top: 0;
    right: -70px;
    width: 90%;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.process__content--1::before {
    content: "1";
}

.process__content--2::before {
    content: "2";
}

.process__content--3::before {
    content: "3";
}

.process__content--4::before {
    content: "4";
}

.process__content--5::before {
    content: "5";
}

.process__content--6::before {
    content: "6";
}

.process__content--top::after {
    background: url("../images/line-top.svg") 0 0 / cover no-repeat;
}

.process__content--bottom::after {
    top: 15px;
    background-position: bottom;
    background-image: url("../images/line-bottom.svg");
}

.process__item-title {
    margin-bottom: 12px;
    font-weight: 600;
}

.process__item-text {
    font-weight: 500;
}

.process__swiper-button-prev,
.process__swiper-button-next {
    top: 23px;
    z-index: 10;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--main);
}

.process__swiper-button-prev {
    left: 470px;
}

.process__swiper-button-next {
    left: 540px;
}

.process__swiper-button-prev::before,
.process__swiper-button-next::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
    width: 7px;
    height: 13px;
    background-repeat: no-repeat;
    background-image: url("../images/photos-next-arrow.svg");
    background-position: center;
    background-size: cover;
}

.process__swiper-button-prev::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.process__swiper-button-next::before {
    transform: translate(-50%, -50%);
}


/* ______ PROS ______ */

.pros__container {
    position: relative;
    max-width: 1920px;
    padding: 0;
    background-color: var(--gray-bg);
    background-image: url("../images/background.png");
}

.pros__swiper-wrapper {
    position: relative;
}

.pros__slide-inner {
    position: relative;
    min-height: 674px;
}

.pros__slide-inner::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    min-height: 550px;
    background-color: var(--blue);
    background-image: url("../images/background.png");
}

.pros__slide-inner--red::before {
    background-color: #d6553f;
}

.pros__slide-img-container {
    position: absolute;
    right: -23px;
    bottom: 74px;
    width: 1240px;
    height: 600px;
}

.pros__slide-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.pros__slide-content {
    position: absolute;
    top: 168px;
    left: 151px;
    max-width: 400px;
    color: #fff;
}

.pros__slide-title {
    margin-bottom: 21px;
    font-size: 34px;
    line-height: 44px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s linear;
}

.pros__slide-subtitle {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s linear;
}

.swiper-slide.pros__swiper-slide.swiper-slide-active .pros__slide-inner .container .pros__slide-title {
    opacity: 1;
    visibility: visible;
}

.swiper-slide.pros__swiper-slide.swiper-slide-active .pros__slide-inner .container .pros__slide-subtitle {
    opacity: 1;
    visibility: visible;
}

.pros__btn-container {
    position: absolute;
    right: 158px;
    bottom: 92px;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 70px;
    background-color: rgba(23, 69, 118, 0.3);
}

.pros__swiper-button-prev,
.pros__swiper-button-next {
    position: absolute;
    top: 39px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #d6553f;
}

.pros__swiper-button-prev {
    left: 68px;
}

.pros__swiper-button-next {
    right: 68px;
}

.pros__swiper-button-prev::before,
.pros__swiper-button-next::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 11px;
    background-image: url("../images/prev-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translate(-50%, -50%);
}

.pros__swiper-button-next::before {
    transform: translate(-50%, -50%) rotate(180deg);
}


/* ______ CONTACTS ______ */

.contacts {
    overflow: hidden;
    background-color: var(--gray-bg);
    background-image: url("../images/background.png");
}

.contacts__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}

.contacts__inner::before {
    content: "";
    position: absolute;
    left: -460px;
    bottom: -270px;
    z-index: 10;
    width: 484px;
    height: 484px;
    background-image: url("../images/dark-circle.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
}

.contacts__content {
    max-width: 591px;
    margin-right: 90px;
    padding-top: 81px;
}

.contacts__title {
    margin-bottom: 35px;
    font-size: 40px;
    line-height: 53px;
}

.contacts__subtitle {
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 23px;
    font-weight: 500;
}

.contacts__items-wrapper {
    display: flex;
    flex-wrap: nowrap;
}

.contacts__item {
    margin-right: 20px;
}

.contacts__item-phone {
    margin-bottom: 21px;
}

.contacts__item-address {
    margin-bottom: 40px;
}

.contacts__item-title {
    font-size: 15px;
    line-height: 23px;
}

.contacts__item-info {
    font-size: 18px;
    line-height: 23px;
    font-weight: 700;
}

.contacts__form-title {
    margin-bottom: 21px;
    font-size: 18px;
    line-height: 23px;
}

.contacts__input-file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.contacts__file-label {
    position: relative;
    display: inline-block;
    padding: 15px 124px 19px 54px;
    border: 1px solid #b35400;
    border-radius: 5px;
    color: #b35400;
    text-decoration: underline;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer;
}

.contacts__file-label::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 14px;
    width: 25px;
    height: 32px;
    background-image: url("../images/file-input.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contacts__mail-wrapper {
    position: relative;
    display: inline-block;
    padding-right: 0;
}

.contacts__mail-lable {
    position: absolute;
    left: 0;
    top: 0;
    padding: 6px 20px 0;
}

.contacts__mail-input {
    max-width: 100%;
    height: 100%;
    border: 1px solid #dadada;
    padding: 22px 20px 22px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 23px;
    margin-right: 20px;
    background: #fff;
}

.contacts__mail-input::placeholder {
    font-size: 14px;
    line-height: 23px;
}

.contacts__file-label {
    margin-bottom: 27px;
}

.contacts__btn-wrapper {
    display: flex;
    align-items: center;
}

.contacts__form-btn {
    border: none;
    padding: 11px 41px 12px 49px;
    margin-right: 20px;
    border: 2px solid transparent;
    font-weight: 700;
    font-size: 15px;
    line-height: 23px;
    color: #fff;
    background-color: var(--blue);
    transition: all 0.5s ease;
}

.contacts__form-btn:hover {
    border: 2px solid var(--blue);
    color: var(--blue);
    background-color: #fff;
}

.contacts__form-btn:active {
    color: #ccc;
    background-color: #103050;
    transform: translateY(1px);
    transition: background 0.1s linear;
}

.contacts__btn-policy {
    font-size: 12px;
    line-height: 16px;
}

.contacts__map {
    width: 52%;
    padding-top: 81px;
    height: 900px;
    filter: grayscale(1);
}


/* ______ FOOTER ______ */

.footer {
    background-color: #ede7e2;
    background-image: url("../images/background.png");
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    padding-top: 40px;
    padding-bottom: 16px;
}

.footer__copy--bold {
    font-size: 15px;
    line-height: 23px;
}

.footer__copy--bold {
    font-weight: 700;
}

.footer__soaial-link {
    margin: 0 5px;
}

.footer__dev-descr {
    display: block;
    font-size: 15px;
    line-height: 23px;
}

.footer__dev-link {
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
}


/* _____ POPUP ______ */

.no-scroll {
    overflow-y: hidden;
}

.popup-open-btn {}

.popup {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.popup--active {
    opacity: 1;
    visibility: visible;
}

.popup__content {
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 55px 20px 25px 49px;
    background-color: #fff;
    transform: translate(-50%, -750%);
    transition: transform 0.5s ease;
}

.popup--active .popup__content {
    width: 75%;
    transform: translate(-50%, -50%);
}

.popup__close-btn {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    border: none;
    background-color: transparent;
    background: url("../images/close-icon.png") 50% 50% / auto no-repeat;
    /* display: flex;
	align-items: center;
	justify-content: center; */
    cursor: pointer;
    outline: none;
    /* display: none; */
}

.popup__inner {
    justify-content: center;
    display: flex;
}

.popup__left {
    max-width: 220px;
    margin-right: 44px;
    text-align: center;
}

.popup__logo-link {
    display: inline-block;
    margin-bottom: 60px;
}

.popup__left-text {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 30px;
}

.popup__phone-link {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: var(--blue);
}

.popup__mail-link {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: #b35400;
}

.popup__right {
    display: flex;
    flex-direction: column;
}

.popup__title {
    margin-bottom: 28px;
    font-size: 21px;
    line-height: 28px;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.popup__form {
    display: flex;
    flex-direction: column;
    max-width: 335px;
}

.popup__form-input {
    border: 1px solid #adadad;
    border-radius: 5px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-family: "Gilroy", sans-serif;
    font-size: 13px;
    line-height: 17px;
    color: #adadad;
}

.popup__file-input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.popup__file-lable {
    padding: 47px 12px 55px 30px;
    max-width: 340px;
    border: 3px solid #707070;
    border-radius: 4px;
    margin-bottom: 21px;
    cursor: pointer;
    font-size: 24px;
    line-height: 32px;
    color: #adadad;
}

.popup__form-input::placeholder {
    font-family: "Gilroy", sans-serif;
    font-size: 13px;
    line-height: 17px;
    color: #adadad;
}

.popup__file-top {
    position: relative;
    padding-left: 57px;
}

.popup__file-top::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 51px;
    background-image: url("../images/upload.svg");
}

.popup__file-bottom {
    padding-right: 40px;
    text-align: right;
}

.popup__label-red {
    color: #b35400;
}

.popup__checkbox-label {
    max-width: 260px;
    margin-bottom: 48px;
}

.popup__form-btn {
    padding: 11px 41px 12px 49px;
    border: 2px solid transparent;
    width: fit-content;
    color: #fff;
    font-size: 15px;
    line-height: 23px;
    font-weight: 700;
    background-color: var(--blue);
    transition: all 0.5s ease;
}

.popup__form-btn:hover {
    border: 2px solid var(--blue);
    color: var(--blue);
    background-color: #fff;
}

.popup__form-btn:active {
    color: #ccc;
    background-color: #103050;
    transform: translateY(1px);
}

.swiper-button-disabled {
    opacity: 0.7 !important;
}

.swiper-button-next,
.swiper-button-prev {
    transition: all 0.3s linear;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transition: all 0.3s linear;
    background: #d5553f;
    border: 1px solid #d5553f;
}


/*************Modal***************/

.overflow {
    overflow: hidden !important;
}

.modal {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 25, 25, 0.7);
    z-index: 100;
    left: 0;
    top: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
}

.modal--active {
    opacity: 1;
    visibility: visible;
}

.modal__content {
    max-width: 1170px;
    width: 100%;
    min-height: 1300px;
    /* z-index: 110; */
    background-color: #ffffff;
    margin: 30px auto 0px;
    position: relative;
    transition: top 0.3s linear;
    top: -100%;
}

.modal--active .modal__content {
    transition: top 0.3s linear;
    top: 0;
}

.modal__close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    border: none;
    background-color: transparent;
    background: url("../images/close-icon.png") 50% 50% / auto no-repeat;
    /* display: flex;
	align-items: center;
	justify-content: center; */
    cursor: pointer;
    outline: none;
}


/* .modal__close img {
	object-fit: cover;
	position: relative;
	z-index: 4;
} */

.modal__header {
    position: relative;
    background: url("../images/modal-bg.jpg") 0 0 / cover no-repeat;
    min-height: 270px;
    margin-bottom: 15px;
}

.modal__inner {
    padding: 15px 85px;
    display: flex;
    flex-direction: column;
}

.modal__header-title {
    margin-top: 15px;
    position: relative;
    z-index: 5;
    font-size: 40px;
    line-height: 1.1;
    color: #1b1b1b;
    font-weight: 900;
}

.modal__body {}

.modal__descr {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.modal__title {
    font-weight: 900;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.modal__works-list {}

.modal__works-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.modal__works-item::before {
    width: 12px;
    height: 12px;
    display: block;
    content: "";
    background: url("../images/left-icon.png") 0 0 / cover no-repeat;
    position: absolute;
    top: 4px;
    left: 0;
}

.modal__benefits-title {
    margin-top: 40px;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 35px;
}

.modal__benefits-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.modal__benefits-column {
    flex: 0 1 33.3333%;
    padding: 0 10px;
}

.modal__benefits-item-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 15px;
}

.modal__benefits-item-text {
    font-size: 15px;
    line-height: 1.3;
    color: #747474;
}

.modal__btn {
    padding: 11px 39px 12px 49px;
    border: 2px solid transparent;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    color: #ffffff;
    align-self: center;
    background-color: var(--blue);
    transition: color 0.5s ease, border 0.5s ease, background-color 0.5s ease;
}

.modal__btn:hover {
    border: 2px solid var(--blue);
    color: var(--blue);
    background-color: #ffffff;
}

.modal__btn:active {
    color: #ccc;
    transform: translateY(1px);
    background-color: #103050;
    transition: background-color 0.1s linear;
}

.text--blue {
    color: var(--blue);
}


/*********************************/

@media screen and (max-width: 1600px) {
    .hero__slide-img-container {
        /*height: 600px;*/
        right: 50px;
    }
}

@media screen and (max-width: 1280px) {
    .hero {
        padding-top: 37px;
    }
    .hero__slide-img-container {
        margin-top: -75px;
        height: 447px;
    }
    .hero__swiper-wrapper {
        position: relative;
        padding-bottom: 82px;
    }
    .hero__slide-title {
        margin-bottom: 5px;
        font-size: 45px;
        line-height: 53px;
    }
}

@media (max-width: 1460px) {
    .contacts__map {
        width: 50%;
    }
    .stat__img-container {
        margin-left: 20px;
    }
    .header__contacts {
        flex-direction: column!important;
    }
    .header__address {
        font-size: 15px!important;
    }
    .about__features-item {
        max-width: 150px;
    }
    .popup__content {
        padding: 15px 12px 15px 49px;
    }
    .popup__form-input {
        margin-bottom: 10px;
    }
    .popup__file-lable {
        padding: 15px;
        margin-bottom: 15px;
    }
    .popup__checkbox-label {
        margin-bottom: 15px;
    }
    .popup__file-lable {
        font-size: 18px;
    }
    .popup__file-top::before {
        bottom: -15px;
    }
}

@media (max-width: 1360px) {
    .header__menu {
        margin-right: 19px!important;
    }
    .contacts__content {
        margin-right: 70px;
    }
    .header__contacts {
        flex-direction: unset!important;
        padding-right: 50px!important;
        padding-top: 15px!important;
    }
    .contacts__map {
        width: 50%;
    }
    .hero__slide-img-container {
        box-shadow: none;
    }
    .hero::before {
        min-height: 500px;
    }
    .hero__swiper-slide {
        padding-bottom: 50px;
    }
    .hero__inner::after {
        content: "";
        position: absolute;
        z-index: 90;
        width: 0px !important;
        height: 484px;
        background-image: url("../images/circle.svg");
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: cover;
    }
    .header__right {
        border-bottom: 1px solid grey;
        display: flex;
    }
    .ober {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        transition: all 0.2s ease 0s;
        background-color: white;
        padding: 75px 10px 90px 10px;
    }
    .menu__list {
        display: flex;
        flex-direction: column;
    }
    .menu__item+.menu__item {
        margin-left: 0;
        margin-top: 40px;
    }
    .header__menu {
        border-right: 1px solid grey;
        margin-right: 0;
        padding: 0px 20px;
    }
    .menu__link {
        font-size: 20px;
    }
    .header__contacts {
        border-right: 1px solid grey;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0px 20px;
    }
    .contacts__phone {
        margin-right: 20px;
    }
    .ober {
        border-bottom: 1px solid black;
    }
    .header__inner {
        justify-content: space-between !important;
    }
    .swiper-slide-active {
        z-index: 2;
    }
    .hero__swiper-slide {
        position: relative;
        /*padding-top: 241px;*/
    }
    .header__burger {
        display: flex !important;
    }
    .contacts__items-wrapper {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 1200px) {
    .hero::before {
        min-height: 465px;
    }
    .hero__slide-title {
        font-size: 40px;
    }
    .hero__swiper-slide {
        padding-top: 80px;
    }
    .hero__slide-img-container {
        top: 0px;
        height: 360px;
    }
    .contacts__map {
        width: 100%;
    }
    .contacts__items-wrapper {
        display: flex;
        flex-direction: column;
    }
    .contacts__content {
        margin-right: 0;
    }
    .clients__grid {
        flex-wrap: wrap;
    }
    .clients__column {
        flex: 0 1 33%;
        margin-bottom: 40px;
    }
    .services__inner {
        flex-direction: column;
    }
    .services__item {
        background-size: cover;
        background-repeat: no-repeat;
        background-position-x: 50%;
        background-position-y: 100%;
    }
}

@media (max-width: 1200px) {
    .modal__content {
        max-width: 970px;
    }
    .works__swiper-wrapper {
        position: relative;
        padding: 0 0px 0 35px !important;
    }
    .works__item-descr {
        max-width: 86%;
        margin-bottom: 29px;
        font-size: 12px;
        line-height: 25px;
    }
    .works__item-text {
        font-size: 14px !important;
        line-height: 33px;
    }
    .works__item {
        position: relative;
        padding-left: 70px !important;
        max-width: 400px;
    }
    .works__slide-inner {
        flex-wrap: wrap !important;
        display: flex;
        justify-content: center;
    }
    .works__img-container {
        margin-bottom: 50px;
    }
    .works__slide-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .works__item-btn {
        margin-left: 0;
    }
    .works__swiper-button-prev {
        top: 50%;
    }
    .works__swiper-button-next {
        top: 50%;
    }
    .works__list {
        max-width: 86%;
    }
    .about__inner {
        flex-direction: column;
    }
    .stat__inner {
        flex-direction: column;
    }
    .contacts__inner {
        flex-direction: column;
    }
    .stat__img-container {
        margin-top: 20px;
    }
}

@media (max-width: 1000px) {
    .header__contacts {
        flex-direction: column!important;
        padding-right: 70px!important;
    }
    .hero__slide-img-container {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        right: 129px!important;
    }
    .modal__inner {
        padding: 15px 40px;
    }
    .modal__content {
        max-width: 780px;
    }
    .process__content::after {
        right: -10px;
    }
    .hero__swiper-slide {
        padding-bottom: 30px;
    }
    .hero__slide-content {
        margin-left: 0!important;
    }
    .hero::before {
        /* min-height: 800px; */
    }
    .logo-link {
        margin-right: 0;
    }
    .footer__inner {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer__inner-item {
        flex: 0 1 40%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .footer__copy-container,
    .footer__dev {
        flex-direction: column;
    }
    .team__slide-content {
        left: 50%;
        transform: translateX(-50%);
        max-width: 90%;
        width: 100%;
    }
}

@media (min-width: 800px) {
    .clients__img {
        filter: grayscale(1);
    }
}

@media (max-width: 800px) {
    .hero__swiper-button-prev,
    .hero__swiper-button-next {
        position: absolute;
        top: auto;
        bottom: 190px;
        left: auto;
        width: 35px;
        height: 35px;
        border: 1px solid #fff;
        border-radius: 50%;
        opacity: 1 !important;
    }
    .hero__swiper-pagination.swiper-pagination-fraction {
        position: absolute;
        bottom: 199px;
        right: 132px;
        left: auto;
        width: fit-content;
        color: #fff;
        font-weight: 700;
    }
    .popup__file-top {
        padding-left: 0px;
    }
    .popup__file-lable {
        /* padding: 10px; */
    }
    .modal__benefits-title {
        font-size: 28px;
    }
    .modal__header-title {
        font-size: 35px;
    }
    .modal__benefits-column {
        flex: 0 1 100%;
        margin-bottom: 15px;
    }
    .photos__swiper-button-prev {
        left: 350px;
    }
    .photos__swiper-button-next {
        left: 440px;
    }
    .process__swiper-button-prev {
        left: 350px;
    }
    .process__swiper-button-next {
        left: 440px;
    }
    .team__img-container,
    .team__swiper-container {
        height: 500px;
    }
    .hero::before {
        min-height: 700px;
    }
    .hero__swiper-slide {
        padding-bottom: 0px;
    }
    .hero__slide-content {
        margin-left: 0;
        margin-top: 270px;
    }
    .hero__slide-img-container {
        max-width: 100%;
        top: 118px;
        margin-right: 0;
    }
    .team__slide-inner::after {
        background: none;
    }
    .team__slide-subtitle {
        font-size: 16px;
    }
    .team__slide-title {
        font-size: 30px;
        line-height: 1.5;
    }
    .clients__grid {
        justify-content: center;
    }
    .clients__subtitle {
        font-size: 18px;
    }
    .about {
        margin-bottom: 70px;
    }
    .about__text {
        font-size: 18px;
        line-height: 1.5;
    }
    .about__img-container {
        margin-right: 0;
    }
    .about__descr {
        margin-bottom: 25px;
    }
    .about__features-item::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .about__features-item:not(:nth-child(2n)) {
        margin-right: 0px;
    }
    .about__features-list {
        justify-content: center;
        /* flex-direction: column;
		align-items: center; */
    }
    .about__features-item {
        flex: 0 1 50%;
    }
    .about__features-text {
        margin-top: 5px;
        line-height: 1.5;
        text-align: center;
    }
    .stat {
        margin-bottom: 70px;
    }
    .title {
        font-size: 36px;
        line-height: 1.5;
    }
    .hero__slide-title {
        font-size: 40px;
        line-height: 1.5;
    }
    .header__right.active {
        padding: 75px 50px;
    }
    .popup__content {
        padding: 5px !important;
    }
    .process__content {
        position: relative;
        padding-top: 55px;
        /* font-size: 13px !important;
		max-width: 120px !important; */
    }
    .contacts__item {
        margin-right: 0px !important;
    }
    .stat__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 0 4px !important;
    }
    .hero__slide-content {
        max-width: 765px;
        color: #fff;
        height: 450px;
        display: flex;
        padding: 10px;
        flex-direction: column;
        justify-content: center;
    }
    .hero__slide-btn {
        align-self: flex-start;
    }
    .stat__img-container {
        height: 250px !important;
    }
    .popup__title {
        margin-bottom: 9px !important;
        font-size: 21px;
        line-height: 28px;
        font-weight: 600;
        color: #2c2c2c;
        text-align: center;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
    .popup__left {
        max-width: 220px;
        margin-right: 15px !important;
        text-align: center;
    }
    .popup__form-input {
        border: 1px solid #adadad;
        border-radius: 5px;
        padding: 14px 18px;
        margin-bottom: 15px !important;
    }
    .popup__file-top::before {
        /* background-size: contain;
		background-repeat: no-repeat;
		background-position: 0 0;
		height: 20px;
		width: 20px; */
    }
    .popup__file-top {
        font-size: 18px;
    }
    .popup__file-lable {
        font-size: 18px !important;
    }
    .popup__inner {
        padding: 10px;
    }
    .popup__file-top::before {
        background: none;
    }
    .popup__content {
        position: absolute;
        left: 50%;
        top: 50%;
        padding: 5px 2px 2px 5px !important;
    }
    .popup__checkbox-label {
        max-width: 260px;
        margin-bottom: 15px !important;
    }
    .popup__file-lable {
        /* padding: 0px !important; */
        max-width: 340px;
        border: 3px solid #707070;
        border-radius: 4px;
        margin-bottom: 21px;
        cursor: pointer;
        font-size: 24px;
        line-height: 32px;
        color: #adadad;
    }
}

@media (max-width: 800px) {
    .clients__column {
        flex: 0 0 50%;
        display: flex;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .services__item {
        position: relative;
        flex: 0 0 calc(100% / 3);
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 200px;
    }
    .hero__slide-img img {
        height: 600px !important;
    }
    .hero__swiper-button-prev,
    .hero__swiper-button-next {
        position: absolute;
        top: auto;
        bottom: 190px;
        left: auto;
        width: 35px;
        height: 35px;
        border: 1px solid #fff;
        border-radius: 50%;
        opacity: 1 !important;
    }
    .hero__swiper-slide {
        position: relative;
        padding-top: 40px !important;
    }
}

@media (max-width: 600px) {
    .header__contacts {
        padding-bottom: 20px!important;
    }
    .modal__benefits-title {
        font-size: 24px;
    }
    .works__title {
        margin-bottom: 0;
    }
    .modal__header-title {
        font-size: 30px;
    }
    .photos__swiper-button-next,
    .photos__swiper-button-prev {
        top: 78px;
        bottom: 108px;
        width: 30px;
        height: 30px;
    }
    .photos__swiper-button-prev {
        left: 242px;
    }
    .photos__swiper-button-next {
        left: 300px;
    }
    .process__swiper-button-next {
        left: 255px;
    }
    .process__swiper-button-prev {
        left: 219px;
    }
    .process__swiper-button-next,
    .process__swiper-button-prev {
        top: 11%;
        width: 30px;
        height: 30px;
    }
    .popup__file-lable {
        /* padding: 0px !important; */
    }
    .header__burger {
        right: 30px !important;
    }
    .header__address {
        display: none !important;
    }
    .footer__dev {
        margin-top: 15px;
    }
    .footer__social-container {
        margin-top: 15px;
    }
    .footer__inner {
        flex-direction: column;
    }
    .hero::before {
        min-height: 700px;
    }
    .photos__img-container {
        width: 100%;
    }
    .header__address {
        display: none;
    }
}

@media (max-width: 550px) {
    .team__slide-content {
        bottom: 165px;
    }
    .header {
        top: -33px!important;
    }
    .popup__left {
        height: 70px;
    }
    .popup__left-text,
    .popup__phone-link,
    .popup__mail-link,
    .popup__subtext {
        display: none;
    }
    .popup__file-top::before {
        background: none;
    }
    .popup__file-lable {
        padding: 10px !important;
    }
    .popup__file-top {
        padding-left: 0;
    }
    .popup__inner {
        padding: 10px;
        flex-direction: column;
        align-items: center;
    }
    .title.process__title {
        font-size: 24px;
    }
    .logo-img {
        height: 45px;
    }
    .hero__swiper-slide {
        padding-top: 15px !important;
    }
    .hero__slide-content {
        height: 200px;
    }
    .hero__slide-img-container {
        box-shadow: none;
        height: 200px;
    }
    .hero__slide-img {
        height: 250px;
    }
    .hero__swiper-button-prev,
    .hero__swiper-button-next {
        position: absolute;
        top: auto;
        bottom: 12px;
        left: auto;
        width: 35px;
        height: 35px;
        border: 1px solid #fff;
        border-radius: 50%;
        opacity: 1 !important;
    }
    .services__item-title {
        width: auto;
    }
    .hero__swiper-pagination.swiper-pagination-fraction {
        position: absolute;
        bottom: 19px;
        right: 132px;
        left: auto;
        width: fit-content;
        color: #fff;
        font-weight: 700;
    }
    .hero__slide-btn {
        display: inline-block;
        padding: 7px 6px 9px 10px;
        border: 1px solid #fff;
        border-radius: 1px;
        font-family: "Gilroy", sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff;
        background-color: transparent;
        transition: color 0.5s ease, background 0.5s ease;
    }
    .about__features-item::before {
        font-size: 50px;
    }
    .about__features-item {
        padding-top: 50px;
    }
    .pros__slide-title {
        font-size: 26px;
    }
    .pros__slide-content {
        max-width: 90%;
        width: 100%;
    }
    .pros__slide-content,
    .pros__btn-container {
        left: 50%;
        transform: translateX(-50%);
    }
    .process__swiper-button-next {
        left: 301px;
    }
    .process__swiper-button-prev {
        left: 247px;
    }
    .contacts__btn-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .contacts__form-btn {
        margin-bottom: 15px;
    }
    .contacts__file-label {
        padding: 15px 46px 19px 54px;
    }
    .clients__grid {
        padding: 0;
    }
    .clients__column {
        flex: 0 1 50%;
        margin-bottom: 20px;
        padding: 10px 10px 10px 10px;
    }
    .clients__column:last-child {
        flex: 0 1 55%;
        display: flex;
    }
    .works__item-descr {
        font-size: 16px;
    }
    .works__swiper-button-prev {
        top: 48%;
    }
    .works__swiper-button-next {
        top: 48%;
    }
    .works__img-container {
        margin-right: 40px;
    }
    .works__swiper-wrapper {
        position: relative;
        padding: 0 0px 0 15px !important;
    }
    .about {
        margin-bottom: 40px;
    }
    .stat {
        margin-bottom: 40px;
    }
    .stat__text {
        font-size: 18px;
    }
    .stat__item {
        font-size: 16px;
    }
    .stat__title {
        margin-bottom: 15px;
    }
    .title {
        font-size: 30px;
        line-height: 1.5;
    }
    .hero__slide-title {
        font-size: 28px;
        line-height: 1.25;
    }
    .hero__slide-subtitle {
        font-size: 16px;
        line-height: 1.4;
    }
    .ober.active {
        padding: 20px;
        border-bottom: none;
    }
    .header__right {
        flex-direction: column;
        height: 100%;
        justify-content: center;
    }
    .header__right.active {
        padding: 20px;
        border-bottom: none;
    }
    .header__menu.active {
        border-right: none;
        border-bottom: 1px solid grey;
        padding-bottom: 30px;
    }
    .header__contacts {
        margin-top: 76px;
        margin-left: -193px;
        border-right: none;
        flex-direction: row!important;
    }
    .header__inner {
        padding: 2px 0;
    }
}

@media (max-width: 440px) {
    .popup__content {
        width: 90%;
    }
    .about__img-container img {
        height: 352px;
    }
}