/*#region Master*/
:root {
    --main-colour: #013059;
    --orange-colour: #f28705;
    --off-black: #292929;
    --text-gray: #737373;
    --sand-beige: #edddc6;
    --mocha-brown: #665448;
    --screen-sm-padding: 45px 0;
    --screen-lg-padding: 75px 0;
}

body {
    position: relative;
    padding: 0;
    text-rendering: optimizeSpeed;
    font-size: 14px;
    color: var(--off-black);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

a, input {
    outline: 0;
    text-decoration: none;
}

    /* Change Autocomplete styles in Chrome*/
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    select:-webkit-autofill,
    select:-webkit-autofill:hover,
    select:-webkit-autofill:focus {
        -webkit-text-fill-color: #353535;
        -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
        transition: background-color 5000s ease-in-out 0s;
    }

a {
    color: var(--main-colour);
}

    a:hover {
        text-decoration: none;
        color: var(--main-colour);
    }

ul {
    list-style: none;
}

li {
    font-size: 14px
}

.modal-loading {
    position: fixed;
    z-index: 1056;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    background-color: Black;
    opacity: 0.85;
    -moz-opacity: 0.85;
}


#Progress {
    position: fixed;
    width: 64px;
    height: 64px;
    text-align: center;
    z-index: 1058;
    top: 40%;
    margin: 0 auto;
    display: flex;
    left: 0;
    right: 0;
    color: #fff;
}

#back-top {
    bottom: 1.2rem;
    margin: 0;
    position: fixed;
    right: 1rem;
    z-index: 99999;
}

    #back-top a {
        background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
        height: 40px;
        text-decoration: none;
        width: 40px;
        transition: all 200ms linear 0s;
        border-radius: 10px;
        align-items: center;
        display: grid;
    }

        #back-top a:hover, #back-top a:active {
            background-color: var(--main-colour);
            color: var(--darker-text-gray);
        }

        #back-top a i {
            color: #fff;
            display: block;
            font-size: 15px;
            margin: 0 auto;
            text-align: center;
        }

.back-top-captcha {
    bottom: 6.5rem !important;
}

.cursor-pointer {
    cursor: pointer;
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    color: var(--blue);
    opacity: 1;
}

.form-switch .form-check-input {
    margin-top: 2.3px !important;
    width: 2.2em;
    height: 1.2em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(69, 85, 96,1)'/%3e%3c/svg%3e");
}

.form-check-input:checked {
    background-color: var(--text-gray) !important;
    border-color: var(--text-gray) !important;
}

.form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255, 255, 255,1)'/%3e%3c/svg%3e");
}

p {
    font-size: 14px;
}

.section-title {
    margin-bottom: 20px;
    text-align: center;
}

    .section-title .subtitle {
        border: 1px solid #c4d7e9;
        border-radius: 24px;
        align-items: center;
        padding: 8px 16px 8px 10px;
        display: inline-flex;
        margin-bottom: 20px;
    }

        .section-title .subtitle i {
            color: var(--main-colour);
        }

        .section-title .subtitle p {
            margin-left: 10px !important;
            margin: unset;
            color: var(--gray-text);
        }

    .section-title h2 {
        color: var(--text-black);
        font-size: 25px;
        font-weight: 700;
        text-transform: capitalize;
        margin: unset;
    }

.btn-main {
    display: inline-block;
    font-weight: 700;
    background-color: transparent;
    border: 2px solid var(--main-colour);
    box-shadow: rgba(0, 0, 0, .2) 15px 28px 25px -18px;
    color: var(--main-colour);
    font-size: 14px;
    padding: 15px 25px;
    transition: all 235ms ease-in-out;
}

    .btn-main:hover {
        box-shadow: rgba(0, 0, 0, .3) 2px 8px 8px -5px;
        transform: translate3d(0, 2px, 0);
        color: var(--orange-colour);
        border: 2px solid var(--orange-colour);
    }

.block-icon {
    height: 30px;
    width: 30px;
    color: var(--main-colour);
    transition: 0.5s;
    margin-right: 20px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--main-colour);
    flex: none;
}

    .block-icon i {
        color: var(--main-colour);
        width: 16px;
    }

.text-blue {
    color: var(--main-colour) !important;
}

.text-orange {
    color: var(--orange-colour) !important;
}

/*#endregion*/

/*#region Navbar*/

.navbar {
    padding: 20px 0;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #ddd;
}

    .navbar .navbar-brand img {
        height: 55px;
        transition: all 0.3s ease;
    }

    .navbar .navbar-toggler {
        transition: .5s ease-in-out;
        color: var(--main-colour);
        border-color: var(--main-colour);
    }

    .navbar .nav-item {
        display: block;
        border-top: 1px solid #f3f3f3;
        margin-right: 0;
    }

        .navbar .nav-item:last-child {
            margin-right: unset;
        }

    .navbar .nav-link {
        color: var(--main-colour) !important;
        font-weight: 600;
        font-size: 14px;
        padding: 10px 15px !important;
        position: relative;
        transition: all 0.3s ease;
    }

        .navbar .nav-link.active {
            color: var(--main-colour) !important;
        }

        .navbar .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 15px;
            background-color: var(--main-colour);
            transition: width 0.3s ease;
        }

        .navbar .nav-link:hover {
            color: var(--main-colour) !important;
        }

.navbar-nav .nav-item .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 0;
    width: 50px;
    cursor: pointer;
    line-height: 40px;
    border-left: 1px solid #f3f3f3;
    text-align: center;
}

.navbar-nav .nav-item ul {
    padding: 0;
}

    .navbar-nav .nav-item ul li {
        padding: 0px 20px;
        border-top: 1px solid #f3f3f3;
    }

        .navbar-nav .nav-item ul li a {
            font-size: 13px;
            transition: all 500ms ease;
            padding: 8px 10px;
        }

/*#endregion*/

/*#region Banner*/

.banner {
    height: 665px;
}

    .banner .carousel-item {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        overflow: hidden;
        background-size: cover;
        background-image: url(/media/banner.jpg);
        background-position-x: 60%;
    }

        .banner .carousel-item::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 3;
            background-color: #000;
            opacity: 0.5;
        }

    .banner .carousel-caption {
        left: 5%;
        text-align: left;
        z-index: 3;
        top: 10%;
    }

        .banner .carousel-caption .subtitle {
            font-size: 18px;
            color: #fff;
            font-weight: 500;
            margin-bottom: 15px;
            display: block;
            text-transform: uppercase;
        }

        .banner .carousel-caption h1 {
            font-size: 40px;
            font-weight: 800;
            color: #fff;
            margin: 0;
            text-transform: uppercase;
        }

        .banner .carousel-caption h2 {
            font-size: 22px;
            color: #fff;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .banner .carousel-caption p {
            font-size: 18px;
            margin-bottom: 20px;
        }

    .banner .btn-main {
        border-color: #fff;
        background-color: transparent;
        outline: 0;
        color: #fff;
    }

        .banner .btn-main:hover {
            color: var(--orange-colour);
            border-color: var(--orange-colour);
            background-color: transparent;
            outline: 0;
        }

/*#endregion*/

/*#region About*/

.about {
    padding: var(--screen-sm-padding);
}

/*#endregion*/

/*#region Investors*/

.investors {
    padding: var(--screen-sm-padding);
    background-color: #f8f9fa;
}

    .investors .investment-content h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--orange-colour);
        margin-bottom: 15px;
    }

    .investors .investment-content .btn-main {
        color: var(--orange-colour);
        border: 2px solid var(--orange-colour);
    }

        .investors .investment-content .btn-main:hover {
            color: var(--main-colour);
            border: 2px solid var(--main-colour);
        }

    .investors .location-info h4 {
        font-size: 18px;
        font-weight: 600;
        color: var(--off-black);
    }

    .investors .distance-list {
        padding: unset;
        margin: unset;
    }

        .investors .distance-list li {
            margin-bottom: 10px;
            font-size: 14px;
            color: var(--text-gray);
        }

            .investors .distance-list li i {
                color: var(--orange-colour);
                margin-right: 10px;
                width: 16px;
            }

            .investors .distance-list li:last-child {
                margin-bottom: unset;
            }

    .investors .process-card {
        background: #fff;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

        .investors .process-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--main-colour);
            margin-bottom: 20px;
        }

    .investors .process-steps .step {
        display: flex;
        margin-bottom: 25px;
    }

        .investors .process-steps .step:last-child {
            margin-bottom: 0;
        }

    .investors .step-content h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--off-black);
    }

    .investors .step-content p {
        margin: 0;
        color: var(--text-gray);
    }

    .investors .details-card {
        background: #fff;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        height: 100%;
    }

        .investors .details-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--main-colour);
            margin-bottom: 15px;
        }

/*#endregion*/

/*#region Accomodation*/

.accommodation {
    padding: var(--screen-sm-padding);
    background-color: #f7fbff;
}

    .accommodation h1 {
        font-size: 22px;
        font-weight: 700;
        margin: 20px 0;
    }

    .accommodation h5 {
        font-size: 18px;
        color: var(--main-colour);
    }

    .accommodation h6 {
        font-weight: 700;
    }

    .accommodation .nav {
        margin-bottom: 25px;
    }

        .accommodation .nav .nav-item {
            width: 100%;
            margin-bottom: 15px;
        }

            .accommodation .nav .nav-item:last-child {
                margin: unset;
            }

        .accommodation .nav .nav-link {
            font-size: 16px;
            font-weight: 600;
            border-radius: 0;
            padding-top: 10px;
            padding-bottom: 10px;
            color: var(--main-colour);
            border: 2px solid var(--main-colour);
            background: transparent;
            border-radius: 8px;
        }

            .accommodation .nav .nav-link.active {
                background: var(--main-colour);
                color: #fff !important;
                border-color: var(--main-colour);
            }

    .accommodation .info-tab .tab-content h4 {
        font-size: 16px;
        font-weight: 600;
        color: var(--main-colour);
        margin-bottom: 15px;
    }

    .accommodation .info-tab .tab-content span {
        font-weight: 600;
    }

    .accommodation .card {
        background: transparent;
        border: 2px solid var(--main-colour);
        border-radius: unset;
    }

        .accommodation .card .card-body {
            padding: 25px;
            text-align: center;
        }

        .accommodation .card .card-title {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .accommodation .card h6 {
            color: #fff;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .accommodation .card .btn-main {
            border-radius: 8px;
            display: block;
            margin-bottom: 10px;
            width: 100%;
        }

            .accommodation .card .btn-main:last-child {
                margin-bottom: 0;
            }

    .accommodation .key-features, .accommodation .facilities {
        padding: 20px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    }

    .accommodation .feature-item {
        display: flex;
        align-items: center;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
        transition: all 0.3s ease;
        margin-bottom: 10px;
    }

        .accommodation .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .accommodation .feature-item i {
            font-size: 20px;
            color: var(--main-colour);
            margin-right: 15px;
        }

        .accommodation .feature-item span {
            font-weight: 600;
            margin-right: 5px;
            color: var(--off-black);
        }

    .accommodation .price-row {
        display: flex;
        align-items: center;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
        transition: all 0.3s ease;
        margin-bottom: 10px;
    }

        .accommodation .price-row:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .accommodation .price-row .season {
            margin-right: auto;
            display: flex;
            align-items: center;
            color: var(--off-black);
            font-weight: 600;
        }

            .accommodation .price-row .season i {
                color: var(--orange-colour);
                margin-right: 10px;
            }

        .accommodation .price-row .amount {
            font-size: 14px;
            font-weight: 700;
            color: var(--main-colour);
        }

    .accommodation .payment-note {
        margin-bottom: unset;
        padding: 15px;
        background: #fff3cd;
        border-radius: 8px;
        color: #856404;
        display: flex;
        align-items: center;
    }

        .accommodation .payment-note i {
            margin-right: 10px;
        }

    .accommodation .facilities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
        margin-top: 15px;
    }

    .accommodation .facility-item {
        display: flex;
        align-items: center;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

        .accommodation .facility-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .accommodation .facility-item i {
            font-size: 18px;
            color: var(--main-colour);
            margin-right: 12px;
        }

        .accommodation .facility-item span {
            color: var(--off-black);
        }

    .accommodation .additional-services {
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    .accommodation .service-item {
        display: flex;
        align-items: center;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
        margin-top: 15px;
    }

        .accommodation .service-item i {
            font-size: 18px;
            color: var(--main-colour);
            margin-right: 12px;
        }

        .accommodation .service-item span {
            color: var(--off-black);
        }

    .accommodation .accommodation-line {
        margin: 45px 0;
        color: #626363;
    }

/*#endregion*/

/*#region Contact*/

.contact-us {
    padding: var(--screen-sm-padding);
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.contact-us .message {
    min-height: 120px;
    padding-top: 15px;
}

.contact-us .alert {
    margin-top: 20px;
}

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

    .contact-info-item .icon {
        width: 50px;
        height: 50px;
        background: var(--orange-colour);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        flex-shrink: 0;
    }

        .contact-info-item .icon i {
            font-size: 20px;
            color: #fff;
        }

    .contact-info-item .content h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--off-black);
    }

    .contact-info-item .content p {
        margin: unset;
    }

    .contact-info-item .content a {
        color: var(--text-gray);
        transition: all 0.3s ease;
    }

        .contact-info-item .content a:hover {
            color: var(--main-colour);
        }

/*#endregion*/

/*#region Footer*/

.footer {
    padding-top: 25px;
    background-color: #f7f7f7;
}

    .footer .container {
        padding-bottom: 25px;
    }

    .footer .footer-block img {
        margin-bottom: 20px;
        max-width: 200px;
    }

    .footer .footer-block h2 {
        font-size: 16px;
        color: var(--orange-colour);
        font-weight: 800;
    }

    .footer .footer-block p {
        color: var(--text-gray);
        margin: unset;
        font-weight: 600;
        font-size: 14px;
    }

    .footer .footer-block ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .footer .footer-block ul li {
            margin-bottom: 10px;
        }

            .footer .footer-block ul li:last-child {
                margin: unset;
            }

    .footer .footer-block label {
        font-size: 14px;
    }

    .footer .footer-block ul li a {
        position: relative;
        color: var(--off-black);
        transition: 0.5s;
        font-size: 14px;
    }

        .footer .footer-block ul li a::before {
            content: "\f061";
            font-weight: 600;
            left: 0;
            opacity: 0;
            transition: 0.5s;
            position: absolute;
            font-family: "Font Awesome 7 Free";
        }

        .footer .footer-block ul li a:hover {
            padding-left: 20px;
            text-decoration: underline;
            color: var(--orange-colour);
        }

            .footer .footer-block ul li a:hover::before {
                opacity: 1;
                color: var(--orange-colour);
            }

    .footer .copyright_area {
        background: #fff;
        color: var(--off-black);
        text-align: center;
        padding: 20px 15px;
        font-size: 12px;
    }

        .footer .copyright_area a {
            font-weight: 700;
            text-transform: uppercase;
            color: var(--main-colour);
            transition: 0.5s;
        }

            .footer .copyright_area a:hover {
                color: var(--orange-colour);
            }


/*#endregion*/

/*#region Privacy Policy*/

.privacy {
    padding-top: 45px; /*80px for navbar height*/
    padding-bottom: 50px;
    position: relative;
}

    .privacy h2 {
        font-size: 30px;
        font-weight: bold;
    }

    .privacy p {
        font-size: 16px;
        line-height: 33px;
    }

/*#endregion*/

/*#region Error*/

.error-page-1 {
    padding: 50px 0;
}

    .error-page-1 img {
        margin-bottom: 25px;
    }

    .error-page-1 h1 {
        font-size: 45px;
        font-weight: 800;
    }

    .error-page-1 h2 {
        font-size: 35px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .error-page-1 p {
        font-size: 14px;
    }

/*#endregion*/



/*RESPONSIVE STYLES PER BREAK POINT*/

/* SM Screen (600px and up) */
@media (min-width: 600px) {
}

/* MD Breakpoint (tablets, 768px and up) */
@media (min-width: 768px) {

    /*#region Banner*/

    .banner p {
        font-size: 25px;
    }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy h2 {
        font-size: 35px;
    }

    /*#endregion*/
}

/* LG Breakpoint (tablets, 992px and up) */
@media (min-width: 992px) {

    /*#region Navbar*/

    .navbar .nav-link {
        font-size: 18px;
    }

        .navbar .nav-link::after {
            left: 0;
        }

        .navbar .nav-link:hover::after,
        .navbar .nav-link.active::after {
            width: 100%;
        }

    .navbar .nav-item {
        border-top: unset;
        display: flex;
        margin-right: 20px;
    }


    .navbar-nav .nav-item ul li {
        width: 100%;
        padding: 0px 20px;
        border-bottom: none;
        display: block;
        border-top: 1px solid #f3f3f3;
        position: relative;
    }

        .navbar-nav .nav-item ul li a {
            position: relative;
            display: block;
            font-size: 16px;
            text-transform: capitalize;
            transition: all 500ms ease;
            padding: 8px 10px;
        }


    .navbar-nav .nav-item .dropdown-btn {
        align-items: center;
        display: flex;
        position: static;
        width: auto;
        height: auto;
        cursor: pointer;
        border-left: unset;
    }

    /* shows the dropdown menu on hover */
    .navbar .dropdown:hover ul, .navbar .dropdown ul:hover {
        display: block;
        transition: visibility 0s, opacity 0.3s linear;
    }

    .navbar-nav .nav-item ul .dropdown-item:hover {
        color: var(--main-colour);
        background-color: unset;
    }

    .navbar-nav .nav-item ul {
        background-color: #fff;
        box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
        border-radius: 5px;
        position: absolute;
        top: 100%;
        width: 100%;
        text-align: center;
    }

    .navbar-nav .nav-item:hover .nav-link::after {
        right: 0;
    }

    .sub-active::after {
        content: "";
        width: 100% !important;
    }

    /*#endregion*/

    /*#region About*/

    .about {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Investors*/

    .investors {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Accommodation*/

    .accommodation {
        padding: var(--screen-lg-padding);
    }

        .accommodation h2 {
            font-size: 28px;
        }

        .accommodation h5 {
            font-size: 20px;
        }

        .accommodation .nav .nav-item {
            width: auto;
            margin: 0 10px !important;
        }

            .accommodation .nav .nav-item:first-child {
                margin: unset !important;
            }

            .accommodation .nav .nav-item:last-child {
                margin-right: unset !important;
            }

        .accommodation .accommodation-line {
            margin: 75px 0;
        }

    /*#endregion*/

    /*#region Contact*/

    .contact-us {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Footer*/

    .footer {
        padding-top: 50px;
    }

        .footer .container {
            padding-bottom: 50px;
        }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy {
        padding: var(--screen-lg-padding);
    }

        .privacy h2 {
            font-size: 40px;
        }

    /*#endregion*/

}


/* Normal Screen 18 Inch - 19 Inch ( (Resolution 1366x768 ) 1349px and up) */
@media (min-width: 1349px) {

    .section-title {
        margin-bottom: 40px;
    }

        .section-title h2 {
            font-size: 34px;
        }

    p {
        font-size: 16px;
    }

    /*#region Banner*/

    .banner .carousel-caption {
        left: 10%;
    }

    .banner {
        height: 775px;
    }

        .banner .carousel-caption h1 {
            font-size: 70px;
        }

        .banner .carousel-caption h2 {
            font-size: 40px;
        }

        .banner .carousel-caption label, .banner .carousel-caption p {
            font-size: 25px;
        }

    /*#endregion*/

    /*#region Investors*/

    .investors {
        padding: var(--screen-lg-padding);
    }

        .investors .investment-content h3 {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .investors .location-info h4 {
            font-size: 20px;
        }

        .investors .process-card h3, .investors .details-card h3 {
            font-size: 24px;
            margin-bottom: 25px;
        }

        .investors .step-content h5 {
            font-size: 18px;
        }

        .investors .price-tag .amount {
            font-size: 42px;
            font-weight: 700;
            color: var(--orange-colour);
        }

    /*#endregion*/

    /*#region Accommodation*/

    .accommodation h5 {
        font-size: 22px;
    }

    .accommodation h1 {
        font-size: 34px;
    }

    .accommodation .nav {
        margin-bottom: 35px;
    }

    .accommodation .info-tab .tab-content h4 {
        font-size: 24px;
    }

    .accommodation .card .card-title {
        font-size: 28px;
    }

    .accommodation .card h6 {
        font-size: 18px;
    }

    .accommodation .feature-item, .accommodation .price-row .season, .accommodation .price-row .amount {
        font-size: 16px;
    }

    /*#endregion*/

    /*#region Contact*/

    .contact-info-item .content h5 {
        font-size: 18px;
    }

    /*#endregion*/

    /*#region Footer*/

    .footer .footer-block img {
        max-width: 250px;
    }

    .footer .copyright_area {
        font-size: 14px;
    }

    /*#endregion*/

    /*#region Error Page*/

    .error-page-1 h1 {
        font-size: 85px;
    }

    .error-page-1 h2 {
        font-size: 75px;
        margin-bottom: 30px;
    }

    .error-page-1 p {
        font-size: 18px;
    }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy h2 {
        font-size: 45px;
    }

    /*#endregion*/
}

/*High Definition Plus (HD+) ( (Resolution 1600x900), 1600px and up) */
@media (min-width: 1600px) {
}

/*Extra Large Screen 23 Inch ( (Resolution 1920x1080 ) 1800px and up) */
@media (min-width: 1800px) {

    /*#region Banner*/

    .banner {
        height: 837px;
    }

    /*#endregion*/
}

/*Extra Large Screen 27 Inch ( (Resolution 2560x1440 ) 2560px and up) */
@media (min-width: 2560px) {
}

/*Extra Large Screen 32 Inch ( (Resolution 3840x2160 ) 3840px and up) */
@media (min-width: 3840px) {
}
