#homepage_hero {
    height: calc(100vh - 200px);
    min-height: 800px;
    position: relative;
}

#homepage_hero  .section-padding-x {
    max-width: 1380px;
    margin: auto;
    padding-top: 320px;
}

#homepage_hero .text-2 {
    margin: 40px 0;
}

.flex-container {
    display: flex;
    position: absolute;
    width: 100%;
    bottom: 0;
}
.flex-item {
    border: 1px solid rgba(255,255,255, .3);
    padding: 20px;
    text-align: center;
    margin: -1px 0 0 -1px; /* Removes the double border effect */
}
.flex-item:first-child {
    margin-left: 0; /* Remove left margin for the first item */
}
.flex-item a {
    text-decoration: none;
    color: var(--line-color);
    font-weight: 600;
	transition: color .2s ease;
}

.flex-item:hover a {
	color: var(--basic-white);
}



@media (max-width:767px){
    #homepage_hero .section-padding-x {
        padding-top: 250px;
    }
    .flex-item i {
        display: none;
    }
}