/*------------------------------------------------------------------
Common section
-------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-family: "DM Sans", sans-serif;
    color: #2D2330;
    font-weight: 700;
}

html {
    scroll-behavior: smooth;
}

/* width and height */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ffeae8;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ff827f;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ff3533;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

p {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #736D75;
    font-weight: 500;
}

/*============================================================
contact-title
============================================================*/

.contact-title p {
    font-size: 14px;
    color: #FF5956;
    line-height: 0.9;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.contact-title h2 {
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 0;
}

.contact-us form input {
    border: none;
    outline: none;
    width: 100%;
    height: 60px;
    background-color: #FAF5EE;
    padding: 20px 30px 20px 30px;
    border-radius: 6px;
}

.contact-us form textarea {
    border: none;
    outline: none;
    width: 100%;
    background-color: #FAF5EE;
    padding: 20px 30px 20px 30px;
    border-radius: 6px;
    height: 200px;
}

/*==================================================
contact-options-section
 =================================================*/
.full-contact-options {
    margin-top: 110px;
}

.contact-options {
    width: 100%;
    background-color: #2D2330;
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.contact-options span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #FF5956;
    transition: all .3s;
}

.contact-inner:hover span {
    background-color: #FF5956;
    color:white;
}

.contact-options p {
    color: #FF5956;
    margin: 0;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    text-transform: capitalize;
}

.contact-options h4 {
    color: white;
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    transition: all 0.3s ease-in-out;
}

.contact-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-inner:hover h4 {
    color: #FF5956;

}

.inner-right {
    padding-right: 10px;
}

/*=======================================================
google map
========================================================*/

.google-map {
    position: relative;
    width: 60%;
    height: 500px;
}
@media (max-width: 1024px) {
    .google-map {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .google-map {
        width: 80%;
        height: 300px;
    }
}

.google-map iframe {
    border-radius: 0 0 20px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.44);
}