/* ШРИФТЫ */
/* Загрузить из папки */
@font-face {
    font-family: GOST Type BU;
    src: url(/fonts/gost_type_bu.woff2) format("woff2"), url(/fonts/gost_type_bu.woff) format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: GOST type B;
    src: url(/fonts/gost_type_b.woff2) format("woff2"), url(/fonts/gost_type_b.woff) format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: GOST type A;
    src: url(/fonts/gost_type_a.woff2) format("woff2"), url(data:font/woff;base64,) format("woff");
    font-weight: 400;
    font-style: normal;
}

/* Объявить в переменные */
:root {
    --font-1: "GOST Type BU";
    --font-2: "GOST type B";
    --font-3: "GOST 2.304 type A";
}

/* // ШРИФТЫ */


/* ОБЩИЕ НАСТРОЙКИ */
/* общий фон страницы */

.flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.container {
    max-width: 1550px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

/* Заголовки, текст */
h1 {
    /*Продающий заголовок*/
    display: block;
    unicode-bidi: isolate;
    font-family: var(--font-1);
    font-weight: 400;
    font-size: 28px;
    line-height: 98%;
    letter-spacing: 0.03em;
    color: rgb(255, 255, 255);
}

h3 {
    /*Главный заголовок*/
    font-family: var(--font-1);
    font-weight: 400;
    font-size: 68px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-align: left;
    color: rgb(255, 255, 255);
}


h4 {
    /*Заголовок абзаца*/
    font-family: var(--font-1);
    font-weight: 400;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-align: left;
    text-indent: 50px;
}


h5 {
    /* Настройки формы */
    font-family: var(--font-1);
    font-weight: 400;
    font-size: 44px;
    line-height: 89%;
    color: #fefeff;
    margin-bottom: 20px;
}

h6 {
    /* Настройки формы */
    font-family: var(--font-1);
    font-weight: 400;
    font-size: 32px;
    line-height: 89%;
    color: #fefeff;
}

p {
    /*Текст абзаца*/
    font-family: var(--font-1);
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0.03em;
    text-align: justify;
    text-indent: 40px;
    width: 95%;
}



/* Ссылки */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #f00a0a;
}

a:active {
    color: #0f0f0f85;
}

/* Кнопки */
.btn {
    font-family: var(--font-2);
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    box-sizing: border-box;
    /* border: 2px solid rgba(227, 5, 0, 1); */
    border-radius: 16px;
    background: rgba(227, 5, 0, 1);
    /* width: auto; */
    /* height: auto; */
    color: rgb(255, 255, 255);
    transition: background-color .5s ease, color .5s ease;
}

.btn:hover {
    /* border: 2px solid rgba(243, 243, 243, 1); */
    background: rgba(243, 243, 243, 1);
    color: rgba(227, 5, 0, 1);
}

.btn:active {
    color: #0f0f0f85;
}

.revers-btn {
    display: block;
    width: 100%;
    border-radius: 12px;
    padding: 20px;
    background: #fefeff;
    font-family: var(--font-1);
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: #e30500
}

.revers-btn:hover {
    background-color: #4604048a;
    color: #f7f7fa;
}

.revers-btn:active {
    border: 1px solid #0f0f0f85;
    background: hsl(0, 7%, 92%);
    color: #0f0f0f85;
}

/* картинки */
/* .img {
    height: auto;
    width: auto;
} */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

/* // ОБЩИЕ НАСТРОЙКИ */

/* ВЕРХНИЙ HEADER */
.top-header {
    width: 100%;
    background-color: rgba(227, 5, 0, 1);
    padding: 15px 0;
    font-family: var(--font-2);
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #ffffff;
}

.top-header-contact {
    justify-content: flex-end;
}

.top-header-phones {
    gap: 80px;
    margin-right: 90px;
}

.top-header-phones img {
    margin-right: 8px;
}

.top-header-contact a:hover {
    color: #ffffff;
}

.top-header-messengers {
    gap: 16px;
    align-items: center;
    justify-content: center;
}

/* // ВЕРХНИЙ HEADER */

/* НИЖНИЙ HEADER */
.bottom-header {
    /* background-color: rgb(161, 173, 228); */
    justify-content: space-between;
    /* отступ от логотипа*/
    padding: 20px 0;
}

.logo {
    /* background-color: rgb(178, 189, 157); */
    padding-left: 15px;
    font-family: var(--font-2);
    font-weight: 400;
    font-size: 26px;
    line-height: 90%;
    text-align: left;
}

.logoimg {
    height: 70px;
    margin-right: 28px;
}

.navigation {
    gap: 27px;
    font-family: var(--font-2);
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
}

.navigation a {
    padding: 11px 20px;
}

.menu-phone {
    display: none;
}

.nav-phone {
    display: none;
}



/* // НИЖНИЙ HEADER */

/* HERO */
.hero {
    /* background: #183774; */
    background-image: url(./../imges/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 110px 0px 150px;
    background-position: center;
}

.hero-left {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    max-width: 50%;
    gap: 50px;
    margin-right: 20px;
}

.hero-btn {
    padding: 15px 70px;
}

/* css слайдера на style.css */
/* // HERO */

/* ABOUT */
.about {
    padding: 80px 0;
}


.about-left {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    /* max-width:65%; */
    gap: 15px;
    /* margin-right: px; */
}

.about img {
    border-radius: 15px;
    width: 460px;
}

/* // ABOUT */

/* WORK */

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 25px;
    padding: 45px 0;
    align-items: center;
    /* border: 1px solid #aa1717; */
}


.grid-item {
    font-family: var(--font-1);
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0.03em;
    text-align: left;
    width: 100%;
    background-color: #ebebeb;
    padding: 16px;
    border-radius: 16px;
}


.container {
    max-width: 1550px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

/* иконки */
.hw1 {
    background-image: url("./../imges/hw1.svg");
    background-size: 48px;
    background-repeat: no-repeat;
    background-position: 24px;
    padding-left: 92px;
}

.hw2 {
    background-image: url("./../imges/hw2.svg");
    background-size: 48px;
    background-repeat: no-repeat;
    background-position: 24px;
    padding-left: 92px;
}

.hw3 {
    background-image: url("./../imges/hw3.svg");
    background-size: 48px;
    background-repeat: no-repeat;
    background-position: 24px;
    padding-left: 92px;
}

.hw4 {
    background-image: url("./../imges/hw4.svg");
    background-size: 48px;
    background-repeat: no-repeat;
    background-position: 24px;
    padding-left: 92px;
}

.hw5 {
    background-image: url("./../imges/hw5.svg");
    background-size: 48px;
    background-repeat: no-repeat;
    background-position: 24px;
    padding-left: 92px;
}

.hw6 {
    background-image: url("./../imges/hw6.svg");
    background-size: 48px;
    background-repeat: no-repeat;
    background-position: 24px;
    padding-left: 92px;
}

/* // WORK */


/* MANUFACTURE */
.manufacture {
    /* background: hsla(51, 47%, 68%, 0.664); */
    padding: 60px 0;
}

.manufacture img {
    border-radius: 15px;
    width: 460px;
}


/* // MANUFACTURE */

/* PREEM */
.preem {
    padding: 60px 0;
}

.preem img {
    border-radius: 15px;
    width: 460px;
}

.preem p {
    /* width: 100%; */
    text-indent: 0;
}

/* // PREEM */

/* SERTS * PORTFOLIO */
.gal {
    padding-top: 40px;
    padding-bottom: 40px;
}

.gal a {
    padding: 11px 20px;
}

.gal-lab {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.gal-lab img {
    height: 310px;
    /* width: auto; */
    margin: 30px 5px;
    border: 1px solid #8f98b8;
}

/* // SERTS * PORTFOLIO */

/* FORM */
.form {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: rgba(227, 5, 0, 1);
    border-radius: 70px 70px 0 0;
}

.form-card {
    width: 800px;
}

/* поля ввода */

.form-group {
    font-family: var(--font-1);
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #cccccc;
    font-size: 24px;
    line-height: 120%;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px #007bff4d;
}

.input::placeholder {
    /* font-family: var(--third-family); */
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #6b6b6b;
}

.label {
    /* font-family: var(--font-1); */
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #ffffff
}

.email {
    margin-bottom: 30px !important
}

.form-cont {
    display: flex;
    border-radius: 14px;
    align-items: center;
    gap: 60px;
}

.form img {
    border-radius: 15px;
    width: 650px;
    height: auto;
}

/* // FORM */

/* FOOTER */
.footer {
    padding-top: 80px;
    padding-bottom: 90px;
    background: rgb(42, 42, 42);
}

.footer-con {
    display: flex;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    padding-right: 20px;
    margin-left: 15px;

    font-family: var(--font-2);
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #fefeff
}

.footer-center {
    text-align: center;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    display: none;
}

.footer-center iframe,
.footer-bottom iframe {
    border-radius: 20px;
    border: 8px solid rgba(177, 177, 177, 0.178);
}


.footer-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    margin-left: 15px;

    font-family: var(--font-2);
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #fefeff
}

.footer-right h6 {
    padding: 10px 0 10px 0;
}

.footer-right img {
    padding-top: 4px;
}

.footer a:active {
    color: rgb(134, 134, 134);
}

/* // FOOTER */


/* SATELIT */
/* общие настройки поддоменных страниц header*/
.header-satelit {
    gap: 50px;
}

.header-satelit img {
    height: 50px;
}

.footer-satelit {
    padding-top: 40px;
    padding-bottom: 60px;
    background: rgb(42, 42, 42);
}

/* общие настройки поддоменных страниц footer*/
.footer-dis {
    /* gap: 20px; */
    justify-content: space-between;
}

.footer-satelit p {
    font-family: var(--font-1);
    font-size: 20px;
    font-style: italic;
    /* font-weight: 400; */
    color: rgb(255, 255, 255);
}

.footer-satelit a {
    font-family: var(--font-1);
    font-size: 30px;
    color: rgb(255, 255, 255);
}

.footer-satelit a:hover {
    color: rgb(253, 0, 0);
}

.footer-satelit a:active {
    color: rgb(134, 134, 134);
}

/* SATELIT */

/* -- Страницы -- */
/* REQUIS */
.requis {
    padding: 40px;
}

.requis h6 {
    color: #000000;
    padding: 40px 10px 20px 10px;
}

.regflex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.grid-requis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, auto);
    gap: 3px;
    /* padding: 0px 1px; */
}

.grid-requis-item {
    font-family: var(--font-2);
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.03em;
    text-align: left;
    width: 100%;
    border: 1px solid #2c2c2c;
    padding: 12px;
}

.tit {
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* // REQUIS */

/* DOCS */
.docs {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
}

/* // DOCS */