@import url("https://use.typekit.net/eba0mnk.css");
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
    flex: 0;
}

.mainContent {
    flex: 1;
    display: flex;
    flex-direction:column;
}
.weak {
    color: red;
}

.acceptable {
    color: aquamarine !important;
}

.excellent {
    color: green !important;
}

.swal2-input {
    display: none !important;
}

.swal2-file {
    display: none !important;
}

.swal2-select {
    display: none !important;
}

.upload-card {
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
}

.login-card h4 {
    color: #242f44 !important;
}

/**Admin Form labels*/
.form-label {
    margin-bottom: .5rem;
    font-size: 18px;
    font-weight: bold;
}

.dataTables_wrapper .dataTables_length select {
    width: auto !important;
    display: inline-block !important;
    background: none !important;
}

select {
    padding-right: 30px !important;
    background: url(../images/arrow.png) no-repeat !important;
    background-size: 15px 15px !important;
    background-position: calc(100% - 15px) 18px !important;
}

.admin-nav {
    margin-top: 40px;
    text-align: center;
}

/*input, select {
    background: #f5f6f8 !important;
    border-radius: 0 !important;
    border: 1px solid #e9e9e9 !important;
    color: #000 !important;
    padding: 0px 20px !important;
    display: block !important;
    width: 100% !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}*/

.button-center {
    text-align: center;
    display: inline-block;
}

    .button-center .button {
        width: auto !important;
        display: inline-block !important;
        margin-top: 20px;
    }

.mb-40 {
    margin-bottom: 40px;
}

.login-card .form-align {
    padding-left: 0px !important;
}

.login-card .form-check-label {
    color: #242f44 !important;
}

.imagePreview {
    width: 38px;
    height: 38px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 15px;
    flex-shrink: 0;
    display: block;
}

.file-upload {
    display: flex;
    align-items: center;
    padding: 5px;
    margin-bottom: 0px;
    position: relative;
    border-radius: 4px;
    background-color: #f5f6f8;
    border: 1px solid #e9e9e9;
}

.file-select {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}


.file-select-name {
    margin-left: 15px;
}

.file-select input[type=file] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.file-remove {
    margin-left: 15px;
    position: absolute;
    right: 15px;
    top: 20px;
}

.upload p {
    margin-top: 5px;
    margin-bottom: 0px;
    font-size: 14px;
}


.password-container {
    position: relative;
}

.spanPwd {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/*multilingual dropdown*/
.wrapper-dropdown {
    position: relative;
    display: inline-block;
    min-width: 110px;
    width: 100%;
    max-width: 483px;
    padding: 0;
    background: none;
    text-align: left;
    color: #000;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.scrollable-menu {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}

.arrow-section {
    padding: 0px;
    width: 12px;
    height: 12px;
    text-align: center;
    margin-left: auto;
    float: right;
}

.arrow {
    margin-left: 3px;
    margin-right: 0;
    rotate: 180deg;
    margin-top: 5px;
}

.selected-display,
.selected-display a {
    margin-left: 0;
    color: #00618d;
}

.wrapper-dropdown svg {
    transition: all 0.3s;
}

.wrapper-dropdown::before {
    position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -2px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #fff transparent;
}

.rotated {
    transform: rotate(-180deg);
    margin-top: 12px;
    margin-right: -5px;
}

.wrapper-dropdown .dropdown {
    transition: 0.3s;
    position: absolute;
    top: 30px;
    right: 0;
    left: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 99999;
    border-radius: 5px;
    background-color: #fff;
    user-select: none;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
}

    .wrapper-dropdown .dropdown a {
        padding: 5px 8px;
        width: 100%;
        display: block;
    }

    .wrapper-dropdown .dropdown li {
        padding: 0;
        line-height: 20px;
        overflow: hidden;
    }

        .wrapper-dropdown .dropdown li:last-child {
            border-bottom: none;
        }

.dropdown {
    padding: 0.5rem !important;
}

.wrapper-dropdown .dropdown li:hover {
    background-color: rgb(240, 240, 240);
    border-radius: 5px;
}

.wrapper-dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;
    border-radius: 5px;
}

.wrapper-dropdown #destination a {
    pointer-events: none;
}


@media (min-width:320px) and (max-width:767px) {
    .wrapper-dropdown {
        font-size: 10px;
        padding-bottom: 6px;
    }

    .arrow-section {
        width: 15px;
        height: 15px;
    }

        .arrow-section svg {
            width: 12px;
            height: 12px;
        }

    .selected-display,
    .selected-display a {
        margin-left: 20px;
    }

    .wrapper-dropdown .dropdown a {
        font-size: 10px;
        padding: 2px 5px;
    }

    .back-btn-lc {
        display: none;
    }
}

/*End*/

.lnkAttachSOWuploader {
    background: #242f44;
    color: #FFFFFF;
    padding: 12px 20px;
    font-size: 18px;
    margin-bottom: 30px;
}

.booking-block .lnkAttachSOWuploader label {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

#imgPreview,
#imgPreviewAdmin {
    display: none;
    width: 50px;
    max-width: 100px;
    height: 46px;
    position: absolute;
    right: 75px;
    top: 745px;
    transform: translate(-50%, -50%);
    /* Center the element properly */
    border: 3px solid #fa9f11;
}

#imgPreviewAdmin {
    display: block !important;
}

@media (max-width: 768px) {

    #imgPreview,
    #imgPreviewAdmin {
        width: 30vw;
        /* Adjust width using viewport width units */
        max-width: 60px;
        /* Limit maximum width for smaller screens */
        height: auto;
        /* Maintain aspect ratio */
        right: 10px;
        /* Adjust position from the right */
        top: 50vh;
        /* Center vertically relative to viewport height */
        transform: translate(-50%, -50%);
        /* Center the element properly */
    }
}

body {
    font-family: "allotrope", sans-serif;
    font-weight: normal;
    font-style: normal;
}

p {
    color: #242f44;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-weight: normal;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 30px;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

a {
    color: #e11f8f;
    text-decoration: none;
}

    a:hover {
        color: #e11f8f !important;
    }

.p_0 {
    padding: 0;
}

.button {
    background-color: #e11f8f !important;
    color: #fff !important;
    font-size: 18px;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    text-transform: uppercase;
    display: inline-block;
}

    .button:hover {
        background-color: #242f44 !important;
        color: #fff !important;
    }

.section-title h1 {
    font-family: "allotrope", sans-serif;
    color: #242f44;
    font-size: 40px;
    line-height: 20px;
    margin-bottom: 25px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
}

.section-title p {
    color: #242f44;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-weight: normal;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 30px;
    width: 90%;
    margin: 0px auto;
    text-align: center;
}

.section-title hr {
    border: 3px solid #e11f8f;
    width: 120px;
    margin: 0px auto;
    opacity: 1;
    margin-bottom: 30px;
}

.header-top-area {
    padding: 20px 0px;
}

.banner img {
    width: 100%;
}

.menu-bod {
    display: inline-block;
}

.first-menu {
    float: right;
}

    .first-menu ul li {
        float: left;
    }

        .first-menu ul li a {
            color: #242f44;
            padding: 10px 12px;
            font-weight: 500;
            font-size: 16px;
        }

            .first-menu ul li a.active {
                color: #e11f8f;
                font-weight: 700;
            }

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.header-right-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .header-right-top .details {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
        margin-left: auto;
        padding: 10px 20px 0 20px;
        padding-top: 0px;
        grid-gap: 20px;
        text-transform: uppercase;
    }

        .header-right-top .details h3 {
            font-weight: 700;
            color: #e11f8f;
            font-size: 16px;
            margin: 0;
        }

        .header-right-top .details a {
            font-weight: 500;
            color: #242f44;
            font-size: 16px;
        }

.language-dropdown {
    margin-top: -10px;
}

    .language-dropdown select {
        background-color: #fff;
        border: thin solid #e11f8f;
        border-radius: 4px;
        display: inline-block;
        padding: 0px 3.5em 0px 1em;
        margin: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 40px;
        border: none;
        color: #00618d;
    }

        .language-dropdown select.minimal {
            background-image: linear-gradient(45deg, transparent 50%, #00618d 50%), linear-gradient(135deg, #00618d 50%, transparent 50%), linear-gradient(to right, #00618d, #00618d);
            background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
            background-size: 5px 5px, 5px 5px, 1px 1.5em;
            background-repeat: no-repeat;
        }

            .language-dropdown select.minimal:focus {
                background-image: linear-gradient(45deg, #00618d 50%, transparent 50%), linear-gradient(135deg, transparent 50%, #00618d 50%), linear-gradient(to right, #00618d, #00618d);
                background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
                background-size: 5px 5px, 5px 5px, 1px 1.5em;
                background-repeat: no-repeat;
                border-color: green;
                outline: 0;
            }

.navbar {
    padding-bottom: 0px;
}

    .navbar .nav-item {
        padding: 0px 20px;
    }

    .navbar .nav-link {
        width: 100%;
        color: #242f44;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        padding: 0px;
    }

    .navbar .nav-item:last-child {
        padding-right: 0px !important;
    }

    .navbar .fa-bars {
        color: #e11f8f;
        font-size: 30px;
    }

.header-right-top .details a {
    text-decoration: none !important;
}

    .header-right-top .details a.link-bar:first-child {
        color: #242f44 !important;
    }

    .header-right-top .details a.link-bar:hover:first-child {
        color: #e11f8f !important;
    }

.custom-select {
    position: relative;
}

    .custom-select select {
        display: none;
    }

.select-selected {
    background-color: DodgerBlue;
}

    .select-selected:after {
        position: absolute;
        content: "";
        top: 15px;
        right: 12px;
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-color: #fff transparent transparent transparent;
    }

    .select-selected.select-arrow-active:after {
        border-color: transparent transparent #fff transparent;
        top: 9px;
    }

.select-items div,
.select-selected {
    color: #ffffff;
    padding: 5px 15px;
    background-color: #00618d;
    cursor: pointer;
    user-select: none;
}

.select-items {
    position: absolute;
    background-color: #00618d;
    color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.home-banner {
    background-repeat: no-repeat;
    background-position: center;
    -ms-background-size: cover;
    background-size: cover;
    z-index: 0;
    position: relative;
    height: 100%;
}

    .home-banner::before {
        content: '';
        background: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -1;
        height: 100%;
    }

    .home-banner .image-poster {
        width: 100%;
        position: absolute;
        overflow: hidden;
        height: 100%;
    }

        .home-banner .image-poster .banner-image {
            position: relative;
            top: 0;
            height: 100%;
            width: 100%;
            overflow: hidden;
        }

            .home-banner .image-poster .banner-image::before {
                /*content: '';
                background: rgba(0, 0, 0, 0.5);
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                height: 100%;*/
            }

            .home-banner .image-poster .banner-image img {
                width: 100%;
                height: 100%;
                -o-object-fit: cover;
                object-fit: cover;
                -o-object-position: 15% 80%;
                object-position: 15% 80%;
            }

    .home-banner .home-inner {
        min-height: 90vh;
    }

.main-content .panel-intro {
    margin: 0 auto 60px;
    position: relative;
}

    .main-content .panel-intro .wave-mobile {
        position: absolute;
        top: -114px;
        left: 0;
        z-index: 2;
        width: 148px;
    }

    .main-content .panel-intro .wave-desktop {
        display: none;
    }

    .main-content .panel-intro .content {
        padding: 60px 15px 30px;
    }

        .main-content .panel-intro .content .custom-button {
            margin-bottom: 0;
        }

.main-content .highlights {
    position: relative;
    overflow: hidden;
    margin-bottom: -50px;
}

    .main-content .highlights .cols {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .main-content .highlights .cols .slide {
            position: relative;
            pointer-events: none;
        }

            .main-content .highlights .cols .slide .inner {
                position: relative;
            }

            .main-content .highlights .cols .slide:nth-child(1) .img-cont {
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
                width: 330px;
                height: 330px;
                -webkit-transform-origin: 12% 29%;
                transform-origin: 12% 29%;
            }

            .main-content .highlights .cols .slide:nth-child(1) .img {
                width: 464px;
                height: 464px;
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
                -webkit-transform-origin: 24% 61%;
                transform-origin: 24% 61%;
            }

            .main-content .highlights .cols .slide:nth-child(2) .img-cont {
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
                width: 263px;
                height: 263px;
                -webkit-transform-origin: 48% 87%;
                transform-origin: 48% 87%;
            }

            .main-content .highlights .cols .slide:nth-child(2) .img {
                width: 367px;
                height: 367px;
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
                -webkit-transform-origin: 25% 61%;
                transform-origin: 25% 61%;
            }

            .main-content .highlights .cols .slide:nth-child(3) .img-cont {
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
                width: 420px;
                height: 420px;
                -webkit-transform-origin: 27% 47%;
                transform-origin: 27% 47%;
            }

            .main-content .highlights .cols .slide:nth-child(3) .img {
                width: 586px;
                height: 306px;
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
                -webkit-transform-origin: 23% 117%;
                transform-origin: 23% 117%;
            }

            .main-content .highlights .cols .slide:nth-child(4) {
                -webkit-transform: translate(76px, -146px);
                transform: translate(76px, -146px);
                z-index: 3;
            }

                .main-content .highlights .cols .slide:nth-child(4) .img-cont {
                    width: 700px;
                    height: 363px;
                    margin-bottom: -146px;
                    border-top: 5px solid #fff;
                }

                .main-content .highlights .cols .slide:nth-child(4) .img {
                    height: 100%;
                }

                .main-content .highlights .cols .slide:nth-child(4) .content-section {
                    position: absolute;
                    top: 0;
                    left: 4px;
                    width: 691px;
                    height: 95%;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    -webkit-box-align: start;
                    -ms-flex-align: start;
                    align-items: flex-start;
                    text-align: center;
                    padding: 15px 286px 15px 127px;
                    z-index: 3;
                }

            .main-content .highlights .cols .slide.white {
                position: absolute;
                bottom: 0px;
                z-index: 4;
                background-color: #fff;
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
                -webkit-transform-origin: 91px -2px;
                transform-origin: 91px -2px;
                width: 592px;
                height: 294px;
                pointer-events: all;
            }

            .main-content .highlights .cols .slide.white-mobile {
                position: absolute;
                bottom: 0px;
                z-index: 4;
                background-color: #fff;
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
                -webkit-transform-origin: 94px 828px;
                transform-origin: 94px 828px;
                width: 380px;
                height: 535px;
                pointer-events: all;
            }

            .main-content .highlights .cols .slide.white-under {
                position: absolute;
                bottom: 0px;
                z-index: 3;
                background-color: #fff;
                width: 149px;
                height: 354px;
                -webkit-transform: translate(-345px, -9px);
                transform: translate(-345px, -9px);
                pointer-events: all;
            }

    .main-content .highlights .img-cont {
        position: relative;
        border: 4px solid #fff;
        border-radius: 5px;
        overflow: hidden;
        background-color: #fff;
        pointer-events: all;
    }

        .main-content .highlights .img-cont .img {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

.mt-n15 {
    margin-top: -15px;
}

@media (min-width: 1300px) {
    .main-content .panel-intro {
        margin: 0 auto 60px;
        display: grid;
        display: -ms-grid;
        grid-template-columns: 28% 8% 64%;
        -ms-grid-columns: 28% 8% 64%;
        margin-top: -45px;
        position: relative;
    }

        .main-content .panel-intro .wave-desktop {
            display: block;
            position: absolute;
            top: -52px;
            left: 0;
            height: 150px;
            z-index: 2;
        }

        .main-content .panel-intro .wave-mobile {
            display: none;
        }

        .main-content .panel-intro .content {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            padding: 50px 10px 80px 80px;
            grid-column: 1/3;
            -ms-grid-column: 1;
            -ms-grid-column-span: 2;
            grid-row: 1/2;
            -ms-grid-row: 1;
            -ms-grid-row-span: 1;
        }

            .main-content .panel-intro .content h1,
            .main-content .panel-intro .content .sitemap h4,
            .sitemap .main-content .panel-intro .content h4 {
                font-family: "allotrope", sans-serif;
                color: #242f44;
                font-size: 50px;
                line-height: 50px;
                margin-bottom: 40px;
                font-style: normal;
                font-weight: 700;
            }

            .main-content .panel-intro .content P {
                margin-bottom: 20px;
                font-weight: normal;
                color: #242f44;
                font-size: 17px;
                line-height: 30px;
            }

        .main-content .panel-intro .collection {
            grid-column: 2/4;
            -ms-grid-column: 2;
            -ms-grid-column-span: 2;
            grid-row: 1/2;
            -ms-grid-row: 1;
            -ms-grid-row-span: 1;
        }
}

@media (min-width: 1400px) {
    .main-content .panel-intro {
        -ms-grid-columns: 30% 12% 58%;
        grid-template-columns: 30% 12% 58%;
    }

    .navbar .nav-link {
        font-size: 18px;
    }
}

@media (-ms-high-contrast: none) {
    .main-content .highlights .cols .white-mobile.slide {
        -webkit-transform-origin: 37px 617px;
        transform-origin: 37px 617px;
    }

    .main-content .highlights .cols .white.slide {
        -webkit-transform-origin: -23px -281px;
        transform-origin: -23px -281px;
    }
}

@media (-ms-high-contrast: active) {
    .main-content .highlights .cols .white-mobile.slide {
        -webkit-transform-origin: 37px 617px;
        transform-origin: 37px 617px;
    }

    .main-content .highlights .cols .white.slide {
        -webkit-transform-origin: -23px -281px;
        transform-origin: -23px -281px;
    }
}

@media (min-width: 1025px) {
    .main-content .highlights {
        position: relative;
        height: 700px;
        overflow: hidden;
    }

        .main-content .highlights .cols {
            position: relative;
        }

            .main-content .highlights .cols .slide {
                position: absolute;
                opacity: 0;
            }

                .main-content .highlights .cols .slide .inner {
                    position: relative;
                }

                .main-content .highlights .cols .slide:nth-child(1) {
                    opacity: 1;
                    top: 45px;
                    right: -6px;
                    z-index: 1;
                }

                    .main-content .highlights .cols .slide:nth-child(1) .img-cont {
                        width: 485px;
                        height: 488px;
                        -webkit-transform: none;
                        transform: none;
                    }

                    .main-content .highlights .cols .slide:nth-child(1) .img {
                        width: 485px;
                        height: 488px;
                        -webkit-transform: none;
                        transform: none;
                    }

                .main-content .highlights .cols .slide:nth-child(2) {
                    opacity: 1;
                    top: 326px;
                    right: 0px;
                    z-index: 2;
                }

                    .main-content .highlights .cols .slide:nth-child(2) .img-cont {
                        -webkit-transform: rotate(45deg);
                        transform: rotate(45deg);
                        -webkit-transform-origin: 45.2% 51.8%;
                        transform-origin: 45.2% 51.8%;
                        width: 492px;
                        height: 570px;
                    }

                    .main-content .highlights .cols .slide:nth-child(2) .img {
                        width: 613px;
                        height: 593px;
                        -webkit-transform-origin: -10% 100%;
                        transform-origin: -10% 100%;
                        -webkit-transform: rotate(-45deg);
                        transform: rotate(-45deg);
                    }

                .main-content .highlights .cols .slide:nth-child(3) {
                    opacity: 1;
                    top: 0;
                    right: 218px;
                    z-index: 3;
                }

                    .main-content .highlights .cols .slide:nth-child(3) .img-cont {
                        -webkit-transform: rotate(45deg);
                        transform: rotate(45deg);
                        -webkit-transform-origin: 14% 37.5%;
                        transform-origin: 14% 37.5%;
                        width: 370px;
                        height: 340px;
                    }

                    .main-content .highlights .cols .slide:nth-child(3) .img {
                        width: 642px;
                        height: 642px;
                        -webkit-transform-origin: 21% 62%;
                        transform-origin: 21% 62%;
                        -webkit-transform: rotate(-45deg);
                        transform: rotate(-45deg);
                    }

                .main-content .highlights .cols .slide:nth-child(4) {
                    opacity: 1;
                    top: 431px;
                    right: 544px;
                    z-index: 4;
                    -webkit-transform: none;
                    transform: none;
                }

                    .main-content .highlights .cols .slide:nth-child(4) .img-cont {
                        -webkit-transform: rotate(45deg);
                        transform: rotate(45deg);
                        -webkit-transform-origin: 87% 47%;
                        transform-origin: 87% 47%;
                        width: 300px;
                        height: 300px;
                        margin-bottom: 0;
                    }

                    .main-content .highlights .cols .slide:nth-child(4) .img {
                        width: 420px;
                        height: 420px;
                        -webkit-transform-origin: 21% 63%;
                        transform-origin: 21% 63%;
                        -webkit-transform: rotate(-45deg);
                        transform: rotate(-45deg);
                    }

                .main-content .highlights .cols .slide .img-cont:before {
                    background: rgba(0, 0, 0, 0.3);
                    opacity: 0;
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 100%;
                    height: 100%;
                    z-index: 2;
                    content: '';
                }

                .main-content .highlights .cols .slide.white {
                    opacity: 1;
                    top: 742px;
                    right: 0;
                    z-index: 3;
                    background-color: #fff;
                    width: 690px;
                    height: 110px;
                    bottom: auto;
                    -webkit-transform: none;
                    transform: none;
                }

        .main-content .highlights .img-cont {
            position: relative;
            border: 6px solid #fff;
            border-radius: 5px;
            overflow: hidden;
            background-color: #fff;
        }

            .main-content .highlights .img-cont .img {
                background-repeat: no-repeat;
                background-size: cover;
                background-position: center;
                background-position: left !important;
            }
}

.service-section {
    margin-top: 100px;
}

.news-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service {
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

    .service img {
        flex-shrink: 0;
        min-width: 100%;
        min-height: 100%;
    }

.service-content {
    background-color: #fff;
    border: 1px solid #F7F7F7;
    padding: 30px;
    transition: 0.3s;
    box-shadow: 0px 0px 10px #ccc;
}

    .service-content h4 {
        font-weight: 700;
        font-style: normal;
        font-size: 22px;
        color: #242f44;
        margin-bottom: 15px;
    }

    .service-content p {
        color: #242f44;
        font-style: normal;
        text-rendering: optimizeLegibility;
        font-weight: normal;
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 20px;
    }

.footer-bg {
    background-color: #242f44;
    margin-top: 50px;
    padding-top: 50px;
}

.border-bottom {
    border-bottom: 1px solid #eee !important;
}

.foot-left img {
    width: 100%;
}

.foot-center {
    margin-left: 30px;
}

    .foot-center h4 {
        color: #fff;
        margin: 0;
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 1.5em;
    }

    .foot-center p {
        color: #fff;
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 30px;
    }

.foot-right {
    margin-left: 30px;
}

    .foot-right h4 {
        color: #fff;
        margin: 0;
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 1.5em;
    }

    .foot-right p {
        color: #fff;
        margin-bottom: 0px;
    }

.social-icon {
    float: right;
}

.powered p {
    color: #fff;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
}

.social-icons {
    float: right;
    margin-top: 40px;
}

.circle-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    float: left;
    margin: 3px;
}

.social-icons .icon {
    position: absolute;
    color: #fff;
    font-size: 25px;
    top: 30px;
    left: 30px;
    transform: translate(-50%, -50%);
}

    .social-icons .icon i {
        color: #fff;
    }

.circle {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 2.5px;
    background-clip: content-box;
    animation: spin 10s linear infinite;
}

.circle-wrapper:active .circle {
    animation: spin 2s linear infinite;
}

.social {
    background-color: #e11f8f;
}

@keyframes spin {
    100% {
        transform: rotateZ(360deg);
    }
}

.banner-content {
    position: relative;
    padding-top: 60px;
}

    .banner-content h3 {
        font-family: "allotrope", sans-serif;
        color: #fff;
        font-size: 50px;
        line-height: 60px;
        font-weight: 600;
        margin-bottom: 30px;
    }

    .banner-content p {
        color: #ffffff;
        font-weight: 500;
        font-size: 18px;
        padding-right: 50px;
    }

.login-card {
    background: #242f44;
    margin-left: auto;
    border: 1px solid #242f44;
    display: block !important;
    margin: 0 auto;
    padding: 30px !important;
    margin-top: 60px;
}

    .login-card h4 {
        color: #ffffff;
        font-family: "allotrope", sans-serif;
        font-size: 28px;
        font-weight: 600;
        padding-bottom: 20px;
    }

    .login-card .form-label,
    .login-card .form-check-label {
        color: #fff;
    }

    .login-card input::placeholder {
        color: #fff;
    }

.buttons-align {
    text-align: center;
    margin-top: 20px;
}

.form-align {
    padding-left: 0px;
}

.forgot {
    float: right;
}

    .forgot a {
        color: #e11f8f;
        text-decoration: underline;
    }

.login-card .button:hover {
    background-color: #fff !important;
    color: #242f44 !important;
}

.pattern img {
    position: absolute;
    right: 0;
    bottom: -20px;
}

.resources-section {
    margin-top: 30px;
    margin-bottom: 50px;
}

.resources {
    background-color: #fff;
    box-shadow: 0px 0px 10px #ccc;
    border: 1px solid #F7F7F7;
    padding: 20px;
    margin-top: 30px;
}

    .resources img {
        width: 100%;
    }

    .resources h5 {
        margin-bottom: 0px;
    }

    .resources .button {
        width: 100%;
    }

.marketplace-section {
    margin-top: 100px;
    margin-bottom: 60px;
}

.market-place {
    margin-top: 80px;
}

    .market-place h4 {
        font-family: "allotrope", sans-serif;
        color: #91afa0;
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 20px;
        font-style: normal;
        font-weight: 700;
    }

    .market-place p {
        margin-bottom: 10px;
    }

    .market-place h5 {
        margin-top: 20px;
    }

    .market-place a {
        text-decoration: underline;
    }

.card {
    padding: 10px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    background-color: #fff !important;
}

.Logincard {
    padding: 10px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    background-color: #242f44 !important;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}

.tab-content {
    padding: 10px;
}

.nav-tabs {
    margin-bottom: 20px;
}

    .nav-tabs .nav-link {
        color: #242f44;
        font-weight: bold;
        border: none;
    }

        .nav-tabs .nav-link:hover {
            border: none;
        }

        .nav-tabs .nav-link.active {
            color: #e11f8f !important;
            border: none !important;
            border-bottom: 3px solid #e11f8f !important;
        }

.form-design input,
.form-design select {
    width: 100%;
    color: #242f44;
    font-size: 14px;
    background: none;
    border: 1px solid #ddd;
    padding: 0px 20px;
    margin-bottom: 15px;
    font-weight: 500;
    /*height: 45px;*/
    border-radius: 0px;
    text-align: left;
    height: 50px !important;
}

    .form-design select.form-control {
        padding-right: 30px !important;
        background: url(../images/arrow.png) no-repeat;
        background-size: 15px 15px;
        background-position: calc(100% - 15px) 18px;
    }

.form-design h4 {
    color: #242f44;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 700;
}

.check-form input {
    width: auto !important;
    height: auto !important;
    padding-left: 0px !important;
    margin-bottom: 0;
}

.submit-btn .button {
    width: auto;
    margin-top: 20px;
    font-weight: bold;
}

.list-check {
    display: flex;
    padding-left: 0px !important;
    margin-top: 10px;
}

    .list-check label {
        padding-left: 10px;
        margin-top: -4px;
        font-weight: bold;
    }

.bold-label {
    width: 100%;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

.form-design h4.user-margin {
    margin-top: 0px;
}

.account-powered p {
    color: #242f44;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
}

.logos {
    margin-top: 50px;
}

    .logos h4 {
        font-family: "allotrope", sans-serif;
        color: #242f44;
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 25px;
        font-style: normal;
        font-weight: 700;
        text-align: center;
    }

.store {
    margin-top: 50px;
    margin-bottom: 60px;
    text-align: center;
}

.section-title p a {
    text-decoration: underline;
}

.guides p {
    text-align: left;
    width: 100% !important;
    margin-bottom: 10px;
}

.guides ul {
    padding: 20px 0px;
    padding-left: 15px;
}

    .guides ul li {
        list-style: disc;
    }

.banner-new {
    z-index: -1;
}

    .banner-new .login-pattern {
        margin-top: -250px;
    }

.welcome-section {
    margin-top: 100px;
}

.welcome {
    padding-left: 50px;
    padding-top: 5%;
}

    .welcome h1 {
        font-family: "allotrope", sans-serif;
        color: #242f44;
        font-size: 50px;
        line-height: 20px;
        margin-bottom: 25px;
        font-style: normal;
        font-weight: 700;
    }

    .welcome hr {
        border: 3px solid #e11f8f;
        width: 120px;
        opacity: 1;
        margin-bottom: 30px;
    }

    .welcome p {
        color: #242f44;
        font-style: normal;
        text-rendering: optimizeLegibility;
        font-weight: normal;
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 30px;
    }

.welcome-image img {
    width: 100%;
    margin-top: -180px;
}

.service-new {
    background-color: #fff;
    border: 1px solid #F7F7F7;
    padding: 15px;
    transition: 0.3s;
    box-shadow: 0px 0px 10px #ccc;
}

    .service-new img {
        width: 100%;
    }

    .service-new h4 {
        font-weight: 700;
        font-style: normal;
        font-size: 20px;
        color: #242f44;
        margin-top: 20px;
        margin-bottom: 10px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        height: 50px;
    }

    .service-new p {
        color: #242f44;
        font-style: normal;
        text-rendering: optimizeLegibility;
        font-weight: normal;
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 20px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
    }

    .service-new .button {
        width: 100%;
    }

.loyalty-block {
    background-color: #fff;
    border: 1px solid #F7F7F7;
    padding: 30px;
    transition: 0.3s;
    box-shadow: 0px 0px 10px #ccc;
    margin-top: 50px;
}

.loyalty-image img {
    width: 100%;
}

.loyalty h4 {
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
    color: #242f44;
    margin-bottom: 10px;
}

.loyalty p {
    margin-bottom: 10px;
}

.loyalty span {
    color: #e11f8f;
}

.loyalty h6 {
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    color: #242f44;
    margin-top: 10px;
    margin-bottom: 20px;
}

.loyalty p.redeem {
    color: #FF0000;
    font-weight: bold;
    margin-bottom: 20px;
}

    .loyalty p.redeem a {
        text-decoration: underline;
    }

.loyalty p.sufficient {
    color: red;
    font-size: 20px;
    font-weight: bold;
    padding-top: 10px;
    margin-bottom: 0px;
}

.grey-button {
    background-color: #a3a3a3 !important;
    color: #e4e4e4 !important;
    text-shadow: 0px 1px black;
    pointer-events: none;
}

.blue-button {
    background-color: #242f44 !important;
    color: #fff !important;
}

    .blue-button:hover {
        background-color: #e11f8f !important;
        color: #242f44 !important;
    }

.loyalty-block .news-center {
    justify-content: left;
}

.booking-banner #booking-slider {
    background: url(../images/booking-banner.jpg) no-repeat center center;
    padding: 40px 0;
}

.booking-head h2 {
    color: #fff !important;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase !important;
}

.booking-bg {
    background-color: #fff;
    border: 1px solid #F7F7F7;
    padding: 30px;
    transition: 0.3s;
    box-shadow: 0px 0px 10px #ccc;
}

.booking-block h4 {
    background: #242f44;
    color: #FFFFFF;
    padding: 12px 20px;
    font-size: 18px;
    margin-bottom: 30px;
}

.booking-block .form-group {
    margin-bottom: 20px;
}

.booking-block label {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.booking-block input,
.booking-block select {
    background: #f5f6f8;
    border-radius: 0;
    border: 1px solid #e9e9e9;
    color: #000;
    padding: 0px 20px;
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.booking-block select {
    padding-right: 30px;
    background: url(../images/arrow.png) no-repeat;
    background-size: 15px 15px;
    background-position: calc(100% - 15px) 18px;
}

.booking-bg .submit-btn {
    text-align: center;
}

.terms p a {
    color: #fa9f11;
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
}

.booking-block .modal-dialog {
    width: 70%;
    max-width: 100%;
}

.booking-block .modal-header {
    display: inline-block;
}

    .booking-block .modal-header .btn-close {
        float: right;
    }

.booking-block .modal-title {
    color: #242f44;
    text-align: center;
    margin-bottom: 0px;
    background: none;
    padding: 0px;
    padding-top: 5px;
    font-size: 25px;
    font-weight: bold;
}

.booking-block .modal-body h5 {
    color: #242f44;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
}

.booking-block .modal-body ul {
    margin-left: 15px;
    padding-bottom: 20px;
}

    .booking-block .modal-body ul li {
        list-style: disc;
        font-size: 16px;
        padding-bottom: 5px;
    }

.card.register {
    padding: 20px;
}

    .card.register .form-design {
        margin-top: 20px;
    }

        .card.register .form-design h4 {
            margin-top: 10px;
        }

        .card.register .form-design p {
            margin-bottom: 10px;
        }

        .card.register .form-design .check-form label {
            margin-right: 20px;
        }

        .card.register .form-design .check-block {
            width: 32%;
            float: left;
        }

@media (min-width:320px) and (max-width:767px) {

    .header-top-area {
        padding-bottom: 0px;
    }

    .language-dropdown {
        margin-top: -150px;
        right: 0px;
        position: absolute;
    }

    .first-menu {
        float: left;
        text-align: center;
    }

    .height-md-0 {
        height: 0;
    }

    .header-right-top {
        height: 40px;
    }

        .header-right-top .details {
            padding: 0px;
            grid-gap: 15px;
        }

            .header-right-top .details h3 {
                font-size: 10px;
            }

            .header-right-top .details a {
                font-size: 10px;
            }

    .navbar {
        width: 100%;
        display: inline-block;
        text-align: center;
        padding-top: 1px;
        padding-bottom: 20px;
    }

    .navbar-nav {
        background-color: #fff;
        padding: 20px;
        margin-top: 0;
    }

    .navbar .nav-link {
        text-align: left;
        padding: 10px 0px;
    }

    .service {
        margin-bottom: 0px;
    }

        .service img {
            width: 100%;
        }

    .button {
        width: 100%;
    }

    .foot-left {
        margin-left: 20px;
    }

        .foot-left img {
            width: 50%;
            margin-bottom: 30px;
        }

    .foot-center {
        margin-left: 20px;
    }

    .foot-right {
        margin-left: 20px;
    }

    .social-icons {
        float: left;
        margin-top: 20px;
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .circle-wrapper {
        width: 40px;
        height: 40px;
    }

    .social-icons .icon {
        font-size: 15px;
        top: 22px;
        left: 20px;
    }

    .banner-new .login-pattern {
        margin-top: 0px;
    }

    .resources-section {
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .offset-1 {
        margin-left: 0px;
    }

    .card.register .form-design .check-block {
        width: 100%;
    }

    .card.register .form-design .check-block {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .card.register .form-design .check-form label {
        margin-left: 5px;
    }
}



/************ Code *******/

.lnkAttachSOWuploader {
    background: #242f44;
    color: #FFFFFF;
    padding: 12px 20px;
    font-size: 18px;
    margin-bottom: 30px;
}

.booking-block .lnkAttachSOWuploader label {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

#imgPreview {
    display: none;
    width: 50px;
    max-width: 100px;
    height: 46px;
    position: absolute;
    right: 75px;
    top: 745px;
    transform: translate(-50%, -50%);
    /* Center the element properly */
    border: 3px solid #fa9f11;
}

@media (max-width: 768px) {
    #imgPreview {
        width: 30vw;
        /* Adjust width using viewport width units */
        max-width: 60px;
        /* Limit maximum width for smaller screens */
        height: auto;
        /* Maintain aspect ratio */
        right: 10px;
        /* Adjust position from the right */
        top: 50vh;
        /* Center vertically relative to viewport height */
        transform: translate(-50%, -50%);
        /* Center the element properly */
    }
}


.wrapper-dropdown {
    position: relative;
    display: inline-block;
    min-width: 110px;
    width: 100%;
    max-width: 483px;
    padding: 0;
    background: none;
    text-align: left;
    color: #000;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.scrollable-menu {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}

.arrow-section {
    padding: 0px;
    width: 12px;
    height: 12px;
    text-align: center;
    margin-left: auto;
    float: right;
}

.arrow {
    margin-left: 3px;
    margin-right: 0;
    rotate: 180deg;
    margin-top: 5px;
}

.selected-display,
.selected-display a {
    margin-left: 0;
    color: #00618d;
}

.wrapper-dropdown svg {
    transition: all 0.3s;
}

.wrapper-dropdown::before {
    position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -2px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #fff transparent;
}

.rotated {
    transform: rotate(-180deg);
    margin-top: 12px;
    margin-right: -5px;
}

.wrapper-dropdown .dropdown {
    transition: 0.3s;
    position: absolute;
    top: 30px;
    right: 0;
    left: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 99999;
    border-radius: 5px;
    background-color: #fff;
    user-select: none;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
}

    .wrapper-dropdown .dropdown a {
        padding: 5px 8px;
        width: 100%;
        display: block;
    }

    .wrapper-dropdown .dropdown li {
        padding: 0;
        line-height: 20px;
        overflow: hidden;
    }

        .wrapper-dropdown .dropdown li:last-child {
            border-bottom: none;
        }

.dropdown {
    padding: 0.5rem !important;
}

.wrapper-dropdown .dropdown li:hover {
    background-color: rgb(240, 240, 240);
    border-radius: 5px;
}

.wrapper-dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;
    border-radius: 5px;
}

.wrapper-dropdown #destination a {
    pointer-events: none;
}

.foot-image {
    background-color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .foot-image img {
        width: 100%;
        padding: 10px;
    }


@media (min-width:320px) and (max-width:767px) {
    .wrapper-dropdown {
        font-size: 10px;
        padding-bottom: 6px;
    }

    .arrow-section {
        width: 15px;
        height: 15px;
    }

        .arrow-section svg {
            width: 12px;
            height: 12px;
        }

    .selected-display,
    .selected-display a {
        margin-left: 20px;
    }

    .wrapper-dropdown .dropdown a {
        font-size: 10px;
        padding: 2px 5px;
    }
}


.booking-history .tab-content {
    padding: 0px;
}

.booking-history .nav {
    margin-top: 20px;
}

#DataTable {
    position: relative;
    box-sizing: border-box;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

#table_box_bootstrap {
    margin-top: 20px;
    margin-bottom: 20px;
}

.table-design th {
    background: #242f44;
    color: #fff;
    font-weight: bold;
    cursor: cell;
    padding: 10px;
}

.table-design td,
.table-design th {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
    box-sizing: border-box;
}

.table-design tr:nth-of-type(odd) {
    background: #eee;
}

.table-design td.action {
    text-align: center;
}

    .table-design td.action i {
        color: #e11f8f;
        text-align: center;
        font-size: 12px;
    }

.box ul.pagination {
    position: absolute;
    bottom: -45px;
    right: 15px;
}

.box .dvrecords {
    padding: 5px 0;
}

    .box .dvrecords .records {
        margin-right: 5px;
    }

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #e11f8f;
    border-color: #e11f8f;
}

.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #e11f8f;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.dashboard .modal-dialog {
    width: 70%;
    max-width: 100%;
}

.dashboard .modal-header {
    display: inline-block;
    margin-bottom: 10px;
}

.dashboard .modal-title {
    color: #242f44;
    text-align: center;
    margin-bottom: 0px;
    background: none;
    padding: 0px;
    padding-top: 5px;
    font-size: 25px;
    font-weight: bold;
}

.dashboard .modal-header .btn-close {
    float: right;
}

.dashboard .modal-footer {
    text-align: center;
    display: inline-block;
}

.text-center {
    text-align: center;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body label {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.modal-body input,
.modal-body select {
    background: #f5f6f8;
    border-radius: 0;
    border: 1px solid #e9e9e9;
    color: #000;
    padding: 0px 20px;
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/** Loader for data table*/
.loader {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    border: 6px solid rgba(0, 0, 0, .8);
    border-radius: 50%;
    border-top: 6px solid transparent;
    animation: spin 2s linear infinite;
    z-index: 1000;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.show-pwd {
    font-family: "allotrope", sans-serif;
    font-size: 16px;
    font-weight: normal;
    transform: none;
    cursor: pointer;
    float: right;
    top: 0;
    right: 0;
    color: gray !important;
    position: absolute;
    height: 100%;
    background: #f5f6f8;
    padding: 0 15px;
    border: 1px solid #e9e9e9;
    border-left: none;
    line-height: 47px;
}

.tab-content {
    padding: 0px !important;
}

.tab-pane {
    padding: 10px;
}

.foot-right ul {
    padding-left: 0px;
}

    .foot-right ul li a {
        color: #fff;
        line-height: 40px;
    }

.table#bonusPointRulesDatatable th:last-child {
    width: 50px !important;
}

.table#bonusPointRulesDatatable td:last-child {
    text-align: center;
}

.submit-btn .button {
    width: auto !important;
    margin: 10px auto !important;
}

/* New Code Start */

@media (min-width:320px) and (max-width:767px) {

    .wrapper-dropdown {
        min-width: 75px !important;
    }

    .market-place {
        margin-top: 40px;
    }

    .loyalty-block {
        margin-top: 0px;
    }

        .loyalty-block .news-center {
            display: inline-block
        }

    .loyalty h4 {
        margin-top: 10px;
    }

    .loyalty h5 .button {
        margin-bottom: 10px;
    }

    .loyalty h5 .blue-button {
        margin-bottom: 0px;
    }
}

body .dataTables_wrapper .dataTables_paginate .paginate_button,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    background-color: #fff !important;
    border-color: #ddd !important;
    color: #e11f8f !important;
}

    body .dataTables_wrapper .dataTables_paginate .paginate_button.current,
    .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
        background-color: #e11f8f !important;
        border-color: #e11f8f !important;
        background: none;
        color: #fff !important;
    }

body .dataTables_wrapper .dataTables_paginate {
    margin-bottom: 20px;
}

.resources img {
    height: 210px;
    object-fit: cover;
}

.admin-dashboard td img {
    width: 100%;
    height: 50px;
    object-fit: cover;
}

.dataTables_wrapper .dataTables_paginate {
    margin-bottom: 30px;
}

.admin-nav {
    margin-top: 40px;
    text-align: center;
}

    .admin-nav a {
        background-color: #e11f8f;
        padding: 5px 10px;
        color: #fff;
    }

        .admin-nav a:hover {
            background-color: #242f44;
            color: #fff !important;
        }

/*input, select {
    background: #f5f6f8 !important;
    border-radius: 0 !important;
    border: 1px solid #e9e9e9 !important;
    color: #000 !important;
    padding: 0px 20px !important;
    display: inline-block !important;
    width: 100% !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}*/

.button-center {
    text-align: center;
    display: inline-block;
}

    .button-center .button {
        width: auto !important;
        display: inline-block !important;
        margin-top: 20px;
    }

.mb-40 {
    margin-bottom: 40px;
}

.logos {
    margin-top: 0px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

    .logos h4 {
        flex: 0 0 100%;
        word-break: break-all;
    }

.resources h5 {
    margin-bottom: 0px;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: auto;
}

.admin-dashboard.table th.sorting_disabled {
    background-color: #242f44 !important;
}

.dataTables_length {
    margin-top: -40px;
}

/* New Code End */

/* Code */


@media (min-width:320px) and (max-width:767px) {

    .select-language .wrapper-dropdown {
        margin-top: 0;
        right: 0;
        position: absolute;
        max-width: 100px;
        font-size: 16px;
        top: -55px;
        display: flex;
    }

    .header-right-top {
        height: 52px !important;
    }

    .navbar {
        display: inline-block !important;
    }

    .section-title h1 {
        line-height: 45px;
    }

    .loyalty-image img {
        margin-bottom: 15px;
    }

    .loyalty .blue-button {
        margin-top: 10px;
    }

    .button {
        font-size: 14px !important;
    }

    .loyalty h5 .button {
        margin-top: 10px;
    }

    .account-align {
        padding: 0px !important;
    }

        .account-align .offset-1 {
            width: 100% !important;
            margin-left: 0px !important;
        }
}


@media (min-width:320px) and (max-width:991px) {

    .pattern {
        text-align: center;
    }

        .pattern img {
            width: 50%;
            position: relative !important;
        }

    .menu-bod {
        margin-top: 15px;
        border-top: 1px solid #e4e4e4;
        border-bottom: 1px solid #e4e4e4;
        padding: 8px 0;
    }
}

@media (min-width:992px) and (max-width:1199px) {

    .banner-content {
        padding-top: 40px;
        margin-bottom: 15px;
    }
}


.news-blog-wrapper p {
    margin-bottom: 30px !important;
}

.news-blog-wrapper ul {
    padding-left: 15px;
}

    .news-blog-wrapper ul li {
        list-style: disc;
    }

.resources-section .col-lg-4 {
    margin-bottom: 30px;
}

/* Code */
.label-check-block {
    width: 95%;
}

.disable-button {
    background-color: #eee !important;
    color: #a2a4a6 !important;
}

    .disable-button:hover {
        background-color: #eee !important;
        color: #a2a4a6 !important;
    }

/* Code New Start */

.button {
    text-decoration: none !important;
}

.loyalty p {
    margin-bottom: 12px !important;
}

.disable-button {
    background-color: #eee !important;
    color: #a2a4a6 !important;
}

    .disable-button:hover {
        background-color: #eee !important;
        color: #a2a4a6 !important;
    }

.dataTables_length {
    margin-top: 0px !important;
}

.dataTables_wrapper .dataTables_length select {
    height: 30px !important;
    padding: 0px 10px !important;
}

.form-design h4.user-margin {
    margin-top: 20px !important;
}

.form-label {
    font-size: 16px !important;
    font-weight: 400 !important;
}

.list-check label {
    margin-top: -6px !important;
}

.resources-section .col-lg-4 {
    margin-bottom: 0px !important;
}

@media (min-width:320px) and (max-width:767px) {

    .resources-section .col-lg-4 {
        margin-bottom: 0px !important;
    }

    .loyalty-block {
        margin-bottom: 20px;
        display: inline-block;
    }

    .resources img {
        height: 150px !important;
    }

    .resources-section .col-lg-3 {
        margin-bottom: 20px;
    }

    .news-blog-wrapper img {
        width: 100% !important;
        height: 100% !important;
    }

    .logos-block {
        margin-bottom: 20px !important;
    }

    .offset-1 {
        margin-left: 0px !important;
    }

    .submit-btn .button {
        width: 100% !important;
        text-align: center !important;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        margin-bottom: 10px !important;
    }
}

/* Code New End */

/* Responsive Code Start */

.navbar .nav-item {
    padding: 0px 12px !important;
}

@media (min-width:320px) and (max-width:767px) {

    .header-right-top .details a {
        font-size: 14px !important;
    }

    .marketplace-section {
        margin-top: 40px !important;
    }
}

@media (min-width:768px) and (max-width:991px) {

    .logo {
        padding-top: 20px;
    }

    .navbar {
        width: 100% !important;
        display: inline-block !important;
        text-align: center !important;
    }

    .navbar-nav {
        background-color: #fff;
        padding: 20px;
        margin-top: 20px;
    }

    .navbar .nav-link {
        text-align: left;
        padding: 10px 0px;
    }

    .marketplace-section {
        margin-top: 40px !important;
    }

    .wrapper-dropdown {
        font-size: 12px !important;
        min-width: 70px !important;
    }

        .wrapper-dropdown .dropdown a {
            padding: 0px 8px !important;
            font-size: 10px !important;
        }

    .rotated {
        margin-top: 5px !important;
    }

    .header-right-top .details {
        padding-left: 0px;
        padding-bottom: 6px !important;
    }

        .header-right-top .details a {
            font-size: 14px !important;
        }

    .foot-left img {
        width: 50%;
        margin-bottom: 20px;
    }

    .foot-image {
        margin-bottom: 40px;
        ;
    }

    .foot-center {
        margin-left: 0px;
    }

    .foot-right {
        margin-left: 0px;
    }

    .social-icons {
        float: left;
        margin-bottom: 20px;
    }
}

@media (min-width:992px) and (max-width:1199px) {

    .header-right-top .details a {
        font-size: 15px !important;
    }

    .navbar .nav-link {
        font-size: 16px !important;
    }

    .circle-wrapper {
        width: 50px;
        height: 50px;
    }

    .social-icons .icon {
        top: 25px;
        left: 25px;
    }
}

/* Responsive Code End */

/** Admin Dashboard table scroll stop*/
.admin-dashboard.table {
    min-width: 100% !important;
}


/** Form Select icon */
input {
    background: #f5f6f8 !important;
    border-radius: 0 !important;
    border: 1px solid #e9e9e9 !important;
    color: #000 !important;
    padding: 0px 20px !important;
    display: inline-block !important;
    width: 100% !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

select.form-control {
    background: #f5f6f8 !important;
    border-radius: 0 !important;
    border: 1px solid #e9e9e9 !important;
    color: #000 !important;
    padding: 0px 20px !important;
    display: inline-block !important;
    width: 100% !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: url(../images/arrow.png) #f5f6f8 no-repeat !important;
    padding-right: 30px;
    background: url(../images/arrow.png) no-repeat;
    background-size: 15px 15px;
    background-position: calc(100% - 15px) 18px !important;
}

/* Defect Tracker Issues */

.questions .text-danger {
    display: inline-block;
    margin-bottom: 10px;
}

.dataTables_wrapper.no-footer {
    overflow: hidden;
    position: sticky;
    left: 0;
}

.logos h4 {
    word-break: break-word !important;
}


@media (min-width:320px) and (max-width:767px) {

    .market-place h4 {
        line-height: 30px !important;
    }

    .first-menu {
        float: none !important;
    }

    .header-right-top .details {
        margin-right: auto !important;
        justify-content: start;
    }
}


@media (min-width:768px) and (max-width:991px) {

    .offset-1 {
        margin-left: 0px !important;
    }

    .loyalty h4 {
        margin-top: 20px;
    }
}

@media (min-width:992px) and (max-width:1199px) {

    .form-label {
        font-size: 15px !important;
    }
}

@media (min-width: 1200px) {
    .admin .container {
        max-width: 95%;
    }
}

@media (min-width: 1400px) {
    .admin .container {
        max-width: 95%;
    }
}

/* Defect Tracker Issues */
.forgot-password {
    margin-top: 40px;
}

@media (min-width:320px) and (max-width:767px) {

    .nav-tabs {
        border: none !important;
    }

        .nav-tabs .nav-link {
            width: 100%;
            margin-bottom: 5px;
        }

    .filter-search .form-control {
        margin-bottom: 10px;
    }

    .forgot-password .button-center .button {
        width: 100% !important;
    }

    .section-title h1 {
        font-size: 30px !important;
    }
}

@media (min-width:320px) and (max-width:991px) {

    .offset-2 {
        margin-left: 0px !important;
    }
}

@media (min-width:768px) and (max-width:1199px) {

    .forgot-password .button-center .button {
        width: 100% !important;
    }
}


/* Defect Tracker Issues Latest */

@media (min-width:320px) and (max-width:1024px) {

    .main-content .highlights .cols .slide {
        width: 100% !important;
    }

        .main-content .highlights .cols .slide:nth-child(1) .img-cont,
        .main-content .highlights .cols .slide:nth-child(2) .img-cont,
        .main-content .highlights .cols .slide:nth-child(3) .img-cont,
        .main-content .highlights .cols .slide:nth-child(4) .img-cont {
            width: 100% !important;
            transform: none !important;
        }

        .main-content .highlights .cols .slide:nth-child(1) .img,
        .main-content .highlights .cols .slide:nth-child(2) .img,
        .main-content .highlights .cols .slide:nth-child(3) .img,
        .main-content .highlights .cols .slide:nth-child(4) .img {
            width: 100% !important;
            height: 100% !important;
            transform: none !important;
        }

        .main-content .highlights .cols .slide:nth-child(4) {
            transform: none !important;
        }

        .main-content .highlights .cols .slide.white,
        .main-content .highlights .cols .slide.white-mobile,
        .main-content .highlights .cols .slide.white-under {
            display: none !important;
        }
}

@media (min-width:320px) and (max-width:767px) {

    .form-group input#BookingsFilterControlFind {
        margin-bottom: 10px;
    }
}

/* Defect Tracker Issues Latest */


.welcome {
    padding-left: 0px !important;
}

.home-banner .login-card input::placeholder {
    color: #242f44 !important;
}

@media (min-width:320px) and (max-width:767px) {

    select.form-control {
        padding-right: 40px !important;
    }

    .simple.admin .add-new.float-end.button {
        margin-bottom: 20px;
    }
}

/* Issues */

input {
    margin-bottom: 15px;
}

select.form-control {
    margin-bottom: 15px;
}

.booking-block .terms p {
    margin-bottom: 10px !important;
}

.booking-block .form-group {
    margin-bottom: 0px !important;
}

.booking-block span.error-msg {
    display: inline-block;
    margin-bottom: 10px;
}

.booking-block .upload-card {
    margin-bottom: 15px !important;
}

input.profileimg.text-box.single-line.invalidData {
    margin-bottom: 0px;
}

.Logincard .check-form.form-align input {
    height: 12px !important;
}

/* Issues */


@media (min-width:320px) and (max-width:767px) {

    .wrapper.pt-5 {
        padding-top: 0px !important;
    }

        .wrapper.pt-5 .container.pt-5 {
            padding-top: 10px !important;
        }

    .card.register .form-design .check-block {
        width: 100% !important;
    }

    .card.register {
        padding: 10px !important;
    }

        .card.register .form-design .check-form label {
            font-size: 13px !important;
            margin-right: 0px !important;
        }
}


@media (min-width:768px) and (max-width:1199px) {

    .card.register .form-design .check-block {
        width: 45% !important;
    }
}

@media (min-width:320px) and (max-width:767px) {

    .wrapper.pt-5 {
        padding-top: 0px !important;
    }

        .wrapper.pt-5 .container.pt-5 {
            padding-top: 10px !important;
        }

    .card.register .form-design .check-block {
        width: 100% !important;
    }

    .card.register {
        padding: 10px !important;
    }

        .card.register .form-design .check-form label {
            font-size: 13px !important;
            margin-right: 0px !important;
        }
}


@media (min-width:768px) and (max-width:1199px) {

    .card.register .form-design .check-block {
        width: 45% !important;
    }
}

/**language dropdown disable*/
.dropdown-disabled {
    pointer-events: none;
    opacity: 0.5;
}

@media (min-width: 992px) {

    .mt-lg-custom-4 {
        margin-top: 1.35rem;
    }
}


#formChangePass .form-group .small.pt-1 {
    padding-top: 0px !important;
    margin-bottom: 10px !important;
}

#formChangePass .submit-btn .button {
    margin-top: 10px !important;
}

/* Safari Code Start */

@supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {

    .point-requests .dataTables_wrapper .dataTables_length label > select {
        appearance: none;
        padding: 5px 20px 5px 10px !important;
        height: 30px !important;
        background: url(../images/arrow.png) no-repeat !important;
        background-size: 10px 10px !important;
        background-position: right 10px center !important;
    }

    .social-icons .icon {
        top: 34px !important;
    }

    .navbar .nav-link {
        font-size: 16px !important;
    }

    .Logincard .check-form.form-align input {
        height: 14px !important;
    }

    .dataTables_wrapper .dataTables_length label > select {
        appearance: none;
        padding: 5px 20px 5px 10px !important;
        height: 30px !important;
        background: url(../images/arrow.png) no-repeat !important;
        background-size: 10px 10px !important;
        background-position: right 10px center !important;
    }
}

/* Safari Code End */



#formNewPwd .spanPwd {
    top: 40% !important;
    right: 15px !important;
}

.margin-none {
    margin-top: 0px !important;
}


.header-top-area .logo img {
    max-width: 120px;
    width: 120px;
}

.menu-toggler {
    margin-top: 0;
}

    .menu-toggler .navbar-toggler {
        outline: none;
        border: none;
        box-shadow: none;
    }

        .menu-toggler .navbar-toggler.collapsed .fa-bars,
        .menu-toggler .navbar-toggler.collapsed {
            color: #e11f8f;
            font-size: 30px;
            background-color: #fff;
        }

    .menu-toggler .navbar-toggler {
        background-color: #242f44;
        font-size: 30px;
        z-index: 9999;
        position: relative;
    }

        .menu-toggler .navbar-toggler .fa-bars {
            color: #e11f8f;
        }

@media (min-width:768px) and (max-width:991px) {

    .section-title h1 {
        font-size: 30px !important;
        line-height: 40px !important;
    }
}

@media (min-width:320px) and (max-width:991px) {


    .header-top-area .logo img {
        width: 170px;
        margin: 0 auto;
        display: block;
    }
}

@media (min-width: 768px) {
    .header-top-area .logo img {
        max-width: 100%;
    }

    /* .menu-toggler {
        border-top: 1px solid #e4e4e4;
        width: 100%;
        text-align: right;
        padding: 10px 0;
        margin-top: 5px;
    } */

    .height-md-0 {
        height: 0;
    }

    .header-right-top {
        padding-bottom: 0;
    }
}

@media (min-width: 992px) {
    .menu-toggler .navbar-toggler {
        display: none;
    }

    .menu-toggler {
        border-top: none;
    }

    .resources-section {
        margin-top: 100px;
        margin-bottom: 80px;
    }

    .border-lg-top {
        border-top: 1px solid #e4e4e4;
    }

    .header-top-area .logo img {
        width: 100%;
    }

    .height-lg-0 {
        height: auto;
    }

    .header-right-top {
        padding-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .border-xl-top {
        border-top: none;
    }

    .menu-toggler {
        border-top: 1px solid #e4e4e4;
    }

    .mt-xl-n50 {
        margin-top: -30px !important;
    }

    .header-right-top {
        padding-bottom: 10px;
    }
}

@media (min-width: 1400px) {
    .mt-xxl-n50 {
        margin-top: -50px !important;
    }
}

.navbar-collapse.collapse.show::before,
.navbar-collapse.collapsing::before {
    content: '';
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000042;
    top: 0;
    z-index: -1;
}

.details-tablet .dropdown {
    padding: 0 !important;
}

.details-tablet .btn-secondary {
    color: #fff;
    background-color: #e11f8f;
    border-color: #e11f8f;
}

    .details-tablet .btn-secondary:hover,
    .details-tablet .btn-check:focus + .btn-secondary,
    .details-tablet .btn-secondary:focus {
        color: #fff !important;
        background-color: #e11f8f;
        border-color: #e11f8f;
        box-shadow: 0 0 0 .25rem rgba(250, 163, 27, 0.3);
    }

.details-tablet .dropdown .link-bar {
    color: #242f44;
}

/* Latest Code */

@media (min-width:320px) and (max-width:767px) {

    .Logincard.login-card button.submit-btn {
        margin-bottom: 10px;
    }
}

/* Latest Code */
.modal {
    z-index: 9999;
}

/*Cookie style*/
.cookieConsentPopup {
    display: block;
    position: fixed;
    top: 50%;
    z-index: 99999;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    background: #000000e0;
    border-radius: 10px;
    color: #fff;
    padding: 30px;
    border: 1px solid #fff;
    text-align: center;
}

    .cookieConsentPopup button {
        text-transform: capitalize;
    }

#cookieContentPopup {
    display: none;
    transition: none;
}

.btn-cookies-pr {
    background: #e11f8f;
    color: #242f44;
    font-size: 16px;
    text-align: center;
    outline: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    text-transform: uppercase !important;
    padding: 5px 12px;
}

    .btn-cookies-pr:hover {
        background: #fff;
        color: #242f44;
    }

@media screen and (max-width:600px) {
    .cookieConsentPopup {
        width: 90%;
    }

    .btn-cookies-pr {
        width: 100%;
        margin-bottom: 10px;
    }
}

/**Announcement Popup*/
.announcementPopup::before {
    position: fixed;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #ffffffb0;
    z-index: 999;
    height: 100%;
}

.announcementPopup .popup-content {
    display: block;
    position: fixed;
    top: 50%;
    z-index: 9999;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    background: #02080e;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #fff;
    text-align: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.announcementPopup .popup-content {
    animation: pulse-animation 2s infinite;
}

.announcementPopup .btn-primary {
    background: #e11f8f;
    border-color: #02080e;
    padding: 10px 30px;
    font-size: 1.25rem;
    margin-bottom: 8px;
    margin-top: 5px;
}

    .announcementPopup .btn-primary:hover {
        background: #fff;
    }

.announcementPopup .btn-close-ck {
    position: absolute;
    right: -20px;
    top: -20px;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #d5d5d5;
    color: #000;
    font-size: 20px;
    line-height: 30px;
}

.announcementPopup .popup-content p {
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
}

@media screen and (max-width:600px) {
    .announcementPopup .popup-content {
        width: 320px;
    }

    .announcementPopup .btn-primary {
        font-size: 15px;
    }

    .announcementPopup .popup-content p {
        font-size: 22px;
    }
}

body .navbar .nav-item {
    padding-top: 15px !important;
}

.button-center .button {
    background-color: #e11f8f !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    font-family: "allotrope", sans-serif;
}

.button-center .points-widget.FormButton.button {
    background-color: #e11f8f !important;
    color: #fff !important;
}

.logo {
    padding-top: 25px !important;
}

.filter-search .btn.btn-primary {
    background-color: #e11f8f !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    font-family: "allotrope", sans-serif;
}

.admin-dashboard.table td a {
    color: #e11f8f !important;
}

.nav-tabs .nav-link {
    padding-right: 30px !important;
}

.wrapper-dropdown {
    display: none;
}

.terms p a {
    color: #e11f8f !important;
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
}

.submit-btn .button {
    background-color: #e11f8f !important;
    color: #fff !important;
    border: none !important;
}

    .submit-btn .button:hover {
        background-color: #000000 !important;
        color: #ffffff !important;
    }

/*Welcome Card widget*/
.program-welcome-widget {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.welcome-card {
    background: #ffffff;
    width: 100%;
    padding: 60px 80px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

    .welcome-card h1 {
        font-family: "allotrope", sans-serif;
        color: #242f44;
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 40px;
        font-style: normal;
        font-weight: 700;
    }

.welcome-underline {
    border: 3px solid #e11f8f;
    width: 120px;
    margin: 0px auto;
    opacity: 1;
    margin-bottom: 30px;
}

.welcome-card p {
    margin-bottom: 20px;
    font-weight: normal;
    color: #242f44;
    font-size: 17px;
    line-height: 30px;
}
