/* For old browsers */
@supports (not(--css: variables))
{
    .supports_error
    {
        display: flex !important;
    }
}

/* For IE */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
{
    .supports_error
    {
        display: flex !important;
    }
}



/*-----------
    Fonts
-----------*/


/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

html
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body
{
    margin: 0;

    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    margin: 0;

    -webkit-appearance: none;
}

input[type=number]
{
    -moz-appearance: textfield;
}

:focus
{
    /* outline: 0; */
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*-------------------
    Global styles
-------------------*/
:root
{
    --bg: #fff;
    --scroll_width: 17px;
    --text_color: #382A29;
    --font_size: 18px;
    --font_size_title: 48px;
    --font_family: 'Manrope', sans-serif;
}


.clear
{
    clear: both;
}

.left
{
    float: left;
}

.right
{
    float: right;
}


html
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}

html.custom_scroll ::-webkit-scrollbar
{
    width: 10px;
    height: 10px;

    background-color: #ccc;
}

html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: #382A29;
}

html.custom_scroll
{
    scrollbar-color: #382A29 #ccc;
    scrollbar-width: thin;
}


body
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
    background: #fff;
}


button
{
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    display: inline-block;

    cursor: pointer;
    vertical-align: top;

    border: none;
    background: none;
}


.wrap
{
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-width: 360px;
    min-height: 100%;

    background: var(--bg);
}


.main
{

}


.cont
{
    width: 100%;
    margin: 0 auto;
    padding: 0 100px;
}



header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
header .company {
    background-image: url("/images/img.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 57px 100px 56px;
    width: 65.625%;
    min-height: 400px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 65.625%;
}
header .company .top  {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
header .company .top .logo {
    width: 161px;
    margin-right: 76px;
}
header .company .top .logo img {
    max-width: 100%;
    height: auto;
}
header .company .top .info {
    flex: 0 0 calc(100% - 237px)
}
header .company .top h1 {
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.4px;
    padding: 0;
    margin: 0 0 31px;
}
header .company .top .description {
    line-height: 28px;
    max-width: 629px;
}
header .company .coming-soon {
    color: #924936;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-top: 104px;
}

.advantages {
    width: 34.375%;
    flex: 0 0 34.375%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.advantages .advantage {
    flex: 0 0 50%;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.advantages .advantage + .advantage:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #382A29;
}
.advantages .advantage .title {
    color: #924936;
    font-size: var(--font_size_title);
    font-weight: 700;
}
.advantages .advantage .title span {
    font-size: var(--font_size);
}
.advantages .advantage .description {
    margin-top: 13px;
}

.services {
    background: #382A29;
    padding: 48px 0;
    margin-bottom: 48px;
}
.services-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.services-list-item {
    border-top: 2px solid #924936;
    padding-top: 24px;
    color: #FFF;
    max-width: 350px;
    /*flex: 0 0 calc(100% / 4 - 90px * 3 / 4);*/
}

.contacts {
    padding-bottom: 20px;
}
.contacts-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.contacts-list-item {
    flex: 0 0 calc(100% / 3 - 20px * 2 / 3);
    border-bottom: 2px solid #924936;
    background: #F1F2ED;
    padding: 36px 42px 21px;
}
.contacts-list-item .name {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.4px;
    min-height: 56px;
    margin-bottom: 27px;
}

.contacts-list-item .contact .wrap-icon {
    margin-bottom: 13px;
}
.contacts-list-item .contact .info {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}
.contacts-list-item .contact .info a {
    text-decoration: none;
    color: var(--text_color);
    transition: color .3s;
}
.contacts-list-item .contact .info a:hover {
    color: #924936;
}
.contacts-list-item .contacts-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.contacts-list-item .contacts-wrap .contact + .contact {
    margin-left: 40px;
}


@media print, (max-width: 1639px) {
    :root
    {
        --font_size_title: 40px;
        --font_size: 16px;
    }

    .cont {
        padding: 0 56px;
    }

    header .company {
        padding: 56px 30px 39px 56px;
        width: 68.36%;
        min-height: 340px;
        flex: 0 0 68.36%;
    }
    .advantages {
        width: 31.64%;
        flex: 0 0 31.64%;
    }
    .advantages .advantage {
        padding: 0 56px;
    }
    header .company .top .logo {
        margin-right: 49px;
    }
    header .company .top h1 {
        margin: 0 0 25px;
    }
    header .company .coming-soon {
         font-size: 30px;
         margin-top: 43px;
    }
    .services {
        padding: 30px 0;
        margin-bottom: 24px;
    }

    .services-list-item {
        max-width: 314px;
    }
    .contacts-list-item {
        padding: 30px 26px 21px;
    }
}

@media print, (max-width: 1279px) {
    :root
    {
        --font_size_title: 32px;
        --font_size: 15px;
    }

    .cont {
        padding: 0 30px;
    }

    header .company {
        min-height: 300px;
        padding: 35px 30px 30px 30px;
    }
    .advantages .advantage {
        padding: 0 30px;
    }
    header .company .top .logo {
        margin-right: 30px;
    }
    header .company .top .logo {
        width: 130px;
    }
    header .company .top h1 {
        letter-spacing: normal;
    }
    header .company .coming-soon {
        font-size: 22px;
        margin-top: 22px;
    }
    .services {
        padding: 50px 0 0;
    }
    .services-list {
        flex-wrap: wrap;
    }
    .services-list-item {
        width: calc(50% - 30px);
        flex: 0 0 calc(50% - 30px);
        margin-bottom: 50px;
        max-width: none;
    }
    .contacts-list-item {
        padding: 25px 20px 20px;
    }
    .contacts-list-item .name {
        font-size: 18px;
        line-height: 26px;
        min-height: 52px;
        margin-bottom: 20px;
    }
    .contacts-list-item .contact .info {
        font-size: 14px;
        line-height: 22px;
    }
}

@media print, (max-width: 1023px) {
    :root {
        --font_size_title: 26px;
        --font_size: 14px;
    }
    header {
        display: block;
    }
    header .company {
        width: 100%;
    }
    .advantages {
        width: 100%;
    }
    .advantages .advantage {
        padding: 35px 30px;
    }
    .contacts .cont {
        padding: 0;
    }
    .contacts-list {
        display: block;
    }
    .contacts-list-item {
        padding: 36px;
    }
    .contacts-list-item + .contacts-list-item {
        margin-top: 20px;
    }

}

@media print, (max-width: 767px) {
    :root {
        --font_size_title: 24px;
        --font_size: 14px;
    }
    .cont {
        padding: 0 20px;
    }

    header .company {
        text-align: center;
        padding: 30px 20px 30px 20px;
    }
    header .company .top {
        display: block;
    }
    header .company .top .logo {
        width: 90px;
        margin: 0 auto 20px;
    }
    header .company .top .description {
        line-height: 22px;
        text-align: left;
    }
    header .company .coming-soon {
        text-align: left;
    }
    .advantages .advantage .title {
        font-size: 36px;
    }
    .advantages .advantage .title span {
        font-size: 18px;
    }
    .services {
        padding: 40px 0;
    }
    .services-list {
        display: block;
    }
    .services-list-item {
        width: 100%;
        margin-bottom: 0;
    }
    .services-list-item + .services-list-item {
        margin-top: 24px;
    }
}
