﻿.contact-us-container {
    width: 100%;
/*    height: 100vh;*/
    background-color: #FFFFFF;
    position:relative;
    z-index:0;
}
    .contact-us-container::after {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 100%;
        height: 70vh;
        min-height:600px;
        background-color: #2C3E50;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        z-index:1;
    }
.contact-us-content {
    padding-top: 140px;
    width: 100%;
}
@media(max-width:576px){
    .contact-us-container::after{
        height:40vh;
    }
    .contact-us-content {
        padding-top: 100px;
    }
    
}

.contact-us-detail{
    width:385px;
    display:flex;
    flex-direction:column;
    position:relative;
    z-index:2;
}
.contact-us-title {
    font-size: 28px;
    font-weight: 600;
    color: #FCFCFC;
    position:relative;
    position:relative;
    z-index:2;
}
    .contact-us-title::after {
        content: "";
        position: absolute;
        bottom: 5px;
        right:0;
        width: 120px;
        height: 2px;
        background-color: #E74C3C;
    }

@media (max-width: 992px) {
    .contact-us-title::before {
        content: "";
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
        width: 120px;
        height: 2px;
        background-color: #E74C3C;
    }

    .contact-us-title::after{
        content:none;
    }
    .contact-us-title {
        font-size: 20px;
        margin-bottom:20px;
    }
}

}
.contact-us-detail-item {
    display:flex;
    width:100%;
    gap:80px;
}
    .contact-us-detail-item h6 {
        color: #FCFCFC;
        font-size: 24px;
        font-weight: 600;
    }
    .contact-us-detail-item p {
        color: #FCFCFCCC;
        font-size: 24px;
        font-weight: 500;
    }
@media(max-width:576px){
    .contact-us-detail-item h6 {
        color: #2C3E50;
        font-size: 18px;
    }

    .contact-us-detail-item p {
        color: #2C3E50CC;
        font-size: 18px;
        f
    }

}
.send-message-container {
    background-color: #ECF0F1;
    border-radius: 20px;
    border: 1px solid #ECF0F1;
    padding: 50px 80px;
    position: relative;
    z-index: 2;
}
@media (max-width:992px){
    .send-message-container {
        border-radius: 15px;
        padding: 16px 30px;
    }
}
.text-field-container {
    border-bottom: 2px solid #2C3E50;
    padding-bottom: 14px;
}

.text-field {
    width:100%;
    padding:0 42px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #2C3E50;
    text-align: left;
    font-size:24px;
    font-weight:600;
}
    .text-field::placeholder {
        color: #2C3E50;
        font-weight:600;
        font-size:24px;
    }
    .text-field-icon {
        color: #2C3E50;
        font-size: 25px;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
@media(max-width:768px){
    .text-field{
        font-size:18px;
    }
        .text-field::placeholder {
            font-size: 18px;
        }
    .form-btn{
        font-size:16px;
    }
}
.text-field-title {
    color: #2C3E50;
    font-size: 18px;
}
.no-resize {
    resize: none;
}
.form-btn {
    width:100%;
    border:none;
    outline:none;
    cursor:pointer;
    padding: 12px;
    font-size:20px;
    font-weight:600;
    text-align: center;
    border-radius: 16px;
    color: #ECF0F1;
    background-color: #E74C3C;
}
