﻿@import url(https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i);
/*@import url(//weloveiconfonts.com/api/?family=entypo);*/



body {
    font-style: normal;
    line-height: 1.5;
}

.mbr-section-title {
    font-style: normal;
    line-height: 1.2;
}

.mbr-section-subtitle {
    line-height: 1.3;
}

.mbr-text {
    font-style: normal;
    line-height: 1.6;
}

.display-1 {
    font-family: 'Rubik', sans-serif;
    font-size: 4.25rem;
}

    .display-1 > .mbr-iconfont {
        font-size: 6.8rem;
    }

.display-2 {
    font-family: 'Rubik', sans-serif;
    font-size: 3rem;
}

    .display-2 > .mbr-iconfont {
        font-size: 4.8rem;
    }

.display-4 {
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
}

    .display-4 > .mbr-iconfont {
        font-size: 1.6rem;
    }

.display-5 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
}

    .display-5 > .mbr-iconfont {
        font-size: 2.4rem;
    }

.display-7 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
}

    .display-7 > .mbr-iconfont {
        font-size: 2.4rem;
    }
/* ---- Fluid typography for mobile devices ---- */ /* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */ /* 100vw - current viewport width */ /* (48 - 20) 48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */ /* 0.65 - min scale variable, may vary */

@media (max-width: 768px) {
    .display-1 {
        font-size: 3.4rem;
        font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-2 {
        font-size: 2.4rem;
        font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-4 {
        font-size: 0.8rem;
        font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-5 {
        font-size: 1.2rem;
        font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
    }
}
/* Buttons */

.btn {
    font-weight: 500;
    border-width: 2px;
    font-style: normal;
    letter-spacing: 1px;
    margin: .4rem .8rem;
    white-space: normal;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 1rem 3rem;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
}

.btn-sm {
    font-weight: 500;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0.6rem 1.5rem;
    border-radius: 3px;
}

.btn-md {
    font-weight: 500;
    letter-spacing: 1px;
    margin: .4rem .8rem !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 1rem 3rem;
    border-radius: 3px;
}

.btn-lg {
    font-weight: 500;
    letter-spacing: 1px;
    margin: .4rem .8rem !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 1.2rem 3.2rem;
    border-radius: 3px;
}

.bg-primary {
    background-color: #149dcc !important;
}

.bg-success {
    background-color: #f7ed4a !important;
}

.bg-info {
    background-color: #82786e !important;
}

.bg-warning {
    background-color: #879a9f !important;
}

.bg-danger {
    background-color: #b1a374 !important;
}

.btn-primary, .btn-primary:active {
    background-color: #149dcc !important;
    border-color: #149dcc !important;
    color: #ffffff !important;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary.active {
        color: #ffffff !important;
        background-color: #0d6786 !important;
        border-color: #0d6786 !important;
    }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #ffffff !important;
        background-color: #0d6786 !important;
        border-color: #0d6786 !important;
    }

.btn-secondary, .btn-secondary:active {
    background-color: #ff3366 !important;
    border-color: #ff3366 !important;
    color: #ffffff !important;
}

    .btn-secondary:hover, .btn-secondary:focus, .btn-secondary.focus, .btn-secondary.active {
        color: #ffffff !important;
        background-color: #e50039 !important;
        border-color: #e50039 !important;
    }

    .btn-secondary.disabled, .btn-secondary:disabled {
        color: #ffffff !important;
        background-color: #e50039 !important;
        border-color: #e50039 !important;
    }

.btn-info, .btn-info:active {
    background-color: #82786e !important;
    border-color: #82786e !important;
    color: #ffffff !important;
}

    .btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info.active {
        color: #ffffff !important;
        background-color: #59524b !important;
        border-color: #59524b !important;
    }

    .btn-info.disabled, .btn-info:disabled {
        color: #ffffff !important;
        background-color: #59524b !important;
        border-color: #59524b !important;
    }

.btn-success, .btn-success:active {
    background-color: #f7ed4a !important;
    border-color: #f7ed4a !important;
    color: #3f3c03 !important;
}

    .btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success.active {
        color: #3f3c03 !important;
        background-color: #eadd0a !important;
        border-color: #eadd0a !important;
    }

    .btn-success.disabled, .btn-success:disabled {
        color: #3f3c03 !important;
        background-color: #eadd0a !important;
        border-color: #eadd0a !important;
    }

.btn-warning, .btn-warning:active {
    background-color: #879a9f !important;
    border-color: #879a9f !important;
    color: #ffffff !important;
}

    .btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning.active {
        color: #ffffff !important;
        background-color: #617479 !important;
        border-color: #617479 !important;
    }

    .btn-warning.disabled, .btn-warning:disabled {
        color: #ffffff !important;
        background-color: #617479 !important;
        border-color: #617479 !important;
    }

.btn-danger, .btn-danger:active {
    background-color: #b1a374 !important;
    border-color: #b1a374 !important;
    color: #ffffff !important;
}

    .btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger.active {
        color: #ffffff !important;
        background-color: #8b7d4e !important;
        border-color: #8b7d4e !important;
    }

    .btn-danger.disabled, .btn-danger:disabled {
        color: #ffffff !important;
        background-color: #8b7d4e !important;
        border-color: #8b7d4e !important;
    }

.btn-white {
    color: #333333 !important;
}

    .btn-white, .btn-white:active {
        background-color: #ffffff !important;
        border-color: #ffffff !important;
        color: #808080 !important;
    }

        .btn-white:hover, .btn-white:focus, .btn-white.focus, .btn-white.active {
            color: #808080 !important;
            background-color: #d9d9d9 !important;
            border-color: #d9d9d9 !important;
        }

        .btn-white.disabled, .btn-white:disabled {
            color: #808080 !important;
            background-color: #d9d9d9 !important;
            border-color: #d9d9d9 !important;
        }

.btn-black, .btn-black:active {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}

    .btn-black:hover, .btn-black:focus, .btn-black.focus, .btn-black.active {
        color: #ffffff !important;
        background-color: #0d0d0d !important;
        border-color: #0d0d0d !important;
    }

    .btn-black.disabled, .btn-black:disabled {
        color: #ffffff !important;
        background-color: #0d0d0d !important;
        border-color: #0d0d0d !important;
    }

.btn-primary-outline, .btn-primary-outline:active {
    background: none;
    border-color: #0b566f;
    color: #0b566f;
}

    .btn-primary-outline:hover, .btn-primary-outline:focus, .btn-primary-outline.focus, .btn-primary-outline.active {
        color: #ffffff;
        background-color: #149dcc;
        border-color: #149dcc;
    }

    .btn-primary-outline.disabled, .btn-primary-outline:disabled {
        color: #ffffff !important;
        background-color: #149dcc !important;
        border-color: #149dcc !important;
    }

.btn-secondary-outline, .btn-secondary-outline:active {
    background: none;
    border-color: #cc0033;
    color: #cc0033;
}

    .btn-secondary-outline:hover, .btn-secondary-outline:focus, .btn-secondary-outline.focus, .btn-secondary-outline.active {
        color: #ffffff;
        background-color: #ff3366;
        border-color: #ff3366;
    }

    .btn-secondary-outline.disabled, .btn-secondary-outline:disabled {
        color: #ffffff !important;
        background-color: #ff3366 !important;
        border-color: #ff3366 !important;
    }

.btn-info-outline, .btn-info-outline:active {
    background: none;
    border-color: #4b453f;
    color: #4b453f;
}

    .btn-info-outline:hover, .btn-info-outline:focus, .btn-info-outline.focus, .btn-info-outline.active {
        color: #ffffff;
        background-color: #82786e;
        border-color: #82786e;
    }

    .btn-info-outline.disabled, .btn-info-outline:disabled {
        color: #ffffff !important;
        background-color: #82786e !important;
        border-color: #82786e !important;
    }

.btn-success-outline, .btn-success-outline:active {
    background: none;
    border-color: #d2c609;
    color: #d2c609;
}

    .btn-success-outline:hover, .btn-success-outline:focus, .btn-success-outline.focus, .btn-success-outline.active {
        color: #3f3c03;
        background-color: #f7ed4a;
        border-color: #f7ed4a;
    }

    .btn-success-outline.disabled, .btn-success-outline:disabled {
        color: #3f3c03 !important;
        background-color: #f7ed4a !important;
        border-color: #f7ed4a !important;
    }

.btn-warning-outline, .btn-warning-outline:active {
    background: none;
    border-color: #55666b;
    color: #55666b;
}

    .btn-warning-outline:hover, .btn-warning-outline:focus, .btn-warning-outline.focus, .btn-warning-outline.active {
        color: #ffffff;
        background-color: #879a9f;
        border-color: #879a9f;
    }

    .btn-warning-outline.disabled, .btn-warning-outline:disabled {
        color: #ffffff !important;
        background-color: #879a9f !important;
        border-color: #879a9f !important;
    }

.btn-danger-outline, .btn-danger-outline:active {
    background: none;
    border-color: #7a6e45;
    color: #7a6e45;
}

    .btn-danger-outline:hover, .btn-danger-outline:focus, .btn-danger-outline.focus, .btn-danger-outline.active {
        color: #ffffff;
        background-color: #b1a374;
        border-color: #b1a374;
    }

    .btn-danger-outline.disabled, .btn-danger-outline:disabled {
        color: #ffffff !important;
        background-color: #b1a374 !important;
        border-color: #b1a374 !important;
    }

.btn-black-outline, .btn-black-outline:active {
    background: none;
    border-color: #000000;
    color: #000000;
}

    .btn-black-outline:hover, .btn-black-outline:focus, .btn-black-outline.focus, .btn-black-outline.active {
        color: #ffffff;
        background-color: #333333;
        border-color: #333333;
    }

    .btn-black-outline.disabled, .btn-black-outline:disabled {
        color: #ffffff !important;
        background-color: #333333 !important;
        border-color: #333333 !important;
    }

.btn-white-outline, .btn-white-outline:active, .btn-white-outline.active {
    background: none;
    border-color: #ffffff;
    color: #ffffff;
}

    .btn-white-outline:hover, .btn-white-outline:focus, .btn-white-outline.focus {
        color: #333333;
        background-color: #ffffff;
        border-color: #ffffff;
    }

.text-primary {
    color: #149dcc !important;
}

.text-secondary {
    color: #ff3366 !important;
}

.text-success {
    color: #f7ed4a !important;
}

.text-info {
    color: #82786e !important;
}

.text-warning {
    color: #879a9f !important;
}

.text-danger {
    color: #b1a374 !important;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

a.text-primary:hover, a.text-primary:focus {
    color: #0b566f !important;
}

a.text-secondary:hover, a.text-secondary:focus {
    color: #cc0033 !important;
}

a.text-success:hover, a.text-success:focus {
    color: #d2c609 !important;
}

a.text-info:hover, a.text-info:focus {
    color: #4b453f !important;
}

a.text-warning:hover, a.text-warning:focus {
    color: #55666b !important;
}

a.text-danger:hover, a.text-danger:focus {
    color: #7a6e45 !important;
}

a.text-white:hover, a.text-white:focus {
    color: #b3b3b3 !important;
}

a.text-black:hover, a.text-black:focus {
    color: #4d4d4d !important;
}

.alert-success {
    background-color: #70c770;
}

.alert-info {
    background-color: #82786e;
}

.alert-warning {
    background-color: #879a9f;
}

.alert-danger {
    background-color: #b1a374;
}

.mbr-section-btn a.btn:not(.btn-form) {
    border-radius: 100px;
}

    .mbr-section-btn a.btn:not(.btn-form):hover, .mbr-section-btn a.btn:not(.btn-form):focus {
        box-shadow: none !important;
    }

    .mbr-section-btn a.btn:not(.btn-form):hover, .mbr-section-btn a.btn:not(.btn-form):focus {
        box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
        -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
    }

.mbr-gallery-filter li a {
    border-radius: 100px !important;
}

.mbr-gallery-filter li.active .btn {
    background-color: #149dcc;
    border-color: #149dcc;
    color: #ffffff;
}

    .mbr-gallery-filter li.active .btn:focus {
        box-shadow: none;
    }

.nav-tabs .nav-link {
    border-radius: 100px !important;
}

.btn-form {
    border-radius: 0;
}

    .btn-form:hover {
        cursor: pointer;
    }

a, a:hover {
    color: #149dcc;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle, .mbr-plan-header.bg-primary .mbr-plan-price-desc {
    color: #b4e6f8;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle, .mbr-plan-header.bg-success .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle, .mbr-plan-header.bg-info .mbr-plan-price-desc {
    color: #beb8b2;
}

.mbr-plan-header.bg-warning .mbr-plan-subtitle, .mbr-plan-header.bg-warning .mbr-plan-price-desc {
    color: #ced6d8;
}

.mbr-plan-header.bg-danger .mbr-plan-subtitle, .mbr-plan-header.bg-danger .mbr-plan-price-desc {
    color: #dfd9c6;
}
/* Scroll to top button*/

#scrollToTop a {
    border-radius: 100px;
}

    #scrollToTop a i:before {
        content: '';
        position: absolute;
        height: 40%;
        top: 25%;
        background: #fff;
        width: 2px;
        left: calc(50% - 1px);
    }

    #scrollToTop a i:after {
        content: '';
        position: absolute;
        display: block;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        width: 40%;
        height: 40%;
        left: 30%;
        bottom: 30%;
        transform: rotate(135deg);
    }
/* Others*/

.note-check a[data-value=Rubik] {
    font-style: normal;
}

.mbr-arrow a {
    color: #ffffff;
}

@media (max-width: 767px) {
    .mbr-arrow {
        display: none;
    }
}

.form-control-label {
    position: relative;
    cursor: pointer;
    margin-bottom: .357em;
    padding: 0;
}

.alert {
    color: #ffffff;
    border-radius: 0;
    border: 0;
    font-size: .875rem;
    line-height: 1.5;
    margin-bottom: 1.875rem;
    padding: 1.25rem;
    position: relative;
}

    .alert.alert-form::after {
        background-color: inherit;
        bottom: -7px;
        content: "";
        display: block;
        height: 14px;
        left: 50%;
        margin-left: -7px;
        position: absolute;
        transform: rotate(45deg);
        width: 14px;
    }

.form-control {
    background-color: #f5f5f5;
    box-shadow: none;
    color: #565656;
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
    line-height: 1.43;
    min-height: 3.5em;
    padding: 0.75em .5em;
}

    .form-control > .mbr-iconfont {
        font-size: 2.4rem;
    }

    .form-control, .form-control:focus {
        border: 1px solid #e8e8e8;
    }

.form-active .form-control:invalid {
    border-color: red;
}

.mbr-overlay {
    background-color: #000;
    bottom: 0;
    left: 0;
    opacity: .5;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

blockquote {
    font-style: italic;
    padding: 10px 0 10px 20px;
    font-size: 1.09rem;
    position: relative;
    border-color: #149dcc;
    border-width: 3px;
}

ul, ol, pre, blockquote {
    margin-bottom: 2.3125rem;
}

pre {
    background: #f4f4f4;
    padding: 10px 24px;
    white-space: nowrap;
}

.inactive {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.mbr-section__comments .row {
    justify-content: center;
}
/* Forms */

.mbr-form .btn {
    margin: .4rem 0;
}

.mbr-form .input-group-btn a.btn {
    border-radius: 100px !important;
}

    .mbr-form .input-group-btn a.btn:hover {
        box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
    }

.mbr-form .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
    padding: 1rem 3rem;
}

    .mbr-form .input-group-btn button[type="submit"]:hover {
        box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
    }

.form2 .form-control {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

.form2 .input-group-btn a.btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.form2 .input-group-btn button[type="submit"] {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.form3 input[type="email"] {
    border-radius: 100px !important;
}

@media (max-width: 349px) {
    .form2 input[type="email"] {
        border-radius: 100px !important;
    }

    .form2 .input-group-btn a.btn {
        border-radius: 100px !important;
    }

    .form2 .input-group-btn button[type="submit"] {
        border-radius: 100px !important;
    }
}

@media (max-width: 767px) {
    .btn {
        font-size: .75rem !important;
    }

        .btn .mbr-iconfont {
            font-size: 1rem !important;
        }
}
/* Social block */

.btn-social {
    font-size: 20px;
    border-radius: 50%;
    padding: 0;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    position: relative;
    border: 2px solid #c0a375;
    border-color: #149dcc;
    color: #232323;
    cursor: pointer;
}

    .btn-social i {
        top: 0;
        line-height: 44px;
        width: 44px;
    }

    .btn-social:hover {
        color: #fff;
        background: #149dcc;
    }

    .btn-social + .btn {
        margin-left: .1rem;
    }
/* Footer */

.mbr-footer-content li::before, .mbr-footer .mbr-contacts li::before {
    background: #149dcc;
}

.mbr-footer-content li a:hover, .mbr-footer .mbr-contacts li a:hover {
    color: #149dcc;
}

.footer3 input[type="email"], .footer4 input[type="email"] {
    border-radius: 100px !important;
}

.footer3 .input-group-btn a.btn, .footer4 .input-group-btn a.btn {
    border-radius: 100px !important;
}

.footer3 .input-group-btn button[type="submit"], .footer4 .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
}
/* Headers*/

.header13 .form-inline input[type="email"], .header14 .form-inline input[type="email"] {
    border-radius: 100px;
}

.header13 .form-inline input[type="text"], .header14 .form-inline input[type="text"] {
    border-radius: 100px;
}

.header13 .form-inline input[type="tel"], .header14 .form-inline input[type="tel"] {
    border-radius: 100px;
}

.header13 .form-inline a.btn, .header14 .form-inline a.btn {
    border-radius: 100px;
}

.header13 .form-inline button, .header14 .form-inline button {
    border-radius: 100px !important;
}

.offset-1 {
    margin-left: 8.33333%;
}

.offset-2 {
    margin-left: 16.66667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333%;
}

.offset-5 {
    margin-left: 41.66667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333%;
}

.offset-8 {
    margin-left: 66.66667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333%;
}

.offset-11 {
    margin-left: 91.66667%;
}

@media (min-width: 576px) {
    .offset-sm-0 {
        margin-left: 0%;
    }

    .offset-sm-1 {
        margin-left: 8.33333%;
    }

    .offset-sm-2 {
        margin-left: 16.66667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333%;
    }

    .offset-sm-5 {
        margin-left: 41.66667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333%;
    }

    .offset-sm-8 {
        margin-left: 66.66667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333%;
    }

    .offset-sm-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 768px) {
    .offset-md-0 {
        margin-left: 0%;
    }

    .offset-md-1 {
        margin-left: 8.33333%;
    }

    .offset-md-2 {
        margin-left: 16.66667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333%;
    }

    .offset-md-5 {
        margin-left: 41.66667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333%;
    }

    .offset-md-8 {
        margin-left: 66.66667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333%;
    }

    .offset-md-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 992px) {
    .offset-lg-0 {
        margin-left: 0%;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333%;
    }

    .offset-lg-5 {
        margin-left: 41.66667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333%;
    }

    .offset-lg-8 {
        margin-left: 66.66667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333%;
    }

    .offset-lg-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1200px) {
    .offset-xl-0 {
        margin-left: 0%;
    }

    .offset-xl-1 {
        margin-left: 8.33333%;
    }

    .offset-xl-2 {
        margin-left: 16.66667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333%;
    }

    .offset-xl-5 {
        margin-left: 41.66667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333%;
    }

    .offset-xl-8 {
        margin-left: 66.66667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333%;
    }

    .offset-xl-11 {
        margin-left: 91.66667%;
    }
}

.navbar-toggler {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background: transparent;
    border: 1px solid transparent;
    -webkit-border-radius: 0.25rem;
    border-radius: 0.25rem;
}

    .navbar-toggler:focus, .navbar-toggler:hover {
        text-decoration: none;
    }

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    -webkit-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
}

.navbar-toggler-left {
    position: absolute;
    left: 1rem;
}

.navbar-toggler-right {
    position: absolute;
    right: 1rem;
}

@media (max-width: 575px) {
    .navbar-toggleable .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }

    .navbar-toggleable > .container {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 576px) {
    .navbar-toggleable {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .navbar-toggleable .navbar-nav {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .navbar-toggleable .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem;
            }

        .navbar-toggleable > .container {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .navbar-toggleable .navbar-collapse {
            display: -webkit-box !important;
            display: -webkit-flex !important;
            display: -ms-flexbox !important;
            display: flex !important;
            width: 100%;
        }

        .navbar-toggleable .navbar-toggler {
            display: none;
        }
}

@media (max-width: 767px) {
    .navbar-toggleable-sm .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }

    .navbar-toggleable-sm > .container {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .navbar-toggleable-sm {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .navbar-toggleable-sm .navbar-nav {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .navbar-toggleable-sm .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem;
            }

        .navbar-toggleable-sm > .container {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .navbar-toggleable-sm .navbar-collapse {
            display: -webkit-box !important;
            display: -webkit-flex !important;
            display: -ms-flexbox !important;
            display: flex !important;
            width: 100%;
        }

        .navbar-toggleable-sm .navbar-toggler {
            display: none;
        }
}

@media (max-width: 991px) {
    .navbar-toggleable-md .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }

    .navbar-toggleable-md > .container {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .navbar-toggleable-md {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .navbar-toggleable-md .navbar-nav {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .navbar-toggleable-md .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem;
            }

        .navbar-toggleable-md > .container {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .navbar-toggleable-md .navbar-collapse {
            display: -webkit-box !important;
            display: -webkit-flex !important;
            display: -ms-flexbox !important;
            display: flex !important;
            width: 100%;
        }

        .navbar-toggleable-md .navbar-toggler {
            display: none;
        }
}

@media (max-width: 1199px) {
    .navbar-toggleable-lg .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }

    .navbar-toggleable-lg > .container {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 1200px) {
    .navbar-toggleable-lg {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .navbar-toggleable-lg .navbar-nav {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .navbar-toggleable-lg .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem;
            }

        .navbar-toggleable-lg > .container {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .navbar-toggleable-lg .navbar-collapse {
            display: -webkit-box !important;
            display: -webkit-flex !important;
            display: -ms-flexbox !important;
            display: flex !important;
            width: 100%;
        }

        .navbar-toggleable-lg .navbar-toggler {
            display: none;
        }
}

.navbar-toggleable-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    .navbar-toggleable-xl .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }

    .navbar-toggleable-xl > .container {
        padding-right: 0;
        padding-left: 0;
    }

    .navbar-toggleable-xl .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

        .navbar-toggleable-xl .navbar-nav .nav-link {
            padding-right: .5rem;
            padding-left: .5rem;
        }

    .navbar-toggleable-xl > .container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .navbar-toggleable-xl .navbar-collapse {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        width: 100%;
    }

    .navbar-toggleable-xl .navbar-toggler {
        display: none;
    }

.card-img {
    width: auto;
}

.menu .navbar.collapsed:not(.beta-menu) {
    flex-direction: column;
}

.carousel-item.active, .carousel-item-next, .carousel-item-prev {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.note-air-layout .dropup .dropdown-menu, .note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
    bottom: initial !important;
}

html, body {
    height: auto;
    min-height: 100vh;
}

.dropup .dropdown-toggle::after {
    display: none;
}

.cid-qLjPwbzRSK .navbar {
    padding: .5rem 0;
    background: #c1c1c1;
    transition: none;
    min-height: 77px;
}

.cid-qLjPwbzRSK .navbar-dropdown.bg-color.transparent.opened {
    background: #c1c1c1;
}

.cid-qLjPwbzRSK a {
    font-style: normal;
}

.cid-qLjPwbzRSK .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: text-bottom;
    position: relative;
    text-decoration: none;
}

.cid-qLjPwbzRSK .nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0 !important;
    margin: 0rem .65rem !important;
}

.cid-qLjPwbzRSK .nav-item:focus, .cid-qLjPwbzRSK .nav-link:focus {
    outline: none;
}

.cid-qLjPwbzRSK .btn {
    padding: 0.4rem 1.5rem;
    display: inline-flex;
    align-items: center;
}

    .cid-qLjPwbzRSK .btn .mbr-iconfont {
        font-size: 1.6rem;
    }

.cid-qLjPwbzRSK .menu-logo {
    margin-right: auto;
}

    .cid-qLjPwbzRSK .menu-logo .navbar-brand {
        display: flex;
        margin-left: 5rem;
        padding: 0;
        transition: padding .2s;
        min-height: 3.8rem;
        align-items: center;
    }

        .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-caption-wrap {
            display: -webkit-flex;
            -webkit-align-items: center;
            align-items: center;
            word-break: break-word;
            min-width: 7rem;
            margin: .3rem 0;
        }

            .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
                line-height: 1.2rem !important;
                padding-right: 2rem;
            }

        .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-logo {
            font-size: 4rem;
            transition: font-size 0.25s;
        }

            .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-logo img {
                display: flex;
            }

            .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
                transition: font-size 0.25s;
            }

.cid-qLjPwbzRSK .navbar-toggleable-sm .navbar-collapse {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    padding-right: 5rem;
    width: auto;
}

    .cid-qLjPwbzRSK .navbar-toggleable-sm .navbar-collapse .navbar-nav {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        padding-left: 0;
    }

        .cid-qLjPwbzRSK .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
            -webkit-align-self: center;
            align-self: center;
        }

    .cid-qLjPwbzRSK .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
        padding-left: 0;
        padding-bottom: 0;
    }

.cid-qLjPwbzRSK .dropdown .dropdown-menu {
    background: #c1c1c1;
    display: none;
    position: absolute;
    min-width: 5rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    text-align: left;
}

    .cid-qLjPwbzRSK .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        padding: 0.235em 1.5385em 0.235em 1.5385em !important;
    }

        .cid-qLjPwbzRSK .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

    .cid-qLjPwbzRSK .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
    }

.cid-qLjPwbzRSK .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-qLjPwbzRSK .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    z-index: 1000;
}

.cid-qLjPwbzRSK .navbar.navbar-short {
    min-height: 60px;
    transition: all .2s;
}

    .cid-qLjPwbzRSK .navbar.navbar-short .navbar-toggler-right {
        top: 20px;
    }

    .cid-qLjPwbzRSK .navbar.navbar-short .navbar-logo a {
        font-size: 2.5rem !important;
        line-height: 2.5rem;
        transition: font-size 0.25s;
    }

        .cid-qLjPwbzRSK .navbar.navbar-short .navbar-logo a .mbr-iconfont {
            font-size: 2.5rem !important;
        }

        .cid-qLjPwbzRSK .navbar.navbar-short .navbar-logo a img {
            height: 3rem !important;
        }

    .cid-qLjPwbzRSK .navbar.navbar-short .navbar-brand {
        min-height: 3rem;
    }

.cid-qLjPwbzRSK button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    transition: all .2s;
    top: 1.5rem;
    right: 1rem;
}

    .cid-qLjPwbzRSK button.navbar-toggler:focus {
        outline: none;
    }

    .cid-qLjPwbzRSK button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #ffffff;
    }

        .cid-qLjPwbzRSK button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all .2s;
        }

        .cid-qLjPwbzRSK button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLjPwbzRSK button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLjPwbzRSK button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all .2s;
        }

.cid-qLjPwbzRSK nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLjPwbzRSK nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
}

.cid-qLjPwbzRSK nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.cid-qLjPwbzRSK nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLjPwbzRSK .collapsed.navbar-expand {
    flex-direction: column;
}

.cid-qLjPwbzRSK .collapsed .btn {
    display: flex;
}

.cid-qLjPwbzRSK .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

    .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show {
        display: block !important;
    }

        .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-nav, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-nav {
            display: block;
            text-align: center;
        }

            .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-nav .nav-item {
                clear: both;
            }

                .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
                    margin-bottom: 1rem;
                }

        .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-buttons, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-buttons {
            text-align: center;
        }

            .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-buttons:last-child {
                margin-bottom: 1rem;
            }

.cid-qLjPwbzRSK .collapsed button.navbar-toggler {
    display: block;
}

.cid-qLjPwbzRSK .collapsed .navbar-brand {
    margin-left: 1rem !important;
}

.cid-qLjPwbzRSK .collapsed .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
}

.cid-qLjPwbzRSK .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
}

.cid-qLjPwbzRSK .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-qLjPwbzRSK .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-qLjPwbzRSK .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
}

@media (max-width: 991px) {
    .cid-qLjPwbzRSK .navbar-expand {
        flex-direction: column;
    }

    .cid-qLjPwbzRSK img {
        height: 3.8rem !important;
    }

    .cid-qLjPwbzRSK .btn {
        display: flex;
    }

    .cid-qLjPwbzRSK button.navbar-toggler {
        display: block;
    }

    .cid-qLjPwbzRSK .navbar-brand {
        margin-left: 1rem !important;
    }

    .cid-qLjPwbzRSK .navbar-toggleable-sm {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .cid-qLjPwbzRSK .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

        .cid-qLjPwbzRSK .navbar-collapse.collapsing, .cid-qLjPwbzRSK .navbar-collapse.show {
            display: block !important;
        }

            .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-nav, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-nav {
                display: block;
                text-align: center;
            }

                .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-nav .nav-item {
                    clear: both;
                }

                    .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-nav .nav-item:last-child {
                        margin-bottom: 1rem;
                    }

            .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-buttons, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-buttons {
                text-align: center;
            }

                .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-buttons:last-child {
                    margin-bottom: 1rem;
                }

    .cid-qLjPwbzRSK .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        transition-duration: .5s;
        transition-property: opacity,padding,height;
    }

    .cid-qLjPwbzRSK .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-qLjPwbzRSK .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-qLjPwbzRSK .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: .3em;
        vertical-align: middle;
        content: "";
        border-top: .30em solid;
        border-right: .30em solid transparent;
        border-left: .30em solid transparent;
    }
}

@media (min-width: 767px) {
    .cid-qLjPwbzRSK .menu-logo {
        flex-shrink: 0;
    }
}

.cid-qLjPwbzRSK .navbar-collapse {
    flex-basis: auto;
}

.cid-qLjPwbzRSK .nav-link:hover, .cid-qLjPwbzRSK .dropdown-item:hover {
    color: #70c770 !important;
}

.cid-qM3AQThVO2 {
    padding-top: 75px;
    padding-bottom: 45px;
    background-image: url("../../../assets/images/background2.jpg");
    overflow: hidden;
}

    .cid-qM3AQThVO2 .carousel-control {
        background: #000;
    }

    .cid-qM3AQThVO2 .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qM3AQThVO2 .carousel-item {
        -webkit-justify-content: center;
        justify-content: center;
    }

        .cid-qM3AQThVO2 .carousel-item .media-container-row {
            -webkit-flex-grow: 1;
            flex-grow: 1;
        }

        .cid-qM3AQThVO2 .carousel-item .wrap-img {
            text-align: center;
        }

            .cid-qM3AQThVO2 .carousel-item .wrap-img img {
                max-height: 150px;
                width: auto;
                max-width: 100%;
            }

    .cid-qM3AQThVO2 .carousel-controls {
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
    }

        .cid-qM3AQThVO2 .carousel-controls .carousel-control {
            background: #000;
            border-radius: 50%;
            position: static;
            width: 40px;
            height: 40px;
            margin-top: 2rem;
            border-width: 1px;
        }

            .cid-qM3AQThVO2 .carousel-controls .carousel-control.carousel-control-prev {
                left: auto;
                margin-right: 20px;
                margin-left: 0;
            }

            .cid-qM3AQThVO2 .carousel-controls .carousel-control.carousel-control-next {
                right: auto;
                margin-right: 0;
            }

            .cid-qM3AQThVO2 .carousel-controls .carousel-control .mbr-iconfont {
                font-size: 1rem;
            }

    .cid-qM3AQThVO2 .cloneditem-1, .cid-qM3AQThVO2 .cloneditem-2, .cid-qM3AQThVO2 .cloneditem-3, .cid-qM3AQThVO2 .cloneditem-4, .cid-qM3AQThVO2 .cloneditem-5 {
        display: none;
    }

    .cid-qM3AQThVO2 .col-lg-15 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        position: relative;
        min-height: 1px;
        padding-right: 10px;
        padding-left: 10px;
        width: 100%;
    }

@media (min-width: 992px) {
    .cid-qM3AQThVO2 .col-lg-15 {
        -ms-flex: 0 0 20%;
        -webkit-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        width: 20%;
    }

    .cid-qM3AQThVO2 .carousel-inner.slides2 > .carousel-item.active.carousel-item-right, .cid-qM3AQThVO2 .carousel-inner.slides2 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
    }

    .cid-qM3AQThVO2 .carousel-inner.slides2 > .carousel-item.active.carousel-item-left, .cid-qM3AQThVO2 .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }

        .cid-qM3AQThVO2 .carousel-inner.slides2 > .carousel-item.carousel-item-left, .cid-qM3AQThVO2 .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qM3AQThVO2 .carousel-inner.slides2 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qM3AQThVO2 .carousel-inner.slides2 .cloneditem-1, .cid-qM3AQThVO2 .carousel-inner.slides2 .cloneditem-2, .cid-qM3AQThVO2 .carousel-inner.slides2 .cloneditem-3 {
        display: block;
    }

    .cid-qM3AQThVO2 .carousel-inner.slides3 > .carousel-item.active.carousel-item-right, .cid-qM3AQThVO2 .carousel-inner.slides3 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(33.333333%, 0, 0);
        transform: translate3d(33.333333%, 0, 0);
    }

    .cid-qM3AQThVO2 .carousel-inner.slides3 > .carousel-item.active.carousel-item-left, .cid-qM3AQThVO2 .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-33.333333%, 0, 0);
        transform: translate3d(-33.333333%, 0, 0);
    }

        .cid-qM3AQThVO2 .carousel-inner.slides3 > .carousel-item.carousel-item-left, .cid-qM3AQThVO2 .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qM3AQThVO2 .carousel-inner.slides3 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qM3AQThVO2 .carousel-inner.slides3 .cloneditem-1, .cid-qM3AQThVO2 .carousel-inner.slides3 .cloneditem-2, .cid-qM3AQThVO2 .carousel-inner.slides3 .cloneditem-3 {
        display: block;
    }

    .cid-qM3AQThVO2 .carousel-inner.slides4 > .carousel-item.active.carousel-item-right, .cid-qM3AQThVO2 .carousel-inner.slides4 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(25%, 0, 0);
        transform: translate3d(25%, 0, 0);
    }

    .cid-qM3AQThVO2 .carousel-inner.slides4 > .carousel-item.active.carousel-item-left, .cid-qM3AQThVO2 .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-25%, 0, 0);
        transform: translate3d(-25%, 0, 0);
    }

        .cid-qM3AQThVO2 .carousel-inner.slides4 > .carousel-item.carousel-item-left, .cid-qM3AQThVO2 .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qM3AQThVO2 .carousel-inner.slides4 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qM3AQThVO2 .carousel-inner.slides4 .cloneditem-1, .cid-qM3AQThVO2 .carousel-inner.slides4 .cloneditem-2, .cid-qM3AQThVO2 .carousel-inner.slides4 .cloneditem-3 {
        display: block;
    }

    .cid-qM3AQThVO2 .carousel-inner.slides5 > .carousel-item.active.carousel-item-right, .cid-qM3AQThVO2 .carousel-inner.slides5 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(20%, 0, 0);
        transform: translate3d(20%, 0, 0);
    }

    .cid-qM3AQThVO2 .carousel-inner.slides5 > .carousel-item.active.carousel-item-left, .cid-qM3AQThVO2 .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-20%, 0, 0);
        transform: translate3d(-20%, 0, 0);
    }

        .cid-qM3AQThVO2 .carousel-inner.slides5 > .carousel-item.carousel-item-left, .cid-qM3AQThVO2 .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qM3AQThVO2 .carousel-inner.slides5 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qM3AQThVO2 .carousel-inner.slides5 .cloneditem-1, .cid-qM3AQThVO2 .carousel-inner.slides5 .cloneditem-2, .cid-qM3AQThVO2 .carousel-inner.slides5 .cloneditem-3, .cid-qM3AQThVO2 .carousel-inner.slides5 .cloneditem-4 {
        display: block;
    }

    .cid-qM3AQThVO2 .carousel-inner.slides6 > .carousel-item.active.carousel-item-right, .cid-qM3AQThVO2 .carousel-inner.slides6 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(16.666667%, 0, 0);
        transform: translate3d(16.666667%, 0, 0);
    }

    .cid-qM3AQThVO2 .carousel-inner.slides6 > .carousel-item.active.carousel-item-left, .cid-qM3AQThVO2 .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-16.666667%, 0, 0);
        transform: translate3d(-16.666667%, 0, 0);
    }

        .cid-qM3AQThVO2 .carousel-inner.slides6 > .carousel-item.carousel-item-left, .cid-qM3AQThVO2 .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qM3AQThVO2 .carousel-inner.slides6 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qM3AQThVO2 .carousel-inner.slides6 .cloneditem-1, .cid-qM3AQThVO2 .carousel-inner.slides6 .cloneditem-2, .cid-qM3AQThVO2 .carousel-inner.slides6 .cloneditem-3, .cid-qM3AQThVO2 .carousel-inner.slides6 .cloneditem-4, .cid-qM3AQThVO2 .carousel-inner.slides6 .cloneditem-5 {
        display: block;
    }
}

.cid-qLjQchLaOI {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #2e2e2e;
}

    .cid-qLjQchLaOI .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-qLjQchLaOI .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-qLjQchLaOI .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-qLjQchLaOI .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-qLjQchLaOI .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-qLjQchLaOI .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-qLjQchLaOI .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            -webkit-justify-content: flex-end;
        }

            .cid-qLjQchLaOI .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-qLjQchLaOI .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-qLjQchLaOI .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                -webkit-transition: .2s linear;
                transition: .2s linear;
            }

                .cid-qLjQchLaOI .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-qLjQchLaOI .media-container-row .social-list {
        justify-content: center;
        -webkit-justify-content: center;
    }
}

.cid-qLjQchLaOI .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-qLjQchLaOI .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-qLoMVJPyfD .navbar {
    padding: .5rem 0;
    background: #c1c1c1;
    transition: none;
    min-height: 77px;
}

.cid-qLoMVJPyfD .navbar-dropdown.bg-color.transparent.opened {
    background: #c1c1c1;
}

.cid-qLoMVJPyfD a {
    font-style: normal;
}

.cid-qLoMVJPyfD .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: text-bottom;
    position: relative;
    text-decoration: none;
}

.cid-qLoMVJPyfD .nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0 !important;
    margin: 0rem .65rem !important;
}

.cid-qLoMVJPyfD .nav-item:focus, .cid-qLoMVJPyfD .nav-link:focus {
    outline: none;
}

.cid-qLoMVJPyfD .btn {
    padding: 0.4rem 1.5rem;
    display: inline-flex;
    align-items: center;
}

    .cid-qLoMVJPyfD .btn .mbr-iconfont {
        font-size: 1.6rem;
    }

.cid-qLoMVJPyfD .menu-logo {
    margin-right: auto;
}

    .cid-qLoMVJPyfD .menu-logo .navbar-brand {
        display: flex;
        margin-left: 5rem;
        padding: 0;
        transition: padding .2s;
        min-height: 3.8rem;
        align-items: center;
    }

        .cid-qLoMVJPyfD .menu-logo .navbar-brand .navbar-caption-wrap {
            display: -webkit-flex;
            -webkit-align-items: center;
            align-items: center;
            word-break: break-word;
            min-width: 7rem;
            margin: .3rem 0;
        }

            .cid-qLoMVJPyfD .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
                line-height: 1.2rem !important;
                padding-right: 2rem;
            }

        .cid-qLoMVJPyfD .menu-logo .navbar-brand .navbar-logo {
            font-size: 4rem;
            transition: font-size 0.25s;
        }

            .cid-qLoMVJPyfD .menu-logo .navbar-brand .navbar-logo img {
                display: flex;
            }

            .cid-qLoMVJPyfD .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
                transition: font-size 0.25s;
            }

.cid-qLoMVJPyfD .navbar-toggleable-sm .navbar-collapse {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    padding-right: 5rem;
    width: auto;
}

    .cid-qLoMVJPyfD .navbar-toggleable-sm .navbar-collapse .navbar-nav {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        padding-left: 0;
    }

        .cid-qLoMVJPyfD .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
            -webkit-align-self: center;
            align-self: center;
        }

    .cid-qLoMVJPyfD .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
        padding-left: 0;
        padding-bottom: 0;
    }

.cid-qLoMVJPyfD .dropdown .dropdown-menu {
    background: #c1c1c1;
    display: none;
    position: absolute;
    min-width: 5rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    text-align: left;
}

    .cid-qLoMVJPyfD .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        padding: 0.235em 1.5385em 0.235em 1.5385em !important;
    }

        .cid-qLoMVJPyfD .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

    .cid-qLoMVJPyfD .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
    }

.cid-qLoMVJPyfD .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-qLoMVJPyfD .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    z-index: 1000;
}

.cid-qLoMVJPyfD .navbar.navbar-short {
    min-height: 60px;
    transition: all .2s;
}

    .cid-qLoMVJPyfD .navbar.navbar-short .navbar-toggler-right {
        top: 20px;
    }

    .cid-qLoMVJPyfD .navbar.navbar-short .navbar-logo a {
        font-size: 2.5rem !important;
        line-height: 2.5rem;
        transition: font-size 0.25s;
    }

        .cid-qLoMVJPyfD .navbar.navbar-short .navbar-logo a .mbr-iconfont {
            font-size: 2.5rem !important;
        }

        .cid-qLoMVJPyfD .navbar.navbar-short .navbar-logo a img {
            height: 3rem !important;
        }

    .cid-qLoMVJPyfD .navbar.navbar-short .navbar-brand {
        min-height: 3rem;
    }

.cid-qLoMVJPyfD button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    transition: all .2s;
    top: 1.5rem;
    right: 1rem;
}

    .cid-qLoMVJPyfD button.navbar-toggler:focus {
        outline: none;
    }

    .cid-qLoMVJPyfD button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #ffffff;
    }

        .cid-qLoMVJPyfD button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all .2s;
        }

        .cid-qLoMVJPyfD button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLoMVJPyfD button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLoMVJPyfD button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all .2s;
        }

        .cid-qLoMVJPyfD button.navbar-toggler .hamburger span:nth-child(5) {
            top: 16px;
            transition: all .2s;
        }

.cid-qLoMVJPyfD nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLoMVJPyfD nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
}

.cid-qLoMVJPyfD nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.cid-qLoMVJPyfD nav.opened .hamburger span:nth-child(4) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.cid-qLoMVJPyfD nav.opened .hamburger span:nth-child(5) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLoMVJPyfD .collapsed.navbar-expand {
    flex-direction: column;
}

.cid-qLoMVJPyfD .collapsed .btn {
    display: flex;
}

.cid-qLoMVJPyfD .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

    .cid-qLoMVJPyfD .collapsed .navbar-collapse.collapsing, .cid-qLoMVJPyfD .collapsed .navbar-collapse.show {
        display: block !important;
    }

        .cid-qLoMVJPyfD .collapsed .navbar-collapse.collapsing .navbar-nav, .cid-qLoMVJPyfD .collapsed .navbar-collapse.show .navbar-nav {
            display: block;
            text-align: center;
        }

            .cid-qLoMVJPyfD .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLoMVJPyfD .collapsed .navbar-collapse.show .navbar-nav .nav-item {
                clear: both;
            }

                .cid-qLoMVJPyfD .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLoMVJPyfD .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
                    margin-bottom: 1rem;
                }

        .cid-qLoMVJPyfD .collapsed .navbar-collapse.collapsing .navbar-buttons, .cid-qLoMVJPyfD .collapsed .navbar-collapse.show .navbar-buttons {
            text-align: center;
        }

            .cid-qLoMVJPyfD .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLoMVJPyfD .collapsed .navbar-collapse.show .navbar-buttons:last-child {
                margin-bottom: 1rem;
            }

.cid-qLoMVJPyfD .collapsed button.navbar-toggler {
    display: block;
}

.cid-qLoMVJPyfD .collapsed .navbar-brand {
    margin-left: 1rem !important;
}

.cid-qLoMVJPyfD .collapsed .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
}

.cid-qLoMVJPyfD .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
}

.cid-qLoMVJPyfD .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-qLoMVJPyfD .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-qLoMVJPyfD .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
}

@media (max-width: 991px) {
    .cid-qLoMVJPyfD .navbar-expand {
        flex-direction: column;
    }

    .cid-qLoMVJPyfD img {
        height: 3.8rem !important;
    }

    .cid-qLoMVJPyfD .btn {
        display: flex;
    }

    .cid-qLoMVJPyfD button.navbar-toggler {
        display: block;
    }

    .cid-qLoMVJPyfD .navbar-brand {
        margin-left: 1rem !important;
    }

    .cid-qLoMVJPyfD .navbar-toggleable-sm {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .cid-qLoMVJPyfD .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

        .cid-qLoMVJPyfD .navbar-collapse.collapsing, .cid-qLoMVJPyfD .navbar-collapse.show {
            display: block !important;
        }

            .cid-qLoMVJPyfD .navbar-collapse.collapsing .navbar-nav, .cid-qLoMVJPyfD .navbar-collapse.show .navbar-nav {
                display: block;
                text-align: center;
            }

                .cid-qLoMVJPyfD .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLoMVJPyfD .navbar-collapse.show .navbar-nav .nav-item {
                    clear: both;
                }

                    .cid-qLoMVJPyfD .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLoMVJPyfD .navbar-collapse.show .navbar-nav .nav-item:last-child {
                        margin-bottom: 1rem;
                    }

            .cid-qLoMVJPyfD .navbar-collapse.collapsing .navbar-buttons, .cid-qLoMVJPyfD .navbar-collapse.show .navbar-buttons {
                text-align: center;
            }

                .cid-qLoMVJPyfD .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLoMVJPyfD .navbar-collapse.show .navbar-buttons:last-child {
                    margin-bottom: 1rem;
                }

    .cid-qLoMVJPyfD .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        transition-duration: .5s;
        transition-property: opacity,padding,height;
    }

    .cid-qLoMVJPyfD .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-qLoMVJPyfD .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-qLoMVJPyfD .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: .3em;
        vertical-align: middle;
        content: "";
        border-top: .30em solid;
        border-right: .30em solid transparent;
        border-left: .30em solid transparent;
    }
}

@media (min-width: 767px) {
    .cid-qLoMVJPyfD .menu-logo {
        flex-shrink: 0;
    }
}

.cid-qLoMVJPyfD .navbar-collapse {
    flex-basis: auto;
}

.cid-qLoMVJPyfD .nav-link:hover, .cid-qLoMVJPyfD .dropdown-item:hover {
    color: #70c770 !important;
}

.cid-qLoPkKEItw {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.AboutPage {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLoPMRsozI {
    padding-top: 45px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-qLoPMRsozI .mbr-section-subtitle {
        color: #767676;
        text-align: left;
    }

.cid-qLoQlzr3g8 {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ccac00;
}

    .cid-qLoQlzr3g8 .line {
        background-color: #ffffff;
        color: #ffffff;
        align: center;
        height: 2px;
        margin: 0 auto;
    }

    .cid-qLoQlzr3g8 .section-text {
        padding: 2rem 0;
    }

    .cid-qLoQlzr3g8 .inner-container {
        margin: 0 auto;
    }

@media (max-width: 768px) {
    .cid-qLoQlzr3g8 .inner-container {
        width: 100% !important;
    }
}

.cid-qLoQFFCfrY {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-qLoQFFCfrY .mbr-text, .cid-qLoQFFCfrY blockquote {
        color: #767676;
    }

.cid-qLoRDS3P42 {
    margin-top: 70px;
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

@media (min-width: 992px) {
    .cid-qLoRDS3P42 .mbr-figure {
        padding-right: 4rem;
    }
}

@media (max-width: 10779px) {
    .cid-qLoRDS3P42 .mbr-figure {
        padding-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .cid-qLoRDS3P42 .mbr-text {
        text-align: center;
    }
}

.cid-qLoPOTEaVE {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLoPOTEaVE .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLoPOTEaVE .media-row {
        display: flex;
        justify-content: center;
    }

    .cid-qLoPOTEaVE .team-item {
        transition: all .2s;
        margin-bottom: 2rem;
    }

        .cid-qLoPOTEaVE .team-item .item-image img {
            width: 100%;
        }

        .cid-qLoPOTEaVE .team-item .item-name p {
            margin-bottom: 0;
        }

        .cid-qLoPOTEaVE .team-item .item-role p {
            margin-bottom: 0;
        }

        .cid-qLoPOTEaVE .team-item .item-social {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

            .cid-qLoPOTEaVE .team-item .item-social .socicon {
                color: #232323;
                font-size: 17px;
            }

        .cid-qLoPOTEaVE .team-item .item-caption {
            background: #efefef;
        }

.cid-qLoPUpFGs7 {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLoPUpFGs7 .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLoPUpFGs7 .media-row {
        display: flex;
        justify-content: center;
    }

    .cid-qLoPUpFGs7 .team-item {
        transition: all .2s;
        margin-bottom: 2rem;
    }

        .cid-qLoPUpFGs7 .team-item .item-image img {
            width: 100%;
        }

        .cid-qLoPUpFGs7 .team-item .item-name p {
            margin-bottom: 0;
        }

        .cid-qLoPUpFGs7 .team-item .item-role p {
            margin-bottom: 0;
        }

        .cid-qLoPUpFGs7 .team-item .item-social {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

            .cid-qLoPUpFGs7 .team-item .item-social .socicon {
                color: #232323;
                font-size: 17px;
            }

        .cid-qLoPUpFGs7 .team-item .item-caption {
            background: #efefef;
        }

.cid-qLoPWTqtrf {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLoPWTqtrf .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLoPWTqtrf .media-row {
        display: flex;
        justify-content: center;
    }

    .cid-qLoPWTqtrf .team-item {
        transition: all .2s;
        margin-bottom: 2rem;
    }

        .cid-qLoPWTqtrf .team-item .item-image img {
            width: 100%;
        }

        .cid-qLoPWTqtrf .team-item .item-name p {
            margin-bottom: 0;
        }

        .cid-qLoPWTqtrf .team-item .item-role p {
            margin-bottom: 0;
        }

        .cid-qLoPWTqtrf .team-item .item-social {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

            .cid-qLoPWTqtrf .team-item .item-social .socicon {
                color: #232323;
                font-size: 17px;
            }

        .cid-qLoPWTqtrf .team-item .item-caption {
            background: #efefef;
        }

.cid-qLoPXgh521 {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLoPXgh521 .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLoPXgh521 .media-row {
        display: flex;
        justify-content: center;
    }

    .cid-qLoPXgh521 .team-item {
        transition: all .2s;
        margin-bottom: 2rem;
    }

        .cid-qLoPXgh521 .team-item .item-image img {
            width: 100%;
        }

        .cid-qLoPXgh521 .team-item .item-name p {
            margin-bottom: 0;
        }

        .cid-qLoPXgh521 .team-item .item-role p {
            margin-bottom: 0;
        }

        .cid-qLoPXgh521 .team-item .item-social {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

            .cid-qLoPXgh521 .team-item .item-social .socicon {
                color: #232323;
                font-size: 17px;
            }

        .cid-qLoPXgh521 .team-item .item-caption {
            background: #efefef;
        }

.cid-qLoPZE7Ooi {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLoPZE7Ooi .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLoPZE7Ooi .media-row {
        display: flex;
        justify-content: center;
    }

    .cid-qLoPZE7Ooi .team-item {
        transition: all .2s;
        margin-bottom: 2rem;
    }

        .cid-qLoPZE7Ooi .team-item .item-image img {
            width: 100%;
        }

        .cid-qLoPZE7Ooi .team-item .item-name p {
            margin-bottom: 0;
        }

        .cid-qLoPZE7Ooi .team-item .item-role p {
            margin-bottom: 0;
        }

        .cid-qLoPZE7Ooi .team-item .item-social {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

            .cid-qLoPZE7Ooi .team-item .item-social .socicon {
                color: #232323;
                font-size: 17px;
            }

        .cid-qLoPZE7Ooi .team-item .item-caption {
            background: #efefef;
        }

.cid-qLumNe8yQS {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

    .cid-qLumNe8yQS .carousel-control {
        background: #000;
    }

    .cid-qLumNe8yQS .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLumNe8yQS .carousel-item {
        -webkit-justify-content: center;
        justify-content: center;
    }

        .cid-qLumNe8yQS .carousel-item .media-container-row {
            -webkit-flex-grow: 1;
            flex-grow: 1;
        }

        .cid-qLumNe8yQS .carousel-item .wrap-img {
            text-align: center;
        }

            .cid-qLumNe8yQS .carousel-item .wrap-img img {
                max-height: 150px;
                width: auto;
                max-width: 100%;
            }

    .cid-qLumNe8yQS .carousel-controls {
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
    }

        .cid-qLumNe8yQS .carousel-controls .carousel-control {
            background: #000;
            border-radius: 50%;
            position: static;
            width: 40px;
            height: 40px;
            margin-top: 2rem;
            border-width: 1px;
        }

            .cid-qLumNe8yQS .carousel-controls .carousel-control.carousel-control-prev {
                left: auto;
                margin-right: 20px;
                margin-left: 0;
            }

            .cid-qLumNe8yQS .carousel-controls .carousel-control.carousel-control-next {
                right: auto;
                margin-right: 0;
            }

            .cid-qLumNe8yQS .carousel-controls .carousel-control .mbr-iconfont {
                font-size: 1rem;
            }

    .cid-qLumNe8yQS .cloneditem-1, .cid-qLumNe8yQS .cloneditem-2, .cid-qLumNe8yQS .cloneditem-3, .cid-qLumNe8yQS .cloneditem-4, .cid-qLumNe8yQS .cloneditem-5 {
        display: none;
    }

    .cid-qLumNe8yQS .col-lg-15 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        position: relative;
        min-height: 1px;
        padding-right: 10px;
        padding-left: 10px;
        width: 100%;
    }

@media (min-width: 992px) {
    .cid-qLumNe8yQS .col-lg-15 {
        -ms-flex: 0 0 20%;
        -webkit-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        width: 20%;
    }

    .cid-qLumNe8yQS .carousel-inner.slides2 > .carousel-item.active.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides2 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
    }

    .cid-qLumNe8yQS .carousel-inner.slides2 > .carousel-item.active.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }

        .cid-qLumNe8yQS .carousel-inner.slides2 > .carousel-item.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides2 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qLumNe8yQS .carousel-inner.slides2 .cloneditem-1, .cid-qLumNe8yQS .carousel-inner.slides2 .cloneditem-2, .cid-qLumNe8yQS .carousel-inner.slides2 .cloneditem-3 {
        display: block;
    }

    .cid-qLumNe8yQS .carousel-inner.slides3 > .carousel-item.active.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides3 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(33.333333%, 0, 0);
        transform: translate3d(33.333333%, 0, 0);
    }

    .cid-qLumNe8yQS .carousel-inner.slides3 > .carousel-item.active.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-33.333333%, 0, 0);
        transform: translate3d(-33.333333%, 0, 0);
    }

        .cid-qLumNe8yQS .carousel-inner.slides3 > .carousel-item.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides3 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qLumNe8yQS .carousel-inner.slides3 .cloneditem-1, .cid-qLumNe8yQS .carousel-inner.slides3 .cloneditem-2, .cid-qLumNe8yQS .carousel-inner.slides3 .cloneditem-3 {
        display: block;
    }

    .cid-qLumNe8yQS .carousel-inner.slides4 > .carousel-item.active.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides4 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(25%, 0, 0);
        transform: translate3d(25%, 0, 0);
    }

    .cid-qLumNe8yQS .carousel-inner.slides4 > .carousel-item.active.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-25%, 0, 0);
        transform: translate3d(-25%, 0, 0);
    }

        .cid-qLumNe8yQS .carousel-inner.slides4 > .carousel-item.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides4 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qLumNe8yQS .carousel-inner.slides4 .cloneditem-1, .cid-qLumNe8yQS .carousel-inner.slides4 .cloneditem-2, .cid-qLumNe8yQS .carousel-inner.slides4 .cloneditem-3 {
        display: block;
    }

    .cid-qLumNe8yQS .carousel-inner.slides5 > .carousel-item.active.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides5 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(20%, 0, 0);
        transform: translate3d(20%, 0, 0);
    }

    .cid-qLumNe8yQS .carousel-inner.slides5 > .carousel-item.active.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-20%, 0, 0);
        transform: translate3d(-20%, 0, 0);
    }

        .cid-qLumNe8yQS .carousel-inner.slides5 > .carousel-item.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides5 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qLumNe8yQS .carousel-inner.slides5 .cloneditem-1, .cid-qLumNe8yQS .carousel-inner.slides5 .cloneditem-2, .cid-qLumNe8yQS .carousel-inner.slides5 .cloneditem-3, .cid-qLumNe8yQS .carousel-inner.slides5 .cloneditem-4 {
        display: block;
    }

    .cid-qLumNe8yQS .carousel-inner.slides6 > .carousel-item.active.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides6 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(16.666667%, 0, 0);
        transform: translate3d(16.666667%, 0, 0);
    }

    .cid-qLumNe8yQS .carousel-inner.slides6 > .carousel-item.active.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-16.666667%, 0, 0);
        transform: translate3d(-16.666667%, 0, 0);
    }

        .cid-qLumNe8yQS .carousel-inner.slides6 > .carousel-item.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides6 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qLumNe8yQS .carousel-inner.slides6 .cloneditem-1, .cid-qLumNe8yQS .carousel-inner.slides6 .cloneditem-2, .cid-qLumNe8yQS .carousel-inner.slides6 .cloneditem-3, .cid-qLumNe8yQS .carousel-inner.slides6 .cloneditem-4, .cid-qLumNe8yQS .carousel-inner.slides6 .cloneditem-5 {
        display: block;
    }
}

.cid-qLoSFmh7dx {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #2e2e2e;
}

    .cid-qLoSFmh7dx .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-qLoSFmh7dx .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-qLoSFmh7dx .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-qLoSFmh7dx .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-qLoSFmh7dx .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-qLoSFmh7dx .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-qLoSFmh7dx .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            -webkit-justify-content: flex-end;
        }

            .cid-qLoSFmh7dx .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-qLoSFmh7dx .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-qLoSFmh7dx .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                -webkit-transition: .2s linear;
                transition: .2s linear;
            }

                .cid-qLoSFmh7dx .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-qLoSFmh7dx .media-container-row .social-list {
        justify-content: center;
        -webkit-justify-content: center;
    }
}

.cid-qLoSFmh7dx .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-qLoSFmh7dx .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-qLoVOZvSNo .navbar {
    padding: .5rem 0;
    background: #c1c1c1;
    transition: none;
    min-height: 77px;
}

.cid-qLoVOZvSNo .navbar-dropdown.bg-color.transparent.opened {
    background: #c1c1c1;
}

.cid-qLoVOZvSNo a {
    font-style: normal;
}

.cid-qLoVOZvSNo .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: text-bottom;
    position: relative;
    text-decoration: none;
}

.cid-qLoVOZvSNo .nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0 !important;
    margin: 0rem .65rem !important;
}

.cid-qLoVOZvSNo .nav-item:focus, .cid-qLoVOZvSNo .nav-link:focus {
    outline: none;
}

.cid-qLoVOZvSNo .btn {
    padding: 0.4rem 1.5rem;
    display: inline-flex;
    align-items: center;
}

    .cid-qLoVOZvSNo .btn .mbr-iconfont {
        font-size: 1.6rem;
    }

.cid-qLoVOZvSNo .menu-logo {
    margin-right: auto;
}

    .cid-qLoVOZvSNo .menu-logo .navbar-brand {
        display: flex;
        margin-left: 5rem;
        padding: 0;
        transition: padding .2s;
        min-height: 3.8rem;
        align-items: center;
    }

        .cid-qLoVOZvSNo .menu-logo .navbar-brand .navbar-caption-wrap {
            display: -webkit-flex;
            -webkit-align-items: center;
            align-items: center;
            word-break: break-word;
            min-width: 7rem;
            margin: .3rem 0;
        }

            .cid-qLoVOZvSNo .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
                line-height: 1.2rem !important;
                padding-right: 2rem;
            }

        .cid-qLoVOZvSNo .menu-logo .navbar-brand .navbar-logo {
            font-size: 4rem;
            transition: font-size 0.25s;
        }

            .cid-qLoVOZvSNo .menu-logo .navbar-brand .navbar-logo img {
                display: flex;
            }

            .cid-qLoVOZvSNo .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
                transition: font-size 0.25s;
            }

.cid-qLoVOZvSNo .navbar-toggleable-sm .navbar-collapse {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    padding-right: 5rem;
    width: auto;
}

    .cid-qLoVOZvSNo .navbar-toggleable-sm .navbar-collapse .navbar-nav {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        padding-left: 0;
    }

        .cid-qLoVOZvSNo .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
            -webkit-align-self: center;
            align-self: center;
        }

    .cid-qLoVOZvSNo .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
        padding-left: 0;
        padding-bottom: 0;
    }

.cid-qLoVOZvSNo .dropdown .dropdown-menu {
    background: #c1c1c1;
    display: none;
    position: absolute;
    min-width: 5rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    text-align: left;
}

    .cid-qLoVOZvSNo .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        padding: 0.235em 1.5385em 0.235em 1.5385em !important;
    }

        .cid-qLoVOZvSNo .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

    .cid-qLoVOZvSNo .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
    }

.cid-qLoVOZvSNo .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-qLoVOZvSNo .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    z-index: 1000;
}

.cid-qLoVOZvSNo .navbar.navbar-short {
    min-height: 60px;
    transition: all .2s;
}

    .cid-qLoVOZvSNo .navbar.navbar-short .navbar-toggler-right {
        top: 20px;
    }

    .cid-qLoVOZvSNo .navbar.navbar-short .navbar-logo a {
        font-size: 2.5rem !important;
        line-height: 2.5rem;
        transition: font-size 0.25s;
    }

        .cid-qLoVOZvSNo .navbar.navbar-short .navbar-logo a .mbr-iconfont {
            font-size: 2.5rem !important;
        }

        .cid-qLoVOZvSNo .navbar.navbar-short .navbar-logo a img {
            height: 3rem !important;
        }

    .cid-qLoVOZvSNo .navbar.navbar-short .navbar-brand {
        min-height: 3rem;
    }

.cid-qLoVOZvSNo button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    transition: all .2s;
    top: 1.5rem;
    right: 1rem;
}

    .cid-qLoVOZvSNo button.navbar-toggler:focus {
        outline: none;
    }

    .cid-qLoVOZvSNo button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #ffffff;
    }

        .cid-qLoVOZvSNo button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all .2s;
        }

        .cid-qLoVOZvSNo button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLoVOZvSNo button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLoVOZvSNo button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all .2s;
        }

        .cid-qLoVOZvSNo button.navbar-toggler .hamburger span:nth-child(5) {
            top: 16px;
            transition: all .2s;
        }

.cid-qLoVOZvSNo nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLoVOZvSNo nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
}

.cid-qLoVOZvSNo nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.cid-qLoMVJPyfD nav.opened .hamburger span:nth-child(4) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.cid-qLoVOZvSNo nav.opened .hamburger span:nth-child(5) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLoVOZvSNo .collapsed.navbar-expand {
    flex-direction: column;
}

.cid-qLoVOZvSNo .collapsed .btn {
    display: flex;
}

.cid-qLoVOZvSNo .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

    .cid-qLoVOZvSNo .collapsed .navbar-collapse.collapsing, .cid-qLoVOZvSNo .collapsed .navbar-collapse.show {
        display: block !important;
    }

        .cid-qLoVOZvSNo .collapsed .navbar-collapse.collapsing .navbar-nav, .cid-qLoVOZvSNo .collapsed .navbar-collapse.show .navbar-nav {
            display: block;
            text-align: center;
        }

            .cid-qLoVOZvSNo .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLoVOZvSNo .collapsed .navbar-collapse.show .navbar-nav .nav-item {
                clear: both;
            }

                .cid-qLoVOZvSNo .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLoVOZvSNo .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
                    margin-bottom: 1rem;
                }

        .cid-qLoVOZvSNo .collapsed .navbar-collapse.collapsing .navbar-buttons, .cid-qLoVOZvSNo .collapsed .navbar-collapse.show .navbar-buttons {
            text-align: center;
        }

            .cid-qLoVOZvSNo .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLoVOZvSNo .collapsed .navbar-collapse.show .navbar-buttons:last-child {
                margin-bottom: 1rem;
            }

.cid-qLoVOZvSNo .collapsed button.navbar-toggler {
    display: block;
}

.cid-qLoVOZvSNo .collapsed .navbar-brand {
    margin-left: 1rem !important;
}

.cid-qLoVOZvSNo .collapsed .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
}

.cid-qLoVOZvSNo .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
}

.cid-qLoVOZvSNo .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-qLoVOZvSNo .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-qLoVOZvSNo .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
}

@media (max-width: 991px) {
    .cid-qLoVOZvSNo .navbar-expand {
        flex-direction: column;
    }

    .cid-qLoVOZvSNo img {
        height: 3.8rem !important;
    }

    .cid-qLoVOZvSNo .btn {
        display: flex;
    }

    .cid-qLoVOZvSNo button.navbar-toggler {
        display: block;
    }

    .cid-qLoVOZvSNo .navbar-brand {
        margin-left: 1rem !important;
    }

    .cid-qLoVOZvSNo .navbar-toggleable-sm {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .cid-qLoVOZvSNo .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

        .cid-qLoVOZvSNo .navbar-collapse.collapsing, .cid-qLoVOZvSNo .navbar-collapse.show {
            display: block !important;
        }

            .cid-qLoVOZvSNo .navbar-collapse.collapsing .navbar-nav, .cid-qLoVOZvSNo .navbar-collapse.show .navbar-nav {
                display: block;
                text-align: center;
            }

                .cid-qLoVOZvSNo .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLoVOZvSNo .navbar-collapse.show .navbar-nav .nav-item {
                    clear: both;
                }

                    .cid-qLoVOZvSNo .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLoVOZvSNo .navbar-collapse.show .navbar-nav .nav-item:last-child {
                        margin-bottom: 1rem;
                    }

            .cid-qLoVOZvSNo .navbar-collapse.collapsing .navbar-buttons, .cid-qLoVOZvSNo .navbar-collapse.show .navbar-buttons {
                text-align: center;
            }

                .cid-qLoVOZvSNo .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLoVOZvSNo .navbar-collapse.show .navbar-buttons:last-child {
                    margin-bottom: 1rem;
                }

    .cid-qLoVOZvSNo .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        transition-duration: .5s;
        transition-property: opacity,padding,height;
    }

    .cid-qLoVOZvSNo .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-qLoVOZvSNo .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-qLoVOZvSNo .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: .3em;
        vertical-align: middle;
        content: "";
        border-top: .30em solid;
        border-right: .30em solid transparent;
        border-left: .30em solid transparent;
    }
}

@media (min-width: 767px) {
    .cid-qLoVOZvSNo .menu-logo {
        flex-shrink: 0;
    }
}

.cid-qLoVOZvSNo .navbar-collapse {
    flex-basis: auto;
}

.cid-qLoVOZvSNo .nav-link:hover, .cid-qLoVOZvSNo .dropdown-item:hover {
    color: #c1c1c1 !important;
}

.cid-qLkhfqcZnW {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLoLxVBKfA .google-map {
    height: 25rem;
    position: relative;
}

    .cid-qLoLxVBKfA .google-map iframe {
        height: 100%;
        width: 100%;
    }

    .cid-qLoLxVBKfA .google-map [data-state-details] {
        color: #6b6763;
        font-family: Montserrat;
        height: 1.5em;
        margin-top: -0.75em;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        position: absolute;
        text-align: center;
        top: 50%;
        width: 100%;
    }

    .cid-qLoLxVBKfA .google-map[data-state] {
        background: #e9e5dc;
    }

    .cid-qLoLxVBKfA .google-map[data-state="loading"] [data-state-details] {
        display: none;
    }

.cid-qLkhw4iKPp {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLkhw4iKPp .card-box {
        background-color: #ffffff;
        padding: 2rem;
    }

    .cid-qLkhw4iKPp h4 {
        font-weight: 500;
        margin-bottom: 0;
        text-align: left;
    }

    .cid-qLkhw4iKPp p {
        color: #767676;
        text-align: left;
    }

    .cid-qLkhw4iKPp .card-wrapper {
        position: relative;
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
        transition: box-shadow 0.3s;
    }

        .cid-qLkhw4iKPp .card-wrapper:hover {
            box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s;
        }

    .cid-qLkhw4iKPp .card-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
    }

    .cid-qLkhw4iKPp .card-title {
        text-align: left;
    }

    .cid-qLkhw4iKPp P {
        text-align: left;
    }

.cid-qLkhwZLTHy {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLkhwZLTHy .card-box {
        background-color: #ffffff;
        padding: 2rem;
    }

    .cid-qLkhwZLTHy h4 {
        font-weight: 500;
        margin-bottom: 0;
        text-align: left;
    }

    .cid-qLkhwZLTHy p {
        color: #767676;
        text-align: left;
    }

    .cid-qLkhwZLTHy .card-wrapper {
        position: relative;
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
        transition: box-shadow 0.3s;
    }

        .cid-qLkhwZLTHy .card-wrapper:hover {
            box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s;
        }

    .cid-qLkhwZLTHy .card-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
    }

.cid-qLoKKrxnSU {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #2e2e2e;
}

    .cid-qLoKKrxnSU .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-qLoKKrxnSU .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-qLoKKrxnSU .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-qLoKKrxnSU .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-qLoKKrxnSU .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-qLoKKrxnSU .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-qLoKKrxnSU .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            -webkit-justify-content: flex-end;
        }

            .cid-qLoKKrxnSU .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-qLoKKrxnSU .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-qLoKKrxnSU .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                -webkit-transition: .2s linear;
                transition: .2s linear;
            }

                .cid-qLoKKrxnSU .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-qLoKKrxnSU .media-container-row .social-list {
        justify-content: center;
        -webkit-justify-content: center;
    }
}

.cid-qLoKKrxnSU .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-qLoKKrxnSU .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-qLk6GyTl9s .navbar {
    padding: .5rem 0;
    background: #c1c1c1;
    transition: none;
    min-height: 77px;
}

.cid-qLk6GyTl9s .navbar-dropdown.bg-color.transparent.opened {
    background: #c1c1c1;
}

.cid-qLk6GyTl9s a {
    font-style: normal;
}

.cid-qLk6GyTl9s .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: text-bottom;
    position: relative;
    text-decoration: none;
}

.cid-qLk6GyTl9s .nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0 !important;
    margin: 0rem .65rem !important;
}

.cid-qLk6GyTl9s .nav-item:focus, .cid-qLk6GyTl9s .nav-link:focus {
    outline: none;
}

.cid-qLk6GyTl9s .btn {
    padding: 0.4rem 1.5rem;
    display: inline-flex;
    align-items: center;
}

    .cid-qLk6GyTl9s .btn .mbr-iconfont {
        font-size: 1.6rem;
    }

.cid-qLk6GyTl9s .menu-logo {
    margin-right: auto;
}

    .cid-qLk6GyTl9s .menu-logo .navbar-brand {
        display: flex;
        margin-left: 5rem;
        padding: 0;
        transition: padding .2s;
        min-height: 3.8rem;
        align-items: center;
    }

        .cid-qLk6GyTl9s .menu-logo .navbar-brand .navbar-caption-wrap {
            display: -webkit-flex;
            -webkit-align-items: center;
            align-items: center;
            word-break: break-word;
            min-width: 7rem;
            margin: .3rem 0;
        }

            .cid-qLk6GyTl9s .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
                line-height: 1.2rem !important;
                padding-right: 2rem;
            }

        .cid-qLk6GyTl9s .menu-logo .navbar-brand .navbar-logo {
            font-size: 4rem;
            transition: font-size 0.25s;
        }

            .cid-qLk6GyTl9s .menu-logo .navbar-brand .navbar-logo img {
                display: flex;
            }

            .cid-qLk6GyTl9s .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
                transition: font-size 0.25s;
            }

.cid-qLk6GyTl9s .navbar-toggleable-sm .navbar-collapse {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    padding-right: 5rem;
    width: auto;
}

    .cid-qLk6GyTl9s .navbar-toggleable-sm .navbar-collapse .navbar-nav {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        padding-left: 0;
    }

        .cid-qLk6GyTl9s .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
            -webkit-align-self: center;
            align-self: center;
        }

    .cid-qLk6GyTl9s .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
        padding-left: 0;
        padding-bottom: 0;
    }

.cid-qLk6GyTl9s .dropdown .dropdown-menu {
    background: #c1c1c1;
    display: none;
    position: absolute;
    min-width: 5rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    text-align: left;
}

    .cid-qLk6GyTl9s .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        padding: 0.235em 1.5385em 0.235em 1.5385em !important;
    }

        .cid-qLk6GyTl9s .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

    .cid-qLk6GyTl9s .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
    }

.cid-qLk6GyTl9s .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-qLk6GyTl9s .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    z-index: 1000;
}

.cid-qLk6GyTl9s .navbar.navbar-short {
    min-height: 60px;
    transition: all .2s;
}

    .cid-qLk6GyTl9s .navbar.navbar-short .navbar-toggler-right {
        top: 20px;
    }

    .cid-qLk6GyTl9s .navbar.navbar-short .navbar-logo a {
        font-size: 2.5rem !important;
        line-height: 2.5rem;
        transition: font-size 0.25s;
    }

        .cid-qLk6GyTl9s .navbar.navbar-short .navbar-logo a .mbr-iconfont {
            font-size: 2.5rem !important;
        }

        .cid-qLk6GyTl9s .navbar.navbar-short .navbar-logo a img {
            height: 3rem !important;
        }

    .cid-qLk6GyTl9s .navbar.navbar-short .navbar-brand {
        min-height: 3rem;
    }

.cid-qLk6GyTl9s button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    transition: all .2s;
    top: 1.5rem;
    right: 1rem;
}

    .cid-qLk6GyTl9s button.navbar-toggler:focus {
        outline: none;
    }

    .cid-qLk6GyTl9s button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #ffffff;
    }

        .cid-qLk6GyTl9s button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all .2s;
        }

        .cid-qLk6GyTl9s button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLk6GyTl9s button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLk6GyTl9s button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all .2s;
        }

.cid-qLoVOZvSNo button.navbar-toggler .hamburger span:nth-child(5) {
    top: 16px;
    transition: all .2s;
}

.cid-qLk6GyTl9s nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLk6GyTl9s nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
}

.cid-qLk6GyTl9s nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.cid-qLk6GyTl9s nav.opened .hamburger span:nth-child(4) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.cid-qLk6GyTl9s nav.opened .hamburger span:nth-child(5) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLk6GyTl9s .collapsed.navbar-expand {
    flex-direction: column;
}

.cid-qLk6GyTl9s .collapsed .btn {
    display: flex;
}

.cid-qLk6GyTl9s .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

    .cid-qLk6GyTl9s .collapsed .navbar-collapse.collapsing, .cid-qLk6GyTl9s .collapsed .navbar-collapse.show {
        display: block !important;
    }

        .cid-qLk6GyTl9s .collapsed .navbar-collapse.collapsing .navbar-nav, .cid-qLk6GyTl9s .collapsed .navbar-collapse.show .navbar-nav {
            display: block;
            text-align: center;
        }

            .cid-qLk6GyTl9s .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLk6GyTl9s .collapsed .navbar-collapse.show .navbar-nav .nav-item {
                clear: both;
            }

                .cid-qLk6GyTl9s .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLk6GyTl9s .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
                    margin-bottom: 1rem;
                }

        .cid-qLk6GyTl9s .collapsed .navbar-collapse.collapsing .navbar-buttons, .cid-qLk6GyTl9s .collapsed .navbar-collapse.show .navbar-buttons {
            text-align: center;
        }

            .cid-qLk6GyTl9s .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLk6GyTl9s .collapsed .navbar-collapse.show .navbar-buttons:last-child {
                margin-bottom: 1rem;
            }

.cid-qLk6GyTl9s .collapsed button.navbar-toggler {
    display: block;
}

.cid-qLk6GyTl9s .collapsed .navbar-brand {
    margin-left: 1rem !important;
}

.cid-qLk6GyTl9s .collapsed .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
}

.cid-qLk6GyTl9s .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
}

.cid-qLk6GyTl9s .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-qLk6GyTl9s .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-qLk6GyTl9s .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
}

@media (max-width: 991px) {
    .cid-qLk6GyTl9s .navbar-expand {
        flex-direction: column;
    }

    .cid-qLk6GyTl9s img {
        height: 3.8rem !important;
    }

    .cid-qLk6GyTl9s .btn {
        display: flex;
    }

    .cid-qLk6GyTl9s button.navbar-toggler {
        display: block;
    }

    .cid-qLk6GyTl9s .navbar-brand {
        margin-left: 1rem !important;
    }

    .cid-qLk6GyTl9s .navbar-toggleable-sm {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .cid-qLk6GyTl9s .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

        .cid-qLk6GyTl9s .navbar-collapse.collapsing, .cid-qLk6GyTl9s .navbar-collapse.show {
            display: block !important;
        }

            .cid-qLk6GyTl9s .navbar-collapse.collapsing .navbar-nav, .cid-qLk6GyTl9s .navbar-collapse.show .navbar-nav {
                display: block;
                text-align: center;
            }

                .cid-qLk6GyTl9s .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLk6GyTl9s .navbar-collapse.show .navbar-nav .nav-item {
                    clear: both;
                }

                    .cid-qLk6GyTl9s .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLk6GyTl9s .navbar-collapse.show .navbar-nav .nav-item:last-child {
                        margin-bottom: 1rem;
                    }

            .cid-qLk6GyTl9s .navbar-collapse.collapsing .navbar-buttons, .cid-qLk6GyTl9s .navbar-collapse.show .navbar-buttons {
                text-align: center;
            }

                .cid-qLk6GyTl9s .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLk6GyTl9s .navbar-collapse.show .navbar-buttons:last-child {
                    margin-bottom: 1rem;
                }

    .cid-qLk6GyTl9s .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        transition-duration: .5s;
        transition-property: opacity,padding,height;
    }

    .cid-qLk6GyTl9s .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-qLk6GyTl9s .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-qLk6GyTl9s .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: .3em;
        vertical-align: middle;
        content: "";
        border-top: .30em solid;
        border-right: .30em solid transparent;
        border-left: .30em solid transparent;
    }
}

@media (min-width: 767px) {
    .cid-qLk6GyTl9s .menu-logo {
        flex-shrink: 0;
    }
}

.cid-qLk6GyTl9s .navbar-collapse {
    flex-basis: auto;
}

.cid-qLk6GyTl9s .nav-link:hover, .cid-qLk6GyTl9s .dropdown-item:hover {
    color: #c1c1c1 !important;
}

.cid-qLk6NiOxHA {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLk7yrcYGp {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #232323;
}

    .cid-qLk7yrcYGp .mbr-text, .cid-qLk7yrcYGp blockquote {
        color: #767676;
    }

        .cid-qLk7yrcYGp .mbr-text B {
            color: #149dcc;
        }

.cid-qLuogQJJKA {
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url("../../../assets/images/background2.jpg");
    overflow: hidden;
}

    .cid-qLuogQJJKA .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLuogQJJKA .mbr-text {
        color: #767676;
    }

    .cid-qLuogQJJKA .card {
        display: flex;
        position: relative;
        justify-content: center;
    }

    .cid-qLuogQJJKA .card-wrapper {
        height: 100%;
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
        transition: box-shadow 0.3s;
    }

        .cid-qLuogQJJKA .card-wrapper .card-img {
            display: block;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }

            .cid-qLuogQJJKA .card-wrapper .card-img .mbr-overlay {
                background-color: #efefef;
                display: none;
                transition: opacity .3s;
            }

            .cid-qLuogQJJKA .card-wrapper .card-img .mbr-section-btn {
                display: flex;
                position: absolute;
                transition: opacity .3s;
                width: 100%;
                margin: auto;
                left: 0;
                justify-content: center;
                align-items: center;
            }

            .cid-qLuogQJJKA .card-wrapper .card-img img {
                width: 100%;
            }

        .cid-qLuogQJJKA .card-wrapper .card-box {
            background-color: #ffffff;
            padding: 0 2rem 2rem 2rem;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

            .cid-qLuogQJJKA .card-wrapper .card-box h4 {
                font-weight: 500;
                margin-bottom: 0;
                padding-top: 2rem;
            }

            .cid-qLuogQJJKA .card-wrapper .card-box p {
                margin-bottom: 0;
                padding-top: 1.5rem;
            }

        .cid-qLuogQJJKA .card-wrapper:hover {
            box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s;
        }

    .cid-qLuogQJJKA .popup-btn .mbr-overlay {
        display: block !important;
        opacity: 0;
    }

    .cid-qLuogQJJKA .popup-btn .mbr-section-btn {
        height: 100%;
        display: flex !important;
        opacity: 0;
    }

    .cid-qLuogQJJKA .popup-btn:hover .mbr-overlay {
        opacity: .5;
    }

    .cid-qLuogQJJKA .popup-btn:hover .mbr-section-btn {
        opacity: 1;
    }

.cid-qLupE0vkfj {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #ffffff;
}

    .cid-qLupE0vkfj .mbr-text, .cid-qLupE0vkfj blockquote {
        color: #767676;
    }

.cid-qLupEF1ZlT {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLupFwPedX {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

    .cid-qLupFwPedX .mbr-text, .cid-qLupFwPedX blockquote {
        color: #767676;
    }

.cid-qLupGjZ0KI {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLupGMymku {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

    .cid-qLupGMymku .mbr-text, .cid-qLupGMymku blockquote {
        color: #767676;
    }

.cid-qLupHlgK3L {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLupIyVmhF {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

    .cid-qLupIyVmhF .mbr-text, .cid-qLupIyVmhF blockquote {
        color: #767676;
    }

.cid-qLupKV2IKi {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLupLlFefJ {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

    .cid-qLupLlFefJ .mbr-text, .cid-qLupLlFefJ blockquote {
        color: #767676;
    }

.cid-qLupMsA80d {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLupMYjgkG {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

    .cid-qLupMYjgkG .mbr-text, .cid-qLupMYjgkG blockquote {
        color: #767676;
    }

.cid-qLut0xS689 {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #2e2e2e;
}

    .cid-qLut0xS689 .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-qLut0xS689 .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-qLut0xS689 .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-qLut0xS689 .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-qLut0xS689 .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-qLut0xS689 .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-qLut0xS689 .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            -webkit-justify-content: flex-end;
        }

            .cid-qLut0xS689 .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-qLut0xS689 .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-qLut0xS689 .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                -webkit-transition: .2s linear;
                transition: .2s linear;
            }

                .cid-qLut0xS689 .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-qLut0xS689 .media-container-row .social-list {
        justify-content: center;
        -webkit-justify-content: center;
    }
}

.cid-qLut0xS689 .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-qLut0xS689 .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-qLjPwbzRSK .navbar {
    padding: .5rem 0;
    background: #232323;
    transition: none;
    min-height: 77px;
}

.cid-qLjPwbzRSK .navbar-dropdown.bg-color.transparent.opened {
    background: #232323;
}

.cid-qLjPwbzRSK a {
    font-style: normal;
}

.cid-qLjPwbzRSK .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: text-bottom;
    position: relative;
    text-decoration: none;
}

.cid-qLjPwbzRSK .nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0 !important;
    margin: 0rem .65rem !important;
}

.cid-qLjPwbzRSK .nav-item:focus, .cid-qLjPwbzRSK .nav-link:focus {
    outline: none;
}

.cid-qLjPwbzRSK .btn {
    padding: 0.4rem 1.5rem;
    display: inline-flex;
    align-items: center;
}

    .cid-qLjPwbzRSK .btn .mbr-iconfont {
        font-size: 1.6rem;
    }

.cid-qLjPwbzRSK .menu-logo {
    margin-right: auto;
}

    .cid-qLjPwbzRSK .menu-logo .navbar-brand {
        display: flex;
        margin-left: 5rem;
        padding: 0;
        transition: padding .2s;
        min-height: 3.8rem;
        align-items: center;
    }

        .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-caption-wrap {
            display: -webkit-flex;
            -webkit-align-items: center;
            align-items: center;
            word-break: break-word;
            min-width: 7rem;
            margin: .3rem 0;
        }

            .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
                line-height: 1.2rem !important;
                padding-right: 2rem;
            }

        .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-logo {
            font-size: 4rem;
            transition: font-size 0.25s;
        }

            .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-logo img {
                display: flex;
            }

            .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
                transition: font-size 0.25s;
            }

.cid-qLjPwbzRSK .navbar-toggleable-sm .navbar-collapse {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    padding-right: 5rem;
    width: auto;
}

    .cid-qLjPwbzRSK .navbar-toggleable-sm .navbar-collapse .navbar-nav {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        padding-left: 0;
    }

        .cid-qLjPwbzRSK .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
            -webkit-align-self: center;
            align-self: center;
        }

    .cid-qLjPwbzRSK .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
        padding-left: 0;
        padding-bottom: 0;
    }

.cid-qLjPwbzRSK .dropdown .dropdown-menu {
    background: #232323;
    display: none;
    position: absolute;
    min-width: 5rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    text-align: left;
}

    .cid-qLjPwbzRSK .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        padding: 0.235em 1.5385em 0.235em 1.5385em !important;
    }

        .cid-qLjPwbzRSK .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

    .cid-qLjPwbzRSK .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
    }

.cid-qLjPwbzRSK .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-qLjPwbzRSK .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    z-index: 1000;
}

.cid-qLjPwbzRSK .navbar.navbar-short {
    min-height: 60px;
    transition: all .2s;
}

    .cid-qLjPwbzRSK .navbar.navbar-short .navbar-toggler-right {
        top: 20px;
    }

    .cid-qLjPwbzRSK .navbar.navbar-short .navbar-logo a {
        font-size: 2.5rem !important;
        line-height: 2.5rem;
        transition: font-size 0.25s;
    }

        .cid-qLjPwbzRSK .navbar.navbar-short .navbar-logo a .mbr-iconfont {
            font-size: 2.5rem !important;
        }

        .cid-qLjPwbzRSK .navbar.navbar-short .navbar-logo a img {
            height: 3rem !important;
        }

    .cid-qLjPwbzRSK .navbar.navbar-short .navbar-brand {
        min-height: 3rem;
    }

.cid-qLjPwbzRSK button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    transition: all .2s;
    top: 1.5rem;
    right: 1rem;
}

    .cid-qLjPwbzRSK button.navbar-toggler:focus {
        outline: none;
    }

    .cid-qLjPwbzRSK button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #ffffff;
    }

        .cid-qLjPwbzRSK button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all .2s;
        }

        .cid-qLjPwbzRSK button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLjPwbzRSK button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLjPwbzRSK button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all .2s;
        }

.cid-qLjPwbzRSK nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLjPwbzRSK nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
}

.cid-qLjPwbzRSK nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.cid-qLjPwbzRSK nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLjPwbzRSK .collapsed.navbar-expand {
    flex-direction: column;
}

.cid-qLjPwbzRSK .collapsed .btn {
    display: flex;
}

.cid-qLjPwbzRSK .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

    .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show {
        display: block !important;
    }

        .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-nav, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-nav {
            display: block;
            text-align: center;
        }

            .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-nav .nav-item {
                clear: both;
            }

                .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
                    margin-bottom: 1rem;
                }

        .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-buttons, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-buttons {
            text-align: center;
        }

            .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-buttons:last-child {
                margin-bottom: 1rem;
            }

.cid-qLjPwbzRSK .collapsed button.navbar-toggler {
    display: block;
}

.cid-qLjPwbzRSK .collapsed .navbar-brand {
    margin-left: 1rem !important;
}

.cid-qLjPwbzRSK .collapsed .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
}

.cid-qLjPwbzRSK .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
}

.cid-qLjPwbzRSK .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-qLjPwbzRSK .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-qLjPwbzRSK .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
}

@media (max-width: 991px) {
    .cid-qLjPwbzRSK .navbar-expand {
        flex-direction: column;
    }

    .cid-qLjPwbzRSK img {
        height: 3.8rem !important;
    }

    .cid-qLjPwbzRSK .btn {
        display: flex;
    }

    .cid-qLjPwbzRSK button.navbar-toggler {
        display: block;
    }

    .cid-qLjPwbzRSK .navbar-brand {
        margin-left: 1rem !important;
    }

    .cid-qLjPwbzRSK .navbar-toggleable-sm {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .cid-qLjPwbzRSK .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

        .cid-qLjPwbzRSK .navbar-collapse.collapsing, .cid-qLjPwbzRSK .navbar-collapse.show {
            display: block !important;
        }

            .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-nav, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-nav {
                display: block;
                text-align: center;
            }

                .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-nav .nav-item {
                    clear: both;
                }

                    .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-nav .nav-item:last-child {
                        margin-bottom: 1rem;
                    }

            .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-buttons, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-buttons {
                text-align: center;
            }

                .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-buttons:last-child {
                    margin-bottom: 1rem;
                }

    .cid-qLjPwbzRSK .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        transition-duration: .5s;
        transition-property: opacity,padding,height;
    }

    .cid-qLjPwbzRSK .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-qLjPwbzRSK .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-qLjPwbzRSK .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: .3em;
        vertical-align: middle;
        content: "";
        border-top: .30em solid;
        border-right: .30em solid transparent;
        border-left: .30em solid transparent;
    }
}

@media (min-width: 767px) {
    .cid-qLjPwbzRSK .menu-logo {
        flex-shrink: 0;
    }
}

.cid-qLjPwbzRSK .navbar-collapse {
    flex-basis: auto;
}

.cid-qLjPwbzRSK .nav-link:hover, .cid-qLjPwbzRSK .dropdown-item:hover {
    color: #c1c1c1 !important;
}

.cid-qM3urVCSUZ {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #000000;
}

    .cid-qM3urVCSUZ .testimonial-text {
        font-style: italic;
        font-weight: 300;
    }

    .cid-qM3urVCSUZ .mbr-author-name {
        font-weight: bold;
    }

    .cid-qM3urVCSUZ .media-container-row {
        word-wrap: break-word;
        word-break: break-word;
    }

.cid-qM3uuQBeWm {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #f3f4f6;
}

    .cid-qM3uuQBeWm .testimonial-text {
        font-style: italic;
        color: #676767;
        font-weight: 300;
    }

    .cid-qM3uuQBeWm .mbr-author-name {
        font-weight: bold;
        color: #232;
    }

    .cid-qM3uuQBeWm .mbr-author-desc {
        color: #232;
    }

.cid-qM3uxgLTrf {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .cid-qM3uxgLTrf .testimonials-container {
        margin: 0 auto;
    }

        .cid-qM3uxgLTrf .testimonials-container .testimonials-item {
            justify-content: center;
            margin-top: 3rem;
        }

            .cid-qM3uxgLTrf .testimonials-container .testimonials-item .user {
                background: #ffffff;
            }

                .cid-qM3uxgLTrf .testimonials-container .testimonials-item .user.row {
                    margin: 0;
                }

                .cid-qM3uxgLTrf .testimonials-container .testimonials-item .user .user_image {
                    width: 150px;
                    height: 150px;
                    overflow: hidden;
                    margin: 2rem auto 2rem auto;
                }

                    .cid-qM3uxgLTrf .testimonials-container .testimonials-item .user .user_image img {
                        width: 100%;
                        min-width: 100%;
                        min-height: 100%;
                    }

                .cid-qM3uxgLTrf .testimonials-container .testimonials-item .user .testimonials-caption {
                    padding: 2rem;
                    padding: 2rem 2rem 2rem 0;
                }

@media (max-width: 260px) {
    .cid-qM3uxgLTrf .user_image {
        width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 767px) {
    .cid-qM3uxgLTrf .testimonials-caption {
        padding: 0 2rem 2rem 2rem !important;
    }
}

.cid-qM3uJ79Lvj {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #2e2e2e;
}

    .cid-qM3uJ79Lvj .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-qM3uJ79Lvj .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-qM3uJ79Lvj .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-qM3uJ79Lvj .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-qM3uJ79Lvj .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-qM3uJ79Lvj .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-qM3uJ79Lvj .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            -webkit-justify-content: flex-end;
        }

            .cid-qM3uJ79Lvj .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-qM3uJ79Lvj .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-qM3uJ79Lvj .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                -webkit-transition: .2s linear;
                transition: .2s linear;
            }

                .cid-qM3uJ79Lvj .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-qM3uJ79Lvj .media-container-row .social-list {
        justify-content: center;
        -webkit-justify-content: center;
    }
}

.cid-qM3uJ79Lvj .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-qM3uJ79Lvj .media-container-row .row-copirayt p {
        width: 100%;
    }

@import url(https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i);

body {
    font-style: normal;
    line-height: 1.5;
}

.mbr-section-title {
    font-style: normal;
    line-height: 1.2;
}

.mbr-section-subtitle {
    line-height: 1.3;
}

.mbr-text {
    font-style: normal;
    line-height: 1.6;
}

.display-1 {
    font-family: 'Rubik', sans-serif;
    font-size: 4.25rem;
}

    .display-1 > .mbr-iconfont {
        font-size: 6.8rem;
    }

.display-2 {
    font-family: 'Rubik', sans-serif;
    font-size: 3rem;
}

    .display-2 > .mbr-iconfont {
        font-size: 4.8rem;
    }

.display-4 {
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
}

    .display-4 > .mbr-iconfont {
        font-size: 1.6rem;
    }

.display-5 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
}

    .display-5 > .mbr-iconfont {
        font-size: 2.4rem;
    }

.display-7 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
}

    .display-7 > .mbr-iconfont {
        font-size: 2.4rem;
    }
/* ---- Fluid typography for mobile devices ---- */ /* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */ /* 100vw - current viewport width */ /* (48 - 20) 48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */ /* 0.65 - min scale variable, may vary */

@media (max-width: 768px) {
    .display-1 {
        font-size: 3.4rem;
        font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-2 {
        font-size: 2.4rem;
        font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-4 {
        font-size: 0.8rem;
        font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-5 {
        font-size: 1.2rem;
        font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
    }
}
/* Buttons */

.btn {
    font-weight: 500;
    border-width: 2px;
    font-style: normal;
    letter-spacing: 1px;
    margin: .4rem .8rem;
    white-space: normal;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 1rem 3rem;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
}

.btn-sm {
    font-weight: 500;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0.6rem 1.5rem;
    border-radius: 3px;
}

.btn-md {
    font-weight: 500;
    letter-spacing: 1px;
    margin: .4rem .8rem !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 1rem 3rem;
    border-radius: 3px;
}

.btn-lg {
    font-weight: 500;
    letter-spacing: 1px;
    margin: .4rem .8rem !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 1.2rem 3.2rem;
    border-radius: 3px;
}

.bg-primary {
    background-color: #149dcc !important;
}

.bg-success {
    background-color: #f7ed4a !important;
}

.bg-info {
    background-color: #82786e !important;
}

.bg-warning {
    background-color: #879a9f !important;
}

.bg-danger {
    background-color: #b1a374 !important;
}

.btn-primary, .btn-primary:active {
    background-color: #149dcc !important;
    border-color: #149dcc !important;
    color: #ffffff !important;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary.active {
        color: #ffffff !important;
        background-color: #0d6786 !important;
        border-color: #0d6786 !important;
    }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #ffffff !important;
        background-color: #0d6786 !important;
        border-color: #0d6786 !important;
    }

.btn-secondary, .btn-secondary:active {
    background-color: #32CD32 !important;
    border-color: #32CD32 !important;
    color: #ffffff !important;
}

    .btn-secondary:hover, .btn-secondary:focus, .btn-secondary.focus, .btn-secondary.active {
        color: #ffffff !important;
        background-color: #00FF00 !important;
        border-color: #00FF00 !important;
    }

    .btn-secondary.disabled, .btn-secondary:disabled {
        color: #ffffff !important;
        background-color: #e50039 !important;
        border-color: #e50039 !important;
    }

.btn-info, .btn-info:active {
    background-color: #82786e !important;
    border-color: #82786e !important;
    color: #ffffff !important;
}

    .btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info.active {
        color: #ffffff !important;
        background-color: #59524b !important;
        border-color: #59524b !important;
    }

    .btn-info.disabled, .btn-info:disabled {
        color: #ffffff !important;
        background-color: #59524b !important;
        border-color: #59524b !important;
    }

.btn-success, .btn-success:active {
    background-color: #f7ed4a !important;
    border-color: #f7ed4a !important;
    color: #3f3c03 !important;
}

    .btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success.active {
        color: #3f3c03 !important;
        background-color: #eadd0a !important;
        border-color: #eadd0a !important;
    }

    .btn-success.disabled, .btn-success:disabled {
        color: #3f3c03 !important;
        background-color: #eadd0a !important;
        border-color: #eadd0a !important;
    }

.btn-warning, .btn-warning:active {
    background-color: #879a9f !important;
    border-color: #879a9f !important;
    color: #ffffff !important;
}

    .btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning.active {
        color: #ffffff !important;
        background-color: #617479 !important;
        border-color: #617479 !important;
    }

    .btn-warning.disabled, .btn-warning:disabled {
        color: #ffffff !important;
        background-color: #617479 !important;
        border-color: #617479 !important;
    }

.btn-danger, .btn-danger:active {
    background-color: #b1a374 !important;
    border-color: #b1a374 !important;
    color: #ffffff !important;
}

    .btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger.active {
        color: #ffffff !important;
        background-color: #8b7d4e !important;
        border-color: #8b7d4e !important;
    }

    .btn-danger.disabled, .btn-danger:disabled {
        color: #ffffff !important;
        background-color: #8b7d4e !important;
        border-color: #8b7d4e !important;
    }

.btn-white {
    color: #333333 !important;
}

    .btn-white, .btn-white:active {
        background-color: #ffffff !important;
        border-color: #ffffff !important;
        color: #808080 !important;
    }

        .btn-white:hover, .btn-white:focus, .btn-white.focus, .btn-white.active {
            color: #808080 !important;
            background-color: #d9d9d9 !important;
            border-color: #d9d9d9 !important;
        }

        .btn-white.disabled, .btn-white:disabled {
            color: #808080 !important;
            background-color: #d9d9d9 !important;
            border-color: #d9d9d9 !important;
        }

.btn-black, .btn-black:active {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}

    .btn-black:hover, .btn-black:focus, .btn-black.focus, .btn-black.active {
        color: #ffffff !important;
        background-color: #0d0d0d !important;
        border-color: #0d0d0d !important;
    }

    .btn-black.disabled, .btn-black:disabled {
        color: #ffffff !important;
        background-color: #0d0d0d !important;
        border-color: #0d0d0d !important;
    }

.btn-primary-outline, .btn-primary-outline:active {
    background: none;
    border-color: #0b566f;
    color: #0b566f;
}

    .btn-primary-outline:hover, .btn-primary-outline:focus, .btn-primary-outline.focus, .btn-primary-outline.active {
        color: #ffffff;
        background-color: #149dcc;
        border-color: #149dcc;
    }

    .btn-primary-outline.disabled, .btn-primary-outline:disabled {
        color: #ffffff !important;
        background-color: #149dcc !important;
        border-color: #149dcc !important;
    }

.btn-secondary-outline, .btn-secondary-outline:active {
    background: none;
    border-color: #cc0033;
    color: #cc0033;
}

    .btn-secondary-outline:hover, .btn-secondary-outline:focus, .btn-secondary-outline.focus, .btn-secondary-outline.active {
        color: #ffffff;
        background-color: #ff3366;
        border-color: #ff3366;
    }

    .btn-secondary-outline.disabled, .btn-secondary-outline:disabled {
        color: #ffffff !important;
        background-color: #ff3366 !important;
        border-color: #ff3366 !important;
    }

.btn-info-outline, .btn-info-outline:active {
    background: none;
    border-color: #4b453f;
    color: #4b453f;
}

    .btn-info-outline:hover, .btn-info-outline:focus, .btn-info-outline.focus, .btn-info-outline.active {
        color: #ffffff;
        background-color: #82786e;
        border-color: #82786e;
    }

    .btn-info-outline.disabled, .btn-info-outline:disabled {
        color: #ffffff !important;
        background-color: #82786e !important;
        border-color: #82786e !important;
    }

.btn-success-outline, .btn-success-outline:active {
    background: none;
    border-color: #d2c609;
    color: #d2c609;
}

    .btn-success-outline:hover, .btn-success-outline:focus, .btn-success-outline.focus, .btn-success-outline.active {
        color: #3f3c03;
        background-color: #f7ed4a;
        border-color: #f7ed4a;
    }

    .btn-success-outline.disabled, .btn-success-outline:disabled {
        color: #3f3c03 !important;
        background-color: #f7ed4a !important;
        border-color: #f7ed4a !important;
    }

.btn-warning-outline, .btn-warning-outline:active {
    background: none;
    border-color: #55666b;
    color: #55666b;
}

    .btn-warning-outline:hover, .btn-warning-outline:focus, .btn-warning-outline.focus, .btn-warning-outline.active {
        color: #ffffff;
        background-color: #879a9f;
        border-color: #879a9f;
    }

    .btn-warning-outline.disabled, .btn-warning-outline:disabled {
        color: #ffffff !important;
        background-color: #879a9f !important;
        border-color: #879a9f !important;
    }

.btn-danger-outline, .btn-danger-outline:active {
    background: none;
    border-color: #7a6e45;
    color: #7a6e45;
}

    .btn-danger-outline:hover, .btn-danger-outline:focus, .btn-danger-outline.focus, .btn-danger-outline.active {
        color: #ffffff;
        background-color: #b1a374;
        border-color: #b1a374;
    }

    .btn-danger-outline.disabled, .btn-danger-outline:disabled {
        color: #ffffff !important;
        background-color: #b1a374 !important;
        border-color: #b1a374 !important;
    }

.btn-black-outline, .btn-black-outline:active {
    background: none;
    border-color: #000000;
    color: #000000;
}

    .btn-black-outline:hover, .btn-black-outline:focus, .btn-black-outline.focus, .btn-black-outline.active {
        color: #ffffff;
        background-color: #333333;
        border-color: #333333;
    }

    .btn-black-outline.disabled, .btn-black-outline:disabled {
        color: #ffffff !important;
        background-color: #333333 !important;
        border-color: #333333 !important;
    }

.btn-white-outline, .btn-white-outline:active, .btn-white-outline.active {
    background: none;
    border-color: #ffffff;
    color: #ffffff;
}

    .btn-white-outline:hover, .btn-white-outline:focus, .btn-white-outline.focus {
        color: #333333;
        background-color: #ffffff;
        border-color: #ffffff;
    }

.text-primary {
    color: #149dcc !important;
}

.text-secondary {
    color: #ff3366 !important;
}

.text-success {
    color: #f7ed4a !important;
}

.text-info {
    color: #82786e !important;
}

.text-warning {
    color: #879a9f !important;
}

.text-danger {
    color: #b1a374 !important;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

a.text-primary:hover, a.text-primary:focus {
    color: #0b566f !important;
}

a.text-secondary:hover, a.text-secondary:focus {
    color: #cc0033 !important;
}

a.text-success:hover, a.text-success:focus {
    color: #d2c609 !important;
}

a.text-info:hover, a.text-info:focus {
    color: #4b453f !important;
}

a.text-warning:hover, a.text-warning:focus {
    color: #55666b !important;
}

a.text-danger:hover, a.text-danger:focus {
    color: #7a6e45 !important;
}

a.text-white:hover, a.text-white:focus {
    color: #b3b3b3 !important;
}

a.text-black:hover, a.text-black:focus {
    color: #4d4d4d !important;
}

.alert-success {
    background-color: #70c770;
}

.alert-info {
    background-color: #82786e;
}

.alert-warning {
    background-color: #879a9f;
}

.alert-danger {
    background-color: #b1a374;
}

.mbr-section-btn a.btn:not(.btn-form) {
    border-radius: 100px;
}

    .mbr-section-btn a.btn:not(.btn-form):hover, .mbr-section-btn a.btn:not(.btn-form):focus {
        box-shadow: none !important;
    }

    .mbr-section-btn a.btn:not(.btn-form):hover, .mbr-section-btn a.btn:not(.btn-form):focus {
        box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
        -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
    }

.mbr-gallery-filter li a {
    border-radius: 100px !important;
}

.mbr-gallery-filter li.active .btn {
    background-color: #149dcc;
    border-color: #149dcc;
    color: #ffffff;
}

    .mbr-gallery-filter li.active .btn:focus {
        box-shadow: none;
    }

.nav-tabs .nav-link {
    border-radius: 100px !important;
}

.btn-form {
    border-radius: 0;
}

    .btn-form:hover {
        cursor: pointer;
    }

a, a:hover {
    color: white;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle, .mbr-plan-header.bg-primary .mbr-plan-price-desc {
    color: #b4e6f8;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle, .mbr-plan-header.bg-success .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle, .mbr-plan-header.bg-info .mbr-plan-price-desc {
    color: #beb8b2;
}

.mbr-plan-header.bg-warning .mbr-plan-subtitle, .mbr-plan-header.bg-warning .mbr-plan-price-desc {
    color: #ced6d8;
}

.mbr-plan-header.bg-danger .mbr-plan-subtitle, .mbr-plan-header.bg-danger .mbr-plan-price-desc {
    color: #dfd9c6;
}
/* Scroll to top button*/

#scrollToTop a {
    border-radius: 100px;
}

    #scrollToTop a i:before {
        content: '';
        position: absolute;
        height: 40%;
        top: 25%;
        background: #fff;
        width: 2px;
        left: calc(50% - 1px);
    }

    #scrollToTop a i:after {
        content: '';
        position: absolute;
        display: block;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        width: 40%;
        height: 40%;
        left: 30%;
        bottom: 30%;
        transform: rotate(135deg);
    }
/* Others*/

.note-check a[data-value=Rubik] {
    font-style: normal;
}

.mbr-arrow a {
    color: #ffffff;
}

@media (max-width: 767px) {
    .mbr-arrow {
        display: none;
    }
}

.form-control-label {
    position: relative;
    cursor: pointer;
    margin-bottom: .357em;
    padding: 0;
}

.alert {
    color: #ffffff;
    border-radius: 0;
    border: 0;
    font-size: .875rem;
    line-height: 1.5;
    margin-bottom: 1.875rem;
    padding: 1.25rem;
    position: relative;
}

    .alert.alert-form::after {
        background-color: inherit;
        bottom: -7px;
        content: "";
        display: block;
        height: 14px;
        left: 50%;
        margin-left: -7px;
        position: absolute;
        transform: rotate(45deg);
        width: 14px;
    }

.form-control {
    background-color: #f5f5f5;
    box-shadow: none;
    color: #565656;
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
    line-height: 1.43;
    min-height: 3.5em; /*padding: 0.75em .5em;*/
}

    .form-control > .mbr-iconfont {
        font-size: 2.4rem;
    }

    .form-control, .form-control:focus {
        border: 1px solid #e8e8e8;
    }

.form-active .form-control:invalid {
    border-color: red;
}

.mbr-overlay {
    background-color: #000;
    bottom: 0;
    left: 0;
    opacity: .5;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

blockquote {
    font-style: italic;
    padding: 10px 20px 10px 20px;
    font-size: 1.09rem;
    position: relative;
    border-color: #149dcc;
    border-width: 3px;
}

ul, ol, pre, blockquote {
    margin-bottom: 2.3125rem;
}

pre {
    background: #f4f4f4;
    padding: 10px 24px;
    white-space: nowrap;
}

.inactive {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.mbr-section__comments .row {
    justify-content: center;
}
/* Forms */

.mbr-form .btn {
    margin: .4rem 0;
}

.mbr-form .input-group-btn a.btn {
    border-radius: 100px !important;
}

    .mbr-form .input-group-btn a.btn:hover {
        box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
    }

.mbr-form .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
    padding: 1rem 3rem;
}

    .mbr-form .input-group-btn button[type="submit"]:hover {
        box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
    }

.form2 .form-control {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

.form2 .input-group-btn a.btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.form2 .input-group-btn button[type="submit"] {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.form3 input[type="email"] {
    border-radius: 100px !important;
}

@media (max-width: 349px) {
    .form2 input[type="email"] {
        border-radius: 100px !important;
    }

    .form2 .input-group-btn a.btn {
        border-radius: 100px !important;
    }

    .form2 .input-group-btn button[type="submit"] {
        border-radius: 100px !important;
    }
}

@media (max-width: 767px) {
    .btn {
        font-size: .75rem !important;
    }

        .btn .mbr-iconfont {
            font-size: 1rem !important;
        }
}
/* Social block */

.btn-social {
    font-size: 20px;
    border-radius: 50%;
    padding: 0;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    position: relative;
    border: 2px solid #c0a375;
    border-color: #149dcc;
    color: #232323;
    cursor: pointer;
}

    .btn-social i {
        top: 0;
        line-height: 44px;
        width: 44px;
    }

    .btn-social:hover {
        color: #fff;
        background: #149dcc;
    }

    .btn-social + .btn {
        margin-left: .1rem;
    }
/* Footer */

.mbr-footer-content li::before, .mbr-footer .mbr-contacts li::before {
    background: #149dcc;
}

.mbr-footer-content li a:hover, .mbr-footer .mbr-contacts li a:hover {
    color: #149dcc;
}

.footer3 input[type="email"], .footer4 input[type="email"] {
    border-radius: 100px !important;
}

.footer3 .input-group-btn a.btn, .footer4 .input-group-btn a.btn {
    border-radius: 100px !important;
}

.footer3 .input-group-btn button[type="submit"], .footer4 .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
}
/* Headers*/

.header13 .form-inline input[type="email"], .header14 .form-inline input[type="email"] {
    border-radius: 100px;
}

.header13 .form-inline input[type="text"], .header14 .form-inline input[type="text"] {
    border-radius: 100px;
}

.header13 .form-inline input[type="tel"], .header14 .form-inline input[type="tel"] {
    border-radius: 100px;
}

.header13 .form-inline a.btn, .header14 .form-inline a.btn {
    border-radius: 100px;
}

.header13 .form-inline button, .header14 .form-inline button {
    border-radius: 100px !important;
}

.offset-1 {
    margin-left: 8.33333%;
}

.offset-2 {
    margin-left: 16.66667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333%;
}

.offset-5 {
    margin-left: 41.66667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333%;
}

.offset-8 {
    margin-left: 66.66667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333%;
}

.offset-11 {
    margin-left: 91.66667%;
}

@media (min-width: 576px) {
    .offset-sm-0 {
        margin-left: 0%;
    }

    .offset-sm-1 {
        margin-left: 8.33333%;
    }

    .offset-sm-2 {
        margin-left: 16.66667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333%;
    }

    .offset-sm-5 {
        margin-left: 41.66667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333%;
    }

    .offset-sm-8 {
        margin-left: 66.66667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333%;
    }

    .offset-sm-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 768px) {
    .offset-md-0 {
        margin-left: 0%;
    }

    .offset-md-1 {
        margin-left: 8.33333%;
    }

    .offset-md-2 {
        margin-left: 16.66667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333%;
    }

    .offset-md-5 {
        margin-left: 41.66667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333%;
    }

    .offset-md-8 {
        margin-left: 66.66667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333%;
    }

    .offset-md-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 992px) {
    .offset-lg-0 {
        margin-left: 0%;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333%;
    }

    .offset-lg-5 {
        margin-left: 41.66667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333%;
    }

    .offset-lg-8 {
        margin-left: 66.66667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333%;
    }

    .offset-lg-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1200px) {
    .offset-xl-0 {
        margin-left: 0%;
    }

    .offset-xl-1 {
        margin-left: 8.33333%;
    }

    .offset-xl-2 {
        margin-left: 16.66667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333%;
    }

    .offset-xl-5 {
        margin-left: 41.66667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333%;
    }

    .offset-xl-8 {
        margin-left: 66.66667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333%;
    }

    .offset-xl-11 {
        margin-left: 91.66667%;
    }
}

.navbar-toggler {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background: transparent;
    border: 1px solid transparent;
    -webkit-border-radius: 0.25rem;
    border-radius: 0.25rem;
}

    .navbar-toggler:focus, .navbar-toggler:hover {
        text-decoration: none;
    }

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    -webkit-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
}

.navbar-toggler-left {
    position: absolute;
    left: 1rem;
}

.navbar-toggler-right {
    position: absolute;
    right: 1rem;
}

@media (max-width: 575px) {
    .navbar-toggleable .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }

    .navbar-toggleable > .container {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 576px) {
    .navbar-toggleable {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .navbar-toggleable .navbar-nav {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .navbar-toggleable .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem;
            }

        .navbar-toggleable > .container {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .navbar-toggleable .navbar-collapse {
            display: -webkit-box !important;
            display: -webkit-flex !important;
            display: -ms-flexbox !important;
            display: flex !important;
            width: 100%;
        }

        .navbar-toggleable .navbar-toggler {
            display: none;
        }
}

@media (max-width: 767px) {
    .navbar-toggleable-sm .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }

    .navbar-toggleable-sm > .container {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .navbar-toggleable-sm {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .navbar-toggleable-sm .navbar-nav {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .navbar-toggleable-sm .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem;
                color: white;
            }

        .navbar-toggleable-sm > .container {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .navbar-toggleable-sm .navbar-collapse {
            display: -webkit-box !important;
            display: -webkit-flex !important;
            display: -ms-flexbox !important;
            display: flex !important;
            width: 100%;
        }

        .navbar-toggleable-sm .navbar-toggler {
            display: none;
        }
}

@media (max-width: 991px) {
    .navbar-toggleable-md .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }

    .navbar-toggleable-md > .container {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .navbar-toggleable-md {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .navbar-toggleable-md .navbar-nav {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .navbar-toggleable-md .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem;
            }

        .navbar-toggleable-md > .container {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .navbar-toggleable-md .navbar-collapse {
            display: -webkit-box !important;
            display: -webkit-flex !important;
            display: -ms-flexbox !important;
            display: flex !important;
            width: 100%;
        }

        .navbar-toggleable-md .navbar-toggler {
            display: none;
        }
}

@media (max-width: 1199px) {
    .navbar-toggleable-lg .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }

    .navbar-toggleable-lg > .container {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 1200px) {
    .navbar-toggleable-lg {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .navbar-toggleable-lg .navbar-nav {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .navbar-toggleable-lg .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem;
            }

        .navbar-toggleable-lg > .container {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .navbar-toggleable-lg .navbar-collapse {
            display: -webkit-box !important;
            display: -webkit-flex !important;
            display: -ms-flexbox !important;
            display: flex !important;
            width: 100%;
        }

        .navbar-toggleable-lg .navbar-toggler {
            display: none;
        }
}

.navbar-toggleable-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    .navbar-toggleable-xl .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }

    .navbar-toggleable-xl > .container {
        padding-right: 0;
        padding-left: 0;
    }

    .navbar-toggleable-xl .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

        .navbar-toggleable-xl .navbar-nav .nav-link {
            padding-right: .5rem;
            padding-left: .5rem;
        }

    .navbar-toggleable-xl > .container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .navbar-toggleable-xl .navbar-collapse {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        width: 100%;
    }

    .navbar-toggleable-xl .navbar-toggler {
        display: none;
    }

.card-img {
    width: auto;
}

.menu .navbar.collapsed:not(.beta-menu) {
    flex-direction: column;
}

.carousel-item.active, .carousel-item-next, .carousel-item-prev {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.note-air-layout .dropup .dropdown-menu, .note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
    bottom: initial !important;
}

html, body {
    height: auto;
    min-height: 100vh;
}

.dropup .dropdown-toggle::after {
    display: none;
}

.cid-qLjPwbzRSK .navbar {
    padding: .2rem 0;
    /*background: #c1c1c1;*/
    transition: none;
    min-height: 72px !important;
    background: RGBA(0,0,0,0.5) no-repeat !important;
}

.cid-qLjPwbzRSK .navbar-dropdown.bg-color.transparent.opened {
    background: #c1c1c1;
}

.cid-qLjPwbzRSK a {
    font-style: normal;
}

.cid-qLjPwbzRSK .nav-item span {
    padding-right: 0.2em;
    line-height: 0.5em;
    vertical-align: text-bottom;
    position: relative;
    text-decoration: none;
}

.cid-qLjPwbzRSK .nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0 !important;
    margin: 0rem .65rem !important;
}

.cid-qLjPwbzRSK .nav-item:focus, .cid-qLjPwbzRSK .nav-link:focus {
    outline: none;
}

.cid-qLjPwbzRSK .btn {
    padding: 0.4rem 1rem;
    display: inline-flex;
    align-items: center;
}

    .cid-qLjPwbzRSK .btn .mbr-iconfont {
        font-size: 1.6rem;
    }

.cid-qLjPwbzRSK .menu-logo {
    margin-right: auto;
}

    .cid-qLjPwbzRSK .menu-logo .navbar-brand {
        display: flex;
        margin-left: 2.5rem;
        padding: 0;
        transition: padding .2s;
        min-height: 3.8rem;
        align-items: center;
    }

        .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-caption-wrap {
            display: -webkit-flex;
            -webkit-align-items: center;
            align-items: center;
            word-break: keep-all;
            min-width: 4rem;
            margin: .3rem 0;
        }

            .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
                line-height: 1.2rem !important;
                padding-right: 1rem;
            }

        .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-logo {
            font-size: 4rem;
            transition: font-size 0.25s;
        }

            .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-logo img {
                display: flex;
            }

            .cid-qLjPwbzRSK .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
                transition: font-size 0.25s;
            }

.cid-qLjPwbzRSK .navbar-toggleable-sm .navbar-collapse {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    padding-right: 5rem;
    width: auto;
    text-align: left;
}

    .cid-qLjPwbzRSK .navbar-toggleable-sm .navbar-collapse .navbar-nav {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        padding-left: 0;
    }
/* entypo */

[class*="entypo-"]:before {
    font-family: "entypo", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#sticky-social {
    right: 0;
    position: fixed;
    top: 150px;
    z-index: 3;
}

    #sticky-social a {
        background: #333;
        color: #fff;
        display: block;
        height: 36px;
        font: 16px "Open Sans", sans-serif;
        line-height: 36px;
        position: relative;
        text-align: center;
        width: 36px;
    }

        #sticky-social a span {
            line-height: 36px;
            right: -120px;
            position: absolute;
            text-align: center;
            width: 120px;
        }

        #sticky-social a:hover span {
            right: 100%;
        }

        #sticky-social a[class*="facebook"], #sticky-social a[class*="facebook"]:hover, #sticky-social a[class*="facebook"] span {
            background: #3b5998;
        }

        #sticky-social a[class*="twitter"], #sticky-social a[class*="twitter"]:hover, #sticky-social a[class*="twitter"] span {
            background: #00aced;
        }

        #sticky-social a[class*="googleplus"], #sticky-social a[class*="googleplus"]:hover, #sticky-social a[class*="googleplus"] span {
            background: #dd4b39;
        }

        #sticky-social a[class*="linkedin"], #sticky-social a[class*="linkedin"]:hover, #sticky-social a[class*="linkedin"] span {
            background: #007bb6;
        }

        #sticky-social a[class*="play"], #sticky-social a[class*="play"]:hover, #sticky-social a[class*="play"] span {
            background: #cc2127;
        }

        #sticky-social a[class*="mail"], #sticky-social a[class*="mail"]:hover, #sticky-social a[class*="mail"] span {
            background: #32506d;
        }

        #sticky-social a[class*="instagram"], #sticky-social a[class*="instagram"]:hover, #sticky-social a[class*="instagram"] span {
            background: #ff6a00;
        }

/*sticky social end*/

.cid-qLjPwbzRSK .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: center;
    align-self: center;
}

.cid-qLjPwbzRSK .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
    padding-left: 0;
    padding-bottom: 0;
}

.cid-qLjPwbzRSK .dropdown .dropdown-menu {
    background: #c1c1c1;
    display: none;
    position: absolute;
    min-width: 5rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    text-align: left;
}

    .cid-qLjPwbzRSK .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        padding: 0.235em 1.5385em 0.235em 1.5385em !important;
    }

        .cid-qLjPwbzRSK .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

    .cid-qLjPwbzRSK .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
    }

.cid-qLjPwbzRSK .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-qLjPwbzRSK .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    z-index: 1000;
}

.cid-qLjPwbzRSK .navbar.navbar-short {
    min-height: 60px;
    transition: all .2s;
}

    .cid-qLjPwbzRSK .navbar.navbar-short .navbar-toggler-right {
        top: 20px;
    }

    .cid-qLjPwbzRSK .navbar.navbar-short .navbar-logo a {
        font-size: 2.5rem !important;
        line-height: 2.5rem;
        transition: font-size 0.25s;
    }

        .cid-qLjPwbzRSK .navbar.navbar-short .navbar-logo a .mbr-iconfont {
            font-size: 2.5rem !important;
        }

        .cid-qLjPwbzRSK .navbar.navbar-short .navbar-logo a img {
            height: 3rem !important;
        }

    .cid-qLjPwbzRSK .navbar.navbar-short .navbar-brand {
        min-height: 3rem;
    }

.cid-qLjPwbzRSK button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    transition: all .2s;
    top: 1.5rem;
    right: 1rem;
}

    .cid-qLjPwbzRSK button.navbar-toggler:focus {
        outline: none;
    }

    .cid-qLjPwbzRSK button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #ffffff;
    }

        .cid-qLjPwbzRSK button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all .2s;
        }

        .cid-qLjPwbzRSK button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLjPwbzRSK button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLjPwbzRSK button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all .2s;
        }

.cid-qLjPwbzRSK nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLjPwbzRSK nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
}

.cid-qLjPwbzRSK nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.cid-qLjPwbzRSK nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLjPwbzRSK .collapsed.navbar-expand {
    flex-direction: column;
}

.cid-qLjPwbzRSK .collapsed .btn {
    display: flex;
}

.cid-qLjPwbzRSK .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

    .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show {
        display: block !important;
    }

        .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-nav, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-nav {
            display: block;
            text-align: center;
        }

            .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-nav .nav-item {
                clear: both;
            }

                .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
                    margin-bottom: 1rem;
                }

        .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-buttons, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-buttons {
            text-align: center;
        }

            .cid-qLjPwbzRSK .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLjPwbzRSK .collapsed .navbar-collapse.show .navbar-buttons:last-child {
                margin-bottom: 1rem;
            }

.cid-qLjPwbzRSK .collapsed button.navbar-toggler {
    display: block;
}

.cid-qLjPwbzRSK .collapsed .navbar-brand {
    margin-left: 1rem !important;
}

.cid-qLjPwbzRSK .collapsed .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
}

.cid-qLjPwbzRSK .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
}

.cid-qLjPwbzRSK .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-qLjPwbzRSK .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-qLjPwbzRSK .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
}

@media (max-width: 991px) {
    .cid-qLjPwbzRSK .navbar-expand {
        flex-direction: column;
    }

    .cid-qLjPwbzRSK img {
        height: 3.8rem !important;
    }

    .cid-qLjPwbzRSK .btn {
        display: flex;
    }

    .cid-qLjPwbzRSK button.navbar-toggler {
        display: block;
    }

    .cid-qLjPwbzRSK .navbar-brand {
        margin-left: 1rem !important;
    }

    .cid-qLjPwbzRSK .navbar-toggleable-sm {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .cid-qLjPwbzRSK .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

        .cid-qLjPwbzRSK .navbar-collapse.collapsing, .cid-qLjPwbzRSK .navbar-collapse.show {
            display: block !important;
        }

            .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-nav, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-nav {
                display: block;
                text-align: center;
            }

                .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-nav .nav-item {
                    clear: both;
                }

                    .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-nav .nav-item:last-child {
                        margin-bottom: 1rem;
                    }

            .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-buttons, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-buttons {
                text-align: center;
            }

                .cid-qLjPwbzRSK .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLjPwbzRSK .navbar-collapse.show .navbar-buttons:last-child {
                    margin-bottom: 1rem;
                }

    .cid-qLjPwbzRSK .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        transition-duration: .5s;
        transition-property: opacity,padding,height;
    }

    .cid-qLjPwbzRSK .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-qLjPwbzRSK .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-qLjPwbzRSK .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: .3em;
        vertical-align: middle;
        content: "";
        border-top: .30em solid;
        border-right: .30em solid transparent;
        border-left: .30em solid transparent;
    }
}

@media (min-width: 767px) {
    .cid-qLjPwbzRSK .menu-logo {
        flex-shrink: 0;
    }
}

.cid-qLjPwbzRSK .navbar-collapse {
    flex-basis: auto;
}

.cid-qLjPwbzRSK .nav-link:hover, .cid-qLjPwbzRSK .dropdown-item:hover {
    color: #70c770 !important;
}

.cid-qLjPxddLDa {
    margin-top: 70px;
    padding-top: 5vh;
    background-image: url("../../../assets/images/Front_Banner2.png");
    width:100%;
    min-height: 50vh;
    padding-bottom: 5vh;
    right: 0;
    left: auto;
}

.cid-qLjPId1BUg {
    padding-top: 60px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-qLjPId1BUg .mbr-section-subtitle {
        color: #767676;
    }

.cid-qLjPJexADK {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-qLjPJexADK .line {
        background-color: #149dcc;
        color: #149dcc;
        align: center;
        height: 2px;
        margin: 0 auto;
    }

    .cid-qLjPJexADK .section-text {
        padding: 2rem 0;
    }

    .cid-qLjPJexADK .inner-container {
        margin: 0 auto;
    }

@media (max-width: 768px) {
    .cid-qLjPJexADK .inner-container {
        width: 100% !important;
    }
}

.cid-qLjPKJCVzD {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

    .cid-qLjPKJCVzD .counter-container {
        color: #767676;
    }

        .cid-qLjPKJCVzD .counter-container ul {
            margin-bottom: 0;
        }

            .cid-qLjPKJCVzD .counter-container ul li {
                margin-bottom: 1rem;
                list-style: none;
            }

                .cid-qLjPKJCVzD .counter-container ul li:before {
                    position: absolute;
                    left: 0px;
                    margin-top: -10px;
                    padding-top: 3px;
                    content: '';
                    display: inline-block;
                    text-align: center;
                    margin: 5px 10px;
                    line-height: 20px;
                    transition: all .2s;
                    color: #ffffff;
                    background: #149dcc;
                    width: 25px;
                    height: 25px;
                    border-radius: 50%;
                    background: none;
                    border: 1px solid #149dcc;
                    color: #149dcc;
                    content: '✓';
                }

.cid-qLk22jn7zk {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-qLk22jn7zk .line {
        background-color: #149dcc;
        color: #149dcc;
        align: center;
        height: 2px;
        margin: 0 auto;
    }

    .cid-qLk22jn7zk .section-text {
        padding: 2rem 0;
    }

    .cid-qLk22jn7zk .inner-container {
        margin: 0 auto;
    }

@media (max-width: 768px) {
    .cid-qLk22jn7zk .inner-container {
        width: 100% !important;
    }
}

.cid-qLjPPMQu8G {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLjPPMQu8G .mbr-text {
        color: #767676;
    }

    .cid-qLjPPMQu8G h4 {
        text-align: center;
    }

    .cid-qLjPPMQu8G p {
        text-align: center;
    }

    .cid-qLjPPMQu8G .card-img span {
        font-size: 96px;
        color: #149dcc;
    }

.cid-qLjQ6XRuAX {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

    .cid-qLjQ6XRuAX .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLjQ6XRuAX .media-container-row {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .cid-qLjQ6XRuAX .mbr-text {
        color: #767676;
    }

    .cid-qLjQ6XRuAX .mbr-author-desc {
        display: block;
        color: #767676;
    }

    .cid-qLjQ6XRuAX .mbr-author-name {
        color: #767676;
    }

    .cid-qLjQ6XRuAX .mbr-testimonial .panel-item {
        background-color: #ffffff;
    }

    .cid-qLjQ6XRuAX .mbr-testimonial .card-block {
        -webkit-flex-grow: 0;
        flex-grow: 0;
        padding: 2.4rem 2.4rem 0 2.4rem;
    }

        .cid-qLjQ6XRuAX .mbr-testimonial .card-block .testimonial-photo {
            display: inline-block;
            width: 120px;
            height: 120px;
            margin-bottom: 1.6rem;
            overflow: hidden;
            border-radius: 80%;
        }

            .cid-qLjQ6XRuAX .mbr-testimonial .card-block .testimonial-photo img {
                width: 100%;
                min-width: 100%;
                min-height: 100%;
            }

    .cid-qLjQ6XRuAX .mbr-testimonial .card-footer {
        padding-bottom: 2.4rem;
        border-top: 0;
        padding-top: 1rem;
        word-wrap: break-word;
        word-break: break-word;
        background: none;
    }

@media (max-width: 300px) {
    .cid-qLjQ6XRuAX .testimonial-photo {
        width: 100% !important;
        height: auto !important;
    }
}

.cid-qLjPD48MGt {
    background: #ffffff;
    background: linear-gradient(45deg, #ffffff, #efefef);
}

    .cid-qLjPD48MGt .video-block {
        margin: auto;
        width: 100% !important;
    }

@media (max-width: 768px) {
    .cid-qLjPD48MGt .video-block {
        width: 100% !important;
    }
}

.cid-qLjQchLaOI {
    padding-top: 15px;
    padding-bottom: 10px;
    background-color: #2e2e2e;
}

    .cid-qLjQchLaOI .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-qLjQchLaOI .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-qLjQchLaOI .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-qLjQchLaOI .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-qLjQchLaOI .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-qLjQchLaOI .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-qLjQchLaOI .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            -webkit-justify-content: flex-end;
        }

            .cid-qLjQchLaOI .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                padding: 16px;
                color: #ffffff;
            }

            .cid-qLjQchLaOI .media-container-row .social-list .soc-item {
                margin: .5rem .5rem;
            }

            .cid-qLjQchLaOI .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                -webkit-transition: .2s linear;
                transition: .2s linear;
            }

                .cid-qLjQchLaOI .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-qLjQchLaOI .media-container-row .social-list {
        justify-content: center;
        -webkit-justify-content: center;
    }
}

.cid-qLjQchLaOI .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
    position: relative;
    z-index: 1;
}

    .cid-qLjQchLaOI .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-qLoMVJPyfD .navbar {
    padding: .5rem 0;
    background: #c1c1c1;
    transition: none;
    min-height: 77px;
}

.cid-qLoMVJPyfD .navbar-dropdown.bg-color.transparent.opened {
    background: #c1c1c1;
}

.cid-qLoMVJPyfD a {
    font-style: normal;
}

.cid-qLoMVJPyfD .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: text-bottom;
    position: relative;
    text-decoration: none;
}

.cid-qLoMVJPyfD .nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0 !important;
    margin: 0rem .65rem !important;
}

.cid-qLoMVJPyfD .nav-item:focus, .cid-qLoMVJPyfD .nav-link:focus {
    outline: none;
}

.cid-qLoMVJPyfD .btn {
    padding: 0.4rem 1.5rem;
    display: inline-flex;
    align-items: center;
}

    .cid-qLoMVJPyfD .btn .mbr-iconfont {
        font-size: 1.6rem;
    }

.cid-qLoMVJPyfD .menu-logo {
    margin-right: auto;
}

    .cid-qLoMVJPyfD .menu-logo .navbar-brand {
        display: flex;
        margin-left: 5rem;
        padding: 0;
        transition: padding .2s;
        min-height: 3.8rem;
        align-items: center;
    }

        .cid-qLoMVJPyfD .menu-logo .navbar-brand .navbar-caption-wrap {
            display: -webkit-flex;
            -webkit-align-items: center;
            align-items: center;
            word-break: break-word;
            min-width: 7rem;
            margin: .3rem 0;
        }

            .cid-qLoMVJPyfD .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
                line-height: 1.2rem !important;
                padding-right: 2rem;
            }

        .cid-qLoMVJPyfD .menu-logo .navbar-brand .navbar-logo {
            font-size: 4rem;
            transition: font-size 0.25s;
        }

            .cid-qLoMVJPyfD .menu-logo .navbar-brand .navbar-logo img {
                display: flex;
            }

            .cid-qLoMVJPyfD .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
                transition: font-size 0.25s;
            }

.cid-qLoMVJPyfD .navbar-toggleable-sm .navbar-collapse {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    padding-right: 5rem;
    width: auto;
}

    .cid-qLoMVJPyfD .navbar-toggleable-sm .navbar-collapse .navbar-nav {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        padding-left: 0;
    }

        .cid-qLoMVJPyfD .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
            -webkit-align-self: center;
            align-self: center;
        }

    .cid-qLoMVJPyfD .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
        padding-left: 0;
        padding-bottom: 0;
    }

.cid-qLoMVJPyfD .dropdown .dropdown-menu {
    background: #c1c1c1;
    display: none;
    position: absolute;
    min-width: 5rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    text-align: left;
}

    .cid-qLoMVJPyfD .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        padding: 0.235em 1.5385em 0.235em 1.5385em !important;
    }

        .cid-qLoMVJPyfD .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

    .cid-qLoMVJPyfD .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
    }

.cid-qLoMVJPyfD .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-qLoMVJPyfD .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    z-index: 1000;
}

.cid-qLoMVJPyfD .navbar.navbar-short {
    min-height: 60px;
    transition: all .2s;
}

    .cid-qLoMVJPyfD .navbar.navbar-short .navbar-toggler-right {
        top: 20px;
    }

    .cid-qLoMVJPyfD .navbar.navbar-short .navbar-logo a {
        font-size: 2.5rem !important;
        line-height: 2.5rem;
        transition: font-size 0.25s;
    }

        .cid-qLoMVJPyfD .navbar.navbar-short .navbar-logo a .mbr-iconfont {
            font-size: 2.5rem !important;
        }

        .cid-qLoMVJPyfD .navbar.navbar-short .navbar-logo a img {
            height: 3rem !important;
        }

    .cid-qLoMVJPyfD .navbar.navbar-short .navbar-brand {
        min-height: 3rem;
    }

.cid-qLoMVJPyfD button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    transition: all .2s;
    top: 1.5rem;
    right: 1rem;
}

    .cid-qLoMVJPyfD button.navbar-toggler:focus {
        outline: none;
    }

    .cid-qLoMVJPyfD button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #ffffff;
    }

        .cid-qLoMVJPyfD button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all .2s;
        }

        .cid-qLoMVJPyfD button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLoMVJPyfD button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLoMVJPyfD button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all .2s;
        }

.cid-qLoMVJPyfD nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLoMVJPyfD nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
}

.cid-qLoMVJPyfD nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.cid-qLoMVJPyfD nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLoMVJPyfD .collapsed.navbar-expand {
    flex-direction: column;
}

.cid-qLoMVJPyfD .collapsed .btn {
    display: flex;
}

.cid-qLoMVJPyfD .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

    .cid-qLoMVJPyfD .collapsed .navbar-collapse.collapsing, .cid-qLoMVJPyfD .collapsed .navbar-collapse.show {
        display: block !important;
    }

        .cid-qLoMVJPyfD .collapsed .navbar-collapse.collapsing .navbar-nav, .cid-qLoMVJPyfD .collapsed .navbar-collapse.show .navbar-nav {
            display: block;
            text-align: center;
        }

            .cid-qLoMVJPyfD .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLoMVJPyfD .collapsed .navbar-collapse.show .navbar-nav .nav-item {
                clear: both;
            }

                .cid-qLoMVJPyfD .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLoMVJPyfD .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
                    margin-bottom: 1rem;
                }

        .cid-qLoMVJPyfD .collapsed .navbar-collapse.collapsing .navbar-buttons, .cid-qLoMVJPyfD .collapsed .navbar-collapse.show .navbar-buttons {
            text-align: center;
        }

            .cid-qLoMVJPyfD .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLoMVJPyfD .collapsed .navbar-collapse.show .navbar-buttons:last-child {
                margin-bottom: 1rem;
            }

.cid-qLoMVJPyfD .collapsed button.navbar-toggler {
    display: block;
}

.cid-qLoMVJPyfD .collapsed .navbar-brand {
    margin-left: 1rem !important;
}

.cid-qLoMVJPyfD .collapsed .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
}

.cid-qLoMVJPyfD .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
}

.cid-qLoMVJPyfD .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-qLoMVJPyfD .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-qLoMVJPyfD .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
}

@media (max-width: 991px) {
    .cid-qLoMVJPyfD .navbar-expand {
        flex-direction: column;
    }

    .cid-qLoMVJPyfD img {
        height: 3.8rem !important;
    }

    .cid-qLoMVJPyfD .btn {
        display: flex;
    }

    .cid-qLoMVJPyfD button.navbar-toggler {
        display: block;
    }

    .cid-qLoMVJPyfD .navbar-brand {
        margin-left: 1rem !important;
    }

    .cid-qLoMVJPyfD .navbar-toggleable-sm {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .cid-qLoMVJPyfD .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

        .cid-qLoMVJPyfD .navbar-collapse.collapsing, .cid-qLoMVJPyfD .navbar-collapse.show {
            display: block !important;
        }

            .cid-qLoMVJPyfD .navbar-collapse.collapsing .navbar-nav, .cid-qLoMVJPyfD .navbar-collapse.show .navbar-nav {
                display: block;
                text-align: center;
            }

                .cid-qLoMVJPyfD .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLoMVJPyfD .navbar-collapse.show .navbar-nav .nav-item {
                    clear: both;
                }

                    .cid-qLoMVJPyfD .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLoMVJPyfD .navbar-collapse.show .navbar-nav .nav-item:last-child {
                        margin-bottom: 1rem;
                    }

            .cid-qLoMVJPyfD .navbar-collapse.collapsing .navbar-buttons, .cid-qLoMVJPyfD .navbar-collapse.show .navbar-buttons {
                text-align: center;
            }

                .cid-qLoMVJPyfD .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLoMVJPyfD .navbar-collapse.show .navbar-buttons:last-child {
                    margin-bottom: 1rem;
                }

    .cid-qLoMVJPyfD .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        transition-duration: .5s;
        transition-property: opacity,padding,height;
    }

    .cid-qLoMVJPyfD .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-qLoMVJPyfD .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-qLoMVJPyfD .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: .3em;
        vertical-align: middle;
        content: "";
        border-top: .30em solid;
        border-right: .30em solid transparent;
        border-left: .30em solid transparent;
    }
}

@media (min-width: 992px) {
    .cid-qLoMVJPyfD .menu-logo {
        flex-shrink: 0;
    }
}

.cid-qLoMVJPyfD .navbar-collapse {
    flex-basis: auto;
}

.cid-qLoMVJPyfD .nav-link:hover, .cid-qLoMVJPyfD .dropdown-item:hover {
    color: #70c770 !important;
}

.cid-qLoPkKEItw {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}
.cid-conference-banner {
    background-image: url("../../../assets/images/Conference_banner.jpg");
    background-size: auto cover !important;
    background-repeat: no-repeat;
    min-height: 400px;
    width: 100% !important;
    margin-top: 70px;
}
.cid-Landing {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Landing.png");
}

.cid-conference {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
    overflow: auto;
}

.cid-qLoPMRsozI {
    padding-top: 45px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-qLoPMRsozI .mbr-section-subtitle {
        color: #767676;
        text-align: left;
    }

.cid-qLoQlzr3g8 {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ccac00;
}

    .cid-qLoQlzr3g8 .line {
        background-color: #ffffff;
        color: #ffffff;
        align: center;
        height: 2px;
        margin: 0 auto;
    }

    .cid-qLoQlzr3g8 .section-text {
        padding: 2rem 0;
    }

    .cid-qLoQlzr3g8 .inner-container {
        margin: 0 auto;
    }

@media (max-width: 800px) {
    .cid-qLoQlzr3g8 .inner-container {
        width: 100% !important;
    }
}

.cid-qLoQFFCfrY {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-qLoQFFCfrY .mbr-text, .cid-qLoQFFCfrY blockquote {
        color: #767676;
    }

.cid-qLoRDS3P42 {
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url("../../../assets/images/jumbotronA.jpg");
}

@media (min-width: 992px) {
    .cid-qLoRDS3P42 .mbr-figure {
        padding-right: 4rem;
    }
}

@media (max-width: 991px) {
    .cid-qLoRDS3P42 .mbr-figure {
        padding-bottom: 3rem;
    }
}

@media (max-width: 800px) {
    .cid-qLoRDS3P42 .mbr-text {
        text-align: center;
    }
}

.cid-qLoPOTEaVE {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLoPOTEaVE .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLoPOTEaVE .media-row {
        display: flex;
        justify-content: center;
    }

    .cid-qLoPOTEaVE .team-item {
        transition: all .2s;
        margin-bottom: 2rem;
    }

        .cid-qLoPOTEaVE .team-item .item-image img {
            width: 100%;
        }

        .cid-qLoPOTEaVE .team-item .item-name p {
            margin-bottom: 0;
        }

        .cid-qLoPOTEaVE .team-item .item-role p {
            margin-bottom: 0;
        }

        .cid-qLoPOTEaVE .team-item .item-social {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

            .cid-qLoPOTEaVE .team-item .item-social .socicon {
                color: #232323;
                font-size: 17px;
            }

        .cid-qLoPOTEaVE .team-item .item-caption {
            background: #efefef;
        }

.cid-qLoPUpFGs7 {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLoPUpFGs7 .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLoPUpFGs7 .media-row {
        display: flex;
        justify-content: center;
    }

    .cid-qLoPUpFGs7 .team-item {
        transition: all .2s;
        margin-bottom: 2rem;
    }

        .cid-qLoPUpFGs7 .team-item .item-image img {
            width: 100%;
        }

        .cid-qLoPUpFGs7 .team-item .item-name p {
            margin-bottom: 0;
        }

        .cid-qLoPUpFGs7 .team-item .item-role p {
            margin-bottom: 0;
        }

        .cid-qLoPUpFGs7 .team-item .item-social {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

            .cid-qLoPUpFGs7 .team-item .item-social .socicon {
                color: #232323;
                font-size: 17px;
            }

        .cid-qLoPUpFGs7 .team-item .item-caption {
            background: #efefef;
        }

.cid-qLoPWTqtrf {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLoPWTqtrf .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLoPWTqtrf .media-row {
        display: flex;
        justify-content: center;
    }

    .cid-qLoPWTqtrf .team-item {
        transition: all .2s;
        margin-bottom: 2rem;
    }

        .cid-qLoPWTqtrf .team-item .item-image img {
            width: 100%;
        }

        .cid-qLoPWTqtrf .team-item .item-name p {
            margin-bottom: 0;
        }

        .cid-qLoPWTqtrf .team-item .item-role p {
            margin-bottom: 0;
        }

        .cid-qLoPWTqtrf .team-item .item-social {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

            .cid-qLoPWTqtrf .team-item .item-social .socicon {
                color: #232323;
                font-size: 17px;
            }

        .cid-qLoPWTqtrf .team-item .item-caption {
            background: #efefef;
        }

.cid-qLoPXgh521 {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLoPXgh521 .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLoPXgh521 .media-row {
        display: flex;
        justify-content: center;
    }

    .cid-qLoPXgh521 .team-item {
        transition: all .2s;
        margin-bottom: 2rem;
    }

        .cid-qLoPXgh521 .team-item .item-image img {
            width: 100%;
        }

        .cid-qLoPXgh521 .team-item .item-name p {
            margin-bottom: 0;
        }

        .cid-qLoPXgh521 .team-item .item-role p {
            margin-bottom: 0;
        }

        .cid-qLoPXgh521 .team-item .item-social {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

            .cid-qLoPXgh521 .team-item .item-social .socicon {
                color: #232323;
                font-size: 17px;
            }

        .cid-qLoPXgh521 .team-item .item-caption {
            background: #efefef;
        }

.cid-qLoPZE7Ooi {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLoPZE7Ooi .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLoPZE7Ooi .media-row {
        display: flex;
        justify-content: center;
    }

    .cid-qLoPZE7Ooi .team-item {
        transition: all .2s;
        margin-bottom: 2rem;
    }

        .cid-qLoPZE7Ooi .team-item .item-image img {
            width: 100%;
        }

        .cid-qLoPZE7Ooi .team-item .item-name p {
            margin-bottom: 0;
        }

        .cid-qLoPZE7Ooi .team-item .item-role p {
            margin-bottom: 0;
        }

        .cid-qLoPZE7Ooi .team-item .item-social {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

            .cid-qLoPZE7Ooi .team-item .item-social .socicon {
                color: #232323;
                font-size: 17px;
            }

        .cid-qLoPZE7Ooi .team-item .item-caption {
            background: #efefef;
        }

.cid-qLumNe8yQS {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

    .cid-qLumNe8yQS .carousel-control {
        background: #000;
    }

    .cid-qLumNe8yQS .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLumNe8yQS .carousel-item {
        -webkit-justify-content: center;
        justify-content: center;
    }

        .cid-qLumNe8yQS .carousel-item .media-container-row {
            -webkit-flex-grow: 1;
            flex-grow: 1;
        }

        .cid-qLumNe8yQS .carousel-item .wrap-img {
            text-align: center;
        }

            .cid-qLumNe8yQS .carousel-item .wrap-img img {
                max-height: 150px;
                width: auto;
                max-width: 100%;
            }

    .cid-qLumNe8yQS .carousel-controls {
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
    }

        .cid-qLumNe8yQS .carousel-controls .carousel-control {
            background: #000;
            border-radius: 50%;
            position: static;
            width: 40px;
            height: 40px;
            margin-top: 2rem;
            border-width: 1px;
        }

            .cid-qLumNe8yQS .carousel-controls .carousel-control.carousel-control-prev {
                left: auto;
                margin-right: 20px;
                margin-left: 0;
            }

            .cid-qLumNe8yQS .carousel-controls .carousel-control.carousel-control-next {
                right: auto;
                margin-right: 0;
            }

            .cid-qLumNe8yQS .carousel-controls .carousel-control .mbr-iconfont {
                font-size: 1rem;
            }

    .cid-qLumNe8yQS .cloneditem-1, .cid-qLumNe8yQS .cloneditem-2, .cid-qLumNe8yQS .cloneditem-3, .cid-qLumNe8yQS .cloneditem-4, .cid-qLumNe8yQS .cloneditem-5 {
        display: none;
    }

    .cid-qLumNe8yQS .col-lg-15 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        position: relative;
        min-height: 1px;
        padding-right: 10px;
        padding-left: 10px;
        width: 100%;
    }

@media (min-width: 992px) {
    .cid-qLumNe8yQS .col-lg-15 {
        -ms-flex: 0 0 20%;
        -webkit-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        width: 20%;
    }

    .cid-qLumNe8yQS .carousel-inner.slides2 > .carousel-item.active.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides2 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
    }

    .cid-qLumNe8yQS .carousel-inner.slides2 > .carousel-item.active.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }

        .cid-qLumNe8yQS .carousel-inner.slides2 > .carousel-item.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides2 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qLumNe8yQS .carousel-inner.slides2 .cloneditem-1, .cid-qLumNe8yQS .carousel-inner.slides2 .cloneditem-2, .cid-qLumNe8yQS .carousel-inner.slides2 .cloneditem-3 {
        display: block;
    }

    .cid-qLumNe8yQS .carousel-inner.slides3 > .carousel-item.active.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides3 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(33.333333%, 0, 0);
        transform: translate3d(33.333333%, 0, 0);
    }

    .cid-qLumNe8yQS .carousel-inner.slides3 > .carousel-item.active.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-33.333333%, 0, 0);
        transform: translate3d(-33.333333%, 0, 0);
    }

        .cid-qLumNe8yQS .carousel-inner.slides3 > .carousel-item.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides3 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qLumNe8yQS .carousel-inner.slides3 .cloneditem-1, .cid-qLumNe8yQS .carousel-inner.slides3 .cloneditem-2, .cid-qLumNe8yQS .carousel-inner.slides3 .cloneditem-3 {
        display: block;
    }

    .cid-qLumNe8yQS .carousel-inner.slides4 > .carousel-item.active.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides4 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(25%, 0, 0);
        transform: translate3d(25%, 0, 0);
    }

    .cid-qLumNe8yQS .carousel-inner.slides4 > .carousel-item.active.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-25%, 0, 0);
        transform: translate3d(-25%, 0, 0);
    }

        .cid-qLumNe8yQS .carousel-inner.slides4 > .carousel-item.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides4 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qLumNe8yQS .carousel-inner.slides4 .cloneditem-1, .cid-qLumNe8yQS .carousel-inner.slides4 .cloneditem-2, .cid-qLumNe8yQS .carousel-inner.slides4 .cloneditem-3 {
        display: block;
    }

    .cid-qLumNe8yQS .carousel-inner.slides5 > .carousel-item.active.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides5 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(20%, 0, 0);
        transform: translate3d(20%, 0, 0);
    }

    .cid-qLumNe8yQS .carousel-inner.slides5 > .carousel-item.active.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-20%, 0, 0);
        transform: translate3d(-20%, 0, 0);
    }

        .cid-qLumNe8yQS .carousel-inner.slides5 > .carousel-item.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides5 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qLumNe8yQS .carousel-inner.slides5 .cloneditem-1, .cid-qLumNe8yQS .carousel-inner.slides5 .cloneditem-2, .cid-qLumNe8yQS .carousel-inner.slides5 .cloneditem-3, .cid-qLumNe8yQS .carousel-inner.slides5 .cloneditem-4 {
        display: block;
    }

    .cid-qLumNe8yQS .carousel-inner.slides6 > .carousel-item.active.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides6 > .carousel-item.carousel-item-next {
        left: 0;
        -webkit-transform: translate3d(16.666667%, 0, 0);
        transform: translate3d(16.666667%, 0, 0);
    }

    .cid-qLumNe8yQS .carousel-inner.slides6 > .carousel-item.active.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
        left: 0;
        -webkit-transform: translate3d(-16.666667%, 0, 0);
        transform: translate3d(-16.666667%, 0, 0);
    }

        .cid-qLumNe8yQS .carousel-inner.slides6 > .carousel-item.carousel-item-left, .cid-qLumNe8yQS .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right, .cid-qLumNe8yQS .carousel-inner.slides6 > .carousel-item.active {
            left: 0;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .cid-qLumNe8yQS .carousel-inner.slides6 .cloneditem-1, .cid-qLumNe8yQS .carousel-inner.slides6 .cloneditem-2, .cid-qLumNe8yQS .carousel-inner.slides6 .cloneditem-3, .cid-qLumNe8yQS .carousel-inner.slides6 .cloneditem-4, .cid-qLumNe8yQS .carousel-inner.slides6 .cloneditem-5 {
        display: block;
    }
}

.cid-qLoSFmh7dx {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #2e2e2e;
}

    .cid-qLoSFmh7dx .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-qLoSFmh7dx .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-qLoSFmh7dx .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-qLoSFmh7dx .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-qLoSFmh7dx .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-qLoSFmh7dx .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-qLoSFmh7dx .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            -webkit-justify-content: flex-end;
        }

            .cid-qLoSFmh7dx .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-qLoSFmh7dx .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-qLoSFmh7dx .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                -webkit-transition: .2s linear;
                transition: .2s linear;
            }

                .cid-qLoSFmh7dx .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-qLoSFmh7dx .media-container-row .social-list {
        justify-content: center;
        -webkit-justify-content: center;
    }
}

.cid-qLoSFmh7dx .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-qLoSFmh7dx .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-qLoVOZvSNo .navbar {
    padding: .5rem 0;
    background: #c1c1c1;
    transition: none;
    min-height: 77px;
}

.cid-qLoVOZvSNo .navbar-dropdown.bg-color.transparent.opened {
    background: #c1c1c1;
}

.cid-qLoVOZvSNo a {
    font-style: normal;
}

.cid-qLoVOZvSNo .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: text-bottom;
    position: relative;
    text-decoration: none;
}

.cid-qLoVOZvSNo .nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0 !important;
    margin: 0rem .65rem !important;
}

.cid-qLoVOZvSNo .nav-item:focus, .cid-qLoVOZvSNo .nav-link:focus {
    outline: none;
}

.cid-qLoVOZvSNo .btn {
    padding: 0.4rem 1.5rem;
    display: inline-flex;
    align-items: center;
}

    .cid-qLoVOZvSNo .btn .mbr-iconfont {
        font-size: 1.6rem;
    }

.cid-qLoVOZvSNo .menu-logo {
    margin-right: auto;
}

    .cid-qLoVOZvSNo .menu-logo .navbar-brand {
        display: flex;
        margin-left: 5rem;
        padding: 0;
        transition: padding .2s;
        min-height: 3.8rem;
        align-items: center;
    }

        .cid-qLoVOZvSNo .menu-logo .navbar-brand .navbar-caption-wrap {
            display: -webkit-flex;
            -webkit-align-items: center;
            align-items: center;
            word-break: break-word;
            min-width: 7rem;
            margin: .3rem 0;
        }

            .cid-qLoVOZvSNo .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
                line-height: 1.2rem !important;
                padding-right: 2rem;
            }

        .cid-qLoVOZvSNo .menu-logo .navbar-brand .navbar-logo {
            font-size: 4rem;
            transition: font-size 0.25s;
        }

            .cid-qLoVOZvSNo .menu-logo .navbar-brand .navbar-logo img {
                display: flex;
            }

            .cid-qLoVOZvSNo .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
                transition: font-size 0.25s;
            }

.cid-qLoVOZvSNo .navbar-toggleable-sm .navbar-collapse {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    padding-right: 5rem;
    width: auto;
}

    .cid-qLoVOZvSNo .navbar-toggleable-sm .navbar-collapse .navbar-nav {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        padding-left: 0;
    }

        .cid-qLoVOZvSNo .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
            -webkit-align-self: center;
            align-self: center;
        }

    .cid-qLoVOZvSNo .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
        padding-left: 0;
        padding-bottom: 0;
    }

.cid-qLoVOZvSNo .dropdown .dropdown-menu {
    background: #c1c1c1;
    display: none;
    position: absolute;
    min-width: 5rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    text-align: left;
}

    .cid-qLoVOZvSNo .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        padding: 0.235em 1.5385em 0.235em 1.5385em !important;
    }

        .cid-qLoVOZvSNo .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

    .cid-qLoVOZvSNo .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
    }

.cid-qLoVOZvSNo .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-qLoVOZvSNo .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    z-index: 1000;
}

.cid-qLoVOZvSNo .navbar.navbar-short {
    min-height: 60px;
    transition: all .2s;
}

    .cid-qLoVOZvSNo .navbar.navbar-short .navbar-toggler-right {
        top: 20px;
    }

    .cid-qLoVOZvSNo .navbar.navbar-short .navbar-logo a {
        font-size: 2.5rem !important;
        line-height: 2.5rem;
        transition: font-size 0.25s;
    }

        .cid-qLoVOZvSNo .navbar.navbar-short .navbar-logo a .mbr-iconfont {
            font-size: 2.5rem !important;
        }

        .cid-qLoVOZvSNo .navbar.navbar-short .navbar-logo a img {
            height: 3rem !important;
        }

    .cid-qLoVOZvSNo .navbar.navbar-short .navbar-brand {
        min-height: 3rem;
    }

.cid-qLoVOZvSNo button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    transition: all .2s;
    top: 1.5rem;
    right: 1rem;
}

    .cid-qLoVOZvSNo button.navbar-toggler:focus {
        outline: none;
    }

    .cid-qLoVOZvSNo button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #ffffff;
    }

        .cid-qLoVOZvSNo button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all .2s;
        }

        .cid-qLoVOZvSNo button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLoVOZvSNo button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLoVOZvSNo button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all .2s;
        }

.cid-qLoVOZvSNo nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLoVOZvSNo nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
}

.cid-qLoVOZvSNo nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.cid-qLoVOZvSNo nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLoVOZvSNo .collapsed.navbar-expand {
    flex-direction: column;
}

.cid-qLoVOZvSNo .collapsed .btn {
    display: flex;
}

.cid-qLoVOZvSNo .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

    .cid-qLoVOZvSNo .collapsed .navbar-collapse.collapsing, .cid-qLoVOZvSNo .collapsed .navbar-collapse.show {
        display: block !important;
    }

        .cid-qLoVOZvSNo .collapsed .navbar-collapse.collapsing .navbar-nav, .cid-qLoVOZvSNo .collapsed .navbar-collapse.show .navbar-nav {
            display: block;
            text-align: center;
        }

            .cid-qLoVOZvSNo .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLoVOZvSNo .collapsed .navbar-collapse.show .navbar-nav .nav-item {
                clear: both;
            }

                .cid-qLoVOZvSNo .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLoVOZvSNo .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
                    margin-bottom: 1rem;
                }

        .cid-qLoVOZvSNo .collapsed .navbar-collapse.collapsing .navbar-buttons, .cid-qLoVOZvSNo .collapsed .navbar-collapse.show .navbar-buttons {
            text-align: center;
        }

            .cid-qLoVOZvSNo .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLoVOZvSNo .collapsed .navbar-collapse.show .navbar-buttons:last-child {
                margin-bottom: 1rem;
            }

.cid-qLoVOZvSNo .collapsed button.navbar-toggler {
    display: block;
}

.cid-qLoVOZvSNo .collapsed .navbar-brand {
    margin-left: 1rem !important;
}

.cid-qLoVOZvSNo .collapsed .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
}

.cid-qLoVOZvSNo .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
}

.cid-qLoVOZvSNo .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-qLoVOZvSNo .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-qLoVOZvSNo .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
}

@media (max-width: 991px) {
    .cid-qLoVOZvSNo .navbar-expand {
        flex-direction: column;
    }

    .cid-qLoVOZvSNo img {
        height: 3.8rem !important;
    }

    .cid-qLoVOZvSNo .btn {
        display: flex;
    }

    .cid-qLoVOZvSNo button.navbar-toggler {
        display: block;
    }

    .cid-qLoVOZvSNo .navbar-brand {
        margin-left: 1rem !important;
    }

    .cid-qLoVOZvSNo .navbar-toggleable-sm {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .cid-qLoVOZvSNo .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

        .cid-qLoVOZvSNo .navbar-collapse.collapsing, .cid-qLoVOZvSNo .navbar-collapse.show {
            display: block !important;
        }

            .cid-qLoVOZvSNo .navbar-collapse.collapsing .navbar-nav, .cid-qLoVOZvSNo .navbar-collapse.show .navbar-nav {
                display: block;
                text-align: center;
            }

                .cid-qLoVOZvSNo .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLoVOZvSNo .navbar-collapse.show .navbar-nav .nav-item {
                    clear: both;
                }

                    .cid-qLoVOZvSNo .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLoVOZvSNo .navbar-collapse.show .navbar-nav .nav-item:last-child {
                        margin-bottom: 1rem;
                    }

            .cid-qLoVOZvSNo .navbar-collapse.collapsing .navbar-buttons, .cid-qLoVOZvSNo .navbar-collapse.show .navbar-buttons {
                text-align: center;
            }

                .cid-qLoVOZvSNo .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLoVOZvSNo .navbar-collapse.show .navbar-buttons:last-child {
                    margin-bottom: 1rem;
                }

    .cid-qLoVOZvSNo .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        transition-duration: .5s;
        transition-property: opacity,padding,height;
    }

    .cid-qLoVOZvSNo .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-qLoVOZvSNo .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-qLoVOZvSNo .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: .3em;
        vertical-align: middle;
        content: "";
        border-top: .30em solid;
        border-right: .30em solid transparent;
        border-left: .30em solid transparent;
    }
}

@media (min-width: 767px) {
    .cid-qLoVOZvSNo .menu-logo {
        flex-shrink: 0;
    }
}

.cid-qLoVOZvSNo .navbar-collapse {
    flex-basis: auto;
}

.cid-qLoVOZvSNo .nav-link:hover, .cid-qLoVOZvSNo .dropdown-item:hover {
    color: #70c770 !important;
}

.cid-qLkhfqcZnW {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLoLxVBKfA .google-map {
    height: 25rem;
    position: relative;
}

    .cid-qLoLxVBKfA .google-map iframe {
        height: 100%;
        width: 100%;
    }

    .cid-qLoLxVBKfA .google-map [data-state-details] {
        color: #6b6763;
        font-family: Montserrat;
        height: 1.5em;
        margin-top: -0.75em;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        position: absolute;
        text-align: center;
        top: 50%;
        width: 100%;
    }

    .cid-qLoLxVBKfA .google-map[data-state] {
        background: #e9e5dc;
    }

    .cid-qLoLxVBKfA .google-map[data-state="loading"] [data-state-details] {
        display: none;
    }

.cid-qLkhw4iKPp {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLkhw4iKPp .card-box {
        background-color: #ffffff;
        padding: 2rem;
    }

    .cid-qLkhw4iKPp h4 {
        font-weight: 500;
        margin-bottom: 0;
        text-align: left;
    }

    .cid-qLkhw4iKPp p {
        color: #767676;
        text-align: left;
    }

    .cid-qLkhw4iKPp .card-wrapper {
        position: relative;
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
        transition: box-shadow 0.3s;
    }

        .cid-qLkhw4iKPp .card-wrapper:hover {
            box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s;
        }

    .cid-qLkhw4iKPp .card-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
    }

    .cid-qLkhw4iKPp .card-title {
        text-align: left;
    }

    .cid-qLkhw4iKPp P {
        text-align: left;
    }

.cid-qLkhwZLTHy {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f9f9f9;
}

    .cid-qLkhwZLTHy .card-box {
        background-color: #ffffff;
        padding: 2rem;
    }

    .cid-qLkhwZLTHy h4 {
        font-weight: 500;
        margin-bottom: 0;
        text-align: left;
    }

    .cid-qLkhwZLTHy p {
        color: #767676;
        text-align: left;
    }

    .cid-qLkhwZLTHy .card-wrapper {
        position: relative;
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
        transition: box-shadow 0.3s;
    }

        .cid-qLkhwZLTHy .card-wrapper:hover {
            box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s;
        }

    .cid-qLkhwZLTHy .card-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
    }

.cid-qLoKKrxnSU {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #2e2e2e;
}

    .cid-qLoKKrxnSU .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-qLoKKrxnSU .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-qLoKKrxnSU .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-qLoKKrxnSU .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-qLoKKrxnSU .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-qLoKKrxnSU .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-qLoKKrxnSU .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            -webkit-justify-content: flex-end;
        }

            .cid-qLoKKrxnSU .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-qLoKKrxnSU .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-qLoKKrxnSU .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                -webkit-transition: .2s linear;
                transition: .2s linear;
            }

                .cid-qLoKKrxnSU .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-qLoKKrxnSU .media-container-row .social-list {
        justify-content: center;
        -webkit-justify-content: center;
    }
}

.cid-qLoKKrxnSU .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-qLoKKrxnSU .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-qLk6GyTl9s .navbar {
    padding: .5rem 0;
    background: #c1c1c1;
    transition: none;
    min-height: 77px;
}

.cid-qLk6GyTl9s .navbar-dropdown.bg-color.transparent.opened {
    background: #c1c1c1;
}

.cid-qLk6GyTl9s a {
    font-style: normal;
}

.cid-qLk6GyTl9s .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: text-bottom;
    position: relative;
    text-decoration: none;
}

.cid-qLk6GyTl9s .nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0 !important;
    margin: 0rem .65rem !important;
}

.cid-qLk6GyTl9s .nav-item:focus, .cid-qLk6GyTl9s .nav-link:focus {
    outline: none;
}

.cid-qLk6GyTl9s .btn {
    padding: 0.4rem 1.5rem;
    display: inline-flex;
    align-items: center;
}

    .cid-qLk6GyTl9s .btn .mbr-iconfont {
        font-size: 1.6rem;
    }

.cid-qLk6GyTl9s .menu-logo {
    margin-right: auto;
}

    .cid-qLk6GyTl9s .menu-logo .navbar-brand {
        display: flex;
        margin-left: 5rem;
        padding: 0;
        transition: padding .2s;
        min-height: 3.8rem;
        align-items: center;
    }

        .cid-qLk6GyTl9s .menu-logo .navbar-brand .navbar-caption-wrap {
            display: -webkit-flex;
            -webkit-align-items: center;
            align-items: center;
            word-break: break-word;
            min-width: 7rem;
            margin: .3rem 0;
        }

            .cid-qLk6GyTl9s .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
                line-height: 1.2rem !important;
                padding-right: 2rem;
            }

        .cid-qLk6GyTl9s .menu-logo .navbar-brand .navbar-logo {
            font-size: 4rem;
            transition: font-size 0.25s;
        }

            .cid-qLk6GyTl9s .menu-logo .navbar-brand .navbar-logo img {
                display: flex;
            }

            .cid-qLk6GyTl9s .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
                transition: font-size 0.25s;
            }

.cid-qLk6GyTl9s .navbar-toggleable-sm .navbar-collapse {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    padding-right: 5rem;
    width: auto;
}

    .cid-qLk6GyTl9s .navbar-toggleable-sm .navbar-collapse .navbar-nav {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        padding-left: 0;
    }

        .cid-qLk6GyTl9s .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
            -webkit-align-self: center;
            align-self: center;
        }

    .cid-qLk6GyTl9s .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
        padding-left: 0;
        padding-bottom: 0;
    }

.cid-qLk6GyTl9s .dropdown .dropdown-menu {
    background: #c1c1c1;
    display: none;
    position: absolute;
    min-width: 5rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    text-align: left;
}

    .cid-qLk6GyTl9s .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        padding: 0.235em 1.5385em 0.235em 1.5385em !important;
    }

        .cid-qLk6GyTl9s .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

    .cid-qLk6GyTl9s .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
    }

.cid-qLk6GyTl9s .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-qLk6GyTl9s .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    z-index: 1000;
}

.cid-qLk6GyTl9s .navbar.navbar-short {
    min-height: 60px;
    transition: all .2s;
}

    .cid-qLk6GyTl9s .navbar.navbar-short .navbar-toggler-right {
        top: 20px;
    }

    .cid-qLk6GyTl9s .navbar.navbar-short .navbar-logo a {
        font-size: 2.5rem !important;
        line-height: 2.5rem;
        transition: font-size 0.25s;
    }

        .cid-qLk6GyTl9s .navbar.navbar-short .navbar-logo a .mbr-iconfont {
            font-size: 2.5rem !important;
        }

        .cid-qLk6GyTl9s .navbar.navbar-short .navbar-logo a img {
            height: 3rem !important;
        }

    .cid-qLk6GyTl9s .navbar.navbar-short .navbar-brand {
        min-height: 3rem;
    }

.cid-qLk6GyTl9s button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    transition: all .2s;
    top: 1.5rem;
    right: 1rem;
}

    .cid-qLk6GyTl9s button.navbar-toggler:focus {
        outline: none;
    }

    .cid-qLk6GyTl9s button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #ffffff;
    }

        .cid-qLk6GyTl9s button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all .2s;
        }

        .cid-qLk6GyTl9s button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLk6GyTl9s button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qLk6GyTl9s button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all .2s;
        }

.cid-qLk6GyTl9s nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLk6GyTl9s nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
}

.cid-qLk6GyTl9s nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.cid-qLk6GyTl9s nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qLk6GyTl9s .collapsed.navbar-expand {
    flex-direction: column;
}

.cid-qLk6GyTl9s .collapsed .btn {
    display: flex;
}

.cid-qLk6GyTl9s .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

    .cid-qLk6GyTl9s .collapsed .navbar-collapse.collapsing, .cid-qLk6GyTl9s .collapsed .navbar-collapse.show {
        display: block !important;
    }

        .cid-qLk6GyTl9s .collapsed .navbar-collapse.collapsing .navbar-nav, .cid-qLk6GyTl9s .collapsed .navbar-collapse.show .navbar-nav {
            display: block;
            text-align: center;
        }

            .cid-qLk6GyTl9s .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLk6GyTl9s .collapsed .navbar-collapse.show .navbar-nav .nav-item {
                clear: both;
            }

                .cid-qLk6GyTl9s .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLk6GyTl9s .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
                    margin-bottom: 1rem;
                }

        .cid-qLk6GyTl9s .collapsed .navbar-collapse.collapsing .navbar-buttons, .cid-qLk6GyTl9s .collapsed .navbar-collapse.show .navbar-buttons {
            text-align: center;
        }

            .cid-qLk6GyTl9s .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLk6GyTl9s .collapsed .navbar-collapse.show .navbar-buttons:last-child {
                margin-bottom: 1rem;
            }

.cid-qLk6GyTl9s .collapsed button.navbar-toggler {
    display: block;
}

.cid-qLk6GyTl9s .collapsed .navbar-brand {
    margin-left: 1rem !important;
}

.cid-qLk6GyTl9s .collapsed .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
}

.cid-qLk6GyTl9s .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
}

.cid-qLk6GyTl9s .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-qLk6GyTl9s .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-qLk6GyTl9s .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
}

@media (max-width: 991px) {
    .cid-qLk6GyTl9s .navbar-expand {
        flex-direction: column;
    }

    .cid-qLk6GyTl9s img {
        height: 3.8rem !important;
    }

    .cid-qLk6GyTl9s .btn {
        display: flex;
    }

    .cid-qLk6GyTl9s button.navbar-toggler {
        display: block;
    }

    .cid-qLk6GyTl9s .navbar-brand {
        margin-left: 1rem !important;
    }

    .cid-qLk6GyTl9s .navbar-toggleable-sm {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .cid-qLk6GyTl9s .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

        .cid-qLk6GyTl9s .navbar-collapse.collapsing, .cid-qLk6GyTl9s .navbar-collapse.show {
            display: block !important;
        }

            .cid-qLk6GyTl9s .navbar-collapse.collapsing .navbar-nav, .cid-qLk6GyTl9s .navbar-collapse.show .navbar-nav {
                display: block;
                text-align: center;
            }

                .cid-qLk6GyTl9s .navbar-collapse.collapsing .navbar-nav .nav-item, .cid-qLk6GyTl9s .navbar-collapse.show .navbar-nav .nav-item {
                    clear: both;
                }

                    .cid-qLk6GyTl9s .navbar-collapse.collapsing .navbar-nav .nav-item:last-child, .cid-qLk6GyTl9s .navbar-collapse.show .navbar-nav .nav-item:last-child {
                        margin-bottom: 1rem;
                    }

            .cid-qLk6GyTl9s .navbar-collapse.collapsing .navbar-buttons, .cid-qLk6GyTl9s .navbar-collapse.show .navbar-buttons {
                text-align: center;
            }

                .cid-qLk6GyTl9s .navbar-collapse.collapsing .navbar-buttons:last-child, .cid-qLk6GyTl9s .navbar-collapse.show .navbar-buttons:last-child {
                    margin-bottom: 1rem;
                }

    .cid-qLk6GyTl9s .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        transition-duration: .5s;
        transition-property: opacity,padding,height;
    }

    .cid-qLk6GyTl9s .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-qLk6GyTl9s .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-qLk6GyTl9s .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: .3em;
        vertical-align: middle;
        content: "";
        border-top: .30em solid;
        border-right: .30em solid transparent;
        border-left: .30em solid transparent;
    }
}

@media (min-width: 767px) {
    .cid-qLk6GyTl9s .menu-logo {
        flex-shrink: 0;
    }
}

.cid-qLk6GyTl9s .navbar-collapse {
    flex-basis: auto;
}

.cid-qLk6GyTl9s .nav-link:hover, .cid-qLk6GyTl9s .dropdown-item:hover {
    color: #70c770 !important;
}

.cid-qLk6NiOxHA {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLk7yrcYGp {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #232323;
}

    .cid-qLk7yrcYGp .mbr-text, .cid-qLk7yrcYGp blockquote {
        color: #767676;
    }

        .cid-qLk7yrcYGp .mbr-text B {
            color: #149dcc;
        }

.cid-qLuogQJJKA {
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url("../../../assets/images/background2.jpg");
    overflow: hidden;
}

    .cid-qLuogQJJKA .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qLuogQJJKA .mbr-text {
        color: #767676;
    }

    .cid-qLuogQJJKA .card {
        display: flex;
        position: relative;
        justify-content: center;
        box-sizing: border-box;
    }

    .cid-qLuogQJJKA .card-wrapper {
        height: 100%;
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
        transition: box-shadow 0.3s;
    }

        .cid-qLuogQJJKA .card-wrapper .card-img {
            display: block;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }

            .cid-qLuogQJJKA .card-wrapper .card-img .mbr-overlay {
                background-color: #efefef;
                display: none;
                transition: opacity .3s;
            }

            .cid-qLuogQJJKA .card-wrapper .card-img .mbr-section-btn {
                display: flex;
                position: absolute;
                transition: opacity .3s;
                width: 100%;
                margin: auto;
                left: 0;
                justify-content: center;
                align-items: center;
            }

            .cid-qLuogQJJKA .card-wrapper .card-img img {
                width: 100%;
            }

        .cid-qLuogQJJKA .card-wrapper .card-box {
            background-color: #ffffff;
            padding: 0 2rem 2rem 2rem;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

            .cid-qLuogQJJKA .card-wrapper .card-box h4 {
                font-weight: 500;
                margin-bottom: 0;
                padding-top: 2rem;
            }

            .cid-qLuogQJJKA .card-wrapper .card-box p {
                margin-bottom: 0;
                padding-top: 1.5rem;
            }

        .cid-qLuogQJJKA .card-wrapper:hover {
            box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s;
        }

    .cid-qLuogQJJKA .popup-btn .mbr-overlay {
        display: block !important;
        opacity: 0;
    }

    .cid-qLuogQJJKA .popup-btn .mbr-section-btn {
        height: 100%;
        height: 270px !important;
        display: flex !important;
        opacity: 0;
    }

    .cid-qLuogQJJKA .popup-btn:hover .mbr-overlay {
        opacity: .5;
    }

    .cid-qLuogQJJKA .popup-btn:hover .mbr-section-btn {
        opacity: 1;
    }

.cid-qLupE0vkfj {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #ffffff;
}

    .cid-qLupE0vkfj .mbr-text, .cid-qLupE0vkfj blockquote {
        color: #767676;
    }

.cid-qLupEF1ZlT {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLupFwPedX {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

    .cid-qLupFwPedX .mbr-text, .cid-qLupFwPedX blockquote {
        color: #767676;
    }

.cid-qLupGjZ0KI {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLupGMymku {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

    .cid-qLupGMymku .mbr-text, .cid-qLupGMymku blockquote {
        color: #767676;
    }

.cid-qLupHlgK3L {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLupIyVmhF {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

    .cid-qLupIyVmhF .mbr-text, .cid-qLupIyVmhF blockquote {
        color: #767676;
    }

.cid-qLupKV2IKi {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLupLlFefJ {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

    .cid-qLupLlFefJ .mbr-text, .cid-qLupLlFefJ blockquote {
        color: #767676;
    }

.cid-qLupMsA80d {
    margin-top: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/Jumbo.jpg");
}

.cid-qLupMYjgkG {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

    .cid-qLupMYjgkG .mbr-text, .cid-qLupMYjgkG blockquote {
        color: #767676;
    }

.cid-qLut0xS689 {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #2e2e2e;
}

    .cid-qLut0xS689 .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-qLut0xS689 .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-qLut0xS689 .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-qLut0xS689 .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-qLut0xS689 .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-qLut0xS689 .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-qLut0xS689 .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            -webkit-justify-content: flex-end;
        }

            .cid-qLut0xS689 .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-qLut0xS689 .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-qLut0xS689 .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                -webkit-transition: .2s linear;
                transition: .2s linear;
            }

                .cid-qLut0xS689 .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-qLut0xS689 .media-container-row .social-list {
        justify-content: center;
        -webkit-justify-content: center;
    }
}

.cid-qLut0xS689 .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-qLut0xS689 .media-container-row .row-copirayt p {
        width: 100%;
    }

.sticky-container {
    padding: 0px;
    margin: 0px;
    position: fixed;
    right: -130px;
    top: 230px;
    width: 210px;
    z-index: 1100;
}

.sticky li {
    list-style-type: none;
    background-color: #fff;
    color: #efefef;
    height: 43px;
    padding: 0px;
    margin: 0px 0px 1px 0px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

    .sticky li:hover {
        margin-left: -115px;
    }

    .sticky li img {
        float: left;
        margin: 5px 4px;
        margin-right: 5px;
    }

    .sticky li p {
        padding-top: 5px;
        margin: 0px;
        line-height: 16px;
        font-size: 11px;
    }

        .sticky li p a {
            text-decoration: none;
            color: #2C3539;
        }

            .sticky li p a:hover {
                text-decoration: underline;
            }

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family: 'entypo';
        src: url('path to entypo.svg#entypo') format('svg');
    }
}

#ThankYou {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

#Load {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

.current {
    color: #03fa34 !important;
}

.rotato{
    background-color: #eeeeee;
    background-size: 1200px auto;
    padding: 40px 0 40px 0;
}
/* carousel css */
section #scene {
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: left;
    width: 1000px;
    height: 500px;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

    section #scene #left-zone {
        background: #fff;
        height: 75%;
        flex-grow: 0;
        display: flex;
        width: 350px;
        align-items: flex-start;
        justify-content: left;
        text-align: left
    }

        section #scene #left-zone .list {
            display: flex;
            list-style: none;
            align-content: stretch;
            flex-direction: column;
            flex-grow: 1;
            margin: 0;
            padding: 0;
        }

            section #scene #left-zone .list li.item input[type="radio"] {
                display: none;
            }

                section #scene #left-zone .list li.item input[type="radio"] ~ label {
                    display: block;
                    opacity: 0.5;
                    height: 50px;
                    text-align: center;
                    line-height: 50px;
                }

                    section #scene #left-zone .list li.item input[type="radio"] ~ label:first-letter {
                        text-transform: uppercase;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ label:hover {
                        opacity: 0.75;
                        cursor: pointer;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ label.label_RAHS:before {
                        content: " ";
                        display: block;
                        position: absolute;
                        width: 50px;
                        height: 50px;
                        margin-left: 15px;
                        background-image: url("../../images/traus.jpg");
                        background-position: center;
                        background-size: 75% 75%;
                        background-repeat: no-repeat;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ label.label_KARGO:before {
                        content: " ";
                        display: block;
                        position: absolute;
                        width: 50px;
                        height: 50px;
                        margin-left: 15px;
                        background-image: url("../../images/kargosmall.jpg");
                        background-position: center;
                        background-size: 75% 75%;
                        background-repeat: no-repeat;
                    }


                    section #scene #left-zone .list li.item input[type="radio"] ~ label.label_OldMu:before {
                        content: " ";
                        display: block;
                        position: absolute;
                        width: 50px;
                        height: 50px;
                        margin-left: 15px;
                        background-image: url("../../images/old-mutual-288x288.jpg");
                        background-position: center;
                        background-size: 75% 75%;
                        background-repeat: no-repeat;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ label.label_bsmart:before {
                        content: " ";
                        display: block;
                        position: absolute;
                        width: 50px;
                        height: 50px;
                        margin-left: 15px;
                        background-image: url("../../images/bSmart.jpg");
                        background-position: center;
                        background-size: 75% 75%;
                        background-repeat: no-repeat;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ label.label_chiefs:before {
                        content: " ";
                        display: block;
                        position: absolute;
                        width: 50px;
                        height: 50px;
                        margin-left: 15px;
                        background-image: url("../../images/Chiefs.jpg");
                        background-position: center;
                        background-size: 75% 75%;
                        background-repeat: no-repeat;
                    }

                section #scene #left-zone .list li.item input[type="radio"] ~ .content {
                    position: absolute;
                    left: 350px;
                    top: -500px;
                    width: 650px;
                    height: 500px;
                    -webkit-animation-duration: 0.75s;
                    animation-duration: 0.75s;
                    -webkit-animation-name: slideout;
                    animation-name: slideout;
                    -webkit-animation-timing-function: ease-out;
                    animation-timing-function: ease-out;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-direction: column;
                }

                    section #scene #left-zone .list li.item input[type="radio"] ~ .content.content_RAHS .picto {
                        height: 100px;
                        width: 100px;
                        background-image: url("../../images/traus.jpg");
                        background-position: center;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ .content.content_RAHS h2 {
                        color: #D64541;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ .content.content_KARGO .picto {
                        height: 100px;
                        width: 100px;
                        background-image: url("../../images/kargosmall.jpg");
                        background-position: center;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ .content.content_KARGO h2 {
                        color: #D64541;
                    }


                    section #scene #left-zone .list li.item input[type="radio"] ~ .content.content_OldMu .picto {
                        height: 100px;
                        width: 100px;
                        background-image: url("../../images/old-mutual-288x288.jpg");
                        background-position: center;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ .content.content_OldMu h2 {
                        color: #00b16a;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ .content.content_bsmart .picto {
                        height: 100px;
                        width: 100px;
                        background-image: url("../../images/bSmart.jpg");
                        background-position: center;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ .content.content_bsmart h2 {
                        color: #149dcc;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ .content.content_chiefs .picto {
                        height: 100px;
                        width: 100px;
                        background-image: url("../../images/Chiefs.jpg");
                        background-position: center;
                        background-size: cover;
                        background-repeat: no-repeat;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ .content.content_chiefs h2 {
                        color: #f7ed4a;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ .content h2:first-letter {
                        text-transform: uppercase;
                    }

                    section #scene #left-zone .list li.item input[type="radio"] ~ .content p {
                        max-width: 50%;
                        text-align: center;
                    }

                section #scene #left-zone .list li.item input[type="radio"]:checked ~ label {
                    opacity: 1;
                    -webkit-animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
                    animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
                }

                    section #scene #left-zone .list li.item input[type="radio"]:checked ~ label.label_RAHS {
                        color: #D64541;
                        border-right: solid 4px #D64541;
                    }

                    section #scene #left-zone .list li.item input[type="radio"]:checked ~ label.label_KARGO {
                        color: #D64541;
                        border-right: solid 4px #D64541;
                    }

                    section #scene #left-zone .list li.item input[type="radio"]:checked ~ label.label_OldMu {
                        color: #00b16a;
                        border-right: solid 4px #00b16a;
                    }

                    section #scene #left-zone .list li.item input[type="radio"]:checked ~ label.label_bsmart {
                        color: #149dcc;;
                        border-right: solid 4px #149dcc;
                    }

                    section #scene #left-zone .list li.item input[type="radio"]:checked ~ label.label_chiefs {
                        color: #f7ed4a;
                        border-right: solid 4px #f7ed4a;
                    }

                section #scene #left-zone .list li.item input[type="radio"]:checked ~ .content {
                    -webkit-animation-duration: 0.75s;
                    animation-duration: 0.75s;
                    -webkit-animation-name: slidein;
                    animation-name: slidein;
                    -webkit-animation-fill-mode: forwards;
                    animation-fill-mode: forwards;
                    -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
                    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
                }

    section #scene #middle-border {
        background-color: #eee;
        height: 75%;
        flex-grow: 1;
        max-width: 2px;
        z-index: 0;
    }

    section #scene #right-zone {
        background: #fff;
        height: 100%;
        flex-grow: 3;
    }

.bluetext {
   color: #149dcc;
}
    .bluetext:hover {
        color: #136a88;
    }