.mobilus__hello-section {
    width: 100%;
    height: 100vh;
    min-height: 440px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hello-section__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 121px 37px 0 37px;
    padding: 20px 0;
    gap: 15px;
    background-color: var(--color-secondary-300);
    color: var(--color-primary-600);
}

.hello-section__container svg {
    width: 86px;
    height: auto;
}

.hello-section__container path {
    fill: var(--color-primary-600);
}

.hello-section__container h1 {
    margin: 0 29px;
    font: normal normal 600 28px/33px font-primary;
}

.hello-section__container p {
    margin: 0 29px;
    font: 16px/21px font-primary;
}

.hello-section__background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background-image: url('../../assets/images/mobilus-background-mobile.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    z-index: -1;
}

@media screen and (min-width: 576px) {
    .mobilus__hello-section {
        min-height: 520px;
    }

    .hello-section__container {
        margin: 153px 0 0 0;
        gap: 24px;
        width: 507px;
    }
    
    .hello-section__container svg {
        width: 108px;
    }
    
    .hello-section__container h1 {
        font: normal normal 600 40px/46px font-primary;
    }
    
    .hello-section__container p {
        margin: 0;
    }
}

@media screen and (min-width: 768px) {
    .mobilus__hello-section {
        min-height: 700px;
    }

    .hello-section__container {
        margin-top: 212px;
        gap: 28px;
        width: 510px;
    }
    
    .hello-section__container svg {
        width: 135px;
    }
    
    .hello-section__container h1 {
        margin: 0 42px;
        font: normal normal 600 47px/55px font-primary;
    }
    
    .hello-section__container p {
        font: 18px/27px font-primary;
    }
}

@media screen and (min-width: 912px) {
    .mobilus__hello-section {
        min-height: 630px;
        align-items: center;
    }

    .hello-section__container {
        margin: 0;
        width: 620px;
        gap: 20px;
    }

    .hello-section__container svg {
        width: 108px;
    }
    
    .hello-section__container h1 {
        margin: 0 33px;
        font: normal normal 600 40px/46px font-primary;
    }
    
    .hello-section__container p {
        font: 16px/21px font-primary;
    }
    
    .hello-section__background {
        background-image: url('../../assets/images/mobilus-background.webp');
    }
}

@media screen and (min-width: 1200px) {
    .hello-section__container {
        width: 782px;
        gap: 25px;
    }

    .hello-section__container svg {
        width: 138px;
    }
    
    .hello-section__container h1 {
        margin: 0 36px;
        font: normal normal 600 47px/55px font-primary;
    }
    
    .hello-section__container p {
        font: 18px/27px font-primary;
    }
}

@media screen and (min-width: 1400px) {
    .mobilus__hello-section {
        min-height: 800px;
    }

    .hello-section__container {
        width: 1088px;
        gap: 30px;
        padding: 30px 0;
    }

    .hello-section__container svg {
        width: 150px;
    }
    
    .hello-section__container h1 {
        margin: 0 60px;
        font: normal normal 600 60px/70px font-primary;
    }
    
    .hello-section__container p {
        font: 21px/40px font-primary;
    }
}