@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i);





body {
    font-family: Poppins;
    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: 'Poppins', sans-serif;
    font-size: 3.2rem;
}

.display-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
}

.display-4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
}

.display-5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.display-7 {
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
}
/* ---- 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: 2.56rem;
        font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-2 {
        font-size: 1.6rem;
        font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-4 {
        font-size: 0.68rem;
        font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-5 {
        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))));
    }
}
/* Buttons */
.btn {
    position: relative;
    font-weight: 500;
    border-width: 1px;
    font-style: normal;
    letter-spacing: normal;
    margin: .4rem .8rem;
    white-space: normal;
    transition-property: background-color, color, border-color, box-shadow;
    transition-duration: .3s,.3s,.3s,2s;
    transition-timing-function: ease-in-out;
    padding: 0.719rem 1.5rem;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
}

    .btn .mbr-iconfont {
        font-size: 1.6rem;
    }

    .btn:hover:after,
    .btn:focus:after,
    .btn.active:after {
        content: '';
        border: 1px solid;
        border-color: inherit;
        width: 100%;
        height: 100%;
        transition: border-radius 0.3s;
        -webkit-border-radius: 100px;
        border-radius: 100px;
        position: absolute;
        left: 0%;
        top: 0%;
        opacity: 1;
    }

    .btn:hover:after,
    .btn:focus:after,
    .btn.active:after {
        -webkit-animation: 1s btn-animation linear infinite;
        animation: 1s btn-animation linear infinite;
    }

.note-popover .btn:after {
    display: none;
}

@keyframes btn-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0;
    }
}

.btn-sm {
    border: 1px solid;
    font-weight: 500;
    letter-spacing: 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: 0.5rem 1rem;
    border-radius: 3px;
}

.btn-md {
    font-weight: 500;
    letter-spacing: normal;
    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: 0.719rem 1.5rem;
    border-radius: 3px;
}

.btn-lg {
    font-weight: 500;
    letter-spacing: normal;
    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: 0.875rem 1.875rem;
    border-radius: 3px;
}

.bg-primary {
    background-color: #66458e !important;
}

.bg-success {
    background-color: #365c9a !important;
}

.bg-info {
    background-color: #e96188 !important;
}

.bg-warning {
    background-color: #fac769 !important;
}

.bg-danger {
    background-color: #b2ccd2 !important;
}

.btn-primary,
.btn-primary:active,
.btn-primary.active {
    background-color: #66458e !important;
    border-color: #66458e !important;
    color: #ffffff !important;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary.focus {
        color: #ffffff !important;
        background-color: #412c5b !important;
        border-color: #412c5b !important;
    }

    .btn-primary.disabled,
    .btn-primary:disabled {
        color: #ffffff !important;
        background-color: #412c5b !important;
        border-color: #412c5b !important;
    }

.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
    background-color: #ca4336 !important;
    border-color: #ca4336 !important;
    color: #ffffff !important;
}

    .btn-secondary:hover,
    .btn-secondary:focus,
    .btn-secondary.focus {
        color: #ffffff !important;
        background-color: #8e2f25 !important;
        border-color: #8e2f25 !important;
    }

    .btn-secondary.disabled,
    .btn-secondary:disabled {
        color: #ffffff !important;
        background-color: #8e2f25 !important;
        border-color: #8e2f25 !important;
    }

.btn-info,
.btn-info:active,
.btn-info.active {
    background-color: #e96188 !important;
    border-color: #e96188 !important;
    color: #ffffff !important;
}

    .btn-info:hover,
    .btn-info:focus,
    .btn-info.focus {
        color: #ffffff !important;
        background-color: #df1f56 !important;
        border-color: #df1f56 !important;
    }

    .btn-info.disabled,
    .btn-info:disabled {
        color: #ffffff !important;
        background-color: #df1f56 !important;
        border-color: #df1f56 !important;
    }

.btn-success,
.btn-success:active,
.btn-success.active {
    background-color: #365c9a !important;
    border-color: #365c9a !important;
    color: #ffffff !important;
}

    .btn-success:hover,
    .btn-success:focus,
    .btn-success.focus {
        color: #ffffff !important;
        background-color: #223a61 !important;
        border-color: #223a61 !important;
    }

    .btn-success.disabled,
    .btn-success:disabled {
        color: #ffffff !important;
        background-color: #223a61 !important;
        border-color: #223a61 !important;
    }

.btn-warning,
.btn-warning:active,
.btn-warning.active {
    background-color: #fac769 !important;
    border-color: #fac769 !important;
    color: #614003 !important;
}

    .btn-warning:hover,
    .btn-warning:focus,
    .btn-warning.focus {
        color: #614003 !important;
        background-color: #f8ab1f !important;
        border-color: #f8ab1f !important;
    }

    .btn-warning.disabled,
    .btn-warning:disabled {
        color: #614003 !important;
        background-color: #f8ab1f !important;
        border-color: #f8ab1f !important;
    }

.btn-danger,
.btn-danger:active,
.btn-danger.active {
    background-color: #b2ccd2 !important;
    border-color: #b2ccd2 !important;
    color: #ffffff !important;
}

    .btn-danger:hover,
    .btn-danger:focus,
    .btn-danger.focus {
        color: #ffffff !important;
        background-color: #82acb6 !important;
        border-color: #82acb6 !important;
    }

    .btn-danger.disabled,
    .btn-danger:disabled {
        color: #ffffff !important;
        background-color: #82acb6 !important;
        border-color: #82acb6 !important;
    }

.btn-black,
.btn-black:active,
.btn-black.active {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}

    .btn-black:hover,
    .btn-black:focus,
    .btn-black.focus {
        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-white,
.btn-white:active,
.btn-white.active {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #808080 !important;
}

    .btn-white:hover,
    .btn-white:focus,
    .btn-white.focus {
        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-white,
    .btn-white:active,
    .btn-white.active {
        color: #333333 !important;
    }

        .btn-white:hover,
        .btn-white:focus,
        .btn-white.focus {
            color: #333333 !important;
        }

        .btn-white.disabled,
        .btn-white:disabled {
            color: #333333 !important;
        }

.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
    background: none;
    border-color: #352449;
    color: #352449 !important;
}

    .btn-primary-outline:hover,
    .btn-primary-outline:focus,
    .btn-primary-outline.focus {
        color: #ffffff !important;
        background-color: #66458e;
        border-color: #66458e;
    }

    .btn-primary-outline.disabled,
    .btn-primary-outline:disabled {
        color: #ffffff !important;
        background-color: #66458e !important;
        border-color: #66458e !important;
    }

.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
    background: none;
    border-color: #7a2820;
    color: #7a2820 !important;
}

    .btn-secondary-outline:hover,
    .btn-secondary-outline:focus,
    .btn-secondary-outline.focus {
        color: #ffffff !important;
        background-color: #ca4336;
        border-color: #ca4336;
    }

    .btn-secondary-outline.disabled,
    .btn-secondary-outline:disabled {
        color: #ffffff !important;
        background-color: #ca4336 !important;
        border-color: #ca4336 !important;
    }

.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
    background: none;
    border-color: #c81c4d;
    color: #c81c4d !important;
}

    .btn-info-outline:hover,
    .btn-info-outline:focus,
    .btn-info-outline.focus {
        color: #ffffff !important;
        background-color: #e96188;
        border-color: #e96188;
    }

    .btn-info-outline.disabled,
    .btn-info-outline:disabled {
        color: #ffffff !important;
        background-color: #e96188 !important;
        border-color: #e96188 !important;
    }

.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
    background: none;
    border-color: #1c2f4e;
    color: #1c2f4e !important;
}

    .btn-success-outline:hover,
    .btn-success-outline:focus,
    .btn-success-outline.focus {
        color: #ffffff !important;
        background-color: #365c9a;
        border-color: #365c9a;
    }

    .btn-success-outline.disabled,
    .btn-success-outline:disabled {
        color: #ffffff !important;
        background-color: #365c9a !important;
        border-color: #365c9a !important;
    }

.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
    background: none;
    border-color: #f5a208;
    color: #f5a208 !important;
}

    .btn-warning-outline:hover,
    .btn-warning-outline:focus,
    .btn-warning-outline.focus {
        color: #614003 !important;
        background-color: #fac769;
        border-color: #fac769;
    }

    .btn-warning-outline.disabled,
    .btn-warning-outline:disabled {
        color: #614003 !important;
        background-color: #fac769 !important;
        border-color: #fac769 !important;
    }

.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
    background: none;
    border-color: #72a1ac;
    color: #72a1ac !important;
}

    .btn-danger-outline:hover,
    .btn-danger-outline:focus,
    .btn-danger-outline.focus {
        color: #ffffff !important;
        background-color: #b2ccd2;
        border-color: #b2ccd2;
    }

    .btn-danger-outline.disabled,
    .btn-danger-outline:disabled {
        color: #ffffff !important;
        background-color: #b2ccd2 !important;
        border-color: #b2ccd2 !important;
    }

.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
    background: none;
    border-color: #000000;
    color: #000000 !important;
}

    .btn-black-outline:hover,
    .btn-black-outline:focus,
    .btn-black-outline.focus {
        color: #ffffff !important;
        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 !important;
}

    .btn-white-outline:hover,
    .btn-white-outline:focus,
    .btn-white-outline.focus {
        color: #333333 !important;
        background-color: #ffffff;
        border-color: #ffffff;
    }

.text-primary {
    color: #66458e !important;
}

.text-secondary {
    color: #ca4336 !important;
}

.text-success {
    color: #365c9a !important;
}

.text-info {
    color: #e96188 !important;
}

.text-warning {
    color: #fac769 !important;
}

.text-danger {
    color: #b2ccd2 !important;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #352449 !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #7a2820 !important;
}

a.text-success:hover,
a.text-success:focus {
    color: #1c2f4e !important;
}

a.text-info:hover,
a.text-info:focus {
    color: #c81c4d !important;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #f5a208 !important;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #72a1ac !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: #365c9a;
}

.alert-info {
    background-color: #e96188;
}

.alert-warning {
    background-color: #fac769;
}

.alert-danger {
    background-color: #b2ccd2;
}

.mbr-section-btn a.btn:not(.btn-form) {
    border-radius: 100px;
    transition-property: background-color, color, border-color, box-shadow;
    transition-duration: .3s,.3s,.3s,.8s;
    transition-timing-function: ease-in-out;
}

    .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;
    }

.mbr-gallery-filter li a {
    border-radius: 100px !important;
}

.mbr-gallery-filter li.active .btn {
    background-color: #66458e;
    border-color: #66458e;
    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: #66458e;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
    color: #a68cc7;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
    color: #7e9ed2;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
    color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
    opacity: 0 !important;
}

#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: 1rem;
    line-height: 1.43;
    min-height: 3.5em;
    padding: 1.07em .5em;
}

    .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: #66458e;
    border-width: 3px;
}

ul,
ol,
pre,
blockquote {
    margin-bottom: 2.3125rem;
}

pre {
    background: #f4f4f4;
    padding: 10px 24px;
    white-space: pre-wrap;
}

.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 2rem;
}

    .mbr-form .input-group-btn button[type="submit"]:hover {
        box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
    }

.special-form {
    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;
    padding: 0;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    position: relative;
    border: 2px solid #c0a375;
    border-color: #66458e;
    color: #232323;
    cursor: pointer;
    border-radius: 100px;
}

    .btn-social i {
        top: 0;
        line-height: 44px;
        width: 44px;
    }

    .btn-social:hover {
        color: #fff;
        background: #66458e;
    }

    .btn-social + .btn {
        margin-left: .1rem;
    }

.input-group-btn button[type="submit"] {
    border-radius: 100px !important;
}

.input-group-btn a.btn {
    border-radius: 100px !important;
}
/* Footer */
.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-qInS0EFrZB .dropdown-item:before {
    font-family: MobiriseIcons !important;
    content: '\e966';
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    margin-right: 0.5rem;
    line-height: 1;
    font-size: inherit;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    transform: scale(0, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-qInS0EFrZB .nav-item,
.cid-qInS0EFrZB .nav-link,
.cid-qInS0EFrZB .navbar-caption {
    font-weight: normal;
}

    .cid-qInS0EFrZB .nav-item:focus,
    .cid-qInS0EFrZB .nav-link:focus {
        outline: none;
    }

@media (min-width: 992px) {
    .cid-qInS0EFrZB .dropdown-item:hover:before {
        transform: scale(1, 1);
        width: 16px;
    }
}

.cid-qInS0EFrZB .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

    .cid-qInS0EFrZB .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-qInS0EFrZB .dropdown .dropdown-menu .dropdown-item:hover {
        padding-right: 2.5385em;
        padding-left: 3.5385em;
    }

        .cid-qInS0EFrZB .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
            transform: scale(0, 1);
        }

    .cid-qInS0EFrZB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-left: -1.8rem;
        padding-right: 1rem;
        font-size: inherit;
    }

        .cid-qInS0EFrZB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out;
        }

.cid-qInS0EFrZB .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-qInS0EFrZB .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-qInS0EFrZB .navbar {
    min-height: 77px;
    transition: all .3s;
    background: #365c9a;
    background: none;
}

    .cid-qInS0EFrZB .navbar.opened {
        transition: all .3s;
        background: #365c9a !important;
    }

    .cid-qInS0EFrZB .navbar .dropdown-item {
        padding: .235rem 1.5rem;
    }

    .cid-qInS0EFrZB .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-qInS0EFrZB .navbar.collapsed .nav-item .nav-link::before {
        display: none;
    }

    .cid-qInS0EFrZB .navbar.collapsed.opened .dropdown-menu {
        top: 0;
    }

    .cid-qInS0EFrZB .navbar.collapsed .dropdown-menu {
        background: transparent !important;
    }

        .cid-qInS0EFrZB .navbar.collapsed .dropdown-menu .dropdown-submenu {
            left: 0 !important;
        }

        .cid-qInS0EFrZB .navbar.collapsed .dropdown-menu .dropdown-item:after {
            right: auto;
        }

        .cid-qInS0EFrZB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
            margin-left: .25rem;
            border-top: 0.35em solid;
            border-right: 0.35em solid transparent;
            border-left: 0.35em solid transparent;
            border-bottom: 0;
            top: 55%;
        }

    .cid-qInS0EFrZB .navbar.collapsed ul.navbar-nav li {
        margin: auto;
    }

    .cid-qInS0EFrZB .navbar.collapsed .dropdown-menu .dropdown-item {
        padding: .25rem 1.5rem;
        text-align: center;
    }

    .cid-qInS0EFrZB .navbar.collapsed .icons-menu {
        padding-left: 0;
        padding-top: .5rem;
        padding-bottom: .5rem;
    }

@media (max-width: 991px) {
    .cid-qInS0EFrZB .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-qInS0EFrZB .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-qInS0EFrZB .navbar .dropdown-menu {
        background: transparent !important;
    }

        .cid-qInS0EFrZB .navbar .dropdown-menu .dropdown-submenu {
            left: 0 !important;
        }

        .cid-qInS0EFrZB .navbar .dropdown-menu .dropdown-item:after {
            right: auto;
        }

        .cid-qInS0EFrZB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
            margin-left: .25rem;
            border-top: 0.35em solid;
            border-right: 0.35em solid transparent;
            border-left: 0.35em solid transparent;
            border-bottom: 0;
            top: 55%;
        }

    .cid-qInS0EFrZB .navbar .navbar-logo img {
        height: 3.8rem !important;
    }

    .cid-qInS0EFrZB .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-qInS0EFrZB .navbar .dropdown-menu .dropdown-item {
        padding: .25rem 1.5rem !important;
        text-align: center;
    }

    .cid-qInS0EFrZB .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
    }

    .cid-qInS0EFrZB .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-qInS0EFrZB .navbar .icons-menu {
        padding-left: 0;
        padding-top: .5rem;
        padding-bottom: .5rem;
    }
}

.cid-qInS0EFrZB .navbar.navbar-short {
    background: #365c9a !important;
    min-height: 60px;
}

    .cid-qInS0EFrZB .navbar.navbar-short .navbar-logo img {
        height: 3rem !important;
    }

    .cid-qInS0EFrZB .navbar.navbar-short .navbar-brand {
        padding: 0;
    }

.cid-qInS0EFrZB .navbar-brand {
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 0;
    transition: all .3s;
    word-break: break-word;
    z-index: 1;
}

    .cid-qInS0EFrZB .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-qInS0EFrZB .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-qInS0EFrZB .dropdown-item.active,
.cid-qInS0EFrZB .dropdown-item:active {
    background-color: transparent;
}

.cid-qInS0EFrZB .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-qInS0EFrZB .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-qInS0EFrZB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-qInS0EFrZB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #365c9a;
}

    .cid-qInS0EFrZB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-qInS0EFrZB .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-qInS0EFrZB ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-qInS0EFrZB .navbar-buttons {
    text-align: center;
}

.cid-qInS0EFrZB button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    align-self: center;
}

    .cid-qInS0EFrZB button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #ffffff;
    }

        .cid-qInS0EFrZB button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all .2s;
        }

        .cid-qInS0EFrZB button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qInS0EFrZB button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all .15s;
        }

        .cid-qInS0EFrZB button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all .2s;
        }

.cid-qInS0EFrZB nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qInS0EFrZB nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
}

.cid-qInS0EFrZB nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.cid-qInS0EFrZB nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-qInS0EFrZB .navbar-dropdown {
    padding: .5rem 1rem;
    position: fixed;
}

.cid-qInS0EFrZB a.nav-link {
    justify-content: center;
    display: flex;
    align-items: center;
}

.cid-qInS0EFrZB .mbr-iconfont {
    font-size: 1rem;
    color: #ffffff;
    display: inline-flex;
}

    .cid-qInS0EFrZB .mbr-iconfont:before {
        padding: .5rem;
        border: 1px solid;
        border-radius: 100px;
    }

.cid-qInS0EFrZB .soc-item {
    margin: .5rem .3rem;
}

.cid-qInS0EFrZB .icons-menu {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    text-align: center;
    align-items: center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-qInS0EFrZB .navbar {
        height: 77px;
    }

        .cid-qInS0EFrZB .navbar.opened {
            height: auto;
        }

    .cid-qInS0EFrZB .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-qInONdDger {
    background: linear-gradient(to right, #00ac6d 0%, #00ac6d 30%, #4e84c2 30%, #4e84c2 100%);
    overflow: hidden !important;
}

    .cid-qInONdDger .animated-element {
        color: #efefef;
    }

    .cid-qInONdDger .img-block {
        align-self: center;
    }

    .cid-qInONdDger .mbr-section-subtitle {
        color: #efefef;
    }

@media (min-width: 992px) {
    .cid-qInONdDger .img-block {
        padding-right: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-qInONdDger .mbr-figure {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .cid-qInONdDger {
        background: #4e84c2;
    }

        .cid-qInONdDger .img-block {
            padding-bottom: 2rem;
        }
}

.cid-qInUvdqnAd {
    padding-top: 90px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-qInUvdqnAd .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qInUvdqnAd .mbr-section-title {
        text-align: left;
    }

.cid-qInUtxM9Uk {
    padding-top: 15px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

    .cid-qInUtxM9Uk .mbr-shop {
        display: table;
        width: 100%;
    }

        .cid-qInUtxM9Uk .mbr-shop .row {
            margin: 0;
        }

        .cid-qInUtxM9Uk .mbr-shop .btn-sm {
            margin: 0.2rem 0.2rem;
        }

        .cid-qInUtxM9Uk .mbr-shop .shoppingcart-icons {
            z-index: 105 !important;
        }

        .cid-qInUtxM9Uk .mbr-shop .shop-title {
            margin-bottom: 18px;
            padding-left: 25px;
            padding-right: 25px;
            display: inline-block;
            max-width: 80%;
        }

        .cid-qInUtxM9Uk .mbr-shop .sidebar-title {
            line-height: 25px;
            margin-bottom: 1.8rem;
        }

        .cid-qInUtxM9Uk .mbr-shop .shopItemsModal_wraper {
            position: fixed;
            display: none;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background-color: rgba(87, 87, 87, 0.4);
            top: 0;
            left: 0;
            cursor: pointer;
            z-index: 1040;
        }

        .cid-qInUtxM9Uk .mbr-shop .card-description {
            cursor: text;
            display: none;
        }

        .cid-qInUtxM9Uk .mbr-shop .image-modal {
            padding-left: 0;
            padding-right: 0;
            text-align: center;
        }

            .cid-qInUtxM9Uk .mbr-shop .image-modal img {
                max-width: 100%;
                max-height: 75vh;
            }

        .cid-qInUtxM9Uk .mbr-shop .hide-modal {
            display: none;
        }

        .cid-qInUtxM9Uk .mbr-shop .shopItemsModal {
            cursor: default;
            padding: 50px;
            width: 1000px;
            max-width: 100%;
            background-color: #ffffff;
            z-index: 2000;
            overflow: auto;
            position: fixed;
        }

            .cid-qInUtxM9Uk .mbr-shop .shopItemsModal p {
                margin-bottom: 0;
            }

            .cid-qInUtxM9Uk .mbr-shop .shopItemsModal ul {
                margin-bottom: 0;
            }

            .cid-qInUtxM9Uk .mbr-shop .shopItemsModal .card-description {
                display: block;
                width: 100%;
            }

            .cid-qInUtxM9Uk .mbr-shop .shopItemsModal .close-modal {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 50px;
                height: 4px;
                background-color: red;
                transform: rotate(45deg);
                -webkit-transform: rotate(45deg);
            }

                .cid-qInUtxM9Uk .mbr-shop .shopItemsModal .close-modal:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    right: 0;
                    width: 50px;
                    height: 4px;
                    background-color: red;
                    transform: rotate(-45deg);
                    -webkit-transform: rotate(-45deg);
                }

        .cid-qInUtxM9Uk .mbr-shop .test-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .cid-qInUtxM9Uk .mbr-shop .filter-by-pu,
        .cid-qInUtxM9Uk .mbr-shop .filter-by-pd,
        .cid-qInUtxM9Uk .mbr-shop .filter-by-d {
            display: inline-block;
            margin-right: 3px;
        }

        .cid-qInUtxM9Uk .mbr-shop .sort-buttons {
            padding-bottom: 1rem;
            margin-right: 13px;
            text-align: right;
        }

        .cid-qInUtxM9Uk .mbr-shop .galleryItem:before {
            width: 0 !important;
            height: 0 !important;
        }

        .cid-qInUtxM9Uk .mbr-shop .modal-dialog {
            max-width: 700px;
        }

        .cid-qInUtxM9Uk .mbr-shop .mbr-gallery-item {
            left: 0 !important;
            top: 0 !important;
            vertical-align: top;
            position: relative !important;
            transform: none !important;
            padding: 15px;
            width: 33%;
        }

        .cid-qInUtxM9Uk .mbr-shop .galleryItem h4,
        .cid-qInUtxM9Uk .mbr-shop .carousel-item h4 {
            font-style: normal;
            line-height: 1;
            text-transform: none;
            letter-spacing: -1px;
            word-spacing: 0;
            margin-bottom: 0.3rem;
            padding-top: 15px;
            transition: color 0.5s;
        }

        .cid-qInUtxM9Uk .mbr-shop .galleryItem h5,
        .cid-qInUtxM9Uk .mbr-shop .carousel-item h5 {
            font-style: italic;
            font-weight: 400;
            line-height: 22.36px;
            text-transform: none;
            letter-spacing: 0px;
            word-spacing: 0;
        }

        .cid-qInUtxM9Uk .mbr-shop .galleryItem p,
        .cid-qInUtxM9Uk .mbr-shop .carousel-item p {
            font-style: italic;
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0px;
            word-spacing: 0px;
            text-align: center;
            display: inline;
        }

        .cid-qInUtxM9Uk .mbr-shop .item-button {
            text-align: center;
        }

        .cid-qInUtxM9Uk .mbr-shop .modalButton {
            display: inline-block;
            float: right;
            margin-right: 10px;
        }

            .cid-qInUtxM9Uk .mbr-shop .modalButton.btn-success {
                right: 15%;
            }

        .cid-qInUtxM9Uk .mbr-shop .sidebar {
            margin-top: 30px;
            position: relative;
        }

        .cid-qInUtxM9Uk .mbr-shop .sidebar-block {
            position: relative;
        }

        .cid-qInUtxM9Uk .mbr-shop .sidebar-background:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 102%;
            background-color: #f7f7f7;
            top: -20px;
            right: 3px;
        }

        .cid-qInUtxM9Uk .mbr-shop .bestsellers {
            padding-left: 0;
            padding-right: 0;
            position: relative;
            margin-bottom: 20px;
        }

            .cid-qInUtxM9Uk .mbr-shop .bestsellers .onsale {
                top: -15px;
            }

            .cid-qInUtxM9Uk .mbr-shop .bestsellers .price-block {
                padding-top: 5px;
                text-align: left;
                line-height: 1;
            }

            .cid-qInUtxM9Uk .mbr-shop .bestsellers .mbr-gallery-item {
                width: 100%;
            }

                .cid-qInUtxM9Uk .mbr-shop .bestsellers .mbr-gallery-item img {
                    width: 80px;
                    float: left;
                    margin-right: 20px;
                }

                .cid-qInUtxM9Uk .mbr-shop .bestsellers .mbr-gallery-item h4 {
                    text-align: left;
                    padding-bottom: 5px;
                    line-height: 1;
                }

                .cid-qInUtxM9Uk .mbr-shop .bestsellers .mbr-gallery-item h5 {
                    text-align: left;
                    display: none;
                }

                .cid-qInUtxM9Uk .mbr-shop .bestsellers .mbr-gallery-item p {
                    text-align: left;
                }

            .cid-qInUtxM9Uk .mbr-shop .bestsellers .btn {
                display: none;
            }

        .cid-qInUtxM9Uk .mbr-shop .bestsellers-img {
            display: inline-block;
            width: 80px;
            height: 80px;
            overflow: hidden;
        }

        .cid-qInUtxM9Uk .mbr-shop .bestsellers-title {
            display: inline-block;
        }

        .cid-qInUtxM9Uk .mbr-shop .onsale {
            position: absolute;
            display: block;
            transition: color .3s ease;
            text-align: center;
            z-index: 95;
            top: 30px;
            left: 30px;
            line-height: 17px;
            padding: 5px 15px 5px;
            background: #365c9a;
            border-radius: 30px;
            font-weight: 400;
            font-style: normal;
            text-transform: none;
            letter-spacing: 0px;
            color: #ffffff;
        }

        .cid-qInUtxM9Uk .mbr-shop .mbr-gallery-item__hided {
            display: none;
        }

            .cid-qInUtxM9Uk .mbr-shop .mbr-gallery-item__hided h4,
            .cid-qInUtxM9Uk .mbr-shop .mbr-gallery-item__hided h5,
            .cid-qInUtxM9Uk .mbr-shop .mbr-gallery-item__hided p {
                display: none;
            }

            .cid-qInUtxM9Uk .mbr-shop .mbr-gallery-item__hided .btn {
                display: none;
            }

        .cid-qInUtxM9Uk .mbr-shop .galleryItem .price-block {
            display: block;
        }

            .cid-qInUtxM9Uk .mbr-shop .galleryItem .price-block span {
                font-style: normal;
                line-height: 1;
                text-transform: none;
                letter-spacing: -1px;
                word-spacing: 0;
            }

        .cid-qInUtxM9Uk .mbr-shop .mbr-gallery-filter {
            padding-left: 0;
            text-align: left;
            padding-top: 0;
        }

            .cid-qInUtxM9Uk .mbr-shop .mbr-gallery-filter ul li.active {
                background-color: transparent;
                font-weight: bold;
            }

            .cid-qInUtxM9Uk .mbr-shop .mbr-gallery-filter ul li:hover {
                background-color: transparent;
            }

        .cid-qInUtxM9Uk .mbr-shop .range-slider {
            padding-bottom: 25px;
        }

        .cid-qInUtxM9Uk .mbr-shop .filter-cost {
            display: block;
            vertical-align: middle;
            max-width: 250px;
            text-align: left;
            position: relative;
            margin-bottom: 30px;
        }

            .cid-qInUtxM9Uk .mbr-shop .filter-cost p {
                margin-bottom: 10px;
                font-size: 16px;
                line-height: 21px;
                color: #666666;
                font-weight: bold;
            }

        .cid-qInUtxM9Uk .mbr-shop .price-controls {
            position: relative;
            height: 36px;
            margin-bottom: 10px;
            border-radius: 2px;
            font-size: 0;
        }

            .cid-qInUtxM9Uk .mbr-shop .price-controls label {
                display: inline-block;
                width: 50%;
                font-size: 14px;
                line-height: 32px;
                color: #666666;
                font-weight: normal;
                cursor: pointer;
                margin-bottom: 0;
            }

            .cid-qInUtxM9Uk .mbr-shop .price-controls input {
                width: 100%;
                background-color: transparent;
                border: none;
                line-height: 31px;
                height: 31px;
                text-align: center;
                -webkit-user-select: none;
                -ms-user-select: none;
                user-select: none;
            }

        .cid-qInUtxM9Uk .mbr-shop .range-controls {
            position: relative;
        }

            .cid-qInUtxM9Uk .mbr-shop .range-controls .scale {
                width: 100%;
                height: 5px;
                background-color: rgba(190, 190, 190, 0.3);
            }

            .cid-qInUtxM9Uk .mbr-shop .range-controls .bar {
                margin-left: 0;
                width: 100%;
                height: 5px;
                background-color: #66458e;
            }

        .cid-qInUtxM9Uk .mbr-shop .toggle {
            -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
            position: absolute;
            top: -9px;
            width: 7px;
            height: 7px;
            border: 8px solid #ffffff;
            border-radius: 100%;
            box-sizing: content-box;
            background-color: #66458e;
            cursor: pointer;
        }

            .cid-qInUtxM9Uk .mbr-shop .toggle:hover,
            .cid-qInUtxM9Uk .mbr-shop .toggle:active {
                background-color: #c0a375;
            }

        .cid-qInUtxM9Uk .mbr-shop .min-toggle {
            left: 0;
        }

        .cid-qInUtxM9Uk .mbr-shop .max-toggle {
            right: 0;
        }

        .cid-qInUtxM9Uk .mbr-shop .hided-by-price {
            display: none;
        }

        .cid-qInUtxM9Uk .mbr-shop .text-modal {
            padding-right: 30px;
            padding-left: 30px;
        }

            .cid-qInUtxM9Uk .mbr-shop .text-modal .item-button {
                text-align: left !important;
            }

            .cid-qInUtxM9Uk .mbr-shop .text-modal .price-block {
                line-height: 1;
                border-bottom: 1px dotted #d6d6d6;
            }

                .cid-qInUtxM9Uk .mbr-shop .text-modal .price-block p {
                    display: inline;
                }

                .cid-qInUtxM9Uk .mbr-shop .text-modal .price-block span {
                    display: inline;
                    font-weight: 700;
                    padding: 10px 0 20px 0;
                }

            .cid-qInUtxM9Uk .mbr-shop .text-modal .card-description {
                padding-top: 20px;
                display: block;
                font-size: 16px;
                line-height: 24px;
                margin-bottom: 50px;
            }

        .cid-qInUtxM9Uk .mbr-shop .modal-control-panel {
            padding-right: 0;
        }

        .cid-qInUtxM9Uk .mbr-shop .modal-cb {
            display: inline-block;
            float: right;
            margin-right: 10px;
            margin-left: 10px;
        }

        .cid-qInUtxM9Uk .mbr-shop .shopItemsModalBg {
            width: 100%;
            height: 100%;
        }

        .cid-qInUtxM9Uk .mbr-shop .close-modal-wrapper {
            cursor: pointer;
            width: 40px;
            height: 40px;
            position: absolute;
            top: 0;
            right: 0;
        }

            .cid-qInUtxM9Uk .mbr-shop .close-modal-wrapper:after {
                content: "";
                position: absolute;
                width: 40px;
                height: 3px;
                background-color: #cccccc;
                top: 50%;
                right: 5%;
                transform: rotate(-45deg);
                -webkit-transform: rotate(-45deg);
            }

            .cid-qInUtxM9Uk .mbr-shop .close-modal-wrapper:before {
                content: "";
                position: absolute;
                width: 3px;
                height: 40px;
                background-color: #cccccc;
                right: 50%;
                top: 5%;
                transform: rotate(-45deg);
                -webkit-transform: rotate(-45deg);
            }

        .cid-qInUtxM9Uk .mbr-shop .closeModal {
            position: absolute;
            top: 0;
            right: 0;
        }

        .cid-qInUtxM9Uk .mbr-shop .galleryItem .sidebar_wraper {
            text-align: center;
            padding-bottom: 15px;
        }

        .cid-qInUtxM9Uk .mbr-shop .shopItemsModal .sidebar_wraper {
            text-align: left;
        }

        .cid-qInUtxM9Uk .mbr-shop .item_overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 99;
            background: transparent;
        }

        .cid-qInUtxM9Uk .mbr-shop .style_overlay {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .cid-qInUtxM9Uk .mbr-shop .price-range {
            display: none;
        }

        .cid-qInUtxM9Uk .mbr-shop .price-range-reset {
            display: none;
        }

        .cid-qInUtxM9Uk .mbr-shop .bestsellers .item-button {
            display: none !important;
        }

        .cid-qInUtxM9Uk .mbr-shop .range-slider h4 {
            margin-bottom: 1.8rem;
        }

        .cid-qInUtxM9Uk .mbr-shop .mbr-gallery-filter ul {
            padding-left: 0px;
            display: inline-block;
            list-style: none;
            margin-bottom: 0px;
        }

        .cid-qInUtxM9Uk .mbr-shop .categories:after {
            content: "";
            display: table;
            clear: both;
        }

@media (min-width: 767px) and (max-width: 1100px) {
    .cid-qInUtxM9Uk .mbr-shop .col-md-9 {
        width: 100%;
    }

    .cid-qInUtxM9Uk .mbr-shop .col-md-3 {
        width: 100%;
    }

    .cid-qInUtxM9Uk .mbr-shop .sidebar-background:after {
        top: 0;
    }

    .cid-qInUtxM9Uk .mbr-shop .bestseller-block {
        width: 100%;
        margin: 0;
        display: inline-block;
        float: left;
        padding-top: 15px;
    }

    .cid-qInUtxM9Uk .mbr-shop .range-slider {
        width: 49%;
        margin: 0;
        display: inline-block;
        float: right;
        padding-top: 15px;
    }

    .cid-qInUtxM9Uk .mbr-shop .bestsellers {
        width: 100%;
    }

        .cid-qInUtxM9Uk .mbr-shop .bestsellers .mbr-gallery-item {
            width: 49%;
            display: inline-block;
        }

    .cid-qInUtxM9Uk .mbr-shop .sidebar-categories {
        width: 49%;
        margin: 0;
        display: inline-block;
        padding-top: 15px;
    }

    .cid-qInUtxM9Uk .mbr-shop .price-range {
        max-width: 250px;
        text-align: center;
    }

    .cid-qInUtxM9Uk .clearfix:after {
        content: "";
        display: table;
        clear: both;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cid-qInUtxM9Uk .mbr-shop .mbr-gallery-item {
        width: 33%;
    }
}

@media (max-width: 500px) {
    .cid-qInUtxM9Uk .mbr-shop .shopItemsModal {
        padding: 50px 10px 10px 10px;
    }

    .cid-qInUtxM9Uk .mbr-shop .shop-title {
        max-width: 100%;
    }

    .cid-qInUtxM9Uk .mbr-shop .mbr-gallery-item {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .cid-qInUtxM9Uk .mbr-shop .sort-buttons {
        text-align: center;
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .cid-qInUtxM9Uk .mbr-shop .image-modal {
        text-align: center;
    }

        .cid-qInUtxM9Uk .mbr-shop .image-modal img {
            max-height: 50vh;
            width: auto;
            max-width: 100%;
        }

    .cid-qInUtxM9Uk .mbr-shop .shopItemsModal {
        top: 15%;
        bottom: 70px;
        left: 10%;
        width: 80%;
    }

        .cid-qInUtxM9Uk .mbr-shop .shopItemsModal .image-modal {
            padding-right: 0;
        }

    .cid-qInUtxM9Uk .mbr-shop .sidebar-background:after {
        top: -1%;
    }
}

@media (max-width: 1100px) {
    .cid-qInUtxM9Uk .mbr-shop .shopItemsModal {
        max-height: 85vh;
        width: 90%;
        left: 5%;
        margin-left: 0;
    }

    .cid-qInUtxM9Uk .mbr-shop .sort-buttons {
        margin-right: 21px;
    }

    .cid-qInUtxM9Uk .mbr-shop .sidebar-background:after {
        right: 0;
        width: 100%;
    }

    .cid-qInUtxM9Uk .mbr-shop .text-modal .card-description {
        width: 100%;
    }

    .cid-qInUtxM9Uk .mbr-shop .text-modal .price-block {
        width: 100%;
    }

    .cid-qInUtxM9Uk .mbr-shop .text-modal h4 {
        padding-top: 30px;
    }
}

.cid-qInUtxM9Uk .shopItemsModal_wraper .mbr-section-btn {
    display: block !important;
}

.cid-qInUtxM9Uk .range-slider .mbr-section-btn {
    margin: 0;
}

.cid-qInUtxM9Uk .oldprice {
    color: #767676;
    padding-left: .8rem !important;
    text-decoration: line-through;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-qInUtxM9Uk .shopItemsModal.row {
        position: absolute !important;
        top: calc(50% - 300px) !important;
        left: calc(50% - 500px) !important;
    }

    .cid-qInUtxM9Uk .range-controls {
        display: block !important;
    }
}

.cid-qInUtxM9Uk .mbr-gallery-item .sidebar_wraper {
    background-color: #efefef;
    padding-left: 15px;
    padding-right: 15px;
}

.cid-qInUtxM9Uk .sidebar .sidebar_wraper {
    background-color: #f7f7f7;
}

.cid-qInUtxM9Uk .mbr-gallery-item .price-block {
    text-align: left;
}

.cid-qInUtxM9Uk .big-container {
    max-width: 1326px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.cid-qInUtxM9Uk .mbr-shop .mbr-gallery-filter ul li {
    padding: 7px 16px 5px;
    margin: 4px 8px 4px 0;
    border: 1px solid;
    border-radius: 100px;
}

.cid-qInUtxM9Uk .mbr-gallery-item .sidebar_wraper .item-title {
    text-align: left;
    font-weight: 700;
}

.cid-qInUtxM9Uk .sidebar {
    display: flex;
    flex-direction: column;
}

.cid-qInUtxM9Uk .range-slider {
    order: -1;
}

.cid-qInUtxM9Uk .sidebar-categories {
    order: -1;
}

.cid-qInUtxM9Uk .categories {
    padding: 0;
}

.cid-qInUtxM9Uk .sidebar-title {
    font-weight: bold;
}

.cid-qInUtxM9Uk .item-title {
    color: #232323;
}

.cid-qInUtxM9Uk .shop-item-price,
.cid-qInUtxM9Uk .price-block {
    color: #232323;
}

.cid-qIo17qknJy {
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url("../../images/jakob-owens-102203-1920x1280.jpg");
}

    .cid-qIo17qknJy .play {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 0 10px 15px;
        border-color: transparent transparent transparent #ffffff;
        margin-right: -3px;
    }

    .cid-qIo17qknJy .mbr-media {
        display: inline-block;
    }

    .cid-qIo17qknJy .modalWindow {
        position: fixed;
        z-index: 5000;
        left: 0;
        top: 0;
        background-color: rgba(61, 61, 61, 0.65);
        width: 100%;
        height: 100%;
    }

        .cid-qIo17qknJy .modalWindow .modalWindow-container {
            display: table-cell;
            vertical-align: middle;
        }

        .cid-qIo17qknJy .modalWindow .modalWindow-video {
            height: calc(44.9943757vw);
            width: 80vw;
            margin: 0 auto;
        }

    .cid-qIo17qknJy a.close {
        position: absolute;
        right: 4vw;
        top: 4vh;
        color: #ffffff;
        z-index: 5000000;
        font-size: 37px;
        background: #000;
        padding: 20px;
        border-radius: 50%;
    }

        .cid-qIo17qknJy a.close:hover {
            color: #ffffff;
        }

    .cid-qIo17qknJy .btn-play {
        position: relative;
        background: #365c9a;
        width: 60px;
        height: 60px;
        border: 1px solid #365c9a;
        -webkit-border-radius: 50px;
        border-radius: 50px;
        text-align: center;
        line-height: 60px;
        font-size: 27px;
        cursor: pointer;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        -webkit-transition: 0.15s ease-in-out;
        transition: 0.15s ease-in-out;
        -webkit-transition-property: color, background, border-color;
        transition-property: color, background, border-color;
    }

        .cid-qIo17qknJy .btn-play:after {
            content: '';
            border: 1px solid;
            border-color: inherit;
            width: 150%;
            height: 150%;
            -webkit-border-radius: 50px;
            border-radius: 50px;
            position: absolute;
            left: -25%;
            top: -25%;
            opacity: 1;
            -webkit-animation: 1s play-video linear infinite;
            animation: 1s play-video linear infinite;
        }

@keyframes play-video {
    0% {
        -webkit-transform: scale(0.68);
        transform: scale(0.68);
    }

    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

.cid-qIo17qknJy H1 {
    color: #232323;
}

.cid-qIo17qknJy B {
    color: #232323;
}

.cid-qIo17qknJy P {
    color: #232323;
}

.cid-qIo17qknJy .icon-description {
    color: #e96188;
}

    .cid-qIo17qknJy .icon-description SPAN {
        color: #365c9a;
    }

.cid-qInZUFhVFJ {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #ffffff;
}

    .cid-qInZUFhVFJ .mbr-section-subtitle {
        color: #767676;
        text-align: left;
        line-height: 1.6;
    }

    .cid-qInZUFhVFJ .image-element {
        position: relative;
        z-index: 0;
        overflow: hidden;
    }

        .cid-qInZUFhVFJ .image-element img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

    .cid-qInZUFhVFJ .wrapper {
        padding: 2rem 1rem 1rem 1rem;
    }

    .cid-qInZUFhVFJ .card-overlay {
        display: none;
        background: #92b5d5;
    }

@media (min-width: 768px) {
    .cid-qInZUFhVFJ .image-element:hover .card-overlay {
        opacity: 0.7;
        border-bottom-right-radius: 7rem;
    }

    .cid-qInZUFhVFJ .image-element:hover .wrapper {
        padding-top: 0;
        border-bottom-right-radius: 7rem;
    }

        .cid-qInZUFhVFJ .image-element:hover .wrapper .collapsed-content {
            transition: opacity 0.5s, max-height 3s;
            opacity: 1;
            max-height: 999px;
            border-bottom-right-radius: 7rem;
        }

            .cid-qInZUFhVFJ .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
                border-bottom-right-radius: 7rem;
            }

    .cid-qInZUFhVFJ .image-element.popup-btn:hover .card-overlay {
        border-bottom-right-radius: 0 !important;
    }

    .cid-qInZUFhVFJ .image-element.popup-btn:hover .wrapper {
        border-bottom-right-radius: 0 !important;
    }

        .cid-qInZUFhVFJ .image-element.popup-btn:hover .wrapper .collapsed-content {
            border-bottom-right-radius: 0 !important;
        }

            .cid-qInZUFhVFJ .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
                border-bottom-right-radius: 0 !important;
            }

    .cid-qInZUFhVFJ .wrapper {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 1rem;
        background: transparent;
    }

        .cid-qInZUFhVFJ .wrapper .collapsed-content {
            transition: opacity 0.5s, max-height 1s;
            opacity: 0;
            max-height: 0px;
            overflow: hidden;
        }

    .cid-qInZUFhVFJ .card-overlay {
        transition: all .5s;
        opacity: 0;
        display: block;
    }
}

@media (max-width: 767px) {
    .cid-qInZUFhVFJ .card-title,
    .cid-qInZUFhVFJ .underline,
    .cid-qInZUFhVFJ .mbr-text,
    .cid-qInZUFhVFJ .mbr-section-btn,
    .cid-qInZUFhVFJ .mbr-section-subtitle,
    .cid-qInZUFhVFJ .mbr-section-title {
        text-align: center !important;
    }
}

.cid-qInZUFhVFJ .mbr-section-title {
    text-align: left;
}

.cid-qIo4zeBpH6 {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #4e84c2;
}

    .cid-qIo4zeBpH6 .mbr-section-subtitle {
        color: #efefef;
        font-weight: 300;
    }

    .cid-qIo4zeBpH6 .number {
        font-style: normal;
        font-weight: 700;
        font-size: 3rem;
        text-transform: none;
        letter-spacing: -2px;
        word-spacing: 0;
        line-height: 1.3;
        color: #ffffff;
    }

    .cid-qIo4zeBpH6 .period {
        display: block;
        padding-top: 5px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        color: #ffffff;
    }

    .cid-qIo4zeBpH6 .dot {
        position: absolute;
        top: -10px;
        right: -1em;
        width: 1em;
        display: none;
        height: 83%;
        overflow: hidden;
        font-style: normal;
        font-weight: 700;
        font-size: 3rem;
        line-height: 89.65px;
        text-transform: none;
        letter-spacing: 0;
        word-spacing: 0;
        color: #ffffff;
    }

    .cid-qIo4zeBpH6 .countdown-cont {
        max-width: 700px;
        margin: 0 auto;
    }

@media (max-width: 768px) {
    .cid-qIo4zeBpH6 .dot {
        display: none;
    }
}

@media (max-width: 543px) {
    .cid-qIo4zeBpH6 .number-wrap {
        margin-bottom: 15px;
    }
}

@media (max-width: 550px) {
    .cid-qIo4zeBpH6 .col-xs-3 {
        padding-left: 0;
        padding-right: 0;
    }

    .cid-qIo4zeBpH6 .number-wrap {
        min-width: auto;
    }
}

@media (max-width: 440px) {
    .cid-qIo4zeBpH6 .number,
    .cid-qIo4zeBpH6 .dot {
        font-size: 40px;
    }
}

@media (max-width: 380px) {
    .cid-qIo4zeBpH6 .period {
        font-size: 0.8rem;
    }
}

.cid-qIo4zeBpH6 H2 {
    color: #ffffff;
}

.cid-qIo8q1lGYO {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

    .cid-qIo8q1lGYO .mbr-section-subtitle {
        color: #767676;
    }

.cid-qIo8ErCEq8 {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../images/joshua-niedermayer-266955-1920x1281.jpg");
}

    .cid-qIo8ErCEq8 .container-fluid {
        padding: 0 3rem;
    }

    .cid-qIo8ErCEq8 .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qIo8ErCEq8 .scroll {
        overflow-x: auto;
        padding: 0;
    }

    .cid-qIo8ErCEq8 .table-wrapper {
        margin: 0 auto;
    }

    .cid-qIo8ErCEq8 table {
        width: 100% !important;
        margin-top: 6px;
        margin-bottom: 0;
    }

        .cid-qIo8ErCEq8 table thead tr {
            border: none !important;
        }

        .cid-qIo8ErCEq8 table th {
            padding: 1.5rem 1rem;
            transition: all .2s;
            text-align: center;
            border-top: none;
            border-bottom: 1px solid #5b5b5b;
            color: white;
            vertical-align: middle;
        }

        .cid-qIo8ErCEq8 table tr {
            border-bottom: 1px solid #c1c1c1;
            border-top: none;
        }

        .cid-qIo8ErCEq8 table td {
            padding: 1.2rem 1.6rem;
            vertical-align: middle;
            border: none;
        }

    .cid-qIo8ErCEq8 tr:hover {
        background-color: #92b5d5 !important;
    }

    .cid-qIo8ErCEq8 .head-item:after,
    .cid-qIo8ErCEq8 .head-item:before {
        bottom: 1.6em !important;
    }

@media (max-width: 767px) {
    .cid-qIo8ErCEq8 table th,
    .cid-qIo8ErCEq8 table td {
        padding: .75rem;
    }
}

.cid-qIo8ErCEq8 .body-item {
    text-align: center;
    color: #232323;
}

.cid-qIo8ErCEq8 .head-item {
    color: #000000;
}

.cid-qIo8ErCEq8 .mbr-text {
    color: #767676;
}

.cid-qIo8ErCEq8 .mbr-section-title,
.cid-qIo8ErCEq8 .underline {
    text-align: left;
}

.cid-qIocOcmUOq {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url("../../images/andrew-tanglao-505288-1920x1259.jpg");
}

    .cid-qIocOcmUOq .container-fluid {
        padding: 0 3rem;
    }

    .cid-qIocOcmUOq .mbr-section-subtitle {
        color: #767676;
    }

    .cid-qIocOcmUOq .scroll {
        overflow-x: auto;
        padding: 0;
    }

    .cid-qIocOcmUOq .table-wrapper {
        margin: 0 auto;
    }

    .cid-qIocOcmUOq table {
        width: 100% !important;
        margin-top: 6px;
        margin-bottom: 0;
    }

        .cid-qIocOcmUOq table thead tr {
            border: none !important;
        }

        .cid-qIocOcmUOq table th {
            padding: 1.5rem 1rem;
            transition: all .2s;
            text-align: center;
            border-top: none;
            border-bottom: 1px solid #5b5b5b;
            color: white;
            vertical-align: middle;
        }

        .cid-qIocOcmUOq table tr {
            border-bottom: 1px solid #c1c1c1;
            border-top: none;
        }

        .cid-qIocOcmUOq table td {
            padding: 1.2rem 1.6rem;
            vertical-align: middle;
            border: none;
        }

    .cid-qIocOcmUOq tr:hover {
        background-color: #92b5d5 !important;
    }

    .cid-qIocOcmUOq .head-item:after,
    .cid-qIocOcmUOq .head-item:before {
        bottom: 1.6em !important;
    }

@media (max-width: 767px) {
    .cid-qIocOcmUOq table th,
    .cid-qIocOcmUOq table td {
        padding: .75rem;
    }
}

.cid-qIocOcmUOq .body-item {
    text-align: center;
}

.cid-qIocOcmUOq .head-item {
    color: #000000;
}

.cid-qIocOcmUOq .mbr-text {
    color: #767676;
}

.cid-qIocOcmUOq .mbr-section-title,
.cid-qIocOcmUOq .underline {
    text-align: left;
}

.cid-qIoeaRX6R3 {
    padding-top: 60px;
    padding-bottom: 0px;
    background: #ffffff;
}

    .cid-qIoeaRX6R3 .mbr-section-title {
        margin-bottom: 0;
        text-align: center;
    }

    .cid-qIoeaRX6R3 .mbr-iconfont {
        color: #ffffff;
        font-size: 1rem;
    }

        .cid-qIoeaRX6R3 .mbr-iconfont:before {
            padding: .5rem;
            border: 1px solid;
            border-radius: 100px;
        }

        .cid-qIoeaRX6R3 .mbr-iconfont:hover {
            color: #e96188;
        }

    .cid-qIoeaRX6R3 .image-wrap {
        position: relative;
    }

        .cid-qIoeaRX6R3 .image-wrap img {
            width: 100%;
            z-index: 0;
        }

    .cid-qIoeaRX6R3 .mbr-section-subtitle {
        line-height: 1.5;
        color: #767676;
        text-align: center;
    }

    .cid-qIoeaRX6R3 .card-wrap {
        margin-bottom: 3rem;
    }

        .cid-qIoeaRX6R3 .card-wrap:hover .social-media {
            transition-delay: 0.3s;
            opacity: 1;
        }

        .cid-qIoeaRX6R3 .card-wrap:hover .img-overlay {
            opacity: 1;
        }

    .cid-qIoeaRX6R3 .social-media {
        bottom: 5%;
        transition-delay: 0s;
        list-style-type: none;
        position: absolute;
        transform: translateY(-50%);
        width: 100%;
        z-index: 1;
        opacity: 0;
        -webkit-transition: opacity 0.2s ease-in-out;
        -moz-transition: opacity 0.2s ease-in-out;
        -o-transition: opacity 0.2s ease-in-out;
        transition: opacity 0.2s ease-in-out;
    }

        .cid-qIoeaRX6R3 .social-media ul {
            margin: 0;
            padding: 0;
        }

            .cid-qIoeaRX6R3 .social-media ul li {
                margin: .1rem;
                display: inline-block;
            }

    .cid-qIoeaRX6R3 .img-overlay {
        background: linear-gradient(transparent, #232323);
        position: absolute;
        height: 100.05%;
        width: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        transition-delay: 0s;
        -webkit-transition: opacity 0.4s ease-in-out;
        -moz-transition: opacity 0.4s ease-in-out;
        -o-transition: opacity 0.4s ease-in-out;
        transition: opacity 0.4s ease-in-out;
    }

    .cid-qIoeaRX6R3 .builderCard .img-overlay {
        border-bottom-left-radius: 5rem;
    }

    .cid-qIoeaRX6R3 .mbr-role {
        color: #365c9a;
    }

    .cid-qIoeaRX6R3 .mbr-text {
        color: #767676;
    }

.cid-qIofBG0ijI {
    padding-top: 30px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

    .cid-qIofBG0ijI .form-control,
    .cid-qIofBG0ijI .form-control:focus {
        color: #5b686b !important;
        border: none;
        border-radius: 0 !important;
        background-color: transparent;
        padding: .5rem 0rem;
        border-bottom: 1px solid #5b686b;
    }

        .cid-qIofBG0ijI .form-control:focus,
        .cid-qIofBG0ijI .form-control:focus:focus {
            outline: none;
        }

    .cid-qIofBG0ijI input::-webkit-input-placeholder {
        color: #c5cacc;
    }

    .cid-qIofBG0ijI input::-moz-placeholder {
        color: #c5cacc;
    }

    .cid-qIofBG0ijI textarea::-webkit-input-placeholder {
        color: #c5cacc;
    }

    .cid-qIofBG0ijI textarea::-moz-placeholder {
        color: #c5cacc;
    }

    .cid-qIofBG0ijI .mbr-iconfont {
        font-size: 48px;
        padding-right: 1rem;
    }

    .cid-qIofBG0ijI .input {
        margin-bottom: 15px;
    }

    .cid-qIofBG0ijI .map {
        width: 100%;
        height: 30rem;
    }

        .cid-qIofBG0ijI .map iframe {
            width: inherit;
            height: 100%;
        }

    .cid-qIofBG0ijI .mbr-text {
        color: #767676;
    }

    .cid-qIofBG0ijI .input-group-btn {
        display: block;
    }

    .cid-qIofBG0ijI .google-map {
        height: 25rem;
        position: relative;
    }

        .cid-qIofBG0ijI .google-map iframe {
            height: 100%;
            width: 100%;
        }

        .cid-qIofBG0ijI .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-qIofBG0ijI .google-map[data-state] {
            background: #e9e5dc;
        }

        .cid-qIofBG0ijI .google-map[data-state="loading"] [data-state-details] {
            display: none;
        }

@media (max-width: 768px) {
    .cid-qIofBG0ijI .mbr-section-subtitle,
    .cid-qIofBG0ijI .mbr-section-title {
        text-align: center !important;
    }
}

@media (max-width: 991px) {
    .cid-qIofBG0ijI form.mbr-form {
        padding-bottom: 2rem;
    }
}

.cid-qIofQ15Bif {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #365c9a;
}

@media (max-width: 767px) {
    .cid-qIofQ15Bif .content {
        text-align: center;
    }

        .cid-qIofQ15Bif .content > div:not(:last-child) {
            margin-bottom: 2rem;
        }
}

.cid-qIofQ15Bif .img-logo img {
    height: 6rem;
}

.cid-qIofQ15Bif .social-list {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

    .cid-qIofQ15Bif .social-list .mbr-iconfont-social {
        font-size: 1rem;
        color: #232323;
    }

    .cid-qIofQ15Bif .social-list .mbr-iconfont:before {
        padding: .5rem;
        border: 1px solid;
        border-radius: 100px;
    }

    .cid-qIofQ15Bif .social-list .soc-item {
        margin: 0 3px 15px 3px;
    }

    .cid-qIofQ15Bif .social-list a {
        margin: 0;
        opacity: .7;
        -webkit-transition: .2s linear;
        transition: .2s linear;
    }

        .cid-qIofQ15Bif .social-list a:hover {
            opacity: 1;
        }

.cid-qIofQ15Bif .form-group {
    width: 100%;
}

    .cid-qIofQ15Bif .form-group input {
        width: 100%;
    }

        .cid-qIofQ15Bif .form-group input:focus {
            outline: none;
        }

.cid-qIofQ15Bif .form-control {
    min-height: auto;
    color: #ffffff !important;
    border: none;
    border-radius: 0 !important;
    background-color: transparent;
    padding: .5rem 0rem;
    border-bottom: 1px solid #ffffff;
}

    .cid-qIofQ15Bif .form-control:focus {
        outline: none;
    }

.cid-qIofQ15Bif input::-webkit-input-placeholder {
    color: #ffffff;
}

.cid-qIofQ15Bif input::-moz-placeholder {
    color: #ffffff;
}

.cid-qIofQ15Bif textarea::-webkit-input-placeholder {
    color: #ffffff;
}

.cid-qIofQ15Bif textarea::-moz-placeholder {
    color: #ffffff;
}

.cid-qIofQ15Bif .list {
    list-style-type: none;
    padding: 0;
}

    .cid-qIofQ15Bif .list li {
        padding-bottom: .5rem;
    }

        .cid-qIofQ15Bif .list li:last-child {
            padding-bottom: 0;
        }

.cid-qIofQ15Bif .mbr-footer-list,
.cid-qIofQ15Bif .form-text {
    color: #cccccc;
}

@media (max-width: 767px) {
    .cid-qIofQ15Bif .mbr-footer-list,
    .cid-qIofQ15Bif .form-text,
    .cid-qIofQ15Bif .footer-title,
    .cid-qIofQ15Bif .footer-main-title,
    .cid-qIofQ15Bif .form-text,
    .cid-qIofQ15Bif .list {
        text-align: center !important;
    }

    .cid-qIofQ15Bif .form-inline,
    .cid-qIofQ15Bif .social-list {
        justify-content: center !important;
    }
}

.cid-qIofQ15Bif .footer-title {
    text-align: right;
    color: #ffffff;
}

.cid-qIofQ15Bif .mbr-footer-list UL {
    text-align: right;
    color: #ffffff;
}

.cid-qIofQ15Bif .footer-main-title {
    color: #ffffff;
}
