.contanct-bg{
    background: url('/assets/pages/contact/heroBg.png');
    padding-top: 160px;
}

.contact-hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    color : white;
}

.left h1{
    color : white;
}

.left .pill{
    margin: 0 !important;
    margin-bottom: 16px !important;
}

h1{
    margin: 0 !important;
}

.left .subtitle{
    margin: 0 !important;
    margin-bottom: 32px !important;
    color : white;
    opacity: 70%;
}

.right{
    width: 50%;
    padding: 40px 80px;
    color: white;
}

.contact-form{
    background-color: #000;
    padding: 24px;
    border: solid 1px #333;
}

textarea{
    resize: none;
}

.contact-container{
    width: 100%;
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.contact-item{
    display: flex;
    gap: 12px;
    color: #000;
    margin-top: 26px;
    font-size: 16px;
    font-weight: 600;
    align-items: center;
}

.contact-text{
    max-width: 400px;
}

@media screen and (max-width: 760px)  {
    .contact-hero{
        flex-direction: column;
    }
    .left, .right{
        width: 100%;
        padding: 20px;
    }
    .contact-container{
        flex-direction: column;
        width: 100%;
    }
}