@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap);
body {
    font-family: Roboto;
}

.display-1 {
    font-family: 'Roboto', sans-serif;
    font-size: 4.9rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.display-1>.mbr-iconfont {
    font-size: 7.84rem;
}

.display-2 {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
}

.display-2>.mbr-iconfont {
    font-size: 4.8rem;
}

.display-4 {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 400;
}

.display-4>.mbr-iconfont {
    font-size: 1.44rem;
}

.display-5 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    line-height: 1.4;
}

.display-5>.mbr-iconfont {
    font-size: 2.4rem;
}

.display-7 {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

.display-7>.mbr-iconfont {
    font-size: 1.6rem;
}

/* ---- 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.92rem;
        font-size: calc( 2.365rem + (4.9 - 2.365) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (2.365rem + (4.9 - 2.365) * ((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.72rem;
        font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((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 {
    padding: 1.25rem 2.5rem;
    border-radius: 0px;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    border-radius: 0px;
}

.btn-md {
    padding: 1rem 2.6rem;
    border-radius: 0px;
}

.btn-lg {
    padding: 1.2rem 3.2rem;
    border-radius: 6px;
}

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

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

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

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

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

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

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
    color: #ffffff !important;
    background-color: #9d1614 !important;
    border-color: #9d1614 !important;
}

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

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

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

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #ffffff !important;
    background-color: #585858 !important;
    border-color: #585858 !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: #5271FF !important;
    border-color: #5271FF !important;
    color: #ffffff !important;
}

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

.btn-danger.disabled,
.btn-danger:disabled {
    color: #ffffff !important;
    background-color: #fb0046 !important;
    border-color: #fb0046 !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: #871311;
    color: #871311;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
    color: #ffffff;
    background-color: #e1201d;
    border-color: #e1201d;
}

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

.btn-secondary-outline,
.btn-secondary-outline:active {
    background: none;
    border-color: #4b4b4b;
    color: #4b4b4b;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
    color: #ffffff;
    background-color: #7e7e7e;
    border-color: #7e7e7e;
}

.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
    color: #ffffff !important;
    background-color: #7e7e7e !important;
    border-color: #7e7e7e !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: #e2003f;
    color: #e2003f;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
    color: #ffffff;
    background-color: #5271FF;
    border-color: #5271FF;
}

.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
    color: #ffffff !important;
    background-color: #5271FF !important;
    border-color: #5271FF !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: #e1201d !important;
}

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

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

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

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

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

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

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

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

a.text-secondary:hover,
a.text-secondary:focus {
    color: #4b4b4b !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: #5271FF !important;
}

a.text-white:hover,
a.text-white:focus {
    color: #ffffff !important;
}

.alert-success {
    background-color: #70c770;
}

.alert-info {
    background-color: #82786e;
}

.alert-warning {
    background-color: #879a9f;
}

.alert-danger {
    background-color: #5271FF;
}

.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
    box-shadow: none !important;
}

.mbr-gallery-filter li.active .btn {
    background-color: #e1201d;
    border-color: #e1201d;
    color: #ffffff;
}

.mbr-gallery-filter li.active .btn:focus {
    box-shadow: none;
}

a,
a:hover {
    color: #e1201d;
}

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

.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: #ffffff;
}

/* Scroll to top button*/

.scrollToTop_wraper {
    display: none;
}

.form-control {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

.form-control>.mbr-iconfont {
    font-size: 1.6rem;
}

blockquote {
    border-color: #e1201d;
}

/* Forms */

.mbr-form .btn {
    margin: .4rem 0;
}

.jq-selectbox li:hover,
.jq-selectbox li.selected {
    background-color: #e1201d;
    color: #ffffff;
}

.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
    transition: 0.4s;
    border-top-color: gray !important;
    border-bottom-color: gray !important;
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
    border-top-color: #e1201d;
    border-bottom-color: #e1201d;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
    color: #ffffff !important;
    background-color: #e1201d !important;
    box-shadow: none !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover {
    color: #ffffff !important;
    background: #7e7e7e !important;
    box-shadow: none !important;
}

.lazy-bg {
    background-image: none !important;
}

.lazy-placeholder:not(section),
.lazy-none {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
    height: auto;
}

iframe.lazy-placeholder,
.lazy-placeholder:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: transparent no-repeat center;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23e1201d' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

section.lazy-placeholder:after {
    opacity: 0.5;
}

hr {
    border: none;
    background-color: #5271FF;
    height: 3px;
    width: 72px;
    position: absolute;
    top: -3.5rem;
    display: inline-block;
}

.line-title {
    width: 40px;
    height: 2px;
    background-color: #5271FF;
    background-color: ;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.line-title-big {
    width: 72px;
    height: 3px;
    background-color: ;
    margin-bottom: 2rem;
    display: inline-block;
}

.vertical-line:before {
    content: '';
    background-color: #5271FF;
    height: 60px;
    width: 2px;
    position: absolute;
    top: -30px;
    left: 50%;
}

.mbr-section-btn .btn-danger,
.btn-warning,
.btn-white,
.btn-black,
.btn-secondary,
.btn-primary,
.btn-info,
.btn-success {
    position: relative;
    background-color: #ffffff;
    transform: perspective(1px) translateZ(0);
    transition: all 0.3s ease-in-out !important;
}

.mbr-section-btn .btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: 50% 0;
    transition-property: transform;
    transition: 0.6s;
    transition-timing-function: cubic-bezier(0.17, 0.67, 0, 1.01);
    transform-origin: 0% 50%;
}

.btn-white {
    color: #5271FF !important;
}

.btn-danger:hover {
    color: #5271FF !important;
}

.btn-warning:hover {
    color: #879a9f !important;
}

.btn-success:hover {
    color: #f7ed4a !important;
}

.btn-info:hover {
    color: #82786e !important;
}

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

.btn-white:hover {
    color: #000000 !important;
}

.btn-secondary:hover {
    color: #7e7e7e !important;
}

.btn-primary:hover {
    color: #e1201d !important;
}

.btn:hover::before {
    background-color: #ffffff;
    transform: scaleX(1);
}

.btn-white {
    color: #5271FF !important;
}

.mbr-section-btn .btn-danger-outline {
    border-color: #5271FF;
}

.mbr-section-btn .btn-danger-outline,
.btn-warning-outline,
.btn-white-outline,
.btn-black-outline,
.btn-secondary-outline,
.btn-primary-outline,
.btn-info-outline,
.btn-success-outline {
    position: relative;
    background-color: transparent !important;
    transform: perspective(1px) translateZ(0);
    transition: all 0.3s ease-in-out !important;
}

.btn-danger-outline {
    color: #ffffff !important;
}

.btn-secondary-outline:hover::before {
    background-color: #7e7e7e !important;
}

.btn-success-outline:hover::before {
    background-color: #f7ed4a !important;
}

.btn-info-outline:hover::before {
    background-color: #82786e !important;
}

.btn-primary-outline:hover::before {
    background-color: #e1201d !important;
}

.btn-white-outline:hover::before {
    background-color: #ffffff !important;
}

.btn-black-outline:hover::before {
    background-color: #000000 !important;
}

.btn-black-outline:hover::before {
    background-color: #879a9f !important;
}

.btn-danger-outline:hover::before {
    background-color: #5271FF !important;
}

.cid-rR36nszXr6 .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;
    -webkit-transform: scale(0, 1);
    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-rR36nszXr6 .nav-item:focus,
.cid-rR36nszXr6 .nav-link:focus {
    outline: none;
}

.cid-rR36nszXr6 .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-rR36nszXr6 .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}

.cid-rR36nszXr6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-left: -1.8rem;
    font-size: inherit;
}

.cid-rR36nszXr6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    -webkit-transform: scale(1, 1);
    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-rR36nszXr6 .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

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

.cid-rR36nszXr6 .collapsed .mbr-iconfont {
    padding-left: 0rem !important;
}

.cid-rR36nszXr6 .navbar {
    min-height: 77px;
    transition: all .3s;
    background: #1f2732;
    background: none;
}

.cid-rR36nszXr6 .navbar.opened {
    transition: all .3s;
    background: #1f2732 !important;
}

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

/* .cid-rR36nszXr6 .navbar .navbar-collapse { */
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    z-index: 1;
}

/* /* .cid-rR36nszXr6 .navbar.collapsed .nav-item .nav-link::before { */ */
    display: none;
}

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

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

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

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

.cid-rR36nszXr6 .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-rR36nszXr6 .navbar.collapsed ul.navbar-nav li { */ */
    margin: auto;
}

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

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

@media (max-width: 991px) {
    /* /* .cid-rR36nszXr6 .navbar .nav-item .nav-link::before { */ */
        display: none;
    }
    .cid-rR36nszXr6 .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-rR36nszXr6 .navbar .dropdown-menu {
        background: transparent !important;
    }
    .cid-rR36nszXr6 .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-rR36nszXr6 .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .cid-rR36nszXr6 .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-rR36nszXr6 .navbar .navbar-logo img { */
        height: 3.8rem !important;
    }
    /* /* .cid-rR36nszXr6 .navbar ul.navbar-nav li { */ */
        margin: auto;
    }
    .cid-rR36nszXr6 .navbar .dropdown-menu .dropdown-item {
        padding: .25rem 1.5rem !important;
        text-align: center;
    }
    /* .cid-rR36nszXr6 .navbar .navbar-brand { */
        -webkit-flex-shrink: initial;
        flex-shrink: initial;
        -webkit-flex-basis: auto;
        flex-basis: auto;
        word-break: break-word;
    }
    /* .cid-rR36nszXr6 .navbar .navbar-toggler { */
        -webkit-flex-basis: auto;
        flex-basis: auto;
    }
    .cid-rR36nszXr6 .navbar .icons-menu {
        padding-top: .5rem;
        padding-bottom: .5rem;
    }
}

/* .cid-rR36nszXr6 .navbar.navbar-short { */
    background: #1f2732 !important;
    min-height: 60px;
    opacity: 0.9;
}

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

/* /* .cid-rR36nszXr6 .navbar.navbar-short .navbar-brand { */ */
    padding: 0;
}

.cid-rR36nszXr6 .navbar-short {
    padding: 1rem 0 !important;
}

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

/* .cid-rR36nszXr6 .navbar-brand .navbar-caption { */
    line-height: inherit !important;
}

/* .cid-rR36nszXr6 .navbar-brand .navbar-logo a { */
    outline: none;
}

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

@media (max-width: 992px) {
    .cid-rR36nszXr6 .nav-dropdown .link.dropdown-toggle {
        margin: 0rem 1rem !important;
    }
    .cid-rR36nszXr6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.25em;
    }
    .cid-rR36nszXr6 .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .cid-rR36nszXr6 .nav-link {
        margin: 0rem 1.25rem;
    }
    .cid-rR36nszXr6 .mbr-iconfont {
        padding-right: 1rem;
    }
}

@media (min-width: 992px) {
    .cid-rR36nszXr6 .nav-dropdown .link.dropdown-toggle {
        margin: 1rem 1rem !important;
    }
    .cid-rR36nszXr6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.25em;
    }
    .cid-rR36nszXr6 .nav-link {
        margin: 1rem 1.25rem;
    }
    .cid-rR36nszXr6 .mbr-iconfont {
        padding-left: 1rem;
    }
}

/* .cid-rR36nszXr6 .navbar.navbar-expand-lg .dropdown .dropdown-menu { */
    background: #1f2732;
}

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

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

/* .cid-rR36nszXr6 ul.navbar-nav { */
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

.cid-rR36nszXr6 .navbar-dropdown {
    padding: 3rem 0rem;
    position: fixed;
}

.cid-rR36nszXr6 a.nav-link {
    font-weight: 800;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    position: relative;
}

.cid-rR36nszXr6 .mbr-iconfont {
    font-size: 1.5rem;
}

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

.cid-rR36nszXr6 .icons-menu span {
    font-size: 20px;
    color: #ffffff;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .cid-rR36nszXr6 .navbar {
        height: 77px;
    }
    .cid-rR36nszXr6 .navbar.opened {
        height: auto;
    }
    /* .cid-rR36nszXr6 .nav-item .nav-link:hover::before { */
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-rR36nszXr6 a.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    width: 0;
    height: 2px;
    -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    box-sizing: border-box;
}

.cid-rR36nszXr6 a.nav-link:hover::before {
    height: 2px;
    width: 20px;
    background-color: #ffffff;
}

.cid-rR36nszXr6 .nav-link {
    padding: 0.5rem 0rem !important;
}

@media (min-width: 767px) {
    .cid-rR36nszXr6 .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.cid-rR2EvFRQfn {
    padding-top: 240px;
    padding-bottom: 0px;
    background-image: url("../../../assets/images/background/00woman-6-1920x1280.jpg");
    /* background-image: url();
    
        background-image: url('../../../assets/images/background/video.mp4');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat; */
    
      
     
}

.cid-rR2EvFRQfn .mbr-iconfont {
    color: #080002;
    font-size: 3rem;
    transition: 0.7s;
}

.cid-rR2EvFRQfn .card-inner {
    background-color: #c0c0c0;
    transition: 0.7s;
    z-index: 10;
}

.cid-rR2EvFRQfn .btn {
    margin-left: 0rem;
}

.cid-rR2EvFRQfn .row {
    padding-bottom: 8rem;
}

.cid-rR2EvFRQfn .link {
    margin: 0;
}

.cid-rR2EvFRQfn .card-title {
    position: relative;
    margin-bottom: 1.3rem;
    padding-bottom: 0.5rem;
}

.cid-rR2EvFRQfn .card-title:after {
    position: absolute;
    content: '';
    bottom: 0px;
    left: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: #000000;
    transition: 0.7s;
}

.cid-rR2EvFRQfn .card-img {
    margin-bottom: 3.2rem;
}

.cid-rR2EvFRQfn .link a {
    position: relative;
    letter-spacing: 2px;
}

.cid-rR2EvFRQfn .card:hover .card-inner {
    background-color:#5271FF;
    box-shadow: 0px 10px 50px 10px rgba(0, 0, 0, 0.3);
}

.cid-rR2EvFRQfn .card:hover .mbr-iconfont {
    color: #ffffff !important;
}

.cid-rR2EvFRQfn .card:hover .card-title:after {
    background: #fff;
}

.cid-rR2EvFRQfn .media-container-row {
    align-items: flex-end;
}

.cid-rR2EvFRQfn .mbr-section-title {
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .cid-rR2EvFRQfn .card {
        padding: 0;
        margin-bottom: 2rem;
    }
    .cid-rR2EvFRQfn .card-inner {
        padding: 3rem 1rem;
    }
}

@media (min-width: 767px) {
    .cid-rR2EvFRQfn .card-inner {
        padding: 3.4rem 2.5rem 3.6rem;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .cid-rR2EvFRQfn .card {
        margin-bottom: 2rem;
    }
    .cid-rR2EvFRQfn .row {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 992px) {
    .cid-rR2EvFRQfn .row {
        padding-left: 1rem;
        padding-right: 1rem;
    
}

.cid-rR2EvFRQfn .card {
    position: relative;
}

.cid-rR2EvFRQfn .card-3::after {
    content: "";
    background-color: #5271ff ;
    height: 70px;
    width: 97%;
    position: absolute;
    bottom: -20px;
    z-index: 1;
}

.cid-rR2EvFRQfn .card:first-child .card-inner {
    background-color: #5271ff;
}

.cid-rR2EvFRQfn .card:first-child .card-inner .mbr-iconfont {
    color: #fff;
}

.cid-rR2EvFRQfn .card:first-child .card-inner .card-title:after {
    background: #fff;
}

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

@media (max-width: 767px) {
    .cid-rR2EvZoqrR h2 {
        margin-bottom: 1rem;
    }
    .cid-rR2EvZoqrR .wrapper {
        display: flex;
        flex-direction: column;
    }
    .cid-rR2EvZoqrR .mbr-section-btn {
        margin-left: 1px;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) and (min-width: 992px) {
    .cid-rR2EvZoqrR .container-column {
        text-align: center;
    }
}

@media (min-width: 767px) {
    .cid-rR2EvZoqrR .wrapper {
        display: flex;
        justify-content: space-between;
        padding: 0 1rem;
    }
    .cid-rR2EvZoqrR .container {
        position: relative;
    }
    .cid-rR2EvZoqrR h2 {
        margin: 0;
    }
}

.cid-rR2EvZoqrR .btn {
    margin: 0;
    position: relative;
    padding: 0.7rem 2.4rem;
    color: #101010 !important;
}

.cid-rR2EvZoqrR hr {
    width: 40px;
    height: 2px;
    top: -2.6rem;
}

.cid-rR2EvZoqrR .mbr-section-subtitle {
    color: #5271FF;
}

.cid-rR2EvZoqrR .btn:hover {
    color: #ffffff !important;
}

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

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

.cid-rR2Ewj0RGy .icon-1 {
    color: #1f2732;
    font-size: 3.5rem;
}

.cid-rR2Ewj0RGy .icon-arrow {
    color: #7e7e7e;
    font-size: 1.8rem !important;
}

.cid-rR2Ewj0RGy .link {
    margin: 0;
    transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

@media (min-width: 767px) {
    .cid-rR2Ewj0RGy .card {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .cid-rR2Ewj0RGy .row {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .cid-rR2Ewj0RGy .link a:after {
        right: 0;
        margin: auto;
    }
}

.cid-rR2Ewj0RGy .row {
    justify-content: center;
}

@media (max-width: 992px) {
    .cid-rR2Ewj0RGy .card {
        margin-bottom: 2rem;
    }
}

.cid-rR2Ewj0RGy .text-link {
    font-weight: 800 !important;
}

.cid-rR2Ewj0RGy .card-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f3f3f3;
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
}

.cid-rR2Ewj0RGy .card-img {
    opacity: 0;
    left: -40px;
    top: 20%;
    position: absolute;
    transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.cid-rR2Ewj0RGy .card-icon {
    display: flex;
    transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.cid-rR2Ewj0RGy .card:hover .card-inner {
    background-color: #5271FF;
}

.cid-rR2Ewj0RGy .card:hover .icon-arrow {
    color: #fff;
}

.cid-rR2Ewj0RGy .card:hover .text-link {
    color: #fff !important;
}

.cid-rR2Ewj0RGy .card:hover .card-img {
    opacity: 1;
    left: -10px;
}

.cid-rR2Ewj0RGy .card:hover .link {
    transform: translateX(42px);
}

.cid-rR2Ewj0RGy .card:hover .card-icon {
    transform: translateX(10px);
}

.cid-rR2Ewj0RGy h5 {
    color: #101010;
    font-weight: 800;
}

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

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

.cid-rR7Pl7Spwz .icon-1 {
    color: #1f2732;
    font-size: 3.5rem;
}

.cid-rR7Pl7Spwz .icon-arrow {
    color: #7e7e7e;
    font-size: 1.8rem !important;
}

.cid-rR7Pl7Spwz .link {
    margin: 0;
    transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

@media (min-width: 767px) {
    .cid-rR7Pl7Spwz .card {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .cid-rR7Pl7Spwz .row {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .cid-rR7Pl7Spwz .link a:after {
        right: 0;
        margin: auto;
    }
}

.cid-rR7Pl7Spwz .row {
    justify-content: center;
}

@media (max-width: 992px) {
    .cid-rR7Pl7Spwz .card {
        margin-bottom: 2rem;
    }
}

.cid-rR7Pl7Spwz .text-link {
    font-weight: 800 !important;
}

.cid-rR7Pl7Spwz .card-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f3f3f3;
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
}

.cid-rR7Pl7Spwz .card-img {
    opacity: 0;
    left: -40px;
    top: 20%;
    position: absolute;
    transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.cid-rR7Pl7Spwz .card-icon {
    display: flex;
    transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.cid-rR7Pl7Spwz .card:hover .card-inner {
    background-color: #5271FF;
}

.cid-rR7Pl7Spwz .card:hover .icon-arrow {
    color: #fff;
}

.cid-rR7Pl7Spwz .card:hover .text-link {
    color: #fff !important;
}

.cid-rR7Pl7Spwz .card:hover .card-img {
    opacity: 1;
    left: -10px;
}

.cid-rR7Pl7Spwz .card:hover .link {
    transform: translateX(42px);
}

.cid-rR7Pl7Spwz .card:hover .card-icon {
    transform: translateX(10px);
}

.cid-rR7Pl7Spwz h5 {
    color: #101010;
    font-weight: 800;
}

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

@media (max-width: 767px) {
    .cid-rRAhHoUbGM h2 {
        margin-bottom: 1rem;
    }
}

@media (min-width: 767px) {
    .cid-rRAhHoUbGM .container {
        position: relative;
    }
    .cid-rRAhHoUbGM .row {
        margin: 0;
    }
    .cid-rRAhHoUbGM h2 {
        margin: 0;
    }
}

.cid-rRAhHoUbGM .btn {
    margin: 0;
    position: relative;
    padding: 0.7rem 2.4rem;
}

.cid-rRAhHoUbGM .mbr-section-subtitle {
    color: #5271FF;
}

.cid-rRAhIrUFXK {
    background: #ffffff;
    padding-top: 45px;
    padding-bottom: 75px;
}

.cid-rRAhIrUFXK h3 {
    margin-bottom: 0 !important;
}

.cid-rRAhIrUFXK figcaption {
    position: relative;
}

.cid-rRAhIrUFXK figcaption .wrap {
    position: absolute;
    bottom: 0rem;
    width: 100%;
    padding: 1rem 2rem;
    transition: all 0.3s;
    z-index: 3;
}

.cid-rRAhIrUFXK img {
    width: 100%;
    transition: all 3s;
    opacity: 0.5;
}

@media (min-width: 767px) {
    .cid-rRAhIrUFXK .row {
        margin: 0;
    }
}

@media (max-width: 992px) {
    .cid-rRAhIrUFXK .image-block-1 {
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    .cid-rRAhIrUFXK .img-big {
        height: 100%;
    }
    .cid-rRAhIrUFXK .image-block-1 {
        height: 100%;
    }
}

.cid-rRAhIrUFXK .image-block-2 {
    margin-bottom: 2rem;
}

.cid-rRAhIrUFXK .image-block {
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
    position: relative;
    background-color: #000;
}

.cid-rRAhIrUFXK .image-block:hover {
    filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}

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

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

.cid-rRAisYuVPl .mbr-title {
    color: #101010;
}

@media (max-width: 767px) {
    .cid-rRAisYuVPl .md-pb {
        margin-bottom: 2rem;
    }
}

.cid-rRAisYuVPl h3 {
    margin-bottom: 1.2rem;
}

@media (max-width: 992px) {
    .cid-rRAisYuVPl .card {
        margin-top: 2rem;
    }
}

@media (min-width: 992px) {
    .cid-rRAisYuVPl .mbr-text {
        padding-right: 2.5rem;
    }
}

@media (min-width: 767px) {
    .cid-rRAisYuVPl .row {
        margin: 0;
    }
}

.cid-rRvOleaITp {
    padding-top: 135px;
    padding-bottom: 75px;
    background-color: #ffffff;
}

.cid-rRvOleaITp h1 {
    margin-bottom: 0.2rem;
}

.cid-rRvOleaITp .container-fluid {
    padding: 0;
}

.cid-rRvOleaITp img {
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 10;
}

.cid-rRvOleaITp .mbr-figure {
    height: 100%;
}

.cid-rRvOleaITp .col-lg-6 {
    padding: 0;
}

.cid-rRvOleaITp .mbr-text {
    color: #747474;
}

.cid-rRvOleaITp hr {
    width: 40px;
    height: 2px;
    top: -1rem;
}

.cid-rRvOleaITp .mbr-section-subtitle {
    margin-bottom: 3.5rem;
}

.cid-rRvOleaITp .mbr-section-subtitle-1 {
    color: #5271FF;
}

.cid-rRvOleaITp .mbr-section-subtitle-2 {
    margin-top: 4.2rem;
}

.cid-rRvOleaITp .mbr-figure::after {
    content: "";
    background-color: #5271FF;
    height: 100px;
    width: 100px;
    position: absolute;
    bottom: -20px;
    right: -5px;
    z-index: 1;
}

@media (min-width: 767px) {
    .cid-rRvOleaITp .row {
        margin: 0;
    }
}

@media (min-width: 992px) {
    .cid-rRvOleaITp .media-content {
        padding-left: 2.2rem;
    }
}

@media (max-width: 992px) {
    .cid-rRvOleaITp .left-block {
        margin-top: 4.5rem;
    }
}

.cid-rRvOleaITp .btn {
    color: #101010 !important;
}

.cid-rRvOleaITp .btn:hover {
    color: #ffffff !important;
}

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

@media (max-width: 767px) {
    .cid-rRB0Pw1yxi h2 {
        margin-bottom: 1rem;
    }
}

@media (min-width: 767px) {
    .cid-rRB0Pw1yxi .container {
        position: relative;
    }
    .cid-rRB0Pw1yxi .row {
        margin: 0;
    }
    .cid-rRB0Pw1yxi h2 {
        margin: 0;
    }
}

.cid-rRB0Pw1yxi .mbr-section-subtitle {
    color: #22050c;
}

.cid-rRB0Pw1yxi .mbr-text {
    margin-top: 1.4rem;
}

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

.cid-rRB14188UC .mbr-iconfont-1 {
    color: #e9204f;
    font-size: 3.5rem;
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.cid-rRB14188UC .card-inner {
    transition: 0.7s;
    display: flex;
}

.cid-rRB14188UC .link {
    margin: 0;
}

.cid-rRB14188UC .card-title {
    position: relative;
    margin-bottom: 0.2rem;
    padding-bottom: 0.5rem;
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.cid-rRB14188UC .mbr-iconfont {
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.cid-rRB14188UC .link a {
    position: relative;
    letter-spacing: 2px;
}

.cid-rRB14188UC .card:hover .mbr-iconfont {
    color: #101010;
}

.cid-rRB14188UC .card:hover .card-title {
    color: C86667;
}

.cid-rRB14188UC .media-container-row {
    align-items: flex-end;
}

@media (max-width: 767px) {
    .cid-rRB14188UC .card {
        padding: 0;
    }
    .cid-rRB14188UC .card-inner {
        flex-direction: column;
    }
    .cid-rRB14188UC .card-title {
        margin-top: 2rem;
    }
}

@media (min-width: 992px) {
    .cid-rRB14188UC .row {
        margin: 0;
    }
}

.cid-rRB14188UC .card {
    position: relative;
    border-radius: 0px;
    transition: 0.7s;
    margin-top: 1rem;
}

.cid-rRB14188UC .mbr-section-subtitle {
    color: #e9204f;
}

.cid-rRB14188UC .mbr-section-title {
    font-weight: 800;
}

.cid-rRB14188UC h2 {
    margin-bottom: 0;
}

.cid-rRB14188UC .title-block {
    margin-bottom: 3rem;
}

.cid-rRB14188UC .card-box {
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

@media (min-width: 767px) {
    .cid-rRB14188UC .card-box {
        margin-left: 1.5rem;
    }
}

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

@media (max-width: 767px) {
    .cid-rRvVzJycbo h2 {
        margin-bottom: 1rem;
    }
}

@media (min-width: 767px) {
    .cid-rRvVzJycbo .container {
        position: relative;
    }
    .cid-rRvVzJycbo .row {
        margin: 0;
    }
    .cid-rRvVzJycbo h2 {
        margin: 0;
    }
}

.cid-rRvVzJycbo .mbr-section-subtitle {
    color: #e9204f;
}

.cid-rRvVzJycbo .mbr-text {
    margin-top: 1.4rem;
}

.cid-rR2ExrbR9A {
    background-color: #ffffff;
}

.cid-rR2ExrbR9A .carousel-item {
    -webkit-justify-content: center;
    justify-content: center;
}

.cid-rR2ExrbR9A .carousel-item>div {
    width: 100%;
}

.cid-rR2ExrbR9A h4 {
    margin-bottom: 0.7rem;
    font-weight: 900;
}

.cid-rR2ExrbR9A .carousel-item.active,
.cid-rR2ExrbR9A .carousel-item-next,
.cid-rR2ExrbR9A .carousel-item-prev {
    display: flex;
}

.cid-rR2ExrbR9A .carousel-controls a {
    transition: opacity .5s;
    font-size: 1.2rem;
}

.cid-rR2ExrbR9A .carousel-controls a span {
    padding: 15px;
    border-radius: 50%;
    opacity: .9;
}

.cid-rR2ExrbR9A .carousel-controls a:hover span {
    opacity: 1;
}

@media (min-width: 768px) {
    .cid-rR2ExrbR9A .carousel-controls a {
        width: 5%;
    }
}

.cid-rR2ExrbR9A .mbr-text {
    padding: 2rem;
    border-radius: 30px;
    color: #fff;
    position: relative;
}

.cid-rR2ExrbR9A .mbr-section-subtitle {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #70747f;
}

.cid-rR2ExrbR9A .img-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.cid-rR2ExrbR9A img {
    width: 100%;
    margin: 0;
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    background-size: cover;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}

.cid-rR2ExrbR9A li {
    background-color: transparent;
    width: 11px;
    height: 11px;
    border: 1px solid #e0e0e0 !important;
    margin-left: 0.4rem;
    margin-right: 0.4rem;
}

.cid-rR2ExrbR9A li.active {
    background-color: #5271FF;
    width: 14px;
    height: 14px;
    border: none !important;
}

.cid-rR2ExrbR9A .carousel-indicators {
    position: absolute;
    bottom: -2.3rem;
    align-items: center;
}

.cid-rR2ExrbR9A .carousel-indicators li {
    border: none;
    border-radius: 50%;
}

.cid-rR2ExrbR9A .carousel {
    display: flex;
    overflow: hidden;
    padding-bottom: 4rem;
}

@media (max-width: 767px) {
    .cid-rR2ExrbR9A {
        padding-top: 10px;
        padding-bottom: 50px;
    }
    .cid-rR2ExrbR9A .col-md-3 {
        padding: 0;
    }
}

@media (min-width: 767px) {
    .cid-rR2ExrbR9A {
        padding-top: 15px;
        padding-bottom: 75px;
    }
}

.cid-rR2ExrbR9A a {
    color: #fff;
    line-height: 1.5;
}

.cid-rR2ExrbR9A .wrapper-img {
    position: relative;
    background-color: #000;
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.cid-rR2ExrbR9A .title-block {
    position: absolute;
    opacity: 0;
    transform: translateX(-20px);
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.cid-rR2ExrbR9A .desk {
    color: #fff;
}

.cid-rR2ExrbR9A .signature {
    color: #fff;
}

.cid-rR2ExrbR9A .img-block:hover .title-block {
    opacity: 1;
    transform: translateX(0px);
}

.cid-rR2ExrbR9A .img-block:hover img {
    filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
    box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
    opacity: 0.5;
}

.cid-rR2ExrbR9A .img-block:hover .wrapper-img {
    transform: scale(0.95);
}

.cid-rR2ExrbR9A .container-fluid {
    padding: 0;
    overflow: hidden;
}

@media (max-width: 992px) {
    .cid-rR2ExrbR9A .img-card {
        margin-top: 2rem;
    }
}

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

@media (max-width: 767px) {
    .cid-rRwhYSkoX6 h2 {
        margin-bottom: 1rem;
    }
}

@media (min-width: 767px) {
    .cid-rRwhYSkoX6 .container {
        position: relative;
    }
    .cid-rRwhYSkoX6 .row {
        margin: 0;
    }
    .cid-rRwhYSkoX6 h2 {
        margin: 0;
    }
}

.cid-rRwhYSkoX6 .mbr-section-subtitle {
    color: #e9204f;
}

.cid-rRwhYSkoX6 .mbr-text {
    margin-top: 1.4rem;
}

.cid-rR2EB4Az1O {
    background-color: #ffffff;
}

.cid-rR2EB4Az1O .carousel-item {
    -webkit-justify-content: center;
    justify-content: center;
}

.cid-rR2EB4Az1O .carousel-item>div {
    width: 100%;
}

.cid-rR2EB4Az1O h4 {
    margin-top: 1.2rem;
    margin-bottom: 1.3rem;
    font-weight: 900;
}

.cid-rR2EB4Az1O .mbr-iconfont {
    font-size: 1.5rem;
    color: #fff;
    opacity: 0;
    transition: 0.7s;
}

.cid-rR2EB4Az1O .carousel-item.active,
.cid-rR2EB4Az1O .carousel-item-next,
.cid-rR2EB4Az1O .carousel-item-prev {
    display: flex;
}

.cid-rR2EB4Az1O .carousel-controls a {
    transition: opacity .5s;
    font-size: 1.2rem;
}

.cid-rR2EB4Az1O .carousel-controls a span {
    padding: 15px;
    border-radius: 50%;
    opacity: .9;
}

.cid-rR2EB4Az1O .carousel-controls a:hover span {
    opacity: 1;
}

@media (min-width: 768px) {
    .cid-rR2EB4Az1O .carousel-controls a {
        width: 5%;
    }
}

.cid-rR2EB4Az1O .mbr-text {
    padding: 2rem;
    border-radius: 30px;
    color: #fff;
    position: relative;
}

.cid-rR2EB4Az1O .mbr-section-subtitle {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #70747f;
}

.cid-rR2EB4Az1O .img-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.cid-rR2EB4Az1O img {
    width: 100%;
    margin: 0;
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    background-size: cover;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
    opacity: 0.5;
}

.cid-rR2EB4Az1O li {
    background-color: transparent;
    width: 11px;
    height: 11px;
    border: 1px solid #e0e0e0 !important;
    margin-left: 0.4rem;
    margin-right: 0.4rem;
}

.cid-rR2EB4Az1O li.active {
    background-color: #5271FF;
    width: 14px;
    height: 14px;
    border: none !important;
}

.cid-rR2EB4Az1O .carousel-indicators {
    position: absolute;
    margin-top: 2rem;
    bottom: 0rem;
    align-items: center;
}

.cid-rR2EB4Az1O ol {
    margin-bottom: 0;
}

.cid-rR2EB4Az1O .carousel-indicators li {
    border: none;
    border-radius: 50%;
}

.cid-rR2EB4Az1O .carousel {
    display: flex;
    overflow: hidden;
    padding-bottom: 4rem;
}

@media (max-width: 767px) {
    .cid-rR2EB4Az1O {
        padding-top: 30px;
        padding-bottom: 70px;
    }
}

@media (min-width: 767px) {
    .cid-rR2EB4Az1O {
        padding-top: 45px;
        padding-bottom: 105px;
    }
}

.cid-rR2EB4Az1O a {
    color: #fff;
    line-height: 1.5;
}

.cid-rR2EB4Az1O .wrapper-img {
    position: relative;
    background-color: #000;
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    overflow: hidden;
}

.cid-rR2EB4Az1O .title-block {
    position: absolute;
    bottom: -1rem;
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.cid-rR2EB4Az1O .desk {
    color: #fff;
}

.cid-rR2EB4Az1O .signature {
    color: #fff;
}

.cid-rR2EB4Az1O .img-block:hover .title-block {
    transform: translateY(-40px);
}

.cid-rR2EB4Az1O .img-block:hover img {
    filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
    box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
    opacity: 0.3;
    transform: scale(1.1);
}

.cid-rR2EB4Az1O .img-block:hover .mbr-iconfont {
    opacity: 1;
}

.cid-rR2EB4Az1O .container-fluid {
    padding: 0;
    overflow: hidden;
}

@media (max-width: 992px) {
    .cid-rR2EB4Az1O .img-card {
        margin-top: 2rem;
    }
}

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

@media (max-width: 767px) {
    .cid-rRvMMMIyru h2 {
        margin-bottom: 1rem;
    }
}

@media (min-width: 767px) {
    .cid-rRvMMMIyru .container {
        position: relative;
    }
    .cid-rRvMMMIyru .row {
        margin: 0;
    }
    .cid-rRvMMMIyru h2 {
        margin: 0;
    }
}

.cid-rRvMMMIyru .mbr-section-subtitle {
    color: #e9204f;
}

.cid-rRvMMMIyru .mbr-text {
    margin-top: 1.4rem;
}

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

.cid-rR2EBpLLYM img {
    width: 100%;
    transition: 0.3s ease-out;
}

.cid-rR2EBpLLYM .card-footer {
    border-top: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 300px) {
    .cid-rR2EBpLLYM .testimonial-photo {
        width: 100% !important;
        height: auto !important;
    }
}

.cid-rR2EBpLLYM .mbr-iconfont-social {
    font-size: 20px;
}

.cid-rR2EBpLLYM .icon {
    display: flex;
    width: 34px;
    height: 34px;
    color: #ffffff;
    padding: 0.5rem;
    transition: 0.3s ease-out;
}

.cid-rR2EBpLLYM .panel-item {
    position: relative;
    background-color: rgba(255, 73, 124, 0.85);
}

.cid-rR2EBpLLYM .mbr-section-title {
    color: #101010;
    margin-bottom: 1.3rem;
}

.cid-rR2EBpLLYM .mbr-author-name {
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.cid-rR2EBpLLYM .mbr-author-desc {
    color: #ffffff;
}

.cid-rR2EBpLLYM .social-list {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cid-rR2EBpLLYM .panel-item:hover img {
    opacity: 0.1;
}

.cid-rR2EBpLLYM .panel-item:hover .card-footer {
    opacity: 1;
}

@media (max-width: 767px) {
    .cid-rR2EBpLLYM .title {
        padding: 0;
    }
    .cid-rR2EBpLLYM .align-center {
        text-align: center;
    }
}

@media (min-width: 767px) {
    .cid-rR2EBpLLYM .mbr-section-subtitle {
        margin-bottom: 3.5rem;
    }
    .cid-rR2EBpLLYM .row {
        margin: 0;
    }
}

@media (max-width: 992px) {
    .cid-rR2EBpLLYM .panel-item {
        margin-bottom: 2rem;
    }
}

.cid-rR2EC09155 {
    padding-top: 135px;
    padding-bottom: 135px;
    background: #1b1b1b;
}

.cid-rR2EC09155 .mbr-iconfont-social {
    font-size: 1rem;
    color: #ffffff;
    margin-right: .6rem;
}

.cid-rR2EC09155 .mbr-iconfont-social:before {
    padding: 1rem;
    border: 2px solid;
    border-radius: 100px;
    border-color: #5271FF;
    transition: all .3s;
}

.cid-rR2EC09155 .mbr-iconfont-social:hover {
    color: #5271FF;
}

.cid-rR2EC09155 .mbr-section-title,
.cid-rR2EC09155 .social-list {
    display: flex;
    align-items: center;
    color: #ffffff;
}

.cid-rR2EC09155 .social-list a {
    transition: .3s;
}

.cid-rR2EC09155 .social-list a:hover {
    transform: translateY(-8px);
}

@media (max-width: 992px) {
    .cid-rR2EC09155 .block-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cid-rR2EC09155 .social-list {
        margin-bottom: 2rem;
    }
    .cid-rR2EC09155 .mbr-section-title {
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    .cid-rR2EC09155 .block-wrapper {
        display: flex;
        justify-content: space-between;
    }
    .cid-rR2EC09155 .btn {
        margin-right: 0rem;
        margin-bottom: 0rem;
    }
    .cid-rR2EC09155 .row {
        padding: 0 1rem;
    }
}

.cid-rR7q0W8pLz {
    padding-top: 45px;
    padding-bottom: 30px;
    background-color: #161616;
}

.cid-rR7q0W8pLz .link {
    margin: 0;
}

.cid-rR7q0W8pLz .row {
    justify-content: center;
}

@media (max-width: 992px) {
    .cid-rR7q0W8pLz .card {
        margin-bottom: 1rem;
    }
}

.cid-rR7q0W8pLz .card-title {
    margin-bottom: 0rem;
}

.cid-rR7q0W8pLz a {
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.cid-rR7q0W8pLz .card-box:hover a:hover {
    color: #5271FF !important;
}

.cid-rR7q0W8pLz .align-center {
    text-align: center;
}

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

@media (max-width: 767px) {
    .cid-rRByelaALf .col-sm-6 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .cid-rRByelaALf .card {
        margin-bottom: 2rem;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .cid-rRByelaALf .card {
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    .cid-rRByelaALf .card-wrapper {
        padding: 0 1.5rem;
    }
}

@media (min-width: 767px) {
    .cid-rRByelaALf .row {
        margin: 0;
    }
}

.cid-rRByelaALf .container {
    border-top: 1px solid #EBEBEB;
    padding-top: 2rem;
}

.cid-rR7CaC6iKS {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #000000;
}

.cid-rR7CaC6iKS .media-container-row {
    align-items: center;
}

.cid-rR7CaC6iKS .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}

.cid-rR7CaC6iKS .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}

.cid-rR7CaC6iKS .media-container-row .foot-menu li p {
    margin: 0;
}

.cid-rR7CaC6iKS .foot-menu li {
    padding: 0.1rem 0rem !important;
    position: relative;
    margin: 0 0.5rem;
}

.cid-rR7CaC6iKS .foot-menu-item {
    transform: 0.2s;
}

.cid-rR7CaC6iKS .foot-menu-item:hover a {
    color: #5271FF !important;
}

.cid-rR7CaC6iKS .foot-menu-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    width: 0;
    height: 1px;
    -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.cid-rR7CaC6iKS .foot-menu-item:hover::before {
    width: 60px;
    background-color: #5271FF;
}

.cid-rR7CaC6iKS .mbr-text {
    color: #747474;
}

@media (max-width: 992px) {
    .cid-rR7CaC6iKS .foot-menu {
        justify-content: center;
    }
    .cid-rR7CaC6iKS .mbr-text {
        text-align: center;
    }
    .cid-rR7CaC6iKS .media-container-row {
        padding: 0;
    }
}

@media (min-width: 992px) {
    .cid-rR7CaC6iKS .foot-menu {
        justify-content: flex-end;
    }
}

.cid-rR7CaC6iKS .link:hover {
    color: #ffffff;
}