section.home-hero{
    background-color: var(--white);
    margin: 15px 15px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

section.home-hero--default{
    padding: 160px calc(8% - 15px) 120px;
}

section.home-hero--compact{
    padding: 90px calc(8% - 15px) 30px;
}

.home-hero--corner-rounded{
    border-radius: 15px;
}

.home-hero--corner-square{
    border-radius: 15px 15px 0 0;
}

section.home-hero .text{
    max-width: 680px;
}

section.home-hero .text img{
	height: 20px;
	width: auto;
	object-fit: contain;
}

section.home-hero .text h4 {
    font-weight: 300;
    margin: 6px 0 8px 0;
	display: flex;
    flex-direction: row;
	justify-content: space-between;
    align-items: center;
	flex-wrap: wrap;
    gap: 10px;
}

section.home-hero img{
    object-fit: contain;
    width: calc(100% - 730px);
}

section.home-hero .buttons-wrapper{
    margin-top: 20px;
    display: flex;
	flex-wrap: wrap;
    gap: 15px;
}

@media screen and (max-width:1200px){
    section.home-hero {
    flex-direction: column;
    gap: 20px;
}
section.home-hero img {
    width: 100%;
    max-width: 680px;
}
section.home-hero .text{
    max-width: 100%
}
}

@media screen and (max-width:768px){
    section.home-hero{
    padding: 100px 5% 20px;
    }
}