﻿.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    padding-left: 6%;
    padding-top: 10%;
    overflow: hidden
}

    .hero-section img.hero-bg {
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center
    }

    .hero-section .desktop-image {
        display: block
    }

    .hero-section .mobile-image {
        display: none
    }

.hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 1
}

    .hero-content h1 {
        font-size: 56px;
        font-weight: bold;
        line-height: 1.3;
        margin-bottom: 30px;
        text-align: left
    }

    .hero-content p {
        font-size: 22px;
        line-height: 1.6;
        font-weight: 600;
        text-align: left
    }

@media(max-width:767px) {
    .hero-section {
        height: 370px;
        min-height: unset;
        justify-content: center;
        padding-top: 50%
    }

        .hero-section .desktop-image {
            display: none
        }

        .hero-section .mobile-image {
            display: block
        }
}
