@font-face {
	font-family: 'Gmarket Sans';    font-style: normal;    font-weight: 700;
	src: local('Gmarket Sans Bold'), local('GmarketSans-Bold'),
	url('../fonts/GmarketSansBold.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('../fonts/GmarketSansBold.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
	font-family: 'Gmarket Sans';    font-style: normal;    font-weight: 500;
	src: local('Gmarket Sans Medium'), local('GmarketSans-Medium'),
	url('../fonts/GmarketSansMedium.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('../fonts/GmarketSansMedium.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
	font-family: 'Gmarket Sans';    font-style: normal;    font-weight: 300;
	src: local('Gmarket Sans Light'), local('GmarketSans-Light'),
	url('../fonts/GmarketSansLight.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('../fonts/GmarketSansLight.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

:root {
    --bs-body-bg: #fefefe;
    --bs-body-font-family: "Gmarket Sans", sans-serif;
    --bs-primary: #3617CE;
    --bs-primary-rgb: 54, 23, 206;
    --bs-secondary: #747A7E;
    --bs-secondary-rgb: 116, 122, 126;
    --bs-gray-dark: #252b2f;
    --bs-gray-dark-rgb:37, 43, 47;
    --bs-border-radius: 0.5rem;
    --bs-body-color: #252b2f;
}

/**
** START - COMMON
**/

.container {
    --bs-gutter-x: 0;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1440px;
    }
}

.kt-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--bs-body-bg);
    border-bottom: 1px solid #e4e4e4;
}

.kt-header .navbar {
    --bs-navbar-padding-y: 1.5rem;
}

.kt-header .hotline {
    display: flex;
    align-items: center;
    gap: 7px;
}

.kt-header .hotline .hotline--icon img {
    display: block;
    width: 32px;
    height: 32px;
}

.kt-header .hotline .hotline--text {
    font-size: 24px;
    font-weight: bold;
    color: var(--bs-primary)
}

.kt-header .navbar-nav {
    justify-content: center;
    margin: 0 auto;
}

.kt-header .nav-link {
    --bs-navbar-nav-link-padding-x: 1.375rem;
    --bs-nav-link-font-weight: 700;
    --bs-nav-link-color: var(--bs-secondary);
    --bs-navbar-active-color: var(--bs-primary);
    --bs-nav-link-font-size: 1rem;
}

.kt-block {
    margin: 0 auto;
    max-width: 1440px;
    padding: 100px 0;
}

.kt-block .kt-block--title {
    font-size: 60px;
    font-weight: 700;
    line-height: 76px;
}

.kt-block .kt-block--subtitle {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}

@media screen and (max-width: 768px) {
    .kt-block {
        padding: 60px 0;
    }
}

.card {
    --bs-card-spacer-y: 24px;
    --bs-card-spacer-x: 24px;
    --bs-card-border-radius: 1.25rem;
}

.form-label {
    font-weight: 700;
}

.form-control {
    padding: .875rem 1rem;
}

.form-control::placeholder {
    color: var(--bs-gray-500);
    font-weight: lighter;
}

.form-check-input {
    width: 1.5em;
    height: 1.5em;
    margin-top: 0em;
}

.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.form-check .form-check-label {
    margin-left: .875em;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgba(var(--bs-primary-rgb), 0.9);
    --bs-btn-hover-border-color: rgba(var(--bs-primary-rgb), 0.85);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgba(var(--bs-primary-rgb), 0.7);
    --bs-btn-active-border-color: rgba(var(--bs-primary-rgb), 0.8);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn {
    --bs-btn-padding-y: 0.75rem;
    --bs-btn-padding-x: 1.25rem;
}

.copyright {
    padding: 24px;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    color: var(--bs-gray-500);
    font-weight: lighter;
    border-top: 1px solid var(--bs-gray-400);
}

.kt-breadcrumb .kt-breadcrumb-wrapper {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    position: relative;
    padding-top: 30px;
}

.kt-breadcrumb .kt-breadcrumb--home {
    margin-right: 6px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../img/icon_location_home.svg") 0 0 no-repeat;
}

.kt-breadcrumb .kt-breadcrumb--item {
    position: relative;
    margin-right: 6px;
}

.kt-breadcrumb .kt-breadcrumb--item::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 10px;
    margin-right: 6px;
    vertical-align: middle;
    background: url(../img/icon_arrow_right_location.svg) 0 0 no-repeat;
    background-size: 100% 100%;
}

.kt-breadcrumb .kt-breadcrumb--item a, .kt-breadcrumb .kt-breadcrumb--item span{
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
    letter-spacing: -0.35px;
    color: #797979;
    text-decoration: none;
}

.kt-breadcrumb .kt-breadcrumb--item:last-child a, .kt-breadcrumb .kt-breadcrumb--item:last-child span {
    color: var(--bs-body-color);
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .kt-breadcrumb .container {
        --bs-gutter-x: 1.5rem;
    }
}
/**
** END - COMMON
**/

/**
** START - BLOCK HERO
**/
.kt-block-hero {
    position: relative;
    margin: 0 auto;
    max-width: 1840px;
    max-height: 800px;
    padding: 0;
    --kt-hero-content-padding: 152px 120px 120px 205px;
    --kt-hero-title-font-size: 100px;
    --kt-hero-subtitle-font-size: 32px;
    --kt-hero-title-top: 25%;
    --kt-hero-subtitle-top: 17%;
    --kt-hero-desc-top: 57%;
    --kt-hero-desc-max-width: 580px;
}

.kt-block-hero .kt-block-hero-img-mobile {
    display: none;
}

.kt-block-hero .kt-block-hero--bg {
    width: 100%;
    height: 100%;
}

.kt-block-hero .kt-block-hero--bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kt-block-hero .kt-block-hero--content {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.kt-block-hero .kt-block-hero--content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: var(--kt-hero-content-padding);
}

.kt-block-hero .kt-block-hero--content_subtitle, .kt-block-hero .kt-block-hero--content_title, .kt-block-hero .kt-block-hero--content_desc {
    position: absolute;
}

.kt-block-hero .kt-block-hero--content_subtitle, .kt-block-hero .kt-block-hero--content_desc {
    font-size: var(--kt-hero-subtitle-font-size);
    font-weight: bold;
}

.kt-block-hero .kt-block-hero--content_subtitle {
    top: var(--kt-hero-subtitle-top);
}

.kt-block-hero .kt-block-hero--content_title {
    font-size: var(--kt-hero-title-font-size);
    font-weight: bold;
    top: var(--kt-hero-title-top)
}

.kt-block-hero .kt-block-hero--content_desc {
    max-width: var(--kt-hero-desc-max-width);
    top: var(--kt-hero-desc-top)
}

@media screen and (max-width: 1440px) {
    .kt-block-hero {
        --kt-hero-content-padding: 120px 120px 120px 170px;
        --kt-hero-desc-top: 56%
    }
}

@media screen and (max-width: 1280px) {
    .kt-block-hero {
        --kt-hero-content-padding: 120px 120px 120px 152px;
        --kt-hero-desc-top: 54%;
        --kt-hero-title-font-size: 80px;
        --kt-hero-subtitle-font-size: 28px;
    }
}

@media screen and (max-width: 1024px) {
    .kt-block-hero {
        --kt-hero-content-padding: 100px 100px 100px 120px;
        --kt-hero-title-font-size: 60px;
        --kt-hero-subtitle-font-size: 24px;
        --kt-hero-desc-max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .kt-block-hero {
        height: 100%;
        max-height:none;
        --kt-hero-content-padding: 100px 38px 100px 38px;
        --kt-hero-title-font-size: 100px;
        --kt-hero-subtitle-font-size: 32px;
        --kt-hero-desc-max-width: 500px;
        --kt-hero-subtitle-top: 10%;
        --kt-hero-title-top: 14%;
        --kt-hero-desc-top: 25%;
    }

    .kt-block-hero .kt-block-hero-img {
        display: none;
    }

    .kt-block-hero .kt-block-hero-img-mobile {
        display: block;
    }

    .kt-block-hero .kt-block-hero--bg img {
        width: 100%;
        height: auto;
    }

    .kt-block-hero .kt-block-hero--content_desc {
        font-size: 26px;
        font-weight: lighter;
    }
}

@media screen and (max-width: 576px) {
    .kt-block-hero {
        --kt-hero-content-padding: 60px 22px 60px 22px;
        --kt-hero-title-font-size: 60px;
        --kt-hero-subtitle-font-size: 28px;
        --kt-hero-desc-max-width: 500px;
        --kt-hero-subtitle-top: 10%;
        --kt-hero-title-top: 20%;
        --kt-hero-desc-top: 32%;
    }

    .kt-block-hero .kt-block-hero--content_subtitle {
        max-width: 410px;
    }

    .kt-block-hero .kt-block-hero--content_desc {
        font-size: 22px;
    }
}

@media screen and (max-width: 414px) {
    .kt-block-hero {
        --kt-hero-content-padding: 60px 12px 60px 12px;
        --kt-hero-subtitle-font-size: 28px;
        --kt-hero-desc-max-width: 374px;
        --kt-hero-subtitle-top: 10%;
        --kt-hero-title-top: 20%;
        --kt-hero-desc-top: 32%;
    }

    .kt-block-hero .kt-block-hero--content_desc {
        font-size: 16px;
    }

    .kt-block-hero .kt-block-hero--content_subtitle {
        max-width: 374px;
    }
}

@media screen and (max-width: 375px) {
    .kt-block-hero {
        --kt-hero-content-padding: 40px 10px 40px 10px;
        --kt-hero-title-font-size: 40px;
        --kt-hero-subtitle-font-size: 24px;
        --kt-hero-desc-max-width: 325px;
        --kt-hero-subtitle-top: 10%;
        --kt-hero-title-top: 22%;
        --kt-hero-desc-top: 32%;
    }

    .kt-block-hero .kt-block-hero--content_desc {
        font-size: 16px;
    }

    .kt-block-hero .kt-block-hero--content_subtitle {
        max-width: 325px;
    }
}

/**
** END - BLOCK HERO
**/

/**
** START - BLOCK INTERNET PROBLEMS
**/
.kt-block-problems {
    --kt-block-title-font-size: 40px;
    --kt-block-title-font-size-line-height: 48px;
    --kt-block-title-font-size-span: 60px;
    --kt-block-title-font-size-span-line-height: 76px;
    --kt-block-item-padding: 40px;
    --kt-block-item-border-radius: 20px;
    --kt-block-item-title-font-size: 28px;
    --kt-block-item-title-line-height: 36px;
    --kt-block-item-subtitle-font-size: 18px;
    --kt-block-item-subtitle-line-height: 24px;
    --kt-block-item-subtitle-margin-bottom: 40px;
    --kt-block-item-image-height: 290px;
}

.kt-block-problems .row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    margin-right: 0;
    margin-left: 0;
}

.kt-block-problems .kt-block--title {
    font-size: var(--kt-block-title-font-size);
    color: var(--bs-gray-dark);
    font-weight: 700;
    line-height: var(--kt-block-title-font-size-line-height);
}

.kt-block-problems .kt-block--title > span {
    font-size: var(--kt-block-title-font-size-span);
    line-height: var(--kt-block-title-font-size-span-line-height);
}

.kt-block-problems .kt-block-problems-item {
    padding: var(--kt-block-item-padding);
    border-radius: var(--kt-block-item-border-radius);
    border: 1px solid var(--bs-secondary)
}

.kt-block-problems .kt-block-problems-item .item-title {
    font-size: var(--kt-block-item-title-font-size);
    line-height: var(--kt-block-item-title-line-height);
    font-weight: 700;
}

.kt-block-problems .kt-block-problems-item .item-subtitle {
    font-size: var(--kt-block-item-subtitle-font-size);
    font-weight: 400;
    line-height: var(--kt-block-item-subtitle-line-height);
    margin-bottom: var(--kt-block-item-subtitle-margin-bottom);
    color: var(--bs-gray-dark)
}

.kt-block-problems .kt-block-problems-item .item-image {
    text-align: center;
}

.kt-block-problems .kt-block-problems-item .item-image img {
    height: var(--kt-block-item-image-height);
    width: auto;
    max-width: 100%;
}

@media screen and (max-width: 1280px) {
    .kt-block-problems {
        --kt-block-title-font-size: 32px;
        --kt-block-title-font-size-line-height: 42px;
        --kt-block-title-font-size-span: 48px;
        --kt-block-title-font-size-span-line-height: 58px;
        --kt-block-item-title-font-size: 20px;
        --kt-block-item-subtitle-font-size: 16px;
        --kt-block-item-image-height: 260px;
    }
}

@media screen and (max-width: 1024px) {
    .kt-block-problems {
        --kt-block-item-padding: 28px;
        --kt-block-title-font-size: 26px;
        --kt-block-title-font-size-line-height: 36px;
        --kt-block-title-font-size-span: 40px;
        --kt-block-title-font-size-span-line-height: 50px;
        --kt-block-item-title-font-size: 18px;
        --kt-block-item-subtitle-font-size: 12px;
        --kt-block-item-image-height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .kt-block-problems {
        --kt-block-item-padding: 28px;
        --kt-block-title-font-size: 26px;
        --kt-block-title-font-size-line-height: 36px;
        --kt-block-title-font-size-span: 40px;
        --kt-block-title-font-size-span-line-height: 50px;
        --kt-block-item-title-font-size: 24px;
        --kt-block-item-subtitle-font-size: 20px;
        --kt-block-item-image-height: 290px;
        --kt-block-item-subtitle-margin-bottom: 28px;
    }
}

@media screen and (max-width: 576px) {
    .kt-block-problems .row {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 16px;
    }

    .kt-block-problems {
        padding: 60px 0;
        --kt-block-item-padding: 28px;
        --kt-block-title-font-size: 24px;
        --kt-block-title-font-size-line-height: 34px;
        --kt-block-title-font-size-span: 32px;
        --kt-block-title-font-size-span-line-height: 42px;
        --kt-block-item-title-font-size: 20px;
        --kt-block-item-subtitle-font-size: 16px;
        --kt-block-item-image-height: 240px;
    }
}

@media screen and (max-width: 375px) {
    .kt-block-problems {
        --kt-block-item-image-height: 200px;
        --kt-block-item-title-font-size: 18px;
        --kt-block-item-subtitle-font-size: 14px;
        --kt-block-item-subtitle-margin-bottom: 20px;
    }
}
/**
** END - BLOCK INTERNET PROBLEMS
**/

/**
** START - BLOCK SERVICES
**/
.kt-block-services {
    max-width: 100%;
    background-image: url("../img/bg_services.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    --kt-block-item-padding: 40px;
    --kt-block-item-border-radius: 20px;
    --kt-block-item-title-font-size: 28px;
    --kt-block-item-title-line-height: 36px;
    --kt-block-item-subtitle-font-size: 18px;
    --kt-block-item-subtitle-line-height: 24px;
}

.kt-block-services .container > .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 0;
    margin-right: 0;
    margin-left: 0;
}

.kt-block-services .row-sub {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    margin-right: 0;
    margin-left: 0;
}

.kt-block-services .kt-block--title {
    margin-bottom: 36px;
}

.kt-block-services .kt-block--title, .kt-block-services .kt-block--subtitle {
    color: var(--bs-body-bg);
}

.kt-block-services .service-item {
    border-radius: var(--kt-block-item-border-radius);
    padding: var(--kt-block-item-padding);
    background-color: var(--bs-body-bg);
    height: 100%;
}

.kt-block-services .service-item.service-left {
    background-color: var(--bs-primary);
    color: var(--bs-body-bg);
    background-image: url("../img/bg_services_left_item.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    height: 100%;
}

.kt-block-services .service-item .service-item--title {
    font-size: var(--kt-block-item-title-font-size);
    line-height: var(--kt-block-item-title-line-height);
    font-weight: 700;
    margin-bottom: 8px;
}

.kt-block-services .service-item .service-item--subtitle {
    font-size: var(--kt-block-item-subtitle-font-size);
    line-height: var(--kt-block-item-subtitle-line-height);
    font-weight: 400;
}

.kt-block-services .service-item .service-item--img {
    text-align: center;
    margin-bottom: 8px;
}

.kt-block-services .service-item .service-item--img img {
    height: 112px;
    width: auto;
    margin: 14px 0;
}

@media screen and (max-width: 768px) {
    .kt-block-services .container > .row, .kt-block-services .row-sub {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 16px;
    }

    .kt-block-services .kt-block--title {
        margin-bottom: 21px;
    }

    .kt-block-services {
        --kt-block-item-title-font-size: 22px;
        --kt-block-item-title-line-height: 26px;
        --kt-block-item-subtitle-font-size: 18px;
        --kt-block-item-subtitle-line-height: 22px;
    }

    .kt-block-services .service-item.service-left {
        height: 500px;
    }
}

@media screen and (max-width: 576px) {
    .kt-block-services {
        --kt-block-item-padding: 16px;
        --kt-block-item-title-font-size: 18px;
        --kt-block-item-title-line-height: 24px;
        --kt-block-item-subtitle-font-size: 14px;
        --kt-block-item-subtitle-line-height: 20px;
    }

    .kt-block.kt-block-services {
        padding: 60px 0;
    }

    .kt-block-services .kt-block--title {
        font-size: 32px;
        line-height: 36px;
    }

    .kt-block-services .kt-block--subtitle {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    .kt-block-services .service-item.service-left {
        height: 400px;
    }

    .kt-block-services .service-item .service-item--img img {
        height: 100px;
    }
}

@media screen and (max-width: 430px) {
    .kt-block-services .service-item.service-left {
        height: 280px;
    }
}

/**
** END - BLOCK SERVICES
**/

/**
** START - BLOCK INFRASTRUCTURE
**/
.kt-block-infrastructure {
    background-color: #f6f4ff;
    max-width: 100%;
}

.kt-block-infrastructure .row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    margin-right: 0;
    margin-left: 0;
}

.kt-block-infrastructure .kt-block--title {
    margin-bottom: 16px;
}

.kt-infra-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-color: var(--bs-body-bg);
    padding: 40px;
}

.kt-infra-item.with-image {
    padding-bottom: 198px;
}

.kt-infra-item .kt-infra-item--title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 8px;
}

.kt-infra-item .kt-infra-item--subtitle {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 11px;
}

.kt-infra-item .kt-infra-item--img_right {
    position: absolute;
    width: 331px;
    height: 197px;
    bottom: 0;
    right: 0;
}

.kt-infra-item .kt-infra-item--img_right img {
    width: 100%;
    height: 100%;
}

.kt-infra-item .kt-infra-item--img img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .kt-block-infrastructure .kt-block--title {
        margin-bottom: 0;
        font-size: 24px;
        line-height: 28px;
    }

    .kt-infra-item {
        padding: 28px;
    }

    .kt-infra-item.with-image {
        padding-bottom: 109px;
    }

    .kt-infra-item .kt-infra-item--img_right {
        width: 197px;
        height: 117px;
    }

    .kt-infra-item .kt-infra-item--title {
        font-size: 20px;
        line-height: 24px;
    }

    .kt-infra-item .kt-infra-item--subtitle {
        font-size: 16px;
        line-height: 20px;
    }
}
/**
** END - BLOCK INFRASTRUCTURE
**/

/**
** START - BLOCK WHY CHOOSE US
**/
.kt-block-why {
    max-width: 100%;
}

.kt-block-why .row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    margin-right: 0;
    margin-left: 0;
}

.kt-why-item .kt-why-item--head {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 2px solid #8671ef;
}

.kt-why-item .kt-why-item--head_title {
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
}

.kt-why-item .kt-why-item--head_icon {
    width: 80px;
    height: 80px;
}

.kt-why-item .kt-why-item--head_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.kt-why-item .kt-why-item--description {
    font-size: 18px;
    line-height: 24px;
}

@media screen and (max-width: 768px) {
    .kt-block-why .row {
        --bs-gutter-y: 40px
    }

    .kt-why-item .kt-why-item--head {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .kt-why-item .kt-why-item--head_title {
        font-size: 20px;
        line-height: 24px;
    }

    .kt-why-item .kt-why-item--head_icon {
        width: 60px;
        height: 60px;
    }

    .kt-why-item .kt-why-item--description {
        font-size: 16px;
        line-height: 20px;
    }
}
/**
** END - BLOCK WHY CHOOSE US
**/

/**
** START - BLOCK OUR CUSTOMERS
**/
.kt-block-our-customers {
    max-width: 100%;
}

.kt-block-our-customers .row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    margin-right: 0;
    margin-left: 0;
}

.kt-block-our-customers .kt-block--title {
    margin-bottom: 40px;
}

.kt-our-customers-item {
    background-color: #f6f4ff;
    border-radius: 20px;
    padding: 20px;
}

.kt-our-customers-item .kt-our-customers-item--img {
    height: 240px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.kt-our-customers-item .kt-our-customers-item--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.kt-our-customers-item .kt-our-customers-item--title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.kt-our-customers-item .kt-our-customers-item--desc {
    font-size: 16px;
    line-height: 20px;
}

@media screen and (max-width: 768px) {
    .kt-block-our-customers .row {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 16px;
    }

    .kt-block-our-customers .kt-block--title {
        margin-bottom: 20px;
        font-size: 24px;
        line-height: 28px;
    }

    .kt-block-our-customers .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        display: flex;
    }

    .kt-block-our-customers .row .col-3 {
        flex: 0 0 auto;
        width: 277px;
    }

    .kt-our-customers-item .kt-our-customers-item--img {
        height: 200px;
        margin-bottom: 16px;
    }

    .kt-our-customers-item .kt-our-customers-item--title {
        font-size: 18px;
        line-height: 24px;
    }

    .kt-our-customers-item .kt-our-customers-item--desc {
        font-size: 16px;
        line-height: 20px;
    }
}
/**
** END - BLOCK OUR CUSTOMERS
**/

/**
** END - BLOCK PRICING
**/
.kt-block-pricing {
    max-width: 100%;
}

.kt-block-pricing .row{
    --bs-gutter-x: 24px;
    --bs-gutter-y: 40px;
    margin-right: 0;
    margin-left: 0;
}

.kt-block-pricing .kt-block--title {
    font-size: 40px;
    line-height: 48px;
}

.kt-block-pricing ul {
    margin: 0
}

.kt-block-pricing .table-pricing {
    text-align: center;
}

.kt-block-pricing .table-pricing >:not(caption)>*>* {
    padding: 21px;
}

.kt-block-pricing .table-pricing th {
    background-color: #f6f4ff;
    font-size: 18px;
}

.kt-block-pricing .table-pricing td[rowspan="3"] {
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 700;
}

.kt-block-pricing .table-pricing td:last-child,
.kt-block-pricing .table-pricing th:last-child {
    border-right: 4px solid #8671ef;
    border-left: 4px solid #8671ef;
}

.kt-block-pricing .table-pricing tr:first-child th:last-child {
    border-top: 4px solid #8671ef;
}

.kt-block-pricing .table-pricing tr:last-child td:last-child {
    border-bottom: 4px solid #8671ef;
}

@media screen and (max-width: 768px) {
    .kt-block-pricing .row{
        --bs-gutter-y: 24px;
    }

    .kt-block-pricing .table-responsive {
        width: 100%;
        overflow-x: auto;
    }

    .kt-block-pricing .table-pricing {
        min-width: 600px;
    }

    .kt-block-pricing .kt-block--title {
        font-size: 24px;
        line-height: 28px;
    }

    .kt-block-pricing .table-pricing th {
        font-size: 16px;
    }
}

/**
** END - BLOCK PRICING
**/

/**
** START - BLOCK CONTACT
**/
.kt-block-contact {
    max-width: 100%;
    background-color: var(--bs-primary);
    color: var(--bs-body-bg);
    background-image: url("../img/bg_contact.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 1214px;
}

.kt-block-contact-top {
    margin-bottom: 68px;
}

.kt-block-contact .kt-block--subtitle {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 12px;
}

.kt-block-contact .kt-block--title {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 36px;
}

.kt-block-contact .kt-block--title span {
    color: #fcff37
}

.kt-block-contact .btn-hotline {
    display: inline-block;
    padding: 8px;
    font-size: 44px;
    line-height: 52px;
    font-weight: bold;
    color: var(--bs-body-bg);
    text-decoration: none;
    background-color: #ff6495;
    border-radius: 123px;
    margin-bottom: 24px;
}

.kt-block-contact .btn-hotline .btn-hotline--text {
    padding-right: 16px;
    padding-top: 4px;
}

.kt-block-contact .kt-block-contact-form > .row{
    --bs-gutter-x: 24px;
    --bs-gutter-y: 40px;
    margin-right: 0;
    margin-left: 0;
}

.kt-block-contact-form--title {
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 28px;
}

.kt-block-contact-steps {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    gap: 24px;
}

.kt-block-contact-steps--item {
    width: calc(49.99% - 12px);
    border-radius: 20px;
    padding: 28px;
    background-color: #2f13bf;
}

.kt-block-contact-steps--item .steps-item--icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

.kt-block-contact-steps--item .steps-item--icon img {
    width: 100%;
    height: 100%;
}

.kt-block-contact-steps--item .steps-item--title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.kt-block-contact-steps--item .steps-item--desc {
    font-size: 20px;
    line-height: 24px;
}

.kt-block-contact-form .card {
    --bs-card-spacer-x: 40px;
    --bs-card-spacer-y: 40px;
}

@media screen and (max-width: 768px) {
    .kt-block-contact .kt-block-contact-top {
        padding: 0 12px;
        margin-bottom: 40px;
    }

    .kt-block-contact .kt-block--title, .kt-block-contact .btn-hotline {
        margin-bottom: 16px;
    }

    .kt-block-contact-form--title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .kt-block-contact-steps--item {
        padding: 16px;
    }

    .kt-block-contact-steps--item .steps-item--icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    .kt-block-contact-steps--item .steps-item--title {
        font-size: 18px;
        line-height: 24px;
    }

    .kt-block-contact-steps--item .steps-item--desc {
        font-size: 16px;
        line-height: 20px;
    }

    .kt-block-contact-form .card {
        --bs-card-spacer-x: 20px;
        --bs-card-spacer-y: 20px;
    }

    @media screen and (max-width: 768px) {
        .kt-block-contact-form .form-check-label, .kt-block-contact-form .form-label, .kt-block-contact-form .form-control, .kt-block-contact-form .form-control::placeholder {
            font-size: .875rem;
        }
    }
}
/**
** END - BLOCK CONTACT
**/

/**
** START - BLOCK FOOTER
**/
.kt-block.kt-footer {
    max-width: 100%;
}

.kt-footer .row{
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    margin-right: 0;
    margin-left: 0;
}

.kt-footer .kt-footer--logo {
    height: 36px;
    width: 104px;
    margin-bottom: 24px;
}

.kt-footer .kt-footer--logo img {
    width: 100%;
    height: 100%;
}

.kt-footer .kt-footer--info {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.kt-footer ul {
    list-style-type: none;
    padding: 0;
}

.kt-footer ul > li {
    margin-bottom: 12px;
}

.kt-footer .kt-footer--list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.kt-footer .kt-footer--list svg {
    width: 20px;
    height: 20px;
}

/**
** END - BLOCK FOOTER
**/

/**
** START - STICKY LINKS
**/
.kt-sticky-links {
    position: fixed;
    top: calc(15% + 120px);
    right: 32px;
    transform: translateY(-50%);
    z-index: 999;
}

.kt-sticky-links .kt-sticky-links--item {
    margin-bottom: 12px;
}

.kt-sticky-links .kt-sticky-links--item img {
    width: 60px;
    height: 60px;
}

.kt-sticky-links .kt-sticky-links--item:hover {
    transform: scale(1.1);
    transition: 350ms;
}

@media screen and (max-width: 576px) {
    .kt-sticky-links {
        right: 16px;
    }
}

@media screen and (max-width: 430px) {
    .kt-sticky-links {
        right: 12px;
    }
}
/**
** END - STICKY LINKS
**/

/**
** START - PAGE SLIDER
**/
.kt-page-slider {
    max-width: 1840px;
    padding: 0;
}

.kt-page-slider .kt-page-slider-item  {
    position: relative;
    border-radius: 20px;
    padding: 128px 128px 28px 128px;
    min-height: 600px;
    background-repeat: no-repeat;
    background-color: var(--bs-gray-500);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.kt-page-slider .swiper-button-prev, .kt-page-slider .swiper-button-next {
    --swiper-navigation-sides-offset: 0;
    --swiper-navigation-color: #8F9295;
    --swiper-navigation-size: 24px;
    padding: 24px 16px;
    transform: translateY(-50%);
}

.kt-page-slider .swiper-button-prev, .kt-page-slider .swiper-rtl .swiper-button-next, .kt-page-slider .swiper-button-next, .kt-page-slider .swiper-rtl .swiper-button-prev {
    background-color: rgba(0, 0, 0, 0.25);
}

.kt-page-slider .kt-page-slider-item .kt-page-slider-item--title {
    font-size: 60px;
    line-height: 76px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.kt-page-slider .kt-page-slider-item .kt-page-slider-item--desc {
    font-size: 28px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 140px;
    text-align: center;
}

.kt-page-slider .kt-page-slider-item .kt-page-slider-item--features {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 24px;
}

.kt-page-slider .kt-page-slider-item .card-slider-item {
    width: 33.33%;
}

.kt-page-slider .kt-page-slider-item .card-slider-item .card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 40px;
}

.kt-page-slider .kt-page-slider-item .card-slider-item .card-slider-item--title {
    font-size: 28px;
    line-height: 32px;
}

.kt-page-slider .kt-page-slider-item .card-slider-item .card-slider-item--icon {
    width: 80px;
    height: 80px;
}

.kt-page-slider .kt-page-slider-item .card-slider-item .card-slider-item--icon img {
    width: auto;
    height: 100%;
}

@media screen and (max-width: 1440px) {
    .kt-page-slider .kt-page-slider-item {
        border-radius: 0;
    }
}

@media screen and (max-width: 768px) {
    .kt-page-slider .kt-page-slider-item  {
        padding: 64px 64px 14px 64px;
        min-height: 400px;
    }

    .kt-page-slider .kt-page-slider-item .kt-page-slider-item--title {
        font-size: 32px;
        line-height: 40px;
    }

    .kt-page-slider .kt-page-slider-item .kt-page-slider-item--desc {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 60px;
    }

    .kt-page-slider .kt-page-slider-item .card-slider-item .card-body {
        gap: 16px;
        padding: 20px;
    }

    .kt-page-slider .kt-page-slider-item .card-slider-item .card-slider-item--title {
        font-size: 18px;
        line-height: 24px;
    }

    .kt-page-slider .kt-page-slider-item .card-slider-item .card-slider-item--icon {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 576px) {
    .kt-page-slider .kt-page-slider-item  {
        padding: 24px;
        min-height: 230px;
    }

    .kt-page-slider .kt-page-slider-item .kt-page-slider-item--title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    .kt-page-slider .kt-page-slider-item .kt-page-slider-item--desc {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 20px;
    }

    .kt-page-slider .kt-page-slider-item .kt-page-slider-item--features {
        gap: 12px;
    }

    .kt-page-slider .kt-page-slider-item .card-slider-item {
        width: 100%;
    }

    .kt-page-slider .kt-page-slider-item .card-slider-item .card-body {
        gap: 8px;
        padding: 8px;
    }

    .kt-page-slider .kt-page-slider-item .card-slider-item .card-slider-item--title {
        font-size: 10px;
        line-height: 16px;
    }

    .kt-page-slider .kt-page-slider-item .card-slider-item .card-slider-item--icon {
        width: 32px;
        height: 32px;
    }
}

@media screen and (max-width: 430px) {
    .kt-page-slider .kt-page-slider-item .kt-page-slider-item--title {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 12px;
    }

    .kt-page-slider .kt-page-slider-item .kt-page-slider-item--desc {
        font-size: 10px;
        line-height: 16px;
    }
}
/**
** END - PAGE SLIDER
**/

/**
** START - Small Business
**/
.kt-block.kt-biz-layout {
    padding: 45px 0;
    max-width: 100%;
}

.kt-biz-layout .kt-biz-layout-wrapper {
    display: flex;
    display: -webkit-flex;
    gap: 40px;
}

.kt-biz-layout .kt-biz-layout-left {
    flex: 0 0 200px;
}

.kt-biz-layout .kt-biz-layout-right {
    flex: 1 1 auto;
}

.kt-biz-layout .kt-biz-layout-menu .kt-biz-layout-menu--title {
    padding: 12px 0;
    font-size: 20px;
    font-weight: 600;
    padding-left: 10px;
    border-top: 1px solid #3a3a3a;
    border-bottom: 1px solid #3a3a3a;
    background: url(../img/icon_arrow_right.gif) no-repeat right center;
}

.kt-biz-layout .kt-biz-layout-menu--items {
    list-style-type: none;
    padding: 0;
}

.kt-biz-layout .kt-biz-layout-menu--items li {
    margin-bottom: 6px;
    padding: 6px 12px;
    border-bottom: 1px solid #C4C4C4
}

.kt-biz-layout .kt-biz-layout-menu--items li a {
    padding-left: 20px;
    font-size: 11px;
    text-decoration: none;
    background: url(../img/icon_arrow_right_square.gif) no-repeat left center;
    color: var(--bs-body-color);
}

.kt-biz-layout .kt-biz-layout-hotline {
    padding: 50px 0;
}

.kt-biz-layout .kt-biz-layout-hotline .kt-biz-layout-hotline--title {
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #C4C4C4;
    margin-bottom: 10px;
    padding: 5px 0;
}

.kt-biz-layout .kt-biz-layout-hotline .kt-biz-layout-hotline--phone {
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
    color: #565656;
    margin-bottom: 5px;
}

.kt-biz-layout .kt-biz-layout-hotline .kt-biz-layout-hotline--desc {
    font-size: 12px;
    color: #565656;
}

.kt-biz-content .kt-biz-content--title {
    font-size: 30px;
    margin-bottom: 12px;
    font-weight: bold;
}

.kt-biz-content .kt-biz-content--subtitle {
    border-bottom: 3px solid #c1c1c1;
    margin-bottom: 15px;
    max-width: 50px;
}

.kt-biz-content .kt-biz-content-container {
    width: 95%;
    margin: 20px auto 30px;
    font-size: 14px;
}

.kt-biz-content .kt-biz-content-container figure {
    margin: 0;
    padding: 0;
}

.kt-biz-content .kt-biz-content-container figure img {
    width: 100%;
    height: auto;
}

.kt-biz-menu-mobile {
    display: none;
    margin: 0 auto;
    position: relative;
    background-color: #DDDDDD;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.kt-biz-menu-mobile ul {
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 90%;
    list-style-type: none;
}

.kt-biz-menu-mobile ul li {
    width: 50%;
}

.kt-biz-menu-mobile ul.split-3 li {
    width: 33.333%;
}

.kt-biz-menu-mobile ul li a {
    padding: 10px 3px;
    color: var(--bs-body-color);
    text-decoration: none;
    line-height: 150%;
    display: block;
}

.kt-biz-menu-mobile a.active {
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    .kt-biz-layout .kt-biz-layout-left {
        display: none;
    }

    .kt-biz-menu-mobile {
        display: block;
    }
}
/**
** END - Small Business
**/


/**
** START - Corporate Phone
**/
.kt-cp-hero {
    max-width: 100%;
    padding: 60px 0 120px;
}

.kt-cp-hero > .container {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

.kt-cp-hero .kt-cp-hero-wrapper {
    position: relative;
    height: 460px;
    border-radius: 32px;
    padding: 120px 80px 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    color: #ffffff;
}

.kt-cp-hero .kt-cp-hero-wrapper > img {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
}

.kt-cp-hero .kt-cp-hero-wrapper > h3 {
    font-size: 40px;
    line-height: 58px;
    font-weight: 700;
    letter-spacing: -1px;
}

.kt-cp-hero .kt-cp-hero-wrapper > p {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.5px;
    font-weight: 500;
    font-weight: 400;
    margin-top: 12px
}

.kt-cp-hero .prod_banner-list {
    position: absolute;
    bottom: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.kt-cp-hero .prod_banner-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 360px;
    padding: 20px 40px 20px 20px;
    margin-right: 24px;
    border-radius: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #ffffff;
}

.kt-cp-hero .prod_banner-item-txt {
    width: 100%;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.5px;
    color: #000000;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
}

.kt-cp-hero .prod_banner-item-icon {
    min-width: 72px;
}

.kt-cp-hero .prod_banner-item-icon img {
    max-width: 100%;
}

.kt-cp-layout .nav-corporate-phone {
    --bs-nav-link-color: var(--bs-body-color);
    --bs-nav-link-hover-color: var(--bs-body-color);
    --bs-nav-link-font-size: 30px;
    --bs-nav-underline-gap: 50px;
    border-bottom: 1px solid #e4e4e4;
    background-color: var(--bs-body-bg);
    top: 94px;
    z-index: 998;
}

.kt-cp-layout .nav-corporate-phone-content {
    margin-top: 60px;
}

.kt-cp-layout .nav-corporate-phone .nav-link.active {
    --bs-nav-underline-link-active-color: var(--bs-primary);
}

.kt-cp-layout .kt-cp-section {
    padding: 60px 0;
}

.kt-cp-layout .kt-cp-section .kt-cp-section--title {
    font-size: 30px;
    line-height: 42px;
    font-weight: bold;
}

.kt-cp-layout .kt-cp-section .kt-cp-section--subtitle {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #919191;
    display: block;
    padding-top: 4px;
}

.kt-cp-layout .kt-cp-section .kt-cp-section-content--title {
    font-size: 40px;
    line-height: 58px;
    font-weight: 700;
    margin-bottom: 24px;
}

.kt-cp-layout .kt-cp-section .kt-cp-section-content--desc {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.kt-cp-section .nav-tab-pricing {
    --bs-nav-link-color: var(--bs-body-color);
    --bs-nav-link-hover-color: var(--bs-body-color);
    --bs-nav-tabs-link-hover-border-color: transparent;
    --bs-nav-link-font-size: 30px;
    --bs-nav-tabs-border-radius: 32px;
    --bs-nav-tabs-border-color: transparent;
}

.kt-cp-section .tab-pricing-item {
    margin-top: 80px;
}

.kt-cp-section .nav-tab-pricing .nav-link {
    min-height: 120px;
}

.kt-cp-section .nav-tab-pricing .nav-link.active {
    --bs-nav-tabs-link-active-bg: #f2f2f2;
    --bs-nav-tabs-link-active-border-color: transparent;
}

.kt-cp-section .tab-content-pricing {
    background-color: #f2f2f2;
    padding: 10px 60px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}

.kt-cp-section .price-tab-item .price-tab-item--single {
    padding-bottom: 40px;
    border-bottom: 1px solid #c1c1c1;
    margin-bottom: 40px;
}

.kt-cp-section .price-tab-item:last-child .price-tab-item--single {
    padding-bottom: 0;
    border: none;
}

.kt-cp-section .price-tab-item .price-tab-item--single_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 120px;
    border-radius: 16px;
    background: #ffffff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: -0.45px;
    color: #797979;
    color: #000000;
}

.kt-cp-section .price-tab-item .price-tab-item--single_content .number {
    font-size: 48px;
    line-height: 68px;
    font-weight: 700;
    letter-spacing: -1.2px;
    margin-right: 4px;
}

.kt-cp-section .price-tab-item .price-tab-item--label {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: -0.45px;
    color: #797979;
    color: #000000;
    margin-bottom: 14px;
}

.kt-cp-section .price-tab-item {
    padding: 40px 0;
    border-bottom: 1px solid #c1c1c1;
}

.kt-cp-section .price-tab-item:last-child {
    border: none;
}

.kt-cp-section .price-tab-item .price-tab-item--value {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: -0.45px;
    color: #797979;
    color: #000000;
}

.kt-cp-section .price-tab-item .price-tab-item--value .number {
    font-size: 48px;
    line-height: 68px;
    font-weight: 700;
    letter-spacing: -1.2px;
    margin-right: 4px;
}

.kt-cp-section .price-tag-caption {
    margin-top: 30px;
    font-size: 18px;
    line-height: 24px;
    color: var(--bs-secondary);
}

.kt-cp-section .price-tag-caption li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 12px;
}

.kt-cp-section .price-tag-caption li a {
    position: relative;
    margin-left: 6px;
    text-decoration: underline;
    font-weight: bold;
    color: var(--bs-secondary);
}

.kt-cp-section .price-tag-caption li a::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    width: 14px;
    height: 14px;
    background: url(../img/svg/ic-arrow-darkgray-next.svg) no-repeat;
    background-size: cover;
}

.kt-cp-section .price-box-wrapper {
    overflow: hidden;
    padding: 40px;
    border-radius: 32px;
    background: #f2f2f2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}

.kt-cp-section .price-box-wrapper .price-box-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.6px;
    font-weight: bold;
    font-weight: 500;
    margin-bottom: 4px;
}

.kt-cp-section .price-box-wrapper .price-box-txt {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: -0.45px;
    color: #797979;
    color: #000000;
    margin: 0;
}

.kt-cp-section .price-box-wrapper .price-box-txt .num {
    font-size: 48px;
    line-height: 68px;
    font-weight: 700;
    letter-spacing: -1.2px;
    margin-right: 4px;
}

.kt-cp-layout .hits_cont-recom .recom_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -24px;
}

.kt-cp-layout .hits_cont-recom .recom_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 312px;
    padding: 50px 35px;
    margin-right: 24px;
    margin-top: 24px;
    border-radius: 16px;
    background: #f2f2f2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.kt-cp-layout .hits_cont-recom .recom_img {
    margin-bottom: 30px;
}

.kt-cp-layout .hits_cont-recom .recom_desc {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.5px;
    font-weight: 500;
    font-weight: 400;
    text-align: center;
}

.kt-cp-layout .hits_horizon-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.kt-cp-layout .title_s1 {
    font-size: 30px;
    line-height: 42px;
    letter-spacing: -0.75px;
    font-weight: bold;
}

.kt-cp-layout .hits_cont-wrap .swipe_btn-wrap {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 62px;
}

.kt-cp-layout .swipe-btn {
    z-index: 10;
    text-indent: -100000px;
    outline: none;
    border: none;
}

.kt-cp-layout .swipe-btn + .swipe-btn {
    margin-left: 8px;
}

.kt-cp-layout .swipe-btn.other_prev-btn {
    background: url(../img/svg/icon-bus-arrow-circle-left-40-on.svg) 0 0/100% no-repeat;
    width: 40px;
    height: 40px;
}

.kt-cp-layout .swipe-btn.other_next-btn {
    background: url(../img/svg/icon-bus-arrow-circle-right-40-on.svg) 0 0/100% no-repeat;
    width: 40px;
    height: 40px;
}

.kt-cp-layout .swipe-btn.other_prev-btn.swiper-button-disabled {
    background: url(../img/svg/icon-bus-arrow-circle-left-40-off.svg) 0 0/100% no-repeat;
}

.kt-cp-layout .swipe-btn.other_next-btn.swiper-button-disabled {
    background: url(../img/svg/icon-bus-arrow-circle-right-40-off.svg) 0 0/100% no-repeat;
}

.kt-cp-layout .hits_cont-detail .detail_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 458px;
    height: auto;
    padding: 50px 40px;
    border-radius: 16px;
    background: #f2f2f2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.kt-cp-layout .hits_cont-detail .detail_tit {
    font-size: 30px;
    line-height: 42px;
    letter-spacing: -0.75px;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 16px;
}

.kt-cp-layout .hits_cont-detail .detail_txt-list {
    margin-bottom: 30px;
    list-style-type: none;
    padding: 0
}

.kt-cp-layout .hits_cont-detail .detail_txt {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.5px;
    font-weight: 500;
    font-weight: 400;
}

.kt-cp-layout .hits_cont-detail .detail_txt-list.circle .detail_txt {
    font-size: 18px;
    line-height: 24px;
    padding-left: 12px;
    position: relative;
    margin-bottom: 8px;
}

.kt-cp-layout .hits_cont-detail .detail_txt-list.circle .detail_txt::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 12px;
    background-color: #000000;
}

.kt-cp-layout .hits_cont-detail .detail_icon {
    display: block;
    text-align: right;
}

.kt-cp-layout .more_service-list {
    position: relative;
    height: 780px;
    list-style-type: none;
}

.kt-cp-layout .more_service-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 32px;
}

.kt-cp-layout .more_service-link {
    display: block;
    width: 100%;
    height: 680px;
    padding: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
}

.kt-cp-layout .more_service-item .service-tit {
    font-size: 48px;
    line-height: 68px;
    font-weight: 700;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
    color: #ffffff;
}

.kt-cp-layout .more_service-item .service-txt {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.5px;
    font-weight: 500;
    font-weight: 400;
    color: #ffffff;
}

.kt-cp-layout .more_service-item .service-idx {
    position: absolute;
    left: 60px;
    bottom: 60px;
    font-size: 40px;
    line-height: 58px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    color: #ffffff;
}

.kt-cp-layout .more_service-item .service-idx::before {
    display: block;
    content: "";
    margin-bottom: 16px;
    width: 45px;
    height: 2px;
    background: #ffffff;
}

.kt-cp-layout .more_service-item.biz-internet {
    background: url("../img/bg/bg_prod_service_biz-internet.png") no-repeat;
    background-size: cover;
}

.kt-cp-layout .more_service-item.nation-num {
    background: url("../img/bg/bg_prod_service_nation-num.png") no-repeat;
    background-size: cover;
}

.kt-cp-layout .more_service-item.web-fax {
    background: url("../img/bg/bg_prod_service_web-fax.png") no-repeat;
    background-size: cover;
}

.kt-cp-layout .more_service-item.inter-phone-line {
    background: url("../img/bg/bg_prod_service_inter-phone-line.png") no-repeat;
    background-size: cover;
}

.kt-cp-layout .more_info-list-wrap + .more_info-list-wrap {
    margin-top: 60px;
}

.kt-cp-layout .more_info-list-tit {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.6px;
    font-weight: bold;
    margin-bottom: 12px;
}

.kt-cp-layout ul.more_info-list  {
    padding-inline-start: 1rem;
}

.kt-cp-layout ol.more_info-list {
    padding-inline-start: 0;
}

.kt-cp-layout .more_info-list li {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.45px;
    font-weight: normal;
    color: #797979;
    line-height: 24px;
    margin-bottom: 10px;
}

.kt-cp-layout .more_info-list.order li {
    margin-left: 18px;
    list-style: decimal;
}

.kt-cp-layout .more_info-list li a {
    color: #797979;
}

.kt-cp-layout .more_info-list-tit + .more_info-list-phone {
    padding-top: 8px;
}

.kt-cp-layout .more_info-list-phone-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 24px;
}

.kt-cp-layout .more_info-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 480px;
    padding: 30px 30px 30px 40px;
    border: 1px solid #e4e4e4;
    border-radius: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.kt-cp-layout .more_info-phone .phone_name {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.5px;
    font-weight: 500;
    font-weight: bold;
    line-height: 32px;
    margin-bottom: 8px;
}

.kt-cp-layout .more_info-phone .phone_desc {
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    letter-spacing: -0.4px;
    color: #797979;
}

.kt-cp-layout .more_info-phone .phone_img {
    display: block;
    width: 140px;
    height: 140px;
}

.kt-cp-layout .more_info-phone .phone_img.full {
    width: 260px;
    height: 260px;
}

.kt-cp-layout .more_info-phone .phone_img img {
    max-width: 100%;
}

.kt-cp-layout .server_option .option_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kt-cp-layout .server_option .option_item {
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    letter-spacing: -0.4px;
    color: #797979;
    padding-left: 12px;
    position: relative;
    margin-bottom: 8px;
}

.kt-cp-layout .server_option .option_item::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
    background-color: #797979;
}

.kt-cp-layout .more_info-banner {
    position: relative;
    height: 320px;
    padding: 60px;
    border-radius: 32px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.kt-cp-layout .more_info-list-wrap + .more_info-banner {
    margin-top: 120px;
}

.kt-cp-layout .more_info-banner .banner-img {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
}

.kt-cp-layout .more_info-banner .banner-tit {
    font-size: 48px;
    line-height: 68px;
    font-weight: 700;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
    color: #ffffff;
}

.kt-cp-layout .more_info-banner .banner-txt {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.5px;
    font-weight: 500;
    font-weight: normal;
    color: #ffffff;
}

.kt-cp-layout .more_info-banner .banner-link-wrap {
    position: absolute;
    bottom: 60px;
    left: 60px;
}

.kt-cp-layout .more_info-banner .banner-link {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.5px;
    font-weight: normal;
    color: #ffffff;
    text-decoration: none;
}

.kt-cp-layout .more_info-banner .banner-link:after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../img/svg/icon-bus-product-arrow-right.svg") 0 0/100% no-repeat;
}

@media screen and (max-width: 768px) {
    .kt-cp-layout .container, .kt-cp-hero .container {
        --bs-gutter-x: 1.5rem;
    }

    .kt-cp-hero {
        max-width: 100%;
        padding: 24px 0;
    }

    .kt-cp-layout .nav-corporate-phone-content {
        margin-top: 24px;
    }

    .kt-cp-layout .kt-cp-section {
        padding: 24px 0;
    }

    .kt-cp-layout .nav-corporate-phone {
        --bs-nav-underline-gap: 12px;
        --bs-nav-link-font-size: 18px;
    }

    .kt-cp-hero .kt-cp-hero-wrapper {
        height: 300px;
        padding: 40px 20px 18px;
    }

    .kt-cp-hero .prod_banner-list {
        width: 100%;
        bottom: 20px;
    }

    .kt-cp-hero .prod_banner-list-item {
        width: 33.33%;
        padding: 12px 20px 12px 12px;
    }

    .kt-cp-hero .prod_banner-item-txt {
        font-size: 14px;
        line-height: 20px;
    }

    .kt-cp-hero .prod_banner-item-icon {
        min-width: 36px;
    }

    .kt-cp-hero .kt-cp-hero-wrapper > img {
        object-fit: cover;
        height: 100%;
    }

    .kt-cp-layout .kt-cp-section .row {
        --bs-gutter-y: 1.5rem;
    }

    .kt-cp-layout .hits_section-full {
        overflow: hidden;
    }

    .kt-cp-layout .more_info-list-phone-row {
        flex-wrap: wrap;
        gap: 24px;
    }

    .kt-cp-layout .more_info-phone {
        width: 100%;
    }

    .kt-cp-section .nav-tab-pricing {
        --bs-nav-link-font-size: 18px
    }

    .kt-cp-layout .nav-corporate-phone {
        justify-content: center;
    }

    .kt-cp-section .tab-content-pricing {
        padding: 10px
    }

    .kt-cp-layout .more_info-list-wrap + .more_info-banner {
        margin-top: 24px;
    }

    .kt-cp-layout .more_info-banner {
        padding: 24px;
    }

    .kt-cp-layout .more_info-banner .banner-img {
        height: 100%;
        object-fit: cover;
        -o-object-fit: cover;
        border-radius: 32px;
    }

    .kt-cp-layout .more_info-banner .banner-tit {
        font-size: 32px;
        line-height: 40px;
    }

    .kt-cp-layout .more_info-banner .banner-link-wrap {
        bottom: 24px;
        left: 24px;
    }
}

@media screen and (max-width: 430px) {
    .kt-cp-hero .prod_banner-list {
        bottom: 0;
    }

    .kt-cp-hero .kt-cp-hero-wrapper {
        height: 250px;
    }

    .kt-cp-hero .prod_banner-item-txt {
        font-size: 10px;
        line-height: 16px;
    }

    .kt-cp-hero .prod_banner-item-icon {
        min-width: 24px;
    }

    .kt-cp-hero .kt-cp-hero-wrapper > h3 {
        font-size: 28px;
        line-height: 34px;
    }

    .kt-cp-hero .kt-cp-hero-wrapper > p {
        font-size: 18px;
        line-height: 24px;
    }

    .kt-cp-hero .prod_banner-list-item {
        padding: 6px 12px 6px 6px;
    }
}
/**
** END - Corporate Phone
**/


/**
** START - CONSULTATION RESERVATION
**/
.kt-biz-layout tbody, td, tfoot, th, thead, tr {
    border-color: transparent;
    border-style: solid;
    border-width: 0;
}

.kt-biz-layout .formmail_title_bgcolor {
    font-size: 16px;
    font-weight: 500;
    background-color: #F7F7F7;
}

.kt-biz-layout .formmail_cell_bgcolor {
    color: #333333;
    padding-left: 10px;
}

.kt-biz-layout .formmail_border {
    color: #333333;
    border: 1px solid #D4D4D4;
}

.kt-biz-layout .table_02 textarea {
    width: 100%;
    height: 300px;
    color: #4C4C4C;
}

.kt-biz-layout .table_02 {
    border-top: 2px solid #333;
    border-bottom: 1px solid #CFCFCF;
    border-collapse: collapse;
    margin-bottom: 30px;
    margin-top: 1px;
    width: 100%;
}

.kt-biz-layout .table_02 tr {
    border-bottom: 1px solid #CFCFCF;
    height: 45px;
}

.kt-biz-layout .table_02 td {
    color: #4C4C4C;
    line-height: 130%;
    padding: 4px;
    min-width: 100px;
}

.kt-biz-layout input.btn_small2, .kt-biz-layout a.btn_small2, .kt-biz-layout .btn_small2 {
    display: inline-block;
    width: 100px;
    margin-right: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    background: #333;
    border: 1px solid #ECECEC;
    cursor: pointer;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

.kt-biz-layout input.btn_small2:hover, .kt-biz-layout a.btn_small2:hover,.kt-biz-layout .btn_small2:hover{
    color:#FFFFFF;
    background:#D91C22;
    border:1px solid #ECECEC;
}

.kt-biz-layout input.btn_small3, .kt-biz-layout a.btn_small3, .kt-biz-layout .btn_small3 {
    display: inline-block;
    width: 100px;
    margin-right: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    background: #999;
    border: 1px solid #ECECEC;
    cursor: pointer;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

.kt-biz-layout input.btn_small3:hover,  .kt-biz-layout a.btn_small3:hover, .kt-biz-layout .btn_small3:hover{
    color:#FFFFFF;
    background:#D91C22;
    border:1px solid #ECECEC;
}
/**
** END - CONSULATION RESERVATION
**/
