.main-hero {
    display: flex;
    position: relative;
    height: 100vh;
    padding-top: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
} 

.main-hero .main-hero-image {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    width: 40%;
    height: auto;
    max-width: 100%;
}

.main-hero .container .text {
    display: block;
    width: 60%;
    z-index: 50;
}

.main-hero .container .text .subtitile-hero {
    display: block;
    padding-bottom: 16px;
    color: var(--text-primary-color);
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-hero .container .text h1 {
    display: block;
    padding: 0;
    margin: 0;
    color: var(--text-primary-color);
    font-family: Gilroy, sans-serif;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.main-hero .container .text p {
    display: block;
    color: var(--text-primary-color);
    font-family: Rubik, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.3px;
    padding: 0;
    margin: 30px 0 0 0;
}

.main-hero .container .text .btns-container {
    display: block;
    text-align: left;
    padding-top: 30px;
    margin: 0 -10px;
    font-size: 0;
}

.main-hero .container .text .btns-container a {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px;
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width: 1120px) {
    .main-hero {
        display: block;
        position: relative;
        height: auto;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .main-hero .main-hero-image {
        display: none;
    }

    .main-hero .container .text {
        width: auto;
    }
    
    .main-hero .container .text .subtitile-hero {
        padding-bottom: 8px;
        font-size: 10px;
        text-align: center;
    }
    
    .main-hero .container .text h1 {
        font-size: 32px;
        text-align: center;
    }
    
    .main-hero .container .text p {
        text-align: center;
        font-size: 16px;
        margin: 24px 0 0 0;
    }
    
    .main-hero .container .text .btns-container {
        display: block;
        text-align: center;
        padding-top: 24px;
        margin: 0 -10px;
    }
    
    .main-hero .container .text .btns-container a {
        margin: 0 10px;
    }
}

@media screen and (max-width: 768px) {
    .main-hero {
        display: block;
        position: relative;
        height: auto;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .main-hero .main-hero-image {
        display: none;
    }

    .main-hero .container .text {
        width: auto;
    }
    
    .main-hero .container .text .subtitile-hero {
        padding-bottom: 8px;
        font-size: 10px;
        text-align: left;
    }
    
    .main-hero .container .text h1 {
        font-size: 32px;
        text-align: left;
    }
    
    .main-hero .container .text p {
        text-align: left;
        font-size: 16px;
        margin: 24px 0 0 0;
    }
    
    .main-hero .container .text .btns-container {
        display: block;
        text-align: left;
        padding-top: 24px;
        margin: 0 -5px;
    }

    .main-hero .container .text .btns-container a {
        padding: 0 5px;
        margin: 0;
        width: 50%;
    }
    
    .main-hero .container .text .btns-container a img {
       width: 100%;
    }
}
