@font-face {
    font-family: "SFProDisplay";
    src: url("../fonts/SFProDisplay-Regular.ttf");
}
@font-face {
    font-family: "SFProDisplay";
    src: url("../fonts/SFProDisplay-Bold.ttf");
    font-weight: 700;
}
@font-face {
    font-family: "SFProDisplay";
    src: url("../fonts/SFProDisplay-Semibold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: "SFProDisplay";
    src: url("../fonts/SFProDisplay-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-display:swap;
    font-family:"SFProDisplay";
    font-weight:500;
    src:url("../fonts/SF-Pro-Display-Medium.woff2") format("woff2"),
    url("../fonts/SF-Pro-Display-Medium.woff") format("woff")
}

/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    font-family: 'SFProDisplay', sans-serif;
    line-height: 1.5;
    color: #000;
    background: #fff;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.layouts-title {
	font-size: 26px;
	margin:15px 0px;
}
.layouts ul li {
	margin-bottom:5px;
}
.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}
.layouts ul li a:hover {
	background:#000;
	color:#fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}
/* -- main styles -- */

.nopad {
	padding:0px;
}
.nopadleft {
	padding-left:0px;
}
.nopadright {
	padding-right:0px;
}
strong, b {
	font-weight: bold;
}
i {
	font-style: italic;
}
em {
	font-style: italic;
}
.clear {
	clear:both;
}
.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
	max-width: 100%;
    margin-bottom: 15px;
}
.invi {
	visibility: hidden;
	opacity: 0;
}
.object-fit {
	position: relative;
}
.object-fit > img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-o-object-fit: cover;
    object-fit: cover;
}
.object-fit.object-contain > img {
    -o-object-fit: contain;
    object-fit: contain;
}
.object-fit > video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none;
}

.submitting button,
.submitting input[type="button"] {
    pointer-events: none;
}

.submitting {
    position: relative;
}
.submitting::before {
    content: '';
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0; left: 0;
    z-index: 11;
}
.submitting::after {
    content: '';
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border-top: 2px solid #000;
    border-right: 2px solid transparent;
    -webkit-animation: formSpinner .6s linear infinite;
    animation: formSpinner .6s linear infinite;
    z-index: 12;
}
@-webkit-keyframes formSpinner {
    to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
@keyframes formSpinner {
    to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}

/* preloader */
.preloader {
    display: inline-block;
	width: 25px;
	height: 25px;
	border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ccc !important;
	-webkit-animation: a 1s ease-in-out infinite;
	animation: a 1s ease-in-out infinite;
	z-index: 50;
}
@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   hamburger   */
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;

	display: none;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 20px;
    float: right;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 28px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #000;
}
.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}
.hamburger-inner:before {
    top: -7px;
}
.hamburger-inner:after {
    bottom: -7px;
}
.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}
.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}
.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}
.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}
.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

.grid-container {
	width: 100%;
    max-width: 1165px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 10;
}
.grid-container.grid-container-md {
    max-width: 1000px;
}
.grid-container-header {
    max-width: 1360px;

    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

header {
    position: absolute;
    top: 0; right: 0; left: 0;
    padding: 26px 0;
    z-index: 999;
}
.header-logo {
    margin-right: 24px;
}
.header-logo img {
    max-height: 25px;
}
.header-right {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-nav > ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.header-nav > ul > li {
    float: left;
    margin-right: 48px;
    position: relative;
}
.header-nav ul li a {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.19;
    letter-spacing: -1.5%;
    letter-spacing: -0.015em;
    color: #000;
    transition: 0.2s ease-in-out;
}
.header-nav ul li a:hover {
    color: #000;
    opacity: 0.7;
}
.header-nav ul li ul {
    position: absolute;
    top: 100%; left: -12px;
    margin: 0;
    background: #fff;
    padding: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-in-out;
}
.header-nav ul li ul li {
    margin-bottom: 8px;
}
.header-nav ul li ul li:last-child {
    margin-bottom: 0;
}
.header-nav > ul > li:hover ul {
    opacity: 1;
    visibility: visible;
}
.header-nav > ul > li:hover > a::after,
.header-nav > ul > li.is-active > a::after {
    transform: translateY(-50%) rotate(180deg);
}
.header-nav .menu-item-has-children > a {
    display: inline-block;
    position: relative;
    padding-right: 17px;
    pointer-events: none;
}
.header-nav .menu-item-has-children > a::after {
    content: '';
    width: 9px; height: 5px;
    background: url(../img/icon-chev-down-dark.svg) no-repeat center center;
    background-size: contain !important;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}

.header-btns {
    margin-left: 10px;
}
.btn-header-blue,
.btn-header-blue:focus,
.btn-header-blue:active {
    display: inline-block;
    cursor: pointer;
    position: relative;
    transition: 0.2s ease-in-out;
    border-radius: 75px;
    background: #067DF9;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(6,125,249,1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(6,125,249,1);
    box-shadow: 0px 0px 15px 0px rgba(6,125,249,1);
    padding: 11px 10px;
    font-size: 13px;
    line-height: 1;
    color: #fff;
    min-width: 161px;
    text-align: center;
}
.btn-header-blue:hover {
    color: #fff;
    opacity: 0.7;
}

.header-lang {
    margin-left: 58px;
    position: relative;
    padding: 0 4px 2px;
}
.header-lang::after {
    content: '';
    width: 100%; height: 1px;
    background: #E3E3E3;
    position: absolute;
    bottom: 0; left: 0;
}
.header-lang ul li {
    position: relative;
}
.header-lang a {
    font-size: 12px;
    line-height: 1.1875;
    letter-spacing: -1.5%;
    letter-spacing: -0.015em;
    color: #000;
    transition: 0.2s ease-in-out;
}
.header-lang ul li ul {
    margin: 0;
    position: absolute;
    top: 100%; left: 0;
    visibility: hidden;
}
.header-lang .wpml-ls-native {
    display: inline-block;
    position: relative;
    padding-right: 14px;
}
.header-lang .wpml-ls-native::after {
    content: '';
    width: 10px; height: 10px;
    background: url(../img/icon-dropdown-gray.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}
.header-lang.is-active .wpml-ls-native::after {
    transform: translateY(-50%) rotate(180deg);
}

main {
    padding-top: 87px;
}
main > :last-child {
    margin-bottom: 0;
}

.title-56 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.178;
    margin-bottom: 18px;
}
.title-48 {
    font-size: 48px;
    line-height: 1.083;
    letter-spacing: 1.5%;
    letter-spacing: 0.015em;
}
.title-32 {
    font-size: 32px;
    line-height: 1.625;
    letter-spacing: 1.5%;
    letter-spacing: 0.015em;
    
}
.title-24 {
    font-size: 24px;
    line-height: 1;
}
.text-24 {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.25;
}
.text-24 p {
    margin-bottom: 23px;
}
.text-24 p:last-child {
    margin-bottom: 0;
}
.text-20 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
}
.text-20 p {
    margin-bottom: 22px;
}
.text-20 p:last-child {
    margin-bottom: 0;
}
.text-20 a {
    color: #067DF9;
    text-decoration: underline;
    transition: 0.2s ease-in-out;
}
.text-20 a:hover {
    color: #067DF9;
    opacity: 0.7;
}
.text-18 {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.44;
}
.section-item {
    margin-bottom: 66px;
}
.link-w-arrow,
.link-w-arrow:focus,
.link-w-arrow:active {
    display: inline-block;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    line-height: 1.375;
    color: #067DF9;
    transition: 0.2s ease-in-out;
    padding-right: 24px;
}
.link-w-arrow::after {
    content: '';
    width: 18px; height: 19px;
    background: url(../img/icon-link-w-arrow-arrow.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}
.link-w-arrow:hover {
    color: #067DF9;
}
.link-w-arrow:hover::after {
    right: -5px;
}

.section-intro-md {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    position: relative;
    margin-bottom: 27px;
}
.section-intro-md-imghold {
    float: left;
    width: 42.57%;
    padding-bottom: 33.82%;
    position: relative;
    height: 100%;
}
.section-intro-md-img {
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    z-index: 0;
}
.section-intro-md-icon {
    position: absolute;
    bottom: 0; left: 31px;
}
.section-intro-md-icon img {
    max-height: 237px;
}
.section-intro-md-icon.no-shadow {
    left: 61px;
    bottom: 32px;
}
.section-intro-md-icon.no-shadow img {
    max-height: 159px;
}
.section-intro-md-textbox {
    float: left;
    width: 57.43%;
    padding-left: 8.15%;

    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.section-intro-md-textbox > div {
    width: 100%;
    max-width: 571px;
}
.section-intro-md-textbox .text-24 {
    max-width: 462px;
}

.section-intro-md-textbox .title-56 {
    max-width: 460px;
}

.section-bussines-1 {
    padding: 74px 0 44px;
}
.section-bussines-1 .title-48 {
    max-width: 728px;
    margin: 0 auto 52px;
}
.section-bussines-1.section-bussines-wide .title-48 {
    max-width: 940px;
}
.three-text-cards-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    width: calc(100% + 15px);
    margin-bottom: -15px;
}
.three-text-cards-list ul li {
    float: left;
    width: calc(33.333% - 15px);
    margin: 0 15px 15px 0;
    background: #F6F6F6;
    border-radius: 30px;
    padding: 24px 25px;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.18;
    color: #A0A0A0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 110px;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: 0.2s;
}
/* .three-text-cards-list ul li.is-active {
    background: #067DF9;
    color: #fff;
} */
.three-text-cards-list ul li:hover {
    background: #067DF9;
    color: #fff;
}

.three-text-cards-list.v2 ul li {
    width: calc(25% - 15px);
}

.section-bussines-2 {
    padding: 16px 0 58px;
}
.section-bussines-2 .section-top-icon {
    margin-bottom: 9px;
}
.section-bussines-2 .section-top-icon img {
    max-height: 134px;
}
.section-bussines-2 .title-48 {
    margin-bottom: 15px;
}
.section-bussines-2 .text-20 {
    max-width: 800px;
    margin: 0 auto;
}

.section-bussines-3 {
    padding: 21px 0;
}
.section-bussines-3-top {
    background: #F6F6F6;
    border-radius: 24px;
    margin-bottom: 16px;
    padding: 64px 11.2% 73px;
}
.section-bussines-3-top .title-48 {
    margin-bottom: 21px;
}
.section-bussines-3-mid ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    width: calc(100% + 16px);
}
.section-bussines-3-mid ul li {
    float: left;
    width: calc(50% - 16px);
    margin: 0 16px 16px 0;
    background: #F6F6F6;
    border-radius: 24px;
    padding: 27px 32px;

    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.section-bussines-3-bot {
    background: #F6F6F6;
    border-radius: 24px;
    padding: 34px 26px;
}
.section-bussines-3-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: #505050;
    margin-top: 20px;
}

.section-bussines-4 {
    padding: 73px 0 39px;
    margin-bottom: 134px;
}
.section-bussines-4-box {
    background: #F6F6F6;
    border-radius: 24px;
    padding: 0 8% 32px;
}
.section-bussines-4 .section-top-icon {
    margin-top: -47px;
    margin-bottom: 26px;
}
.section-bussines-4 .section-top-icon img {
    max-height: 94px;
}
.section-bussines-4 .title-48 {
    margin-bottom: 12px;
}
.section-bussines-4 .text-20 {
    margin-bottom: 30px;
}

.btn-blue,
.btn-blue:focus,
.btn-blue:active {
    display: inline-block;
    cursor: pointer;
    position: relative;
    transition: 0.2s ease-in-out;
    border-radius: 75px;
    background: #067DF9;
    padding: 11px 10px;
    font-size: 13px;
    line-height: 1;
    color: #fff;
    min-width: 126px;
    text-align: center;
}
.btn-blue:hover {
    color: #fff;
    opacity: 0.7;
}

.section-bussines-5 {
    position: relative;
    padding: 158px 0;
}
.section-bussines-5-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
}
.section-bussines-5-box {
    background: #fff;
    border-radius: 24px;
    padding: 60px 40px 42px;
}
.section-bussines-5-box .title-48 {
    margin-bottom: 20px;
}
.section-bussines-5-box .text-20 {
    max-width: 720px;
    margin: 0 auto 21px;
}
.text-disclosure {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.333;
    color: #A0A0A0;
}

footer {
    padding: 60px 0 23px;
    background: #F6F6F6;
}
.footer-copywrite {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.57;
    color: #A0A0A0;
}
footer .text-disclosure {
    margin-bottom: 17px;
}
.footer-top {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    margin-bottom: 20px;
}
.footer-top ul {
    float: left;
    width: 31%;
    padding-right: 24px;
}
.footer-top ul li {
    margin-bottom: 20px;
}
.footer-top ul li a {
    color: #A0A0A0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.375;
    transition: 0.2s ease-in-out;
}
.footer-top ul li a:hover {
    color: #000;
}

.header-mobile-menu {
    position: absolute;
    top: 65px; right: 0; left: 0;
    /* height: 100vh; */
    background: #fff;
    z-index: 998;
    padding: 24px 0 0;
    display: none;
}
.header-mobile-menu .grid-container {
    height: 100%;
    overflow: auto;
    padding-bottom: 24px;
}
.header-mobile-menu .header-nav > ul {
    display: block;
}
.header-mobile-menu .header-nav > ul > li {
    float: none;
    width: 100%;
    margin: 0 0 24px;
}
.header-mobile-menu .header-btns {
    margin: 48px 0 0;
}
.header-mobile-menu .header-nav > ul ul {
    position: relative;
    top: 0; left: 0;
    padding: 0;
    visibility: visible;
    opacity: 1;
    padding: 12px 12px 0;
    display: none;
    transition: 0s;
}

.section-duk {
    padding: 100px 0 60px;
}
.section-duk .title-56  {
    margin-bottom: 45px;
}
.duk-accordion-items .accordion {
    background: transparent;
}
.duk-accordion-items .accordion-item {
    background: #F6F6F6;
    border-radius: 24px;
    margin-bottom: 13px;
}
.duk-accordion-items .accordion-item {
    transition: 0.2s;
}
.duk-accordion-items .accordion-item:hover {
    background: #fcfcfc;
}
.duk-accordion-items .accordion-item.is-active {
    background: #fcfcfc;
}
.duk-accordion-items .accordion-item:last-child {
    margin-bottom: 0;
}
.duk-accordion-items .accordion-title {
    position: relative;
    display: block;
    padding: 22px 134px 22px 63px;
    border: none !important;
    background: none !important;
    font-size: 18px;
    font-size: 20px;
    line-height: 1.22;
    color: #000;
}
.duk-accordion-items .accordion-title::before {
    content: '';
    width: 23px; height: 13px;
    background: url(../img/icon-accordion-chev.svg) no-repeat center center;
    position: absolute;
    top: 50%; right: 31px;
    transform: translateY(-50%);
    margin: 0;
    transition: 0.2s ease-in-out;
}
.duk-accordion-items .accordion-item.is-active .accordion-title::before {
    transform: translateY(-50%) rotate(180deg);
}
.duk-accordion-items .accordion-title::after {
    /* content: '';
    width: 23px; height: 3px;
    background: #000;
    border-radius: 10px;
    position: absolute;
    top: 50%; right: 31px;
    transform: translateY(-50%);
    margin: 0;
    transition: 0.2s ease-in-out;
    opacity: 0; */
}
.duk-accordion-items .accordion-item.is-active .accordion-title::before {
    /* opacity: 0; */
}
.duk-accordion-items .accordion-item.is-active .accordion-title::after {
    opacity: 1;
}
.duk-accordion-items .accordion-content {
    display: none;
    padding: 0 100px 76px 63px;
    padding: 0 100px 24px 63px;
    /* min-height: 95px; */
    border: none !important;
    background-color: transparent;
    color: #7f7e7e;
    font-size: 21px;
    font-weight: 300;
    line-height: 1.25;
}
.duk-accordion-items .accordion-content a {
    color: #067DF9;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    transition: 0.2s ease-in-out;
}
.duk-accordion-items .accordion-content a:hover {
    color: #067DF9;
    opacity: 0.7;
}

.duk-accordion-items .accordion-content ul {
    margin-left: 0;
}
.duk-accordion-items .accordion-content ul li {
    position: relative;
    padding-left: 20px;
}
.duk-accordion-items .accordion-content ul li:before {
    content: '•';
    position: absolute;
    top: 0;
    left: 0;
}

.accordion-content-text {
    /* min-height: 76px; */
}

.section-location {
    padding: 87px 0 64px;
}
.section-location-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.section-location-list ul li {
    float: left;
    width: 50%;
    padding: 0 7%;
}
.section-location-list-icon {
    margin-bottom: 23px;
}
.section-location-list-icon img {
    max-height: 79px;
}
.section-location-list ul li .title-32 {
    margin-bottom: 8px;
}
.section-location-list ul li .text-20 {
    margin-bottom: 10px;
}

.section-about {
    padding: 72px 0 18px;
}
.section-about-top {
    margin-bottom: 178px;
}
.section-about-top .title-56 {
    margin-bottom: 35px;
}
.section-about-top .text-18 {
    max-width: 965px;
    margin: 0 auto;
}

.section-about-top .text-18 p {
    margin-bottom:18px;
}
.about-us-item-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    width: calc(100% + 16px);
}
.about-us-item-list ul li {
    float: left;
    width: calc(25% - 16px);
    margin: 0 16px 105px 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.375;
}
.about-us-item-list ul li img {
    margin: 12px 0;
    max-height: 30px;
}
.about-us-item-list ul li a {
    color: #000;
    text-decoration: underline;
    transition: 0.2s ease-in-out;
}
.about-us-item-list ul li a:hover {
    color: #000;
    opacity: 0.7;
}
.about-us-item-list > img {
    margin-bottom: 28px;
    max-height: 56px;
}
.about-us-item .title-32 {
    margin-bottom: 33px;
}
/*.about-us-item-list {
    border-bottom: 1px solid #A0A0A0;
    margin-bottom: 84px;
}*/
.about-us-item-list:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.about-us-item-last {
    margin-top: 185px;
}

.section-contact-form {
    padding: 40px 0 50px;
}
.section-contact-form .title-24 {
    margin-bottom: 16px;
}
.section-contact-form .text-18 {
    margin-bottom: 37px;
}

.contact-form form {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;

    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.contact-form-grid {
    width: calc(50% - 10px);
}
.contact-form .form-element {
    width: 100%;
    margin-bottom: 20px;
}
.contact-form .form-element-left {
    width: 50%;
    padding-right: 8px;
}
.contact-form .form-element-right {
    width: 50%;
    padding-left: 8px;
}
.contact-form input,
.contact-form input:focus,
.contact-form textarea,
.contact-form textarea:focus {
    background: #F6F6F6;
    border-radius: 20px;
    padding: 17px 21px;
    color: #000;
    font-size: 13px;
    line-height: 1.23;
    height: 50px;
    outline: none;
    box-shadow: none;
    border: 1px solid transparent;
    margin: 0;
}
.contact-form textarea,
.contact-form textarea:focus {
    resize: none;
    height: 190px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #A0A0A0;
    opacity: 1;
}
.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
    color: #A0A0A0;
    opacity: 1;
}
.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
    color: #A0A0A0;
    opacity: 1;
}
.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
    color: #A0A0A0;
    opacity: 1;
}
.contact-form input:-moz-placeholder,
.contact-form textarea:-moz-placeholder {
    color: #A0A0A0;
    opacity: 1;
}
.contact-form .form-element-btn {
    margin-top: 14px;
    margin-bottom: 15px;
}
.contact-form .form-element-btn button,
.contact-form .form-element-btn button:focus,
.contact-form .form-element-btn button:active {
    min-width: 175px;
}
.contact-form .form-element-link {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.333;
    color: #A0A0A0;
}
.contact-form .form-element-link a {
    color: #A0A0A0;
    text-decoration: underline;
    transition: 0.2s ease-in-out;
}
.contact-form .form-element-link a:hover {
    color: #000;
}

.section-contact-info {
    padding: 35px 0 70px;
}
.section-contact-info .title-32 {
    margin-bottom: 42px;
}
.section-contact-info-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.section-contact-info-list ul li {
    display: inline-block;
    margin: 0 45px 45px 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.375;
}
.section-contact-info-list ul li a {
    color: #000;
    text-decoration: underline;
    transition: 0.2s ease-in-out;
}
.section-contact-info-list ul li a:hover {
    color: #000;
    opacity: 0.7;
}

.section-rules {
    padding: 72px 0 65px;
}
.section-rules-top .title-56 {
    margin-bottom: 74px;
}
.section-rules-top .text-20 {
    max-width: 841px;
}
.section-rules-invalid {
    margin-top: 44px;
}
.section-rules-invalid span {
    display: block;
    font-weight: 500;
    margin-bottom: 15px;
}
.section-rules-invalid ul {
    margin-left: 32px;
}
.section-rules-invalid ul li {
    margin-bottom: 12px;
}
.section-rules-invalid ul li:last-child {
    margin-bottom: 0;
}
.section-rules-disclaimer {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.333;
    color: #A0A0A0;
    margin-top: 43px;
}
.section-docs {
    margin-top: 97px;
}
.section-docs .title-32 {
    margin-bottom: 30px;
}
.section-docs-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    width: calc(100% + 12px);
}
.section-docs-list ul li {
    float: left;
    width: calc(25% - 12px);
    margin: 0 12px 12px 0;
}
.section-docs-list ul li a {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    position: relative;
    transition: 0.2s ease-in-out;
    padding-left: 51px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.25;
    color: #067DF9;
    text-decoration: underline;
    min-height: 39px;
}
.section-docs-list ul li a::after {
    content: '';
    width: 39px; height: 39px;
    background: url(../img/icon-doc.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
}
.section-docs-list ul li a:hover {
    color: #000;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-mail-sent-ng {
   border: none !important;
   float: left !important;
   margin: 10px 0 !important;
   padding: 0 !important;
   color: #df0631 !important;
}
div.wpcf7-mail-sent-ok {
   float: left !important;
   border: none !important;
   padding: 0 !important;
   margin: 10px 0 !important;
}
span.wpcf7-not-valid-tip {
    display: none !important;
}
span.wpcf7-list-item {
   margin: 0 !important;
}
.form-element .wpcf7-not-valid,
.form-element .wpcf7-not-valid:focus {
   border: solid 1px #df0631;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    text-align: center;
    width: 100%;
}

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output {
    color: #df0631 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #067DF9 !important;
    display: none!important; 
}

.ss-prices-section {
    padding-top: 80px;
    padding-bottom: 90px;
}

.section-bussines-5.v2 {
    padding: 45px 0 143px;
}
.section-bussines-5.v2 .how-box {
    background: #F6F6F6;
}

.duk-more {
    margin-top: 31px;
}

.image-content-hold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.ic-left {
    width: 50%;
    padding-right: 7%;
}

.ic-image {
    width: calc(100% + (100vw - 1125px) / 2);
    margin-left: calc((100vw - 1125px) / -2);
}
.ic-image img {
    width: 100%;
}

.ic-right {
    width: 50%;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 3.5%
}

.ic-right .title-48 {
    margin-bottom: 16px;
}

.ic-link {
    margin-top: 32px;
}

.text-16 {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.375;
}
.text-16 p {
    margin-bottom: 14px;
}
.text-16 ul {
    margin-bottom: 14px;
}
.text-16 ul li:not(:last-child) {
    margin-bottom: 6px;
}
.text-16 ul li {
    padding-left: 22px;
    position: relative;
}
.text-16 ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 11px;
    background: url(../img/checkmark.svg) no-repeat center center;
}

.text-16 > *:last-child {
    margin-bottom: 0;
}


.ss-prices-section .title-48 {
    margin-bottom: 32px;
}
.ss-prices-section .text-24 {
    max-width: 570px;
    margin: 0 auto 33px;
}

.ss-prices-tabs {
    max-width: 650px;
    background: #F6F6F6;
    border-radius: 30px;
    margin: 0 auto;
}
.ss-prices-tabs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 14px;
}
.ss-prices-tabs ul li {
    width: 100%;
}
.ss-prices-tabs ul li a {
    min-height: 100%;
    display: block;
    border-radius: 23px;
    padding: 8px 10px 12px;
    text-align: center;
    font-size: 14px;
    line-height: 15px;
    font-weight: 400;
    color: #CCCCCC;
    transition: 0.2s;
}
.ss-prices-tabs ul li.active a {
    background: #EAEDF5;
    color: #343434;
}
.ss-prices-tab-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    height: 64px;
    margin-bottom: 4px;
    filter: grayscale(1);
    opacity: 0.5;
    transition: 0.2s;
}

.ss-prices-tabs ul li.active .ss-prices-tab-image {
    filter: grayscale(0);
    opacity: 1;
}
.ss-prices-tabs ul li a:hover .ss-prices-tab-image {
    filter: grayscale(0);
    opacity: 1;
}

.ss-prices-tab-image img {
    max-height: 100%;
}

.ss-prices-hold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.ss-prices-left {
    width: 32%;
    padding-right: 20px;
}
.ss-prices-right {
    width: 68%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.ss-prices-right tbody, 
.ss-prices-right tfoot, 
.ss-prices-right thead {
    background: transparent;
}

.ss-prices-right tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: transparent;
}

.ss-prices-right tbody td, 
.ss-prices-right tbody th {
    border-bottom: 1px solid #F6F6F6;
    padding: 10px 15px;
    height: 55px;
    font-size: 16px;
    line-height: 1.375;
    font-weight: 400;
    color: #000;
}
.ss-prices-right tbody td:first-child, 
.ss-prices-right tbody th:first-child {
    font-weight: 300;
}

.ss-prices-right tfoot td, 
.ss-prices-right tfoot th, 
.ss-prices-right thead td, 
.ss-prices-right thead th {
    padding: 10px 15px;
    height: 55px;
    font-size: 16px;
    line-height: 1.375;
    font-weight: 300;
    border-bottom: 1px solid #F6F6F6;
    color: #000;
}

.ss-prices-image {
    padding-bottom: 105.2044%;
}

.ss-prices-image-icon{
    position: absolute;
    bottom: -35px;
    left: -24px;
    width: 192px;
    z-index: 5;

}

.ss-prices-content {
    display: none;
}
.ss-prices-content.active {
    display: block;
}

.ss-prices-tab-title {
    padding: 0 10px;
}

.image-content-section.v2 {
    background: #F6F6F6;
}
.image-content-section.v2 .ic-right {
    padding-top: 60px;
    padding-bottom: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.image-content-section.v2 .ic-image {
    height: 100%;
}

.ic-image-hold {
    padding-bottom: 78.69%;
    min-height: 100%;
}

.image-content-section.v2 .image-content-hold {
    align-items: unset;
}

.ic-item {
    min-height: 100vh;
    min-height: 100svh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}
.ic-item .title-56 {
    max-width: 570px;
    min-height: 200px;
}

.home main {
    padding-top: 0;
}

.home .header-nav > ul > li > a {
    color: #fff
}

.home .header-lang,
.home .header-lang a {
    color: #fff
}

.home .header-nav .menu-item-has-children > a:after {
    filter: invert(1)
}
.home .header-logo img {
    filter: invert(1)
}

.intro-carousel .owl-dots {
    position: absolute;
    left: 50%;
    width: 100%;
    max-width: 1165px;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 10;
    bottom: 50px;
    transform: translateX(-50%);

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
} 

.owl-carousel .owl-nav button.owl-next, 
.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel button.owl-dot {
    outline: none;
}

.intro-carousel.owl-carousel button.owl-dot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.intro-carousel.owl-carousel button.owl-dot span {
    width: 11px;
    height: 11px;
    background: #D9D9D9;
    border-radius: 50%;
    margin: 10px;
}
.intro-carousel.owl-carousel button.owl-dot.active span {
    background: #A0A0A0;
}

.section-bussines-5.v3 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-bussines-5-box.v3 .text-20 {
    margin: 0px auto 46px;
}


.ss-prices-hold.v2 .ss-prices-left {
    width: 48%;
}
.ss-prices-hold.v2 .ss-prices-right {
    width: 52%;
}
.ss-prices-hold.v2 .ss-prices-image-icon {
    width: 246px;
    bottom: 0px;
    left: -50px;
}

.ss-acc-item {
    background: #F6F6F6;
    border-radius: 30px;
    position: relative;
}

.ss-acc-item:not(:last-child) {
    margin-bottom: 10px;
}

.ss-acc-item-icon {
    position: absolute;
    top: 7px;
    left: 34px;
    width: 40px;
    filter: grayscale(1);
    opacity: 0.5;
    pointer-events: none;
    transition: 0.3s;
}

.ss-acc-title {
    font-size: 20px;
    line-height: 1.35;
    color: rgba(0,0,0,0.5);
    font-weight: 400;
    padding: 14px 50px 14px 98px;
    transition: 0.3s;
    cursor: pointer;
}


.ss-acc-item.active .ss-acc-item-icon {
    width: 111px;
    filter: grayscale(0);
    opacity: 1;
    top: 30px;
    left: 34px;
}
.ss-acc-item.active .ss-acc-title {
    font-size: 26px;
    color: #343434;
    padding-top: 29px;
    padding-bottom: 10px;
    padding-left: 180px;
    position: relative;
}
.ss-acc-title:after {
    content: '';
    position: absolute;
    width: 17px;
    height: 9px;
    background: url(../img/dropdown.svg) no-repeat center center;
    right: 23px;
    top: 23px;
    transition: 0.2s;
}
.ss-acc-item.active .ss-acc-title:after {
    opacity: 0;
}

.ss-acc-content {
    padding: 0 30px 30px 180px;
    display: none;
}


.ss-acc-link {
    margin-top: 20px;
    opacity: 0;
    transition: 0.2s;
}

.ss-acc-text {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 300;
    opacity: 0;
    transition: 0.2s;
}

.ss-acc-item.vis .ss-acc-link,
.ss-acc-item.vis .ss-acc-text {
    opacity: 1;
}

.features-section {
    background: #F6F6F6;
    padding: 70px 0 54px;
}

.features-section .title-48 {
    max-width: 745px;
    margin: 0 auto 40px;
}

.features-hold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 855px;
    margin-left: auto;
    margin-right: auto;
}

.features-left {
    width: 50.9%;
    background: #067DF9;
    color: #fff;
    padding: 38px 42px 42px 55px;
    box-shadow: 0px 0px 35px 0px #86AFFF;

}
.features-right {
    width: 42.7%;
    background: #fff;
    padding: 34px 25px 36px 36px;
}

.features-grid-item {
    border-radius: 24px;
}

.features-list ul li {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.22;
    position: relative;
    padding-left: 47px;
    margin-bottom: 22px;
    text-wrap: balance;
}
.features-left .features-list ul li:before {
    content: '';
    position: absolute;
    width: 19px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    left: 6px;
    background: url(../img/features-plus.svg) no-repeat center center;
}
.features-right .features-list ul li {
    padding-left: 39px;
}
.features-right .features-list ul li:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
    left: 6px;
    background: url(../img/features-minus.svg) no-repeat center center;
}
.features-list ul li:last-child {
    margin-bottom: 0px;
}

.features-item-title {
    font-size: 22px;
    line-height: 1.091;
    margin-bottom: 28px;
}

.features-item-logo {
    margin-bottom: 34px;
}
.features-item-logo img {
    max-width: 200px;
}

.section-bussines-4.v2 {
    padding-bottom: 0;
    margin-bottom: 94px;
}

.image-content-section.v2 .ic-right .text-20 {
    margin-bottom: 20px;
    max-width: 400px;
}

.adv-section {
    padding-top: 106px;
    padding-bottom: 65px;
}

.adv-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    min-width: calc(100% + 20px);
    margin-bottom: -20px;
}

.adv-list ul li {
    width: calc(29.9% - 20px);
    min-width: calc(29.9% - 20px);
    margin-bottom: 20px;
    margin-right: 20px;
    background: #F6F6F6;
    border-radius: 30px;
    padding: 36px 40px 22px 28px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;

    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
}
.adv-list ul li:first-child {
    width: calc(40.2% - 20px);
    min-width: calc(40.2% - 20px);
}

.adv-icon {
    position: absolute;
    right: 40px;
    bottom: calc(100% - 38px);
    width: 80px;
}

.adv-list ul li:first-child .adv-icon {
    width: 124px;
    right: 20px;
    bottom: calc(100% - 58px);
}

.adv-list ul li .title-24 {
    margin-bottom: 12px;
}
.adv-list ul li .text-18 {
    line-height: 1.22;
}

.adv-link {
    margin-top: 12px;
}

.ic-image-icon {
    position: absolute;
    bottom: 25px;
    left: 45px;
    width: 217px;
}

.adv-section.hide-smart-box .adv-list ul li {
    width: calc(50% - 20px);
    min-width: calc(50% - 20px);
}
.adv-section.hide-smart-box .adv-list ul li:nth-child(1) {
    display: none;
}

.entry p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 22px;
}
.entry a {
    color: #067DF9;
    text-decoration: underline;
    transition: 0.2s ease-in-out;
}
.entry a:hover {
    color: #067DF9;
    opacity: 0.7;
}

.entry h1:not(:last-child),
.entry h2:not(:last-child),
.entry h3:not(:last-child),
.entry h4:not(:last-child),
.entry h5:not(:last-child) {
    margin-top: 30px;
}
.entry h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}
.entry h2 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: 0.015em;
    margin-bottom: 20px;
}
.entry h3 {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: 0.015em;
    margin-bottom: 20px;
}
.entry h4 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 20px;
}
.entry h5 {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 20px;
}
.entry ul {
    margin-bottom: 22px;
}
.entry ol {
    counter-reset: item;
    margin-bottom: 22px;
}
.entry ul li,
.entry ol li {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    position: relative;
    padding-left: 24px;
}
.entry ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
}
.entry ol li:before {
    content: counters(item, ".") ".";
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 400;
}
.entry > *:last-child {
    margin-bottom: 0;
}

.entry tbody td, 
.entry tbody th {
    padding: 8px 15px;
    border: 1px solid #F6F6F6;
    font-size: 16px;
}

.entry tbody tr:nth-child(even) {
    background-color: transparent;
}

.entry tbody, 
.entry tfoot, 
.entry thead {
    background-color: transparent
}

.ss-prices-desc {
    margin-top: 24px;
    /* font-size: 13px;
    line-height: 1.25; */
}
.ss-prices-desc a {
    color: #067DF9;
    text-decoration: underline;
    transition: 0.2s ease-in-out;
}
.ss-prices-desc a:hover {
    color: #067DF9;
    opacity: 0.7;
}
.ss-prices-desc ul li {
    /* padding-left: 12px;
    position: relative; */
} 
.ss-prices-desc ul li:before {
    /* content: '•';
    position: absolute;
    top: 0;
    left: 0; */
} 

.contact-form-success {
    position: absolute;
    z-index: 25;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    padding: 20px 20px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.contact-form-success.active {
    opacity: 1;
    visibility: visible;
}

.duk-2levels > .accordion > .accordion-item:not(:last-child) {
    margin-bottom: 20px;
}
.duk-2levels > .accordion > .accordion-item > .accordion-title {
    padding: 35px 134px 35px 75px;
    border: none;
    background: #f6f6f6;
    font-size: 27px;
    line-height: 1.25;
    color: #000;
    border-radius: 28px;
    transition: 0.2s;
}
.duk-2levels > .accordion > .accordion-item > .accordion-title:hover {
    background: #377ef1;
    color: #fff;
}
.duk-2levels > .accordion > .accordion-item.is-active > .accordion-title {
    background: #377ef1;
    color: #fff;
}

.duk-2levels > .accordion > .accordion-item > .accordion-title:before {
    content: '';
    width: 34px;
    height: 19px;
    background: url(../img/icon-accordion-chev-lg.png) no-repeat center center / 100% 100%;
    position: absolute;
    top: 50%;
    right: 45px;
    transform: translateY(-50%) rotate(0deg);
    margin: 0;
    transition: 0.2s ease-in-out;
}

.duk-2levels > .accordion > .accordion-item > .accordion-title:hover:before {
    filter: invert(1)
}
.duk-2levels > .accordion > .accordion-item.is-active > .accordion-title:before {
    filter: invert(1);
    transform: translateY(-50%) rotate(180deg);
}

.duk-2levels > .accordion > .accordion-item > .accordion-content {
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    border: none;
    background-color: transparent;
}
.duk-2levels .duk-accordion-items .accordion-content,
.duk-2levels .duk-accordion-items .accordion-title {
    padding-left: 110px;
}

.duk-2levels .duk-accordion-items .accordion-title::before {
    right: 54px;
    opacity: 0.5;
}

.grecaptcha-badge {
display:none !important;
}

.about-tabs {
    margin-top: 30px;
    margin-bottom: 50px;
}

.about-tabs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.about-tabs ul li:not(:last-child) {
    margin-right: 45px;
}
.about-tabs ul li a {
    display: block;
    font-size: 22px;
    min-width: 144px;
    text-align: center;
    line-height: 1.5;
    padding: 6px 20px;
    color: #a0a0a0;
    background: #f6f6f6;
    border-radius: 13px;
    transition: 0.2s;
}
.about-tabs ul li.active a {
    color: #fff;
    background: #377bf1;
}


.about-tab-content {
    display: none;
}
.about-tab-content.active {
    display: block;
}



/* Media */
@media only screen and (max-width: 1199px) {
    .section-intro-md-icon img {
        max-height: 190px;
    }
    .section-intro-md-icon {
        left: 0;
    }
    .section-intro-md-icon.no-shadow {
        left: 30px;
        bottom: 30px;
    }
    .section-intro-md-icon.no-shadow img {
        max-height: 130px;
    }
    .ss-prices-hold.v2 .ss-prices-image-icon {
        left: -30px;
    }
    .intro-carousel .owl-dots {
        bottom: 30px;
    }
    .ic-image-icon {
        bottom: 0px;
        left: 0px;
    }
    .section-bussines-5.v3 {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    .ic-right {
        padding-left: 2%;
    }
    .ic-left {
        padding-right: 5%;
    }
    .ic-left {
        width: 50%;
    }
    .ic-image {
        width: calc(100% + 30px);
        margin-left: -30px;
    }
    .section-intro-md-textbox {
        padding-left: 6%;
    }
    .ss-prices-image-icon {
        bottom: -28px;
        left: -18px;
        width: 160px;
    }
}

@media only screen and (max-width: 1023px) {
    .home .header-nav > ul > li > a {
        color: #000;
    }
    .duk-accordion-items .accordion-content {
        font-size: 20px;
    }
    .duk-2levels .duk-accordion-items .accordion-content, 
    .duk-2levels .duk-accordion-items .accordion-title {
        padding-left: 75px;
    }
    .duk-2levels > .accordion > .accordion-item > .accordion-title {
        padding: 32px 100px 32px 65px;
    }
    .image-content-section.v2 .ic-right {
        padding-top: 20px;
    }
    .adv-list ul li:first-child {
        width: calc(100% - 20px);
        min-width: calc(100% - 20px);
        margin-bottom: 62px;
    }
    .adv-list ul li {
        width: calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
    .features-right {
        padding: 34px 25px 36px 30px;
    }
    .features-left {
        padding: 38px 30px 42px 35px;
    }
    .ss-acc-content {
        padding: 0 30px 30px 110px;
    }
    .ss-acc-item.active .ss-acc-title {
        padding-top: 22px;
        padding-left: 110px;
    }
    .ss-acc-item.active .ss-acc-item-icon {
        width: 70px;
        top: 20px;
        left: 20px;
    }
    .ss-prices-hold.v2 .ss-prices-image-icon {
        width: 150px;
    }
    .ss-prices-tabs ul {
        overflow: auto;
    }
    .ss-prices-tabs ul li {
       min-width: 98px;
    }
    .ss-prices-tabs {
        overflow: hidden;
    }
    .section-bussines-5.v2 {
        padding: 40px 0 100px;
    }
    .ic-right {
        padding-left: 0;
        width: 100%;
        max-width: 600px;
    }
    .ic-image {
        width: calc(100% + 40px);
        margin-left: -20px;
    }
    .ic-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 32px;
    }
    .ss-prices-image-icon {
        bottom: -18px;
        left: -8px;
        width: 110px;
    }
    .ss-prices-left {
        padding-right: 10px;
    }
    .ss-prices-right tfoot td, 
    .ss-prices-right tfoot th, 
    .ss-prices-right thead td, 
    .ss-prices-right thead th {
        padding: 10px 10px;
        font-size: 14px;
    }
    .ss-prices-right tbody td, 
    .ss-prices-right tbody th {
        padding: 10px 10px;
        font-size: 14px;
    }
    .ss-prices-section {
        padding-top: 30px;
        padding-bottom: 60px;
    }
    header {
        padding: 20px 0;
    }
    main {
        padding-top: 65px;
    }
    .header-lang {
        margin-left: 0;
        margin-right: 20px;
    }
	.hamburger {
		display: inline-block;
	}
    .header-right .header-nav {
        display: none;
    }
    .header-right .header-btns {
        display: none;
    }
    .footer-top ul {
        width: 33.333%;
    }
    .section-bussines-5 {
        padding: 100px 0;
    }
    .section-bussines-4 {
        padding: 64px 0 32px;
        margin-bottom: 100px;
    }
    .three-text-cards-list ul {
        width: 100%;
        margin-bottom: 0;
    }
    .three-text-cards-list ul li {
        width: 100%;
        margin: 0 0 15px 0;
        padding: 24px 25px;
        font-size: 20px;
    }
    .three-text-cards-list ul li:last-child {
        margin-bottom: 0;
    }
    .three-text-cards-list.v2 ul li {
        width: calc(50% - 15px);
        margin-right: 15px;
        margin-bottom: 15px;
    }
    .three-text-cards-list.v2 ul li:last-child {
        margin-bottom: 15px;
    }
    .section-intro-md-imghold {
        width: 100%;
        padding-bottom: 77%;
        margin-bottom: 32px;
    }
    .section-intro-md-textbox {
        width: 100%;
        padding: 0 20px;
    }
    .section-location-list ul li {
        padding: 0 2%;
    }
    .section-about-top {
        margin-bottom: 100px;
    }
    .about-us-item-list ul li {
        width: calc(33.333% - 16px);
    }
    .about-us-item-last {
        margin-top: 100px;
    }
    .section-docs-list ul li {
        width: calc(50% - 12px);
    }
} /* end of max-width 1023 */

@media screen and (max-width:639px) {
    .about-tabs ul li:not(:last-child) {
        margin-right: 12px;
    }
    .about-tabs ul li a {
        font-size: 18px;
        min-width: 10px;
        padding: 6px 15px;
    }
    .duk-2levels .duk-accordion-items .accordion-title::before {
        right: 20px;
    }
    .duk-2levels .duk-accordion-items .accordion-content, 
    .duk-2levels .duk-accordion-items .accordion-title {
        padding-left: 22px;
    }
    .duk-2levels > .accordion > .accordion-item > .accordion-title:before {
        right: 20px;
        width: 28px;
        height: 16px;
    }
    .duk-2levels > .accordion > .accordion-item > .accordion-title {
        padding: 25px 65px 25px 30px;
        font-size: 22px;
    }
    .duk-accordion-items .accordion-content ul li {
        padding-left: 16px;
    }
    .contact-form .form-element {
        margin-bottom: 15px;
    }
    .contact-form-grid {
        width: 100%;
    }
    .adv-section.hide-smart-box .adv-list ul li {
        width: 100%;
        min-width: 100%;
    }
    .section-intro-md-icon img {
        max-height: 140px;
    }
    .section-intro-md-icon {
        bottom: -2px;
        left: -2px;
    }
    .section-intro-md-icon.no-shadow img {
        max-height: 96px;
    }
    .section-intro-md-icon.no-shadow {
        left: 20px;
        bottom: 20px;
    }
    .features-item-logo img {
        max-width: 160px;
    }
    .image-content-section.v2 {
        margin-bottom: 20px;
    }
    .image-content-section.v2 .ic-right {
        padding-top: 0;
        padding-bottom: 60px;
    }
    .ic-image-icon {
        width: 124px;
    }
    .adv-list ul li:first-child .adv-icon {
        right: 0px;
    }
    .adv-icon {
        right: 20px;
    }
    .adv-list ul {
        width: 100%;
        min-width: 100%;
        margin-bottom: -62px;
    }
    .adv-list ul li:first-child {
        width: 100%;
        min-width: 100%;
        margin-bottom: 62px;
    }
    .adv-list ul li {
        width: 100%;
        min-width: 100%;
        margin-bottom: 62px;
    }
    .features-right .features-list ul li {
        padding-left: 30px;
    }
    .features-right .features-list ul li:before {
        left: 0;
    }
    .features-right {
        padding: 30px 25px;
        width: 100%;
    }
    .features-list ul li {
        padding-left: 32px;
    }
    .features-left .features-list ul li:before {
        left: 0px;
    }
    .features-left {
        padding: 30px 25px;
        width: 100%;
        margin-bottom: 20px;
    }
    .ss-acc-title {
        padding: 14px 40px 14px 98px;
    }
    .ss-acc-title:after {
        right: 18px;
    }
    .ss-acc-item.active .ss-acc-title {
        font-size: 22px;
    }
    .ss-prices-hold.v2 .ss-prices-image-icon {
        width: 110px;
        left: 0;
    }
    .ss-prices-hold.v2 .ss-prices-right {
        width: 100%;
    }
    .ss-prices-hold.v2 .ss-prices-left {
        width: 100%;
    }
    .ss-prices-tabs ul li {
        min-width: 90px;
    }
    .ss-prices-tab-image {
        height: 58px;
    }
    .ss-prices-tab-image  {
        height: 58px;
    }
    .ss-prices-tabs ul {
        padding: 10px;
    }
    .ss-prices-section {
        padding-top: 10px;
        padding-bottom: 90px;
    }
    .section-bussines-5.v2 {
        padding: 30px 0 70px;
    }
    .ss-prices-right tfoot td, 
    .ss-prices-right tfoot th, 
    .ss-prices-right thead td, 
    .ss-prices-right thead th {
        padding: 6px 6px;
        height: 50px;
    }
    .ss-prices-right tfoot td:first-child, 
    .ss-prices-right tfoot th:first-child, 
    .ss-prices-right thead td:first-child, 
    .ss-prices-right thead th:first-child {
        padding-left: 0;
    }
    .ss-prices-right tfoot td:last-child, 
    .ss-prices-right tfoot th:last-child, 
    .ss-prices-right thead td:last-child, 
    .ss-prices-right thead th:last-child {
        padding-right: 0;
    }
    .ss-prices-right tbody td, 
    .ss-prices-right tbody th {
        padding: 6px 6px;
        height: 50px;
    }
    .ss-prices-right tbody td:first-child, 
    .ss-prices-right tbody th:first-child {
        padding-left: 0;
    }
    .ss-prices-right tbody td:last-child, 
    .ss-prices-right tbody th:last-child {
        padding-right: 0;
    }
    .ss-prices-right {
        width: 100%;
        padding-top: 40px;
        padding-bottom: 0;
    }
    .ss-prices-left {
        padding-left: 8%;
        padding-right: 8%;
        width: 100%;
    }
    .three-text-cards-list.v2 ul li:last-child {
        margin-bottom: 0;
    }
    .three-text-cards-list.v2 ul li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
	.entry iframe {
		max-width: 100%;
	}
    .footer-top ul {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .footer-top ul li {
        margin-bottom: 20px;
    }
    .section-bussines-5 {
        padding: 64px 0;
    }
    .section-bussines-5-box {
        padding: 48px 24px;
    }
    .title-56 {
        font-size: 48px;
    }
    .title-48 {
        font-size: 32px;
    }
    .title-32 {
        font-size: 28px;
    }
    .text-24 {
        font-size: 22px;
    }
    .text-20 {
        font-size: 18px;
    }
    .entry p {
        font-size: 18px;
    }
    .entry h1 {
        font-size: 48px;
    }
    .entry h2 {
        font-size: 32px;
    }
    .entry h3 {
        font-size: 28px;
    }
    .entry h4 {
        font-size: 22px;
    }
    .entry h5 {
        font-size: 18px;
    }
    .entry ul li,
    .entry ol li {
        font-size: 18px;
    }
    .entry tbody td, 
    .entry tbody th {
        padding: 6px 10px;
        font-size: 12px;
    }
    .section-bussines-4 {
        padding: 48px 0 24px;
        margin-bottom: 64px;
    }
    .section-item {
        margin-bottom: 64px;
    }
    .section-bussines-3-mid ul {
        width: 100%;
    }
    .section-bussines-3-mid ul li {
        width: 100%;
        margin: 0 0 16px 0;
    }
    .section-bussines-2 {
        padding: 21px 0;
    }
    .section-bussines-1 {
        padding: 21px 0;
    }
    .section-intro-md {
        margin-bottom: 64px;
    }
    .section-location-list ul li {
        width: 100%;
        padding: 0;
        margin-bottom: 48px;
    }
    .section-location-list ul li:last-child {
        margin-bottom: 0;
    }
    .section-location {
        padding: 48px 0;
    }
    .section-duk {
        padding: 64px 0 48px;
    }
    .duk-accordion-items .accordion-title {
        padding: 22px 60px 22px 20px;
        font-size: 16px;
    }
    .duk-accordion-items .accordion-title::before,
    .duk-accordion-items .accordion-title::after {
        right: 20px;
    }
    .duk-accordion-items .accordion-content {
        padding: 0 60px 48px 20px;;
        padding: 0 60px 20px 20px;;
        padding: 0 20px 20px 20px;;
        font-size: 16px;
    }
    .section-about-top {
        margin-bottom: 64px;
    }
    .section-about {
        padding: 64px 0 48px;
    }
    .about-us-item-list ul li {
        width: calc(50% - 16px);
        margin: 0 16px 48px 0;
        font-size: 14px;
    }
    .about-us-item-list {
        margin-bottom: 48px;
    }
    .contact-form .form-element-left {
        width: 100%;
        padding-right: 0;
    }
    .contact-form .form-element-right {
        width: 100%;
        padding-left: 0;
    }
    .section-contact-info-list ul li {
        width: 100%;
        margin: 0 0 45px 0;
        font-size: 16px;
        font-weight: 300;
        line-height: 1.375;
        text-align: center;
    }
    .section-contact-info-list ul li:last-child {
        margin-bottom: 0;
    }
    .about-us-item-last {
        margin-top: 64px;
    }
    .section-docs-list ul {
        width: 100%;
    }
    .section-docs-list ul li {
        width: 100%;
        margin: 0 0 24px 0;
    }
} /* end of max-width 639 */