
/********************
 Online Reservatrion
*******************/
.ad-reservation {
    margin-top: 250px;
    background-image: url(../img/aida-images/reservation-bg1.png);
    height: 700px;
    background-repeat: no-repeat;
}

.ad-reservation-form-container {
    background-image: url(../img/aida-images/reservation-bg3.png);
    height: 530px;
    width: 60%;
    position: absolute;
    top: calc(0% - 150px);
    padding-top: 50px;
    text-align: center;

}

.ad-reservation-form-container h4 {
    font-size: 40px;
    font-weight: 700;
    color: #062126;
    text-transform: uppercase;
    margin-top: 10px;
}

.ad-reservation-form {
    margin-top: 40px;
}

.ad-reservation-form input,
select {
    width: 90%;
    margin: auto;
    border: none;
    border-bottom: 1px solid #9d9d9d;
    color: #062126;
    font-weight: 500;
    padding-bottom: 10px;
    background-color: transparent;
    font-size: 20px;
    font-family: 'Jost', sans-serif;
    outline: none;
}

.ad-reservation-form input::placeholder {
    color: #062126;
    text-transform: uppercase;
}
.ad-reservation-form select{
    color: #062126;
    text-transform: uppercase;
}

.ad-reservation-form i {
    font-size: 22px;
    position: absolute;
    right: 8%;
}

.ad-reservation-form-container button {
    width: 165px;
    height: 48px;
    background-color: #c59d5f;
    border: 0;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 35px;
}

.ad-reservation-form-container button:hover {
    background-color: #af7a31;
    transition: 0.3s ease;
}

.ad-reservation-container {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding-top: 300px;
}

.ad-reservation-single-content {
    color: white;
    display: flex;
    gap: 20px;
    align-items: center;
}

.ad-reservation-single-content p {
    font-size: 30px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    margin-bottom: 0;
}

.ad-reservation-single-content span {
    font-size: 18px;
    text-transform: uppercase;
}

@media screen and (max-width: 1399px) {
    .ad-reservation-form-container h4 {
        font-size: 35px;
    }
}


@media screen and (max-width: 1199px) {
    .ad-reservation {
        height: 550px;
    }

    .ad-reservation-container {
        gap: 10px;
    }

    .ad-reservation-single-content p {
        font-size: 20px;
    }

    .ad-reservation-form-container {
        height: 480px;
        padding-top: 30px;
    }
}

@media screen and (max-width: 991px) {
    .ad-reservation {
        height: 600px;
    }

    .ad-reservation-form-container h4 {
        font-size: 25px;
    }

    .ad-reservation-container {
        grid-template-columns: repeat(4, 1fr);
        padding-top: 350px;
    }

    .ad-reservation-form-container {
        width: 80%;
    }
}

@media screen and (max-width: 575px) {
    .ad-reservation-container {
        gap: 0px;
    }

    .ad-reservation-form {
        margin-top: 10px;
    }

    .ad-reservation-form input,
    select {
        margin-top: 10px;
        font-size: 16px;
    }

    .ad-reservation-form i {
        top: 12px;
    }

    .ad-reservation-form-container {
        top: calc(0% - 200px);
        height: 550px;
    }

    .ad-reservation-form-container h4 {
        font-size: 20px;
    }

    .ad-reservation-form-container button {
        font-size: 16px;
    }
}

@media screen and (max-width: 479px) {
    .ad-reservation {
        height: 650px;
    }

    .ad-reservation-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .ad-reservation-line-shape {
        display: none;
    }

    .ad-reservation-single-content img {
        width: 30px;
        height: 40px;
    }

    .ad-reservation-single-content p {
        font-size: 16px;
    }

    .ad-reservation-single-content span {
        font-size: 14px;
    }

    .ad-reservation-line-shape img {
        width: 40px;
        height: 60px;
    }
}

/********************
   Customer Review
*******************/

.ad-customer-review {
    margin-top: 70px;
    text-align: center;
}

.ad-review-title-container h4 {
    font-size: 45px;
    font-weight: 700;
    color: #062126;
    text-transform: uppercase;
    margin-top: 10px;
}

.ad-review-title-container p {
    font-size: 18px;
    font-family: 'Jost', sans-serif;
    color: #606060;
    margin: 15px auto;
}

.ad-review-bg-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.ad-review-bg-container i {
    height: 50px;
    width: 50px;
    font-size: 20px;
    border: 1px solid #728284;
    color: #728284;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-review-bg-container i:hover {
    color: #c59d5f;
    border: 1px solid #c59d5f;
}

.ad-review-carousel {
    position: absolute;
    top: 24%;
    right: 3%;
    height: 400px;
    width: 850px;
}

.ad-single-review {
    width: 850px;
    height: auto;
    background-image: url(../img/aida-images/review-image.png);
    padding-left: 30px;
    padding-bottom: 30px;
}

.ad-single-review i {
    color: #eec211;
    font-size: 24px;
    padding-top: 50px;
}

.ad-single-review p {
    font-size: 18px;
    color: #525252;
    font-family: 'Jost', sans-serif;
    text-align: start;
    margin-top: 30px;
}

.ad-review-person-container {
    margin-top: 30px;
    display: flex;
    gap: 25px;
    text-align: start;
    align-items: center;
}

.ad-review-person-container h4 {
    font-size: 19px;
    font-weight: 700;
    color: #062126;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.ad-review-person-container span {
    font-size: 14px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    margin-top: 0px;
    text-transform: uppercase;
}

@media screen and (max-width: 1399px) {
    .ad-review-title-container h4 {
        font-size: 35px;
    }
}


@media screen and (max-width: 991px) {
    .ad-review-title-container h4 {
        font-size: 30px;
    }

    .ad-single-review {
        width: 100%;
    }

    .ad-review-carousel {
        left: 5%;
        width: 90%;
        height: 100%;
    }
}

@media screen and (max-width: 767px) {
    .ad-review-title-container h4 {
        font-size: 25px;
    }

    .ad-review-title-container p {
        padding: 0 20px;
        font-size: 16px;
    }

    .ad-review-bg-container {
        flex-direction: column-reverse;
        gap: 30px;
        align-items: center;
        margin-top: 30px;
    }

    .ad-single-review i {
        padding-top: 25px;
    }

    .ad-review-carousel {
        top: 45%;
    }
}

@media screen and (max-width: 575px) {
    .ad-review-title-container h4 {
        font-size: 20px;
    }

    .ad-review-title-container p {
        font-size: 14px;
    }

    .ad-review-bg-container img {
        width: 90%;
    }

    .ad-single-review {
        width: 90%;
        padding-bottom: 10px;
    }

    .ad-review-carousel {
        left: 10%;
    }

    .ad-single-review p {
        font-size: 16px;
        margin-top: 10px;
    }

    .ad-review-person-container h4 {
        font-size: 17px;
    }

    .ad-review-person-container p {
        font-size: 14px;
    }
}


/********************
   News & Article
*******************/
.ad-article {
    margin-top: 110px;
    height: 980px;
    background-image: url(../img/aida-images/article-bg.png);
    padding-top: 110px;
    text-align: center;
}

.ad-article-title-container h4 {
    font-size: 45px;
    font-weight: 700;
    color: #062126;
    margin-top: 5px;
    text-transform: uppercase;
}

.ad-article-title-container p {
    font-size: 18px;
    color: #606060;
    font-family: 'Jost', sans-serif;
    margin-top: 10px;
}

.ad-article-container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.ad-single-card {
    width: 100%;
    height: 540px;
    background-color: white;
    text-align: left;
    box-shadow: -15px 15px 20px #d6d6d6, 15px -15px 20px #eeeeee;
}

.ad-single-card i {
    font-size: 30px;
    margin: 20px 0;
    padding-left: 20px;
    cursor: pointer;
}
.ad-single-card i:hover{
    color: #062126;
}

.ad-single-card img {
    width: 100%;
    transition: 0.6s;
}

.ad-single-card p {
    font-size: 18px;
    color: #808080;
    font-family: 'Jost', sans-serif;
    margin-top: 30px;
    padding-left: 20px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.ad-single-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #062126;
    padding-left: 20px;
    text-transform: uppercase;
    margin-top: 10px;
}

.ad-single-card h4:hover {
    text-decoration: underline;
    cursor: pointer;
}

.ad-single-card:hover .ad-blog-image {
    transform: scale(1.06);
}

@media screen and (max-width: 1399px) {
    .ad-article-title-container h4 {
        font-size: 35px;
    }
}


@media screen and (max-width:991px) {
    .ad-article-title-container h4 {
        font-size: 30px;
    }

    .ad-article-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .ad-article {
        height: auto;
        padding-bottom: 60px;
        padding-top: 60px;
    }
}

@media screen and (max-width:767px) {
    .ad-article-title-container h4 {
        font-size: 25px;
    }

    .ad-article-title-container p {
        font-size: 16px;
    }

    .ad-article-container {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 60px;
    }

    .ad-single-card {
        height: auto;
        padding-bottom: 15px;
    }

    .ad-single-card p {
        font-size: 16px;
    }

    .ad-single-card h4 {
        font-size: 20px;
    }
}

@media screen and (max-width:575px) {
    .ad-single-card {
        width: 90%;
        margin: auto;
    }

    .ad-article-title-container h4 {
        font-size: 30px;
    }

    .ad-single-card p {
        font-size: 14px;
    }

    .ad-single-card h4 {
        font-size: 16px;
    }
}

@media screen and (max-width:479px) {
    .ad-article {
        margin-top: 130px;
    }
}

@media screen and (max-width:379px) {
    .ad-article {
        margin-top: 180px;
    }
}

@media screen and (max-width:320px) {
    .ad-article {
        margin-top: 250px;
    }
}


/********************
       Footer
*******************/
.ad-footer {
    background-image: url(../img/aida-images/footer-bg.png);
    height: 650px;
    color: white;
    background-size: cover;
}

.ad-footer-subscribe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
}

.ad-footer-subscribe h4 {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ad-footer-subscribe input {
    padding: 10px;
    font-size: 20px;
    border: 1px solid grey;
    float: left;
    width: 340px;
    background: #f1f1f1;
    outline: none;
}

.ad-footer-subscribe button {
    float: left;
    width: 140px;
    padding: 10px;
    background-color: #c59d5f;
    color: white;
    font-size: 20px;
    border: 1px solid grey;
    border-left: none;
    cursor: pointer;
}

.ad-footer-subscribe button:hover {
    background-color: #af7a31;
    transition: 0.3s ease;
}

.ad-footer-border {
    border-bottom: 2px solid #5c5b5b;
    margin-top: 50px;
}

.ad-footer-list-container {
    margin-top: 100px;
}

.ad-footer-list {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-family: 'Jost', sans-serif;
}

.ad-footer-list img {
    height: 38px;
    width: 100px;
    margin-bottom: 20px;
}

.ad-footer-list h5 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f1f1f1;
}

.ad-footer-list h5::after {
    content: "";
    display: block;
    width: 20%;
    height: 2px;
    background-color: #5c5b5b;
    margin-top: 5px;
}

.ad-footer-list li {
    font-family: 'Jost', sans-serif;
    margin-top: 10px;
}

.ad-footer-list a {
    color: white;
}

.ad-footer-list li:hover {
    text-decoration: underline;
    cursor: pointer;
}

.ad-footer-list-opening-timer {
    color: #cfcccc;
    font-size: 14px;
}

.ad-footer-bottom {
    position: absolute;
    height: 50px;
    background-color: #c59d5f;
    width: 100%;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.ad-footer-bottom p {
    font-size: 15px;
    font-family: 'Jost', sans-serif;
}

.ad-footer-bottom img {
    height: 19px;
    width: 326px;
}


@media screen and (max-width:991px) {
    .ad-footer {
        height: auto;
        padding-bottom: 70px;
    }

    .ad-footer-subscribe {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .ad-footer-list {
        padding-top: 30px;
    }

    .ad-footer-list-container {
        margin-top: 50px;
    }
}

@media screen and (max-width:991px) {
    .ad-footer-bottom {
        flex-direction: column;
        padding: 30px;
        gap: 10px;
    }
}

@media screen and (max-width:767px) {
    .ad-footer-subscribe h4 {
        font-size: 25px;
    }
}

@media screen and (max-width:575px) {
    .ad-footer-subscribe h4 {
        font-size: 20px;
    }

    .ad-footer-subscribe input {
        width: 70%;
    }

    .ad-footer-subscribe button {
        width: 30%;
    }

    .ad-footer-list-container {
        margin: 20px 0 20px 30px;
    }

    .ad-footer-list h5 {
        font-size: 20px;
    }

    .ad-footer-bottom {
        height: auto;
        padding: 10px;
    }
}

@media screen and (max-width:479px) {
    .ad-footer-bottom img {
        width: 70%
    }
}


/**********************************************************
                          Menu Page
 *********************************************************/

.ad-menu-banner {
    background-image: url(../img/aida-images/menu-banner.png);
    height: 350px;
}

.ad-menu-banner-overlay {
    height: 100%;
    width: 100%;
    display: flex;
    top: 6%;
    left: 0;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
}

.ad-menu-banner-overlay div {
    font-size: 16px;
    font-weight: 600;
    background-color: white;
    padding: 14px 22px;
    font-family: var(--jost);
    text-transform: uppercase;
    box-shadow: -8px 16px 18px -12px #f3f3f3, 3px 2px 12px -5px #f3f3f3;
}

.ad-menu-banner-overlay a {
    color: #062126;
    text-decoration: none;
}

.ad-menu-banner-overlay a:last-child {
    color: #af7a31;
}

.ad-menu-banner-overlay a:hover {
    color: #af7a31;
    transition: 0.4s;
}

/* QR Code */
.ad-menu-qr-code {
    background-image: url(../img/aida-images/menu-qr-code-bg.png);
    height: 230px;
    width: 60%;
    margin: auto;
    margin-top: 130px;
}

.ad-menu-qr-code-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.ad-menu-qr-code-container p {
    font-size: 45px;
    color: #062126;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 55px;
}

@media screen and (max-width:1399px) {
    .ad-menu-qr-code {
        width: 80%;
    }
}

@media screen and (max-width: 1199px) {
    .ad-menu-qr-code-container p {
        font-size: 30px;
    }
}

@media screen and (max-width: 991px) {
    .ad-menu-qr-code {
        height: auto;
        width: 90%;
        margin-top: 100px;
    }

    .ad-menu-qr-code-container {
        flex-direction: column-reverse;
        padding-top: 20px;
    }

    .ad-menu-qr-code-container p {
        font-size: 30px;
        padding-top: 20px;
        display: flex;
        justify-content: center;
    }

    .ad-menu-lunch {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 767px) {
    .ad-menu-banner {
        height: 300px;
    }

    .ad-menu-qr-code-container p {
        font-size: 25px;
        padding-top: 20px;
        line-height: 35px;

    }
}

@media screen and (max-width: 575px) {
    .ad-menu-banner {
        height: 250px;
    }
}

@media screen and (max-width: 479px) {
    .ad-menu-qr-code-container p {
        font-size: 20px;

    }
}

/* Happy Hours */
.ad-menu-happy-ours {
    text-align: center;
    margin-top: 130px;
}

@media screen and (max-width: 1399px) {
    .ad-menu-happy-ours {
        margin-top: 100px;
    }
}

@media screen and (max-width:991px) {
    .ad-menu-happy-ours {
        margin-top: 80px;
    }
}

@media screen and (max-width: 479px) {
    .ad-menu-happy-ours {
        margin-top: 70px;
    }
}

/* Footer */
.ad-menu-footer {
    margin-top: 120px;
}

@media screen and (max-width: 991px) {
    .ad-menu-footer {
        margin-top: 90px;
    }
}

@media screen and (max-width:767px) {
    .ad-menu-footer {
        margin-top: 70px;
    }
}

/********************************************
                 About Page
 *********************************************/
.ad-about-page-section {
    margin-top: 130px;
}

.about-page-cup {
    margin-left: 80px;
    padding-top: 80px;
}

.about-page-rounded-text {
    top: 7%;
    left: 82%;
}

/* Our Customers */
.about-page-shop-details {
    margin-top: 250px;
    background-image: url(../img/aida-images/about-page-customer-bg.webp);
    height: 300px;
    background-repeat: no-repeat;
    margin-top: 110px;
    background-size: cover;
}

.about-page-shop-details-container {
    padding-top: 0;
}

/* chef */
.about-page-chef {
    margin-top: 110px;
}

/* Discount */
.about-page-discount {
    background-image: url(../img/aida-images/about-page-discount-bg.png);
    background-repeat: no-repeat;
    height: 450px;
    width: 75%;
    margin: auto;
    margin-top: 120px;
    display: flex;
    gap: 100px;
    justify-content: space-around;
    padding-top: 70px;
}

.about-page-discount-text-container {
    color: white;
    padding-top: 40px;
}

.about-page-discount-text-container p {
    font-size: 18px;
    font-family: var(--jost);
    text-transform: uppercase;
}

.about-page-discount-text-container h4 {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 15px;
    letter-spacing: 2px;
}

.about-page-discount-text-container button {
    width: 165px;
    height: 56px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    background-color: #c59d5f;
    color: white;
    margin-top: 30px;
}

.about-page-discount-text-container button:hover {
    background-color: #af7a31;
    transition: 0.3s ease;
}

.about-page-discount-image {
    position: relative;
}

.about-page-discount-percent {
    position: absolute;
    top: calc(0% - 20px);
    left: 30%;
    background-color: #d90003;
    height: 67px;
    width: 68px;
    border-radius: 50%;
    color: white;
}

.about-page-discount-percent p {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: var(--jost);
    line-height: 18px;
}

.about-page-discount-percent span {
    font-size: 12px;
}

@media screen and (max-width:1529px) {
    .about-page-cup {
        margin-left: 120px;
    }
}

@media screen and (max-width:1399px) {
    .about-page-cup {
        margin-left: 90px;
    }
}

@media screen and (max-width:1199px) {
    .about-page-cup {
        width: 100px;
        padding-top: 30px;
        margin-left: 70px;
    }

    .about-page-rounded-text {
        left: 84%;
        top: 2%;
    }

    .about-page-bottom-image {
        top: 52%;
    }

    .about-page-discount {
        width: 90%;
    }
}

@media screen and (max-width:991px) {
    .about-page-shop-details {
        margin-top: 70px;
    }

    .about-page-chef {
        margin-top: 70px;
    }

    .ad-about-page-section {
        margin-top: 90px;
    }

    .about-page-cup {
        margin-left: 60px;
    }

    .about-page-rounded-text {
        left: 110%;
    }

    .about-page-bottom-image {
        top: 56%;
    }

    .about-page-discount {
        width: 100%;
        margin-top: 80px;
    }

    .about-page-discount-text-container h4 {
        font-size: 30px;
    }

    .about-page-discount-text-container button {
        width: 125px;
        height: 46px;
        font-size: 16px;
    }
}

@media screen and (max-width:767px) {
    .about-page-cup {
        margin-left: 40px;
        padding-top: 10px;
        width: 80px;
    }

    .about-page-rounded-text {
        left: 120%;
    }

    .about-page-bottom-image {
        top: 56%;
    }

    .about-page-discount {
        flex-direction: column;
        justify-content: start;
        align-items: center;
        gap: 30px;
        padding-top: 20px;
    }

    .about-page-discount-text-container {
        padding-top: 0;
    }

    .about-page-discount-text-container h4 {
        margin-top: 0px;
    }

    .about-page-discount-text-container button {
        margin-top: 10px;
        width: 115px;
        font-size: 14px;
        height: 40px;
    }

    .about-page-discount-image img {
        height: 70%;
    }
}

@media screen and (max-width:575px) {
    .about-page-cup {
        width: 60px;
        padding-top: 40%;
        margin-left: 45px;
    }

    .about-page-rounded-text {
        left: 240px;
    }

    .about-page-bottom-image {
        top: 56%;
    }
}

@media screen and (max-width:479px) {
    .about-page-cup {
        width: 50px;
        padding-top: 58%;
        margin-left: 64%;
    }

    .about-page-rounded-text {
        left: 170px;
    }

    .about-page-bottom-image {
        top: 56%;
    }

    .about-page-discount-text-container p {
        font-size: 14px;
    }

    .about-page-discount-text-container h4 {
        font-size: 25px;
    }

    .about-page-discount-text-container button {
        margin-top: 10px;
        width: 95px;
        font-size: 12px;
        height: 35px;
    }

    .about-page-discount-image img {
        height: 70%;
    }
}

@media screen and (max-width:379px) {
    .about-page-rounded-text img {
        width: 100px;
    }

    .about-page-cup {
        width: 40px;
    }
}


/********************************************************************
                                Contact Page
 ********************************************************************/
.contact-page-office-container {
    margin-top: 150px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.contact-page-single-office svg {
    width: 22px;
    height: 35px;
    color: #c8a36b;
}

.contact-page-single-office h5 {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: bold;
    color: #062126;
    text-transform: uppercase;
}

.contact-page-single-office p {
    font-size: 20px;
    color: #062126;
    font-weight: 600;
    margin-top: 10px;
    margin-left: 15px;
}

.contact-page-single-office span {
    color: #606060;
    font-family: var(--jost);
    margin-left: 15px;
    font-weight: 500;
}

.contact-page-single-office a {
    color: #606060;
    font-family: var(--jost);
    font-weight: 500;
}

.contact-page-outlet {
    transition: 0.6s;
}

.contact-page-outlet:hover {
    transform: scale(1.06);
}

/* Contact Form */
.contact-page-form-container {

    display: flex;
    gap: 30px;
    width: 75%;
    margin: auto;
    margin-top: 130px;
}

.contact-page-form {

    background-image: url(../img/aida-images/contact-page-form-bg.png);
    height: 560px;
    width: 70%;
    color: white;
    padding-left: 30px;
}

.contact-page-form h4 {
    font-size: 40px;
    font-weight: bold;
    color: #fefefe;
    text-transform: uppercase;
    padding-top: 50px;
}

.contact-page-form p {
    font-size: 18px;
    font-weight: 500;
    color: #fefefe;
    font-family: var(--jost);
}

.contact-page-single-form div {
    padding: 0;
}

.contact-page-single-form input {
    width: 95%;
    padding-left: 30px;
    color: #c3c3c3;
    font-size: 16px;
    padding-bottom: 6px;
    text-transform: none;
}

.contact-page-single-form input::placeholder {
    color: #c3c3c3;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
}

.contact-page-single-form i {
    position: absolute;
    color: #c3c3c3;
    font-size: 16px;
    top: 10%;
    width: 20px;
}

.contact-page-single-form .fa-user {
    left: 4%;
}

.contact-page-single-form .fa-phone {
    left: 4%;
}

.contact-page-single-form .fa-pen {
    left: 0%;
    top: 4%;
}

.contact-page-single-form .fa-envelope {
    left: 0%;
}

.contact-page-single-form .fa-user-large {
    left: 0%;
}

.contact-page-form-edit span {
    text-transform: uppercase;
    color: #c3c3c3;
    font-weight: 500;
}

.contact-page-form-edit input {
    width: 97%;
    padding-left: 20px;
    margin-top: 30px;
}

.contact-page-form button {
    width: 165px;
    height: 56px;
    background-color: #c49c5f;
    color: white;
    border: none;
    margin-top: 30px;
    font-size: 18px;
    text-transform: uppercase;
    margin-left: 7px;
}

.contact-page-form button:hover {
    background-color: #af7a31;
    transition: 0.3s ease;
}

.contact-page-form-right {
    background-color: #062126;
    height: 560px;
    width: 30%;
    color: white;
    padding-top: 50px;
    padding-left: 4%;
}

.contact-page-right-single-container {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.contact-page-form-right i {
    font-size: 65px;
    color: #c49c5f;
    width: 65px;
    display: flex;
    justify-content: center;
}

.contact-page-form-right h5 {
    font-size: 24px;
    font-weight: 600;
}

.contact-page-form-right span {
    font-size: 18px;
    font-family: var(--jost);
}

.contact-page-form-right a {
    color: white;
}

.contact-page-map {
    z-index: -1;
    position: relative;
    margin-top: calc(0% - 112px);
}

.contact-page-map iframe {
    width: 100%;
    height: 600px;
}

@media screen and (max-width: 1529px) {
    .contact-page-form-container {
        width: 80%;
    }
}

@media screen and (max-width: 1399px) {
    .contact-page-form-container {
        width: 90%;
        margin-top: 100px;
    }

    .contact-page-form-right i {
        font-size: 45px;
        width: 45px;
    }

    .contact-page-office-container {
        margin-top: 100px;
    }
}

@media screen and (max-width: 1199px) {

    .contact-page-form-container {
        margin-top: 80px;
    }

    .contact-page-form-right i {
        font-size: 40px;
        width: 40px;
    }

    .contact-page-form-right h5 {
        font-size: 20px;
    }

    .contact-page-form-right span {
        font-size: 16px;
    }

    .contact-page-office-container {
        margin-top: 80px;
    }
}

@media screen and (max-width: 991px) {
    .contact-page-form-container {
        flex-direction: column;
        gap: 30px;
        margin-top: 60px;
    }

    .contact-page-form {
        width: 100%;
    }

    .contact-page-form-right {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        padding-top: 0;
        padding-left: 0;
        justify-content: center;
        height: 200px;
    }

    .contact-page-map {
        margin-top: calc(0% - 40px);
    }

    .contact-page-map iframe {
        height: 400px;
    }


    .contact-page-right-single-container {
        gap: 10px;
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .contact-page-form-right {
        height: auto;
        padding: 50px 20px;
    }
}

@media screen and (max-width: 575px) {
    .contact-page-single-form i {
        top: 32%;
    }

    .contact-page-single-form .fa-user {
        left: 5%;
    }

    .contact-page-single-form .fa-phone {
        left: 5%;
    }

    .contact-page-single-form .fa-pen {
        left: 0%;
        top: 4%;
    }

    .contact-page-single-form .fa-envelope {
        left: 5%;
    }

    .contact-page-single-form .fa-user-large {
        left: 5%;
    }

    .contact-page-phone-container {
        margin-top: 0;
    }

    .contact-page-form-edit {
        margin-top: 20px;
    }

    .contact-page-form button {
        width: 135px;
        height: 46px;
        font-size: 15px;
    }

    .contact-page-form h4 {
        font-size: 30px;
    }

    .contact-page-form p {
        font-size: 14px;
    }

    .contact-page-map iframe {
        height: 300px;
    }
}

@media screen and (max-width:479px) {
    .contact-page-form {
        height: auto;
        padding-bottom: 30px;
    }

    .contact-page-form h4 {
        font-size: 25px;
    }

    .contact-page-single-office img {
        width: 100%;
    }

    .contact-page-form-right {
        justify-content: start;
    }
}


/******************************************************************************
                                Reservation Page
*******************************************************************************/
.reservation-page {
    background-image: url(../img/aida-images/reservation-page-bg.png);
    height: 750px;
    width: 80%;
    margin: auto;
    margin-top: 110px;
    text-align: center;
    padding-top: 70px;
}

.reservation-page-title-container h4 {
    font-size: 45px;
    color: #062126;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
}

.reservation-page-title-container p {
    font-size: 18px;
    color: #606060;
    font-family: var(--jost);
    width: 780px;
    margin: auto;
    margin-top: 10px;
}

.reservation-page-direction-container {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    /* align-items: center; */
}

.reservation-page-single-direction {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reservation-page-single-middle-direction {
    padding-top: 80px;
}

.reservation-page-direction {
    padding-top: 70px;
}

.reservation-page-right-direction {
    padding-top: 50px;
}

.reservation-page-single-direction p {
    font-size: 45px;
    color: #062126;
    font-family: var(--jost);
    width: 100px;
    height: 100px;
    border: 4px dashed #e3d3bb;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reservation-page-single-direction h6 {
    font-size: 24px;
    color: #062126;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
}

.reservation-page-form {
    background-image: url(../img/aida-images/reservation-page-input-form-bg.png);
    height: 500px;
    width: 60%;
    margin: auto;
    color: white;
    position: absolute;
    top: 75%;
    left: 20%;
}

.reservation-page-form-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 80px;

}

.reservation-page-form input {
    border: none;
    border-bottom: 1px solid #9f9f9f;
    background-color: transparent;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 10px;
    color: #9f9f9f;
    font-size: 16px;
    font-family: var(--jost);
    outline: none;
    color-scheme: dark;
}

.reservation-page-select-field {
    border: none;
    border-bottom: 1px solid #9f9f9f;
    background-color: transparent;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 10px;
    color: #9f9f9f;
    font-size: 16px;
    font-family: var(--jost);
    outline: none;
    color-scheme: dark;
}

.reservation-page-form input::placeholder {
    color: #9f9f9f;
    text-transform: uppercase;
    font-size: 16px;
    font-family: var(--jost);
}

.reservation-page-form button {
    width: 133px;
    height: 52px;
    background-color: #c49c5f;
    text-transform: uppercase;
    border: none;
    font-size: 18px;
    color: white;
    margin-top: 40px;
    margin-left: 5%;
}

.reservation-page-form button:hover {
    background-color: #af7a31;
    transition: 0.3s ease;
}

/* Subscribe */
.reservation-page-subscribe {
    margin-top: 450px;
    background-color: #062126;
    background-image: url(../img/aida-images/reservation-page-subscribe-bg.png);
    height: 280px;
    color: white;

}

.reservation-page-subscribe-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.reservation-page-subscribe h5 {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

.reservation-page-subscribe p {
    font-size: 18px;
}

.reservation-page-subscribe input {
    width: 70%;
    height: 60px;
    background-color: transparent;
    border: 1px solid white;
    padding-left: 20px;
    color: white;
    font-size: 18px;
    outline: none;
}

.reservation-page-subscribe input::placeholder {
    font-size: 18px;
    font-family: var(--jost);
    color: white;
}

.reservation-page-subscribe a {
    height: 60px;
    width: 23%;
    line-height: 60px;
    text-align: center;
    background-color: #c49c5f;
    color: white;
    border: none;
    font-size: 18px;
    font-family: var(--jost);
    margin-left: 12px;
    text-transform: uppercase;
}

.reservation-page-subscribe a:hover {
    background-color: #af7a31;
    transition: 0.3s ease;
}

/* Video */
.reservation-page-video {
    margin-top: 100px;
    text-align: center;
}

.reservation-page-video-slider {
    width: 950px;
    margin: auto;
    margin-top: 50px;

}

.reservation-page-video-container {
    height: 490px;
}

.reservation-page-video-container img {
    width: 100%;
}

.reservation-page-video-btn-container {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #c49c5f;
    width: 190px;
    height: 95px;
}

.reservation-page-video-prev-btn {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 20%;
    left: 15%
}

.reservation-page-video-next-btn {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 20%;
    left: 52%
}

.reservation-page-video-icon i {
    width: 100px;
    height: 100px;
}

.reservation-page-title-container h4 {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

@media screen and (max-width:1529px) {
    .reservation-page-subscribe-container {
        gap: 60px;
    }
}

@media screen and (max-width:1399px) {
    .reservation-page-subscribe-container {
        width: 90%;
    }

    .reservation-page-subscribe h5 {
        font-size: 35px;
    }
}

@media screen and (max-width:1199px) {
    .reservation-page {
        width: 100%;
    }

    .reservation-page-direction-container {
        gap: 0;
    }

    .reservation-page-form {
        width: 70%;
        left: 16%;
    }

    .reservation-page-subscribe h5 {
        font-size: 35px;
    }

    .reservation-page-subscribe-container {
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        width: 100%;
    }
}

@media screen and (max-width:991px) {
    .reservation-page-video {
        margin-top: 80px;
    }

    .reservation-page-subscribe {
        margin-top: 400px;
    }

    .reservation-page-title-container p {
        width: 90%;
    }

    .reservation-page-direction-container img {
        width: 160px;
    }

    .reservation-page-single-direction p {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .reservation-page-single-direction h6 {
        font-size: 20px;
    }

    .reservation-page-direction-container {
        width: 100%;
    }

    .reservation-page-video-slider {
        width: 100%;
    }

    .reservation-page-video-container {
        height: 100%;
    }
}

@media screen and (max-width:767px) {
    .reservation-page-direction-container {
        width: 98%;
        padding: 0 10px;
    }

    .reservation-page-direction-container img {
        width: 120px;
    }

    .reservation-page-single-direction h6 {
        font-size: 18px;
    }

    .reservation-page-video-icon i {
        height: 60px;
        width: 60px;
    }

    .reservation-page-video-btn-container {
        width: 150px;
        height: 75px;
    }

    .reservation-page-video-prev-btn {
        top: 12%;
        left: 10%;
    }

    .reservation-page-video-next-btn {
        top: 12%;
    }
}

@media screen and (max-width:575px) {
    .reservation-page-title-container h4 {
        font-size: 30px;
    }

    .reservation-page-direction-container {
        width: 100%;

    }

    .reservation-page-direction-container img {
        width: 80px;
    }

    .reservation-page-single-direction h6 {
        font-size: 18px;
    }

    .reservation-page-form {
        width: 100%;
        left: 0%;
        margin-top: 30px;
    }

    .reservation-page-subscribe h5 {
        font-size: 30px;
    }

    .reservation-page-subscribe a {
        font-size: 14px;
    }

}

@media screen and (max-width:479px) {
    .reservation-page-title-container h4 {
        font-size: 25px;
    }

    .reservation-page-direction-container {
        width: 98%;
        padding: 0 20px;
    }

    .reservation-page-single-direction p {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .reservation-page-single-direction h6 {
        font-size: 14px;
    }

    .reservation-page-form button {
        width: 105px;
        height: 42px;
    }

    .reservation-page-subscribe h5 {
        font-size: 25px;
    }

    .reservation-page-subscribe p {
        font-size: 14px;
    }

    .reservation-page-subscribe a {
        font-size: 60%;
        height: 40px;
    }

    .reservation-page-subscribe input {
        height: 40px;
    }

    .reservation-page-video-icon i {
        height: 45px;
        width: 45px;
    }

    .reservation-page-video-btn-container {
        width: 30%;
        height: 25%;
    }

    .reservation-page-video-prev-btn {
        top: 2%;
        left: 10%;
    }

    .reservation-page-video-next-btn {
        top: 2%;
    }
}

@media screen and (max-width:400px) {
    .reservation-page-direction-container img {
        display: none;
    }

    .reservation-page-form {
        margin-top: 50px;
    }

    .reservation-page-video-prev-btn {
        top: calc(0% - 7px);
        left: 4%;
    }

    .reservation-page-video-next-btn {
        top: calc(0% - 7px);
        left: 40%;
    }
}

@media screen and (max-width:400px) {
    .reservation-page-video-prev-btn {
        top: calc(0% - 10px);
        left: 0%;
    }

    .reservation-page-video-next-btn {
        top: calc(0% - 10px);
        left: 40%;
    }
}
