﻿.bg {
    background: #2c008f;
}
.hero {
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 11.25rem;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-transform: capitalize;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 5.625rem;
    margin-top: 8.3125rem;
    margin-bottom: 3.125rem !important;
}

.hero-subtitle {
    font-size: clamp(12px,1.25rem,100px);
    line-height: 1.875rem;
    font-weight: 400;
    opacity: 0.8;
    max-width: 62.5rem;
    margin: 0 auto;
}

.contact-info {
    position: relative;
    z-index: 3;
    padding-bottom: 5rem;
    padding-top: 2.5rem;
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 97.5rem;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.contact-card {
    background: rgba(124, 158, 251, 0.2);
    border-radius: 1rem;
    padding: 5.4375rem 4.125rem;
    text-align: left;
    color: #ffffff;
    min-height: 25rem;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

    .contact-card h3 {
        font-size: clamp(12px,1.625rem,100px);;
        font-weight: 700;
        margin-bottom: 3.125rem;
        text-transform: capitalize;
    }

    .contact-card p {
        font-size: clamp(12px,1.25rem,100px);
        line-height: 2.1875rem;
        opacity: 0.5;
        margin-bottom: .9375rem;
    }

    .contact-card .highlight {
        font-weight: 700;
        opacity: 0.8;
    }

.contact-form-section {
    padding: 9.375rem 0 9.375rem 0;
    margin-top: 0;
    position: relative;
    width: 100%;
}

    .contact-form-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6.25rem;
        z-index: 1;
    }

.form-container {
    max-width: 97.5rem;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3.75rem;
    position: relative;
    z-index: 2;
}

.form-content {
    flex: 1.5;
    max-width: 50rem;
}

.form-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 5rem;
    max-width: 43.75rem;
    margin-bottom: 1.875rem;
}

.form-subtitle {
    font-size: clamp(12px,1rem,100px);
    opacity: 0.6;
    margin-bottom: 3.75rem;
}

.contact-form {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 1rem;
    padding: 3.75rem;
    max-width: 62.5rem;
    width: 100%;
    height: 23rem;
    flex: 1;
}

.m-text-field--outlined, .m-text-field--solo {
    border-radius: .25rem;
}

.m-input{
    font-size: 1rem;
}
.m-input__slot {
    margin-bottom: .5rem;
}

.m-text-field.m-text-field--enclosed .m-text-field__details{
    margin-bottom: .5rem;
}

.m-text-field__detail.m-text-field.m-text-field--enclosed .m-text-field__details {
    margin-bottom: .5rem;
}

.m-text-field.m-text-field--solo .m-input__control{
    min-height: 3rem;
}

.m-text-field__details{
    min-height: .875rem;
}

.m-text-field input {
    flex: 1 1 auto;
    line-height: 1.25rem;
    padding: .5rem 0 .5rem;
    max-width: 100%;
    min-width: 0;
    width: 100%;
}

.m-label {
    font-size: clamp(12px,1rem,100px);
    line-height: 1;
    min-height: .5rem;
    transition: .3s cubic-bezier(.25,.8,.5,1);
}

.m-input .m-label {
    height: 1.25rem;
    line-height: 1.25rem;
    letter-spacing: normal;
}

.m-text-field.m-text-field--solo .m-label {
    top: calc(50% - .5625rem);
}

.m-messages {
    font-size: clamp(12px,.75rem,100px);
    min-height: .875rem;
    min-width: .0625rem;
}

.m-messages__message {
    line-height: .75rem;
}

.form-group {
    margin-bottom: 1.875rem;
}

    .form-group label {
        display: block;
        font-size: 1rem;
        font-weight: 500;
        color: #000000;
        opacity: 0.4;
        margin-bottom: .9375rem;
        text-transform: capitalize;
    }

    .form-group input {
        width: 100%;
        height: 4.375rem;
        background: #ffffff;
        border: none;
        border-radius: .625rem;
        padding: 0 1.25rem;
        font-size: 1rem;
        font-family: inherit;
    }

        .form-group input:focus {
            outline: none;
            box-shadow: 0 0 0 .125rem rgba(44, 0, 143, 0.3);
        }

.submit-btn {
    border: none;
    border-radius: .625rem;
    font-size: clamp(12px,1.125rem,100px);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: .9375rem;
}


.btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out
}

    .btn-icon:not(:hover) {
        transform: scale(1);
    }

    .btn-icon:hover {
        transform: scale(1.2);
    }

    .btn-icon {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url('img/pages/contact/arrow-down.png');
        background-size: 1.25rem;
        background-repeat: no-repeat;
        background-position: center;
    }

.contact-form-btn {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

    .contact-label .mud-input-label {
        color: #ff0000 !important;
    }

/* @media (max-width: 1919px) and (min-width: 1024px) {

    .hero-content {
        max-width: 960px;
    }

    .form-container {
        max-width: 960px;
        gap: 30px;
    }

    .contact-grid {
        gap: 10px;
        max-width: 960px;
    }

    .contact-card {
        padding: 40px;
        min-height:0;
    }

        .contact-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .contact-card p {
            font-size: 15px;
            line-height: 35px;
            margin-bottom: 8px;
        }

    .hero-title {
        font-size: 45px;
        font-weight: 700;
        line-height: 90px;
        margin-top: 30px;
        margin-bottom: 15px !important;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 30px;
        font-weight: 400;
        opacity: 0.8;
        max-width: 1000px;
    }

    .contact-form-section {
        padding: 80px 0 80px 0;
    }

    .form-title {
        font-size: 45px;
        line-height: 80px;
        max-width: 700px;
        margin-bottom: 30px;
    }

    .form-subtitle {
        font-size: 12px;
        margin-bottom: 60px;
    }
} */

