/*contact page start*/
.contact-page {
    display: flex;
    justify-content: center;
    align-items: end;
    padding-bottom: 120px;
    z-index: 1;
    height: 500px;
    width: 100%;
}

.contact-page .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-page .container .row {
    display: flex;
    gap: 20px;
}

.row .contact-page-info {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    width: 35%;
    gap: 15px;
}

.contact-page-info .contact-phone {
    display: flex;
    gap: 5px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.contact-page-info .contact-phone a,
.contact-page-info .contact-page-left a {
    text-decoration: none;
    color: #000;
}

.contact-page-info .contact-phone a:hover,
.contact-page-info .contact-page-left a:hover {
    color: #565656;
}

.row .contact-page-form-container {
    display: flex;
    width: 65%;
    margin-left: 20px;
}

.contact-page-left {
    position: relative;
    display: block;
    width: 70%;
}

.section-title h3 {
    margin-bottom: 10px;
}

.contact-page-left .section-title-tagline {
    color: #de968d;
    font-size: 16px;
}

.contact-page-left .contact-page-text {
    color: #89868d;
}

.contact-page-content .row {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.contact-page-form-input-box {
    position: relative;
    display: flex;
}

.contact-page-form-input-box input[type="text"],
.contact-page-form-input-box input[type="email"] {
    height: 58px;
    width: 300px;
    border: none;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    background-color: #f0e8e8;
}

.contact-page-form-input-box textarea {
    font-size: 14px;
    padding: 21px 30px 30px;
    border: none;
    outline: none;
    background-color: #f0e8e8;
    width: 680px;
    height: 130px;
}

.message-area {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-top: 20px;
}

.contact-page-btn-box {
    margin-top: 20px;
    position: relative;
    display: block;
}

.contact-page-btn {
    height: 60px;
    width: 240px;
    border: none;
    background-color: #de968d;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
}

.contact-page-btn:hover {
    background-color: #dfaba4;
}

@media (max-width:1200px) {
    .contact-page {
        height: auto;
        margin-top: 50px;
    }

    .row .contact-page-info {
        width: 45%;
    }

    .row .contact-page-form-container {
        width: 55%;
    }

    .contact-page-left {
        display: flex;
        flex-direction: column;
        width: 400px;
    }

    .contact-page-form .row {
        display: flex;
        flex-direction: column;
    }

    .contact-page-form-input-box input[type="text"],
    .contact-page-form-input-box input[type="email"] {
        width: 400px;
    }

    .contact-page-form-input-box textarea {
        width: 400px;
    }

    .row .contact-page-form-container {
        width: auto;
        margin: 0px;
    }
}

@media (max-width:950px) {
    .contact-page .row {
        display: flex;
        flex-direction: column;
    }

    .row .contact-page-info {
        display: flex;
        justify-content: start;
        align-items: start;
        width: 95%;
        margin-bottom: 20px;
    }

    .contact-page-btn {
        font-size: 11px;
        height: 50px;
        width: 180px;
    }

    .contact-page-btn-box {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}

@media (max-width:550px) {
    .contact-page-form-input-box input[type="text"],
    .contact-page-form-input-box input[type="email"] {
        width: 320px;
    }

    .contact-page-form-input-box textarea {
        width: 320px;
    }

    .contact-page-form-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 500px;
    }

    .contact-page-left {
        width: 80%;
    }
}

@media (max-width:425px) {
    .container .row {
        display: flex;
        width: 80%;
    }

    .contact-page-form-input-box input[type="text"],
    .contact-page-form-input-box input[type="email"] {
        width: 280px;
    }

    .contact-page-form-input-box textarea {
        width: 280px;
    }

    .contact-page-form-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 500px;
    }

    .contact-page-btn {
        height: 50px;
        width: 150px;
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (max-width:400px) {
    .contact-page-form-input-box input[type="text"],
    .contact-page-form-input-box input[type="email"] {
        width: 250px;
    }

    .contact-page-form-input-box textarea {
        width: 250px;
    }

    .contact-page-form-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 400px;
    }

    .row .contact-page-info {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0px;
        margin-left: 0px;
        padding: 0px;
        width: 100%;
    }

    .contact-page-left {
        width: 95%;
    }
}
/*contact page end*/