﻿/*Ghi đè CSS*/
h1, h2, p {
    margin: 0;
}

.contact {
    scroll-behavior: smooth;
}

.contact-banner-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    background: linear-gradient( 0deg, rgba(197, 165, 152, 0.9), rgba(243, 237, 234, 0.6) ), url('../../Images/shared/aboutus/about-us-banner.png') center center / cover no-repeat;
}

.contact-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 40px;
    padding: 100px 0;
}

.contact-banner-heading,
.contact-banner-heading-highlight {
    font-family: "Baloo 2";
    font-size: 42px;
    font-weight: 800;
    line-height: 42px;
}

.contact-banner-heading {
    color: #000;
}

.contact-banner-heading-highlight {
    color: #E84E0E;
}

.contact-card {
    display: flex;
    column-gap: 20px;
}

.contact-card-item {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;

    min-width: 413px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.10);

    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
}

.contact-card-title,
.contact-card-content {
    font-family: "Baloo 2";
    font-size: 18px;
    line-height: 26px;
}

.contact-card-title {
    color: #FF2828;
    font-weight: 700;
}

.contact-card-content {
    color: #000;
}

.contact-card-link span {
    transition: all ease 0.5s;
}

.contact-card-link:hover span {
    color: #E84E0E;
}

.contact-main-content {
    display: flex;
    gap: 120px;
    align-items: center;
    padding: 40px 0;
}

.contact-content-image {
    width: 580px;
    object-fit: cover;
}

.contact-form input::placeholder,
.contact-form input {
    color: rgba(0, 0, 0, 0.50);
    font-family: "Baloo 2";
    font-size: 16px;
    line-height: 24px;
}

.contact-form,
.contact-form-content {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.contact-content-heading,
.contact-des-title {
    color: #000;
    font-family: "Baloo 2";
}

.contact-content-heading {
    font-size: 42px;
    font-weight: 600;
    line-height: 52px;
}

.contact-des-title {
    font-size: 18px;
    line-height: 26px; 
}

.contact-form-horizontal {
    display: flex;
    column-gap: 20px;
}

.form-control {
    margin-top: 10px;
}

.contact-input {
    width: 100%;
}

.contact-input label {
    color: rgba(0, 0, 0, 0.50);
    font-family: "Baloo 2";
    font-size: 14px;
    line-height: 18px;
}

.form-submit-group {
    align-self: flex-start;
}

.contact-btn {
    display: flex;
    column-gap: 10px;
    align-items: center;
    background: #E84E0E !important;
}

.contact-btn-text {
    color: #FFF;
    font-family: "Baloo 2";
    font-size: 18px;
    line-height: 26px;
}

.contact-map {
    margin-bottom: -10px;
}

@media screen and (max-width: 1395px) {
    .contact-card-item {
        min-width: 350px;
    }
}

@media screen and (max-width: 1198px) {
    .contact-card-item {
        min-width: 300px;
    }

    .contact-main-content {
        flex-direction: column;
        row-gap: 40px;
    }

    .contact-content-image {
        width: 78%;
    }
}

@media screen and (max-width: 990px) {

    .contact-banner-heading {
        text-align: center;
    }

    .contact-content-image {
        width: 100%;
    }

    .contact-card {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }

    .contact-map {
        margin-bottom: -7px;
    }
}