html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
}
* {
    box-sizing: border-box;
}

input, textarea {
    outline: none !important;
}

@font-face {
    font-family: "Reg";
    src: url("../fonts/Regular/HelveticaNeueCyr-Roman.eot");
    src: url("../fonts/Regular/HelveticaNeueCyr-Roman.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Regular/HelveticaNeueCyr-Roman.woff") format("woff"),
    url("../fonts/Regular/HelveticaNeueCyr-Roman.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Light";
    src: url("../fonts/Light/HelveticaNeueCyr-Light.eot");
    src: url("../fonts/Light/HelveticaNeueCyr-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Light/HelveticaNeueCyr-Light.woff") format("woff"),
    url("../fonts/Light/HelveticaNeueCyr-Light.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Medium";
    src: url("../fonts/Medium/HelveticaNeueCyr-Medium.eot");
    src: url("../fonts/Medium/HelveticaNeueCyr-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Medium/HelveticaNeueCyr-Medium.woff") format("woff"),
    url("../fonts/Medium/HelveticaNeueCyr-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Bold";
    src: url("../fonts/Bold/HelveticaNeueCyr-Bold.eot");
    src: url("../fonts/Bold/HelveticaNeueCyr-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Bold/HelveticaNeueCyr-Bold.woff") format("woff"),
    url("../fonts/Bold/HelveticaNeueCyr-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

html {
    overflow-x: hidden;
}
html, body {
    width: 100%;
    height: 100%;
    font-family: Montserrat, serif;
}

.flex {
    display: flex;
}

img {
    max-width: 100%;
}

:root {
    --color-bordo: #8d3235;
    --color-bezh: #f9e6c1;
    --color-white: #ffffff;
}

.wrap {
    max-width: 90%;
    width: 1270px;
    margin: 0 auto;
}


.header {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1080;
}
.header .flex {
    align-items: center;
    height: 100px;
}
.header .logo img {
    height: 90px;
    margin-top: 50px;
}
.header .brand-text {
    font-family: Montserrat, serif;
    font-weight: 600;
    text-transform: uppercase;
    width: 150px;
    margin-left: 20px;
    line-height: 1.1;
    color: #8e2e32;
    font-style: italic;
    display: none;
}

.top__before {
    height: 150px;
}

.menu {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.menu__item a {
    color: var(--color-bordo);
    padding: 0 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

#home {
    width: 100%;
    height: 80vh;
    min-height: 750px;
    background: url(../images/bg/main.jpeg) no-repeat 100% 50%;
    background-size: cover;
    padding: 80px 0;
    box-sizing: border-box;
    position: relative;
}
#home:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(255 255 255 / 34%);
    z-index: 1;
}
#home .wrap {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 2;
    position: relative;
}
#home .main-text {
    width: 650px;
    margin-bottom: 50px;
}
#home .main-text__slogan {
    font-size: 82px;
    font-family: Montserrat, serif;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-bordo);
}
#home .main-text__region {
    margin-top: 10px;
    font-size: 21px;
    font-family: Montserrat, serif;
    font-weight: 600;
}
#home .main-text__region .ua {
    display: inline-block;
    padding: 5px 8px;
    background: #ffe305;
    border-radius: 5px;
    color: blue;
}
#home .main-text__btn {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 70px;
    background: var(--color-bordo);
    display: inline-flex;
    line-height: 50px;
    padding: 5px 40px;
    border-radius: 15px;
    color: #e0e3e3;
    font-family: Montserrat, serif;
    font-weight: 600;
    cursor: pointer;
}

#thank-you {
    width: 100%;
    height: 70vh;
    padding: 80px 0;
    min-height: 550px;
}
#thank-you .wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    z-index: 2;
    position: relative;
}
#thank-you .main-text {
    width: 750px;
    text-align: center;
}
#thank-you .main-text__slogan {
    font-size: 52px;
    font-family: Montserrat, serif;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-bordo);
}
#thank-you .main-text__region {
    margin-top: 10px;
    font-size: 21px;
    font-family: Montserrat, serif;
    font-weight: 600;
}
#thank-you .main-text__region .ua {
    display: inline-block;
    padding: 5px 8px;
    background: #ffe305;
    border-radius: 5px;
    color: blue;
}
#thank-you .main-text__btn {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 70px;
    background: var(--color-bordo);
    display: inline-flex;
    line-height: 50px;
    padding: 5px 40px 0;
    border-radius: 15px;
    color: #e0e3e3;
    font-family: Montserrat, serif;
    font-weight: 600;
    cursor: pointer;
}

.section {
    padding: 80px 0;
}
.section .flex {
    align-items: center;
    justify-content: space-between;
}
.section .section__text {
    font-size: 24px;
    line-height: 1.4;
    max-width: 50%;
}
.section .section__text span {
    font-size: 36px;
    text-transform: uppercase;
    display: block;
    font-family: Montserrat, serif;
    letter-spacing: 1.5px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
}
.section .section__image {
    width: 35%;
}
.grayscale {
    filter: grayscale(100%);
}

.dictionary {
    position: relative;
    overflow: hidden;
}
.dictionary .dictionary__title {
    padding: 30px 10px 30px 0;
    color: #000000;
    font-family: Montserrat, serif;
    font-weight: 900;
    font-size: 28px;
}
.dictionary .dictionary__description {
    flex: 1;
    padding: 30px;
    position: relative;
}
.dictionary .dictionary__description:after {
    content: '';
    display: none;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--color-bordo);
}
.dictionary .dictionary__description__main {
    font-size: 24px;
    margin-bottom: 20px;
}
.dictionary .dictionary__description__additional {
    font-size: 16px;
    font-style: italic;
    text-align: right;
}

.slider {
    padding: 80px 0;
}
.slider .slider__item img {
    height: 300px;
    padding: 15px;
}

.section-slogan {
    background: #646c71;
    font-size: 36px;
    font-family: Montserrat, serif;
    font-weight: 900;
    text-align: center;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.our-clients {
    padding: 80px 0;
}
.our-clients .our-clients__title {
    font-family: Montserrat, serif;
    font-weight: 900;
    font-size: 32px;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.our-clients__slider {
    display: flex;
    flex-wrap: wrap;
}
.our-clients__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 20%;
}
.our-clients__item img {
    max-height: 150px;
    transition-duration: .5s;
    filter: grayscale(100%);
}
.our-clients__item:hover img {
    filter: grayscale(0%);
}

.big-beg {

}
.big-beg__btn {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 70px;
    background: var(--color-bordo);
    display: inline-flex;
    line-height: 50px;
    padding: 5px 40px 0;
    border-radius: 15px;
    font-family: Montserrat, serif;
    font-weight: 600;
    color: #e0e3e3;
    cursor: pointer;
}
.section__collage {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 80px 0;
}
.contact-info .contact-info__logo img {
    width: 300px;
}
.contact-info .contact-info__phone {
    font-size: 32px;
    letter-spacing: 3px;
    margin: 10px 0 10px 15px;
    color: #000;
    font-family: Montserrat, serif;
    font-weight: 600;
}

#contact {
    background: #faf5f2;
    padding: 80px 0;
}
#contactForm {
    width: 600px;
    margin: 0 auto;
}
.contact__title {
    font-size: 35px;
    text-align: center;
    font-family: Montserrat, serif;
    font-weight: 800;
    color: #333;
    max-width: 600px;
    margin: 0 auto 40px;
}

.language-block {
    display: flex;
    padding-left: 0;
    padding-bottom: 3px;
    margin-left: 40px;
}
.language-block li {
    list-style: none;
    margin: 0 3px;
    color: #000;
}
.language-block li a {
    text-decoration: none;
    color: #000;
}
.language-block li a.active {
    text-decoration: none;
    font-weight: 600;
}

.form {
    position: relative;
}
.form__item {
    position: relative;
    margin-bottom: 30px;
    color: #333;
}
.form__item label {
    font-family: Montserrat, serif;
    font-size: 17px;
    margin-bottom: 10px;
    display: block;

}
.form__item input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-family: Montserrat, serif;
    border: 0 !important;
    box-shadow: 0 0 2px #c5bcb6;
}
.form__item textarea {
    width: 100%;
    height: 100px;
    line-height: 20px;
    padding: 10px 20px;
    font-family: Montserrat, serif;
    border: 0 !important;
    resize: none;
    box-shadow: 0 0 2px #c5bcb6;
}
.form .error {
    color: #ff0000;
    letter-spacing: .5px;
    margin-top: 5px;
}
.form .btn {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--color-bordo);
    display: block;
    line-height: 50px;
    padding: 5px 40px 0;
    border-radius: 15px;
    font-family: Montserrat, serif;
    font-weight: 600;
    color: #e0e3e3;
    cursor: pointer;
    width: 250px;
    margin: 0 auto;
    text-align: center;
    -webkit-appearance: none !important;
    border: 0 !important;
    outline: none !important;
}

.footer {
    background: var(--color-bordo);
    color: #ffffff;
    padding: 15px 0;
}
.footer .wrap {
    align-items: center;
}

.social {
    display: flex;
    align-items: flex-start;
}
.social__item {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #000000;
    line-height: 60px;
    font-size: 0;
}
.social__item.inst {
    background: #ffffff url(../images/instagram.png) no-repeat center;
    background-size: 30px;
}
.social__item.fb {
    background: #ffffff url(../images/fb.png) no-repeat center;
    background-size: 24px;
}
.social__item.yt {
    background: #ffffff url(../images/yt.png) no-repeat center;
    background-size: 32px;
}

.copywrite {
    font-size: 14px;
}
.copywrite p:not(:last-child) {
    margin-bottom: 10px;
}
.section.history {
    min-height: calc(100vh - 672px);
}

@media screen and (max-width: 1100px){
    #home {
        background-position: 0 50%;
        height: 70vh;
    }
    #home .main-text {
        margin-bottom: 120px;
    }
    #home .main-text__slogan {
        font-size: 68px;
    }
    #home .main-text__btn {
        margin-top: 40px;
    }

    #thank-you .main-text__slogan {
        font-size: 68px;
    }
    #thank-you .main-text__btn {
        margin-top: 40px;
    }
    .section .section__text span {
        font-size: 28px;
    }

    .section__collage {
        width: 50%;
    }
    .big-beg__btn {
        margin-top: 30px;
    }
    .big-beg .section__text {
        padding-right: 20px;
    }
}
@media screen and (max-width: 760px){
    .menu {
        flex-wrap: wrap;
        justify-content: flex-end;

    }
    .language-block {
        margin-right: 10px;
        margin-top: 10px;
    }
    .logo {
        min-width: 120px;
    }
    .header .logo img {
        height: 70px;
        margin-top: 50px;
    }
    #home {
        height: 90vh;
    }
    #home .main-text__slogan {
        font-size: 38px;
    }
    #home .main-text__region .ua {
        margin-bottom: 6px;
    }
    #thank-you .main-text__slogan {
        font-size: 38px;
    }
    #thank-you .main-text__region .ua {
        margin-bottom: 6px;
    }
    .section .flex {
        flex-wrap: wrap;
    }
    .section .section__text {
        width: 100%;
        max-width: 100%;
        font-size: 18px;
    }
    .section .section__image {
        width: 100%;
    }
    .section .section__text span {
        font-size: 26px;
    }
    .dictionary .flex {
        flex-wrap: wrap;
    }
    .slider .slider__item img {
        height: 200px;
        padding: 5px;
    }
    .our-clients__item {
        width: calc(100%/3);
    }
    .our-clients {
        padding: 80px 0 0;
    }
    .our-clients .our-clients__title {
        font-size: 28px;
    }
    .section__collage {
        width: 100%;
        margin-top: 30px;
    }
    #contactForm {
        max-width: 100%;
    }
    .contact-info .contact-info__logo img {
        width: 250px;
    }
    .contact-info__street {
        font-size: 18px;
        text-align: center;
    }
    .footer .wrap {
        flex-wrap: wrap;
    }
    .social {
        justify-content: center;
        width: 100%;
        margin-bottom: 20px;
    }
    .social__item:last-child {
        margin-right: 0;
    }
    .big-beg .section__text {
        padding-right: 0;
    }
}