* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    background-color: #fff;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    background: no-repeat right top url("../assets/images/gradient-mobile.jpg");
    background-size: 360px 495px;

    @media screen and (min-width: 768px) {
        background-image: url("../assets/images/gradient-desktop.jpg");
        background-size: 861px 657px;
    }
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: inherit;
}

.header {
    width: max-content;
    padding: 48px 0 80px;
    margin: 0 auto;
}

.header__image {
    width: 154px;
    height: 57px;
}

.main {
    @media screen and (min-width: 1024px) {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
    }
}

.main__wrapper {
    padding: 0 16px;

    @media screen and (min-width: 768px) {
        padding: 0 48px;
        margin: 0 auto;
    }

    @media screen and (min-width: 1024px) {
        max-width: 791px;
        padding: 0;
    }
}

.main__heading {
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.5px;
    text-align: center;
}

.section--first {
    padding-bottom: 48px;
    border-bottom: 4px solid black;
}

.section--second {
    padding-top: 48px;

    @media screen and (min-width: 768px) {
        display: flex;
        justify-content: space-between;
        column-gap: 64px;
    }
}

.section__text {
    text-align: center;
}

.section__text--upper {
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.section__text--big {
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: -0.3px;
    margin-bottom: 24px;
}

.section__wrapper {

    @media screen and (min-width: 768px) {
        flex-basis: 304px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

}

.section__wrapper--first {
    margin-bottom: 40px;

    @media screen and (min-width: 768px) {
        margin-bottom: 0;
    }
}


.cta {
    display: flex;
    align-items: center;
    width: max-content;
    height: 48px;
    border: 4px solid black;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: black;
    margin: 0 auto;

    @media screen and (min-width: 768px) {
        margin-top: auto;
    }
}

.cta__icon {
    margin: 0 4px;
}

.cta__text {
    margin-right: 12px;
}