@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

html.lock {
    overflow: hidden
}

body {
    margin: 0;
    font-family: "Work Sans", sans-serif;
    overflow-x: hidden
}

body.lock {
    overflow: hidden
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0
}

p {
    padding: 0;
    margin: 0;
    cursor: default
}

a {
    text-decoration: none;
    cursor: pointer
}

h1,
h2,
h3 {
    margin: 0;
    font-family: inherit
}

img {
    display: block
}

.container {
    max-width: 1452px;
    width: 100%;
    padding: 0px 70px;
    margin: 0 auto
}

@media screen and (max-width:1024px) {
    .container {
        padding: 0px 32px
    }
}

@media screen and (max-width:768px) {
    .container {
        padding: 0px 16px
    }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.btn {
    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;
    gap: 8px;
    padding: 12px 16px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    border-radius: 4px;
    border: 1px solid var(--accent-color);
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.btn:hover {
    background: #1d4ed8;
    color: #fff
}

.btn:active {
    background-color: #1e40af
}

.btn.white {
    background-color: #fff;
    color: var(--accent-color)
}

.btn.white:hover {
    opacity: 0.8
}

.btn.transparent {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color)
}

.btn.transparent:hover {
    background-color: var(--accent-color);
    color: #fff
}

.weAre .btn:hover path {
    stroke: #fff;
}

.weAre .btn:hover path {
    fill: transparent !important;
}

.btn.transparent:hover path {
    fill: #fff
}

.btn.transparent:active {
    background-color: transparent;
    color: var(--accent-color)
}

:root {
    --accent-color: #2563eb
}

.slider {
    position: relative
}

.slick-list {
    overflow: hidden
}

.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.slick-dots li.slick-active button {
    background-color: var(--accent-color)
}

.text_20 {
    color: var(--White, #fff);
    font-family: "Work Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%
}

@media screen and (max-width:768px) {
    .text_20 {
        font-size: 16px
    }
}

.text_16 {
    color: #000;
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.section-title {
    font-family: "Work Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%
}

.section-title span {
    color: var(--accent-color);
    font-weight: 300
}

@media screen and (max-width:1024px) {
    .section-title {
        font-size: 32px
    }
}

.header {
    border-radius: 0px 0px 12px 12px;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000
}

.header .header-container {
    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;
    padding: 0 32px;
    height: 69px
}

@media screen and (max-width:1024px) {
    .header .header-container {
        padding: 0 24px
    }
}

@media screen and (max-width:768px) {
    .header .header-container {
        padding: 0 16px;
        height: 57px
    }
}

.header .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
    height: 100%
}

@media screen and (max-width:768px) {
    .header .header-logo {
        width: 68px
    }
    .header .header-logo img {
        width: 100%
    }
}

.header .header-nav {
    height: 100%
}

@media screen and (max-width:1024px) {
    .header .header-nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        height: calc(100vh - 60px);
        padding: 40px 24px;
        -webkit-transition: all 0.2s linear;
        transition: all 0.2s linear;
        display: none;
        z-index: 100
    }
}

@media screen and (max-width:1024px) and (max-width:768px) {
    .header .header-nav {
        height: calc(100vh - 47px);
        overflow: auto;
        top: 47px
    }
}

@media screen and (max-width:1024px) {
    .header .header-nav.active {
        display: block
    }
}

.header .header-nav .mobile-bottom {
    display: none
}

@media screen and (max-width:1024px) {
    .header .header-nav .mobile-bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 50px;
        gap: 16px
    }
}

.header .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
    height: 100%
}

@media screen and (max-width:1024px) {
    .header .nav-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 0
    }
}

.header .nav-item {
    height: 100%;
    position: relative
}

.header .nav-item:hover .nav-link {
    color: var(--accent-color)
}

@media screen and (min-width:1023px) {
    .header .nav-item:hover .sub-menu {
        display: block
    }
    .header .nav-item:hover svg {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg)
    }
}

@media screen and (max-width:1024px) {
    .header .nav-item {
        padding: 24px 0;
        width: 100%;
        color: #111827;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%
    }
    .header .nav-item:first-child {
        padding-top: 0
    }
    .header .nav-item:last-child {
        padding-bottom: 0
    }
    .header .nav-item:not(:last-child) {
        border-bottom: 1px solid #e5e7eb
    }
}

.header .nav-item.current .nav-link {
    color: var(--accent-color)
}

.header .nav-item.current .nav-link:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 1px;
    background-color: var(--accent-color)
}

.header .nav-item svg.rotate {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.header .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    height: 100%;
    color: #111827;
    font-size: 14px;
    line-height: 130%;
    font-weight: 400;
    cursor: pointer;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.header .nav-link:hover:hover {
    color: var(--accent-color)
}

@media screen and (max-width:1024px) {
    .header .nav-link {
        font-size: 20px
    }
}

.header .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 0px 8px;
    background: var(--accent-color);
    padding: 12px;
    display: none
}

@media screen and (max-width:1024px) {
    .header .sub-menu {
        position: static;
        background-color: #fff;
        padding: 0;
        margin-top: 8px
    }
}

.header .sub-link {
    white-space: nowrap;
    color: #fff;
    font-family: "Work Sans";
    display: block;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 0px 4px;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.header .sub-link:hover {
    background-color: #fff;
    color: var(--accent-color)
}

@media screen and (max-width:1024px) {
    .header .sub-link {
        color: #111827;
        font-size: 16px;
        line-height: 130%;
        font-weight: 400;
        padding: 8px 0
    }
}

.header .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px
}

.header .right .btn {
    height: 41px;
    position: relative;
    z-index: 101
}

@media screen and (max-width:1024px) {
    .header .right .transparent {
        display: none
    }
}

.header .burger-menu {
    padding: 0 16px;
    display: none
}

@media screen and (max-width:1024px) {
    .header .burger-menu {
        display: block
    }
}

@media screen and (max-width:400px) {
    .header .burger-menu {
        padding: 0 8px
    }
}

.header .burger-menu span {
    width: 20px;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 1px;
    position: relative;
    display: block;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.header .burger-menu span:after,
.header .burger-menu span:before {
    content: "";
    width: 20px;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    background-color: var(--accent-color)
}

.header .burger-menu span:before {
    left: 0;
    top: -6px;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.header .burger-menu span:after {
    left: 0;
    bottom: -6px;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.header .burger-menu.active span {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.header .burger-menu.active span:before {
    opacity: 0
}

.header .burger-menu.active span:after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.hero-banner {
    position: relative;
    padding-top: 30px;
    padding-bottom: 10px
}

@media screen and (max-width:1024px) {
    .hero-banner {
        padding-top: 47px
    }
}

.hero-banner .back {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1
}

.hero-banner .hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 130%
}

.hero-banner .hero-title span {
    color: var(--accent-color)
}

@media screen and (max-width:1024px) {
    .hero-banner .hero-title {
        font-size: 40px
    }
}

@media screen and (max-width:768px) {
    .hero-banner .hero-title {
        font-size: 32px
    }
}

.hero {
    height: 600px;
    position: relative
}

@media screen and (max-width:1024px) {
    .hero {
        height: 320px
    }
}

.hero .hero-slider {
    border-radius: 12px 12px 0px 0px;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%
}

.hero .hero-slider .slick-list {
    height: 100%;
    background-color: rgb(0, 0, 0)
}

.hero .hero-slider .slick-track {
    height: 100%;
    -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1)
}

.hero .hero-slider .hero-slide img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1)
}

.hero .hero-slider .hero-slide.slick-active img {
    -webkit-transform: scale(1);
    transform: scale(1);
    animation: cssAnimation 5s 1 ease-in-out reverse
}

.hero .wrapper {
    border-radius: 12px 12px 0px 0px;
    background: linear-gradient(182deg, rgba(25, 25, 34, 0.65) 1.85%, rgba(25, 25, 34, 0) 37.87%)
}

.hero .wrapper .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.hero .wrapper .container .text_20 {
    max-width: 803px;
    margin-top: 16px
}

@-webkit-keyframes cssAnimation {
    0% {
        -webkit-transform: scale(1) translate(0px)
    }
    to {
        -webkit-transform: scale(1.08) translate(0px)
    }
}

@keyframes cssAnimation {
    0% {
        -webkit-transform: scale(1) translate(0px)
    }
    to {
        -webkit-transform: scale(1.08) translate(0px)
    }
}

.advantages {
    background-color: var(--accent-color);
    padding: 40px 0
}

@media screen and (max-width:768px) {
    .advantages {
        padding: 24px 0
    }
}

.advantages .advantages-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 980px;
    margin: 0 auto
}

@media screen and (max-width:1024px) {
    .advantages .advantages-list {
        gap: 24px
    }
}

@media screen and (max-width:768px) {
    .advantages .advantages-list {
        gap: 16px
    }
}

.advantages .advantages-item {
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    border-top: 3px solid #e5e7eb;
    width: calc((100% - 144px) / 4);
    padding: 24px;
    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;
    gap: 12px
}

@media screen and (max-width:1024px) {
    .advantages .advantages-item {
        width: calc((100% - 72px) / 4)
    }
}

@media screen and (max-width:768px) {
    .advantages .advantages-item {
        width: calc((100% - 16px) / 2)
    }
}

.advantages .icon {
    max-width: 80px
}

.advantages .text_20 {
    color: #000;
    text-align: center;
}

.services {
    padding: 70px 0;
    position: relative
}

@media screen and (max-width:1024px) {
    .services {
        padding: 56px 0
    }
}

.services .gear {
    position: absolute;
    right: 0;
    top: -50px;
    z-index: -1;
    max-width: 50%
}

.services .cube {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    max-width: 60%
}

@media screen and (max-width:768px) {
    .services .cube {
        bottom: 130px;
        max-width: 70%
    }
}

.services .section-title {
    margin-bottom: 16px
}

.services .services-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px
}

.services .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px
}

.services .row:first-child .services-item:first-child {
    width: calc(60% - 24px)
}

.services .row:first-child .services-item:last-child {
    width: calc(40% - 24px)
}

.services .row:nth-child(2) .services-item:first-child {
    width: calc(40% - 24px)
}

.services .row:nth-child(2) .services-item:last-child {
    width: calc(60% - 24px)
}

.services .row:last-child .services-item:first-child {
    width: 100%
}

@media screen and (max-width:768px) {
    .services .services-item {
        width: 100%!important
    }
}

.services .services-item:hover .img-card {
    border: 1px solid var(--accent-color)
}

.services .services-item:hover .img-card img {
    transform: scale(1.03);
}

.services .services-item:hover .title {
    color: var(--accent-color)
}

.services .img-card {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--Neutral-Border, #e5e7eb);
    height: 427px;
    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
}

.services .img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s linear;
}

@media screen and (max-width:1024px) {
    .services .img-card {
        height: 225px
    }
}

.services .title {
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-top: 16px
}

@media screen and (max-width:1024px) {
    .services .title {
        font-size: 24px
    }
}

@media screen and (max-width:768px) {
    .services .title {
        font-size: 20px
    }
}

.callToAction .card {
    border-radius: 0px 16px;
    background: var(--accent-color);
    position: relative;
    padding: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 48px
}

@media screen and (max-width:1024px) {
    .callToAction .card {
        padding: 32px
    }
}

@media screen and (max-width:768px) {
    .callToAction .card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 32px;
        padding: 24px
    }
}

.callToAction.gakuto .section-title {
    margin-bottom: 24px
}

.callToAction.gakuto .back {
    height: 100%!important;
    max-width: auto!important
}

.callToAction.gakuto .card {
    gap: 16px
}

.callToAction.gakuto .right {
    max-width: 274px
}

@media screen and (max-width:768px) {
    .callToAction.gakuto .right {
        margin: 0 auto
    }
}

.callToAction.gakuto .right .btn {
    white-space: nowrap;
    margin-top: 12px
}

.callToAction .back {
    position: absolute;
    max-height: 100%;
    max-width: 40%;
    top: 0;
    left: 0;
    z-index: 0
}

@media screen and (max-width:768px) {
    .callToAction .back {
        max-width: 60%
    }
}

.callToAction .left {
    position: relative;
    z-index: 1;
    width: 75%
}

@media screen and (max-width:768px) {
    .callToAction .left {
        width: 100%
    }
}

.callToAction .section-title {
    color: #fff;
    margin-bottom: 12px
}

.callToAction .section-title span {
    color: #fff
}

.callToAction .text_16 {
    color: #fff
}

.callToAction .right {
    position: relative;
    z-index: 1;
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px
}

@media screen and (max-width:768px) {
    .callToAction .right {
        width: 100%
    }
}

.callToAction .btn {
    border: 1px solid #fff
}

.weAre {
    padding: 64px 0
}

@media screen and (max-width:1024px) {
    .weAre {
        padding: 50px 0
    }
}

.weAre.story {
    padding-top: 0
}

.weAre .banner {
    height: 329px;
    border-radius: 4px;
    overflow: hidden
}

@media screen and (max-width:1024px) {
    .weAre .banner {
        height: 280px
    }
}

.weAre .banner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.weAre .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 40px
}

@media screen and (max-width:1024px) {
    .weAre .info {
        -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
    }
}

@media screen and (max-width:768px) {
    .weAre .info {
        gap: 24px
    }
}

.weAre .section-title {
    margin-bottom: 12px;
    margin-top: 24px
}

.weAre .btn {
    white-space: nowrap;
    max-width: 147px;
    width: 100%
}

@media screen and (max-width:768px) {
    .weAre .btn {
        max-width: 100%
    }
}

.ourPartner {
    border-radius: 12px;
    border-top: 1px solid var(--Neutral-Border, #e5e7eb);
    background: #f9fafb;
    padding: 64px 0
}

@media screen and (max-width:1024px) {
    .ourPartner {
        padding: 32px 0
    }
}

@media screen and (max-width:768px) {
    .ourPartner {
        padding: 24px 0;
        margin-bottom: -5px
    }
}

.ourPartner .section-title {
    margin-bottom: 32px
}

.ourPartner .slide {
    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
}

.ourPartner .slide img {
    width: 90%;
    max-width: 170px;
}

.contact-us .banner {
    height: 500px;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: -200px;
    border-radius: 4px
}

@media screen and (max-width:1024px) {
    .contact-us .banner {
        height: 260px;
        margin-bottom: -50px
    }
}

.contact-us .wrapper {
    background-color: var(--accent-color);
    padding: 64px 0;
    border-radius: 8px
}

@media screen and (max-width:1024px) {
    .contact-us .wrapper {
        padding: 40px 0
    }
}

@media screen and (max-width:768px) {
    .contact-us .wrapper {
        padding: 24px 0
    }
}

.contact-us .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 48px
}

@media screen and (max-width:1024px) {
    .contact-us .container {
        gap: 24px
    }
}

@media screen and (max-width:768px) {
    .contact-us .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.contact-us .left {
    width: 60%
}

@media screen and (max-width:1024px) {
    .contact-us .left {
        width: 45%
    }
}

@media screen and (max-width:768px) {
    .contact-us .left {
        width: 100%
    }
}

.contact-us .section-title {
    color: #fff;
    margin-bottom: 12px
}

.contact-us .section-title span {
    color: #fff
}

.contact-us .text_14 {
    color: #fff;
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 32px
}

.contact-us .sicials-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #3b82f6;
    margin-bottom: 16px
}

@media screen and (max-width:1024px) {
    .contact-us .social-link img {
        width: 24px
    }
}

.contact-us .contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px
}

.contact-us .contact-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.contact-us .contact-link:hover {
    opacity: 0.8
}

@media screen and (max-width:1024px) {
    .contact-us .contact-link {
        font-size: 16px
    }
}

.contact-us .right {
    width: 40%
}

@media screen and (max-width:1024px) {
    .contact-us .right {
        width: 55%
    }
}

@media screen and (max-width:768px) {
    .contact-us .right {
        width: 100%
    }
}

.contact-us .contactForm {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.contact-us .contactForm input {
    width: 100%;
    height: 48px;
    background-color: var(--accent-color);
    border-radius: 4px;
    border: 1px solid #93c5fd;
    padding-left: 36px;
    padding-right: 8px;
    color: #fff;
    font-size: 16px
}

.contact-us .contactForm input:focus {
    outline: none
}

.contact-us .contactForm input::-webkit-input-placeholder {
    color: #93c5fd;
    font-size: 16px;
    font-weight: 300;
    line-height: 130%
}

.contact-us .contactForm input::-moz-placeholder {
    color: #93c5fd;
    font-size: 16px;
    font-weight: 300;
    line-height: 130%
}

.contact-us .contactForm input:-ms-input-placeholder {
    color: #93c5fd;
    font-size: 16px;
    font-weight: 300;
    line-height: 130%
}

.contact-us .contactForm input::-ms-input-placeholder {
    color: #93c5fd;
    font-size: 16px;
    font-weight: 300;
    line-height: 130%
}

.contact-us .contactForm input::placeholder {
    color: #93c5fd;
    font-size: 16px;
    font-weight: 300;
    line-height: 130%
}

.contact-us .contactForm input.just-validate-error-field {
    border: 1px solid red
}

.contact-us .contactForm input.just-validate-error-field:focus {
    -webkit-box-shadow: 0px 0px 6px 0px rgba(255, 0, 0, 0.753);
    box-shadow: 0px 0px 6px 0px rgba(255, 0, 0, 0.753)
}

.contact-us .contactForm input.just-validate-success-field {
    border: 1px solid rgb(0, 255, 0)
}

.contact-us .contactForm .just-validate-error-label {
    color: #ff5000!important;
    margin-top: 4px
}

.contact-us .input-wrapper {
    position: relative
}

.contact-us .input-wrapper svg {
    position: absolute;
    left: 12px;
    top: 15px
}

.contact-us .btn {
    background-color: #fff;
    color: var(--accent-color);
    cursor: pointer;
}

.contact-us .btn:hover {
    opacity: 0.7;
}

.page-hero {
    padding: 32px 0;
    position: relative
}

@media screen and (max-width:1024px) {
    .page-hero {
        padding: 24px 0
    }
}

.page-hero.blogPage {
    padding-bottom: 0
}

.page-hero.blogPage .wrapper {
    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
}

.page-hero .card {
    height: 246px;
    background-position: center;
    background-size: cover;
    border-radius: 0px 16px;
    overflow: hidden
}

@media screen and (max-width:1024px) {
    .page-hero .card {
        height: 147px
    }
}

.page-hero .wrapper {
    background: linear-gradient(182deg, rgba(25, 25, 34, 0.65) 1.85%, rgba(25, 25, 34, 0) 37.87%);
    padding: 32px;
    height: 100%
}

@media screen and (max-width:1024px) {
    .page-hero .wrapper {
        padding: 16px
    }
}

.page-hero .hero-title {
    color: var(--White, #fff);
    font-family: "Work Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%
}

@media screen and (max-width:1024px) {
    .page-hero .hero-title {
        font-size: 28px
    }
}

@media screen and (max-width:1024px) {
    .page-hero .hero-title {
        font-size: 20px
    }
}

.page-hero .info .time {
    color: #e5e7eb;
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%
}

.page-hero .info .date {
    color: #d1d5db;
    margin-top: 4px
}

.blog {
    padding: 8px 0 64px 0
}

@media screen and (max-width:1024px) {
    .blog {
        padding-bottom: 50px
    }
}

.blog .blog-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    overflow: auto;
    padding-bottom: 8px
}

.blog .blog-categories::-webkit-scrollbar {
    height: 3px;
    background-color: #e1e1e1
}

.blog .blog-categories::-webkit-scrollbar-thumb {
    background-color: var(--accent-color)
}

.blog .category-item {
    padding: 8px 12px;
    color: #111827;
    font-size: 16px;
    line-height: 130%;
    white-space: nowrap;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.blog .category-item.current {
    color: #fff;
    background-color: var(--accent-color)
}

.blog .category-item:hover {
    border: 1px solid var(--accent-color);
    color: var(--accent-color)
}

.blog .blog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px
}

.blog .blog-item {
    width: calc((100% - 32px) / 3);
    padding: 16px;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

@media screen and (max-width:1024px) {
    .blog .blog-item {
        width: calc((100% - 16px) / 2)
    }
}

@media screen and (max-width:768px) {
    .blog .blog-item {
        width: 100%
    }
}

.blog .blog-item:hover {
    background-color: var(--accent-color)
}

.blog .blog-item:hover .blog-title {
    color: #fff!important;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.blog .blog-item:hover .description {
    color: #ffffff;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.blog .blog-item:hover .date {
    color: #fff;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.blog .blog-item:hover .more {
    color: #fff;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.blog .blog-item:hover .more path {
    stroke: #fff;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.blog .img-card {
    border-radius: 4px;
    height: 208px;
    overflow: hidden;
    margin-bottom: 8px
}

.blog .img-card img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.blog .blog-title {
    color: #111827;
    font-size: 20px;
    font-weight: 500;
    line-height: 130%
}

.blog .description {
    color: #111827;
    font-family: "Work Sans";
    font-size: 16px;
    line-height: 130%
}

.blog .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.blog .date {
    color: #6b7280;
    font-size: 14px;
    line-height: 130%
}

.blog .more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    color: #2563eb;
    font-size: 16px;
    font-weight: 600;
    line-height: 130%
}

.blog .pagination {
    margin-top: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px
}

.blog .pagination a,
.blog .pagination span {
    width: 32px;
    height: 32px;
    border-radius: 2px;
    border: 1px solid #e5e7eb;
    color: #000;
    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
}

.blogBody {
    padding: 64px 0
}

@media screen and (max-width:1024px) {
    .blogBody {
        padding: 50px 0
    }
}

.blogBody .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px
}

@media screen and (max-width:1024px) {
    .blogBody .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.blogBody .text-wrapper {
    width: 50%
}

@media screen and (max-width:1024px) {
    .blogBody .text-wrapper {
        width: 100%
    }
}

.blogBody .img-card {
    width: 50%;
    border-radius: 8px;
    background-position: center;
    background-size: cover;
    height: auto
}

@media screen and (max-width:1024px) {
    .blogBody .img-card {
        width: 100%;
        height: 350px!important
    }
}

.other-blog {
    padding: 0 0 40px 0px
}

.other-blog .container {
    position: relative
}

.other-blog .section-title {
    margin-bottom: 16px
}

.other-blog .other-blog-slider {
    margin: 0 -8px
}

.other-blog .blog-item {
    margin: 0 8px;
    width: calc((100% - 32px) / 3);
    padding: 16px;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

@media screen and (max-width:1024px) {
    .other-blog .blog-item {
        width: calc((100% - 16px) / 2)
    }
}

@media screen and (max-width:768px) {
    .other-blog .blog-item {
        width: 100%
    }
}

.other-blog .blog-item:hover {
    background-color: var(--accent-color)
}

.other-blog .blog-item:hover .blog-title {
    color: #fff!important;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.other-blog .blog-item:hover .description {
    color: #ffffff;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.other-blog .blog-item:hover .date {
    color: #fff;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.other-blog .blog-item:hover .more {
    color: #fff;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.other-blog .blog-item:hover .more path {
    stroke: #fff;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.other-blog .blog-item .img-card {
    border-radius: 4px;
    height: 208px;
    overflow: hidden;
    margin-bottom: 8px
}

.other-blog .blog-item .img-card img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.other-blog .blog-item .blog-title {
    color: #111827;
    font-size: 20px;
    font-weight: 500;
    line-height: 130%
}

.other-blog .blog-item .description {
    color: #111827;
    font-family: "Work Sans";
    font-size: 16px;
    line-height: 130%
}

.other-blog .blog-item .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.other-blog .blog-item .date {
    color: #6b7280;
    font-size: 14px;
    line-height: 130%
}

.other-blog .blog-item .more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    color: #2563eb;
    font-size: 16px;
    font-weight: 600;
    line-height: 130%
}

.other-blog .slider-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    position: absolute;
    top: 0;
    right: 70px
}

@media screen and (max-width:768px) {
    .other-blog .slider-navigation {
        position: static;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 12px
    }
}

.other-blog .next,
.other-blog .prev {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    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;
    cursor: pointer
}

.ourStory {
    padding: 32px 0
}

.ourStory .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px
}

@media screen and (max-width:1024px) {
    .ourStory .container {
        -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;
        gap: 24px
    }
}

.ourStory .section-title {
    margin-bottom: 32px
}

.ourStory .title {
    color: var(--accent-color);
    font-size: 28px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 16px
}

@media screen and (max-width:1024px) {
    .ourStory .right {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content
    }
}

.ourStory .card {
    border-radius: 0px 16px;
    background: var(--accent-color);
    padding: 48px 32px;
    height: 100%;
    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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 48px
}

.ourStory .btn {
    white-space: nowrap
}

.youtube-video {
    padding: 30px 0
}

.youtube-video .section-title {
    margin-bottom: 32px
}

@media screen and (max-width:768px) {
    .youtube-video .section-title {
        margin-bottom: 24px
    }
}

.youtube-video .video-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px
}

@media screen and (max-width:768px) {
    .youtube-video .video-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px
    }
}

.youtube-video .video-item {
    width: 50%;
    aspect-ratio: 1.3/1;
    border-radius: 8px;
    background: rgb(172, 172, 172);
    overflow: hidden;
}

.youtube-video .video-item iframe {
    height: 100%;
}

@media screen and (max-width:768px) {
    .youtube-video .video-item {
        width: 100%;
        height: 330px
    }
}

.descSection {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 72px 0
}

.descSection.single {
    border-radius: 0;
    border: none;
    background-color: transparent
}

.descSection.laser {
    margin-bottom: 24px
}

.descSection.laser .photo-text-section {
    border: none!important
}

.descSection.laser.blue {
    background-color: var(--accent-color);
    border: none;
}

.descSection.laser.blue .section-title {
    color: #fff
}

.descSection.laser.blue .section-title span {
    color: #fff
}

.descSection.laser.blue .photo-text-section .text-card .title {
    color: #fff
}

.descSection.laser.blue .photo-text-section .text-card .title span {
    color: #fff
}

.descSection.laser.blue .photo-text-section .text-card .text_16 {
    color: #fff
}

.descSection.laser.blue .techSpec .title {
    color: #fff
}

@media screen and (max-width:1024px) {
    .descSection {
        padding: 24px 0
    }
}

.descSection .photo-text-section:not(:first-child) {
    padding-top: 48px
}

@media screen and (max-width:1024px) {
    .descSection .photo-text-section:not(:first-child) {
        padding-top: 24px
    }
}

.descSection .photo-text-section:not(:last-child) {
    padding-bottom: 48px;
    border-bottom: 1px solid #e5e7eb
}

@media screen and (max-width:1024px) {
    .descSection .photo-text-section:not(:last-child) {
        padding-bottom: 24px
    }
}

@media screen and (max-width:1024px) {
    .descSection .photo-text-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .descSection .photo-text-section:nth-child(2n) {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important
    }
}

.photo-text-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px
}

@media screen and (max-width:1024px) {
    .photo-text-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px
    }
}

.photo-text-section .photo-card {
    width: 50%;
    border-radius: 4px;
    background-position: center;
    background-size: cover
}

@media screen and (max-width:1024px) {
    .photo-text-section .photo-card {
        height: 340px;
        width: 100%
    }
}

@media screen and (max-width:768px) {
    .photo-text-section .photo-card {
        height: 191px
    }
}

.photo-text-section .text-card {
    width: 50%
}

@media screen and (max-width:1024px) {
    .photo-text-section .text-card {
        width: 100%
    }
}

.photo-text-section .title {
    color: #111827;
    font-size: 28px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 12px
}

.photo-text-section .title span {
    color: var(--accent-color)
}

.whyChoose {
    padding: 64px 0
}

@media screen and (max-width:1024px) {
    .whyChoose {
        padding: 40px 0
    }
}

.whyChoose .section-title {
    margin-bottom: 32px
}

@media screen and (max-width:1024px) {
    .whyChoose .section-title {
        margin-bottom: 24px
    }
}

.whyChoose .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px
}

@media screen and (max-width:1024px) {
    .whyChoose .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px
    }
}

.whyChoose .img-card {
    width: 50%;
    background-position: center;
    background-size: cover;
    border-radius: 16px 0px
}

@media screen and (max-width:1024px) {
    .whyChoose .img-card {
        width: 100%;
        height: 350px
    }
}

@media screen and (max-width:768px) {
    .whyChoose .img-card {
        height: 225px
    }
}

.whyChoose .profit-list {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px
}

@media screen and (max-width:1024px) {
    .whyChoose .profit-list {
        width: 100%
    }
}

@media screen and (max-width:768px) {
    .whyChoose .profit-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.whyChoose .profit-item {
    width: calc((100% - 24px) / 2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px
}

@media screen and (max-width:768px) {
    .whyChoose .profit-item {
        width: 100%
    }
}

.whyChoose .icon {
    width: 32px
}

.whyChoose .title {
    color: #111827;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 8px
}

@media screen and (max-width:768px) {
    .whyChoose .title {
        font-size: 20px
    }
}

.techSpec.section {
    padding: 50px 0;
    border-radius: 12px;
    border: 1px solid var(--Neutral-Border, #e5e7eb);
    background: var(--Neutral-Neutral-50, #f9fafb)
}

@media screen and (max-width:1024px) {
    .techSpec.section {
        padding: 40px 0
    }
}

.techSpec .title {
    color: #111827;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 24px
}

.techSpec .title span {
    color: var(--accent-color)
}

@media screen and (max-width:1024px) {
    .techSpec .title {
        font-size: 20px
    }
}

.tech-table {
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden
}

.tech-table.colored {
    border: 1px solid var(--accent-color)
}

.tech-table.colored .row:nth-child(odd) {
    background-color: var(--accent-color);
    color: #fff
}

.tech-table .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px;
    font-size: 16px;
    gap: 12px;
    background-color: #fff
}

.tech-table .row:nth-child(odd) {
    background: #ededed
}

@media screen and (max-width:768px) {
    .tech-table .row {
        font-size: 14px
    }
}

.tech-table .col.info {
    width: 70%
}

@media screen and (max-width:1024px) {
    .tech-table .col.info {
        width: 60%
    }
}

.tech-table .col.data {
    width: 30%
}

@media screen and (max-width:1024px) {
    .tech-table .col.data {
        width: 40%
    }
}

.eduSol {
    padding-bottom: 60px
}

@media screen and (max-width:1024px) {
    .eduSol {
        padding-bottom: 40px
    }
}

.eduSol .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px
}

@media screen and (max-width:1024px) {
    .eduSol .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px
    }
}

.eduSol .text-card {
    width: 50%
}

@media screen and (max-width:1024px) {
    .eduSol .text-card {
        width: 100%
    }
}

.eduSol .section-title {
    margin-bottom: 32px
}

.eduSol .title {
    color: var(--accent-color);
    font-size: 28px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 16px
}

.eduSol .text_16 span {
    font-weight: 600
}

.eduSol .wrapper {
    width: 50%;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    height: 409px
}

@media screen and (max-width:1024px) {
    .eduSol .wrapper {
        width: 100%
    }
}

@media screen and (max-width:768px) {
    .eduSol .wrapper {
        height: 268px
    }
}

.eduSol .img-slider {
    overflow: hidden;
    height: 100%
}

.eduSol .slick-track {
    height: 100%
}

.eduSol .slide {
    height: 100%
}

.eduSol .slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.eduSol .slider-navigation {
    padding: 8px;
    width: 100%;
    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;
    gap: 16px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0
}

.eduSol .next,
.eduSol .prev {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    background: rgba(249, 250, 251, 0.7725490196);
    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;
    cursor: pointer
}

.solutions {
    padding: 72px 0;
    border-radius: 12px;
    border: 1px solid var(--Neutral-Border, #e5e7eb);
    background: var(--Neutral-Neutral-50, #f9fafb)
}

@media screen and (max-width:1024px) {
    .solutions {
        padding: 40px 0
    }
}

@media screen and (max-width:768px) {
    .solutions {
        padding: 24px 0
    }
}

.solutions .solutions-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px
}

@media screen and (max-width:1024px) {
    .solutions .solutions-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 16px
    }
}

.solutions .solution-item {
    padding: 24px;
    background-color: var(--accent-color);
    border-radius: 8px;
    width: 33.3333333333%
}

@media screen and (max-width:1024px) {
    .solutions .solution-item {
        width: calc((100% - 16px) / 2);
        padding: 16px
    }
}

@media screen and (max-width:768px) {
    .solutions .solution-item {
        width: 100%
    }
}

.solutions .solution-item:nth-child(2) {
    background-color: #fff;
    border: 1px solid var(--Neutral-Border, #e5e7eb)
}

.solutions .solution-item:nth-child(2) .icon {
    background-color: var(--accent-color)
}

.solutions .solution-item:nth-child(2) .text_16,
.solutions .solution-item:nth-child(2) .title {
    color: var(--accent-color)
}

@media screen and (max-width:1024px) {
    .solutions .solution-item:nth-child(2) {
        width: 100%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
}

.solutions .icon {
    width: 100px;
    height: 100px;
    background-color: #fff;
    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;
    border-radius: 4px;
    margin-bottom: 16px
}

.solutions .title {
    color: #fff;
    font-family: "Work Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 8px
}

.solutions .text_16 {
    color: #fff
}

.aboutCompany {
    padding: 40px 0;
    position: relative
}

@media screen and (max-width:1024px) {
    .aboutCompany {
        padding: 24px 0
    }
}

.aboutCompany .cube {
    position: absolute;
    right: 0;
    top: -40%;
    z-index: -1;
    width: 40%;
    max-width: 30%
}

@media screen and (max-width:1024px) {
    .aboutCompany .cube {
        display: none
    }
}

.aboutCompany .section-title {
    margin-bottom: 32px
}

.aboutCompany .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px
}

@media screen and (max-width:1024px) {
    .aboutCompany .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px
    }
}

.aboutCompany .left {
    width: 60%
}

@media screen and (max-width:1024px) {
    .aboutCompany .left {
        width: 100%
    }
}

.aboutCompany .left .card {
    background-color: var(--accent-color)
}

.aboutCompany .left .card .text_16 {
    color: #fff
}

.aboutCompany .card {
    padding: 24px;
    border-radius: 8px
}

.aboutCompany .title {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 16px
}

.aboutCompany .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    width: 40%
}

@media screen and (max-width:1024px) {
    .aboutCompany .right {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        width: 100%
    }
}

@media screen and (max-width:1024px) {
    .aboutCompany .right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%
    }
}

.aboutCompany .right .card {
    border-radius: 4px;
    border: 1px solid var(--Neutral-Border, #e5e7eb);
    background: var(--Neutral-Neutral-50, #f9fafb);
    height: 50%
}

@media screen and (max-width:1024px) {
    .aboutCompany .right .card {
        height: auto;
        width: 50%
    }
}

@media screen and (max-width:1024px) {
    .aboutCompany .right .card {
        width: 100%
    }
}

.aboutCompany .right .card .title {
    color: var(--accent-color)
}

.coreVelue {
    position: relative;
    padding-bottom: 60px
}

.coreVelue .gear {
    position: absolute;
    top: 60%;
    left: -50px;
    max-width: 30%;
    z-index: -1
}

.coreVelue .section-title {
    margin-bottom: 16px
}

.coreVelue .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px
}

@media screen and (max-width:768px) {
    .coreVelue .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px
    }
}

.coreVelue .filters {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

@media screen and (max-width:768px) {
    .coreVelue .filters {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        overflow: auto;
        width: 100%;
        padding-bottom: 8px
    }
}

.coreVelue .filter-item {
    padding: 24px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: var(--accent-color);
    font-size: 20px;
    cursor: pointer;
    white-space: nowrap
}

@media screen and (max-width:768px) {
    .coreVelue .filter-item {
        padding: 16px 24px
    }
}

.coreVelue .filter-item:hover {
    border: 1px solid var(--accent-color)
}

.coreVelue .filter-item.active {
    background-color: var(--accent-color);
    color: #fff
}

.coreVelue .filtered-content {
    width: 70%
}

@media screen and (max-width:768px) {
    .coreVelue .filtered-content {
        width: 100%
    }
}

.coreVelue .content {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%
}

.coreVelue .content.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.coreVelue .img-card {
    border-radius: 4px;
    height: 100%;
    margin-bottom: 16px;
    overflow: hidden;
    background-position: center;
    background-size: cover
}

@media screen and (max-width:768px) {
    .coreVelue .img-card {
        height: 200px
    }
}

.coreVelue .card {
    border-radius: 4px;
    border: 1px solid var(--Neutral-Border, #e5e7eb);
    background: var(--Neutral-Neutral-50, #f9fafb);
    padding: 16px
}

.img-banner {
    height: 536px;
    background-position: center;
    background-size: cover;
    margin-top: 70px
}

@media screen and (max-width:1024px) {
    .img-banner {
        height: 340px;
        margin-top: 40px
    }
}

@media screen and (max-width:768px) {
    .img-banner {
        height: 170px
    }
}

.partners-section {
    padding: 46px 0
}

.partners-section .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (max-width:1024px) {
    .partners-section .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.partners-section .left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.partners-section .left ul {
    list-style: disc;
    padding-left: 24px
}

.partners-section .left ul li {
    color: var(--Default-Font, #111827);
    font-size: 16px;
    line-height: 173%
}

.partners-section .title {
    color: var(--Brand-Primary, #2563eb);
    font-size: 28px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 32px
}

.partners-section .partner-vert-slider {
    width: 340px;
    height: 430px;
    overflow: hidden;
    border-radius: 8px;
    border-top: 1px solid var(--Neutral-Border, #e5e7eb);
    background: var(--Neutral-Neutral-50, #f9fafb)
}

@media screen and (max-width:1024px) {
    .partners-section .partner-vert-slider {
        width: 100%;
        height: 150px
    }
}

.partners-section .swiper-slide {
    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;
    height: auto
}

.partners-section .swiper-slide img {
    width: 80%;
    max-width: 200px
}

.contactSection {
    position: relative;
    padding: 72px 0;
    overflow: hidden
}

@media screen and (max-width:1024px) {
    .contactSection {
        padding: 56px 0
    }
}

@media screen and (max-width:1024px) {
    .contactSection {
        padding: 48px 0
    }
}

.contactSection .gear {
    position: absolute;
    right: -50px;
    top: -50px;
    max-width: 35%;
    z-index: -1
}

.contactSection .section-title {
    margin-bottom: 24px
}

.contactSection .contact-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px
}

@media screen and (max-width:1024px) {
    .contactSection .contact-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 16px
    }
}

.contactSection .contact-item {
    padding: 24px;
    background-color: var(--accent-color);
    border-radius: 8px;
    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: 33.3333333333%
}

@media screen and (max-width:1024px) {
    .contactSection .contact-item {
        width: calc((100% - 16px) / 2);
        padding: 16px
    }
}

@media screen and (max-width:768px) {
    .contactSection .contact-item {
        width: 100%
    }
}

.contactSection .contact-item:nth-child(2) {
    background-color: #fff;
    border: 1px solid var(--Neutral-Border, #e5e7eb)
}

.contactSection .contact-item:nth-child(2) .icon {
    background-color: var(--accent-color)
}

.contactSection .contact-item:nth-child(2) .title {
    color: var(--accent-color)
}

.contactSection .contact-item:nth-child(2) .link {
    color: #000;
    font-size: 20px
}

@media screen and (max-width:1024px) {
    .contactSection .contact-item:nth-child(2) {
        width: 100%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
}

.contactSection .icon {
    width: 100px;
    height: 100px;
    background-color: #fff;
    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;
    border-radius: 4px;
    margin-bottom: 16px
}

.contactSection .icon img {
    width: 56px
}

.contactSection .title {
    color: var(--White, #fff);
    font-family: "Work Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%
}

.contactSection .link {
    color: var(--White, #fff);
    font-family: "Work Sans";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%
}

.error {
    position: relative;
    padding: 72px 0;
    overflow: hidden
}

@media screen and (max-width:1024px) {
    .error {
        padding: 56px 0
    }
}

@media screen and (max-width:1024px) {
    .error {
        padding: 48px 0
    }
}

.error .gear {
    position: absolute;
    z-index: -1;
    top: -40%;
    max-width: 25%;
    width: 100%;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media screen and (max-width:1024px) {
    .error .gear {
        display: none
    }
}

.error .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 950px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (max-width:768px) {
    .error .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.error .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

@media screen and (max-width:768px) {
    .error .left {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%
    }
}

.error .title {
    color: #10338e;
    font-family: "Work Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%
}

@media screen and (max-width:1024px) {
    .error .title {
        font-size: 32px
    }
}

.error .text_20 {
    color: var(--Neutral-Neutral-500, #6b7280)
}

@media screen and (max-width:1024px) {
    .error .text_20 {
        font-size: 16px
    }
}

@media screen and (max-width:768px) {
    .error .text_20 {
        text-align: center
    }
}

.error .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

@media screen and (max-width:768px) {
    .error .btn {
        width: 100%
    }
}

@media screen and (max-width:1024px) {
    .error .icon {
        height: 210px
    }
}

.error .icon img {
    height: 100%
}

.thank-you {
    height: 50vh;
    background-position: center;
    background-size: cover
}

@media screen and (max-width:1024px) {
    .thank-you {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        padding: 70px 0
    }
}

.thank-you .container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.thank-you .title {
    color: #10338e;
    font-family: "Work Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-align: center
}

@media screen and (max-width:1024px) {
    .thank-you .title {
        font-size: 32px
    }
}

.thank-you .text_20 {
    color: var(--Neutral-Neutral-500, #6b7280);
    text-align: center
}

@media screen and (max-width:1024px) {
    .thank-you .text_20 {
        font-size: 16px
    }
}

.thank-you .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.footer .container {
    max-width: 100%
}

.footer .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    padding-top: 50px
}

@media screen and (max-width:1024px) {
    .footer .head {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

@media screen and (max-width:786px) {
    .footer .head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-bottom: 16px
    }
}

.footer .head .buttons {
    display: none
}

@media screen and (max-width:1024px) {
    .footer .head .buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        min-width: 195px;
        gap: 12px
    }
    .footer .head .buttons .btn {
        white-space: nowrap
    }
}

.footer .title {
    color: #111827;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 12px
}

.footer .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 24px;
    padding-bottom: 16px
}

@media screen and (max-width:786px) {
    .footer .main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-top: 16px;
        gap: 24px
    }
}

.footer .col {
    width: 25%
}

.footer .col .buttons {
    max-width: 70%;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px
}

@media screen and (max-width:1024px) {
    .footer .col {
        width: 33.33%
    }
    .footer .col:last-child {
        display: none
    }
}

@media screen and (max-width:786px) {
    .footer .col {
        width: 100%
    }
}

.footer .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.footer .link {
    color: #111827;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px
}

.footer .link:before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 1px
}

.footer .contact:before {
    display: none
}

.footer .copyRight {
    padding: 12px 8px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: #6b7280;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.loading {
    position: relative;
}

.loading::before {
    content: "";
    position: absolute;
    z-index: 100000;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(40%, #eeeeee), color-stop(50%, #dddddd), color-stop(60%, #eeeeee));
    background: linear-gradient(to bottom right, #eeeeee 40%, #dddddd 50%, #eeeeee 60%);
    background-size: 200% 200%;
    background-repeat: no-repeat;
    -webkit-animation: placeholderShimmer 2s infinite linear;
    animation: placeholderShimmer 2s infinite linear;
    height: 100%;
    width: 100%;
    opacity: 0.6;
}

.configurator {
    padding: 50px 0;
}

.configurator .gear {
    position: absolute;
    bottom: 100px;
    width: 25%;
    left: -50px;
    z-index: -1;
}

.configurator .container {
    margin: 0 auto;
}

.configurator .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.configurator .title {
    font-size: 24px;
    font-weight: bold;
}

.configurator .flipBtn {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
}

.configurator .flipBtn img {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
}

.configurator .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 48px;
    background-color: #fff;
}

@media screen and (max-width: 1024px) {
    .configurator .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 32px;
    }
}

.configurator .config-options {
    width: 100%;
    max-width: 360px;
}

@media screen and (max-width: 1024px) {
    .configurator .config-options {
        max-width: 100%;
    }
}

.configurator .config-options .btn {
    margin-top: 24px;
}

@media screen and (max-width: 768px) {
    .configurator .config-options .btn {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .configurator .config-options {
        max-width: 100%;
    }
}

.configurator .config-option {
    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;
    padding: 8px 0;
}

.configurator .config-option:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.configurator .config-option .options-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
}

.configurator .config-option .options-head.open {
    background-color: var(--accent-color);
}

.configurator .config-option .options-head.open .option-title {
    color: #fff !important;
}

.configurator .config-option .options-head.open .quantity {
    border: 1px solid #ffffff;
}

.configurator .config-option .options-head.open .quantity-btn {
    background-color: var(--accent-color);
    color: #fff;
}

.configurator .config-option .options-head.open .quantity-input {
    color: #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    background-color: var(--accent-color);
}

.configurator .config-option .option-info {
    display: none;
    padding: 12px;
    margin-top: 8px;
}

.configurator .config-option .option-info .title {
    font-size: 16px;
    margin-bottom: 8px;
}

.configurator .config-option .option-info ul {
    list-style: disc;
    padding-left: 20px;
    margin: 8px 0;
}

.configurator .config-option .option-info a {
    color: #000;
    text-decoration: underline;
}

.configurator .config-option .option-info a:hover {
    color: var(--accent-color);
}

.configurator .option-title {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.configurator .quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 1px;
}

.configurator .quantity-btn {
    background-color: #ffffff;
    border: none;
    height: 32px;
    width: 32px;
    font-size: 16px;
    cursor: pointer;
}

.configurator .quantity-input {
    height: 32px;
    width: 32px;
    text-align: center;
    border: none;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    font-size: 14px;
}

.configurator .images {
    position: sticky;
    top: 20px;
    margin-top: -20px;
    width: 100%;
    max-width: 800px;
    height: 700px;
}

@media screen and (max-width: 1024px) {
    .configurator .images {
        max-width: 100%;
        overflow: auto;
    }
}

.configurator .images img {
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.4s linear;
    transition: opacity 0.4s linear;
}

.configurator .images img.rollerConveyor {
    z-index: -1;
}

@media screen and (max-width: 1024px) {
    .configurator .images img {
        width: 800px;
    }
}

.configurator .flip {
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
}

.configurator .backside,
.configurator .frontside {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    top: 0;
    left: 0;
}

.configurator .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.configurator .backside {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.configurator .hidden {
    opacity: 0;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select select {
    display: none;
}

.custom-select .select-selected {
    background-color: rgb(255, 255, 255);
    border-radius: 4px;
    border: 1px solid var(--Neutral-Border, #e5e7eb);
}

.custom-select .select-selected:after {
    position: absolute;
    content: "";
    top: 18px;
    right: 16px;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
}

.custom-select .select-selected.select-arrow-active::after {
    transform: rotate(225deg) !important;
}

.custom-select .select-items div,
.custom-select .select-selected {
    color: #000000;
    padding: 12px;
    height: 44px;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
}

.custom-select .select-items div {
    border-bottom: 1px solid #ededed;
}

.custom-select .select-items {
    position: absolute;
    border: 1px solid var(--Neutral-Border, #e5e7eb);
    border-radius: 4px;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 210px;
    overflow: auto;
}

.custom-select .select-items::-webkit-scrollbar {
    width: 2px;
    background-color: #eeeeee;
}

.custom-select .select-items::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
}

.custom-select .select-hide {
    display: none;
}

.custom-select .same-as-selected,
.custom-select .select-items div:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.reviewConfig {
    position: fixed;
    z-index: 1000;
    top: 70px;
    width: 100%;
    height: calc(100vh - 69px);
    overflow: auto;
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    .reviewConfig {
        height: calc(100vh - 57px);
        top: 58px;
    }
}

.reviewConfig.hidden {
    display: none;
}

.reviewConfig .title {
    color: var(--White, #fff);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    background-color: var(--accent-color);
    text-align: center;
    padding: 12px;
}

@media screen and (max-width: 1024px) {
    .reviewConfig .title {
        font-size: 28px;
        padding: 8px;
    }
}

@media screen and (max-width: 768px) {
    .reviewConfig .title {
        font-size: 20px;
        font-weight: 500;
        padding: 8px;
        text-align: left;
    }
}

.reviewConfig .step-process {
    max-width: 640px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 32px auto;
    position: relative;
}

.reviewConfig .step-process .process-line {
    height: 2px;
    width: 99%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
    background-color: #9ca3af;
    z-index: -1;
}

.reviewConfig .step-process .process-line .process {
    height: 100%;
    width: 0;
    background-color: var(--accent-color);
}

.reviewConfig .step-process .process-line .step1.current~.process {
    width: 0%;
}

.reviewConfig .step-process .process-line .step2.current~.process {
    width: 33%;
}

.reviewConfig .step-process .process-line .step3.current~.process {
    width: 66%;
}

.reviewConfig .step-process .process-line .step4.current~.process {
    width: 66%;
}

.reviewConfig .step-process span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #9ca3af;
    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;
    color: #fff;
}

.reviewConfig .step-process span.current {
    background-color: var(--accent-color);
}

.reviewConfig .step {
    display: none;
    padding-bottom: 50px;
}

.reviewConfig .step.current {
    display: block;
}

.reviewConfig .step-1 {
    max-width: 640px;
    margin: 0 auto;
}

.reviewConfig .step-1 .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.reviewConfig .step-1 .cart-option-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 0;
}

.reviewConfig .step-1 .cart-option-item:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.reviewConfig .step-1 .cart-option-item .cart-option-name {
    color: var(--Default-Font, #111827);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.reviewConfig .step-1 .cart-option-item .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.reviewConfig .step-1 .cart-option-item .cart-option-quantity {
    border: 1px solid #e5e7eb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.reviewConfig .step-1 .cart-option-item button {
    background-color: #ffffff;
    border: none;
    height: 32px;
    width: 32px;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    -webkit-transition: all 0.1ßs linear;
    transition: all 0.1ßs linear;
}

.reviewConfig .step-1 .cart-option-item button:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.reviewConfig .step-1 .cart-option-item input {
    height: 32px;
    width: 32px;
    text-align: center;
    border: none;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    font-size: 14px;
}

.reviewConfig .step-1 .cart-option-item .cart-remove-btn {
    font-size: 24px;
    font-weight: 200;
    cursor: pointer;
}

.reviewConfig .step-1 .cart-option-item .cart-remove-btn:hover {
    color: red;
}

.reviewConfig .step-1 .base-option-text {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 300;
}

.reviewConfig .head {
    margin: 24px 0;
}

.reviewConfig .model {
    color: var(--Default-Font, #111827);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

@media screen and (max-width: 1024px) {
    .reviewConfig .model {
        font-size: 20px;
    }
}

.reviewConfig .clear {
    color: var(--Brand-Primary, #2563eb);
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
    cursor: pointer;
}

.reviewConfig .clear:hover {
    text-decoration: underline;
}

.reviewConfig .step-2 {
    max-width: 864px;
    margin: 0 auto;
}

.reviewConfig .step-2 .custom-select,
.reviewConfig .step-2 .input-wrapper {
    position: relative;
}

.reviewConfig .step-2 .error-message {
    position: absolute;
    top: 103%;
    font-size: 14px;
    left: 4px;
}

.reviewConfig .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
}

@media screen and (max-width: 768px) {
    .reviewConfig .form-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px;
    }
}

.reviewConfig .col {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

@media screen and (max-width: 768px) {
    .reviewConfig .col {
        width: 100%;
    }
}

.reviewConfig .col input {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--Neutral-Border, #e5e7eb);
    padding: 12px;
    color: #000;
    font-size: 16px;
}

.reviewConfig .col input::-webkit-input-placeholder {
    color: var(--Neutral-Neutral-400, #9ca3af);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.reviewConfig .col input::-moz-placeholder {
    color: var(--Neutral-Neutral-400, #9ca3af);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.reviewConfig .col input:-ms-input-placeholder {
    color: var(--Neutral-Neutral-400, #9ca3af);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.reviewConfig .col input::-ms-input-placeholder {
    color: var(--Neutral-Neutral-400, #9ca3af);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.reviewConfig .col input::placeholder {
    color: var(--Neutral-Neutral-400, #9ca3af);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.reviewConfig .process-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 48px;
}

.reviewConfig .btn {
    min-width: 100px;
    line-height: 100%;
}

.reviewConfig #stepNext {
    width: 192px;
}

.reviewConfig .step-3 {
    max-width: 640px;
    margin: 0 auto;
}

.reviewConfig .col-title {
    font-family: "Work Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.reviewConfig .col-title span {
    color: var(--Brand-Primary, #2563eb);
}

.reviewConfig .step-4 .success-title {
    max-width: 450px;
    margin: 0 auto;
    color: #10338e;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

@media screen and (max-width: 1024px) {
    .reviewConfig .step-4 .success-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .reviewConfig .step-4 .success-title {
        font-size: 24px;
    }
}

.reviewConfig .step-4 .trust {
    color: var(--Neutral-Neutral-500, #6b7280);
    font-family: "Work Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-align: center;
    margin: 16px 0;
}

@media screen and (max-width: 1024px) {
    .reviewConfig .step-4 .trust {
        font-size: 16px;
    }
}

.reviewConfig .step-4 .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}

.local .local-card {
  overflow: auto;
  padding-bottom: 20px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.local .local-card::-webkit-scrollbar {
  height: 5px;
}

.local .local-card::-webkit-scrollbar-track {
  background: #ffffff;
}

.local .local-card::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}

.local .local-card::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.local .local-card .local-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 900px;
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .local .local-card .local-list {
    min-width: 1500px;
  }
}

.local .local-card .local-list .local-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc((100% - 64px) / 3);
  padding-left: 16px;
  position: relative;
  vertical-align: top;
}

.local .local-card .local-list .local-item::before {
  content: "";
  width: 2px;
  background-color: var(--accent-color);
  height: 96px;
  left: 0;
  position: absolute;
}

@media screen and (max-width: 768px) {
  .local .local-card .local-list .local-item {
    width: calc((100% - 80px) / 10);
  }
}

.local .local-card .local-list .local-title-letter {
  margin-bottom: 5px;
  color: var(--accent-color);
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .local .local-card .local-list .local-title-letter {
    font-size: 20px;
  }
}

.local .local-card .local-list .place {
  color: #373737;
  cursor: pointer;
}

.local .local-card .local-list .place:hover {
  color: var(--accent-color);
}