/*!*****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/style.css ***!
  \*****************************************************************/
.section__content,
.header__menu .menu__wrap,
.header__menu,
.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subsection,
.section__title-block,
.header__menu.active .menu__wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.button:hover,
.header__socials:hover {
    cursor: pointer;
}

.section__content,
.header__menu .menu__wrap,
.header__menu,
.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subsection,
.section__title-block,
.header__menu.active .menu__wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.button:hover,
.header__socials:hover {
    cursor: pointer;
}

.header {
    padding: 17px 0;
    position: relative;
    background-color: white;
}
.header__icon {
    width: 26px;
    height: 26px;
    margin-right: 10px;
}
.header__social {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.header__social:hover {
    transform: scale(110%);
}
@media (max-width: 1110px) {
    .header__container {
        justify-content: space-around;
    }
}
@media (max-width: 900px) {
    .header__container {
        justify-content: space-between;
        padding: 0 20px;
    }
}
.header__logo {
    width: 250px;
    height: 91px;
    margin-right: 20px;
}
@media (max-width: 1200px) {
    .header__logo {
        width: 200px;
        height: 70px;
        margin-right: 0;
    }
}
@media (max-width: 900px) {
    .header__logo {
        width: 160px;
        height: 58px;
    }
}
@media (max-width: 900px) {
    .header__menu {
        display: none;
    }
}
.header__menu.active {
    position: absolute;
    top: 85px;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-color: white;
    justify-content: flex-start;
    z-index: 998;
}
.header__menu.active .menu__wrap {
    align-items: flex-start;
    margin: 0 auto;
}
.header__menu.active .menu__wrap li {
    padding: 5px 0;
    align-items: flex-start;
}
.header__address {
    margin-right: 86px;
}
@media (max-width: 1110px) {
    .header__address {
        margin-right: 0;
    }
}
@media (max-width: 900px) {
    .header__address {
        margin-right: 0;
    }
}
.header__socials {
    display: flex;
    margin-right: 24px;
}
@media (max-width: 1110px) {
    .header__socials {
        display: none;
    }
}
@media (max-width: 900px) {
    .header__socials {
        display: flex;
        margin-right: 0;
    }
    .header__socials > *:not(:last-child) {
        margin-right: 10px;
    }
}
.header__phone {
    margin-right: 44px;
}
@media (max-width: 900px) {
    .header__phone {
        margin-right: 0;
    }
}
.header__button {
    font-size: 14px;
    line-height: 1.4;
}
@media (max-width: 900px) {
    .header__button {
        margin: 10px 0;
    }
}
.header__burger {
    display: none;
    position: relative;
    width: 30px;
    height: 24px;
    z-index: 900;
    transition: 0.2s;
}
@media (max-width: 900px) {
    .header__burger {
        display: block;
    }
}
.header__burger.active::before {
    transform: rotate(45deg);
    top: 11px;
}
.header__burger.active::after {
    transform: rotate(-45deg);
    bottom: 11px;
}
.header__burger.active span {
    display: none;
}
.header__burger span {
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    top: 11px;
    border-bottom: 3px solid #060607;
}
.header__burger::before,
.header__burger::after {
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    border-bottom: 3px solid #060607;
}
.header__burger::before {
    top: 1px;
}
.header__burger::after {
    bottom: 1px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all 0.5s ease-out;
}

html {
    scroll-behavior: smooth;
}
html.overlay {
    overflow: hidden;
}

body {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Roboto";
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: #f5f5f5;
    color: #060607;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3ms ease;
    line-height: 1.5;
    font-weight: 400;
    background-color: white;
}
body.overlay {
    overflow: hidden;
}

header,
main,
footer {
    width: 100%;
}

.overlay.open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    background-color: #060607;
    opacity: 0.5;
}

img {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-weight: normal;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding-left: 0;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

._container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 1110px) {
    ._container {
        max-width: 1000px;
        width: 100%;
        padding: 0 10px;
    }
}
@media (max-width: 900px) {
    ._container {
        max-width: 900px;
        width: 100%;
    }
}
@media (max-width: 400px) {
    ._container {
        max-width: 580px;
        width: 100%;
    }
}

.section__title-block {
    margin-bottom: 50px;
}
@media (max-width: 900px) {
    .section__title-block {
        margin-bottom: 30px;
    }
}
@media (max-width: 900px) {
    .section__content {
        flex-direction: column;
        align-items: center;
    }
}
.section-title {
    color: #060607;
    font-family: "Alegreya Sans";
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 10px;
}
.section-title_wide {
    max-width: 688px;
}
@media (max-width: 900px) {
    .section-title_wide {
        max-width: 100%;
    }
}
.section-title_bright {
    color: #dc772f;
}
.section-subtitle {
    color: #060607;
    font-family: "Alegreya Sans";
    font-size: 22px;
    line-height: 1.37;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 10px;
}

@media (max-width: 400px) {
    .main-text {
        font-size: 16px;
    }
}
.main-text_mb:not(:last-child) {
    margin-bottom: 25px;
}
.main-text_wide {
    width: 380px;
}
@media (max-width: 900px) {
    .main-text_wide {
        width: 444px;
    }
}
@media (max-width: 400px) {
    .main-text_wide {
        width: 100%;
    }
}
.main-text_dark {
    color: #060607;
}

.contacts-section {
    display: flex;
}
.contacts-section__icon {
    width: 26px;
    height: 26px;
    margin-right: 20px;
}
.contacts-section__text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1;
}
.bold {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}

.phone {
    text-decoration: underline;
}
.phone:hover {
    text-decoration: none;
    opacity: 0.75;
}

.button {
    padding: 10px 20px;
    border-radius: 100px;
    border: none;
    font-size: 14px;
    color: #f5f5f5;
    background-color: #dc772f;
}
.button:hover {
    background-color: #e3945b;
}

.subsection {
    padding: 15px;
}
.subsection-title__name {
    font-size: 22px;
    margin-bottom: 5px;
}
.subsection__m15 {
    margin: 15px;
}

.title__divider {
    width: 100%;
    border: 1px solid;
    margin-bottom: 10px;
}
.title__divider.accent {
    border-color: #dc772f;
}

/* Files names styles */
.file_input {
    flex-direction: column;
}
.file__list {
    margin-bottom: 10px;
}
.file__block {
    display: flex;
    margin-bottom: 5px;
}
.file__block svg {
    margin-right: 5px;
}
.file__block .delete {
    width: 15px;
    height: 15px;
    opacity: 0;
    margin-left: 6px;
    cursor: pointer;
    display: flex;
    white-space: nowrap;
    align-items: flex-end;
}
.file__block:hover.file__block .delete {
    opacity: 0.8;
}
.file__name {
    overflow: hidden;
    white-space: nowrap;
    word-wrap: break-word;
    text-overflow: ellipsis;
}
@media only screen and (hover: none) {
    .file__block .delete {
        opacity: 0.8;
    }
}
.submit:hover {
    background-color: #434344;
}

.data-input__label:hover {
    opacity: 0.5;
}

.contacts__info__content {
    z-index: 1;
}

.ymap {
    width: 100%;
    height: 551px;
}