/* font family start */

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/Roboto-Regular.eot");
    src: url("../assets/fonts/Roboto-Regular.woff") format("woff"),
        url('../assets/fonts/Roboto-Regular.ttf') format('truetype'),
        url("../assets/fonts/Roboto-Regular.woff2") format("woff2"),
        url("../assets/fonts/Roboto-Regular.svg?#Roboto-Regular") format("svg");
}

/* font family end */

/* common css start */

html {
    font-size: 16px;
}

body {
    background: #ffffff;
    color: #000000;
    padding-top: 0px !important;
    font-family: "Roboto";
    font-size: 16px;
    font-weight: 400;
}

.row {
    margin: 0 auto;
    max-width: 91.429rem;
    width: 100%;
    display: block;
}

*:focus {
    outline: none;
}

a {
    color: #3e7ccc;
    text-decoration: none;
    -webkit-transition: color 0.1s linear;
    transition: color 0.1s linear;
}

a:hover {
    color: #0056b3;
}

strong {
    font-weight: bold;
}

pre {
    font-family: monospace;
    color: #323232;
    background: #f0f0f0;
    padding: 20px;
    margin-bottom: 30px;
    overflow-x: scroll;
}

img {
    height: auto;
    max-width: 100%;
}

form {
    overflow: hidden;
}

embed,
iframe,
object,
video {
    max-width: 100%;
}

.no-padding {
    padding: 0px !important;
}

.full-width {
    width: 100% !important;
}

.color-black {
    color: #000;
}

.text-decoration {
    text-decoration: underline;
}

.bg-blue {
    background: #36017E;
}

p {
    margin: 0;
}

.show-for-small {
    display: none;
}

/* common css end */

/* header css start */
.full-width-header {
    padding: 11px 0;
}

/* banner section css start */
.banner-section {
    position: relative;
}

.desktop-banner-img {
    width: 100%;
}

.overlay-section {
    position: absolute;
    top: 0;
    background: rgba(54, 1, 126, 0.8);
    width: 43%;
    height: 100%;
    left: 0;
}

.banner-content {
    max-width: 540px;
    padding: 71px 84px;
    color: #fff;
    position: relative;
    height: 100%;
}

.banner-headings {
    position: absolute;
    bottom: 71px;
    left: 84px;
}

.banner-headings h1 {
    font-size: 85px;
    font-weight: 400;
}

.banner-headings h3 {
    font-size: 48px;
    font-weight: 400;
}

.middle-content {
    padding: 50px 10px;
    max-width: 790px;
    width: 100%;
    margin: 0 auto;
}

.book-room-section h5 {
    font-size: 32px;
    font-weight: 700;
}

.room-finder-text {
    font-size: 24px;
    margin: 30px 0;
    text-align: left;
}

.room-book-steps ul {
    list-style-type: none;
    text-align: left;
    padding-left: 30px;
}

.room-book-steps ul li {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.room-book-steps ul li div:first-child {
    margin-right: 20px;
}

/* .room-book-steps ul li::before {
    content: "";
    position: absolute;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(54, 1, 126, 0.35);
    display: inline-block;
    text-align: center;
    padding: 12px;
} */

.room-book-steps .steps-no {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(54, 1, 126, 0.35);
    display: inline-block;
    text-align: center;
    padding: 12px;
}

.room-book-steps .steps-no.no-2 {
    background: rgba(54, 1, 126, 0.65);
}

.room-book-steps .steps-no.no-3 {
    background: #36017E;
}

.video-wrapper video {
    width: 100%;
    height: 340px;
}

.video-description {
    font-size: 24px;
    margin: 40px 0;
}

.book-desk-btn {
    margin: 60px 0 30px;
}

.book-desk-btn .btn {
    width: 50%;
    background: #36017E;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
    padding: 10px 10px;
}

.room-book-service {
    margin-top: 35px;
    text-align: left;
}

.room-book-heading {
    font-size: 24px;
    font-weight: 700;
}

.room-book-content {
    font-size: 16px;
}

.room-with-link {
    margin-top: 20px;
}

.individual-room-book {
    background: #f3f3f3;
    padding: 25px;
}

.note-italic-text {
    font-size: 14px;
    font-style: italic;
    margin-top: 15px;
}

/* footer section css start */
.full-width-footer {
    padding: 11px 0;
    text-align: center;
}

.footer-content {
    font-size: 18px;
    color: #fff;
    padding: 20px;
}

/* Media Query screen for 320px to 767px */
@media only screen and (max-width: 1366px) {
    .banner-headings h1 {
        font-size: 70px;
        font-weight: 400;
    }

    .banner-headings h3 {
        font-size: 40px;
        font-weight: 400;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .overlay-section {
        width: 100%;
    }

    .banner-content {
        max-width: 550px;
    }

    .banner-headings {
        bottom: 28px;
        left: 84px;
    }

    .middle-content {
        padding: 50px 35px;
    }
}


@media screen and (min-width: 320px) and (max-width: 767px) {

    .hide-for-small {
        display: none;
    }

    .show-for-small {
        display: block;
    }

    .overlay-section {
        width: 100%;
    }

    .banner-content {
        max-width: 310px;
        padding: 10px;
        color: #fff;
        position: relative;
        height: 100%;
    }

    .banner-headings {
        position: absolute;
        bottom: 10px;
        left: 54px;
    }

    .banner-headings h1 {
        font-size: 48px;
        font-weight: 400;
    }

    .banner-headings h3 {
        font-size: 22px;
        font-weight: 400;
    }

    .mob-logo-section {
        bottom: 15px;
        position: absolute;
        right: 15px;
    }

    .mob-logo-section img {
        max-width: 96px;
    }

    .middle-content {
        padding: 50px 35px;
    }

    .book-room-section h5 {
        font-size: 16px;
    }

    .room-finder-text {
        font-size: 14px;
        margin: 21px 0;
        text-align: center;
    }

    .room-book-steps ul li {
        font-size: 14px;
    }

    .room-book-steps ul li div:first-child {
        margin-right: 14px;
    }

    .room-book-steps .steps-no {
        font-size: 20px;
        width: 36px;
        height: 36px;
        padding: 3px;
    }

    .video-wrapper video {
        height: 194px;
    }

    .video-description {
        font-size: 14px;
        margin: 30px 0;
    }

    .book-desk-btn {
        margin: 30px 0 0px;
    }

    .book-desk-btn .btn {
        font-size: 14px;
    }

    .full-width-footer {
        padding: 10px 30px;
    }

    .individual-room-book {
        padding: 20px;
    }

    .room-book-heading,
    .room-book-content {
        font-size: 14px;
    }

    .note-italic-text {
        font-size: 12px;
    }

    .footer-content {
        font-size: 14px;
        color: #fff;
        text-align: center;
    }

    .footer-content p:first-child {
        padding-bottom: 15px;
    }
}

@media screen and (min-width: 320px) and (max-width: 376px) {
    .banner-content {
        max-width: 270px;
    }

    .banner-headings h1 {
        font-size: 40px;
    }

    .banner-headings h3 {
        font-size: 20px;
    }


}