@font-face {
    font-family: 'Noto Sans';
    font-display: swap;
    src: url('../fonts/NotoSans-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans';
    font-display: swap;
    src: url('../fonts/NotoSans-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans';
    font-display: swap;
    src: url('../fonts/NotoSans-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans';
    font-display: swap;
    src: url('../fonts/NotoSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans';
    font-display: swap;
    src: url('../fonts/NotoSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans';
    font-display: swap;
    src: url('../fonts/NotoSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans';
    font-display: swap;
    src: url('../fonts/NotoSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans';
    font-display: swap;
    src: url('../fonts/NotoSans-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans';
    font-display: swap;
    src: url('../fonts/NotoSans-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

:root {
    --whiteColor: #ffffff;

    --gray100: #f2f2f5;
    --gray200: #8f90a6;
    --gray300: #555770;
    --gray400: #0c0e13;

    --blue100: #e3ecf4;
    --blue200: #7fb4f0;
    --blue300: #0869d9;
    --blue400: #004391;

    --lightBlue100: #e5f6ff;
    --lightBlue200: #c9ecff;
    --lightBlue300: #52c1ff;
    --lightBlue400: #146c9e;

    --mainFont: 'Noto Sans';
    --fontFamily: var(--mainFont), system-ui, Avenir, Helvetica, Arial, sans-serif;
    --fontColor: var(--gray400);
    --fontSize: 18px;
    --lineHeight: 24px;
    --fontWeightRegular: 400;

    --borderRadius: 24px;
    --borderRadiusBtn: 8px;
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--fontFamily);
    font-size: var(--fontSize);
    font-weight: var(--fontWeightRegular);
    line-height: var(--lineHeight);
    color: var(--fontColor);
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
}

h1,
h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
}

ul {
    list-style-type: none;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--blue400);
    vertical-align: middle;

    &:hover {
        text-decoration: underline;
    }
}

button {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;

    background: transparent;

    /* inherit font & color from ancestor */
    color: inherit;
    font: inherit;

    /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
    line-height: normal;

    /* Corrects font smoothing for webkit */
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;

    /* Remove excess padding and border in Firefox 4+ */

    &::-moz-focus-inner {
        border: 0;
        padding: 0;
    }
}

.btn {
    display: inline-flex;
    padding: 8px 48px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: var(--borderRadiusBtn);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background-color: var(--blue400);
    color: var(--whiteColor);
    border: 1px solid var(--blue400);
    text-decoration: none;
}

.btn:active {
    background-color: var(--gray400);
    color: var(--whiteColor);
    border: 1px solid var(--gray400);
}

@media (max-width: 767px) {
    .btn {
        padding: 8px 24px;
    }
}

@media (max-width: 425px) {
    .btn {
        font-size: 14px;
        line-height: 24px;
    }
}

.btn-white {
    background-color: var(--whiteColor);
    color: var(--blue300);
    border: 1px solid var(--blue300);
}

.btn-lightBlue {
    background-color: var(--lightBlue300);
    color: var(--gray400);
    border: 1px solid var(--lightBlue300);
}

.btn-blue {
    background-color: var(--blue300);
    color: var(--whiteColor);
    border: 1px solid var(--blue300);
}

@media (max-width: 1399px) {
    body {
        font-size: 16px;
        line-height: 24px;
    }

    h1,
    h2 {
        font-size: 28px;
        line-height: 38px;
    }
}

@media (max-width: 991px) {
    body {
        font-size: 14px;
    }

    h1,
    h2 {
        font-size: 24px;
        line-height: 32px;
    }
}

.header__container {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}

.header__menu {
    padding: 15px 0;
}

@media (max-width: 430px) {
    .header__container {
        justify-content: center;
        padding: 16px 0;
    }

    .header__menu {
        display: none;
    }

    .header__logo > svg {
        width: 168px;
        height: 49px;
    }

}

.hero {
    background: var(--blue300);
    padding: 96px 0;
}

.hero__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero__content {
    margin-right: 40px;
    min-width: 514px;
    color: var(--whiteColor);
}

.hero__title {
    margin-bottom: 24px;
}

.hero__text {
    margin-bottom: 48px;
}

@media (max-width: 1399px) {
    .hero {
        padding: 56px 0;
    }

    .hero__image img {
        width: 472px;
        height: 381px;
    }
}

@media (max-width: 1199px) {
    .hero__content {
        min-width: 300px;
    }

    .hero__text {
        max-width: 367px;
    }
}

@media (max-width: 991px) {
    .hero__content {
        margin-right: 0;
        min-width: 350px;
    }

    .hero__text {
        margin-bottom: 32px;
    }

    .hero__image img {
        width: 352px;
        height: 284px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 32px 0;
    }

    .hero__container {
        flex-direction: column;
        align-items: center;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 0;
        margin-bottom: 32px;
        min-width: 300px;
    }

    .hero__title {
        text-align: center;
        max-width: 290px;
    }

    .hero__text {
        text-align: center;
    }

    .hero__image img {
        width: 285px;
        height: 230px;
    }
}

.solution {
    padding: 128px 0;
}

.solution__container {
    display: flex;
    justify-content: space-between;
}

.solution__content {
    margin-right: 40px;
    max-width: 440px;
}

.solution__title {
    margin-bottom: 24px;
}

.solution__text {
    margin-bottom: 40px;
}

.solution__list {
    margin-bottom: 0;
    padding: 32px;
    background-color: var(--gray100);
    border-radius: 24px;
    display: flex;
    flex-wrap: wrap;
}

.solution__item {
    display: flex;
    width: 50%;
}

.solution__item:nth-child(-n + 3) {
    margin-bottom: 24px;
}

.solution__icon {
    margin-right: 24px;
}

.solution__content {
    text-align: left;
}

.solution__list-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 8px;
}

.solution__list-text {
    font-size: 18px;
    line-height: 24px;
}

@media (max-width: 1399px) {
    .solution {
        padding: 72px 0;
    }

    .solution__image > svg {
        width: 472px;
        height: 160px;
    }

    .solution__list-title {
        font-size: 16px;
        line-height: 22px;
    }

    .solution__list-text {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 991px) {
    .solution__content {
        margin-right: 0;
    }

    .solution__list {
        padding: 24px;
    }

    .solution__image {
        margin-top: 32px;
    }

    .solution__image > svg {
        width: 352px;
        height: 119px;
    }

    .solution__icon {
        margin-right: 16px;
    }

    .solution__icon > svg {
        width: 32px;
        height: 32px;
    }

    .solution__list-text {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .solution {
        padding: 32px 0;
    }

    .solution__container {
        flex-direction: column;
        align-items: center;
    }

    .solution__content {
        text-align: center;
    }

    .solution__list {
        padding: 16px;
    }

    .solution__item {
        width: 100%;
    }

    .solution__text {
        margin-bottom: 24px;
    }

    .solution__image {
        margin-top: 0;
        margin-bottom: 24px;
    }

    .solution__image > svg {
        width: 285px;
        height: 97px;
    }
}

@media (max-width: 425px) {
    .solution__text {
        max-width: 285px;
    }
}

.why {
    background-color: var(--blue100);
    padding: 128px 0;
}

.why__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 118px;
}

.why__content {
    margin-right: 40px;
    max-width: 440px;
}

.why__title {
    margin-bottom: 24px;
}

.why__text {
    margin-bottom: 48px;
}

.why__cards {
    display: flex;
}

.why__card {
    position: relative;
    padding: 32px;
    background-color: var(--whiteColor);
    border-radius: 24px;
    width: 50%;
    box-shadow: 3px 7px 14px 0 rgba(0, 67, 145, 0.3);
}

.why__card:not(:last-child) {
    margin-right: 32px;
}

.why__card-image {
    position: absolute;
    top: -58px;
    right: 34px;
}

.why__card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 16px;
}

.why__card-text {
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 1399px) {
    .why {
        padding: 72px 0;
    }

    .why__image img {
        width: 472px;
        height: 316px;
    }

    .why__card {
        padding: 24px;
    }

    .why__card:not(:last-child) {
        margin-right: 16px;
    }

    .why__card-title {
        font-size: 16px;
        line-height: 22px;
    }

    .why__card-text {
        font-size: 14px;
        line-height: 24px;
    }

    .why__card-image {
        width: 70px;
        height: 76px;
        top: -38px;
    }
}

@media (max-width: 991px) {
    .why__image img {
        width: 352px;
        height: 236px;
    }

    .why__text {
        margin-bottom: 32px;
    }

    .why__card:not(:last-child) {
        padding: 16px;
    }

    .why__card-text {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .why {
        padding: 32px 0;
    }

    .why__container {
        flex-direction: column;
        align-items: center;
        margin-bottom: 60px;
    }

    .why__content {
        display: flex;
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 32px;
        align-items: center;
    }

    .why__title {
        text-align: center;
        margin-bottom: 16px;
    }

    .why__text {
        text-align: center;
    }

    .why__cards {
        flex-direction: column;
    }

    .why__card {
        width: 100%;
    }

    .why__card:not(:last-child) {
        margin-right: 0;
        margin-bottom: 52px;
    }

    .why__card-image {
        width: 72px;
        height: 72px;
    }

    .why__image img {
        width: 100%;
    }
}

@media (max-width: 425px) {
    .why__title {
        max-width: 260px;
    }

    .why__text {
        max-width: 270px;
    }

}

.offer {
    background-color: var(--blue400);
    padding-bottom: 128px;
}

.offer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 96px;
}

.offer__content {
    margin-right: 40px;
    max-width: 480px;
    color: var(--whiteColor);
}

.offer__title {
    margin-bottom: 24px;
}

.offer__text {
    margin-bottom: 40px;
}

.offer__cards {
    display: flex;
}

.offer__card {
    position: relative;
    padding: 32px;
    background-color: var(--whiteColor);
    border-radius: 24px;
    width: 50%;
    box-shadow: 3px 7px 14px 0 rgba(0, 67, 145, 0.3);
}

.offer__card:not(:last-child) {
    margin-right: 32px;
}

.offer__card-image {
    position: absolute;
    top: -58px;
    right: 34px;
}

.offer__card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 16px;
}

.offer__card-text {
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 1399px) {
    .offer {
        padding-bottom: 72px;
    }

    .offer__image img {
        width: 475px;
        height: 344px;
    }

    .offer__card {
        padding: 24px;
    }

    .offer__card:not(:last-child) {
        margin-right: 16px;
    }

    .offer__card-title {
        font-size: 16px;
        line-height: 22px;
    }

    .offer__card-text {
        font-size: 14px;
        line-height: 24px;
    }

    .offer__card-image {
        width: 70px;
        height: 76px;
        top: -38px;
    }
}

@media (max-width: 991px) {
    .offer__container {
        padding-top: 72px;
    }

    .offer__image img {
        width: 352px;
        height: 236px;
    }

    .offer__card {
        padding: 16px;
    }

    .offer__card-title {
        max-width: 120px;
        margin-bottom: 8px;
    }

    .offer__card-text {
        font-size: 12px;
    }

    .offer__card-image {
        width: 72px;
        height: 72px;
        top: -36px;
        right: 16px;
    }
}

@media (max-width: 767px) {
    .offer {
        padding: 32px 0;
    }

    .offer__container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .offer__content {
        margin-right: 0;
        margin-bottom: 32px;
    }

    .offer__title {
        text-align: center;
    }

    .offer__text {
        margin-bottom: 16px;
        text-align: center;
    }

    .offer__cards {
        flex-direction: column;
    }

    .offer__card {
        width: 100%;
        margin-bottom: 52px;
        margin-right: 0;
    }

    .offer__card-title {
        max-width: 100%;
    }

    .offer__image img {
        width: 285px;
        height: 207px;

    }
}

@media (max-width: 425px) {
    .offer__text {
        max-width: 285px;
    }
}

.brands {
    padding: 128px 0;
}

.brands__title {
    margin-bottom: 32px;
}

.brands__card-content {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin-bottom: 60px;
}

.brands__card {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 7px 8px 22px 0 rgba(0, 67, 145, 0.3);
}

.brands__card-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
}

.brands__card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 24px;
}

.brands__card-text {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 48px;
}

.brands__card-image {
    position: absolute;
    right: 0;
    bottom: 0;
    box-shadow: -8px 4px 31px 0 #8f90a6b2;
    border-radius: 0 0 24px 0;
    width: 550px;
    height: 516px;
}

@media (max-width: 1399px) {
    .brands {
        padding: 72px 0;
    }

    .brands__card-content {
        margin-bottom: 5px;
    }

    .brands__card-logo {
        width: 80px;
        height: 80px;
    }

    .brands__card-text {
        max-width: 350px;
        margin-bottom: 48px;
    }

    .brands__card-image {
        width: 526px;
        height: 516px;
    }
}

@media (max-width: 1199px) {
    .brands__card-title {
        font-size: 16px;
        line-height: 22px;
    }

    .brands__card-text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 991px) {
    .brands__card {
        padding: 32px;
    }

    .brands__card-content {
        flex-direction: row;
        width: 100%;
    }

    .brands__card-logo {
        margin-bottom: 0;
        margin-right: 32px;
    }

    .brands__card-text {
        font-size: 14px;
        line-height: 24px;
        max-width: 85%;
    }

    .brands__card-image {
        display: none;
    }
}

@media (max-width: 767px) {
    .brands {
        padding: 32px 0;
    }

    .brands__title {
        text-align: center;
    }

    .brands__card-content {
        flex-direction: column;
        align-items: center;
    }

    .brands__card-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brands__card-logo {
        margin-right: 0;
        margin-bottom: 24px;
    }

    .brands__card-text, .brands__card-title {
        text-align: center;
    }
}

.get-in-touch {
    background: var(--blue300);
    color: var(--whiteColor);
    padding: 128px 0;
}

.get-in-touch__wrapper {
    display: flex;
    justify-content: space-between;
}

.get-in-touch__title {
    margin-bottom: 24px;
}

.get-in-touch__content-wrapper {
    margin-bottom: 40px;
}

.get-in-touch__content-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 16px;
}

.get-in-touch__content-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.get-in-touch__email,
.get-in-touch__phone {
    color: var(--whiteColor);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.get-in-touch__image {
    max-height: 435px;
    border-radius: 24px;
}

@media (max-width: 1399px) {
    .get-in-touch {
        padding-top: 72px;
        padding-bottom: 16px;
    }

    .get-in-touch__content-wrapper {
        margin-bottom: 32px;
    }

    .get-in-touch__content-title {
        font-size: 16px;
        line-height: 22px;
    }

    .get-in-touch__content-text,
    .get-in-touch__email,
    .get-in-touch__phone {
        font-size: 16px;
        line-height: 24px;
    }

    .get-in-touch__image {
        width: 609px;
        height: 344px;
    }

}

@media (max-width: 991px) {
    .get-in-touch__content-wrapper {
        margin-bottom: 32px;
    }

    .get-in-touch__content-title {
        margin-bottom: 8px;
    }

    .get-in-touch__content-text,
    .get-in-touch__email,
    .get-in-touch__phone {
        font-size: 14px;
        line-height: 24px;
    }

    .get-in-touch__image {
        width: 425px;
        height: 343px;
    }
}

@media (max-width: 767px) {
    .get-in-touch {
        padding: 32px 0;
    }

    .get-in-touch__wrapper {
        flex-direction: column;
    }

    .get-in-touch__image {
        width: 100%;
        height: 100%;
    }
}


.footer {
    background: var(--blue300);
    color: var(--whiteColor);
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--whiteColor);
    padding: 16px 0 60px 0;
}

.footer__copyright {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.footer__links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__link {
    display: block;
    color: var(--whiteColor);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.footer__link:not(:last-child) {
    margin-right: 24px;
}

@media (max-width: 1024px) {
    .footer__copyright,
    .footer__link {
        font-size: 12px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {
    .footer__wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0 32px 0;
    }

    .footer__copyright {
        margin-bottom: 16px;
    }

    .footer__logo {
        margin-bottom: 16px;
    }

}