.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 500px;
    background-image: url('../images/hero-background.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #5044EC;
    overflow: hidden;
}
.branding-store-image {
    position: absolute;
    bottom: 0;
    right: 10%;
    height: 400px;
    width: 400px;
    background-image: url('../images/hero-logo.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
}
.hero-content {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 9%;
}
.hero-content h1 {
    font-family: "Albert Sans", sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: 72px;
    letter-spacing: 2px;
    max-width: 630px;
    margin-bottom: 20px;
    margin-top: 30px;
}
.hero-content-text p {
    color: #fff;
    font-family: "Albert Sans", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    max-width: 630px;
}
.small-intro {
    font-family: "Albert Sans", sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.small-intro::after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: 0;
    background-color: #fff;
}
.hero-button-primary {
    color: #5044EB;
    padding: 18px 36px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #fff;
    background-color: #fff;
    border-radius: 12px;
    font-family: "Albert Sans", sans-serif;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
    transition: 0.9s;
}
.hero-button-secondary {
    color: #fff;
    padding: 18px 36px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #fff;
    margin-left: 20px;
    border-radius: 12px;
    font-family: "Albert Sans", sans-serif;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;    
    transition: 0.9s;
}
.header-contact a {
    color: #fff!important;
    padding: 18px 36px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #fff;
    margin-left: 20px;
    border-radius: 12px;
    font-family: "Albert Sans", sans-serif;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
    background-color: #5044EB;
    transition: 0.9s;
}
.hero-button-primary:hover,
.hero-button-secondary:hover {
    background-color: #3a30c7;
    color: #fff;
}
@media only screen and (min-width: 2800px) { 
    .branding-store-image { 
        left: 63%;
        transform: translateY(-50%);
    }
}

@media only screen and (max-width: 1665px) { 
    .hero-content h1 { 
        font-size: 62px;
        line-height: 65px;
    }
    .branding-store-image {
        right: 5%;
    }
}
@media only screen and (max-width: 1320px) { 

    .hero-content-text p {
        max-width: 490px;
    }
    .branding-store-image {
        right: 3%;
    }
}
@media only screen and (max-width: 1130px) { 
    .hero-content h1 { 
        font-size: 55px;
        line-height: 60px;
    }
}

@media only screen and (max-width: 1000px) { 
    .hero-section {
        padding-top: 200px;
        padding-bottom: 160px;
        background-image: url('../images/hero-background-mobile.webp');
        height: 200px;
    }
    .home-hero-section { 
        height: auto;
    }
    .branding-store-image {
       display: none;
    }
    .hero-content-text p {
        max-width: 100%;
        font-weight: 300;
    }
}

@media only screen and (max-width: 620px) { 
    .hero-content h1 {
        font-size: 45px;
        line-height: 55px;
    }
}
@media only screen and (max-width: 475px) { 
    .hero-section {
        padding-top: 200px;
        padding-bottom: 100px;
    }
    .hero-content h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

