body {
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 1.35;

    background-color: #213238;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: 700;
}

p, ul, ol, a {
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    width: 100%;

    background-color: #DADADA;
    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav__link {
    display: inline-block;

    text-decoration: none;
    margin-left: 28px;
    font-weight: 500;
    color: #213238;

    transition: color 0.2s linear, background-color 0.2s linear, border-radius 0.2s linear;
}

.nav__link:hover {
    background-color: #DF5759;
    border-radius: 3px;
    color: #fff;
}

.contact {
    display: inline-block;
    padding: 5px;
    margin-left: 30px;

    max-width: 48px;
    height: 48px;

    transition: background-color 0.2s linear, border-radius 0.2s linear, filter 0.2s linear;
}

.contact:hover {
    background-color: #20A8A6;
    border-radius: 3px;
    filter: invert(1)
}

/* Nav toggle */

.nav-toggle {
    display: none;

    width: 30px;
    padding: 10px 0;

    font-size: 0;
    color: transparent;

    border: 0;
    background: none;

    cursor: pointer;

    position: absolute;
    top: 35px;
    right: 35px;
    z-index: 1;
}

.nav-toggle:focus {
    outline: none;
}

.nav-toggle__item {
    display: block;

    height: 3px;
    width: 100%;

    background-color: #213238;
    border-radius: 2px;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.nav-toggle.active .nav-toggle__item {
     background: none;
}

.nav-toggle__item::before,
.nav-toggle__item::after {
    content: "";

    height: 3px;
    width: 100%;

    background-color: #213238;
    border-radius: 2px;

    position: absolute;
    left: 0;
    z-index: 1;

    transition: transform 0.2s linear;
}

.nav-toggle__item::before {
    top: -8px;
}

.nav-toggle__item::after {
    bottom: -8px;
}

.nav-toggle.active .nav-toggle__item::before {
    transform-origin: left top;
    transform: rotate(45deg) translateX(-3px);
}

.nav-toggle.active .nav-toggle__item::after {
    transform-origin: left bottom;
    transform: rotate(-45deg) translateX(-3px);
}

/* Intro Section */
.intro {
    width: 100%;
    /* height: 100vh; */

    background: url(../images/intro.png) center no-repeat;
    background-size: cover;
}

.intro__inner {
    padding: 0 15px;
}

.intro__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    position: relative;

    width: 75%;
}

.intro__title {
    margin-top: 130px;
}

.intro__title h1,
.intro__title h2 {
    font-size: 5rem;
    font-weight: 600;
    text-align: left;
}

.intro__subtitle {
    font-size: 40px;
    font-weight: 300;
    text-align: left;

    margin-top: 73px;
}

.intro__adress {
    font-size: 32px;
    font-weight: 200;
    text-align: left;

    margin-top: 195px;
}

.phone {
    font-weight: 500;
    text-decoration: none;
    color: #DADADA;
}

.contacts {
    display: flex;
    justify-content: space-between;

    width: 150px;

    filter: invert(1);
}

.contacts a {
    padding: 15px 20px;
}

.intro__image {
    position: absolute;
    right: -30%;
    bottom: 0px;

    height: 800px;
}

.intro__image img {
    max-height: 100%;
    width: auto;
}

/* Section */
.section__2 {
    background: url(../images/bg__sect__2.png) center no-repeat;
    background-size: cover;
    color: #213238;

    width: 100%;
    /* height: 100vh; */
}

.section__3 {
    display: block;

    background: url(../images/bg__sect__3.png) center no-repeat;
    background-size: cover;

    width: 100%;
    height: 1000px;
}


.section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    padding: 32px 0 80px;
}

.section__title {
    font-size: 56px;
    font-weight: 600;
    text-align: center;

    margin: 0 auto 20px auto;
}

.content {
    display: flex;
    justify-content: space-between;

    width: 100%;
}

.section__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: middle;

    font-size: 22px;
    font-weight: 400;
}

.section__image {
    display: flex;
    width: 40%;
}

.section__image img {
    max-width: 100%;
    height: auto;
}



.faq__block {
    width: 55%;
}

.question {
    display: flex;
    align-items: center;
    margin: 5px 0;

    width: 100%;

    float: left;
}

.question p {
    width: 90%;
}

.question img {
    margin-right: 17px;
    height: 100%;
    width: auto;
}

.answer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;

    width: 70%;

    float: right;
}

.answer p {
    width: 90%;
}

.answer img {
    height: 100%;
    width: auto;
    margin-left: 17px;
}

/* Programm */
.programm {
    display: flex;
    flex-direction: column;

    text-align: center;

    width: 100%;
    height: 100%;

    padding: 32px 0 80px;
}

.blocks {
    position: relative;

    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #213238;

    width: 100%;

    margin-top: 80px;
}

.blocks .title {
    font-size: 32px;
    font-weight: 500;
}

.block__1,
.block__2,
.block__3,
.block__4,
.block__5
{
    position: absolute;

    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 25px;
    width: 30%;

    margin-bottom: 20px;
    padding: 5px;
}

.block__1 {
    top: 0;
    left: 10%;
}

.block__2 {
    left: 65%;
}

.block__3 {
    top: 300px;
}

.block__4 {
    top: 300px;
    left: 70%;
}

.block__5 {
    left: 40%;
    top: 500px;
}

.arrow__1,
.arrow__2,
.arrow__3,
.arrow__4 {
    position: absolute;

    opacity: 0.75;
}

.arrow__1 {
    top: 20px;
    right: 37%;
}

.arrow__2 {
    top: 110px;
    right: 37%;
}

.arrow__3 {
    top: 360px;
    right: 32%;
}

.arrow__4 {
    top: 480px;
    right: 7%;
}

/* Footer */
footer {
    background-color: #DADADA;
    font-weight: 400;
    color: #213238;

    padding: 20px 0;
}

.rights {
    text-align: center;

    margin-top: 40px;
}

@media (max-width: 1440px) {
    .nav__link {
        font-size: 20px;

        margin-left: 8px;
    }

    .intro__title {
        font-size: 72px;
    }

    .intro__subtitle {
        font-size: 32px;
    }

    .intro__adress {
        font-size: 24px;
    }

    .section__inner {
        margin: auto 15px;

        width: 96%;
    }

    .section__1 .content {
        flex-direction: column;
    }

    .content {
        flex-direction: column-reverse;
        width: 100%;
    }

    .section__image {
        align-items: center;

        margin: 0 auto;
    }

    .faq__block {
        width: 100%;
    }

    .question {
        line-height: 1;
    }

    .answer {
        width: 100%;
    }

    .section__3 {
        height: auto;
    }

    .arrow__1,
    .arrow__2,
    .arrow__3,
    .arrow__4 {
        display: none;
    }

    .blocks {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: auto;
        height: auto;
    }

    .block__1,
    .block__2,
    .block__3,
    .block__4,
    .block__5 {
        position: static;
        width: 100%;
    }

    footer {
        font-size: 14px;
    }
}

@media (max-width: 960px) {
    nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;

        width: 40%;

        border-radius: 10px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);

        position: absolute;
        top: 90%;
        right: -5px;
        z-index: 1000;

        background-color: #DADADA;
    }

    nav.active {
        display: block;
    }

    .nav__link {
        width: 100%;
        margin: 0;
        padding: 10px 20px;
    }

    .contact {
        width: 100%;
        margin: 0;
        padding: 10px 20px;

        box-sizing: content-box;
    }

    .nav-toggle {
        display: block;
    }

    .header__contact {
        margin-left: 5px;
        max-height: 36px;
    }

    .intro__content {
        align-items: center;
        width: 100%;
    }

    .intro__title {
        margin-top: 20px;
    }

    .intro__title h1,
    .intro__title h2 {
        font-size: 72px;
        text-align: center;
    }

    .intro__subtitle {
        font-size: 40px;
        font-weight: 500;
        text-align: center;
        color: #213238;

        margin: 0;

        padding: 30px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 20px;
    }

    .intro__adress {
        font-size: 30px;

        margin-top: 30px;
    }

    .intro__image {
        position: static;
        margin: 0 auto;
        max-height: 600px;
    }
}

    @media (max-width: 768px) {
    .header__logo {
        max-height: 36px;
    }

    .header__logo img {
        height: 36px;
    }

    .nav-toggle {
        top: 8px;
        right: 10px;
    }

    .intro__title {
        margin-top: 25px;
    }

    .intro__title h1,
    .intro__title h2 {
        font-size: 48px;
    }

    .intro__subtitle {
        font-size: 28px;
    }

    .intro__adress {
        font-size: 24px;
    }

    .intro__image {
        max-height: 400px;
    }

    .section__inner {
        flex-direction: column;
        padding: 10px 0 40px;
    }

    .programm {
        padding: 10px 0 40px;
    }

    .section__title {
        font-size: 40px;
    }

    .programm .section__title {
        margin: 0 auto;
    }

    .section__text {
        font-size: 14px;
    }

    .blocks {
        position: static;
        margin-top: 40px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .nav {
        width: 90%;
    }
    .intro__title {
        margin-top: 10px;
    }

    .intro__title h1,
    .intro__title h2 {
        font-size: 30px;
    }

    .intro__subtitle {
        font-size: 20px;
        padding: 20px;
    }

    .intro__adress {
        font-size: 19px;
    }

    .section__inner {
        margin: 0;
    }

    .section__title {
        font-size: 27px;

    }

    .img__qstn, .img__answ {
        max-width: 35px;
    }

    .blocks {
        margin: 0;
        font-size: 14px;
    }

    .blocks .title {
        font-size: 22px;
    }

}

@media (max-width: 375px) {
    .intro__image {
    max-height: 350px;
    }
}
