.ct-sec {
    margin: 3rem auto 0;
}

.contact-grid-section {
    display: grid;
    height: 300px;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 1rem;
    width: 450px;
}

.contact-top-box {
    grid-column: 1 / 2;
    color: white;
    border-radius: 25px;
    background-color: #FFF0F0;
}

.contact-bottom-left {
    grid-column: 2 / 3;
    background-color: #F3F6FF;
    color: white;
    position: relative;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
}

.contact-bottom-right {
    grid-column: 1 / 3;
    background-color: #EFFAED;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    color: white;
    height: 150px;
    width: 100%;
    border-radius: 25px;
    flex-direction: column;
}

.contact-section {
    display: flex;
}

.contact-left {
    width: 50%;
    text-align: left;
}

.contact-left h1 {
    font-size: 58px;
    font-family: var(--interExtraBold--), sans-serif;
    font-weight: 700;
}

.contact-right {
    width: 50%;
    padding: 7rem 2rem 0 1rem;
}

.contact-form {
    width: 80%;
    margin-top: 2rem;
}

.div-input-contact {
    margin-bottom: 15px;
}

.div-input-contact input {
    padding: 10px;
    width: 100%;
    border: 1px solid #808080;
    border-radius: 30px;
    padding: 14px 24px;
    font-size: 14px;
    font-family: var(--interFontFamily--), sans-serif;
}

.div-input-contact input:focus {
    outline: none;
}

.div-input-contact input::placeholder {
    font-size: 14px;
    text-transform: capitalize;
    font-family: var(--interFontFamily--), sans-serif;
}

.div-contact-country {
    display: flex;
}

.div-contact-country .country-ct {
    width: 25%;
}

.div-contact-country .country-tel {
    width: 100%;
}

.div-contact-country .country-tel::-webkit-outer-spin-button,
.div-contact-country .country-tel::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.div-contact-country .country-tel[type=number] {
    -moz-appearance: textfield;
}

.div-input-button button {
    background: linear-gradient(85.22deg, #4A82FE 0%, #004FFF 51.84%, #4A82FE 98.93%);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
}

.contact-inner-detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    /* height: 100%; */
    padding: 1rem 1.5rem;
}

.contact-inner-detail .contact-image-bx {
    width: 35px;
    height: 35px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.contact-inner-detail .contact-image-bx img {
    width: 16px;
}

.contact-inner-text {
    text-align: left;
    margin-top: .5rem;
}

.contact-inner-text h4 {
    font-size: 15px;
    font-family: var(--interFontMedium--), sans-serif;
    font-weight: 400;
    color: #121212;
    margin-bottom: .35rem;
}

.contact-inner-text p {
    font-size: 13px;
    font-family: var(--interFontFamily--), sans-serif;
    font-weight: 300;
    color: #666;
}

@media (min-width: 320px) and (max-width:767px) {
    .ct-sec {
        margin: 1rem auto 0;
    }

    .contact-left {
        width: 100%;
        text-align: center;
    }

    .contact-section {
        flex-direction: column;
    }

    .contact-left h1 {
        font-size: 28px;
    }

    .contact-form {
        width: 100%;
    }

    .contact-right {
        width: 100%;
        display: block;
        padding: 0;
    }

    .contact-grid-section {
        display: block;
        padding: 0;
        height: unset;
        width: unset;
        margin-top: 20px;
    }

    .contact-box {
        margin-bottom: 20px;
    }

    .contact-inner-detail {
        display: block;
        height: unset;
    }

    .contact-inner-detail .contact-image-bx {
        margin: auto;
        text-align: center;
        align-content: center;
        display: block;
    }

    .contact-inner-text{
        text-align: center;
    }
}