body {
    font-family: Jost;
}

.display-1 {
    font-family: 'Jost', sans-serif;
    font-size: 4.6rem;
    line-height: 1.1;
}

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

.display-2 {
    font-family: 'Jost', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
}

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

.display-4 {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
}

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

.display-5 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    line-height: 30px;
}

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

.display-7 {
    font-family: 'Jost', 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: #6592e6 !important;
}

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

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

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

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

.btn-primary,
.btn-primary:active {
    background-color: #6592e6 !important;
    border-color: #6592e6 !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: #ff9966 !important;
    border-color: #ff9966 !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: #6592e6;
}

.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: #6592e6 !important;
    border-color: #6592e6 !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: #ff9966;
}

.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: #ff9966 !important;
    border-color: #ff9966 !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: #6592e6 !important;
}

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

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

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

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

.text-danger {
    color: #ff9966 !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):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: #6592e6;
}

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

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

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

a,
a:hover {
    color: #6592e6;
}

.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: 'Jost', 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: #6592e6 !important;
}

.form-control:-webkit-input-placeholder {
    font-family: 'Jost', 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: #6592e6;
}


/* Forms */

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

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

.jq-number__spin:hover {
    border-color: #6592e6;
}

.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: #6592e6;
    border-bottom-color: #6592e6;
}

.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: #6592e6 !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: Moririse2 !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: #6592e6 !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: Moririse2 !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: #6592e6 !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/background13vol22024_dic_.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-end;
    }
    .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: #6592e6;
    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: #6592e6;
    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: #6592e6;
    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;
}

.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/background32024.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: #6592e6;
}

.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: #6592e6;
    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: #6592e6;
    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: #6592e6;
    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: #6592e6;
    align: center;
    height: 2px;
    margin: 0 auto;
}

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

.style_041 blockquote {
    border-color: #6592e6;
    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: #6592e6;
    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: #6592e6;
    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: 'Moririse2';
    align-items: center;
    justify-content: center;
    display: flex;
}

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

.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: 'Moririse2';
    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: 'Moririse2';
    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 #6592e6;
    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: #6592e6;
    font-size: 1.5rem;
}

.style_066 .social-row .soc-item:hover {
    background-color: #6592e6;
}

.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 #6592e6;
    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: #6592e6;
    font-size: 1.5rem;
}

.style_070 .social-row .soc-item:hover {
    background-color: #6592e6;
}

.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 #6592e6;
    transition: all 0.3s;
}

.style_071 .social-row .soc-item .code-iconfont {
    display: flex;
    justify-content: center;
    align-content: center;
    color: #6592e6;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.style_071 .social-row .soc-item:hover {
    background-color: #6592e6;
}

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

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

.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: #6592e6;
    border: 2px solid #6592e6;
    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: #6592e6;
    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: #6592e6;
    border-width: 2px;
    transition: all .3s;
    border-color: #6592e6;
}

.style_085 .btn-social:hover {
    background: #6592e6;
}

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

.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 #6592e6;
    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: #6592e6;
    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 #6592e6;
    top: 30px;
    margin-left: -9px;
    padding: 0;
}

.style_100 .separline:before {
    top: 50px;
    bottom: 0;
    position: absolute;
    content: "";
    width: 2px;
    background-color: #6592e6;
    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 #6592e6;
    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: #6592e6;
    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: #6592e6;
    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: #6592e6;
    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: 'Moririse2' !important;
    color: #6592e6;
    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: 'Moririse2' !important;
    font-size: 1.4rem !important;
    color: #6592e6;
}

.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 #6592e6;
}

@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: #6592e6;
    border-bottom: 3px solid #6592e6;
}

.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: #6592e6;
    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: Moririse2 !important;
    position: absolute;
    font-size: 32px;
    left: 50%;
    top: 120%;
    color: #6592e6;
    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: Moririse2 !important;
    position: absolute;
    font-size: 32px;
    left: 50%;
    top: 97%;
    color: #6592e6;
    transform: translate(-50%, 0);
}

.style_109 .item:last-child:before {
    display: none;
}

.style_109 .item.last::before {
    display: none;
}

.style_109 .icon-box {
    background: #6592e6;
    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: #6592e6;
    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: #6592e6;
}

@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: #6592e6;
}

.style_112 .item.first:before {
    display: none;
}

.style_112 .item.five:before {
    display: none;
}

.style_112 .icon-box {
    background: #6592e6;
    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: #6592e6;
}

.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: #6592e6;
    border: 2px solid #6592e6;
    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: #6592e6;
    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: 'Moririse2' !important;
    color: #6592e6;
    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: #6592e6;
}

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


/* 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 5px 5px 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;
}