@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100;9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Inter:wght@100;200;300;500;600;700;800;900&display=swap");

*,
body {
  padding: 0;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-family: "Inter", sans-serif;
}

body {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(285.88deg, #19515e 0%, #091b41 100%);
}

header {
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 0 30px;
}

.main {
    display: flex;
    min-height: calc(100vh - 116px);
    justify-content: space-between;
}

.benefits {
    align-self: flex-end;
}

.title-wrapper {
    align-self: center;
    padding-left: 104px;
}

.title {
    color: white;
    font-size: 88px;
    line-height: 88px;
    font-weight: 400;
}

.sub-title {
    color: white;
    font-size: 18px;
    line-height: 32px;
}

footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 104px;
    align-items: center;
    min-height: 52px;
    margin-top: -4px;
    padding-bottom: 4px;
    background-color: #0F0F0F;
}

footer, a {
    font-size: 14px;
    color: #99A2AD;
    padding-left: 32px;
}

.footer-right:first-child {
    padding-left: 0px;
}

@media screen and (max-width: 1280px) {
    .title-wrapper {
        padding-left: 20px;
    }
}

@media screen and (max-width: 1124px) {
    .main {
        flex-direction: column;
    }

    header {
        padding: 0 15px;
    }

    .title-wrapper {
        margin-top: 24px;
    }

    .benefits {
        margin-top: 40px;
    }
}

@media screen and (max-width: 660px) {
    .title {
        font-size: 48px;
        line-height: 48px;
    }

    .sub-title {
        margin-top: 16px;
        font-size: 16px;
        line-height: 28px;
    }

    .title-wrapper {
        padding: 0 20px;
    }

    footer {
        padding: 16px 24px;
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .footer-right a {
        padding-left: 0px;
    }

    .footer-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 32px;
    }
    

    .footer-left {
        margin-top: 32px;
    }

    .cookie {
        padding-left: 0px;
    }
}

@media screen and (max-width: 330px) {
    
    body {
        width: 330px;
    }
}