@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*#region Master*/
:root {
    --main-colour: #a41e1e;
    --text-black: #1c1c1c;
    --text-gray: #5c5c5c;
    --light-white: rgba(255, 255, 255, 0.85) !important;
    --light-blue-bg: #f2f2fc;
    --light-gold-bg: #f8f6f1;
    --muted-gray: #6C757D;
    --light-blue-colour: #ecf1fb;
    --screen-sm-padding: 45px 0;
    --screen-lg-padding: 75px 0;
}

body {
    position: relative;
    padding: 0;
    text-rendering: optimizeSpeed;
    color: var(--text-black);
    font-size: 14px;
    font-family: Montserrat, sans-serif;
}

.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;
    padding: 0;
}

p {
    font-size: 14px;
}

h5 {
    color: var(--main-colour);
    font-weight: 600;
    font-size: 20px;
}

.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: 24px;
            margin: 0 auto;
            text-align: center;
            height: 25px;
        }

.back-top-captcha {
    bottom: 6.5rem !important;
}

.btn-main {
    display: inline-block;
    font-weight: 500;
    font-size: 14px !important;
    background-color: var(--main-colour);
    border: 1px solid var(--main-colour);
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, .2) 15px 28px 25px -18px;
    color: #fff;
    padding: 13px 18px;
    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(--text-gray) !important;
        border: 1px solid var(--text-gray);
        background-color: #fff;
    }

.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(--main-colour);
    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(--main-colour) !important;
    border-color: var(--main-colour) !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");
}

.input-validation-error {
    border-color: var(--bs-form-invalid-border-color) !important;
    border-width: 1px !important;
    border-style: solid !important;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

    .input-validation-error:focus {
        border-color: var(--bs-form-invalid-border-color) !important;
        box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .15) !important;
    }

/* Override any border utility classes when validation error occurs */
.form-control.border-0.input-validation-error,
.form-select.border-0.input-validation-error {
    border: 1px solid var(--bs-form-invalid-border-color) !important;
}

.form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
    opacity: 1 !important;
}

.section-title {
    margin-bottom: 20px;
}

    .section-title p {
        font-size: 15px;
        color: var(--text-gray);
        font-weight: 300;
        margin: 0;
    }

    .section-title h2 {
        margin: unset;
        font-size: 26px;
        font-weight: 700;
        color: var(--main-colour);
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .section-title span {
        color: var(--text-gray);
    }

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.section-eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--text-gray);
}

.section-eyebrow-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-gray) !important;
}


.content-intro {
    font-size: 13px;
    color: var(--main-colour);
    font-weight: 700;
    margin-bottom: 10px;
}

.content-heading {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 8px;
}

    .content-heading span {
        color: var(--main-colour);
    }

.content-subtext {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-weight: 400;
}

.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);
    }

.gold-text {
    color: var(--text-gray) !important;
}

.bg-light-blue {
    background-color: var(--light-blue-bg);
}

.bg-light-gold {
    background-color: var(--light-gold-bg);
}

/*#endregion*/

/*#region Navbar*/

.navbar {
    background: var(--text-black);
    padding: 15px 0;
    transition: all 0.5s;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

    .navbar .navbar-brand img {
        filter: brightness(0) invert(1);
    }

    .navbar .navbar-nav .nav-item .nav-link {
        font-weight: 700;
        font-size: 14px;
        padding: 10px 20px;
        color: #fff;
        border-radius: 60px;
    }

        .navbar .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-nav .nav-item .nav-link.active {
            background-color: var(--main-colour);
            color: #fff !important;
            transition: all 0.3s ease-in-out 0s;
        }


/*#endregion*/

/*#region Banner*/

.banner .carousel, .banner .carousel-inner {
    height: 300px;
}

.banner .carousel-item img {
    width: 100%;
    object-fit: cover;
    object-position: 80%;
}

.banner .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    background-color: #000;
    opacity: 0.4;
}

.banner .carousel-caption {
    left: 5%;
    text-align: left;
    z-index: 3;
    top: 15%;
}

    .banner .carousel-caption label {
        font-size: 14px;
        margin-bottom: 10px;
        display: block;
    }

    .banner .carousel-caption h5 {
        font-size: 35px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 10px;
    }

    .banner .carousel-caption p {
        font-size: 18px;
        margin-bottom: 20px;
    }

.banner .banner-text .banner-glass {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
}

.banner .banner-text .section-title h2 {
    color: #fff;
    text-shadow: 0 3px 18px rgba(0,0,0,0.35);
}

.banner .banner-text p {
    color: rgba(255,255,255,0.9);
}

.banner .btn-main {
    font-size: 12px;
    padding: 8px 15px;
    border: none;
}

    .banner .btn-main:hover {
        background-color: #fff;
        outline: 0;
        color: #fff;
    }

/*#endregion*/

/*#region About Us*/

.about-us {
    padding: var(--screen-sm-padding);
    background-color: #FCF6F6;
}

    .about-us i {
        color: var(--main-colour);
    }

.about-profile-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

    .about-profile-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.about-profile-header {
    background-image: url(../media/Leilani.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 35px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

    .about-profile-header::before {
        content: '';
        position: absolute;
        inset: 0;
        background-color: #000;
        opacity: 0.4;
        z-index: 0;
    }

.about-avatar,
.about-name,
.about-handle,
.about-badge {
    position: relative;
    z-index: 1;
}

.about-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.about-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.about-handle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    margin: 0;
}

.about-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-profile-footer {
    padding: 20px;
    border-top: 1px solid #f0e8e8;
}

.about-stat {
    background: var(--light-gold-bg);
    border-radius: 10px;
    padding: 10px 6px;
    border: 1px solid rgba(164, 30, 30, 0.1);
}

.about-stat-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--main-colour);
    display: block;
}

.about-stat-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-gray);
}

.about-content-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 34px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-greeting {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 16px;
}

    .about-greeting span {
        color: var(--main-colour);
    }

.about-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.about-pill {
    background: var(--light-blue-colour);
    color: var(--main-colour);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(164, 30, 30, 0.15);
}

.about-quote {
    border-left: 3px solid var(--main-colour);
    padding: 14px 18px;
    background: var(--light-gold-bg);
    border-radius: 0 10px 10px 0;
    margin: 18px 0;
}

    .about-quote p {
        font-size: 14px;
        color: var(--text-gray);
        font-style: italic;
        margin: 0;
        line-height: 1.8;
    }

.about-divider {
    border-color: var(--main-colour);
    opacity: 0.2;
    margin: 20px 0;
}

.about-sig-line {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 2px;
}

.about-sig-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--main-colour);
    margin-bottom: 2px;
}

.about-sig-sub {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
}

@media (min-width: 1349px) {
    .about-us {
        padding: var(--screen-lg-padding);
    }

    .about-greeting {
        font-size: 26px;
    }
}

/*#endregion*/

/*#region Magazines*/

.magazines {
    padding: var(--screen-sm-padding);
}

    .magazines strong {
        color: var(--text-gray);
    }

    .magazines p {
        margin: unset;
    }

    .magazines .category-content {
        height: unset;
    }

    .magazines .category-image {
        height: unset;
    }

        .magazines .category-image img {
            object-fit: contain;
        }

    .magazines h4 {
    }


.category-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.category-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.category-card:hover .category-image img {
    transform: scale(1.1);
}


.category-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 255px;
    flex: 1 1 auto;
}

    .category-content h4 {
        color: var(--main-colour);
        margin-bottom: 0.75rem;
        font-weight: 600;
        font-size: 18px;
    }

    .category-content p {
        color: var(--text-gray);
        margin-bottom: 1rem;
    }

.read-more {
    color: var(--main-colour);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    border-radius: 50px;
    transition: all 0.2s ease;
    padding: 0.6rem 1.5rem;
    align-self: flex-end;
    margin-top: auto;
    cursor: pointer;
}

.category-card:hover .read-more {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px #e7237280;
    background-color: transparent !important;
    color: var(--main-colour);
}

/* Magazine Modal */
.magazine-modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.magazine-modal-header {
    background: var(--main-colour);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.magazine-modal-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .magazine-modal-icon i {
        color: #fff;
        font-size: 20px;
    }

.magazine-modal-header .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.magazine-modal-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.magazine-modal-body {
    padding: 28px 30px 30px;
    background: #fff;
}

.magazine-modal-desc {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 24px;
    background: var(--light-gold-bg);
    border-left: 3px solid var(--main-colour);
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    line-height: 1.7;
}

    .magazine-modal-desc strong {
        color: var(--main-colour);
        font-weight: 700;
    }

.magazine-input {
    border: 1.5px solid #e8e0e0;
    border-radius: 10px !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-size: 14px;
}

    .magazine-input:focus {
        border-color: var(--main-colour) !important;
        box-shadow: 0 0 0 3px rgba(164, 30, 30, 0.1) !important;
    }

.magazine-modal-footer-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 8px;
    border-top: 1px solid #f0e8e8;
}

.magazine-btn-cancel {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    background: transparent;
    border: 1.5px solid #d8d0d0;
    border-radius: 15px;
    padding: 10px 22px;
    transition: all 0.2s ease;
}

    .magazine-btn-cancel:hover {
        background: #f5f0f0;
        border-color: var(--main-colour);
        color: var(--main-colour);
    }

.magazine-btn-submit {
    padding: 10px 24px;
    font-size: 14px;
}

/*#endregion*/

/*#region Contact Us*/

.contact-form-section {
    padding: var(--screen-sm-padding);
    background-color: #FCF6F6;
}

    .contact-form-section .contact-info-intro {
        margin-bottom: 20px !important;
    }

    .contact-form-section .contact-info-list .block-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--main-colour);
    }

        .contact-form-section .contact-info-list .block-icon i {
            color: #FFF;
        }

    .contact-form-section .contact-info-list hr {
        color: var(--main-colour);
        margin: 20px 0
    }

    .contact-form-section .contact-info-list span {
        font-size: 16px;
        display: block;
    }

    .contact-form-section .contact-form-section a {
        font-size: 14px;
    }

        .contact-form-section .contact-form-section a:hover {
            color: var(--text-gray) !important;
        }

    .contact-form-section .contact-form-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
    }

    .contact-form-section .contact-form-card-header {
        background-color: var(--main-colour);
        padding: 18px 28px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .contact-form-section .contact-form-card-header i {
            color: #fff;
            font-size: 16px;
        }

        .contact-form-section .contact-form-card-header span {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
        }

    .contact-form-section .contact-form-card-body {
        padding: 25px;
    }

    .contact-form-section .contact-privacy-check .form-check-label {
        font-size: 13px;
        color: var(--text-gray);
    }

        .contact-form-section .contact-privacy-check .form-check-label a {
            color: var(--main-colour);
            font-weight: 600;
            text-decoration: underline;
            transition: color 0.2s;
        }

#contactAlertDiv.alert-success {
    background-color: #f0faf3;
    border-color: rgba(1, 9, 75, 0.1);
    border-left: 4px solid #28a745;
    color: var(--text-black);
    border-radius: 4px;
}

.contact-form-section .message {
    height: 200px;
}
/*#endregion*/

/*#region Footer*/

.footer {
    padding-top: 45px;
    background: var(--text-black);
}

    .footer .container {
        padding-bottom: 45px;
    }

    .footer .footer-block img {
        margin-bottom: 20px;
        filter: brightness(0) invert(1);
    }

    .footer .footer-block h6 {
        font-size: 16px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .footer .footer-block p {
        color: rgba(255, 255, 255, 0.8);
    }

        .footer .footer-block p em {
            color: var(--main-colour);
            font-weight: 700;
            font-size: 16px;
        }

    .footer .footer-block ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .footer .footer-block ul li {
            margin-bottom: 8px;
        }

            .footer .footer-block ul li:last-child {
                margin: unset;
            }

            .footer .footer-block ul li a {
                position: relative;
                color: rgba(255, 255, 255, 0.8);
                transition: 0.5s;
                font-weight: 600;
                white-space: normal;
            }

                .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;
                    color: var(--main-colour);
                }

                    .footer .footer-block ul li a:hover::before {
                        opacity: 1;
                        color: var(--main-colour);
                    }

    .footer .social-links a {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: var(--main-colour);
        border-radius: 50%;
        text-align: center;
        line-height: 40px;
        color: #fff;
        transition: all 0.3s ease;
    }

        .footer .social-links a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            transform: translateY(-3px);
        }

    .footer .footer-block .contact-footer-info i {
        color: var(--main-colour);
    }

    .footer hr {
        border-color: Black;
        margin: 2rem 0 1rem;
    }

    .footer .copyright_area {
        background: #fff;
        color: var(--text-black);
        text-align: center;
        padding: 20px 15px;
        font-size: 12px;
    }

        .footer .copyright_area a {
            font-weight: 700;
            text-transform: uppercase;
            color: var(--main-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;
        color: var(--main-colour);
    }

    .privacy p {
        font-size: 16px;
        line-height: 33px;
        color: var(--text-gray);
    }

/*#endregion*/

/*#region Error Page*/

.error {
    padding: 50px 0;
}

    .error img {
        margin-bottom: 25px;
    }

    .error h1 {
        font-size: 45px;
        font-weight: 800;
    }

    .error h2 {
        font-size: 35px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .error 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 .carousel, .banner .carousel-inner {
        height: 280px;
    }

    .banner .carousel-item img {
        object-position: unset;
    }

    .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 .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }

    /*#endregion*/

    /*#region Banner*/

    .banner .carousel, .banner .carousel-inner {
        height: 320px;
    }

    .banner .btn-main {
        font-size: 14px;
        padding: 15px 25px;
    }

    /*#endregion*/

    /*#region Review Block*/

    .review-block {
        padding: var(--screen-lg-padding);
    }

        .review-block .card {
            padding: unset;
        }

        .review-block .carousel-control-prev-icon, .review-block .carousel-control-next-icon {
            height: 25px !important;
        }

        .review-block .carousel-control-prev {
            left: -25px !important;
        }

        .review-block .carousel-control-next {
            right: -25px !important;
        }

        .review-block .carousel-indicators {
            bottom: -15% !important;
        }

    /*#endregion*/

    /*#region Contact Us*/

    .contact-form-section {
        padding: var(--screen-lg-padding);
    }

    /*#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) {

    /*#region Master*/

    .section-title {
        margin-bottom: 40px;
    }

        .section-title h2 {
            font-size: 40px;
        }

        .section-title p {
            font-size: 22px;
        }

    .section-eyebrow-text {
        font-size: 12px;
    }


    .content-intro {
        font-size: 15px;
    }

    .content-heading {
        font-size: 30px;
    }

    .content-subtext {
        font-size: 16px;
    }

    p {
        font-size: 16px;
    }

    h5 {
        font-size: 22px;
    }

    /*#endregion*/

    /*#region Banner*/

    .banner .carousel-caption {
        top: 10%;
        left: 16%;
    }

    .banner .carousel, .banner .carousel-inner {
        height: 375px;
    }

    .banner .carousel-caption label {
        font-size: 25px;
    }

    .banner .carousel-caption p {
        font-size: 30px;
    }

    .banner .carousel-caption h5 {
        font-size: 60px;
        margin-bottom: 15px;
    }

    /*#endregion*/

    /*#region Magazines*/

    .magazines {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Contact Us*/

    .google-directions.ratio::before {
        padding-top: 30.857%;
    }

    .contact-info-intro {
        font-size: 15px !important;
    }

    /*#endregion*/

    /*#region Footer*/

    .footer .copyright_area {
        font-size: 14px;
    }

    .footer .footer-block p em {
        font-size: 18px;
    }

    /*#endregion*/

    /*#region Error Page*/

    .error h1 {
        font-size: 85px;
    }

    .error h2 {
        font-size: 75px;
        margin-bottom: 30px;
    }

    .error 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) {

    /*#region Banner*/

    .banner .carousel, .banner .carousel-inner {
        height: 435px;
    }

    /*#endregion*/

}

/*Extra Large Screen 23 Inch ( (Resolution 1920x1080 ) 1800px and up) */
@media (min-width: 1800px) {

    /*#region Banner*/

    .banner .carousel, .banner .carousel-inner {
        height: 520px;
    }

    /*#endregion*/

}

/*Extra Large Screen 27 Inch ( (Resolution 2560x1440 ) 2560px and up) */
@media (min-width: 2560px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1620px;
    }

    /*#region Banner*/

    .banner .carousel, .banner .carousel-inner {
        height: 675px;
    }

    /*#endregion*/

}

/*Extra Large Screen 32 Inch ( (Resolution 3840x2160 ) 3840px and up) */
@media (min-width: 3840px) {

    /*#region Banner*/

    .banner .carousel, .banner .carousel-inner {
        height: 1015px;
    }

    /*#endregion*/
}
