/*@font-face {
    /* normal */


/*    font-family: "var(--main-tipo)";
    src: url("../../font/Louis_George_Cafe.ttf");*/


/* bold */


/*  font-family: "var(--main-tipo)";
    src: url("../../font/Louis_George_Cafe_Bold.ttf");*/


/* light */


/*   font-family: "var(--main-tipo)";
    src: url("../../font/Louis_George_Cafe_Light.ttf");*/


/*}*/

body {
    /* font-family: var(--main-tipo); */
    font-family: var(--main-tipo);
}

h5 {
    font-family: var(--main-tipo), sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

h6 {
    font-family: var(--main-tipo), sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

td {
    font-family: var(--main-tipo), sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

p {
    font-family: var(--main-tipo), sans-serif;
    font-size: 1rem;
    line-height: 1.3;
}

span {
    font-family: var(--main-tipo), sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

small {
    font-family: var(--main-tipo), sans-serif;
    font-size: 0.8rem;
    line-height: 1.5;
}

.display-1 {
    font-family: var(--main-tipo), sans-serif;
    font-size: 4.6rem;
    line-height: 1.1;
}

.display-1>.code-iconfont {
    font-size: 5.75rem;
}

.display-2 {
    font-family: var(--main-tipo), sans-serif;
    font-size: 3rem;
    line-height: 1.1;
}

.display-2>.code-iconfont {
    font-size: 3.75rem;
}

.display-4 {
    font-family: var(--main-tipo), sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
}

.display-4>.code-iconfont {
    font-size: 1.375rem;
}

.display-5 {
    font-family: var(--main-tipo), sans-serif;
    font-size: 1.5rem;
    line-height: 30px;
}

.display-5>.code-iconfont {
    font-size: 2.75rem;
}

.display-7 {
    font-family: var(--main-tipo), sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
}

.display-7>.code-iconfont {
    font-size: 1.5rem;
}


/* ---- 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: 992px) {
    .display-1 {
        font-size: 3.68rem;
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 3.22rem;
        font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((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.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-4 {
        font-size: 0.88rem;
        font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-5 {
        /* font-size: 1.76rem; */
        font-size: 1.5rem;
        /* font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))); */
        /* line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)))); */
    }
    .display-7 {
        font-size: 0.96rem;
        font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
    }
}


/* Buttons */

.btn {
    padding: 0.6rem 1.2rem;
    /* border-radius: 4px; */
    background-color: var(--main-colorB);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.btn-md {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.btn-lg {
    padding: 1rem 2.6rem;
    border-radius: 4px;
}

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

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

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

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

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

.btn-primary,
.btn-primary:active {
    background-color: #55cbd3 !important;
    border-color: #55cbd3 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
    color: #ffffff !important;
    background-color: #2260d2 !important;
    border-color: #2260d2 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

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

.btn-secondary,
.btn-secondary:active {
    background-color: #ff6666 !important;
    border-color: #ff6666 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
    color: #ffffff !important;
    background-color: #ff0f0f !important;
    border-color: #ff0f0f !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

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

.btn-info,
.btn-info:active {
    background-color: #47b5ed !important;
    border-color: #47b5ed !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
    color: #ffffff !important;
    background-color: #148cca !important;
    border-color: #148cca !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

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

.btn-success,
.btn-success:active {
    background-color: #40b0bf !important;
    border-color: #40b0bf !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
    color: #ffffff !important;
    background-color: #2a747e !important;
    border-color: #2a747e !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

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

.btn-warning,
.btn-warning:active {
    background-color: #ffe161 !important;
    border-color: #ffe161 !important;
    color: #614f00 !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
    color: #0a0800 !important;
    background-color: #ffd10a !important;
    border-color: #ffd10a !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #614f00 !important;
    background-color: #ffd10a !important;
    border-color: #ffd10a !important;
}

.btn-danger,
.btn-danger:active {
    background-color: #e41414 !important;
    border-color: #e41414 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
    color: #ffffff !important;
    background-color: #ff5f0f !important;
    border-color: #ff5f0f !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

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

.btn-white,
.btn-white:active {
    background-color: #fafafa !important;
    border-color: #fafafa !important;
    color: #7a7a7a !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
    color: #4f4f4f !important;
    background-color: #cfcfcf !important;
    border-color: #cfcfcf !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-white.disabled,
.btn-white:disabled {
    color: #7a7a7a !important;
    background-color: #cfcfcf !important;
    border-color: #cfcfcf !important;
}

.btn-black,
.btn-black:active {
    background-color: #232323 !important;
    border-color: #232323 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
    color: #ffffff !important;
    background-color: #000000 !important;
    border-color: #000000 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

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

.btn-primary-outline,
.btn-primary-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #55cbd3;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
    color: #2260d2 !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

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

.btn-secondary-outline,
.btn-secondary-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #ff6666;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
    color: #ff0f0f !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

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

.btn-info-outline,
.btn-info-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #47b5ed;
}

.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
    color: #148cca !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

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

.btn-success-outline,
.btn-success-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #40b0bf;
}

.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
    color: #2a747e !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

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

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

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
    color: #ffd10a !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
    color: #614f00 !important;
    background-color: #ffe161 !important;
    border-color: #ffe161 !important;
}

.btn-danger-outline,
.btn-danger-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #e41414;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
    color: #ff5f0f !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

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

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

.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
    color: #000000 !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

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

.btn-white-outline,
.btn-white-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #fafafa;
}

.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
    color: #cfcfcf !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

.btn-white-outline.disabled,
.btn-white-outline:disabled {
    color: #7a7a7a !important;
    background-color: #fafafa !important;
    border-color: #fafafa !important;
}

.text-primary {
    color: #55cbd3 !important;
}

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

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

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

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

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

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

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

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

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

a.text-success:hover,
a.text-success:focus,
a.text-success.active {
    color: #266a73 !important;
}

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

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

a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
    color: #ff5500 !important;
}

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

a.text-black:hover,
a.text-black:focus,
a.text-black.active {
    color: #000000 !important;
}


/* a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
    position: relative;
    background-image: transparent;
    background-size: 10000px 2px;
    background-repeat: no-repeat;
    background-position: 0px 1.2em;
    background-position: -10000px 1.2em;
} */

a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
    position: relative;
    background-image: transparent;
    /* background-size: 10000px 2px; */
    background-repeat: no-repeat;
    background-position: 0px 1.2em;
    background-position: -10000px 1.2em;
}

a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
    transition: background-position 2s ease-in-out;
    background-image: linear-gradient(currentColor 50%, currentColor 50%);
    background-position: 0px 1.2em;
}

.nav-tabs .nav-link.active {
    color: #55cbd3;
}

.nav-tabs .nav-link:not(.active) {
    color: #232323;
}

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

.alert-info {
    background-color: #47b5ed;
}

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

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

.code-gallery-filter li.active .btn {
    background-color: #55cbd3;
    border-color: #55cbd3;
    color: #ffffff;
}

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

a,
a:hover {
    color: #55cbd3;
}

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

.code-plan-header.bg-success .code-plan-subtitle,
.code-plan-header.bg-success .code-plan-price-desc {
    color: #a0d8df;
}

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

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

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


/* Scroll to top button*/

.scrollToTop_wraper {
    display: none;
}

.form-control {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400;
}

.form-control>.code-iconfont {
    font-size: 1.375rem;
}

.form-control:hover,
.form-control:focus {
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
    border-color: #55cbd3 !important;
}

.form-control:-webkit-input-placeholder {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400;
}

.form-control:-webkit-input-placeholder>.code-iconfont {
    font-size: 1.375rem;
}

blockquote {
    border-color: #55cbd3;
}


/* Forms */

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

.jq-number__spin {
    transition: 0.25s ease;
}

.jq-number__spin:hover {
    border-color: #55cbd3;
}

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

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

.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: #55cbd3 !important;
    box-shadow: none !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover {
    color: #000000 !important;
    background: #ff6666 !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='%236592e6' %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;
}

body {
    overflow-x: hidden;
}

a {
    transition: color 0.6s;
}

.style_000 {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

.style_000 nav.navbar {
    position: fixed;
}

.style_000 .dropdown-item:before {
    font-family: var(--main-tipo) !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);
    transition: all 0.25s ease-in-out;
}

.style_000 .dropdown-menu {
    padding: 0;
}

.style_000 .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.style_000 .dropdown-item:hover,
.style_000 .dropdown-item:focus {
    background: #55cbd3 !important;
    color: white !important;
}

.style_000 .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: .667em 1em !important;
}

.style_000 .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.style_000 .nav-link {
    position: relative;
}

.style_000 .container {
    display: flex;
    margin: auto;
}

.style_000 .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: .5rem;
}

.style_000 .navbar-caption {
    padding-right: 4rem;
}

.style_000 .dropdown-menu,
.style_000 .navbar.opened {
    background: #ffffff !important;
}

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

.style_000 .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

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

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

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

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

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

.style_000 .navbar {
    min-height: 77px;
    transition: all .3s;
    border-bottom: 1px solid transparent;
    background: #ffffff;
}

.style_000 .navbar:not(.navbar-short) {
    border-bottom: 1px solid #e6e6e6;
}

.style_000 .navbar.opened {
    transition: all .3s;
}

.style_000 .navbar .dropdown-item {
    padding: .5rem 1.8rem;
}

.style_000 .navbar .navbar-logo img {
    width: auto;
}

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

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

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

@media (min-width: 992px) {
    .style_000 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3.8rem);
    }
}

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

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

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

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

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

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

@media (max-width: 991px) {
    .style_000 .navbar .nav-item .nav-link::before {
        display: none;
    }
    .style_000 .navbar.opened .dropdown-menu {
        top: 0;
    }
    .style_000 .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .style_000 .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .style_000 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: 0.5rem;
        margin-top: 0.2rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 55%;
    }
    .style_000 .navbar .navbar-logo img {
        height: 3.8rem !important;
    }
    .style_000 .navbar ul.navbar-nav li {
        margin: auto;
    }
    .style_000 .navbar .dropdown-menu .dropdown-item {
        padding: .25rem 1.5rem !important;
        text-align: center;
    }
    .style_000 .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }
    .style_000 .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .style_000 .navbar .icons-menu {
        padding-left: 0;
        padding-top: .5rem;
        padding-bottom: .5rem;
    }
}

.style_000 .navbar.navbar-short {
    min-height: 60px;
}

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

.style_000 .navbar.navbar-short .navbar-brand {
    padding: 0;
}

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

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

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

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

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

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

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

.style_000 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

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

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

.style_000 ul.navbar-nav {
    flex-wrap: wrap;
}

.style_000 .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.style_000 .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.3rem;
    text-align: center;
}

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

.style_001 {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

.style_001 nav.navbar {
    position: fixed;
}

.style_001 .dropdown-item:before {
    font-family: var(--main-tipo) !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);
    transition: all 0.25s ease-in-out;
}

.style_001 .dropdown-menu {
    padding: 0;
}

.style_001 .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.style_001 .dropdown-item:hover,
.style_001 .dropdown-item:focus {
    background: #55cbd3 !important;
    color: white !important;
}

.style_001 .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: .667em 1em !important;
}

.style_001 .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.style_001 .nav-link {
    position: relative;
}

.style_001 .container {
    display: flex;
    margin: auto;
}

.style_001 .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: .5rem;
}

.style_001 .navbar-caption {
    padding-right: 4rem;
}

.style_001 .dropdown-menu,
.style_001 .navbar.opened {
    background: #ffffff !important;
}

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

.style_001 .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

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

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

.style_001 .dropdown .dropdown-menu .dropdown-item .code-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
}

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

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

.style_001 .navbar {
    min-height: 77px;
    transition: all .3s;
    border-bottom: 1px solid transparent;
    background: #ffffff;
}

.style_001 .navbar:not(.navbar-short) {
    border-bottom: 1px solid #e6e6e6;
}

.style_001 .navbar.opened {
    transition: all .3s;
}

.style_001 .navbar .dropdown-item {
    padding: .5rem 1.8rem;
}

.style_001 .navbar .navbar-logo img {
    width: auto;
}

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

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

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

@media (min-width: 992px) {
    .style_001 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3.8rem);
    }
}

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

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

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

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

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

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

@media (max-width: 991px) {
    .style_001 .navbar .nav-item .nav-link::before {
        display: none;
    }
    .style_001 .navbar.opened .dropdown-menu {
        top: 0;
    }
    .style_001 .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .style_001 .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .style_001 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: 0.5rem;
        margin-top: 0.2rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 55%;
    }
    .style_001 .navbar .navbar-logo img {
        height: 3.8rem !important;
    }
    .style_001 .navbar ul.navbar-nav li {
        margin: auto;
    }
    .style_001 .navbar .dropdown-menu .dropdown-item {
        padding: .25rem 1.5rem !important;
        text-align: center;
    }
    .style_001 .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }
    .style_001 .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .style_001 .navbar .icons-menu {
        padding-left: 0;
        padding-top: .5rem;
        padding-bottom: .5rem;
    }
}

.style_001 .navbar.navbar-short {
    min-height: 60px;
}

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

.style_001 .navbar.navbar-short .navbar-brand {
    padding: 0;
}

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

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

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

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

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

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

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

.style_001 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

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

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

.style_001 ul.navbar-nav {
    flex-wrap: wrap;
}

.style_001 .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.style_001 .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.3rem;
    text-align: center;
}

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

.style_002 {
    background-image: url("../../../assets/images/background13.jpg");
}

.style_002 .code-fallback-image.disabled {
    display: none;
}

.style_002 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_003 {
    background-image: url("../../../assets/images/background7.jpg");
}

.style_003 .code-fallback-image.disabled {
    display: none;
}

.style_003 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_004 {
    background-image: url("../../../assets/images/background16.jpg");
}

.style_004 .code-fallback-image.disabled {
    display: none;
}

.style_004 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_006 {
    display: flex;
    background-image: url("../../../assets/images/background12.jpg");
}

.style_006 .code-overlay {
    background-color: #353535;
    opacity: 0.5;
}

.style_006 .content-wrap {
    padding: 5rem 1rem;
}

@media (min-width: 768px) {
    .style_006 {
        align-items: flex-start;
    }
    .style_006 .row {
        justify-content: flex-start;
    }
    .style_006 .content-wrap {
        width: 51%;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .style_006 .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .style_006 {
        -webkit-align-items: center;
        align-items: center;
    }
    .style_006 .code-row {
        -webkit-justify-content: center;
        justify-content: center;
    }
    .style_006 .content-wrap {
        width: 100%;
    }
}

.style_005 {
    background-image: url("../../../assets/images/background9.jpg");
}

.style_005 .code-fallback-image.disabled {
    display: none;
}

.style_005 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_007 {
    background-image: url("../../../assets/images/background10.jpg");
}

.style_007 .code-fallback-image.disabled {
    display: none;
}

.style_007 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_008 {
    background-color: #4479d9;
}

.style_008 .code-fallback-image.disabled {
    display: none;
}

.style_008 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_009 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_009 .code-fallback-image.disabled {
    display: none;
}

.style_009 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_009 .image-wrap img {
    width: 100%;
}

@media (min-width: 992px) {
    .style_009 .image-wrap img {
        display: block;
        margin: auto;
        width: 100%;
    }
}

.style_010 {
    padding-top: 6rem;
    padding-bottom: 0rem;
    background-color: #9fdbf8;
}

.style_010 .code-fallback-image.disabled {
    display: none;
}

.style_010 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_010 .image-wrap img {
    width: 100%;
}

@media (min-width: 992px) {
    .style_010 .image-wrap img {
        display: block;
        margin: auto;
        width: 80%;
    }
}

.style_011 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffd901;
}

.style_011 .code-fallback-image.disabled {
    display: none;
}

.style_011 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_011 .row {
    align-items: center;
}

@media (max-width: 991px) {
    .style_011 .image-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 992px) {
    .style_011 .text-wrapper {
        padding: 0 2rem;
    }
}

.style_012 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-image: url("../../../assets/images/background8.jpg");
}

.style_012 .code-fallback-image.disabled {
    display: none;
}

.style_012 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_012 .card-wrapper {
    background: #ffffff;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .style_012 .card-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .style_012 .card-wrapper {
        padding: 2rem;
    }
}

@media (min-width: 992px) {
    .style_012 .card-wrapper {
        padding: 4rem;
    }
}

.style_013 {
    background-image: linear-gradient(135deg, #e43f3f 10%, #4479d9 100%) !important;
}

.style_013 .code-fallback-image.disabled {
    display: none;
}

.style_013 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_014 {
    background-image: url("../../../assets/images/background15.jpg");
}

.style_014 .code-fallback-image.disabled {
    display: none;
}

.style_014 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_014 .social-row .soc-item {
    display: inline-block;
    text-align: center;
    margin-bottom: 1rem;
    margin-right: .7rem;
}

.style_014 .social-row .soc-item .code-iconfont {
    font-size: 32px;
    border-radius: 50%;
    padding: 0.6rem;
    border: 2px solid #232323;
    transition: all 0.3s;
    color: #232323;
}

.style_014 .social-row .soc-item .code-iconfont:hover {
    background-color: #232323;
    color: #ffffff;
}

.style_015 {
    background-color: #bed3f9;
}

.style_015 .code-fallback-image.disabled {
    display: none;
}

.style_015 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_015 .row {
    flex-direction: row-reverse;
}

@media (max-width: 991px) {
    .style_015 .image-wrapper {
        margin-bottom: 2rem;
    }
}

.style_015 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .style_015 .text-wrapper {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .style_015 .text-wrapper {
        margin-bottom: 2rem;
    }
}

.style_016 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_016 .code-fallback-image.disabled {
    display: none;
}

.style_016 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 767px) {
    .style_016 .row {
        flex-direction: column-reverse;
    }
    .style_016 .code-figure {
        margin-bottom: 1.5rem;
    }
}

.style_016 .row {
    align-items: center;
}

@media (min-width: 992px) {
    .style_016 .text-wrapper {
        padding: 0 2rem;
    }
}

.style_016 .media-content,
.style_016 .code-figure {
    align-self: center;
}

.style_016 .code-figure iframe {
    width: 100%;
}

.style_017 {
    padding-top: 6rem;
    padding-bottom: 0rem;
    background-color: #fff0b0;
}

.style_017 .code-fallback-image.disabled {
    display: none;
}

.style_017 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_017 .code-section-title,
.style_017 .code-text,
.style_017 .code-section-btn {
    text-align: center;
}

.style_017 .video-wrapper {
    margin: auto;
}

.style_017 .video-wrapper iframe {
    width: 100%;
}

.style_018 {
    background-color: #bed3f9;
}

.style_018 .icon-wrapper {
    margin: auto;
    background-color: #55cbd3;
    color: #fafafa;
    border-radius: 50%;
    font-size: 48px;
    cursor: pointer;
    width: 6rem;
    height: 6rem;
    transition: all 0.25s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.style_018 .icon-wrapper span {
    margin-left: 10px;
}

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

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

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

.style_018 .close {
    position: fixed;
    opacity: 0.5;
    font-size: 22px;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    display: flex;
}

.style_018 .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}

.style_019 {
    background-image: url("../../../assets/images/background8.jpg");
}

.style_019 .code-fallback-image.disabled {
    display: none;
}

.style_019 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_019 .icons-media-container {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 4rem;
}

.style_019 .icons-media-container .code-iconfont {
    font-size: 96px;
    color: #ffffff;
}

.style_019 .icons-media-container .icon-block {
    padding-bottom: 1rem;
}

.style_019 .code-text {
    color: #ffffff;
}

.style_019 .card {
    padding-bottom: 1.5rem;
}

.style_019 .card-wrapper {
    min-height: 220px;
    transition: all 0.3s;
    border-radius: 4px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.style_019 .card-wrapper .code-iconfont {
    display: block;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.style_019 .card-wrapper .card-title {
    color: #ffffff;
}

.style_020 {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}

.style_020 .code-fallback-image.disabled {
    display: none;
}

.style_020 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (min-width: 1500px) {
    .style_020 .container {
        max-width: 1400px;
    }
}

.style_020 .code-iconfont {
    display: block;
    font-size: 5rem;
    color: #55cbd3;
    margin-bottom: 2rem;
}

.style_020 .card-wrapper {
    margin-top: 3rem;
}

.style_020 .row {
    justify-content: center;
}

.style_021 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #fafafa;
}

.style_021 .code-fallback-image.disabled {
    display: none;
}

.style_021 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_021 .code-iconfont {
    display: block;
    font-size: 4rem;
    color: #55cbd3;
    margin-bottom: 2rem;
}

.style_021 .card-wrapper {
    min-height: 220px;
    transition: all 0.3s;
    border-radius: 4px;
    padding: 1rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.style_022 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    /* background-color: #ffffff; */
    background-color: #000000;
}

.style_022 img,
.style_022 .item-img {
    width: 100%;
}

.style_022 .item:focus,
.style_022 span:focus {
    outline: none;
}

.style_022 .item {
    cursor: pointer;
    margin-bottom: 2rem;
}

.style_022 .item-wrapper {
    position: relative;
    border-radius: 4px;
    background: #fafafa;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

@media (min-width: 992px) {
    .style_022 .item-wrapper .item-content {
        padding: 2rem 2rem 0;
    }
    .style_022 .item-wrapper .item-footer {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 991px) {
    .style_022 .item-wrapper .item-content {
        padding: 1rem 1rem 0;
    }
    .style_022 .item-wrapper .item-footer {
        padding: 0 1rem 1rem;
    }
}

.style_022 .code-section-btn {
    margin-top: auto !important;
}

.style_022 .code-section-title {
    color: #232323;
}

.style_022 .code-text,
.style_022 .code-section-btn {
    text-align: left;
}

.style_022 .item-title {
    text-align: left;
}

.style_022 .item-subtitle {
    text-align: left;
}

.style_023 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-image: url("../../../assets/images/background3.jpg");
}

.style_023 .code-overlay {
    background: #fafafa;
    opacity: 0.6;
}

.style_023 img,
.style_023 .item-img {
    width: 100%;
    height: 100%;
    height: 300px;
    object-fit: cover;
}

.style_023 .item:focus,
.style_023 span:focus {
    outline: none;
}

.style_023 .item {
    cursor: pointer;
    margin-bottom: 2rem;
}

.style_023 .item-wrapper {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

@media (min-width: 992px) {
    .style_023 .item-wrapper .item-content {
        padding: 2rem 2rem 0;
    }
    .style_023 .item-wrapper .item-footer {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 991px) {
    .style_023 .item-wrapper .item-content {
        padding: 1rem 1rem 0;
    }
    .style_023 .item-wrapper .item-footer {
        padding: 0 1rem 1rem;
    }
}

.style_023 .code-section-btn {
    margin-top: auto !important;
}

.style_023 .code-section-title {
    color: #232323;
}

.style_023 .code-text,
.style_023 .code-section-btn {
    text-align: left;
}

.style_023 .item-title {
    text-align: left;
}

.style_023 .item-subtitle {
    text-align: left;
    color: #bbbbbb;
}

.style_023_cart {
    padding-top: 6rem;
    padding-bottom: 6rem;
    /* background-image: url("../../../assets/images/background3.jpg"); */
    background-color: #232323;
}

.style_023_cart .code-overlay {
    background: #fafafa;
    opacity: 0.6;
}

.style_023_cart img,
.style_023_cart .item-img {
    width: 100%;
    height: 100%;
    height: 300px;
    object-fit: cover;
}

.style_023_cart .item:focus,
.style_023_cart span:focus {
    outline: none;
}

.style_023_cart .item {
    cursor: pointer;
    margin-bottom: 2rem;
}

.style_023_cart .item-wrapper {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    /* height: 100%; */
    display: flex;
    flex-flow: column nowrap;
}

@media (min-width: 992px) {
    .style_023_cart .item-wrapper .item-content {
        padding: 2rem 2rem 0;
    }
    .style_023_cart .item-wrapper .item-footer {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 991px) {
    .style_023_cart .item-wrapper .item-content {
        padding: 1rem 1rem 0;
    }
    .style_023_cart .item-wrapper .item-footer {
        padding: 0 1rem 1rem;
    }
}

.style_023_cart .code-section-btn {
    margin-top: auto !important;
}

.style_023_cart .code-section-title {
    color: #232323;
}

.style_023_cart .code-text,
.style_023_cart .code-section-btn {
    text-align: left;
}

.style_023_cart .item-title {
    text-align: left;
}

.style_023_cart .item-subtitle {
    text-align: left;
    color: #bbbbbb;
}

.style_024 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_024 .code-fallback-image.disabled {
    display: none;
}

.style_024 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_024 .card-wrapper {
    border-radius: 4px;
    background: #fafafa;
}

@media (min-width: 992px) {
    .style_024 .card-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    .style_024 .card-wrapper {
        padding: 1rem;
        margin-bottom: 2rem;
    }
}

.style_024 .row {
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .style_024 .row .row {
        flex-direction: column-reverse;
    }
    .style_024 .row .row .img-wrapper {
        margin-bottom: 2rem;
    }
}

.style_024 .img-wrapper img {
    width: 100%;
    object-fit: cover;
}

.style_024 .card-subtitle {
    color: #0095ff;
}

.style_024 .code-text {
    color: #555555;
}

.style_025 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_025 .code-fallback-image.disabled {
    display: none;
}

.style_025 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_025 .card-box {
    padding: 2rem;
    width: 58.33%;
}

.style_025 .img-wrapper {
    width: 41.66%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.style_025 .img1 {
    background: #ffe161;
}

.style_025 .img2 {
    background: #55cbd3;
}

.style_025 .code-iconfont {
    display: block;
    font-size: 8rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.style_025 .card {
    margin: auto;
    min-height: 280px;
    transition: all 0.3s;
}

.style_025 .card-wrapper {
    background: #fafafa;
    border-radius: 4px;
    display: flex;
    overflow: hidden;
    justify-content: space-between;
}

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

@media (max-width: 767px) {
    .style_025 .card-wrapper {
        flex-direction: column;
    }
    .style_025 .card-box {
        padding: 1rem;
    }
    .style_025 .card-box,
    .style_025 .img-wrapper {
        width: 100%;
    }
    .style_025 .img-wrapper {
        padding: 4rem 1rem;
    }
    .style_025 .code-flex {
        flex-direction: column-reverse;
    }
}

.style_025 .card-subtitle {
    color: #0077ff;
}

.style_025 .code-text,
.style_025 .link-wrap {
    color: #555555;
}

.style_026 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_026 .code-fallback-image.disabled {
    display: none;
}

.style_026 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_026 .card-wrapper {
    padding-right: 2rem;
}

@media (max-width: 992px) {
    .style_026 .card {
        margin-bottom: 2rem!important;
    }
    .style_026 .card-wrapper {
        padding: 0 1rem;
    }
}

@media (max-width: 767px) {
    .style_026 .link-wrap {
        align-items: center;
    }
}

.style_026 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

.style_027 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_027 .code-fallback-image.disabled {
    display: none;
}

.style_027 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_027 .item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.style_027 .icon-box {
    background: #55cbd3;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.style_027 .code-iconfont {
    font-size: 2rem;
    color: #ffffff;
}

@media (max-width: 991px) {
    .style_027 .card {
        margin-bottom: 2rem;
    }
    .style_027 .card-wrapper {
        margin-bottom: 2rem;
    }
}

.style_028 {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}

.style_028 .code-fallback-image.disabled {
    display: none;
}

.style_028 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_028 .card-box {
    z-index: 10;
    position: relative;
}

@media (min-width: 1500px) {
    .style_028 .container {
        max-width: 1400px;
    }
}

.style_028 .card {
    margin: auto;
}

.style_028 .code-iconfont {
    display: block;
    font-size: 5rem;
    color: #55cbd3;
    margin-bottom: 2rem;
}

.style_028 .card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.style_028 .row {
    justify-content: center;
}

.style_029 {
    padding-top: 6rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_029 .code-fallback-image.disabled {
    display: none;
}

.style_029 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_029 .card-wrapper {
    display: flex;
}

@media (max-width: 991px) {
    .style_029 .card-wrapper {
        margin-bottom: 2rem;
    }
}

.style_029 .code-iconfont {
    font-size: 2rem;
    color: #55cbd3;
    padding-right: 1.5rem;
}

.style_030 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_030 .code-fallback-image.disabled {
    display: none;
}

.style_030 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_030 .content-wrapper {
    background: #fafafa;
}

@media (max-width: 991px) {
    .style_030 .content-wrapper .row {
        flex-direction: column-reverse;
    }
    .style_030 .content-wrapper .image-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .style_030 .content-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .style_030 .content-wrapper {
        padding: 2rem;
    }
}

@media (min-width: 992px) {
    .style_030 .content-wrapper {
        padding: 5rem 3rem;
    }
    .style_030 .content-wrapper .text-wrapper {
        padding-right: 2rem;
    }
}

.style_030 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

.style_031 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_031 .code-fallback-image.disabled {
    display: none;
}

.style_031 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_031 .content-wrapper {
    background: #fafafa;
}

@media (max-width: 991px) {
    .style_031 .content-wrapper .image-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .style_031 .content-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .style_031 .content-wrapper {
        padding: 2rem;
    }
}

@media (min-width: 992px) {
    .style_031 .content-wrapper {
        padding: 5rem 3rem;
    }
    .style_031 .content-wrapper .text-wrapper {
        padding-left: 2rem;
    }
}

.style_031 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

.style_032 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_032 .code-fallback-image.disabled {
    display: none;
}

.style_032 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_033 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_033 .code-fallback-image.disabled {
    display: none;
}

.style_033 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_033 .row {
    align-items: center;
}

@media (max-width: 991px) {
    .style_033 .row {
        flex-direction: column-reverse;
    }
    .style_033 .image-wrapper {
        margin-bottom: 2rem;
    }
    .style_033 .card-wrapper {
        padding: 0 1rem;
    }
}

@media (min-width: 992px) {
    .style_033 .card-wrapper {
        padding-right: 2rem;
    }
}

.style_033 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

.style_034 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_034 .code-section-btn {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}

.style_035 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #4479d9;
}

.style_035 .code-fallback-image.disabled {
    display: none;
}

.style_035 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_035 .code-section-title {
    color: #ffffff;
}

.style_036 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #40b0bf;
}

.style_036 .code-fallback-image.disabled {
    display: none;
}

.style_036 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_036 .card {
    border-radius: 0;
}

@media (min-width: 992px) {
    .style_036 .card {
        border-right: 1px solid white;
    }
}

@media (max-width: 991px) {
    .style_036 .card {
        border-right: 0px;
        border-bottom: 1px solid white;
    }
}

.style_036 .wrapper {
    padding: 30px 0;
}

.style_036 .code-section-title {
    color: #fafafa;
}

.style_036 .code-text,
.style_036 .code-section-btn {
    color: #ffffff;
}

.style_037 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-image: url("../../../assets/images/background4.jpg");
}

.style_037 .code-fallback-image.disabled {
    display: none;
}

.style_037 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_037 .code-text,
.style_037 .code-section-btn {
    color: #232323;
}

.style_037 .card-title,
.style_037 .card-box {
    color: #ffffff;
}

.style_037 .code-text,
.style_037 .link-wrap {
    color: #ffffff;
}

.style_038 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_038 .code-fallback-image.disabled {
    display: none;
}

.style_038 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_039 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_040 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_040 .line {
    background-color: #55cbd3;
    align: center;
    height: 2px;
    margin: 0 auto;
}

.style_041 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_041 blockquote {
    border-color: #55cbd3;
    border-radius: 4px;
    background-color: #fafafa;
}

.style_042 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_043 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_044 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_044 .code-fallback-image.disabled {
    display: none;
}

.style_044 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_044 ul {
    list-style: none;
    margin: 0;
    padding-left: 2.5rem;
}

.style_044 li {
    position: relative;
    margin-bottom: 1rem;
}

.style_044 ul li::before {
    position: absolute;
    left: -1.6rem;
    content: "\2022";
    color: #55cbd3;
    font-weight: bold;
    font-size: 2rem;
    width: 1.6rem;
}

.style_045 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_045 .code-fallback-image.disabled {
    display: none;
}

.style_045 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_045 ul {
    list-style: none;
    margin: 0;
    padding-left: 2.5rem;
}

.style_045 li {
    position: relative;
    margin-bottom: 1rem;
}

.style_045 ul li::before {
    position: absolute;
    left: -1.6rem;
    content: "\2022";
    color: #55cbd3;
    font-weight: bold;
    font-size: 2rem;
    width: 1.6rem;
}

.style_046 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_046 .code-fallback-image.disabled {
    display: none;
}

.style_046 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_046 .card-wrapper {
    background: #4479d9;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .style_046 .card-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .style_046 .card-wrapper {
        padding: 2rem;
    }
}

@media (min-width: 992px) {
    .style_046 .card-wrapper {
        padding: 4rem;
    }
}

.style_046 .code-text,
.style_046 .code-section-btn {
    color: #ffffff;
}

.style_046 .card-title,
.style_046 .card-box {
    text-align: left;
}

.style_047 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_047 .code-fallback-image.disabled {
    display: none;
}

.style_047 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .style_047 .image-wrapper {
        margin-bottom: 1rem;
    }
}

.style_047 img {
    width: 100%;
}

@media (min-width: 992px) {
    .style_047 .text-wrapper {
        padding: 2rem;
    }
}

.style_048 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_048 .code-fallback-image.disabled {
    display: none;
}

.style_048 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .style_048 .image-wrapper {
        margin-bottom: 1rem;
    }
}

.style_048 .row {
    flex-direction: row-reverse;
}

.style_048 img {
    width: 100%;
}

@media (min-width: 992px) {
    .style_048 .text-wrapper {
        padding: 2rem;
    }
}

.style_049 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_049 .code-fallback-image.disabled {
    display: none;
}

.style_049 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .style_049 .image-wrapper {
        margin-bottom: 1rem;
    }
}

.style_049 .row {
    flex-direction: row-reverse;
}

.style_049 img {
    width: 100%;
}

.style_050 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_050 .code-fallback-image.disabled {
    display: none;
}

.style_050 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .style_050 .image-wrapper {
        margin-bottom: 1rem;
    }
}

.style_050 .row {
    flex-direction: row-reverse;
}

.style_050 img {
    width: 100%;
}

.style_051 {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

.style_051 .code-fallback-image.disabled {
    display: none;
}

.style_051 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_051 .row {
    align-items: stretch;
    justify-content: center;
}

.style_051 .row .img-item {
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.style_051 .row .img-item img {
    width: 100%;
    object-fit: cover;
    min-height: 1px;
}

.style_052 {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

.style_052 .code-fallback-image.disabled {
    display: none;
}

.style_052 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_052 .row {
    align-items: stretch;
    justify-content: center;
}

.style_052 .img-item {
    position: relative;
}

.style_052 .img-item img {
    width: 100%;
    object-fit: cover;
}

.style_052 .img-item .img-description {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
    padding: .5rem 1rem .5rem;
    word-break: break-word;
}

.style_052 .img-item .img-description p {
    margin-bottom: 0;
}

.style_053 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_053 .code-media {
    position: relative;
}

.style_053 .code-media img {
    width: 100%;
    object-fit: cover;
}

.style_053 .icon-wrap {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.style_053 .code-media span {
    font-size: 4rem;
    transition: all 0.2s;
}

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

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

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

.style_053 .close {
    position: fixed;
    opacity: 0.5;
    font-size: 22px;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    display: flex;
}

.style_053 .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}

.style_054 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_054 .code-fallback-image.disabled {
    display: none;
}

.style_054 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_054 .video-wrapper iframe {
    width: 100%;
}

.style_054 .code-section-title,
.style_054 .code-section-subtitle,
.style_054 .code-text {
    text-align: center;
}

.style_055 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_055 .code-fallback-image.disabled {
    display: none;
}

.style_055 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_055 .video-wrapper iframe {
    width: 100%;
}

.style_055 .code-section-title,
.style_055 .code-section-subtitle,
.style_055 .code-text {
    text-align: center;
}

.style_056 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_056 .code-fallback-image.disabled {
    display: none;
}

.style_056 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_056 .video-wrapper iframe {
    width: 100%;
}

.style_056 .code-section-title,
.style_056 .code-description {
    text-align: center;
}

@media (min-width: 992px) {
    .style_056 .text-wrapper {
        padding: 2rem;
    }
}

.style_057 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_057 .code-fallback-image.disabled {
    display: none;
}

.style_057 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_057 .row {
    flex-direction: row-reverse;
}

.style_057 .video-wrapper iframe {
    width: 100%;
}

.style_057 .code-section-title,
.style_057 .code-description {
    text-align: center;
}

@media (min-width: 992px) {
    .style_057 .text-wrapper {
        padding: 2rem;
    }
}

.style_058 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_058 img,
.style_058 .item-img {
    width: 100%;
}

.style_058 .item:focus,
.style_058 span:focus {
    outline: none;
}

.style_058 .item {
    cursor: pointer;
    margin-bottom: 2rem;
    position: relative;
}

.style_058 .row {
    margin-left: 0;
    margin-right: 0;
}

.style_058 .item {
    padding: 0;
    margin: 0;
}

.style_058 .item-wrapper {
    position: unset;
    border-radius: 4px;
    background: #fafafa;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

@media (min-width: 992px) {
    .style_058 .item-wrapper .item-content {
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    .style_058 .item-wrapper .item-content {
        padding: 1rem;
    }
}

.style_058 .code-section-btn {
    margin-top: auto !important;
}

.style_058 .code-section-title {
    color: #232323;
}

.style_059 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-image: url("../../../assets/images/background3.jpg");
}

.style_059 img,
.style_059 .item-img {
    width: 100%;
}

.style_059 .item:focus,
.style_059 span:focus {
    outline: none;
}

.style_059 .item {
    cursor: pointer;
    margin-bottom: 2rem;
    position: relative;
}

.style_059 .item-wrapper {
    position: unset;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

@media (min-width: 992px) {
    .style_059 .item-wrapper .item-content {
        padding: 2rem 2rem 0;
    }
    .style_059 .item-wrapper .item-footer {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 991px) {
    .style_059 .item-wrapper .item-content {
        padding: 1rem 1rem 0;
    }
    .style_059 .item-wrapper .item-footer {
        padding: 0 1rem 1rem;
    }
}

.style_059 .code-section-btn {
    margin-top: auto !important;
}

.style_059 .code-section-title {
    color: #ffffff;
}

.style_059 .code-text,
.style_059 .code-section-btn {
    text-align: center;
}

.style_059 .item-title {
    text-align: center;
}

.style_059 .item-subtitle {
    text-align: left;
}

.style_060 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_060 img,
.style_060 .item-img {
    width: 100%;
}

.style_060 .item:focus,
.style_060 span:focus {
    outline: none;
}

.style_060 .item {
    cursor: pointer;
    margin-bottom: 2rem;
}

.style_060 .item-wrapper {
    position: relative;
    border-radius: 4px;
    background: #fafafa;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

@media (min-width: 992px) {
    .style_060 .item-wrapper .item-content {
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    .style_060 .item-wrapper .item-content {
        padding: 1rem;
    }
}

.style_060 .code-section-btn {
    margin-top: auto !important;
}

.style_060 .code-section-title {
    color: #232323;
}

.style_060 .code-text,
.style_060 .code-section-btn {
    text-align: left;
}

.style_060 .item-title {
    text-align: left;
}

.style_060 .item-subtitle {
    text-align: center;
}

.style_061 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_061 .code-fallback-image.disabled {
    display: none;
}

.style_061 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_061 .row {
    margin-left: 0;
    margin-right: 0;
}

.style_061 .item {
    padding-left: 0;
    padding-right: 0;
}

.style_061 .item-wrapper {
    height: 100%;
    position: relative;
}

.style_061 .item-wrapper img {
    height: 100%;
    object-fit: cover;
}

.style_061 .item-wrapper .icon-wrapper {
    pointer-events: none;
    position: absolute;
    width: 60px;
    height: 60px;
    font-size: 22px;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    opacity: 0;
    color: #ffffff;
    transform: translateX(-50%) translateY(-50%);
    background-color: #1b1b1b;
    transition: 0.2s;
}

.style_061 .item-wrapper:hover .icon-wrapper {
    opacity: 0.7;
}

.style_061 .carousel-control,
.style_061 .close {
    background: #1b1b1b;
}

.style_061 .carousel-control-prev {
    margin-left: 2.5rem;
}

.style_061 .carousel-control-prev span {
    margin-right: 5px;
}

.style_061 .carousel-control-next {
    margin-right: 2.5rem;
}

.style_061 .carousel-control-next span {
    margin-left: 5px;
}

.style_061 .close {
    position: fixed;
    opacity: 0.5;
    font-size: 22px;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    font-family: var(--main-tipo);
    align-items: center;
    justify-content: center;
    display: flex;
}


/* .style_061 .close::before {
    content: '\e91a';
} */

.style_061 .close::before {
    content: 'X';
    /* Puedes reemplazar 'X' por la letra o carácter que desees */
    font-family: Arial, sans-serif;
    /* Ejemplo de una fuente estándar, como Arial */
    font-weight: bold;
}

.style_061 .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}

.style_061 .carousel-control {
    display: flex;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.style_061 .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_061 .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_061 .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}

.style_061 .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 3px;
}

.style_061 .carousel-indicators li {
    max-width: 15px;
    height: 15px;
    width: 15px;
    max-height: 15px;
    margin: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s;
}

.style_061 .carousel-indicators li.active,
.style_061 .carousel-indicators li:hover {
    opacity: 0.9;
}

.style_061 .carousel-indicators li::after,
.style_061 .carousel-indicators li::before {
    content: none;
}

.style_061 .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}

@media (max-width: 768px) {
    .style_061 .carousel-indicators {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .style_061 .carousel-indicators {
        margin-bottom: 3.625rem !important;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (max-width: 767px) {
    .style_061 .carousel-indicators {
        display: none;
    }
}

.style_061 .carousel-inner {
    display: flex;
    align-items: center;
}

.style_061 .carousel-inner>.active {
    display: block;
}

.style_061 .carousel-control.left {
    left: 0;
    margin-left: 2.5rem;
}

.style_061 .carousel-control.right {
    right: 0;
    margin-right: 2.5rem;
}

.style_061 .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}

@media (max-width: 768px) {
    .style_061 .carousel-control,
    .style_061 .carousel-indicators,
    .style_061 .modal .close {
        position: fixed;
    }
}

@media (max-width: 767px) {
    .style_061 .code-slider .carousel-control {
        top: auto;
        bottom: 20px;
    }
    .style_061 .code-slider>.container .carousel-control {
        margin-bottom: 0;
    }
}

.style_061 .carousel-indicators .active,
.style_061 .carousel-indicators li {
    width: 7px;
    height: 7px;
    margin: 3px;
    background: #000000;
    opacity: 0.5;
    border: 4px solid #000000;
}

.style_061 .carousel-indicators .active {
    background: #fff;
}

.style_061 .carousel-indicators li {
    max-width: 15px;
    max-height: 15px;
    border-radius: 50%;
}

.style_061 .modal {
    padding-left: 0 !important;
    position: fixed;
    overflow: hidden;
    padding-right: 0 !important;
}

.style_061 .modal-dialog {
    margin: 0 auto;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.style_061 .modal-content {
    border-radius: 0;
    border: none;
    background: transparent;
}

.style_061 .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
}

.style_061 .modal-body img {
    width: 100%;
    object-fit: contain;
    max-height: calc(100vh - 1.75rem);
}

.style_061 .carousel {
    width: 100%;
}

.style_061 .modal-backdrop.in {
    opacity: 0.8;
}

.style_061 .modal.fade .modal-dialog {
    transition: margin-top 0.3s ease-out;
}

.style_061 .modal.fade .modal-dialog,
.style_061 .modal.in .modal-dialog {
    transform: none;
}

.style_061 .code-gallery .item-wrapper {
    cursor: pointer;
}

.style_061 H6 {
    text-align: center;
}

.style_062 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_062 .code-fallback-image.disabled {
    display: none;
}

.style_062 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_062 .item {
    padding-bottom: 2rem;
}

.style_062 .item-wrapper {
    position: relative;
}

.style_062 .item-wrapper .icon-wrapper {
    pointer-events: none;
    position: absolute;
    width: 60px;
    height: 60px;
    font-size: 22px;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    opacity: 0;
    color: #ffffff;
    transform: translateX(-50%) translateY(-50%);
    background-color: #1b1b1b;
    transition: 0.2s;
}

.style_062 .item-wrapper:hover .icon-wrapper {
    opacity: 0.7;
}

.style_062 .carousel-control,
.style_062 .close {
    background: #1b1b1b;
}

.style_062 .carousel-control-prev {
    margin-left: 2.5rem;
}

.style_062 .carousel-control-prev span {
    margin-right: 5px;
}

.style_062 .carousel-control-next {
    margin-right: 2.5rem;
}

.style_062 .carousel-control-next span {
    margin-left: 5px;
}

.style_062 .close {
    position: fixed;
    opacity: 0.5;
    font-size: 22px;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    font-family: var(--main-tipo);
    align-items: center;
    justify-content: center;
    display: flex;
}

.style_062 .close::before {
    content: '\e91a';
}

.style_062 .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}

.style_062 .carousel-control {
    display: flex;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.style_062 .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_062 .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_062 .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}

.style_062 .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 3px;
}

.style_062 .carousel-indicators li {
    max-width: 15px;
    height: 15px;
    width: 15px;
    max-height: 15px;
    margin: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s;
}

.style_062 .carousel-indicators li.active,
.style_062 .carousel-indicators li:hover {
    opacity: 0.9;
}

.style_062 .carousel-indicators li::after,
.style_062 .carousel-indicators li::before {
    content: none;
}

.style_062 .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}

@media (max-width: 768px) {
    .style_062 .carousel-indicators {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .style_062 .carousel-indicators {
        margin-bottom: 3.625rem !important;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (max-width: 767px) {
    .style_062 .carousel-indicators {
        display: none;
    }
}

.style_062 .carousel-inner {
    display: flex;
    align-items: center;
}

.style_062 .carousel-inner>.active {
    display: block;
}

.style_062 .carousel-control.left {
    left: 0;
    margin-left: 2.5rem;
}

.style_062 .carousel-control.right {
    right: 0;
    margin-right: 2.5rem;
}

.style_062 .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}

@media (max-width: 768px) {
    .style_062 .carousel-control,
    .style_062 .carousel-indicators,
    .style_062 .modal .close {
        position: fixed;
    }
}

@media (max-width: 767px) {
    .style_062 .code-slider .carousel-control {
        top: auto;
        bottom: 20px;
    }
    .style_062 .code-slider>.container .carousel-control {
        margin-bottom: 0;
    }
}

.style_062 .carousel-indicators .active,
.style_062 .carousel-indicators li {
    width: 7px;
    height: 7px;
    margin: 3px;
    background: #000000;
    opacity: 0.5;
    border: 4px solid #000000;
}

.style_062 .carousel-indicators .active {
    background: #fff;
}

.style_062 .carousel-indicators li {
    max-width: 15px;
    max-height: 15px;
    border-radius: 50%;
}

.style_062 .modal {
    padding-left: 0 !important;
    position: fixed;
    overflow: hidden;
    padding-right: 0 !important;
}

.style_062 .modal-dialog {
    margin: 0 auto;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.style_062 .modal-content {
    border-radius: 0;
    border: none;
    background: transparent;
}

.style_062 .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
}

.style_062 .modal-body img {
    width: 100%;
    object-fit: contain;
    max-height: calc(100vh - 1.75rem);
}

.style_062 .carousel {
    width: 100%;
}

.style_062 .modal-backdrop.in {
    opacity: 0.8;
}

.style_062 .modal.fade .modal-dialog {
    transition: margin-top 0.3s ease-out;
}

.style_062 .modal.fade .modal-dialog,
.style_062 .modal.in .modal-dialog {
    transform: none;
}

.style_062 .code-gallery .item-wrapper {
    cursor: pointer;
}

.style_062 H6 {
    text-align: center;
}

.style_063 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_063 .code-fallback-image.disabled {
    display: none;
}

.style_063 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_063 .row {
    margin-left: 0;
    margin-right: 0;
}

.style_063 .item {
    padding-left: 0;
    padding-right: 0;
}

.style_063 .item-wrapper {
    height: 100%;
    position: relative;
}

.style_063 .item-wrapper img {
    height: 100%;
    object-fit: cover;
}

.style_063 .item-wrapper .icon-wrapper {
    pointer-events: none;
    position: absolute;
    width: 60px;
    height: 60px;
    font-size: 22px;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    opacity: 0;
    color: #ffffff;
    transform: translateX(-50%) translateY(-50%);
    background-color: #1b1b1b;
    transition: 0.2s;
}

.style_063 .item-wrapper:hover .icon-wrapper {
    opacity: 0.7;
}

.style_063 .carousel-control,
.style_063 .close {
    background: #1b1b1b;
}

.style_063 .carousel-control-prev {
    margin-left: 2.5rem;
}

.style_063 .carousel-control-prev span {
    margin-right: 5px;
}

.style_063 .carousel-control-next {
    margin-right: 2.5rem;
}

.style_063 .carousel-control-next span {
    margin-left: 5px;
}

.style_063 .close {
    position: fixed;
    opacity: 0.5;
    font-size: 22px;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    font-family: var(--main-tipo);
    align-items: center;
    justify-content: center;
    display: flex;
}

.style_063 .close::before {
    content: '\e91a';
}

.style_063 .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}

.style_063 .carousel-control {
    display: flex;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.style_063 .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_063 .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_063 .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}

.style_063 .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 3px;
}

.style_063 .carousel-indicators li {
    max-width: 15px;
    height: 15px;
    width: 15px;
    max-height: 15px;
    margin: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s;
}

.style_063 .carousel-indicators li.active,
.style_063 .carousel-indicators li:hover {
    opacity: 0.9;
}

.style_063 .carousel-indicators li::after,
.style_063 .carousel-indicators li::before {
    content: none;
}

.style_063 .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}

@media (max-width: 768px) {
    .style_063 .carousel-indicators {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .style_063 .carousel-indicators {
        margin-bottom: 3.625rem !important;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (max-width: 767px) {
    .style_063 .carousel-indicators {
        display: none;
    }
}

.style_063 .carousel-inner {
    display: flex;
    align-items: center;
}

.style_063 .carousel-inner>.active {
    display: block;
}

.style_063 .carousel-control.left {
    left: 0;
    margin-left: 2.5rem;
}

.style_063 .carousel-control.right {
    right: 0;
    margin-right: 2.5rem;
}

.style_063 .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}

@media (max-width: 768px) {
    .style_063 .carousel-control,
    .style_063 .carousel-indicators,
    .style_063 .modal .close {
        position: fixed;
    }
}

@media (max-width: 767px) {
    .style_063 .code-slider .carousel-control {
        top: auto;
        bottom: 20px;
    }
    .style_063 .code-slider>.container .carousel-control {
        margin-bottom: 0;
    }
}

.style_063 .carousel-indicators .active,
.style_063 .carousel-indicators li {
    width: 7px;
    height: 7px;
    margin: 3px;
    background: #000000;
    opacity: 0.5;
    border: 4px solid #000000;
}

.style_063 .carousel-indicators .active {
    background: #fff;
}

.style_063 .carousel-indicators li {
    max-width: 15px;
    max-height: 15px;
    border-radius: 50%;
}

.style_063 .modal {
    padding-left: 0 !important;
    position: fixed;
    overflow: hidden;
    padding-right: 0 !important;
}

.style_063 .modal-dialog {
    margin: 0 auto;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.style_063 .modal-content {
    border-radius: 0;
    border: none;
    background: transparent;
}

.style_063 .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
}

.style_063 .modal-body img {
    width: 100%;
    object-fit: contain;
    max-height: calc(100vh - 1.75rem);
}

.style_063 .carousel {
    width: 100%;
}

.style_063 .modal-backdrop.in {
    opacity: 0.8;
}

.style_063 .modal.fade .modal-dialog {
    transition: margin-top 0.3s ease-out;
}

.style_063 .modal.fade .modal-dialog,
.style_063 .modal.in .modal-dialog {
    transform: none;
}

.style_063 .code-gallery .item-wrapper {
    cursor: pointer;
}

.style_063 H6 {
    text-align: center;
}

.style_064 {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #fafafa;
}

.style_064 .carousel {
    height: 800px;
}

.style_064 .carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style_064 .carousel-item,
.style_064 .carousel-inner {
    height: 100%;
}

.style_064 .carousel-caption {
    bottom: 40px;
}

.style_064 .mobi-mbri-arrow-next {
    margin-left: 5px;
}

.style_064 .mobi-mbri-arrow-prev {
    margin-right: 5px;
}

.style_064 .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}

.style_064 .item-wrapper {
    width: 100%;
}

@media (max-width: 767px) {
    .style_064 .container .carousel-control {
        margin-bottom: 0;
    }
    .style_064 .content-slider-wrap {
        width: 100% !important;
    }
}

.style_064 .container .carousel-indicators {
    margin-bottom: 3px;
}

.style_064 .carousel-control {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.style_064 .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_064 .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_064 .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}

.style_064 .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 1.5rem !important;
}

.style_064 .carousel-indicators li {
    max-width: 15px;
    height: 15px;
    width: 15px;
    max-height: 15px;
    margin: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s;
}

.style_064 .carousel-indicators li.active,
.style_064 .carousel-indicators li:hover {
    opacity: 0.9;
}

.style_064 .carousel-indicators li::after,
.style_064 .carousel-indicators li::before {
    content: none;
}

.style_064 .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}

@media (max-width: 768px) {
    .style_064 .carousel-indicators {
        display: none !important;
    }
}

.style_065 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

@media (min-width: 992px) {
    .style_065 .carousel {
        min-height: 800px;
    }
    .style_065 .carousel img {
        max-height: 800px;
        object-fit: contain;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .style_065 .carousel {
        min-height: 520px;
    }
    .style_065 .carousel img {
        max-height: 520px;
        object-fit: contain;
    }
}

@media (max-width: 767px) {
    .style_065 .carousel {
        min-height: 440px;
    }
    .style_065 .carousel img {
        max-height: 440px;
        object-fit: contain;
    }
    .style_065 .container .carousel-control {
        margin-bottom: 0;
    }
    .style_065 .content-slider-wrap {
        width: 100% !important;
    }
}

.style_065 .carousel,
.style_065 .carousel-inner {
    display: flex;
    align-items: center;
}

.style_065 .item-wrapper {
    width: 100%;
}

.style_065 .carousel-caption {
    bottom: 40px;
}

.style_065 .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}

.style_065 .mobi-mbri-arrow-next {
    margin-left: 5px;
}

.style_065 .mobi-mbri-arrow-prev {
    margin-right: 5px;
}

.style_065 .container .carousel-indicators {
    margin-bottom: 3px;
}

.style_065 .carousel-control {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.style_065 .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_065 .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_065 .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}

.style_065 .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 1.5rem !important;
}

.style_065 .carousel-indicators li {
    max-width: 15px;
    height: 15px;
    width: 15px;
    max-height: 15px;
    margin: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s;
}

.style_065 .carousel-indicators li.active,
.style_065 .carousel-indicators li:hover {
    opacity: 0.9;
}

.style_065 .carousel-indicators li::after,
.style_065 .carousel-indicators li::before {
    content: none;
}

.style_065 .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}

@media (max-width: 768px) {
    .style_065 .carousel-indicators {
        display: none !important;
    }
}

.style_066 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #fafafa;
}

.style_066 .code-fallback-image.disabled {
    display: none;
}

.style_066 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_066 .team-card {
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.style_066 .team-card:hover {
    transform: translateY(-10px);
}

.style_066 .card-wrap {
    background: #ffffff;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .style_066 .card-wrap {
        margin-bottom: 2rem;
    }
}

.style_066 .card-wrap .image-wrap img {
    width: 100%;
}

@media (min-width: 768px) {
    .style_066 .card-wrap .content-wrap {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .style_066 .card-wrap .content-wrap {
        padding: 1rem;
    }
}

.style_066 .social-row {
    text-align: center;
}

.style_066 .social-row .soc-item {
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin-right: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 2px solid #55cbd3;
    transition: all 0.3s;
}

.style_066 .social-row .soc-item .code-iconfont {
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-content: center;
    color: #55cbd3;
    font-size: 1.5rem;
}

.style_066 .social-row .soc-item:hover {
    background-color: #55cbd3;
}

.style_066 .social-row .soc-item:hover .code-iconfont {
    color: #ffffff;
}

.style_066 .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 410px;
    max-width: 410px;
}

@media (max-width: 768px) {
    .style_066 .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}

.style_066 .embla__button--next,
.style_066 .embla__button--prev {
    display: flex;
}

.style_066 .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .style_066 .embla__button {
        display: none;
    }
}

.style_066 .embla__button:disabled {
    cursor: default;
    display: none;
}

.style_066 .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}

.style_066 .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_066 .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_066 .embla__button {
        top: auto;
    }
}

.style_066 .embla {
    position: relative;
    width: 100%;
}

.style_066 .embla__viewport {
    overflow: hidden;
    width: 100%;
}

.style_066 .embla__viewport.is-draggable {
    cursor: grab;
}

.style_066 .embla__viewport.is-dragging {
    cursor: grabbing;
}

.style_066 .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.style_067 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_067 img,
.style_067 .item-img {
    width: 100%;
}

.style_067 .item:focus,
.style_067 span:focus {
    outline: none;
}

.style_067 .item-wrapper {
    position: relative;
}

.style_067 .slide-content {
    position: relative;
    border-radius: 4px;
    background: #fafafa;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}

@media (min-width: 992px) {
    .style_067 .slide-content .item-content {
        padding: 2rem 2rem 0;
    }
    .style_067 .slide-content .item-footer {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 991px) {
    .style_067 .slide-content .item-content {
        padding: 1rem 1rem 0;
    }
    .style_067 .slide-content .item-footer {
        padding: 0 1rem 1rem;
    }
}

.style_067 .code-section-btn {
    margin-top: auto !important;
}

.style_067 .code-section-title {
    color: #232323;
}

.style_067 .code-text,
.style_067 .code-section-btn {
    text-align: left;
}

.style_067 .item-title {
    text-align: left;
}

.style_067 .item-subtitle {
    text-align: left;
}

.style_067 .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 410px;
    max-width: 410px;
}

@media (max-width: 768px) {
    .style_067 .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}

.style_067 .embla__button--next,
.style_067 .embla__button--prev {
    display: flex;
}

.style_067 .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .style_067 .embla__button {
        display: none;
    }
}

.style_067 .embla__button:disabled {
    cursor: default;
    display: none;
}

.style_067 .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}

.style_067 .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_067 .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_067 .embla__button {
        top: auto;
    }
}

.style_067 .embla {
    position: relative;
    width: 100%;
}

.style_067 .embla__viewport {
    overflow: hidden;
    width: 100%;
}

.style_067 .embla__viewport.is-draggable {
    cursor: grab;
}

.style_067 .embla__viewport.is-dragging {
    cursor: grabbing;
}

.style_067 .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.style_068 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-image: url("../../../assets/images/background3.jpg");
}

.style_068 .code-overlay {
    background: #fafafa;
    opacity: 0.6;
}

.style_068 img,
.style_068 .item-img {
    width: 100%;
    height: 100%;
    height: 300px;
    object-fit: cover;
}

.style_068 .item:focus,
.style_068 span:focus {
    outline: none;
}

.style_068 .item-wrapper {
    position: relative;
}

.style_068 .slide-content {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}

@media (min-width: 992px) {
    .style_068 .slide-content .item-content {
        padding: 2rem 2rem 0;
    }
    .style_068 .slide-content .item-footer {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 991px) {
    .style_068 .slide-content .item-content {
        padding: 1rem 1rem 0;
    }
    .style_068 .slide-content .item-footer {
        padding: 0 1rem 1rem;
    }
}

.style_068 .code-section-btn {
    margin-top: auto !important;
}

.style_068 .code-section-title {
    color: #232323;
}

.style_068 .code-text,
.style_068 .code-section-btn {
    text-align: left;
}

.style_068 .item-title {
    text-align: left;
}

.style_068 .item-subtitle {
    text-align: left;
    color: #bbbbbb;
}

.style_068 .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 370px;
    max-width: 370px;
}

@media (max-width: 768px) {
    .style_068 .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}

.style_068 .embla__button--next,
.style_068 .embla__button--prev {
    display: flex;
}

.style_068 .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .style_068 .embla__button {
        display: none;
    }
}

.style_068 .embla__button:disabled {
    cursor: default;
    display: none;
}

.style_068 .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}

.style_068 .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_068 .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_068 .embla__button {
        top: auto;
    }
}

.style_068 .embla {
    position: relative;
    width: 100%;
}

.style_068 .embla__viewport {
    overflow: hidden;
    width: 100%;
}

.style_068 .embla__viewport.is-draggable {
    cursor: grab;
}

.style_068 .embla__viewport.is-dragging {
    cursor: grabbing;
}

.style_068 .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    .style_068 .embla__container {
        margin-left: 1.3rem;
        margin-right: 1.3rem;
    }
    .style_068 .embla__container .embla__slide:first-child {
        margin-left: 2rem !important;
    }
    .style_068 .embla__container .embla__slide:last-child {
        margin-right: 2rem !important;
    }
}

.style_069 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_069 img,
.style_069 .item-img {
    height: 100%;
    height: 300px;
    object-fit: cover;
}

.style_069 .item:focus,
.style_069 span:focus {
    outline: none;
}

.style_069 .item-wrapper {
    position: relative;
}

.style_069 .slide-content {
    position: relative;
    border-radius: 4px;
    background: #fafafa;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}

@media (min-width: 992px) {
    .style_069 .slide-content .item-content {
        padding: 2rem 2rem 0;
    }
    .style_069 .slide-content .item-footer {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 991px) {
    .style_069 .slide-content .item-content {
        padding: 1rem 1rem 0;
    }
    .style_069 .slide-content .item-footer {
        padding: 0 1rem 1rem;
    }
}

.style_069 .code-section-btn {
    margin-top: auto !important;
}

.style_069 .code-section-title {
    color: #232323;
}

.style_069 .code-text,
.style_069 .code-section-btn {
    text-align: center;
}

.style_069 .item-title {
    text-align: center;
}

.style_069 .item-subtitle {
    text-align: center;
    color: #232323;
}

.style_069 .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 410px;
    max-width: 410px;
}

@media (max-width: 768px) {
    .style_069 .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}

.style_069 .embla__button--next,
.style_069 .embla__button--prev {
    display: flex;
}

.style_069 .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .style_069 .embla__button {
        display: none;
    }
}

.style_069 .embla__button:disabled {
    cursor: default;
    display: none;
}

.style_069 .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}

.style_069 .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_069 .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_069 .embla__button {
        top: auto;
    }
}

.style_069 .embla {
    position: relative;
    width: 100%;
}

.style_069 .embla__viewport {
    overflow: hidden;
    width: 100%;
}

.style_069 .embla__viewport.is-draggable {
    cursor: grab;
}

.style_069 .embla__viewport.is-dragging {
    cursor: grabbing;
}

.style_069 .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.style_070 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #fafafa;
}

.style_070 .code-fallback-image.disabled {
    display: none;
}

.style_070 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_070 .team-card {
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.style_070 .team-card:hover {
    transform: translateY(-10px);
}

.style_070 .card-wrap {
    background: #ffffff;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .style_070 .card-wrap {
        margin-bottom: 2rem;
    }
}

.style_070 .card-wrap .image-wrap img {
    width: 100%;
}

@media (min-width: 768px) {
    .style_070 .card-wrap .content-wrap {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .style_070 .card-wrap .content-wrap {
        padding: 1rem;
    }
}

.style_070 .social-row {
    text-align: center;
}

.style_070 .social-row .soc-item {
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin-right: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 2px solid #55cbd3;
    transition: all 0.3s;
}

.style_070 .social-row .soc-item .code-iconfont {
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-content: center;
    color: #55cbd3;
    font-size: 1.5rem;
}

.style_070 .social-row .soc-item:hover {
    background-color: #55cbd3;
}

.style_070 .social-row .soc-item:hover .code-iconfont {
    color: #ffffff;
}

.style_071 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #fafafa;
}

.style_071 .code-fallback-image.disabled {
    display: none;
}

.style_071 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_071 .card:not(:nth-last-child(1)) {
    margin-bottom: 2rem;
}

.style_071 .card-wrapper {
    background-color: #ffffff;
    border-radius: 4px;
}

.style_071 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

.style_071 .social-row .soc-item {
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin-right: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 2px solid #55cbd3;
    transition: all 0.3s;
}

.style_071 .social-row .soc-item .code-iconfont {
    display: flex;
    justify-content: center;
    align-content: center;
    color: #55cbd3;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.style_071 .social-row .soc-item:hover {
    background-color: #55cbd3;
}

.style_071 .social-row .soc-item:hover .code-iconfont {
    color: #ffffff;
}

@media (max-width: 767px) {
    .style_071 .card-box {
        padding: 1rem;
    }
}

@media (min-width: 768px) {
    .style_071 .card-box {
        padding-right: 2rem;
    }
}

@media (min-width: 992px) {
    .style_071 .card-box {
        padding-left: 2rem;
        padding-right: 4rem;
    }
}

.style_072 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_072 .code-fallback-image.disabled {
    display: none;
}

.style_072 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (min-width: 992px) {
    .style_072 .text-wrapper {
        padding: 2rem;
    }
}

.style_072 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .style_072 .image-wrapper {
        margin-bottom: 2rem;
    }
}

.style_073 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_073 .code-fallback-image.disabled {
    display: none;
}

.style_073 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_073 .image-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: 5px;
    margin-right: 1rem;
    overflow: hidden;
}

.style_073 .image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.style_074 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_074 .code-fallback-image.disabled {
    display: none;
}

.style_074 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_074 .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 570px;
    max-width: 570px;
}

@media (max-width: 768px) {
    .style_074 .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}

.style_074 .embla__button--next,
.style_074 .embla__button--prev {
    display: flex;
}

.style_074 .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .style_074 .embla__button {
        display: none;
    }
}

.style_074 .embla__button:disabled {
    cursor: default;
    display: none;
}

.style_074 .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}

.style_074 .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_074 .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 768px) {
    .style_074 .embla__button {
        top: auto;
    }
}

.style_074 .user_image {
    width: 200px;
    height: 200px;
    margin-bottom: 1.6rem;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 2rem auto;
}

.style_074 .user_image .item-wrapper {
    width: 200px;
    height: 200px;
}

.style_074 .user_image img {
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

@media (max-width: 230px) {
    .style_074 .user_image {
        width: 100%;
        height: auto;
    }
}

.style_074 .embla {
    position: relative;
    width: 100%;
}

.style_074 .embla__viewport {
    overflow: hidden;
    width: 100%;
}

.style_074 .embla__viewport.is-draggable {
    cursor: grab;
}

.style_074 .embla__viewport.is-dragging {
    cursor: grabbing;
}

.style_074 .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.style_075 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_075 img {
    width: 120px;
    margin: auto;
}

.style_075 .card {
    transition: all 0.3s;
    height: fit-content;
    padding: 1rem 0;
    opacity: 0.7;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .style_075 .card {
        max-width: 12.5%;
    }
}

.style_076 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_076 .code-fallback-image.disabled {
    display: none;
}

.style_076 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_076 .img-wrapper {
    text-align: center;
}

.style_076 img {
    margin: auto;
    width: 140px;
    padding-bottom: 2rem;
}

.style_076 .row {
    align-items: flex-start;
}

.style_076 .card-wrapper {
    border-radius: 4px;
    background: #fafafa;
}

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

@media (min-width: 768px) {
    .style_076 .card-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .style_076 .card-wrapper {
        padding: 1rem;
    }
}

.style_077 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_077 .code-fallback-image.disabled {
    display: none;
}

.style_077 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_077 .code-iconfont {
    display: block;
    font-size: 5rem;
    color: #55cbd3;
    margin-bottom: 2rem;
}

.style_077 .card-wrapper {
    padding: 3rem;
    background: #fafafa;
    border-radius: 4px;
}

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

@media (max-width: 767px) {
    .style_077 .card-wrapper {
        padding: 3rem 1rem;
    }
}

.style_078 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_078 .code-fallback-image.disabled {
    display: none;
}

.style_078 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_078 .image-wrapper {
    display: flex;
    align-items: center;
}

.style_078 .card-wrapper {
    margin-bottom: 2rem;
    display: flex;
    border-radius: 4px;
    background: #fafafa;
}

@media (max-width: 991px) {
    .style_078 .card-wrapper {
        padding: 1rem 2rem;
    }
}

@media (min-width: 992px) {
    .style_078 .card-wrapper {
        padding: 2rem 4rem;
    }
}

.style_078 .code-iconfont {
    font-size: 2rem;
    padding-right: 1.5rem;
    color: #55cbd3;
}

.style_079 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #ffffff;
}

.style_079 .code-fallback-image.disabled {
    display: none;
}

.style_079 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 767px) {
    .style_079 .row {
        flex-direction: column-reverse;
    }
    .style_079 .row .map-wrapper {
        margin-bottom: 2rem;
    }
}

.style_079 .google-map {
    height: 100%;
    position: relative;
}

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

.style_079 .google-map [data-state-details] {
    color: #6b6763;
    height: 1.5em;
    margin-top: -0.75em;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

.style_079 .google-map[data-state] {
    background: #e9e5dc;
}

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

.style_079 .image-wrapper {
    display: flex;
    align-items: center;
}

.style_079 .card-wrapper {
    display: flex;
    border-radius: 4px;
    background: #fafafa;
}

.style_079 .card-wrapper:not(:nth-last-child(1)) {
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .style_079 .card-wrapper {
        padding: 1rem 2rem;
    }
}

@media (min-width: 992px) {
    .style_079 .card-wrapper {
        padding: 2rem 4rem;
    }
}

.style_079 .code-iconfont {
    font-size: 2rem;
    padding-right: 1.5rem;
    color: #55cbd3;
}

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

.style_080 .code-fallback-image.disabled {
    display: none;
}

.style_080 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_080 .media-container-row {
    justify-content: space-between;
}

.style_080 .text-content {
    max-width: 50%;
}

@media (max-width: 768px) {
    .style_080 .text-content {
        max-width: none;
    }
}

.style_080 .code-iconfont-social {
    margin: 0.5rem;
    font-size: 32px;
    display: flex;
    border-radius: 50%;
    text-align: center;
    color: #55cbd3;
    border: 2px solid #55cbd3;
    justify-content: center;
    align-content: center;
    transition: all 0.3s;
}

.style_080 .code-iconfont-social:before {
    padding: 0.6rem;
}

.style_080 .code-iconfont-social:hover {
    background-color: #55cbd3;
    color: #ffffff;
}

@media (max-width: 768px) {
    .style_080 .icons {
        justify-content: center !important;
    }
    .style_080 .text-content * {
        text-align: center;
    }
}

.style_081 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #ffffff;
}

.style_081 .code-fallback-image.disabled {
    display: none;
}

.style_081 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_081 .google-map {
    height: 30rem;
    position: relative;
}

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

.style_081 .google-map [data-state-details] {
    color: #6b6763;
    height: 1.5em;
    margin-top: -0.75em;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

.style_081 .google-map[data-state] {
    background: #e9e5dc;
}

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

.style_082 {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background: #ffffff;
}

.style_082 .code-fallback-image.disabled {
    display: none;
}

.style_082 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_082 .google-map {
    height: 30rem;
    position: relative;
}

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

.style_082 .google-map [data-state-details] {
    color: #6b6763;
    height: 1.5em;
    margin-top: -0.75em;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

.style_082 .google-map[data-state] {
    background: #e9e5dc;
}

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

.style_083 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_083 .code-fallback-image.disabled {
    display: none;
}

.style_083 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_083 .google-map {
    height: 350px;
    position: relative;
}

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

.style_083 .google-map [data-state-details] {
    color: #6b6763;
    height: 1.5em;
    margin-top: -0.75em;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

.style_083 .google-map[data-state] {
    background: #e9e5dc;
}

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

.style_084 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_084 .code-fallback-image.disabled {
    display: none;
}

.style_084 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_084 .socicon-bg-facebook {
    background: #1778f2;
    color: #ffffff;
}

.style_084 .socicon-bg-facebook:hover {
    background: #0b60cb;
}

.style_084 .socicon-bg-twitter {
    background: #1da1f2;
    color: #ffffff;
}

.style_084 .socicon-bg-twitter:hover {
    background: #0c85d0;
}

.style_084 .socicon-bg-vkontakte {
    background: #4680C2;
    color: #ffffff;
}

.style_084 .socicon-bg-vkontakte:hover {
    background: #3567a0;
}

.style_084 .socicon-bg-odnoklassniki {
    background: #ee8208;
    color: #ffffff;
}

.style_084 .socicon-bg-odnoklassniki:hover {
    background: #bd6706;
}

.style_084 .socicon-bg-pinterest {
    background: #e60023;
    color: #ffffff;
}

.style_084 .socicon-bg-pinterest:hover {
    background: #b3001b;
}

.style_084 .socicon-bg-mail {
    background: #005ff9;
    color: #ffffff;
}

.style_084 .socicon-bg-mail:hover {
    background: #004cc6;
}

.style_084 .btn-social {
    font-size: 32px;
    border-radius: 50%;
    padding: 0;
    width: 55px;
    height: 55px;
    line-height: 55px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: none !important;
}

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

.style_084 [class^="socicon-"]:before,
.style_084 [class*=" socicon-"]:before {
    line-height: 55px;
}

.style_085 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_085 .code-fallback-image.disabled {
    display: none;
}

.style_085 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_085 [class^="socicon-"]:before,
.style_085 [class*=" socicon-"]:before {
    line-height: 55px;
}

.style_085 .btn-social {
    font-size: 32px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
    padding: 0;
    position: relative;
    cursor: pointer;
    color: #55cbd3;
    border-width: 2px;
    transition: all .3s;
    border-color: #55cbd3;
}

.style_085 .btn-social:hover {
    background: #55cbd3;
}

.style_085 .btn-social:hover i.socicon {
    color: #ffffff !important;
}

.style_086 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_086 .code-fallback-image.disabled {
    display: none;
}

.style_086 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_086 .bg-facebook {
    background: #1778f2;
    color: #ffffff;
}

.style_086 .bg-facebook:hover {
    background: #0b60cb;
}

.style_086 .bg-twitter {
    background: #1da1f2;
    color: #ffffff;
}

.style_086 .bg-twitter:hover {
    background: #0c85d0;
}

.style_086 .bg-instagram {
    background: #f00075;
    color: #ffffff;
}

.style_086 .bg-instagram:hover {
    background: #bd005c;
}

.style_086 .iconfont-wrapper {
    display: inline-block;
    font-size: 32px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.style_086 [class^="socicon-"]:before,
.style_086 [class*=" socicon-"]:before {
    line-height: 55px;
    padding: .6rem;
}

.style_087 {
    background-image: url("../../../assets/images/background2.jpg");
}

.style_087 .code-fallback-image.disabled {
    display: none;
}

.style_087 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_087 .code-text,
.style_087 .code-section-btn {
    color: #232323;
}

.style_087 .btn {
    width: 100%;
}

.style_087 .code-section-btn {
    margin-bottom: 1.2rem;
}

.style_088 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_088 .code-fallback-image.disabled {
    display: none;
}

.style_088 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_088 .code-text,
.style_088 .code-section-btn {
    color: #232323;
}

.style_088 .btn {
    width: 100%;
}

.style_088 .code-section-btn {
    margin-bottom: 1.2rem;
}

.style_088 H1 {
    text-align: center;
}

.style_089 {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #ffe161;
}

@media (min-width: 991px) {
    .style_089 .container-fluid {
        padding-left: 0;
    }
}

.style_089 .code-text,
.style_089 .code-section-btn {
    color: #232323;
}

@media (max-width: 991px) {
    .style_089 .code-text,
    .style_089 .code-section-btn {
        text-align: center;
    }
}

@media (max-width: 991px) {
    .style_089 .code-text,
    .style_089 .code-section-title {
        text-align: center;
    }
}

.style_089 a.btn {
    height: 100%;
    margin: 0;
}

.style_089 .code-section-btn {
    display: flex;
    margin-bottom: 1rem;
    width: 100%;
}

.style_089 .code-section-btn .btn {
    width: 100%;
}

@media (max-width: 991px) {
    .style_089 .image-wrapper {
        margin-bottom: 2rem;
    }
}

.style_089 .justify-content-center {
    align-items: center;
}

.style_090 {
    background-color: #fafafa;
}

.style_090 .code-text,
.style_090 .code-section-btn {
    color: #232323;
}

@media (max-width: 991px) {
    .style_090 .code-text,
    .style_090 .code-section-title {
        text-align: center;
    }
}

.style_090 a.btn {
    height: 100%;
    margin: 0;
}

.style_090 .code-section-btn {
    display: flex;
    margin-bottom: 1.2rem;
    width: 100%;
}

.style_090 .code-section-btn .btn {
    width: 100%;
}

@media (max-width: 991px) {
    .style_090 .image-wrapper {
        margin-bottom: 2rem;
    }
    .style_090 .content-wrapper {
        flex-direction: column-reverse;
    }
}

.style_090 .justify-content-center {
    align-items: center;
}

.style_091 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_091 .code-overlay {
    background-color: #ffffff;
    opacity: 0.4;
}

.style_091 form .code-section-btn {
    text-align: center;
    width: 100%;
}

.style_091 form .code-section-btn .btn {
    display: inline-flex;
}

@media (max-width: 991px) {
    .style_091 form .code-section-btn .btn {
        width: 100%;
    }
}

.style_092 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_092 .code-overlay {
    background-color: #ffffff;
    opacity: 0.4;
}

@media (min-width: 992px) {
    .style_092 form {
        width: 50%;
    }
}

.style_092 form .code-section-btn {
    text-align: center;
    width: 100%;
}

.style_092 form .code-section-btn .btn {
    width: 100%;
}

.style_093 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_093 .code-overlay {
    background-color: #ffffff;
    opacity: 0.4;
}

.style_093 form.code-form {
    border-radius: 10px;
    background-color: #fafafa;
}

@media (min-width: 992px) {
    .style_093 form.code-form {
        padding: 3rem 2rem;
        width: 60%;
    }
}

@media (max-width: 991px) {
    .style_093 form.code-form {
        padding: 1rem;
    }
}

.style_093 form.code-form .code-section-btn {
    text-align: center;
    width: 100%;
}

.style_093 form.code-form .code-section-btn .btn {
    width: 100%;
}

.style_094 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_094 .code-overlay {
    background-color: #ffffff;
    opacity: 0.4;
}

.style_094 form .code-section-btn {
    text-align: center;
    margin-bottom: 1.2rem;
}

.style_094 form .code-section-btn .btn {
    width: 100%;
    height: 100%;
}

.style_095 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_095 .code-overlay {
    background-color: #ffffff;
    opacity: 0.4;
}

.style_095 form.code-form {
    border-radius: 10px;
    background-color: #fafafa;
}

@media (min-width: 992px) {
    .style_095 form.code-form {
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    .style_095 form.code-form {
        padding: 1rem;
    }
}

.style_095 form.code-form .code-section-btn {
    text-align: center;
    margin-bottom: 1.2rem;
}

.style_095 form.code-form .code-section-btn .btn {
    width: 100%;
    height: 100%;
}

.style_096 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_096 img,
.style_096 .item-img {
    width: 100%;
    height: 100%;
    height: 400px;
    object-fit: cover;
}

.style_096 .item:focus,
.style_096 span:focus {
    outline: none;
}

.style_096 .item {
    cursor: pointer;
    margin-bottom: 2rem;
}

.style_096 .item-wrapper {
    position: relative;
    border-radius: 4px;
    background: #fafafa;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

@media (min-width: 992px) {
    .style_096 .item-wrapper .item-content {
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    .style_096 .item-wrapper .item-content {
        padding: 1rem;
    }
}

.style_096 .code-section-btn {
    margin-top: auto !important;
}

.style_096 .code-section-title {
    color: #232323;
}

.style_096 .code-text,
.cid-taCo6l13JC .code-section-btn {
    text-align: left;
}

.cid-taCo6l13JC .item-title {
    text-align: left;
    color: #55cbd3;
}

.cid-taCo6l13JC .item-subtitle {
    text-align: left;
    color: #232323;
}

.style_097 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_097 img,
.style_097 .item-img {
    height: 100%;
    height: 300px;
    object-fit: cover;
}

.style_097 .item:focus,
.style_097 span:focus {
    outline: none;
}

.style_097 .item {
    cursor: pointer;
    margin-bottom: 2rem;
}

.style_097 .item-wrapper {
    position: relative;
    border-radius: 4px;
    background: #fafafa;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

@media (min-width: 992px) {
    .style_097 .item-wrapper .item-content {
        padding: 2rem 2rem 0;
    }
    .style_097 .item-wrapper .item-footer {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 991px) {
    .style_097 .item-wrapper .item-content {
        padding: 1rem 1rem 0;
    }
    .style_097 .item-wrapper .item-footer {
        padding: 0 1rem 1rem;
    }
}

.style_097 .code-section-btn {
    margin-top: auto !important;
}

.style_097 .code-section-title {
    color: #232323;
}

.style_097 .code-text,
.style_097 .code-section-btn {
    text-align: left;
}

.style_097 .item-title {
    text-align: left;
}

.style_097 .item-subtitle {
    text-align: left;
    color: #232323;
}

.style_098 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_098 img,
.style_098 .item-img {
    height: 100%;
    height: 300px;
    object-fit: cover;
}

.style_098 .item:focus,
.style_098 span:focus {
    outline: none;
}

.style_098 .item {
    cursor: pointer;
    margin-bottom: 2rem;
}

.style_098 .item-wrapper {
    position: relative;
    border-radius: 4px;
    background: #fafafa;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

@media (min-width: 992px) {
    .style_098 .item-wrapper .item-content {
        padding: 2rem 2rem 0;
    }
    .style_098 .item-wrapper .item-footer {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 991px) {
    .style_098 .item-wrapper .item-content {
        padding: 1rem 1rem 0;
    }
    .style_098 .item-wrapper .item-footer {
        padding: 0 1rem 1rem;
    }
}

.style_098 .code-section-btn {
    margin-top: auto !important;
}

.style_098 .code-section-title {
    color: #232323;
}

.style_098 .code-text,
.style_098 .code-section-btn {
    text-align: center;
}

.style_098 .item-title {
    text-align: center;
}

.style_098 .item-subtitle {
    text-align: center;
    color: #232323;
}

.style_099 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_099 .code-fallback-image.disabled {
    display: none;
}

.style_099 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_099 .timeline-element {
    position: relative;
}

.style_099 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

.style_099 .iconBackground {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #55cbd3;
    top: 30px;
    margin-left: -9px;
    padding: 0;
}

@media (max-width: 767px) {
    .style_099 .iconBackground {
        left: 15px;
    }
}

@media (min-width: 768px) {
    .style_099 .iconBackground {
        left: 50%;
    }
}

.style_099 .row:after {
    content: "";
    position: absolute;
    background-color: #55cbd3;
    width: 2px;
    top: 50px;
    height: calc(100% - 10px);
}

@media (max-width: 767px) {
    .style_099 .row:after {
        left: 15px;
    }
}

@media (min-width: 768px) {
    .style_099 .row:after {
        left: 50%;
    }
}

.style_099 .row:nth-child(odd) .code-timeline-date {
    text-align: right;
}

@media (max-width: 767px) {
    .style_099 .row:nth-child(even) {
        flex-direction: column-reverse;
    }
}

@media (max-width: 767px) {
    .style_099 .timeline-date-wrapper,
    .style_099 .timeline-text-wrapper {
        padding: 0rem;
        padding-left: 2rem;
    }
    .style_099 .code-timeline-date {
        text-align: left !important;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .style_099 .timeline-date-wrapper,
    .style_099 .timeline-text-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 992px) {
    .style_099 .timeline-date-wrapper,
    .style_099 .timeline-text-wrapper {
        padding: 2rem;
    }
}

.style_100 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_100 .code-fallback-image.disabled {
    display: none;
}

.style_100 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_100 .timelines-container {
    display: flex;
    flex-wrap: wrap;
}

.style_100 .timeline-element {
    position: relative;
}

.style_100 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

.style_100 .iconBackground {
    position: absolute;
    left: 33.33%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #55cbd3;
    top: 30px;
    margin-left: -9px;
    padding: 0;
}

.style_100 .separline:before {
    top: 50px;
    bottom: 0;
    position: absolute;
    content: "";
    width: 2px;
    background-color: #55cbd3;
    left: 33.33%;
    height: calc(100% + 30px);
}

@media (max-width: 767px) {
    .style_100 .iconBackground {
        left: 15px !important;
    }
    .style_100 .separline:before {
        left: 15px !important;
    }
}

.style_100 .code-section-title,
.style_100 .code-section-subtitle {
    text-align: center;
}

@media (max-width: 767px) {
    .style_100 .time-line-date-content {
        margin-left: 1rem;
    }
    .style_100 .time-line-date-content .code-timeline-date {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .style_100 .time-line-date-content {
        margin-right: 1rem;
    }
    .style_100 .time-line-date-content .code-timeline-date {
        text-align: right;
    }
}

.style_100 .timeline-text-content {
    margin-left: 2rem;
}

.style_100 .reverseTimeline {
    display: flex;
    flex-direction: column-reverse;
}

.style_100 .code-timeline-date {
    text-align: right;
}

.style_101 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_101 .code-fallback-image.disabled {
    display: none;
}

.style_101 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_101 .timeline-element {
    position: relative;
}

.style_101 .timelines-container {
    display: flex;
    flex-wrap: wrap;
}

.style_101 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

.style_101 .code-section-title,
.style_101 .code-section-subtitle,
.style_101 .timeline-date {
    text-align: center;
}

.style_101 .iconBackground {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #55cbd3;
    margin-left: -9px;
    padding: 0;
}

@media (max-width: 767px) {
    .style_101 .iconBackground {
        left: 15px;
        top: 30px;
    }
}

@media (min-width: 768px) {
    .style_101 .iconBackground {
        top: 70px;
        left: 50%;
    }
}

.style_101 .row:after {
    content: "";
    position: absolute;
    background-color: #55cbd3;
    width: 2px;
}

@media (max-width: 767px) {
    .style_101 .row:after {
        height: calc(100% + 30px);
        top: 50px;
        left: 15px;
    }
}

@media (min-width: 768px) {
    .style_101 .row:after {
        height: calc(100% - 20px);
        top: 90px;
        left: 50%;
    }
}

@media (max-width: 767px) {
    .style_101 .timeline-date-wrapper,
    .style_101 .timeline-text-wrapper,
    .style_101 .image-wrapper {
        padding: 0rem;
        padding-left: 2rem;
    }
    .style_101 .code-timeline-date {
        text-align: left !important;
    }
    .style_101 .code-timeline-title {
        text-align: left;
        margin-top: 1rem;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .style_101 .timeline-date-wrapper,
    .style_101 .timeline-text-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 992px) {
    .style_101 .timeline-date-wrapper,
    .style_101 .timeline-text-wrapper,
    .style_101 .image-wrapper {
        padding: 2rem;
    }
}

.style_102 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_102 .counter-container ul {
    margin: 0;
    list-style: none;
    padding-left: 2.5rem;
}

.style_102 .counter-container ul li {
    margin-bottom: 1rem;
    list-style: none;
    position: relative;
    padding-left: 1rem;
}

.style_102 .counter-container ul li:before {
    position: absolute;
    left: -40px;
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background-color: #55cbd3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: 5px;
    content: "✓";
}

.style_103 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_103 .counter-container ol {
    margin-bottom: 0;
    counter-reset: myCounter;
}

.style_103 .counter-container ol li {
    margin-bottom: 1rem;
}

.style_103 .counter-container ol li {
    list-style: none;
    padding-left: 1rem;
    position: relative;
}

.style_103 .counter-container ol li:before {
    position: absolute;
    left: -40px;
    margin-top: 5px;
    counter-increment: myCounter;
    content: counter(myCounter);
    line-height: 40px;
    transition: all .2s;
    color: #ffffff;
    background: #55cbd3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.style_104 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_104 .code-fallback-image.disabled {
    display: none;
}

.style_104 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_104 .code-iconfont {
    font-size: 1.4rem !important;
    font-family: var(--main-tipo) !important;
    color: #55cbd3;
    margin-left: 1rem;
}

.style_104 .panel-group {
    border: none;
}

.style_104 .panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.style_104 .panel-body,
.style_104 .card-header {
    padding: 1rem 0;
}

.style_104 .panel-title-edit {
    color: #000000;
}

.style_104 .card .card-header {
    background-color: transparent;
    margin-bottom: 0;
}

.style_105 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_105 .code-fallback-image.disabled {
    display: none;
}

.style_105 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_105 .card .card-header {
    background-color: transparent;
    margin-bottom: 0;
}

.style_105 .panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.style_105 .code-iconfont {
    padding-left: 1rem;
    font-family: var(--main-tipo) !important;
    font-size: 1.4rem !important;
    color: #55cbd3;
}

.style_105 .panel-body,
.style_105 .card-header {
    padding: 1rem 0;
}

.style_105 .panel-title-edit {
    color: #000000;
}

.style_106 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_106 .code-fallback-image.disabled {
    display: none;
}

.style_106 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_106 .nav-tabs .nav-item.open .nav-link:focus,
.style_106 .nav-tabs .nav-link.active:focus {
    outline: none;
}

.style_106 .nav-tabs {
    flex-wrap: wrap;
    border-bottom: 1px solid #55cbd3;
}

@media (max-width: 767px) {
    .style_106 .nav-item {
        width: 100%;
        margin: 0;
    }
}

.style_106 .nav-tabs .nav-link {
    transition: all .5s;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0 !important;
}

.style_106 .nav-tabs .nav-link:not(.active) {
    color: #000000;
}

.style_106 .nav-tabs .nav-item {
    margin-right: 1.5rem;
}

.style_106 .nav-link,
.style_106 .nav-link.active {
    padding: 1rem 0;
    background-color: transparent;
}

.style_106 .nav-tabs .nav-link.active {
    color: #55cbd3;
    border-bottom: 3px solid #55cbd3;
}

.style_106 H4 {
    text-align: center;
}

.style_106 H3 {
    text-align: center;
}

.style_107 {
    background-image: url("../../../assets/images/background3.jpg");
}

.style_107 .code-fallback-image.disabled {
    display: none;
}

.style_107 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_107 .number-wrap {
    color: #ffffff;
    text-align: center;
}

.style_107 .number {
    color: #ffffff;
}

.style_107 .period {
    display: block;
}

.style_107 .dot {
    display: none;
}

@media (max-width: 767px) {
    .style_107 .period {
        font-size: 0.8rem;
    }
}

.style_107 .btn {
    height: 100%;
    margin: 0;
}

.style_107 .code-section-btn {
    margin-bottom: 1.2rem;
}

.style_107 .code-section-title {
    color: #ffffff;
}

.style_107 .code-text {
    color: #ffffff;
}

.style_107 .icons-menu .soc-item {
    padding-left: 8px;
    padding-right: 8px;
}

.style_107 .icons-menu .soc-item .code-iconfont {
    font-size: 2rem;
    display: flex;
    border-radius: 50%;
    text-align: center;
    color: #ffffff;
    border: 2px solid #ffffff;
    justify-content: center;
    align-content: center;
    transition: all 0.3s;
}

.style_107 .icons-menu .soc-item .code-iconfont:before {
    padding: 0.6rem;
}

.style_107 .icons-menu .soc-item .code-iconfont:hover {
    background-color: #ffffff;
    color: #000000;
}

.style_108 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_108 .code-fallback-image.disabled {
    display: none;
}

.style_108 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_108 .item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 991px) {
    .style_108 .item {
        margin-bottom: 4rem;
    }
}

.style_108 .item:last-child .icon-box:before {
    display: none;
}

.style_108 .item.last .icon-box:before {
    display: none;
}

.style_108 .icon-box {
    background: #55cbd3;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

@media (max-width: 768px) {
    .style_108 .icon-box {
        margin-right: 1rem;
    }
}

.style_108 .icon-box::before {
    content: "\e925";
    font-family: var(--main-tipo) !important;
    position: absolute;
    font-size: 32px;
    left: 50%;
    top: 120%;
    color: #55cbd3;
    transform: translate(-50%, 0);
}

.style_108 span {
    font-size: 2rem;
    color: #ffffff;
}

@media (max-width: 991px) {
    .style_108 .card {
        margin-bottom: 2rem;
    }
    .style_108 .card-wrapper {
        margin-bottom: 2rem;
    }
    .style_108 .icon-box::before {
        top: 141%;
    }
}

@media (max-width: 768px) {
    .style_108 .icon-box::before {
        top: 114%;
    }
}

.style_109 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_109 .code-fallback-image.disabled {
    display: none;
}

.style_109 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_109 .item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    flex-direction: column;
    position: relative;
    margin-bottom: 3rem;
}

.style_109 .item .icon-wrap {
    text-align: center;
}

.style_109 .item::before {
    content: "\e925";
    font-family: var(--main-tipo) !important;
    position: absolute;
    font-size: 32px;
    left: 50%;
    top: 97%;
    color: #55cbd3;
    transform: translate(-50%, 0);
}

.style_109 .item:last-child:before {
    display: none;
}

.style_109 .item.last::before {
    display: none;
}

.style_109 .icon-box {
    background: #55cbd3;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    text-align: center;
    display: inline-block;
}

.style_109 .text-box {
    text-align: center;
}

.style_109 span {
    font-size: 2rem;
    color: #ffffff;
    line-height: 60px;
}

@media (max-width: 991px) {
    .style_109 .card {
        margin-bottom: 2rem;
    }
    .style_109 .card-wrapper {
        margin-bottom: 2rem;
    }
}

.style_110 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_110 .code-fallback-image.disabled {
    display: none;
}

.style_110 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_110 .item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    flex-direction: column;
}

.style_110 .icon-box {
    margin-bottom: 1rem;
    text-align: center;
    display: inline-block;
}

.style_110 .text-box {
    text-align: center;
}

.style_110 span {
    font-size: 10rem;
    color: #55cbd3;
    font-weight: bold;
    display: block;
}

@media (max-width: 991px) {
    .style_110 .card {
        margin-bottom: 2rem;
    }
    .style_110 .card-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .style_110 span {
        font-size: 21vw;
    }
}

.style_111 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_111 .code-fallback-image.disabled {
    display: none;
}

.style_111 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_111 .code-text {
    color: #767676;
}

.style_111 .code-section-subtitle {
    color: #767676;
}

.style_111 .title .num {
    width: 100%;
    display: block;
}

.style_111 .title .card-title {
    z-index: 1;
}

.style_111 .num {
    color: #55cbd3;
}

@media (max-width: 767px) {
    .style_111 * {
        text-align: center !important;
    }
    .style_111 .content-column {
        margin-bottom: 2rem;
    }
}

.style_112 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_112 .code-fallback-image.disabled {
    display: none;
}

.style_112 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_112 .item {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.style_112 .item .icon-wrap {
    text-align: center;
}

.style_112 .item span {
    font-size: 2rem;
    color: #ffffff;
    line-height: 60px;
}

.style_112 .item::before {
    content: "\e96b";
    font-family: Moririse2 !important;
    position: absolute;
    font-size: 32px;
    left: -15px;
    top: 12%;
    color: #55cbd3;
}

.style_112 .item.first:before {
    display: none;
}

.style_112 .item.five:before {
    display: none;
}

.style_112 .icon-box {
    background: #55cbd3;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
}

.style_112 .text-box {
    margin-top: 1rem;
    text-align: center;
}

.style_112 .code-iconfont {
    color: #6592e6 !important;
    position: absolute;
    top: 50%;
    left: 100%;
}

@media (max-width: 991px) {
    .style_112 .item:before {
        display: none;
    }
    .style_112 .card-wrapper {
        margin-bottom: 2rem;
    }
}

.style_113 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_113 .code-fallback-image.disabled {
    display: none;
}

.style_113 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_113 .number-wrap {
    color: #232323;
    text-align: center;
}

.style_113 .number {
    color: #232323;
    white-space: nowrap;
}

.style_113 .period {
    display: block;
}

.style_113 .dot {
    display: none;
}

@media (max-width: 767px) {
    .style_113 .period {
        font-size: 0.8rem;
    }
}

.style_113 .btn {
    height: 100%;
    margin: 0;
}

.style_113 .code-section-btn {
    margin-bottom: 1.2rem;
}

.style_114 {
    background-image: url("../../../assets/images/background5.jpg");
}

.style_114 .code-fallback-image.disabled {
    display: none;
}

.style_114 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_114 .number-wrap {
    color: #232323;
    text-align: center;
}

.style_114 .number {
    color: #232323;
}

.style_114 .period {
    display: block;
}

.style_114 .dot {
    display: none;
}

@media (max-width: 767px) {
    .style_114 .period {
        font-size: 0.8rem;
    }
}

.style_114 .btn {
    height: 100%;
    margin: 0;
}

.style_114 .code-section-btn {
    margin-bottom: 1.2rem;
}

.style_115 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_115 .code-fallback-image.disabled {
    display: none;
}

.style_115 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_115 .number-wrap {
    color: #555555;
    text-align: center;
}

.style_115 .number {
    color: #55cbd3;
}

.style_115 .period {
    display: block;
}

.style_115 .dot {
    display: none;
}

@media (max-width: 767px) {
    .style_115 .period {
        font-size: 0.8rem;
    }
}

.style_115 .btn {
    height: 100%;
    margin: 0;
}

.style_115 .code-section-btn {
    margin-bottom: 1.2rem;
}

.style_115 .icons-menu .soc-item {
    padding-left: 8px;
    padding-right: 8px;
}

.style_115 .icons-menu .soc-item .code-iconfont {
    font-size: 2rem;
    display: flex;
    border-radius: 50%;
    text-align: center;
    color: #55cbd3;
    border: 2px solid #55cbd3;
    justify-content: center;
    align-content: center;
    transition: all 0.3s;
}

.style_115 .icons-menu .soc-item .code-iconfont:before {
    padding: 0.6rem;
}

.style_115 .icons-menu .soc-item .code-iconfont:hover {
    background-color: #55cbd3;
    color: #ffffff;
}

.style_116 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #fafafa;
}

.style_116 .code-fallback-image.disabled {
    display: none;
}

.style_116 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_116 .oldcost {
    text-decoration: line-through;
    color: #353535;
}

.style_116 .currentcost {
    color: #232323;
}

.style_116 .card-wrapper {
    border-radius: 4px;
    background: #ffffff;
}

@media (min-width: 992px) {
    .style_116 .text-box {
        padding: 2rem;
        padding-right: 4rem;
    }
}

@media (max-width: 991px) {
    .style_116 .text-box {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .style_116 .text-box {
        padding: 1rem;
    }
}

.style_116 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

.style_117 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_117 .code-fallback-image.disabled {
    display: none;
}

.style_117 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_117 .code-section-title,
.style_117 .code-section-subtitle {
    text-align: center;
}

.style_117 .cost {
    word-break: normal;
}

.style_117 .card-wrapper {
    margin-bottom: 2rem;
    border-radius: 4px;
    background: #fafafa;
}

.style_117 .card-wrapper .top-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .style_117 .card-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .style_117 .card-wrapper {
        padding: 1rem;
    }
}

.style_118 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #fafafa;
}

.style_118 .code-fallback-image.disabled {
    display: none;
}

.style_118 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 767px) {
    .style_118 .card-box {
        padding: 1rem;
    }
}

@media (min-width: 768px) {
    .style_118 .card-box {
        padding-right: 2rem;
    }
}

@media (min-width: 992px) {
    .style_118 .card-box {
        padding-left: 2rem;
        padding-right: 4rem;
    }
}

.style_118 .card-wrapper {
    border-radius: 4px;
    background-color: #ffffff;
}

.style_118 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

.style_118 .card:not(:nth-last-child(1)) {
    margin-bottom: 2rem;
}

.style_119 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_119 .code-fallback-image.disabled {
    display: none;
}

.style_119 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_119 .card-wrapper {
    background-color: #fafafa;
    margin-bottom: 2rem;
    border-radius: 4px;
    background: #fafafa;
    transition: all 0.3s;
    padding: 2rem;
    padding-top: 3rem;
}

.style_119 .code-section-title,
.style_119 .code-section-subtitle {
    text-align: center;
}

@media (min-width: 992px) {
    .style_119 .card-wrapper {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (max-width: 767px) {
    .style_119 .card-wrapper {
        padding: 1rem;
        padding-top: 2rem;
    }
}

.style_120 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_120 .code-fallback-image.disabled {
    display: none;
}

.style_120 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_120 .top-line {
    display: flex;
    justify-content: space-between;
}

.style_120 .code-section-title,
.style_120 .code-section-subtitle {
    text-align: center;
}

.style_120 .card:not(:nth-last-child(1)) {
    margin-bottom: 2rem;
}

.style_120 .card-wrapper {
    border-radius: 4px;
    background-color: #fafafa;
}

.style_120 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .style_120 .card-box {
        padding: 1rem;
    }
}

@media (min-width: 768px) {
    .style_120 .card-box {
        padding-right: 2rem;
    }
}

@media (min-width: 992px) {
    .style_120 .card-box {
        padding-left: 2rem;
        padding-right: 4rem;
    }
}

.style_121 {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #fafafa;
}

.style_121 .code-fallback-image.disabled {
    display: none;
}

.style_121 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_121 .card-wrapper {
    padding: 4rem;
    background-color: #ffffff;
    border-radius: 4px;
}

.style_121 .row {
    align-items: flex-start;
}

@media (max-width: 992px) {
    .style_121 .card {
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 767px) {
    .style_121 .card-wrapper {
        padding: 1rem;
    }
}

.style_121 ul {
    /* list-style: none; */
}

.style_121 li {
    position: relative;
}

.style_121 li:before {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    /* content: "\e908"; */
    font-family: var(--main-tipo-icons) !important;
    color: #55cbd3;
    font-size: 0.8rem;
}

.style_121 .code-section-btn {
    width: 100%;
}

.style_121 .btn {
    width: 100%;
}

.style_122 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #fafafa;
}

.style_122 .code-fallback-image.disabled {
    display: none;
}

.style_122 .code-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_122 .list-group-item {
    background-color: transparent;
    padding: .5rem 3.25rem;
}

.style_122 .plan-body {
    padding-bottom: 2rem;
}

.style_122 .plan-header {
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.style_122 .price {
    color: #55cbd3;
}

.style_122 .plan {
    word-break: break-word;
    background-color: #ffffff;
}

.style_122 .plan .list-group-item {
    position: relative;
    justify-content: center;
    border: 0;
}

.style_122 .plan .list-group-item::after {
    position: absolute;
    bottom: 1px;
    left: 25%;
    width: 50%;
    height: 1px;
    content: "";
    background-color: rgba(0, 0, 0, 0.1);
}

.style_122 .plan .list-group-item:last-child::after {
    display: none;
}

@media (max-width: 991px) {
    .style_122 .plan {
        margin-bottom: 2rem;
    }
}

.style_123 {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

.style_123 .row-links {
    width: 100%;
    justify-content: center;
}

.style_123 .social-row {
    width: 100%;
    justify-content: center;
}

.style_123 .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.style_123 .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}

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

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

.style_123 .media-container-row .social-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.style_123 .media-container-row .social-list .code-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}

.style_123 .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}

.style_123 .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}

.style_123 .media-container-row .social-list a:hover {
    opacity: 1;
}

@media (max-width: 767px) {
    .style_123 .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.style_123 .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

.style_123 .media-container-row .row-copirayt p {
    width: 100%;
}

.mbr-section-btn .btn:not(.btn-form) {
    border-radius: 100px;
}

.style_124 {
    padding-top: 12rem;
    padding-bottom: 2rem;
    background-color: #edefeb;
}

.style_124 .mbr-fallback-image.disabled {
    display: none;
}

.style_124 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
}

.style_124 .topbg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: #2b7a69;
}

.style_124 .mbr-section-title {
    color: #000000;
}

.style_124 .mbr-text,
.style_124 .mbr-section-btn {
    color: #000000;
}

.style_125 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_125 .mbr-fallback-image.disabled {
    display: none;
}

.style_125 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .style_125 .image-wrapper {
        margin-bottom: 1rem;
    }
}

.style_125 .row {
    flex-direction: row-reverse;
}

.style_125 .row {
    align-items: center;
}

@media (max-width: 991px) {
    .style_125 .image-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 992px) {
    .style_125 .text-wrapper {
        padding: 0 2rem;
    }
}

.style_125 .mbr-section-title {
    color: #000000;
}

.style_125 .mbr-text,
.style_125 .mbr-section-btn {
    color: #232323;
}

.style_126 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_126 .mbr-fallback-image.disabled {
    display: none;
}

.style_126 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_126 .item {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_126 .item {
        margin-bottom: 1rem;
    }
}

.style_126 .item-wrapper {
    position: relative;
}

.style_126 .item-wrapper .icon-wrapper {
    pointer-events: none;
    position: absolute;
    width: 60px;
    height: 60px;
    font-size: 22px;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 50%;
    opacity: 0;
    color: #464845 !important;
    transform: translateX(-50%) translateY(-50%);
    background-color: #edefea !important;
    transition: 0.2s;
}

.style_126 .item-wrapper:hover .icon-wrapper {
    opacity: 1;
}

.style_126 .carousel-control,
.style_126 .close {
    background: #1b1b1b;
}

.style_126 .carousel-control-prev {
    margin-left: 2.5rem;
}

.style_126 .carousel-control-prev span {
    margin-right: 5px;
}

.style_126 .carousel-control-next {
    margin-right: 2.5rem;
}

.style_126 .carousel-control-next span {
    margin-left: 5px;
}

.style_126 .close {
    position: fixed;
    opacity: 0.5;
    font-size: 22px;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    font-family: 'Moririse2';
    align-items: center;
    justify-content: center;
    display: flex;
}

.style_126 .close::before {
    content: '\e91a';
}

.style_126 .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}

.style_126 .carousel-control {
    display: flex;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.style_126 .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_126 .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_126 .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}

.style_126 .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 3px;
}

.style_126 .carousel-indicators li {
    max-width: 15px;
    height: 15px;
    width: 15px;
    max-height: 15px;
    margin: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s;
}

.style_126 .carousel-indicators li.active,
.style_126 .carousel-indicators li:hover {
    opacity: 0.9;
}

.style_126 .carousel-indicators li::after,
.style_126 .carousel-indicators li::before {
    content: none;
}

.style_126 .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}

@media (max-width: 768px) {
    .style_126 .carousel-indicators {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .style_126 .carousel-indicators {
        margin-bottom: 3.625rem !important;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (max-width: 767px) {
    .style_126 .carousel-indicators {
        display: none;
    }
}

.style_126 .carousel-inner {
    display: flex;
    align-items: center;
}

.style_126 .carousel-inner>.active {
    display: block;
}

.style_126 .carousel-control.left {
    left: 0;
    margin-left: 2.5rem;
}

.style_126 .carousel-control.right {
    right: 0;
    margin-right: 2.5rem;
}

.style_126 .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}

@media (max-width: 768px) {
    .style_126 .carousel-control,
    .style_126 .carousel-indicators,
    .style_126 .modal .close {
        position: fixed;
    }
}

@media (max-width: 767px) {
    .style_126 .mbr-slider .carousel-control {
        top: auto;
        bottom: 20px;
    }
    .style_126 .mbr-slider>.container .carousel-control {
        margin-bottom: 0;
    }
}

.style_126 .carousel-indicators .active,
.style_126 .carousel-indicators li {
    width: 7px;
    height: 7px;
    margin: 3px;
    background: #000000;
    opacity: 0.5;
    border: 4px solid #000000;
}

.style_126 .carousel-indicators .active {
    background: #fff;
}

.style_126 .carousel-indicators li {
    max-width: 15px;
    max-height: 15px;
    border-radius: 50%;
}

.style_126 .modal {
    padding-left: 0 !important;
    position: fixed;
    overflow: hidden;
    padding-right: 0 !important;
}

.style_126 .modal-dialog {
    margin: 0 auto;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.style_126 .modal-content {
    border-radius: 0;
    border: none;
    background: transparent;
}

.style_126 .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
}

.style_126 .modal-body img {
    width: 100%;
    object-fit: contain;
    max-height: calc(100vh - 1.75rem);
}

.style_126 .carousel {
    width: 100%;
}

.style_126 .modal-backdrop.in {
    opacity: 0.8;
}

.style_126 .modal.fade .modal-dialog {
    transition: margin-top 0.3s ease-out;
}

.style_126 .modal.fade .modal-dialog,
.style_126 .modal.in .modal-dialog {
    transform: none;
}

.style_126 .mbr-gallery .item-wrapper {
    cursor: pointer;
}

.style_126 .content-head {
    max-width: 800px;
}

.style_126 H3 {
    text-align: center;
}

.style_126 H4 {
    text-align: center;
}

.style_225 {
    padding-top: 4rem;
    padding-bottom: 6rem;
    background-color: #2b7a69;
}

.style_225 img,
.style_225 .item-img {
    width: 100%;
    height: 100%;
    height: 300px;
    object-fit: cover;
}

.style_225 .item:focus,
.style_225 span:focus {
    outline: none;
}

.style_225 .item {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_225 .item {
        margin-bottom: 1rem;
    }
}

.style_225 .item-content {
    margin-top: 2rem;
    padding: 0 2.25rem 2.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 767px) {
    .style_225 .item-content {
        padding: 0 2rem 1.5rem;
        margin-top: 1rem;
    }
}

.style_225 .item-wrapper {
    position: relative;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.style_225 .item-wrapper .item-footer {
    margin-top: auto;
}

.style_225 .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.style_225 .item-title {
    text-align: left;
}

.style_225 .item-subtitle {
    text-align: left;
}

.style_225 .mbr-text,
.style_225 .item .mbr-section-btn {
    text-align: left;
}

.style_225 .content-head {
    max-width: 800px;
}

.style_225 .mbr-section-subtitle,
.style_225 .mbr-section-head .mbr-section-btn {
    color: #ffffff;
    text-align: center;
}

.style_127 {
    display: flex;
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #086784;
}

@media (min-width: 768px) {
    .style_127 {
        align-items: center;
    }
    .style_127 .row {
        justify-content: center;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .style_127 .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .style_127 {
        -webkit-align-items: center;
        align-items: center;
    }
    .style_127 .mbr-row {
        -webkit-justify-content: center;
        justify-content: center;
    }
    .style_127 .content-wrap {
        width: 100%;
    }
}

.style_127 .mbr-section-title {
    text-align: center;
}

.style_127 .mbr-text,
.style_127 .mbr-section-btn {
    text-align: center;
}

.style_128 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #260a30;
}

.style_128 input {
    padding: 1.2rem 1.5rem;
    border: none !important;
    height: 100%;
}

.style_128 input:hover {
    border: none !important;
}

.style_128 .btn {
    height: 100%;
    margin: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 992px) {
    .style_128 .text-wrapper {
        padding: 0 2rem;
    }
}

.style_128 .row {
    justify-content: center;
}

.style_128 .mbr-section-btn {
    display: flex;
    margin-bottom: 1.2rem;
    width: fit-content;
}

.style_128 .mbr-section-btn .btn {
    width: auto;
}

@media (max-width: 991px) {
    .style_128 .image-wrapper {
        margin-bottom: 2rem;
    }
    .style_128 .content-wrapper {
        flex-direction: column-reverse;
    }
}

.style_128 .justify-content-center {
    align-items: center;
}

.style_128 .mbr-section-title {
    text-align: center;
    color: #ffd7ef;
}

.style_129 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_129 .mbr-fallback-image.disabled {
    display: none;
}

.style_129 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
}

.style_129 .topbg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: #edefeb;
}

.style_129 .mbr-section-title {
    color: #000000;
    text-align: center;
}

.style_129 .mbr-text,
.style_129 .mbr-section-btn {
    color: #000000;
}

.style_129 .media-content,
.style_129 .mbr-figure {
    align-self: center;
}

.style_129 .mbr-figure iframe {
    width: 100%;
    overflow: hidden;
}

.style_129 .app-video-wrapper {
    background: transparent;
}

.style_130 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_130 .mbr-fallback-image.disabled {
    display: none;
}

.style_130 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 992px) {
    .style_130 .mbr-figure {
        margin-top: 1.5rem;
    }
}

.style_130 .row {
    align-items: center;
}

@media (min-width: 992px) {
    .style_130 .text-wrapper {
        padding: 0 2rem;
    }
}

.style_130 .media-content,
.style_130 .mbr-figure {
    align-self: center;
}

.style_130 .mbr-figure iframe {
    width: 100%;
    border-radius: 2rem;
    overflow: hidden;
}

.style_130 .mbr-figure {
    border-radius: 0rem;
    overflow: hidden;
}

@media (min-width: 767px) {
    .style_130 .mbr-figure {
        border-radius: 2rem;
    }
}

.style_131 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #2e481a;
}

.style_131 .mbr-fallback-image.disabled {
    display: none;
}

.style_131 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
}

.style_131 .topbg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: #edefeb;
}

.style_131 .mbr-section-title {
    color: #ffffff;
}

.style_131 .mbr-text,
.style_131 .mbr-section-btn {
    color: #ffffff;
}

.style_131 .content-head {
    max-width: 800px;
}

.style_132 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_132 .mbr-fallback-image.disabled {
    display: none;
}

.style_132 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .style_132 .image-wrapper {
        margin-bottom: 1rem;
    }
}

.style_132 .row {
    flex-direction: row-reverse;
}

.style_132 .row {
    align-items: center;
}

@media (max-width: 991px) {
    .style_132 .image-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 992px) {
    .style_132 .text-wrapper {
        padding: 0 2rem;
    }
}

.style_132 .mbr-section-title {
    color: #000000;
}

.style_132 .mbr-text,
.style_132 .mbr-section-btn {
    color: #232323;
}

.style_133 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_133 .mbr-fallback-image.disabled {
    display: none;
}

.style_133 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_133 .card-wrapper {
    background: #ffffff;
    padding: 2.5rem;
}

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

@media (max-width: 767px) {
    .style_133 .card-wrapper {
        padding: 1.5rem;
    }
}

.style_133 .row {
    justify-content: space-between;
}

.style_134 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f7f7f7;
}

.style_134 .mbr-fallback-image.disabled {
    display: none;
}

.style_134 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_134 .item-wrapper {
    display: flex;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_134 .item-wrapper {
        margin-bottom: 1rem;
    }
}

.style_134 .img-wrapper {
    width: 10rem;
    padding-right: 2rem;
}

.style_134 .card-text {
    color: #232323;
}

.style_135 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #2e481a;
}

.style_135 .mbr-fallback-image.disabled {
    display: none;
}

.style_135 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
}

.style_135 .topbg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: #edefeb;
}

.style_135 .mbr-section-title {
    color: #ffffff;
}

.style_135 .mbr-text,
.style_135 .mbr-section-btn {
    color: #ffffff;
}

.style_135 .media-content,
.style_135 .mbr-figure {
    align-self: center;
}

.style_135 .mbr-figure iframe {
    width: 100%;
    overflow: hidden;
}

.style_135 .app-video-wrapper {
    background: transparent;
}

.style_135 .content-head {
    max-width: 800px;
}

.style_136 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #260a30;
}

.style_136 input {
    padding: 1.2rem 1.5rem;
    border: none !important;
    height: 100%;
}

.style_136 input:hover {
    border: none !important;
}

.style_136 .btn {
    height: 100%;
    margin: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 992px) {
    .style_136 .text-wrapper {
        padding: 0 2rem;
    }
}

.style_136 .row {
    justify-content: center;
}

.style_136 .mbr-section-btn {
    display: flex;
    margin-bottom: 1.2rem;
    width: fit-content;
}

.style_136 .mbr-section-btn .btn {
    width: auto;
}

@media (max-width: 991px) {
    .style_136 .image-wrapper {
        margin-bottom: 2rem;
    }
    .style_136 .content-wrapper {
        flex-direction: column-reverse;
    }
}

.style_136 .justify-content-center {
    align-items: center;
}

.style_136 .mbr-section-title {
    text-align: center;
    color: #ffd7ef;
}

.style_137 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #a0e1e1;
}

.style_137 input {
    padding: 1.5rem 1.5rem;
    border: none !important;
    height: 100%;
}

.style_137 input:hover {
    border: none !important;
}

.style_137 .btn {
    height: 100%;
    margin: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 992px) {
    .style_137 .text-wrapper {
        padding: 0 2rem;
    }
}

@media (max-width: 767px) {
    .style_137 .row {
        justify-content: center;
    }
}

.style_137 .mbr-section-btn {
    display: flex;
    width: fit-content;
}

@media (max-width: 767px) {
    .style_137 .mbr-section-btn {
        margin-top: 1rem;
    }
}

.style_137 .mbr-section-btn .btn {
    width: auto;
}

@media (max-width: 991px) {
    .style_137 .image-wrapper {
        margin-bottom: 2rem;
    }
    .style_137 .content-wrapper {
        flex-direction: column-reverse;
    }
}

.style_137 .justify-content-center {
    align-items: center;
}

.style_137 .mbr-section-title {
    color: #260a30;
}

.style_137 .mbr-text {
    color: #260a30;
}

.style_138 {
    display: flex;
    background-image: url("../../../assets/images/background1.jpg");
}

.style_138 .mbr-overlay {
    background-color: #ffa600;
    opacity: 0.5;
}

.style_138 .content-wrap {
    padding: 5rem 1rem;
}

@media (min-width: 768px) {
    .style_138 {
        align-items: center;
    }
    .style_138 .row {
        justify-content: center;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .style_138 .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .style_138 {
        -webkit-align-items: center;
        align-items: center;
    }
    .style_138 .mbr-row {
        -webkit-justify-content: center;
        justify-content: center;
    }
    .style_138 .content-wrap {
        width: 100%;
    }
}

.style_138 .mbr-section-title {
    text-align: center;
}

.style_138 .mbr-text,
.style_138 .mbr-section-btn {
    text-align: center;
}

.style_139 {
    display: flex;
    background-image: url("../../../assets/images/background17.jpg");
}

.style_139 .mbr-overlay {
    background-color: #000000;
    opacity: 0.5;
}

.style_139 .content-wrap {
    padding: 5rem 1rem;
    max-width: 800px;
}

@media (min-width: 768px) {
    .style_139 {
        align-items: flex-end;
    }
    .style_139 .row {
        justify-content: center;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .style_139 .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .style_139 {
        -webkit-align-items: center;
        align-items: center;
    }
    .style_139 .mbr-row {
        -webkit-justify-content: center;
        justify-content: center;
    }
    .style_139 .content-wrap {
        width: 100%;
    }
}

.style_139 .mbr-section-title {
    text-align: center;
}

.style_139 .mbr-text,
.style_139 .mbr-section-btn {
    text-align: center;
}

.style_139_B {
    display: flex;
    /* background-image: url("../../../assets/images/background17.jpg"); */
}

.style_139_B .mbr-overlay {
    background-color: #000000;
    opacity: 0.5;
}

.style_139_B .content-wrap {
    padding: 5rem 1rem;
    max-width: 800px;
}

@media (min-width: 768px) {
    .style_139_B {
        align-items: flex-end;
    }
    .style_139_B .row {
        justify-content: center;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .style_139_B .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .style_139_B {
        -webkit-align-items: center;
        align-items: center;
    }
    .style_139_B .mbr-row {
        -webkit-justify-content: center;
        justify-content: center;
    }
    .style_139_B .content-wrap {
        width: 100%;
    }
}

.style_139_B .mbr-section-title {
    text-align: center;
}

.style_139_B .mbr-text,
.style_139_B .mbr-section-btn {
    text-align: center;
}

.style_140 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_140 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_140 .mbr-fallback-image.disabled {
    display: none;
}

.style_140 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_140 .content-head {
    max-width: 800px;
}

.style_141 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_141 .mbr-fallback-image.disabled {
    display: none;
}

.style_141 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_141 .image-wrap img {
    width: 100%;
}

@media (min-width: 992px) {
    .style_141 .image-wrap img {
        display: block;
        margin: auto;
        width: 80%;
    }
}

.style_141 .row-links {
    width: 100%;
    justify-content: center;
}

.style_141 .header-menu {
    margin-top: 2rem;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}

.style_141 .header-menu li {
    padding: 0 1rem 1rem 1rem;
}

.style_141 .header-menu li p {
    margin: 0;
}

.style_141 .content-head {
    max-width: 800px;
}

.style_142 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-image: url("../../../assets/images/background3.jpg");
}

.style_142 .mbr-fallback-image.disabled {
    display: none;
}

.style_142 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_142 .card-wrapper {
    background: #ffffff;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .style_142 .card-wrapper {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .style_142 .card-wrapper {
        padding: 2.25rem;
    }
}

@media (min-width: 992px) {
    .style_142 .card-wrapper {
        padding: 4rem;
    }
}

.style_142 .mbr-text,
.style_142 .mbr-section-btn {
    text-align: left;
}

.style_143 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_143 .mbr-fallback-image.disabled {
    display: none;
}

.style_143 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_143 .card-wrapper {
    border-radius: 4px;
}

@media (max-width: 767px) {
    .style_143 .card-wrapper {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .style_143 .card-wrapper {
        padding: 2.25rem;
    }
}

@media (min-width: 992px) {
    .style_143 .card-wrapper {
        padding: 4rem;
    }
}

.style_143 .wrap {
    background: url("../../../assets/images/background1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.style_143 .wrap .inner-wrap {
    padding: 40px;
}

.style_143 .card-title {
    color: #ffffff;
    text-align: left;
}

.style_143 .mbr-text,
.style_143 .mbr-section-btn {
    color: #ffffff;
    text-align: left;
}

.style_144 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #260a30;
}

.style_144 .mbr-fallback-image.disabled {
    display: none;
}

.style_144 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_144 .image-wrap img {
    width: 100%;
}

@media (min-width: 992px) {
    .style_144 .image-wrap img {
        display: block;
        margin: auto;
    }
}

.style_144 .row-links {
    width: 100%;
    justify-content: center;
}

.style_144 .header-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}

.style_144 .header-menu li {
    padding: 0 1rem 1rem 1rem;
}

.style_144 .header-menu li p {
    margin: 0;
}

.style_144 .mbr-section-title {
    color: #ffffff;
}

.style_144 .header-menu-item {
    color: #ffffff;
}

.style_144 .mbr-text,
.style_144 .mbr-section-btn {
    color: #ffffff;
    text-align: center;
}

.style_144 .content-head {
    max-width: 800px;
}

.style_145 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #edefeb;
}

.style_145 .mbr-fallback-image.disabled {
    display: none;
}

.style_145 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_145 .team-card {
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.style_145 .team-card:hover {
    transform: translateY(-10px);
}

.style_145 .content-head {
    max-width: 800px;
}

.style_145 .card1 {
    background: #ffd7ef;
}

.style_145 .card2 {
    background: #260a30;
}

.style_145 .card3 {
    background: #a0e2e1;
}

.style_145 .card4 {
    background: #2e481a;
}

.style_145 .image-wrap {
    padding-bottom: 0rem;
    position: relative;
}

.style_145 .image-wrap .social-row {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
}

.style_145 .card-wrap {
    margin-bottom: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .style_145 .card-wrap {
        margin-bottom: 1rem;
    }
}

.style_145 .card-wrap .image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.style_145 .card-wrap .content-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.style_145 .card-wrap .content-wrap .content-footer {
    margin-top: auto;
}

@media (min-width: 768px) {
    .style_145 .card-wrap .content-wrap {
        padding: 2.25rem;
    }
}

@media (max-width: 767px) {
    .style_145 .card-wrap .content-wrap {
        padding: 1.5rem;
    }
}

.style_145 .social-row .soc-item {
    display: inline-block;
    text-align: center;
    border-radius: 1.5rem;
    margin-right: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
}

.style_145 .tag1 {
    background: #ffd7ef;
    color: #502274;
}

.style_145 .tag2 {
    background: #260a30;
    color: #ffd7ef;
}

.style_145 .tag3 {
    background: #a0e2e1;
    color: #232323;
}

.style_145 .tag4 {
    background: #2e481a;
    color: #ffffff;
}

.style_145 .card-text3,
.style_145 .mbr-section-btn {
    color: #232323;
}

.style_145 .card-text2,
.style_145 .mbr-section-btn {
    color: #ffd7ef;
}

.style_145 .card-text1,
.style_145 .mbr-section-btn {
    color: #502274;
}

.style_145 .card-title2,
.style_145 .social-row {
    color: #ffd7ef;
}

.style_145 .mbr-role3,
.style_145 .social-row {
    color: #ffffff;
}

.style_145 .card-title3,
.style_145 .social-row {
    color: #232323;
}

.style_145 .card-title4,
.style_145 .social-row {
    color: #ffffff;
}

.style_145 .mbr-role3 {
    color: #232323;
}

.style_145 .mbr-role2 {
    color: #ffd7ef;
}

.style_145 .mbr-role4 {
    color: #ffffff;
}

.style_145 .card-text4,
.style_145 .mbr-section-btn {
    color: #ffffff;
}

.style_146 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_146 .item-subtitle {
    line-height: 1.2;
    color: #000000;
}

.style_146 img,
.style_146 .item-img {
    width: 100%;
    height: 100%;
    height: 400px;
    object-fit: cover;
}

.style_146 .item:focus,
.style_146 span:focus {
    outline: none;
}

.style_146 .item {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_146 .item {
        margin-bottom: 1rem;
    }
}

.style_146 .item-wrapper {
    position: relative;
    border-radius: 4px;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.style_146 .mbr-section-title {
    color: #232323;
}

.style_146 .mbr-text,
.style_146 .mbr-section-btn {
    color: #232323;
}

.style_146 .item-title {
    color: #232323;
}

.style_146 .content-head {
    max-width: 800px;
}

.style_147 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_147 img,
.style_147 .item-img {
    width: 100%;
    height: 100%;
    height: 300px;
    object-fit: cover;
}

.style_147 .item:focus,
.style_147 span:focus {
    outline: none;
}

.style_147 .item {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_147 .item {
        margin-bottom: 1rem;
    }
}

.style_147 .item-content {
    margin-top: 2rem;
    padding: 0 2.25rem 2.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 767px) {
    .style_147 .item-content {
        padding: 2rem 1.5rem;
        padding-top: 1rem;
        margin-top: 1rem;
    }
}

.style_147 .item-wrapper {
    position: relative;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.style_147 .item-wrapper .item-footer {
    margin-top: auto;
}

.style_147 .mbr-section-title {
    color: #000000;
}

.style_147 .item-title {
    text-align: left;
}

.style_147 .item-subtitle {
    text-align: left;
}

.style_147 .mbr-text,
.style_147 .item .mbr-section-btn {
    text-align: left;
}

.style_147 .content-head {
    max-width: 800px;
}

.style_148 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #282828;
}

.style_148 .mbr-fallback-image.disabled {
    display: none;
}

.style_148 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_148 .item-mb {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_148 .item-mb {
        margin-bottom: 1rem;
    }
}

.style_148 .item-wrapper {
    background: #000000;
    padding: 2.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .style_148 .item-wrapper {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
}

.style_148 .mbr-iconfont {
    display: inline-flex;
    font-size: 3rem;
    color: #293a74;
    margin-bottom: 1rem;
    width: 80px;
    justify-content: center;
    align-items: center;
    background: #8ca3cc;
    height: 80px;
    border-radius: 50%;
}

.style_148 .mbr-section-title {
    color: #8ca3cc;
}

.style_148 .mbr-section-subtitle {
    color: #ffffff;
}

.style_148 .card-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.style_148 .card-box .item-footer {
    margin-top: auto;
}

.style_148 .content-head {
    max-width: 800px;
}

.style_148 p,
h5 {
    color: #FFFFFF;
}

.style_148 a {
    color: #8ca3cc;
}

.style_148 a:hover {
    color: #FFFFFF;
}

.style_149 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_149 img,
.style_149 .item-img {
    width: 100%;
    height: 100%;
    height: 300px;
    object-fit: cover;
}

.style_149 .item:focus,
.style_149 span:focus {
    outline: none;
}

.style_149 .item {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_149 .item {
        margin-bottom: 1rem;
    }
}

.style_149 .item-wrapper {
    position: relative;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.style_149 .item-wrapper .item-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.style_149 .item-wrapper .item-footer {
    margin-top: auto;
}

@media (min-width: 992px) {
    .style_149 .item-wrapper .item-content {
        padding: 2.25rem;
    }
}

@media (max-width: 991px) {
    .style_149 .item-wrapper .item-content {
        padding: 1.5rem;
    }
}

.style_149 .mbr-section-title {
    color: #232323;
}

.style_149 .mbr-text,
.style_149 .mbr-section-btn {
    text-align: center;
}

.style_149 .item-title {
    text-align: center;
}

.style_149 .content-head {
    max-width: 800px;
}

.style_150 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #edefeb;
}

.style_150 .mbr-fallback-image.disabled {
    display: none;
}

.style_150 .content-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.style_150 .content-wrap .mbr-section-btn {
    justify-self: flex-end;
    margin-top: auto;
}

.style_150 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_150 .content-head {
    max-width: 800px;
}

.style_150 .card1 {
    background: #a0e2e1;
}

.style_150 .card2 {
    background: #260a30;
}

.style_150 .card3 {
    background: #3a341c;
}

.style_150 .card4 {
    background: #ffd7ef;
}

.style_150 .image-wrap {
    padding-bottom: 0rem;
    position: relative;
}

.style_150 .image-wrap .social-row {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
}

.style_150 .card {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_150 .card {
        margin-bottom: 1rem;
    }
}

.style_150 .card-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.style_150 .card-wrap .image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .style_150 .card-wrap .content-wrap {
        padding: 2.25rem;
    }
}

@media (max-width: 767px) {
    .style_150 .card-wrap .content-wrap {
        padding: 1.5rem;
    }
}

.style_150 .title-row {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 2rem;
    width: 100%;
}

@media (max-width: 767px) {
    .style_150 .title-row {
        padding: 1.5rem;
    }
}

.style_150 .card-title2,
.style_150 .social-row {
    color: #ffc091;
}

.style_150 .card-title1,
.style_150 .social-row {
    color: #260a30;
}

.style_150 .card-title3,
.style_150 .social-row {
    color: #ffeb69;
}

.style_150 .card-text3,
.style_150 .mbr-section-btn {
    color: #ffffff;
}

.style_150 .card-text1,
.style_150 .mbr-section-btn {
    color: #260a30;
}

.style_150 .card-text2,
.style_150 .mbr-section-btn {
    color: #ffffff;
}

.style_150 .card-title4,
.style_150 .social-row {
    color: #320707;
}

.style_150 .card-text4,
.style_150 .mbr-section-btn {
    color: #320707;
}

.style_150 .mbr-role2 {
    color: #ffffff;
}

.style_150 .mbr-role4 {
    color: #320707;
}

.style_150 .mbr-role3 {
    color: #ffffff;
}

.style_151 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_151 .mbr-fallback-image.disabled {
    display: none;
}

.style_151 .item-wrapper {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

@media (max-width: 767px) {
    .style_151 .item-wrapper {
        margin-bottom: 1rem;
    }
}

.style_151 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_151 .mbr-iconfont {
    display: inline-flex;
    font-size: 2rem;
    color: #d70081;
    width: 80px;
    justify-content: center;
    align-items: center;
    background: #ffd7ef;
    height: 80px;
    border-radius: 50%;
}

.style_151 .card-title,
.style_151 .iconfont-wrapper {
    color: #000000;
}

.style_151 .card-text {
    color: #000000;
}

.style_151 .content-head {
    max-width: 800px;
}

.style_151 .mbr-section-title {
    color: #000000;
}

.style_152 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_152 .item-subtitle {
    line-height: 1.2;
    color: #000000;
}

.style_152 img,
.style_152 .item-img {
    width: 100%;
    height: 100%;
    height: 400px;
    object-fit: cover;
}

.style_152 .item:focus,
.style_152 span:focus {
    outline: none;
}

.style_152 .item {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_152 .item {
        margin-bottom: 1rem;
    }
}

.style_152 .item-wrapper {
    position: relative;
    border-radius: 4px;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.style_152 .item-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.style_152 .item-content .item-footer {
    margin-top: auto;
}

.style_152 .mbr-section-title {
    color: #000000;
}

.style_152 .mbr-text,
.style_152 .mbr-section-btn {
    color: #000000;
}

.style_152 .item-title {
    color: #000000;
}

.style_152 .content-head {
    max-width: 800px;
}

.style_153 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_153 h6 {
    line-height: 1.2;
}

.style_153 img,
.style_153 .item-img {
    width: 100%;
}

.style_153 .item:focus,
.style_153 span:focus {
    outline: none;
}

.style_153 .item {
    cursor: pointer;
}

.style_153 .item-wrapper {
    position: relative;
    border-radius: 4px;
    display: flex;
    flex-flow: column nowrap;
}

.style_153 .mbr-section-btn {
    margin-top: auto !important;
    text-align: center;
}

.style_153 .mbr-section-title {
    color: #000000;
}

.style_153 .mbr-text,
.style_153 .mbr-section-btn {
    color: #000000;
}

.style_153 .item-title {
    color: #000000;
    text-align: center;
}

.style_153 .item-subtitle {
    color: #000000;
    text-align: center;
}

.style_153 .item-text {
    color: #000000;
    text-align: center;
}

.style_153 .content-head {
    max-width: 800px;
}

.style_154 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_154 .mbr-fallback-image.disabled {
    display: none;
}

.style_154 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_154 .item-wrapper {
    display: flex;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_154 .item-wrapper {
        margin-bottom: 1rem;
    }
}

.style_154 .img-wrapper {
    width: 10rem;
    padding-right: 1.5rem;
}

.style_154 .content-head {
    max-width: 800px;
}

.style_155 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_155 .mbr-fallback-image.disabled {
    display: none;
}

.style_155 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_155 .item-wrapper {
    display: flex;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_155 .item-wrapper {
        margin-bottom: 1rem;
    }
}

.style_155 .mbr-section-title {
    text-align: center;
}

.style_155 .mbr-section-subtitle {
    text-align: center;
}

.style_155 .image-wrapper {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
}

.style_155 .image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.style_155 .content-head {
    max-width: 800px;
}

.style_156 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ededed;
}

.style_156 img,
.style_156 .item-img {
    width: 100%;
    height: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .style_156 img,
    .style_156 .item-img {
        max-height: 300px;
    }
}

.style_156 .item:focus,
.style_156 span:focus {
    outline: none;
}

.style_156 .item-wrapper {
    position: relative;
}

.style_156 .slide-content {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}

@media (min-width: 768px) {
    .style_156 .slide-content .item-content {
        padding: 2.25rem 2.25rem 0;
    }
    .style_156 .slide-content .item-footer {
        padding: 0 2.25rem 2.25rem;
    }
}

@media (max-width: 767px) {
    .style_156 .slide-content .item-content {
        padding: 1.5rem 1.5rem 0;
    }
    .style_156 .slide-content .item-footer {
        padding: 0 1.5rem 1.5rem;
    }
}

.style_156 .mbr-section-btn {
    margin-top: auto !important;
}

.style_156 .mbr-section-title {
    color: #232323;
}

.style_156 .mbr-text,
.style_156 .mbr-section-btn {
    text-align: left;
}

.style_156 .item-title {
    text-align: left;
}

.style_156 .item-subtitle {
    text-align: left;
    color: #bbbbbb;
}

.style_156 .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 370px;
    max-width: 370px;
}

@media (max-width: 768px) {
    .style_156 .embla__slide {
        min-width: 85%;
        max-width: initial;
    }
}

.style_156 .embla__button--next,
.style_156 .embla__button--prev {
    display: flex;
}

.style_156 .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .style_156 .embla__button {
        display: none;
    }
}

.style_156 .embla__button:disabled {
    cursor: default;
    display: none;
}

.style_156 .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}

.style_156 .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_156 .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_156 .embla__button {
        top: auto;
    }
}

.style_156 .embla {
    position: relative;
    width: 100%;
}

.style_156 .embla__viewport {
    overflow: hidden;
    width: 100%;
}

.style_156 .embla__viewport.is-draggable {
    cursor: grab;
}

.style_156 .embla__viewport.is-dragging {
    cursor: grabbing;
}

.style_156 .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    .style_156 .embla__container .embla__slide:first-child {
        margin-left: 2rem !important;
    }
    .style_156 .embla__container .embla__slide:last-child {
        margin-right: 2rem !important;
    }
}

.style_156 .content-head {
    max-width: 800px;
}

.style_157 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #2e481a;
}

.style_157 .item-wrapper img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50% !important;
}

.style_157 .mbr-fallback-image.disabled {
    display: none;
}

.style_157 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_157 .item-wrapper {
    background: #ffffff;
    margin-bottom: 2rem;
    padding: 2.25rem;
}

@media (max-width: 767px) {
    .style_157 .item-wrapper {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
}

.style_157 .card-title,
.style_157 .iconfont-wrapper {
    color: #000000;
}

.style_157 .content-head {
    max-width: 800px;
}

.style_157 .mbr-section-title {
    color: #9fe870;
}

.style_157 .mbr-section-subtitle {
    color: #ffffff;
}

.style_157 .card-text {
    color: #000000;
}

.style_158 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_158 .mbr-fallback-image.disabled {
    display: none;
}

.style_158 .item-wrapper img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%!important;
}

.style_158 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_158 .item-wrapper {
    background: #edefeb;
    margin-bottom: 2rem;
    padding: 2.25rem;
}

@media (max-width: 767px) {
    .style_158 .item-wrapper {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
}

.style_158 .card-title,
.style_158 .iconfont-wrapper {
    color: #000000;
}

.style_158 .card-text {
    color: #000000;
}

.style_158 .content-head {
    max-width: 800px;
}

.style_158 .mbr-section-title {
    color: #000000;
}

.style_159 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_159 .mbr-fallback-image.disabled {
    display: none;
}

.style_159 .item-wrapper img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%!important;
}

.style_159 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_159 .item-wrapper {
    background: #edefeb;
    margin-bottom: 2rem;
    padding: 2.25rem;
}

@media (max-width: 767px) {
    .style_159 .item-wrapper {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
}

.style_159 .card-title,
.style_159 .iconfont-wrapper {
    color: #000000;
}

.style_159 .card-text {
    color: #000000;
}

.style_159 .content-head {
    max-width: 800px;
}

.style_159 .mbr-section-title {
    color: #000000;
}

.style_160 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_160 .mbr-fallback-image.disabled {
    display: none;
}

.style_160 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_160 .item-mb {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_160 .item-mb {
        margin-bottom: 1rem;
    }
}

.style_160 .item-wrapper {
    background: #ffffff;
    padding: 2.25rem;
}

@media (max-width: 767px) {
    .style_160 .item-wrapper {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
}

.style_160 .mbr-iconfont {
    display: inline-flex;
    font-size: 3rem;
    color: #d70081;
    margin-bottom: 1rem;
    width: 80px;
    justify-content: center;
    align-items: center;
    background: #ffd7ef;
    height: 80px;
    border-radius: 50%;
}

.style_160 .mbr-section-title {
    color: #d70081;
}

.style_160 .mbr-section-subtitle {
    color: #232323;
}

.style_160 .card-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.style_160 .card-box .item-footer {
    margin-top: auto;
}

.style_160 .content-head {
    max-width: 800px;
}

.style_161 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_161 .mbr-fallback-image.disabled {
    display: none;
}

.style_161 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 767px) {
    .style_161 .image-wrapper {
        flex-direction: column;
    }
    .style_161 .image-wrapper img {
        margin: auto;
        margin-bottom: 1rem;
    }
}

.style_161 .card-box {
    max-width: 700px;
    padding-top: 2rem;
    margin-left: auto;
    margin-right: 0;
}

.style_161 img,
.style_161 .item-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.style_161 .card-wrapper {
    background: #ffffff;
}

.style_161 .mbr-text,
.style_161 .mbr-section-btn {
    color: #000000;
}

.style_161 .card-title,
.style_161 .card-box {
    color: #232323;
}

@media (max-width: 767px) {
    .style_161 .card-content-text {
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .style_161 .card-content-text {
        padding: 2.25rem 2.25rem 2.25rem 2.25rem;
    }
}

.style_162 {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: #edefeb;
}

.style_162 .mbr-fallback-image.disabled {
    display: none;
}

.style_162 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .style_162 .image-wrapper {
        margin-bottom: 1rem;
    }
}

.style_162 .row {
    align-items: center;
}

@media (max-width: 991px) {
    .style_162 .image-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 992px) {
    .style_162 .text-wrapper {
        padding: 0 2rem;
    }
}

.style_162 .mbr-section-title {
    color: #260a30;
}

.style_162 .mbr-text,
.style_162 .mbr-section-btn {
    color: #260a30;
}

.style_163 {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: #edefeb;
}

.style_163 .mbr-fallback-image.disabled {
    display: none;
}

.style_163 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .style_163 .image-wrapper {
        margin-bottom: 1rem;
    }
}

.style_163 .row {
    flex-direction: row-reverse;
}

.style_163 .row {
    align-items: center;
}

@media (max-width: 991px) {
    .style_163 .image-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 992px) {
    .style_163 .text-wrapper {
        padding: 0 2rem;
    }
}

.style_163 .mbr-section-title {
    color: #000000;
}

.style_163 .mbr-text,
.style_163 .mbr-section-btn {
    color: #000000;
}

.style_164 {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: #2e481a;
}

.style_164 .mbr-fallback-image.disabled {
    display: none;
}

.style_164 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_164 .card-wrapper {
    overflow: hidden;
    background: #edefeb;
}

.style_164 .text-wrapper {
    padding: 4rem 3rem;
}

@media (min-width: 768px) and (max-width: 991px) {
    .style_164 .text-wrapper {
        padding: 2.25rem;
    }
}

@media (max-width: 767px) {
    .style_164 .text-wrapper {
        padding: 1.5rem;
    }
}

.style_164 .row {
    align-items: center;
    margin-right: -1rem;
    margin-left: -1rem;
}

.style_164 .row {
    flex-direction: row-reverse;
}

.style_164 .image-wrapper {
    padding: 0 1rem;
}

.style_164 img,
.style_164 .image-wrapper {
    height: 600px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .style_164 img,
    .style_164 .image-wrapper {
        max-height: 350px;
    }
}

.style_164 .mbr-section-title {
    color: #000000;
}

.style_164 .mbr-text {
    color: #000000;
}

.style_165 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #2e481a;
}

.style_165 .mbr-fallback-image.disabled {
    display: none;
}

.style_165 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_165 .card-wrapper {
    background: #9fe870;
}

@media (max-width: 767px) {
    .style_165 .card-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .style_165 .card-wrapper {
        padding: 2rem;
    }
}

@media (min-width: 992px) {
    .style_165 .card-wrapper {
        padding: 9rem 4rem;
    }
}

.style_165 .mbr-text,
.style_165 .mbr-section-btn {
    color: #000000;
    text-align: center;
}

.style_165 .card-title,
.style_165 .card-box {
    text-align: center;
    color: #2e481a;
}

.style_166 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #edefeb;
}

.style_166 .mbr-fallback-image.disabled {
    display: none;
}

.style_166 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_166 .card-wrapper {
    background: #ffffff;
}

@media (max-width: 767px) {
    .style_166 .card-wrapper {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .style_166 .card-wrapper {
        padding: 2.25rem;
    }
}

.style_166 .mbr-text,
.style_166 .mbr-section-btn {
    color: #000000;
    text-align: left;
}

.style_166 .card-title,
.style_166 .card-box {
    text-align: left;
    color: #000000;
}

.style_167 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #edefeb;
}

.style_167 .mbr-fallback-image.disabled {
    display: none;
}

.style_167 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 767px) {
    .style_167 .card-content-text {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .style_167 .card-content-text {
        padding: 0 2.25rem 2.25rem 2.25rem;
    }
}

.style_167 .card-wrapper {
    background: #ffffff;
}

.style_167 .mbr-text,
.style_167 .mbr-section-btn {
    color: #000000;
    text-align: left;
}

.style_167 .card-title,
.style_167 .card-box {
    text-align: left;
    color: #000000;
}

.style_168 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #edefeb;
}

.style_168 .mbr-fallback-image.disabled {
    display: none;
}

.style_168 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 767px) {
    .style_168 .card-content-text {
        padding: 1.5rem 1.5rem 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .style_168 .card-content-text {
        padding: 2.25rem 2.25rem 0 2.25rem;
    }
}

.style_168 .card-wrapper {
    background: #ffffff;
}

.style_168 .mbr-text,
.style_168 .mbr-section-btn {
    color: #000000;
    text-align: left;
}

.style_168 .card-title,
.style_168 .card-box {
    text-align: left;
    color: #000000;
}

.style_169 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #edefeb;
}

.style_169 .mbr-fallback-image.disabled {
    display: none;
}

.style_169 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 767px) {
    .style_169 .card-content-text {
        padding: 1.5rem 1.5rem 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .style_169 .card-content-text {
        padding: 2.25rem 2.25rem 0 2.25rem;
    }
}

.style_169 .card-wrapper {
    background: #ffffff;
}

.style_169 .mbr-text,
.style_169 .mbr-section-btn {
    color: #000000;
    text-align: left;
}

.style_169 .card-title,
.style_169 .card-box {
    text-align: left;
    color: #000000;
}

.style_170 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_170 .mbr-fallback-image.disabled {
    display: none;
}

.style_170 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_171 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_171 .mbr-text {
    color: #000000;
}

.style_171 .mbr-section-subtitle {
    color: #000000;
}

.style_171 .mbr-section-title {
    color: #000000;
}

.style_172 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_172 .mbr-fallback-image.disabled {
    display: none;
}

.style_172 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_172 .card-wrapper {
    background: #393193;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .style_172 .card-wrapper {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .style_172 .card-wrapper {
        padding: 2.25rem;
    }
}

@media (min-width: 992px) {
    .style_172 .card-wrapper {
        padding: 4rem;
    }
}

.style_172 .mbr-text,
.style_172 .mbr-section-btn {
    color: #ffd7ef;
}

.style_172 .card-title,
.style_172 .card-box {
    text-align: left;
    color: #ffd7ef;
}

.style_173 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_173 .mbr-section-title {
    text-align: center;
    color: #393193;
}

.style_173 .mbr-section-subtitle {
    text-align: center;
    color: #232323;
}

.style_174 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_174 .mbr-text {
    color: #000000;
}

.style_174 .mbr-section-subtitle {
    color: #000000;
}

.style_175 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_176 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_176 .mbr-fallback-image.disabled {
    display: none;
}

.style_176 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_176 .row {
    flex-direction: row-reverse;
}

.style_177 {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #ffffff;
}

.style_177 .mbr-fallback-image.disabled {
    display: none;
}

.style_177 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_177 .row {
    align-items: stretch;
    justify-content: center;
}

.style_177 .row .img-item {
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.style_177 .row .img-item img {
    width: 100%;
    object-fit: cover;
    min-height: 1px;
}

.style_177 img,
.style_177 .item-img {
    width: 100%;
    object-position: 50% top;
    height: 500px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .style_177 img,
    .style_177 .item-img {
        max-height: 350px;
    }
}

.style_178 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_178 .mbr-fallback-image.disabled {
    display: none;
}

.style_178 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_178 .row {
    flex-direction: row-reverse;
}

.style_179 {
    background-color: #ffffff;
    padding-top: 0px;
    padding-bottom: 0px;
}

.style_179 img {
    object-fit: contain;
    border-radius: 0 !important;
}

.style_180 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_180 .mbr-media {
    position: relative;
}

.style_180 .mbr-media img {
    width: 100%;
    object-fit: cover;
}

.style_180 a:hover {
    background-image: none !important;
}

.style_180 .icon-wrap {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.style_180 .mbr-media span {
    font-size: 5rem;
    transition: all 0.2s;
}

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

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

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

.style_180 .close {
    position: fixed;
    opacity: 0.5;
    font-size: 1.5rem;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    display: flex;
}

.style_180 .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}

.style_180 .mbr-fallback-image.disabled {
    display: none;
}

.style_180 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_180 .content-head {
    max-width: 800px;
}

.style_181 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_181 .mbr-fallback-image.disabled {
    display: none;
}

.style_181 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_181 .content-text {
    max-width: 800px;
}

.style_182 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_182 .mbr-fallback-image.disabled {
    display: none;
}

.style_182 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_182 .content-text {
    max-width: 800px;
}

.style_183 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_183 .mbr-fallback-image.disabled {
    display: none;
}

.style_183 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_183 .video-wrapper iframe {
    width: 100%;
}

.style_183 .mbr-section-title,
.style_183 .mbr-section-subtitle,
.style_183 .mbr-text {
    text-align: center;
}

.style_184 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_184 .mbr-fallback-image.disabled {
    display: none;
}

.style_184 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 992px) {
    .style_184 .mbr-figure {
        margin-top: 1.5rem;
    }
}

.style_184 .row {
    align-items: center;
}

@media (min-width: 992px) {
    .style_184 .text-wrapper {
        padding: 0 2rem;
    }
}

.style_184 .media-content,
.style_184 .mbr-figure {
    align-self: center;
}

.style_184 .mbr-figure iframe {
    width: 100%;
    border-radius: 2rem;
    overflow: hidden;
}

.style_184 .mbr-figure {
    border-radius: 0rem;
    overflow: hidden;
}

@media (min-width: 767px) {
    .style_184 .mbr-figure {
        border-radius: 2rem;
    }
}

.style_184 .mbr-section-title {
    text-align: center;
}

.style_184 .mbr-description {
    text-align: center;
}

.style_185 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_185 .mbr-fallback-image.disabled {
    display: none;
}

.style_185 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_185 .item {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_185 .item {
        margin-bottom: 1rem;
    }
}

.style_185 .item-wrapper {
    height: 100%;
    position: relative;
}

.style_185 .item-wrapper img {
    height: 100%;
    object-fit: cover;
}

.style_185 .item-wrapper .icon-wrapper {
    pointer-events: none;
    position: absolute;
    width: 60px;
    height: 60px;
    font-size: 22px;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 50%;
    opacity: 0;
    color: #464845 !important;
    transform: translateX(-50%) translateY(-50%);
    background-color: #edefea !important;
    transition: 0.2s;
}

.style_185 .item-wrapper:hover .icon-wrapper {
    opacity: 1;
}

.style_185 .carousel-control,
.style_185 .close {
    background: #1b1b1b;
}

.style_185 .carousel-control-prev {
    margin-left: 2.5rem;
}

.style_185 .carousel-control-prev span {
    margin-right: 5px;
}

.style_185 .carousel-control-next {
    margin-right: 2.5rem;
}

.style_185 .carousel-control-next span {
    margin-left: 5px;
}

.style_185 .close {
    position: fixed;
    opacity: 0.5;
    font-size: 22px;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    font-family: 'Moririse2';
    align-items: center;
    justify-content: center;
    display: flex;
}

.style_185 .close::before {
    content: '\e91a';
}

.style_185 .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}

.style_185 .carousel-control {
    display: flex;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.style_185 .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_185 .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_185 .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}

.style_185 .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 3px;
}

.style_185 .carousel-indicators li {
    max-width: 15px;
    height: 15px;
    width: 15px;
    max-height: 15px;
    margin: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s;
}

.style_185 .carousel-indicators li.active,
.style_185 .carousel-indicators li:hover {
    opacity: 0.9;
}

.style_185 .carousel-indicators li::after,
.style_185 .carousel-indicators li::before {
    content: none;
}

.style_185 .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}

@media (max-width: 768px) {
    .style_185 .carousel-indicators {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .style_185 .carousel-indicators {
        margin-bottom: 3.625rem !important;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (max-width: 767px) {
    .style_185 .carousel-indicators {
        display: none;
    }
}

.style_185 .carousel-inner {
    display: flex;
    align-items: center;
}

.style_185 .carousel-inner>.active {
    display: block;
}

.style_185 .carousel-control.left {
    left: 0;
    margin-left: 2.5rem;
}

.style_185 .carousel-control.right {
    right: 0;
    margin-right: 2.5rem;
}

.style_185 .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}

@media (max-width: 768px) {
    .style_185 .carousel-control,
    .style_185 .carousel-indicators,
    .style_185 .modal .close {
        position: fixed;
    }
}

@media (max-width: 767px) {
    .style_185 .mbr-slider .carousel-control {
        top: auto;
        bottom: 20px;
    }
    .style_185 .mbr-slider>.container .carousel-control {
        margin-bottom: 0;
    }
}

.style_185 .carousel-indicators .active,
.style_185 .carousel-indicators li {
    width: 7px;
    height: 7px;
    margin: 3px;
    background: #000000;
    opacity: 0.5;
    border: 4px solid #000000;
}

.style_185 .carousel-indicators .active {
    background: #fff;
}

.style_185 .carousel-indicators li {
    max-width: 15px;
    max-height: 15px;
    border-radius: 50%;
}

.style_185 .modal {
    padding-left: 0 !important;
    position: fixed;
    overflow: hidden;
    padding-right: 0 !important;
}

.style_185 .modal-dialog {
    margin: 0 auto;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.style_185 .modal-content {
    border-radius: 0;
    border: none;
    background: transparent;
}

.style_185 .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
}

.style_185 .modal-body img {
    width: 100%;
    object-fit: contain;
    max-height: calc(100vh - 1.75rem);
}

.style_185 .carousel {
    width: 100%;
}

.style_185 .modal-backdrop.in {
    opacity: 0.8;
}

.style_185 .modal.fade .modal-dialog {
    transition: margin-top 0.3s ease-out;
}

.style_185 .modal.fade .modal-dialog,
.style_185 .modal.in .modal-dialog {
    transform: none;
}

.style_185 .mbr-gallery .item-wrapper {
    cursor: pointer;
}

.style_185 .content-head {
    max-width: 800px;
}

.style_186 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_186 .mbr-fallback-image.disabled {
    display: none;
}

.style_186 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_186 .item {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_186 .item {
        margin-bottom: 1rem;
    }
}

.style_186 .item-wrapper {
    position: relative;
}

.style_186 .item-wrapper .icon-wrapper {
    pointer-events: none;
    position: absolute;
    width: 60px;
    height: 60px;
    font-size: 22px;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 50%;
    opacity: 0;
    color: #464845 !important;
    transform: translateX(-50%) translateY(-50%);
    background-color: #edefea !important;
    transition: 0.2s;
}

.style_186 .item-wrapper:hover .icon-wrapper {
    opacity: 1;
}

.style_186 .carousel-control,
.style_186 .close {
    background: #1b1b1b;
}

.style_186 .carousel-control-prev {
    margin-left: 2.5rem;
}

.style_186 .carousel-control-prev span {
    margin-right: 5px;
}

.style_186 .carousel-control-next {
    margin-right: 2.5rem;
}

.style_186 .carousel-control-next span {
    margin-left: 5px;
}

.style_186 .close {
    position: fixed;
    opacity: 0.5;
    font-size: 22px;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    font-family: 'Moririse2';
    align-items: center;
    justify-content: center;
    display: flex;
}

.style_186 .close::before {
    content: '\e91a';
}

.style_186 .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}

.style_186 .carousel-control {
    display: flex;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.style_186 .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_186 .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_186 .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}

.style_186 .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 3px;
}

.style_186 .carousel-indicators li {
    max-width: 15px;
    height: 15px;
    width: 15px;
    max-height: 15px;
    margin: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s;
}

.style_186 .carousel-indicators li.active,
.style_186 .carousel-indicators li:hover {
    opacity: 0.9;
}

.style_186 .carousel-indicators li::after,
.style_186 .carousel-indicators li::before {
    content: none;
}

.style_186 .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}

@media (max-width: 768px) {
    .style_186 .carousel-indicators {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .style_186 .carousel-indicators {
        margin-bottom: 3.625rem !important;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (max-width: 767px) {
    .style_186 .carousel-indicators {
        display: none;
    }
}

.style_186 .carousel-inner {
    display: flex;
    align-items: center;
}

.style_186 .carousel-inner>.active {
    display: block;
}

.style_186 .carousel-control.left {
    left: 0;
    margin-left: 2.5rem;
}

.style_186 .carousel-control.right {
    right: 0;
    margin-right: 2.5rem;
}

.style_186 .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}

@media (max-width: 768px) {
    .style_186 .carousel-control,
    .style_186 .carousel-indicators,
    .style_186 .modal .close {
        position: fixed;
    }
}

@media (max-width: 767px) {
    .style_186 .mbr-slider .carousel-control {
        top: auto;
        bottom: 20px;
    }
    .style_186 .mbr-slider>.container .carousel-control {
        margin-bottom: 0;
    }
}

.style_186 .carousel-indicators .active,
.style_186 .carousel-indicators li {
    width: 7px;
    height: 7px;
    margin: 3px;
    background: #000000;
    opacity: 0.5;
    border: 4px solid #000000;
}

.style_186 .carousel-indicators .active {
    background: #fff;
}

.style_186 .carousel-indicators li {
    max-width: 15px;
    max-height: 15px;
    border-radius: 50%;
}

.style_186 .modal {
    padding-left: 0 !important;
    position: fixed;
    overflow: hidden;
    padding-right: 0 !important;
}

.style_186 .modal-dialog {
    margin: 0 auto;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.style_186 .modal-content {
    border-radius: 0;
    border: none;
    background: transparent;
}

.style_186 .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
}

.style_186 .modal-body img {
    width: 100%;
    object-fit: contain;
    max-height: calc(100vh - 1.75rem);
}

.style_186 .carousel {
    width: 100%;
}

.style_186 .modal-backdrop.in {
    opacity: 0.8;
}

.style_186 .modal.fade .modal-dialog {
    transition: margin-top 0.3s ease-out;
}

.style_186 .modal.fade .modal-dialog,
.style_186 .modal.in .modal-dialog {
    transform: none;
}

.style_186 .mbr-gallery .item-wrapper {
    cursor: pointer;
}

.style_186 .content-head {
    max-width: 800px;
}

.style_187 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_187 h6 {
    line-height: 1.2;
}

.style_187 img,
.style_187 .item-img {
    width: 100%;
}

.style_187 .item:focus,
.style_187 span:focus {
    outline: none;
}

.style_187 .item {
    cursor: pointer;
}

.style_187 .item-wrapper {
    position: relative;
    border-radius: 4px;
    display: flex;
    flex-flow: column nowrap;
}

.style_187 .mbr-section-btn {
    margin-top: auto !important;
    text-align: center;
}

.style_187 .mbr-section-title {
    color: #000000;
}

.style_187 .mbr-text,
.style_187 .mbr-section-btn {
    color: #000000;
}

.style_187 .item-title {
    color: #000000;
    text-align: center;
}

.style_187 .item-subtitle {
    color: #000000;
    text-align: center;
}

.style_187 .item-text {
    color: #000000;
    text-align: center;
}

.style_187 .content-head {
    max-width: 800px;
}

.style_188 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_188 .mbr-fallback-image.disabled {
    display: none;
}

.style_188 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_188 p {
    line-height: 1.2;
}

.style_188 .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 770px;
    max-width: 570px;
}

@media (max-width: 768px) {
    .style_188 .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}

.style_188 .embla__button--next,
.style_188 .embla__button--prev {
    display: flex;
}

.style_188 .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.style_188 .embla__button:disabled {
    cursor: default;
    display: none;
}

.style_188 .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}

.style_188 .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_188 .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 768px) {
    .style_188 .embla__button {
        top: auto;
    }
}

.style_188 .item-wrapper {
    height: 100%;
}

.style_188 .item-menu-overlay {
    border-radius: 2rem;
}

.style_188 .user_image {
    max-width: 600px;
    max-height: 400px;
    margin-bottom: 1.6rem;
    overflow: hidden;
    margin: 0 auto 2rem auto;
}

.style_188 .user_image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

@media (max-width: 230px) {
    .style_188 .user_image {
        width: 100%;
        height: auto;
    }
}

.style_188 .embla {
    position: relative;
    width: 100%;
}

.style_188 .embla__viewport {
    overflow: hidden;
    width: 100%;
}

.style_188 .embla__viewport.is-draggable {
    cursor: grab;
}

.style_188 .embla__viewport.is-dragging {
    cursor: grabbing;
}

.style_188 .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.style_188 .user_desk {
    color: #232323;
}

.style_188 .user_name {
    color: #232323;
}

.style_189 {
    background-color: #ffffff;
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.style_189 .carousel {
    height: 800px;
}

.style_189 .carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style_189 .carousel-item,
.style_189 .carousel-inner {
    height: 100%;
}

.style_189 img,
.style_189 .item-wrapper {
    border-radius: 0 !important;
}

.style_189 .carousel-caption {
    bottom: 40px;
}

.style_189 .mobi-mbri-arrow-next {
    margin-left: 5px;
}

.style_189 .mobi-mbri-arrow-prev {
    margin-right: 5px;
}

.style_189 .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}

.style_189 .item-wrapper {
    width: 100%;
}

@media (max-width: 767px) {
    .style_189 .container .carousel-control {
        margin-bottom: 0;
    }
    .style_189 .content-slider-wrap {
        width: 100% !important;
    }
}

.style_189 .container .carousel-indicators {
    margin-bottom: 3px;
}

.style_189 .carousel-control {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.style_189 .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_189 .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_189 .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}

.style_189 .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 1.5rem !important;
}

.style_189 .carousel-indicators li {
    max-width: 15px;
    height: 15px;
    width: 15px;
    max-height: 15px;
    margin: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s;
}

.style_189 .carousel-indicators li.active,
.style_189 .carousel-indicators li:hover {
    opacity: 0.9;
}

.style_189 .carousel-indicators li::after,
.style_189 .carousel-indicators li::before {
    content: none;
}

.style_189 .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}

@media (max-width: 768px) {
    .style_189 .carousel-indicators {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .style_189 .mbr-section-subtitle,
    .style_189 .mbr-section-text,
    .style_189 .mbr-section-btn {
        text-align: center;
    }
}

.style_190 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #edefeb;
}

.style_190 .mbr-fallback-image.disabled {
    display: none;
}

.style_190 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (min-width: 768px) {
    .style_190 .container-fluid {
        padding: 0;
    }
}

.style_190 .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 490px;
    max-width: 490px;
}

@media (max-width: 768px) {
    .style_190 .embla__slide {
        min-width: 100%;
        max-width: 100%;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}

.style_190 .embla__slide a {
    display: block;
    width: 100%;
}

.style_190 .embla__button--next,
.style_190 .embla__button--prev {
    display: flex;
}

.style_190 .mobi-mbri-arrow-next {
    margin-left: 5px;
}

.style_190 .mobi-mbri-arrow-prev {
    margin-right: 5px;
}

.style_190 .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.style_190 .embla__button:disabled {
    cursor: default;
    display: none;
}

.style_190 .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}

.style_190 .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .style_190 .embla__button {
        top: auto;
        bottom: 1rem;
    }
}

.style_190 .embla {
    position: relative;
    width: 100%;
}

.style_190 .embla__viewport {
    overflow: hidden;
    width: 100%;
}

.style_190 .embla__viewport.is-draggable {
    cursor: grab;
}

.style_190 .embla__viewport.is-dragging {
    cursor: grabbing;
}

.style_190 .embla__slide a {
    cursor: grab;
}

.style_190 .embla__slide a:active {
    cursor: grabbing;
}

.style_190 .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.style_190 .item-menu-overlay {
    border-radius: 2rem;
}

.style_190 .mbr-section-title {
    color: #232323;
}

.style_190 .mbr-section-subtitle {
    color: #232323;
}

.style_190 .mbr-box {
    color: #ffffff;
}

.style_190 .slide-content {
    position: relative;
    border-radius: 4px;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}

.style_190 img,
.style_190 .item-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.style_190 .item-wrapper {
    position: relative;
}

.style_190 .content-head {
    max-width: 800px;
}

.style_191 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #edefeb;
}

.style_191 .mbr-fallback-image.disabled {
    display: none;
}

.style_191 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_191 .mbr-section-btn {
    opacity: 0;
    transition-delay: 0.1s;
    z-index: 1;
    position: relative;
    margin: auto;
}

.style_191 .content-head {
    max-width: 800px;
}

.style_191 .card1 {
    background-image: url("../../../assets/images/team1.jpg");
    background-size: cover;
    background-position: center center;
}

.style_191 .card1:before {
    background: #ffc195;
}

.style_191 .card2 {
    background-image: url("../../../assets/images/team2.jpg");
    background-size: cover;
    background-position: center center;
}

.style_191 .card2:before {
    background: #ffd7ef;
}

.style_191 .card3 {
    background-image: url("../../../assets/images/team3.jpg");
    background-size: cover;
    background-position: center center;
}

.style_191 .card3:before {
    background: #ffea64;
}

.style_191 .card4 {
    background-image: url("../../../assets/images/team4.jpg");
    background-size: cover;
    background-position: center center;
}

.style_191 .card4:before {
    background: #9fe870;
}

.style_191 .content-wrap {
    margin: auto;
    display: flex;
    height: 100%;
}

.style_191 .card-wrap {
    border-radius: inherit;
    height: 400px;
    position: relative;
    transition: all 0.3s;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_191 .card-wrap {
        margin-bottom: 1rem;
    }
}

.style_191 .card-wrap:before {
    content: '';
    position: absolute;
    border-radius: inherit;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition-delay: 0.1s;
    opacity: 0;
}

.style_191 .card {
    transition: transform .6s;
}

.style_191 .card:hover .card-wrap,
.style_191 .card:focus-within .card-wrap {
    transform: rotateY(180deg);
}

.style_191 .card:hover .card-wrap:before,
.style_191 .card:focus-within .card-wrap:before {
    opacity: 1;
}

.style_191 .card:hover .mbr-section-btn,
.style_191 .card:focus-within .mbr-section-btn {
    opacity: 1;
    transform: rotateY(180deg);
}

@media (max-width: 767px) {
    .style_191 .card:hover .card-wrap {
        transform: none;
    }
    .style_191 .card:hover .card-wrap:before {
        opacity: 0.8;
    }
    .style_191 .card-wrap:before {
        opacity: 0.8;
    }
    .style_191 .card-wrap:hover {
        transform: none;
    }
    .style_191 .card-wrap:hover .mbr-section-btn {
        transform: none;
    }
    .style_191 .mbr-section-btn {
        opacity: 1;
    }
}

.style_192 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #edefeb;
}

.style_192 .item-wrapper {
    background: #ffffff;
    padding: 2.25rem;
    margin: 0;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_192 .item-wrapper {
        padding: 1.5rem;
        border-radius: 1rem;
        margin-bottom: 1rem;
    }
}

.style_193 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_193 .mbr-fallback-image.disabled {
    display: none;
}

.style_193 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_193 .mbr-iconfont {
    margin: auto;
    display: inline-flex;
    font-size: 2rem;
    color: #9fe870;
    width: 40px;
    justify-content: center;
    align-items: center;
}

.style_193 .card-title,
.style_193 .iconfont-wrapper {
    color: #232323;
}

.style_193 .card-text {
    color: #232323;
}

.style_193 .mbr-section-title {
    color: #232323;
}

.style_193 .mbr-section-subtitle {
    color: #232323;
}

.style_193 .content-head {
    max-width: 800px;
}

.style_194 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_194 .item-subtitle {
    line-height: 1.2;
    color: #000000;
}

.style_194 img,
.style_194 .item-img {
    width: 100%;
    height: 100%;
    height: 400px;
    object-fit: cover;
}

.style_194 .item:focus,
.style_194 span:focus {
    outline: none;
}

.style_194 .item {
    margin-top: 2rem;
}

@media (max-width: 767px) {
    .style_194 .item {
        margin-top: 1rem;
    }
}

.style_194 .item-wrapper {
    position: relative;
    border-radius: 4px;
    display: flex;
    flex-flow: column nowrap;
}

.style_194 .mbr-section-btn {
    margin-top: auto !important;
}

.style_194 .mbr-section-title {
    color: #232323;
}

.style_194 .mbr-text,
.style_194 .mbr-section-btn {
    color: #232323;
}

.style_194 .item-title {
    color: #232323;
}

.style_194 .content-head {
    max-width: 800px;
}

.style_195 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #edefeb;
}

.style_195 .mbr-fallback-image.disabled {
    display: none;
}

.style_195 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_195 .mbr-section-btn {
    opacity: 0;
    transition-delay: 0.1s;
    z-index: 1;
    position: relative;
    margin: auto;
}

.style_195 .content-head {
    max-width: 800px;
}

.style_195 .card1 {
    background-image: url("../../../assets/images/team1.jpg");
    background-size: cover;
    background-position: center center;
}

.style_195 .card1:before {
    background: #ffc195;
}

.style_195 .card2 {
    background-image: url("../../../assets/images/team2.jpg");
    background-size: cover;
    background-position: center center;
}

.style_195 .card2:before {
    background: #ffd7ef;
}

.style_195 .card3 {
    background-image: url("../../../assets/images/team3.jpg");
    background-size: cover;
    background-position: center center;
}

.style_195 .card3:before {
    background: #ffea64;
}

.style_195 .card4 {
    background-image: url("../../../assets/images/team4.jpg");
    background-size: cover;
    background-position: center center;
}

.style_195 .card4:before {
    background: #9fe870;
}

.style_195 .content-wrap {
    margin: auto;
    display: flex;
    height: 100%;
}

.style_195 .card-wrap {
    border-radius: inherit;
    height: 400px;
    position: relative;
    transition: all 0.3s;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_195 .card-wrap {
        margin-bottom: 1rem;
    }
}

.style_195 .card-wrap:before {
    content: '';
    position: absolute;
    border-radius: inherit;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition-delay: 0.1s;
    opacity: 0;
}

.style_195 .card {
    transition: transform .6s;
}

.style_195 .card:hover .card-wrap,
.style_195 .card:focus-within .card-wrap {
    transform: rotateY(180deg);
}

.style_195 .card:hover .card-wrap:before,
.style_195 .card:focus-within .card-wrap:before {
    opacity: 1;
}

.style_195 .card:hover .mbr-section-btn,
.style_195 .card:focus-within .mbr-section-btn {
    opacity: 1;
    transform: rotateY(180deg);
}

@media (max-width: 767px) {
    .style_195 .card:hover .card-wrap {
        transform: none;
    }
    .style_195 .card:hover .card-wrap:before {
        opacity: 0.8;
    }
    .style_195 .card-wrap:before {
        opacity: 0.8;
    }
    .style_195 .card-wrap:hover {
        transform: none;
    }
    .style_195 .card-wrap:hover .mbr-section-btn {
        transform: none;
    }
    .style_195 .mbr-section-btn {
        opacity: 1;
    }
}

.style_196 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #edefeb;
}

.style_196 .mbr-fallback-image.disabled {
    display: none;
}

.style_196 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_196 .img-wrapper {
    text-align: center;
}

.style_196 img {
    margin: auto;
    width: 200px;
}

.style_196 .row {
    align-items: flex-start;
}

.style_196 .item-wrapper {
    margin-bottom: 2rem;
    background: #ffffff;
    padding: 1rem;
}

@media (max-width: 767px) {
    .style_196 .item-wrapper {
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .style_196 .item-wrapper {
        padding: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .style_196 .item-wrapper {
        margin-bottom: 3rem;
    }
}

.style_196 .mbr-section-title,
.style_196 .mbr-section-subtitle {
    text-align: center;
    color: #000000;
}

.style_196 .content-head {
    max-width: 800px;
}

.style_197 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #a0e1e1;
}

.style_197 .item-subtitle {
    line-height: 1.2;
    color: #000000;
}

.style_197 img,
.style_197 .item-img {
    width: 100%;
}

.style_197 .item:focus,
.style_197 span:focus {
    outline: none;
}

.style_197 .item {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_197 .item {
        margin-bottom: 1rem;
    }
}

.style_197 .item-wrapper {
    position: relative;
    border-radius: 4px;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.style_197 .mbr-section-title {
    color: #232323;
}

.style_197 .mbr-text,
.style_197 .mbr-section-btn {
    color: #232323;
}

.style_197 .item-title {
    color: #232323;
    text-align: center;
}

.style_197 .content-head {
    max-width: 800px;
}

.style_198 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #ffffff;
}

.style_198 .mbr-fallback-image.disabled {
    display: none;
}

.style_198 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_198 .google-map {
    height: 30rem;
    position: relative;
    border-radius: 2rem;
}

.style_198 .google-map iframe {
    height: 100%;
    width: 100%;
    border-radius: 2rem;
}

.style_198 .google-map [data-state-details] {
    color: #6b6763;
    height: 1.5em;
    margin-top: -0.75em;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

.style_198 .google-map[data-state] {
    background: #e9e5dc;
}

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

.style_198 .content-head {
    max-width: 800px;
}

.style_199 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #edefeb;
}

@media (max-width: 767px) {
    .style_199 .row .map-wrapper {
        margin-top: 1rem;
    }
}

.style_199 .google-map {
    height: 400px;
    position: relative;
    margin-bottom: 1.5rem;
}

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

@media (max-width: 767px) {
    .style_199 .google-map iframe {
        min-height: 350px;
    }
}

.style_199 .google-map [data-state-details] {
    color: #6b6763;
    height: 1.5em;
    margin-top: -0.75em;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

.style_199 .google-map[data-state] {
    background: #e9e5dc;
}

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

.style_199 .content-head {
    max-width: 800px;
}

.style_200 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_200 .mbr-fallback-image.disabled {
    display: none;
}

.style_200 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_200 .row {
    justify-content: center;
}

.style_200 .item {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_200 .item {
        margin-bottom: 1rem;
    }
}

.style_200 .item .item-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
}

@media (max-width: 991px) {
    .style_200 .item .item-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 992px) {
    .style_200 .item .item-wrapper {
        padding: 2.25rem;
    }
}

.style_200 .content-head {
    max-width: 800px;
}

.style_201 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #edefeb;
}

.style_201 .mbr-fallback-image.disabled {
    display: none;
}

.style_201 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 767px) {
    .style_201 .row .map-wrapper {
        margin-top: 1rem;
    }
}

.style_201 .google-map {
    height: 100%;
    position: relative;
}

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

@media (max-width: 767px) {
    .style_201 .google-map iframe {
        min-height: 350px;
    }
}

.style_201 .google-map [data-state-details] {
    color: #6b6763;
    height: 1.5em;
    margin-top: -0.75em;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

.style_201 .google-map[data-state] {
    background: #e9e5dc;
}

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

.style_201 .card-wrapper {
    background: #ffffff;
}

@media (max-width: 767px) {
    .style_201 .card-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .style_201 .card-wrapper {
        padding: 2.25rem;
    }
}

.style_201 .text-wrapper {
    padding: 0 1rem;
}

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

.style_201 .content-head {
    max-width: 800px;
}

.style_202 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_202 .mbr-fallback-image.disabled {
    display: none;
}

.style_202 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_202 .item-wrapper {
    display: flex;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_202 .item-wrapper {
        margin-bottom: 1rem;
    }
}

.style_202 .mbr-iconfont {
    font-size: 3rem;
    color: #2e481a;
    padding-right: 1.5rem;
}

.style_202 img,
.style_202 .item-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.style_202 .content-head {
    max-width: 800px;
}

.style_203 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_203 .mbr-fallback-image.disabled {
    display: none;
}

.style_203 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_203 .item-wrapper {
    display: flex;
    margin-bottom: 2rem;
    border-radius: 0 !important;
}

@media (max-width: 767px) {
    .style_203 .item-wrapper {
        margin-bottom: 1rem;
    }
}

.style_203 .mbr-iconfont {
    font-size: 3rem;
    color: #2e481a;
    padding-right: 2rem;
}

.style_203 .content-head {
    max-width: 800px;
}

.style_204 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_204 .mbr-fallback-image.disabled {
    display: none;
}

.style_204 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_204 .socicon-bg-facebook {
    background: #1778f2;
    color: #ffffff;
}

.style_204 .socicon-bg-facebook:hover {
    background: #0b60cb;
}

.style_204 .socicon-bg-twitter {
    background: #1da1f2;
    color: #ffffff;
}

.style_204 .socicon-bg-twitter:hover {
    background: #0c85d0;
}

.style_204 .socicon-bg-pinterest {
    background: #e60023;
    color: #ffffff;
}

.style_204 .socicon-bg-pinterest:hover {
    background: #b3001b;
}

.style_204 .btn-social {
    font-size: 32px;
    border-radius: 50%;
    padding: 0;
    width: 72px;
    height: 72px;
    line-height: 55px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: none !important;
}

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

.style_204 [class^="socicon-"]:before,
.style_204 [class*=" socicon-"]:before {
    line-height: 55px;
}

.style_204 .mbr-iconfont {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 32px;
    transition: all 0.3s ease-in-out;
}

.style_205 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_205 .mbr-fallback-image.disabled {
    display: none;
}

.style_205 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_205 .bg-facebook {
    background: #1778f2;
    color: #ffffff;
}

.style_205 .bg-facebook:hover {
    background: #0b60cb;
}

.style_205 .bg-twitter {
    background: #1da1f2;
    color: #ffffff;
}

.style_205 .bg-twitter:hover {
    background: #0c85d0;
}

.style_205 .bg-instagram {
    background: #f00075;
    color: #ffffff;
}

.style_205 .bg-instagram:hover {
    background: #bd005c;
}

.style_205 .bg-tiktok {
    background: #000000;
    color: #ffffff;
}

.style_205 .bg-tiktok:hover {
    background: #000000;
}

.style_205 .iconfont-wrapper {
    display: inline-block;
    font-size: 32px;
    border-radius: 50%;
    width: 72px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.style_205 [class^="socicon-"]:before,
.style_205 [class*=" socicon-"]:before {
    line-height: 55px;
    padding: .6rem;
}

.style_206 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

@media (max-width: 991px) {
    .style_206 .container {
        padding: 0 16px;
    }
}

@media (max-width: 767px) {
    .style_206 .container {
        padding: 0 12px;
    }
}

.style_206 .social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.style_206 .social-row .soc-item {
    margin: 8px;
}

.style_206 .social-row .soc-item a:hover .mbr-iconfont,
.style_206 .social-row .soc-item a:focus .mbr-iconfont {
    background-color: #f7f7f7;
}

.style_206 .social-row .soc-item a .mbr-iconfont {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 32px;
    background-color: #f7f7f7;
    color: #393193;
    transition: all 0.3s ease-in-out;
}

.style_206 .row-links {
    width: 100%;
    justify-content: center;
}

.style_206 .mbr-section-title {
    color: #ffffff;
}

.style_206 .mbr-section-title,
.style_206 .social-list {
    color: #000000;
}

.style_207 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #260a30;
}

.style_207 input {
    padding: 1.2rem 1.5rem;
    border: none !important;
    height: 100%;
}

.style_207 input:hover {
    border: none !important;
}

.style_207 .btn {
    height: 100%;
    margin: auto;
}

@media (min-width: 992px) {
    .style_207 .text-wrapper {
        padding: 0 2rem;
    }
}

.style_207 .row {
    justify-content: center;
}

.style_207 .mbr-section-btn {
    display: flex;
    margin-bottom: 1.2rem;
    width: fit-content;
}

.style_207 .mbr-section-btn .btn {
    width: auto;
}

@media (max-width: 991px) {
    .style_207 .image-wrapper {
        margin-bottom: 2rem;
    }
    .style_207 .content-wrapper {
        flex-direction: column-reverse;
    }
}

.style_207 .justify-content-center {
    align-items: center;
}

.style_207 .mbr-section-title {
    text-align: center;
    color: #ffd7ef;
}

.style_208 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_208 .mbr-overlay {
    background-color: #ffffff;
    opacity: 0.4;
}

.style_208 form .mbr-section-btn {
    text-align: center;
    width: 100%;
}

.style_208 form .mbr-section-btn .btn {
    display: inline-flex;
}

@media (max-width: 991px) {
    .style_208 form .mbr-section-btn .btn {
        width: 100%;
    }
}

.style_208 .content-head {
    max-width: 800px;
}

.style_209 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #26022f;
}

.style_209 .mbr-iconfont {
    font-size: 1.2rem !important;
    font-family: 'Moririse2' !important;
    color: white;
    transition: all 0.3s;
    transform: rotate(180deg);
}

.style_209 .panel-group {
    border: none;
}

.style_209 .card-header {
    padding: 1.2rem 0.5rem;
}

@media (max-width: 767px) {
    .style_209 .card-header {
        padding: 1rem 0rem;
    }
}

.style_209 .panel-body {
    padding: 0 0.5rem;
    padding-bottom: 1rem;
}

@media (max-width: 767px) {
    .style_209 .panel-body {
        padding: 0rem;
        padding-bottom: 1rem;
    }
}

.style_209 .img-col {
    padding: 0;
}

.style_209 .img-item {
    height: 100%;
}

.style_209 img {
    height: 100%;
    object-fit: cover;
}

.style_209 .collapsed span {
    transform: rotate(0deg);
}

.style_209 .panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.style_209 p {
    margin-bottom: 0.3rem;
}

.style_209 .panel-title-edit {
    color: #e9c0e9;
}

.style_209 .card .card-header {
    background-color: transparent;
    margin-bottom: 0;
    border: 0;
    border-radius: 2rem;
}

.style_209 .card {
    background: #b0dfe9;
    padding: 1rem 2rem;
    border-radius: 2rem;
}

@media (max-width: 767px) {
    .style_209 .card {
        padding: 1.5rem;
    }
}

.style_209 .panel-text {
    color: #320707;
}

.style_209 .mbr-section-title {
    text-align: center;
    color: #ffffff;
}

.style_209 .mbr-section-subtitle {
    color: #ffffff;
    text-align: center;
}

.style_209 .panel-title-edit,
.style_209 .mbr-iconfont {
    color: #320707;
}

.style_210 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_210 .mbr-fallback-image.disabled {
    display: none;
}

.style_210 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_210 .mbr-section-title {
    text-align: center;
}

.style_210 .mbr-section-subtitle {
    text-align: center;
}

.style_211 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #2e481a;
}

.style_211 .mbr-fallback-image.disabled {
    display: none;
}

.style_211 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_211 .nav-tabs .nav-item.open .nav-link:focus,
.style_211 .nav-tabs .nav-link.active:focus {
    outline: none;
}

.style_211 .nav-tabs {
    flex-wrap: wrap;
    border-bottom: none;
}

@media (max-width: 767px) {
    .style_211 .nav-item {
        width: 100%;
        margin-right: 0 !important;
        text-align: center;
    }
}

.style_211 .nav-tabs .nav-item {
    margin-right: 1.5rem;
}

.style_211 .nav-tabs .nav-link {
    transition: padding 0.3s ease, background-color 0.3s ease;
    border: none;
    border-radius: 2rem !important;
    padding: 1.25rem 0!important;
    background-color: transparent!important;
    overflow: hidden!important;
}

.style_211 .nav-tabs .nav-link:not(.active) {
    color: #9fe870;
}

.style_211 .nav-tabs .nav-link.active {
    color: #2e481a !important;
    background-color: #9fe870 !important;
    padding: 1.25rem 2rem!important;
}

.style_211 .mbr-section-title {
    text-align: center;
    color: #ffffff;
}

.style_211 .mbr-section-subtitle {
    text-align: center;
    color: #ffffff;
}

.style_211 .mbr-text {
    color: #fff;
    margin: 0;
}

.style_211 .content-head {
    max-width: 800px;
}

.style_211 .item-wrapper {
    background-color: #2e481a;
    padding: 2.25rem;
}

@media (max-width: 767px) {
    .style_211 .item-wrapper {
        padding: 2rem 1.5rem;
    }
}

.style_212 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.style_212 .mbr-fallback-image.disabled {
    display: none;
}

.style_212 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_212 .soc-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #edefeb;
    margin-right: 0.25rem;
    margin-left: 0.25rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    height: 3.5rem;
    width: 3.5rem;
}

.style_212 .number-wrap {
    color: #9fe870;
    text-align: center;
}

.style_212 .number {
    color: #9fe870;
}

.style_212 .period {
    display: block;
}

.style_212 .dot {
    display: none;
}

@media (max-width: 767px) {
    .style_212 .period {
        font-size: 0.8rem;
    }
}

.style_212 .btn {
    height: 100%;
    margin: 0;
}

.style_212 .mbr-section-btn {
    margin-bottom: 1.2rem;
}

.style_212 .icons-menu .soc-item {
    padding-left: 8px;
    padding-right: 8px;
}

.style_212 .icons-menu .soc-item a:hover .mbr-iconfont,
.style_212 .icons-menu .soc-item a:focus .mbr-iconfont {
    background-color: #9fe870;
}

.style_212 .icons-menu .soc-item a .mbr-iconfont {
    display: flex;
    border-radius: 50%;
    text-align: center;
    color: #163300;
    background-color: #edefeb;
    justify-content: center;
    align-content: center;
    transition: all 0.3s;
}

.style_212 .icons-menu .soc-item a .mbr-iconfont:before {
    padding: 1.1rem;
}

@media (max-width: 767px) {
    .style_212 .icons-menu .soc-item a .mbr-iconfont:before {
        padding: 1.2rem;
    }
}

.style_213 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #260a30;
}

.style_213 input {
    padding: 1.2rem 1.5rem;
    border: none !important;
    height: 100%;
}

.style_213 input:hover {
    border: none !important;
}

.style_213 .mbr-fallback-image.disabled {
    display: none;
}

.style_213 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_213 .number-wrap {
    color: #ffd7ef;
    text-align: center;
}

.style_213 .number {
    color: #ffd7ef;
    white-space: nowrap;
}

.style_213 .row {
    justify-content: center;
}

.style_213 .period {
    display: block;
}

.style_213 .dot {
    display: none;
}

@media (max-width: 767px) {
    .style_213 .period {
        font-size: 0.8rem;
    }
}

.style_213 .btn {
    height: 100%;
    margin: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.style_213 .mbr-section-btn {
    display: flex;
    margin-bottom: 1.2rem;
    width: fit-content;
}

.style_213 .mbr-section-btn .btn {
    width: auto;
}

.style_213 .justify-content-center {
    align-items: center;
}

.style_213 .mbr-section-title {
    color: #ffd7ef;
}

.style_213 .mbr-section-subtitle,
.style_213 .mbr-text {
    color: #ffffff;
}

.style_214 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_214 .mbr-fallback-image.disabled {
    display: none;
}

.style_214 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_214 .title .num {
    width: 100%;
    display: block;
}

.style_214 .title .card-title {
    z-index: 1;
}

.style_214 .num {
    color: #9fe870;
}

.style_214 .item-mb {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_214 .item-mb {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .style_214 * {
        text-align: center !important;
    }
    .style_214 .content-column {
        margin-bottom: 2rem;
    }
}

.style_214 .content-head {
    max-width: 800px;
}

.style_215 {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: #edefeb;
}

.style_215 .mbr-fallback-image.disabled {
    display: none;
}

.style_215 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_215 .card-wrapper {
    overflow: hidden;
    background: #ffffff;
}

.style_215 .text-wrapper {
    padding: 4rem 3rem;
}

@media (min-width: 768px) and (max-width: 991px) {
    .style_215 .text-wrapper {
        padding: 2.25rem;
    }
}

@media (max-width: 767px) {
    .style_215 .text-wrapper {
        padding: 1.5rem;
    }
}

.style_215 .row {
    align-items: center;
    margin-right: -1rem;
    margin-left: -1rem;
}

.style_215 .image-wrapper {
    padding: 0 1rem;
}

.style_215 img,
.style_215 .image-wrapper {
    height: 600px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .style_215 img,
    .style_215 .image-wrapper {
        max-height: 350px;
    }
}

.style_215 .mbr-section-title {
    color: #000000;
}

.style_215 .mbr-text {
    color: #000000;
}

.style_215 .mbr-text,
.style_215 .mbr-section-btn {
    text-align: left;
}

.style_216 {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: #edefeb;
}

.style_216 .mbr-fallback-image.disabled {
    display: none;
}

.style_216 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_216 .card-wrapper {
    overflow: hidden;
    background: #ffffff;
}

.style_216 .text-wrapper {
    padding: 4rem 3rem;
}

@media (min-width: 768px) and (max-width: 991px) {
    .style_216 .text-wrapper {
        padding: 2.25rem;
    }
}

@media (max-width: 767px) {
    .style_216 .text-wrapper {
        padding: 1.5rem;
    }
}

.style_216 .row {
    align-items: center;
    margin-right: -1rem;
    margin-left: -1rem;
}

.style_216 .row {
    flex-direction: row-reverse;
}

.style_216 .image-wrapper {
    padding: 0 1rem;
}

.style_216 img,
.style_216 .image-wrapper {
    height: 600px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .style_216 img,
    .style_216 .image-wrapper {
        max-height: 350px;
    }
}

.style_216 .mbr-section-title {
    color: #000000;
}

.style_216 .mbr-text {
    color: #000000;
}

.style_217 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #edefeb;
}

.style_217 .mbr-fallback-image.disabled {
    display: none;
}

.style_217 .item-wrapper img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%!important;
}

.style_217 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.style_217 .item-wrapper {
    background: #ffffff;
    margin-bottom: 2rem;
    padding: 2.25rem;
}

@media (max-width: 767px) {
    .style_217 .item-wrapper {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
}

.style_217 .card-title,
.style_217 .iconfont-wrapper {
    color: #000000;
}

.style_217 .card-text {
    color: #000000;
}

.style_217 .content-head {
    max-width: 800px;
}

.style_217 .mbr-section-title {
    color: #000000;
}

.style_218 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #2e481a;
}

.style_218 .item-mb {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_218 .item-mb {
        margin-bottom: 1rem;
    }
}

.style_218 .item-head {
    background: #9fe870;
    padding: 2.25rem;
}

@media (max-width: 767px) {
    .style_218 .item-head {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
}

.style_218 .item-content {
    padding: 2.25rem 2.25rem 0;
    background: #ffffff;
}

@media (max-width: 767px) {
    .style_218 .item-content {
        padding: 0rem 1.5rem;
    }
}

.style_218 .item-wrapper {
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: 2rem;
    background: #ffffff;
    padding: 0rem;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

@media (max-width: 767px) {
    .style_218 .item-wrapper {
        margin-bottom: 1rem;
    }
}

@media (min-width: 992px) {
    .style_218 .item-wrapper .item-footer {
        padding: 0 2rem 3rem;
    }
}

.style_218 .btn {
    width: -webkit-fill-available;
}

.style_218 .item:focus,
.style_218 span:focus {
    outline: none;
}

.style_218 .mbr-section-btn {
    margin-top: auto !important;
    padding: 2rem 2rem 0;
}

@media (max-width: 991px) {
    .style_218 .mbr-section-btn {
        padding: 0rem 2.25rem 2rem;
    }
}

@media (max-width: 767px) {
    .style_218 .mbr-section-btn {
        padding: 0rem 1.5rem;
        margin-bottom: 2rem;
    }
}

.style_218 .mbr-section-title {
    color: #ffffff;
}

.style_218 .mbr-section-subtitle {
    color: #ffffff;
}

.style_218 .mbr-text,
.style_218 .mbr-section-btn {
    text-align: left;
}

.style_218 .item-title {
    text-align: left;
    color: #000000;
}

.style_218 .item-subtitle {
    text-align: left;
    color: #000000;
}

.style_218 .content-head {
    max-width: 800px;
}

.style_219 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_219 .mbr-text {
    color: #000000;
    text-align: left;
}

.style_219 .mbr-section-subtitle {
    color: #000000;
    text-align: left;
}

.style_219 .mbr-section-title {
    text-align: left;
    color: #000000;
}

.style_219 .mbr-card-title {
    color: #000000;
}

.style_219 .mbr-card-subtitle {
    color: #000000;
}

.style_220 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_220 .mbr-text {
    color: #000000;
    text-align: left;
}

.style_220 .mbr-section-subtitle {
    color: #000000;
    text-align: center;
}

.style_220 .mbr-section-title {
    text-align: center;
    color: #000000;
}

.style_220 .content-head {
    max-width: 800px;
}

.style_220 .mbr-card-subtitle {
    color: #000000;
    text-align: left;
}

.style_220 .mbr-card-title {
    text-align: left;
    color: #000000;
}

.style_221 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.style_221 .mbr-overlay {
    background-color: #ffffff;
    opacity: 0.4;
}

.style_221 form .mbr-section-btn {
    text-align: center;
    width: 100%;
}

.style_221 form .mbr-section-btn .btn {
    display: inline-flex;
}

@media (max-width: 991px) {
    .style_221 form .mbr-section-btn .btn {
        width: 100%;
    }
}

.style_222 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #f7f7f7;
}

.style_222 .mbr-fallback-image.disabled {
    display: none;
}

.style_222 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 767px) {
    .style_222 .row {
        text-align: center;
    }
    .style_222 .row .map-wrapper {
        margin-top: 1rem;
    }
}

.style_222 .google-map {
    height: 100%;
    position: relative;
}

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

@media (max-width: 767px) {
    .style_222 .google-map iframe {
        min-height: 350px;
    }
}

.style_222 .google-map [data-state-details] {
    color: #6b6763;
    height: 1.5em;
    margin-top: -0.75em;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

.style_222 .google-map[data-state] {
    background: #e9e5dc;
}

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

.style_222 .card-wrapper {
    background: #ffffff;
}

@media (max-width: 767px) {
    .style_222 .card-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .style_222 .card-wrapper {
        padding: 2.25rem;
    }
}

.style_222 .text-wrapper {
    padding: 0 1rem;
}

@media (max-width: 767px) {
    .style_222 .cardTitle,
    .style_222 .item-wrap {
        text-align: center;
    }
}

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

.style_223 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #2b7a69;
}

@media (max-width: 991px) {
    .style_223 .container {
        padding: 0 16px;
    }
}

@media (max-width: 767px) {
    .style_223 .container {
        padding: 0 12px;
    }
}

.style_223 .social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.style_223 .social-row .soc-item {
    margin: 8px;
}

.style_223 .social-row .soc-item a:hover .mbr-iconfont,
.style_223 .social-row .soc-item a:focus .mbr-iconfont {
    background-color: #f7f7f7;
}

.style_223 .social-row .soc-item a .mbr-iconfont {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 32px;
    background-color: #ffffff;
    color: #2b7a69;
    transition: all 0.3s ease-in-out;
}

.style_223 .row-links {
    width: 100%;
    justify-content: center;
}

.style_223 .header-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}

.style_223 .header-menu li {
    padding: 0 1rem 1rem 1rem;
}

.style_223 .header-menu li p {
    margin: 0;
}

.style_223 .copyright {
    margin-bottom: 0;
    color: #ffffff;
    text-align: center;
}

.style_223 .mbr-section-title {
    color: #ffffff;
}

.style_224 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #260a30;
}

.style_224 input {
    padding: 1.2rem 1.5rem;
    border: none !important;
    height: 100%;
}

.style_224 input:hover {
    border: none !important;
}

.style_224 .btn {
    height: 100%;
    margin: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 992px) {
    .style_224 .text-wrapper {
        padding: 0 2rem;
    }
}

.style_224 .row {
    justify-content: center;
}

.style_224 .mbr-section-btn {
    display: flex;
    margin-bottom: 1.2rem;
    width: fit-content;
}

.style_224 .mbr-section-btn .btn {
    width: auto;
}

@media (max-width: 991px) {
    .style_224 .image-wrapper {
        margin-bottom: 2rem;
    }
    .style_224 .content-wrapper {
        flex-direction: column-reverse;
    }
}

.style_224 .justify-content-center {
    align-items: center;
}

.style_224 .mbr-section-title {
    text-align: center;
    color: #ffd7ef;
}

.style_225 {
    padding-top: 4rem;
    padding-bottom: 6rem;
    background-color: #2b7a69;
}

.style_225 img,
.style_225 .item-img {
    width: 100%;
    height: 100%;
    height: 300px;
    object-fit: cover;
}

.style_225 .item:focus,
.style_225 span:focus {
    outline: none;
}

.style_225 .item {
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .style_225 .item {
        margin-bottom: 1rem;
    }
}

.style_225 .item-content {
    margin-top: 2rem;
    padding: 0 2.25rem 2.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 767px) {
    .style_225 .item-content {
        padding: 0 2rem 1.5rem;
        margin-top: 1rem;
    }
}

.style_225 .item-wrapper {
    position: relative;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.style_225 .item-wrapper .item-footer {
    margin-top: auto;
}

.style_225 .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.style_225 .item-title {
    text-align: left;
}

.style_225 .item-subtitle {
    text-align: left;
}

.style_225 .mbr-text,
.style_225 .item .mbr-section-btn {
    text-align: left;
}

.style_225 .content-head {
    max-width: 800px;
}

.style_225 .mbr-section-subtitle,
.style_225 .mbr-section-head .mbr-section-btn {
    color: #ffffff;
    text-align: center;
}


/* buscador */

.search_search {
    width: 100%;
    position: relative;
    display: flex;
}

.searchTerm_search {
    width: 100%;
    border: 3px solid #5B5B5B;
    border-right: none;
    padding: 25px;
    height: 20px;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #9DBFAF;
}

.searchTerm_search:focus {
    color: #5B5B5B;
}

.searchButton {
    width: 60px;
    height: 56px;
    border: 1px solid #5B5B5B;
    background: #5B5B5B;
    text-align: center;
    color: #fff;
    border-radius: 0 0px 0px 0;
    cursor: pointer;
    font-size: 20px;
}

.wrap_search {
    width: auto;
    max-width: 450px;
    margin: 0 auto;
}


/* buscador barra */

.mi_search_form>.textbox {
    outline: 0;
    height: 42px;
    width: 244px;
    line-height: 42px;
    padding: 0 16px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #212121;
    border: 0;
    float: left;
    -webkit-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
}

.mi_search_form>.button {
    outline: 0;
    background: none;
    background-color: rgba(38, 50, 56, 0.8);
    float: left;
    height: 42px;
    width: 42px;
    text-align: center;
    line-height: 42px;
    border: 0;
    color: #FFF;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 16px;
    text-rendering: auto;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition: background-color .4s ease;
    transition: background-color .4s ease;
    -webkit-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
}

.mi_search_form>.button:hover {
    background-color: rgba(0, 150, 136, 0.8);
}


/* navbar.php */


/* ============ desktop view ============ */

@media all and (min-width: 992px) {
    .dropdown-menu li {
        position: relative;
    }
    .dropdown-menu .submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: -7px;
    }
    .dropdown-menu .submenu-left {
        right: 100%;
        left: auto;
    }
    .dropdown-menu>li:hover {
        background-color: #f1f1f1
    }
    .dropdown-menu>li:hover>.submenu {
        display: block;
    }
}


/* ============ desktop view .end// ============ */


/* ============ small devices ============ */

@media (max-width: 991px) {
    .dropdown-menu .dropdown-menu {
        margin-left: 0.7rem;
        margin-right: 0.7rem;
        margin-bottom: .5rem;
    }
}


/* ============ small devices .end// ============ */

.navbar {
    position: fixed;
    transition: 1s;
}

.navbar-brand {
    color: #fff;
    font-size: 45px;
    cursor: pointer;
}

.dropdown-menu li {
    cursor: pointer;
    font-size: 16px;
}

.dropdown-menu li:after {
    content: '';
    display: block;
    border-bottom: 2px solid gray;
    transform: scaleX(0);
    transition: .2s ease-in-out;
}

.dropdown-menu li:hover:after {
    transform: scaleX(1);
}

body::-webkit-scrollbar {
    width: 14px;
}

body::-webkit-scrollbar-thumb {
    background: gray;
}

.site-title {
    display: inline-block;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.scrolled-nav .site-title {
    font-size: 24px;
}

.tittle_logo {
    width: 200px;
    display: inline-block;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.scrolled-nav .tittle_logo {
    width: 150px;
}


/* detalles_publicacion.php */

.single-product_details {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: 50% 1fr;
    grid-gap: 20px;
}

.product-images_details {
    grid-column: 1 / span 1;
    width: 100%;
    display: grid;
    grid-template-rows: 80% 20%;
}

.product-image-display_details {
    grid-row: 1 / span 1;
    width: 100%;
}

.product-image-display_details img {
    width: 100%;
}

.main-product-images_details {
    width: 100%;
}

.productImage1 {}

.productImage2 {
    display: none;
}

.productImage3 {
    display: none;
}

.productImage4 {
    display: none;
}

.productImage5 {
    display: none;
}

.productImage6 {
    display: none;
}

.productImage7 {
    display: none;
}

.productImage8 {
    display: none;
}

.productImage9 {
    display: none;
}

.productImage10 {
    display: none;
}

.productImage11 {
    display: none;
}

.productImage12 {
    display: none;
}

.productImage13 {
    display: none;
}

.product-thumbnail_detailss-gallery_details {
    grid-row: 2 / span 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px
}

.product-thumbnail_details {
    max-width: 100%;
}

.product-thumbnail_details img {
    width: 100%;
}

.product-text_details {
    grid-column: 2 / span 1;
    width: 100%;
}

@media screen and (max-width: 1100px) {
    .single-product_details {
        margin: none;
        grid-template-columns: none;
        grid-template-rows: 1fr auto;
    }
    .product-images_details {
        grid-column: none;
        grid-row: 1 / span 1;
    }
    .product-text_details {
        grid-column: none;
        grid-row: 2 / span 1;
    }
}


/* ranking */

.rating-css {
    cursor: pointer;
    height: 30px;
    font-size: 0;
    margin-bottom: 15px;
}

.rating-css input {
    display: none;
}

.rating-css input+label {
    text-align: center;
    font-size: 24px;
    color: #FFC107;
    cursor: pointer;
}

.rating-css input:checked+label~label {
    color: #555;
}

.rating-css.hover-effect input:checked+label~label,
.rating-css.hover-effect:hover input:hover+label~label {
    opacity: 0.5;
}

.rating-css.hover-effect:hover input+label~label {
    opacity: 1;
}


/* end ranking */


/* efecto aparecer contenido */

.effect_0 {
    opacity: 0;
    transform: translate(-100px, 0px);
    transition: all 2s;
}

.effect_0.aparecer {
    opacity: 1;
    transform: translate(0, 0);
}

.effect_1 {
    opacity: 0;
    transform: translate(0px, 100px);
    transition: all 2s;
}

.effect_1.aparecer {
    opacity: 1;
    transform: translate(0, 0);
}

.effect_2 {
    opacity: 0;
    transform: translate(100px, 0px);
    transition: all 2s;
}

.effect_2.aparecer {
    opacity: 1;
    transform: translate(0, 0);
}

.effect_3 {
    opacity: 0;
    transform: translate(0px, -100px);
    transition: all 2s;
}

.effect_3.aparecer {
    opacity: 1;
    transform: translate(0, 0);
}


/* end efecto aparecer contenido */


/* resultados header */

.result_header {
    background-color: white;
    transition: all 1s;
}

.result_header:hover {
    background-color: wheat;
}


/* mascara */

.mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: all 1s;
}

.marca-de-agua {
    position: absolute;
    opacity: 0.5;
}


/* parpadeo */

@keyframes blink {
    0% {
        color: black;
    }
    50% {
        color: red;
    }
    100% {
        color: black;
    }
}

.parpadeo {
    animation: blink 1s infinite;
}


/* marca de agua */

.image-container {
    position: relative;
    text-align: center;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    /* Ajusta la opacidad de la marca de agua según tus preferencias */
}

.watermark img {
    width: 150px;
    /* Ajusta el tamaño de la marca de agua según tus preferencias */
}

.miul ul {
    list-style-type: none;
    /* Quitamos el estilo de la viñeta por defecto */
    padding: 0;
}

.miul li {
    position: relative;
}

.miul li::before {
    content: "•";
    /* Utilizamos un punto como contenido del pseudo-elemento */
    font-size: 3em;
    /* Tamaño del punto */
    margin-right: 8px;
    /* Espaciado entre el punto y el texto */
    vertical-align: middle;
    /* Alineamos verticalmente el punto con el centro del texto */
    position: relative;
    top: -0.1em;
    /* Ajustamos el margen superior para subir el punto */
    line-height: 1px;
}

.style_li li::before {
    content: "·";
    color: #000;
    /* Puedes ajustar el color según tu preferencia */
    margin-right: 5px;
    font-weight: bold;
    /* Puedes ajustar el margen derecho según tu preferencia */
}


/* extra style_064 */

.main-section {
    /* height: 100vh; */
    width: 100%;
    /* Asegura que la sección ocupe el 100% del ancho */
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Agregar un fondo negro */

.video-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* height: 963px; */
    background-color: rgba(0, 0, 0, 0.5);
    /* Cambia el valor alpha (0.5) para ajustar la opacidad */
    z-index: 1;
    /* Asegura que el fondo negro esté por encima del video */
}


/* Agregar un logotipo */

.logotipo {
    position: absolute;
    top: 50%;
    /* Centra verticalmente */
    left: 50%;
    /* Centra horizontalmente */
    transform: translate(-50%, -50%);
    /* Centra el elemento en sí mismo */
    z-index: 2;
    padding: 150px;
}

.video_top {
    height: 700px;
    min-height: 650px;
    margin-top: 100px;
    margin-bottom: 17px;
}

.video-container {
    width: 100%;
    /* El contenedor del video ocupa todo el ancho disponible */
    /*   height: 100%; /* El contenedor del video ocupa todo el alto disponible */
    height: 695px;
    overflow: hidden;
    background-color: black;
    /* padding-bottom: 56.25%; */
}

.fullscreen-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%;  */
    height: 700px;
    object-fit: cover;
    /* Esto asegura que el video mantenga su relación de aspecto sin deformarse */
}


/* Móviles en horizontal o tablets en vertical */

@media (max-width: 1200px) {
    .logotipo {
        padding: 150px;
    }
    .fullscreen-video {
        object-fit: cover;
        /* Esto asegura que el video mantenga su relación de aspecto sin deformarse */
    }
}

@media (max-width: 992px) {
    .logotipo {
        padding: 70px;
    }
}

@media (max-width: 768px) {
    .logotipo {
        padding: 40px;
    }
}


/* Móviles en vertical */

@media (max-width: 480px) {
    .logotipo {
        padding: 30px;
    }
}

.main-section .logotipo {
    /* Estilo predeterminado de margen superior */
    margin-top: 0;
}

@media (max-width: 768px) {
    /* Cambiar el margen superior en pantallas más pequeñas (por ejemplo, menos de 768px) */
    .main-section .logotipo {
        margin-top: -80px;
    }
    .video_top {
        height: 500px;
        min-height: 0px;
        margin-top: 100px;
        margin-bottom: 0px;
    }
}


/* extra style_139_B */

.parallax {
    /* background-image: url('assets/images/background17.webp'); */
    background-image: url('../../../assets/images/background17.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    /* height: 100vh; */
}

.parallax::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    /* Fondo negro semitransparente */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Puedes ajustar el contenido y estilos de texto en la sección "content-wrap" según tus necesidades */

.content-wrap {
    position: relative;
    z-index: 1;
    /* Para colocar el contenido por encima de la capa negra */
}


/* extra style_190 */

.carouselstyle_190-wrap {
    overflow: hidden;
}

.carouselstyle_190 {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carouselstyle_190-item {
    min-width: 25%;
    box-sizing: border-box;
}

.carouselstyle_190-item img {
    width: 100%;
    height: auto;
}

.container_slider img {
    width: 100%;
    position: relative;
}

.container_slider_row {
    max-width: 80%;
    margin: 100px auto;
    margin-top: 0px;
    margin-bottom: 0px;
}

.logo-slider .item {
    padding: 15px;
}

.slick-slider .slick-slide {
    margin: 15px;
}

.slick-dots li.slick-active button:before {
    color: #ff5722;
}

.slick-dots li button:before {
    font-size: 12px;
}

.slick-next:before,
.slick-prev:before {
    color: #ff8159;
    font-size: 24px;
}


/* .item:hover {
    display: block;
    transition: all ease 0.3s;
    transform: scale(1.1) translateY(-5px);
} */

.item {
    display: block;
    transition: transform 0.3s ease;
}

.item:hover {
    transform: scale(1.1) translateY(-5px);
}


/* extra style_139 */

.parallax_back {
    /* background-image: url('assets/images/15.webp'); */
    background-image: url('../../../assets/images/15.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 100vh; */
}