:root {
  --white: #ffffff;
  --black: #000000;
  --dark-grey: #4A4A4A;
  --primary-color: #091733;
  --yellow-color: #DAA520;
  --light-yellow-color: #F4F0E7;
  --heading-yellow-color: #DCC5A2;
  --dark-yellow-color: #B9A082;

}

/*---------- Contact CSS start -----------*/

.contact-us label.fw-bold {
    font-size: 14px;
}

.contact-us .form-select {
    border-bottom-color: var(--dark-grey);
    color: var(--dark-grey);
    background: transparent url(../images/dark-down-arrow.svg) no-repeat right center;
}

.contact-map iframe{
  height: 870px;
  width: 100%;
}

.contact-us{
    position: relative;
}

.contact-us-wrapper{
    position: absolute;
    top: 0;
    right: 10%;
    background-color: #fff;
    width: max-content;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.contact-us-wrapper .contact-us-info{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-us-wrapper .contact-us-info:last-of-type{
margin-top: 20px;
}

.contact-us-wrapper .contact-us-info h2{
    color: var(--primary-color);
    font-size: 32px;

}

.contact-us-wrapper .contact-us-info a{
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 15px;
}

.contact-us-wrapper .contact-us-info ul{
    margin-top: 15px;
}

.contact-us-wrapper .contact-us-info ul li{
    margin-top: 15px;
}

/*---------- Media Css Start -----------*/
@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 992px) {}

@media only screen and (max-width: 767px) {
    .contact-us .contact-map {
        max-height: auto;
    }

    .contact-map iframe{
        max-height: 350px;
    }

    .contact-us-wrapper{
        position: relative;
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        left: 0;
    }

}