.section {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 100px;
    padding-top: 100px;
}

.welcomeSection {
    padding: 100px 0;
}

.welcomeSection img {
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.welcomeText {
    font-size: 1.125rem;
    line-height: 1.5;
}

.servicesSection {
    overflow: hidden;
    padding-bottom: 15vh;
    padding-top: 0;
    position: relative;
}

.servicesBgImg {
    bottom: 0;
    height: auto;
    left: 0;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: auto;
    width: 100%;
    z-index: 1;
}

.blugBg {
    background-color: rgb(1, 38, 56);
    border-top-left-radius: 70px;
    bottom: auto;
    height: 91.8%;
    left: auto;
    position: absolute;
    right: 0%;
    top: 0%;
    width: 90%;
}

.servicesContent {
    align-items: center;
    color: #fafafa;
    display: flex;
    flex-direction: column;
    padding-top: 5vw;
    position: relative;
    z-index: 1;
}

.servicesGrid {
    width: 100%;
    grid-column-gap: 8px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(318px, 1fr));
    margin-top: 20px;
    display: grid;
}

.serviceCard {
    align-items: center;
    background-color: #fafafa;
    border-radius: 15px;
    box-shadow: -6px 8px 80px -4px rgba(19, 61, 87, .3);
    color: #222;
    display: flex;
    flex-direction: column;
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-content: center;
    padding: 60px 30px 30px;
    text-align: center;
    transition: all .35s ease-in-out;
}

.serviceCard:hover {
    box-shadow: -6px 8px 30px -4px rgba(19, 61, 87, .8);
    position: relative;
    z-index: 1;
}

.serviceCard a:hover {
    background-color: #49a8df;
    color: #fafafa;
}

.practicesSection {
    padding-bottom: 0 !important;
}

.practiceCard {
    background-color: #133d57;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    color: #fafafa;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 1.5rem;
    position: relative;
}

.blue-text {
    color: #4ec2f0;
}

.practiceCard a {
    color: #fafafa;
    transition: all .1s ease-in;
}

.practiceCard a:hover {
    color: #4ec2f0;
}

.whySection {
    padding-top: 100px;
}

.whySection img {
    border-radius: 20px;
    height: 315px;
    object-fit: cover;
    width: 100%;
}

.testimonialSection {
    background: url(/themes/custom/brokerage/images/shutterstock_526689706.png);
    background-position: center;
    background-size: cover;
    color: #fafafa;
    position: relative;
}

.testimonialSection::before {
    background-image: linear-gradient(135deg, #133d57, #2d8fc8);
    content: "";
    height: 100%;
    left: 0;
    opacity: .8;
    position: absolute;
    top: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .greenBg {
        width: 80%;
    }

    .servicesSection {
        padding-bottom: 40vh;
    }
    
    .servicesBgImg {
        height: 60%;
    }

    .greenBg {
        height: 40%;
    }
}