.header {
    display: flex;
    width: 100%;
    height: 665px;
    padding-left: 5%;
    background-color: #F4F6F9;
}

.intro {
    display: flex;
}

.intro_inner {
    width: 546px;
    display: flex;
    flex-direction: column;
    font-family: 'Lato', sans-serif;
    z-index: 3;
}

.intro_logo {
    margin-top: 61px;
    margin-bottom: 133px;
}

.intro_title {
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    color: #333333;
}

.intro_text {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #4F4F4F;
    margin: 30px 0 50px;
}

.buttons {
    width: 348px;
    display: flex;
    justify-content: space-between;
}

.intro_img {
    position: absolute;
    margin-left: 39%;
}

/****** header media ******/

@media (max-width: 720px) {
.header {
    height: 525px;
    background-color: #F4F6F9;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
}

.intro_img {
    display: none;
}

.intro_inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5%;
}

.intro_logo {
    margin: 32px 0 86px;
}

.intro_text {
    margin: 33px 0 50px;
}
}

/****** header media mobile ******/

@media (max-width: 520px) {
.intro_inner {
    width: 340px;
    display: flex;
    flex-direction: column;
    font-family: 'Lato', sans-serif;
    z-index: 3;
}

.intro_title {
    font-size: 30px;
    line-height: 40px;
    width: 320px;
}

br {
    display: none;
}

.intro_text {
    font-size: 16px;
    line-height: 23px;
}

.buttons {
    width: 320px;
}
}