html,
body {
    overflow-x: hidden;
}

.contactus-page {
    background: #fff;
}

.contactus-img {
    position: relative;
    right: 30px;
    top: 30px;
    z-index: -1;
    object-fit: contain;
    width: 620px;
    height: 800px;
    z-index: 5;
}

.contactus-form {
    background: #fcfcfc;
    border: 1px solid #eee;
    min-height: 600px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    position: relative;
    z-index: 10;
}

.contactus-form .input-container {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}

.contactus-form h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 16px;
    color: #232323;
}

.contactus-form p {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #a3a3a3;
    padding: 20px 0;
}

.contactus-form label {
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #232323;
}

.contactus-form label sup {
    font-size: 14px;
}

.contactus-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #DFDFDF;
    padding: 10px 0;
    max-width: 100%;
    height: 100%;
    margin-bottom: 15px;
    min-height: 55px;
}

.contactus-form textarea:focus {
    outline: none;
}

.contactus-form button {
    background: linear-gradient(to top, #FE7AB6, #FC449A);
    border-radius: 10px;
    border: none;
    padding: 12px 24px;
    color: #fff;
}


form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #DFDFDF;
    padding: 10px 0;
}

form input:focus {
    outline: none;
}

form input::placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

.error {
    color: red;
    font-size: 0.875em;
    padding-top: 5px;
}

.hamburger-menu {
    display: none;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 20px;
    color: #fff;
    font-weight: 500;
}

.menu-content {
    background-color: white;
    height: 100vh;
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    transition: left 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* .menu-content ul li {
        } */

.menu-content ul li a {
    text-decoration: none;
    color: gray;
    display: block;
    background: #fff;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 400;
    border-radius: 0;
}

.menu-content ul li a.active {
    color: #FC4C9E;
    font-weight: 700;
}

.menu-content ul li a:hover {
    background: #eee;
    color: #FC4C9E;
}

.close-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    text-align: right;
}

@media only screen and (max-width: 800px) {
    .hamburger-menu {
        display: block;
    }
}

.active-footer-link {
    color: #FC4C9E;
}