.hero-section {
    position: relative;
}

.hero-section video {
    position: absolute;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    pointer-events: none;
    background-color: #3719BA55;
}

.hero-section .container{
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 1200px){
    .hero-content h1{
        text-align: left;
    }
}

.services-item{
    border-radius: 0 !important;
    border-color: #FFFFFF00 !important;
}

.services-item .icon{
    width: 40px;
    height: 32px;
    text-align: center;
}

.services-item .icon img{
    height: 100%;
    aspect-ratio: 1;
    filter: brightness(0) invert(1);
}

.form-cta{
    display: flex;
    gap: 30px;
    align-items: flex-end;
}

@media screen and (max-width: 992px){
    .form-cta{
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px){
    .services-item{
        flex-direction: column-reverse;
        align-items: flex-start !important;
    }
}