*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ul,
ol {
    padding: 0;
}
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}


@font-face {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
    src: local('Gotham Pro'), url('../fonts/GothamPro/GothamPro.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
    src: local('Gotham Pro'), url('../fonts/GothamPro/GothamPro-Black.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
    src: local('Gotham Pro'), url('../fonts/GothamPro/GothamPro-Light.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
    src: local('Gotham Pro'), url('../fonts/GothamPro/GothamPro-Medium.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Pro';
    font-style: italic;
    font-weight: 400;
    src: local('Gotham Pro'), url('../fonts/GothamPro/GothamPro-Lightitalic.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 700;
    src: local('Gotham Pro'), url('../fonts/GothamPro/GothamPro-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Pro Medium';
    font-style: italic;
    font-weight: 500;
    src: local('Gotham Pro Medium'), url('../fonts/GothamPro/GothamPro-MediumItalic.woff') format('woff');
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

input[type=number] {
    -moz-appearance: textfield !important;
}
ul[class],
ol[class] {
    list-style: none;
}
a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}
img {
    max-width: 100%;
    /* display: block; */
}
article > * + * {
    margin-top: 1em;
}
input,
button,
textarea,
select {
    font: inherit;
}
input {
    outline: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}
input:focus,
textarea:focus {
    outline:none;
}
[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: none !important;
}

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

a:hover {
    color: #000000;
}
button {
    background-color: transparent;
    border: none;
    color: #000;
    cursor: pointer;
}
button:focus-visible {
    outline: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type='number'] {
    -moz-appearance: textfield;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    inset: 0 0 0 50px;
    -webkit-text-fill-color:#000;
    /* -webkit-box-shadow: transparent; */
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
    font-size: 1.1rem;
}

:focus {outline: none !important;}
::-moz-focus-outer, ::-moz-focus-inner {
    border: 0px !important;
    padding: 0;
}
a:focus,
a:active,
button:focus {
    outline: 0!important;
    outline-color: transparent!important;
    outline-width: 0!important;
    outline-style: none!important;
    box-shadow: 0 0 0 0 rgba(0,123,255,0)!important;
}
input, textarea,input:active, textarea:active {outline:none;}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
    visibility: hidden;
}

.row {
    display: flex;
}
.row__vertical-center {
    align-items: center;
}
html {
    width: 100%;
    height: 100%;
}
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    background: #FFFFFF;
    color: #706F6F;

    font-family: 'Ruda';
    font-style: normal;
    font-weight: 400;
    overflow-x: hidden;
}
.content__center {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.position-relative {
    position: relative;
}

.container {
    width: 1125px;
    margin-left: auto;
    margin-right: auto;
}
.container__header {
    width: 1320px;
    margin-left: auto;
    margin-right: auto;
}
/* -------------------------- */
.button {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    transition: all 0.5s ease-out;

    padding: 15px 50px;
    cursor: pointer;

    -webkit-transform: skew(20deg);
    -moz-transform: skew(20deg);
    -o-transform: skew(20deg);
}
.button span {
    display: block;
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -o-transform: skew(-20deg);
}

.button__blue {
    color: #fff;
    background: #12508E;
}
.button__white {
    background: #fff;
    color: #12508E;
}
.button:hover {
    opacity: 0.8;
}
/* -------------------------- */
/* -------------------------- */
header {
    padding: 1.5em 0;
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    padding-right: 12em;
}
.menu {
    font-size: 1.6em;
    line-height: 1.9em;
    text-align: center;
    display: flex;
    align-items: center;
    list-style: none;
}
.menu li {
    padding: 0 1.5em;
}
.menu li a {
    color: #706F6F;
    transition: all 0.5s ease-out;
}
.menu li a.social {
    color: #12508E;
    font-weight: 700
}

.menu li a:hover {
    opacity: .7;
}

/* -------------------------- */
/* -------------------------- */
.banner {
    background: #F8F8F8;
    padding: 5em 0;
    margin-bottom: 8em;
}
.banner__row {
    display: flex;
}
.banner__content {
    width: calc(100% - 621px);
}
.banner__img {
    padding-top: 30px;
    width: 621px;
}
h1 {
    font-weight: 800;
    font-size: 6.0em;
    line-height: 1.2em;
    color: #12508E;
    margin-bottom: 3rem;
}
h2 {
    font-weight: 800;
    font-size: 4.0em;
    line-height: 1.2em;
    text-align: center;
    color: #12508E;
    margin-bottom: 0.7em;
}

.banner__desc {
    font-size: 1.8em;
    line-height: 1.2em;
    color: #706F6F;
}
.banner__items {
    display: flex;
    margin-bottom: 3rem;
}
.banner__item {
    font-weight: 700;
    font-size: 2.0em;
    line-height: 1.2em;
    color: #706F6F;
    display: flex;
    align-content: center;
    margin-right: 1.5em;
}
.banner__item span {
    margin-right: 0.3em;
}
.banner .button {
    margin-bottom: 3rem;
    position: relative;
    left: 10px;
}
.banner__img-mobi {
    display: none;
}
.slide {
    padding: 0 0 0;
    margin-bottom: 11em;
}
.slide__content {
    background: #12508E;
    padding: 8em 9em;
    width: 869px;
    display: flex;
}
.slide-content img {
    margin-bottom: 30px;
}
.slide__column {
    width: 50%;
}
.slide__column:first-child {
    padding-right: 60px;
}
.slide-content {
    text-align: center;
}
.slide-content__title {
    font-weight: 700;
    font-size: 2.8em;
    line-height: 1.2em;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 25px;
}
.slide-content img {
    margin-bottom: 20px;
}
.slide__item {
    font-size: 1.8em;
    line-height: 1.2em;
    color: #FFFFFF;
    margin-bottom: 13px;
    display: flex;
}
.slide__item span {
    margin-right: 10px;
}
.slide-content .button {
    padding: 15px 27px;
}
.slide-btn__mobi {
    display: none;
}

.advantages__wrapper {
    display: flex;
}
.advantages__column {
    width: 50%;
}

.advantages {
    margin-bottom: 8em;
}
.advantages__item {
    font-size: 2.2em;
    line-height: 1.2em;
    display: flex;
    margin-bottom: 1.8em;
}
.advantages__item span {
    margin-right: 10px;
}
.section__title {
    margin-bottom: 1.5em;
}

.job {
    margin-bottom: 2em;
}
.job__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px
}
.job__item {
    width: calc(50% - 50px);
}
.job-item {
    display: flex;
    align-items: center;
    color: #706F6F;
    font-size: 2.0em;
    line-height: 1.2em;

    padding: 0 1em;
    background: #F4F4F4;
    border-radius: 8px;
    min-height: 101px;
}
.job-item__count {
    width: 48px;
    height: 48px;
    background: #12508E;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 30px;
}
.job-item span {
    width: calc(100% - 48px);
}

.description {
    display: flex;
    justify-content: center;
}
.description__content {
    max-width: 832px;
    text-align: center;
    font-size: 1.8em;
    line-height: 1.2em;
    text-align: center;

    color: #706F6F;
    padding: 2em 0;
}

.safety {
    background: #12508E;
    padding: 8em 0;
    margin-bottom: 8em;
}
.safety__title {
    margin-bottom: 1em;
    color: #fff;
    text-align: left;
    max-width: 523px;
}
.safety__desc {
    font-size: 2.0em;
    line-height: 1.2em;
    margin-bottom: 2em;
    color: #fff;
    max-width: 523px;
}
.safety__wrapper {
    display: flex;
    gap: 80px
}
.safety-item {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 5em 3em;
    width: 33%;
}
.safety-item__title {
    color: #12508E;
    font-weight: 800;
    font-size: 2.4em;
    line-height: 1em;
    margin-bottom: 1.2em;
}
.safety-item__title span {
    font-size: 2.2em;
}
.safety-item__desc {
    font-size: 2.2em;
    line-height: 1.2em;
    color: #706F6F;
}
.contacts {
    background: #F4F4F4;
    padding: 7em 0;
}
.contacts__wrapper {
    display: flex;
    gap: 80px;
}
.contacts__item {
    background: #FFFFFF;
    border-radius: 8px;
    width: 100%;
    padding: 5em 3em;

    display: flex;
    justify-content: space-between;
}
.contact-item__title {
    display: flex;
    align-content: center;

    font-size: 2.4em;
    line-height: 1.2em;
    color: #12508E;
    margin-bottom: 19px;
}
.contact-item__title span {
    margin-right: 10px;
}
.contact-item__phone {
    font-weight: 900;
    font-size: 2.4em;
    line-height: 1.2em;
    color: #706F6F;
    margin-bottom: 1.4em;

}
.contact-item__name {
    font-size: 2.4em;
    line-height: 1.2em;
    color: #706F6F;
    margin-bottom: 0.5em;
}
.contact-item__spec {
    font-size: 1.5em;
    line-height: 1.3em;
    color: #706F6F;
}
.contact-item__qr {
    width: 40%;
    padding-top: 4em;
}
.contact-item-qr__img {
    text-align: center;
    margin-bottom: 1.2em;
}
.contact-item-qr__title {
    text-align: center;
}

.footer__contacts {
    padding:19em 0 16.8em;
    text-align: right;
}
.footer-contacts {
    background: #12508E;
    border-radius: 8px;
    width: 40.9em;
    text-align: left;
    padding: 6em 5em;
}
.footer-contacts__img {
    margin-bottom: 3em;
}
.footer-contacts__desc {
    font-weight: 800;
    font-size: 2.0em;
    line-height: 1.2em;
    color: #FFFFFF;
    margin-bottom: 1.5em;
}
.footer__bottom {
    background: #12508E;
    padding: 4.8em 0;
}
.footer-bottom__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom__link {
    font-size: 1.4em;
    line-height: 1.2em;
    text-decoration-line: underline;
    color: #FFFFFF;
}
.footer-bottom__link:hover {
    opacity: .8;
    color: #FFFFFF;
}
.footer-bottom__copy {
    font-size: 1.8em;
    line-height: 1.2em;
    text-align: center;
    color: #FFFFFF;
}
.footer-bottom__links {
    font-size: 1.2em;
    line-height: 1.0em;
    text-align: right;
    color: #B2B2B2;
}
.footer-bottom__links a {
    color: #B2B2B2;
}
.footer-map-mobi {
    display: none;
}
.menu-mobi {
    display: none;
}

@media only screen  and (max-width: 1320px) {
    .container__header {
        width: 100%;
        padding: 0 15px;
    }
    .menu li {
        padding: 0 1em;
    }
    .logo {
        padding-right: 2em;
    }
}
@media only screen  and (max-width: 1220px) {
    .menu li {
        padding: 0 0.6em;
    }
}


.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}
.active {
    display: block;
}
.popup__overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}
.popup-order.active,
.popup-calc.active{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.popup-order .popup-form__success,
.popup-order .popup-form,
.popup-calc .popup-form__success,
.popup-calc .popup-form
{
    /*width: 32.8em;*/

    background: #F7F4F1;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    padding: 2.7em 2em;
}
.popup-form__top {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 3em;
    flex-direction: column;
    align-items: center;
}
.popup-form__title {
    font-weight: 800;
    font-size: 2.8em;
    line-height: 1.2em;
}
.popup-form__desc {
    max-width: 495px;
    margin-top: 1.1em;
    font-size: 1.8em;
    text-align: center;
}
.popup-form__close {
    position: absolute;
    top: 0px;
    right: 0;
}
.popup-order .popup-form__close svg,
.popup-calc .popup-form__close svg{
    width: 16px;
    height: 16px;
}
.popup-form__text {
    font-weight: 600;
    font-size: 2.0em;
    line-height: 1.2em;
    text-align: center;
    margin-bottom: 1.5em;
}
.popup-form,
.popup-form__success {
    display: none;
}
.popup-form.active,
.popup-form__success.active {
    display: block;
}

.form-content {
    max-width: 661px;
    margin: 0 auto;
}
.form-content__input {
    border: none;
    border-bottom: 1px solid #12508E;
    padding: 1.0em 1em;
    font-size: 1.6em;
    line-height: 1.2em;
    width: 100%;
    background: inherit;
    margin-bottom: 3em;
}
.form-content__input-group {
    display: flex;
    gap: 25px;
}
.form-content__textarea {
    border: none;
    border-bottom: 1px solid #12508E;
    padding: 1.3em 1em;
    font-size: 1.6em;
    line-height: 1.2em;
    resize: vertical;
    background: inherit;
    margin-bottom: 2em;
    width: 100%;
}

.form-content__message {
    visibility: hidden;
    margin-bottom: 2em;
    font-size: 1.6em;
    color: red;
}
.form-content__message.active {
    visibility: visible;
}

.form-content__button{
    width: 369px;
}
.form-content__footer {
    display: flex;
    gap: 20px;
    font-size: 1.2em;
    line-height: 1.2em;
}
.form-content__agreement a {
    text-decoration: underline;
    color: #434343;
}

.footer__contacts {
    height: 706px;
}
.tabs {
    width: 100%;
    display: flex;
    margin-top: 5em;
    margin-bottom: 1em;
}
.tab {
    width: 33%;

    font-size: 2.6em;
    font-weight: 700;
    line-height: 1.1em;
    text-align: center;
    border-bottom: 2px solid #B2B2B2;
    padding: 0.5em;
    cursor: pointer;
    color: #B2B2B2;
}
.tab.active {
    border-bottom: 2px solid #12508E;
    color: #12508E;
}
.tab__content {
    display: none;
}
.tab__content.active {
    display: block;
}
.tab__content1 .footer__contacts {
    background-image: url("../img/map-tab1.svg");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 100%;
}
.tab__content2 .footer__contacts {
    background-image: url("../img/map-tab2.svg");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 100%;
}
.tab__content3 .footer__contacts {
    background-image: url("../img/map-tab3.svg");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 100%;
}
.tab__content1 .footer-contacts {
    /*display: none;*/
}