@import '_normalize.css';
@import '_fonts.css';

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: currentColor;
}
body {
    font-family: 'Samsung Sharp Sans';
    font-weight: 500;
    font-size: 14px;
    line-height: 2;
    background: #EBF0FF;
    background: linear-gradient(180deg, #EBF0FF 0%, rgba(235, 240, 255, 0) 100%, rgba(235, 240, 255, 0) 100%);
    color: #030235;
}
h2 {
    font-family: 'Graphik';
    font-weight: 600;
    font-size: 56px;
}
@media screen and (max-width: 576px) {
    h2 {
        font-size: 36px;
    }
    .section_hero h2 {
        font-size: 42px;
        line-height: 130%;
        letter-spacing: 1%;
    }
}
.container {
    width: 95%;
    max-width: 1200px;
    min-width: 340px;
    margin: 0 auto;    
}
@media screen and (max-width: 576px) {
    .container {
        width: 92%;
    }
}
.button {
    width: 250;
    height: 50;
    border-radius: 12px;
    padding: 13px 56px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.42;
    letter-spacing: 1.01;
    color: #FFFFFF;
    background-color: #4C75F2;
}
.button:hover {
    color: #ED7801;
    background-color: #FFFFFF;
    outline: 1px solid #ED7801;
}
.accent {
    color: #ED7801;
}
.header {}
.header__logo {
    width: 300px;
    margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
    .header__logo {
        width: 250px;
    }
}
.main {}
.section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px;
    padding: 30px;
    margin-top: 100px;
    margin-bottom: 50px;
}
.section_hero {
    flex-direction: column;
    background: url(../img/arrow.png) left bottom/99% no-repeat;
    text-align: center;
    padding-top: 0;
    margin-bottom: 0;
}
.section_blue {
    background: #030235;
    color: #FFFFFF;
}
.section_white {
    flex-direction: row-reverse;
    background: #FFFFFF;
    box-shadow: 0px 4px 29px 0px #4C75F21A;
}
@media screen and (max-width: 1400px) {
    .section_hero {
        background-position: left 80%;
    }
}
@media screen and (max-width: 1200px) {
    .section_hero {
        background-position: left 60%;

        background-position: 85% bottom;
        background-size: auto 85%;
    }
}
@media screen and (max-width: 992px) {
    .section_hero {
        background-position: 75% bottom;
        background-size: auto 80%;
    }
}
@media screen and (max-width: 768px) {
    .section {
        flex-direction: column;
    }
    .section_hero {
        background-position: 65% bottom;
        background-size: auto 55%;
    }
}
@media screen and (max-width: 576px) {
    .section {
        padding: 32px 20px;
    }
    .section_hero {
        padding-top: 0;
        padding-bottom: 0;
    }
}
.section__img {
    width: 41%;
}
.section_hero .section__img {
    display: block;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
     .section__img {
        width: 70%;
    }
}
@media screen and (max-width: 576px) {
    .section__img {
        width: 100%;
    }
}
.section__text {
    width: 50%;
}
.section_hero .section__text {
    margin-top: 70px;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .section__text {
        width: 100%;
        margin-top: 60px;
    }
}
.text__title {
    line-height: 1.18;
}
.text__paragraph {
    margin: 20px 0 32px 0;
}
.section_hero .text__paragraph {   
    font-size: 24px;
    line-height: 184%;
    letter-spacing: 1%;
    color: #525266;
}
@media screen and (max-width: 576px) {
    .section_hero .text__paragraph {   
        font-size: 16px;
    }
}
.text__button {
    display: block;
    width: fit-content;
}
.section_hero .text__button {
    margin: 0 auto;
}
.footer {
    background: #EBF0FF;
    padding-top: 50px;
    padding-bottom: 50px;
}
.footer__content {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #807FA1;
    padding-top: 30px;
}
.content__icons {
    display: flex;
    gap: 32px;
    align-items: center;

}
.content__icon {}
.content__icon:nth-child(1) {
    height: 13px;
}
.content__icon:nth-child(2) {
    height: 28px;
}
.content__icon:nth-child(3) {
    height: 36px;
}
.content__icon:nth-child(4) {
    height: 32px;
}
.content__text {
    width: 50%;
    margin-left: 10px;
    font-size: 12px;
    line-height: 1.65;
    letter-spacing: 1.01;
    color: #807FA1;
}
.text__adaptive {}
.text__main {}
@media screen and (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        align-items: center;
    }
    .content__text {
        width: 100%;
        margin-top: 35px;
    }
}
@media screen and (max-width: 576px) {
    .content__icon:nth-child(1) {
        height: 11px;
    }
    .content__icon:nth-child(2) {
        height: 23px;
    }
    .content__icon:nth-child(3) {
        height: 30px;
    }
    .content__icon:nth-child(4) {
        height: 27px;
    }
    .text__adaptive {
        display: none;
    }
}