
html {
    font-size: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: "IBM Plex Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #121212;
    background: #FDFDFD;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

textarea,
input,
label {
    font-family: "Plus Jakarta Sans", sans-serif;
}

body.scrolling {
    overflow-y: hidden;
}

:root {
    --blue: #008299;
    --deep-blue: #F7F1FF;
    --white: #ffffff;
    --dark: #171717;
    --pink: #FFEDF5;
    --hover: #E5D6FE;
    --grey: #A3A3A3;
    --dark-grey: #525252;
    --white-grey: #FAFAFA;
    --light-blue: #EBF5F8;
    --hover-blue: #148da2;
    --dark-blue: #2294AC;
    --green: #00313C;
    --light-green: #A8D3D4;
    --light-bg: #99BBBC;
    --brand-color: #498487;
}

a,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
}

@media only screen and (max-width: 768px) {
    a,
    button {
        cursor: default !important;
        border: none;
        outline: none;
    }
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

input, textarea, select, label {
    outline: none;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.container {
    max-width: 1370px;
    width: 100%;
    height: auto;
    padding: 0 30px;
    margin: 0 auto;
}


.brand {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: inherit;
    border: none;
    outline: none;
    color: var(--light-green);
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    z-index: 999;
    border: none;
    outline: none;
    background: var(--green);
    padding: 17px 0;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header .wrapper {
    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;
    gap: 2rem;
    max-width: 100%;
    height: auto;
}

.header .navbar {
    max-width: 100%;
    height: auto;
}

.header .menu > .menu-item {
    position: relative;
    display: inline-block;

}

.header .menu > .menu-item > a {
    display: block;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: inherit;
    padding: 1rem 0;
    border: none;
    outline: none;
    color: var(--light-green);
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .menu > .menu-item > a .expand {
    position: relative;
    display: inline-block;
    height: 0.75rem;
    width: 0.75rem;
    margin-left: 0.35rem;
    border: none;
    outline: none;
    pointer-events: none;
}

.header .menu > .menu-item > a .expand:before, .header .menu > .menu-item > a .expand:after {
    position: absolute;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    content: '';
    left: 50%;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #000;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .menu > .menu-item:hover > a {
    color: var(--brand-color);
}

.header .menu > .menu-item:hover > a .expand::before, .header .menu > .menu-item:hover > a .expand::after {
    background: var(--brand-color);
}

.header .menu > .menu-item > a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    -ms-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
    color: var(--brand-color);
}

.header .menu > .menu-item > .sub-menu {
    position: absolute;
    left: -1rem;
    top: 100%;
    width: 13rem;
    height: auto;
    padding: 0.75rem 0;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    border-top: 3px solid var(--brand-color);
    background: #ffffff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    -webkit-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    transform: translateY(1rem);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .menu > .menu-item > .sub-menu > .menu-item {
    display: block;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a {
    display: block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: inherit;
    padding: 0.5rem 1.25rem;
    color: #121212;
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .opened-menu {
    position: relative;
    display: none;
    cursor: pointer;
    width: 2rem;
    height: 1rem;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: none;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .opened-menu span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: #fff;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.header .opened-menu span:nth-child(1) {
    top: 0;
}

.header .opened-menu span:nth-child(2), .header .opened-menu span:nth-child(3) {
    top: 0.5rem;
}

.header .opened-menu span:nth-child(4) {
    top: 1rem;
}

.header .closed-menu {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    outline: none;
    background: none;
}

.header .closed-menu img.closed-icon {
    display: block;
    width: 1rem;
    height: auto;
    filter: brightness(0) invert(1);
}

.header .overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

@media only screen and (min-width: 993px) {
    .header .menu > .menu-item-has-children:hover > .sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    .header .menu > .menu-item-has-children:hover > a .expand::after {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@media only screen and (max-width: 992px) {
    .header .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .header .navbar {
        position: fixed;
        top: 0;
        left: -18rem;
        width: 18rem;
        height: 100%;
        padding: 1rem 0;
        z-index: 999;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        background: var(--green);
        -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .header .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }
    .header .navbar::-webkit-scrollbar {
        width: 5px;
    }
    .header .navbar::-webkit-scrollbar-thumb {
        border-radius: 1rem;
        background: #e6e6e6;
        -webkit-box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
        box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
    }
    .header .menu {
        width: 100%;
        height: auto;
        margin-top: 3.5rem;
    }
    .header .menu > .menu-item {
        display: block;
        margin: 0;
    }
    .header .menu > .menu-item-has-children > a {
        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;
    }
    .header .menu > .menu-item > a {
        padding: 0.75rem 1rem;
        color: #fff;
        border-bottom: 1px solid var(--light-green);
    }
    .header .menu > .menu-item:first-child > a {
        border-top: 1px solid var(--light-green);
    }
    .header .menu > .menu-item > a .expand::before, .header .menu > .menu-item > a .expand::after {
        background: #fff;
    }
    .header .menu > .menu-item-has-children.active > a .expand:after {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    .header .menu > .menu-item > .sub-menu {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
    .header .menu > .menu-item > .sub-menu > .menu-item > a {
        padding: 0.75rem 2rem;
        color: #121212;
        border-bottom: 1px solid #f2f2f2;
    }
    .header .opened-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .header .closed-menu {
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        top: 1rem;
        right: 0.5rem;
    }
}

.header .brand img {
    max-width: 60px;
    object-fit: contain;
}


.header .menu li {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}

.header .menu > .menu-item > a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
}

.header .menu > .menu-item > a:hover {
    color: var(--blue);
}

.whitespace {
    height: 70px;
}

.menu-item__cta a {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    border-radius: 20px;
    color: var(--white);
    background: var(--brand-color);
    padding: 8px 24px;
    display: block;
    transition: all 0.3s ease;
}

.menu-item__cta:hover a {
	color: var(--brand-color);
    background: var(--white);
	transition: all 0.3s ease;
}

.menu-item__ctared {
    color: #ed544e;
    border: 1px solid #ed544e;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 0;
    border-radius: 20px;
	background: var(--white);
	transition: all 0.3s ease;
}

.menu-item__ctared a {
    color: #ed544e;
    padding: 12px 40px;
}

.menu-item__ctared:hover {
	color: var(--white);
	background: #ed544e;
	transition: all 0.3s ease;
}

.menu-item__ctared:hover a {
	color: var(--white);
	transition: all 0.3s ease;
}

.intro-left {
    max-width: 535px;
    width: 100%;
}

.intro-left h1 {
    font-size: 56px;
    font-weight: 400;
    line-height: 62px;
    color: var(--light-green);
    margin-bottom: 16px;
}

.intro-left p {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--light-green);
    max-width: 536px;
    width: 100%;
}

.intro-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.intro {
    padding: 56px 0;
}

.intro-left a {
    background: var(--blue);
    border-radius: 24px;
    color: var(--white);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--blue);
    transition: all .3s ease;
    display: inline-block;
}

.intro-left a:hover {
    background: var(--white);
    color: var(--blue);
    transition: all .3s ease;
}

.numbers-item__top h2,
.numbers-item__top span {
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: var(--white);
}

.numbers-item__top {
    display: flex;
    margin-bottom: 24px;
}

.numbers-item__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: var(--grey);
}

.numbers-wrapper {
    background-color: var(--dark);
    border-radius: 40px;
}

.numbers-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 56px;
    grid-gap: 100px;
}

.numbers {
    margin-bottom: 84px;
}

.about-left {
    max-width: 470px;
    width: 100%;
    margin-right: 30px;
}

.about-right {
   max-width: 616px;
    width: 100%;
}

.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 680px;
}

.about-right__suptitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--blue);
    margin-bottom: 24px;
    position: relative;
    padding-left: 60px;
}

.about-right__suptitle:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    background: var(--blue);
    width: 48px;
    height: 2px;
}

.about-right__content h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    color: var(--light-green);
    margin-bottom: 24px;
}

.about-right__content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--light-green);
}

.about-right__content a {
    background: var(--light-green);
    border-radius: 24px;
    color: var(--white);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--light-green);
    transition: all .3s ease;
}

.about-right__content a:hover {
    background: var(--white);
    color: var(--light-green);
    transition: all .3s ease;
}

.about {
    padding: 56px 0;
    background: var(--green);
}

.feature-text {
    text-align: center;
    margin-bottom: 48px;
}

.feature-text h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: var(--dark);
    margin-bottom: 24px;
}

.feature-text p {
    max-width: 802px;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--dark-grey);
    margin: 0 auto;
}

.feauture-item__icon {
    width: 80px;
    height: 80px;
    background-color: var(--white-grey);
    border-radius: 50%;
    position: relative;
    margin-bottom: 24px;
}

.feauture-item__icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-item__content h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-item__content li {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--dark-grey);
    list-style: disc;
}

.feature-item__content ul {
    padding-left: 20px;
}

.feature-item {
    max-width: 282px;
    width: 100%;
}

.feature-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
}

.feature {
    margin-bottom: 140px;
}

.offer-top h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: var(--dark);
    margin-bottom: 24px;
}

.offer-top p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--dark-grey);
}

.offer-top {
    margin-bottom: 48px;
}

.offer-item {
    max-width: 180px;
    width: 100%;
    background: var(--light-blue);
    border-radius: 20px;
    position: relative;
    min-height: 220px;
    transition: all .3s ease;
}

.offer-item__inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.offer-item__number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    position: relative;
    margin: 0 auto 24px;
    transition: all .3s ease;
}

.offer-item__num {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--blue);
    transition: all .3s ease;
}

.offer-item__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--dark);
    text-align: center;
    transition: all .3s ease;
}

.learnmore {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: var(--white);
    position: absolute;
    bottom: 20px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .3s ease;
}


.offer-items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 24px;
    margin-bottom: 48px;
}

.offer-item:hover .learnmore {
    opacity: 1;
    transition: all .3s ease;
}

.offer-item:hover {
    background: var(--blue);
    transition: all .3s ease;
}

.offer-item:hover .offer-item__number {
    background: var(--hover-blue);
    transition: all .3s ease;
}

.offer-item:hover .offer-item__num {
    color: var(--white);
    transition: all .3s ease;
}

.offer-item:hover .offer-item__title {
    color: var(--white);
    transition: all .3s ease;
}

.offer-link {
    border: 1px solid var(--blue);
    color: var(--blue);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    padding: 12px 40px;
    border-radius: 20px;
    margin: 0 auto;
    text-align: center;
    transition: all .3s ease;
}

.offer-link:hover {
    background: var(--blue);
    color: var(--white);
    transition: all .3s ease;
}

.offer-link__container {
    display: flex;
    justify-content: center;
}

ul.accordion-list {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    list-style: none;
}
ul.accordion-list > li {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background: linear-gradient(to right, #678D91, #3C5C5F);
    padding: 20px;
    margin: 0 auto 24px auto;
    border-radius: 20px;
    cursor: pointer;
}
ul.accordion-list li h3 {
    font-weight: 400;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 0 0 0 0;
    margin: 0;
    font-size: 32px;
    line-height: 42px;
    cursor: pointer;
    color: var(--light-green);
}

ul.accordion-list li div.answer {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
ul.accordion-list li div.answer p {
    position: relative;
    display: block;
    font-weight: 400;
    padding: 10px 0 0 0;
    cursor: pointer;
    line-height: 150%;
    margin: 0 0 15px 0;
    font-size: 17px;
}

.cooperate-wrapper {
    max-width: 535px;
    width: 100%;
    margin: 0 auto;
    color: var(--white);
}

.cooperate-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: var(--white);
    margin-bottom: 40px;
    text-align: center;
}

.cooperate-left {
    max-width: 585px;
    width: 100%;
    margin-right: 30px;
}

.accordion-top {
    display: flex;
    align-items: flex-start;
}

.accordion-top img {
    object-fit: contain;
    margin-top: 16px;
    max-width: 15px;
    transition: all .3s ease;
}

ul.accordion-list li.active .accordion-top img {
    transform: rotate(180deg);
    transition: all .4s ease;
}

ul.accordion-list li.active {
    background: linear-gradient(to right, #678D91, #3C5C5F);
}

.answer p {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--light-green);
    margin-bottom: 12px;
}

.answer a {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--light-green);
    text-decoration: underline;
}

.cooperate {
    margin-bottom: 0px;
}

.develop-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    color: var(--light-green);
    margin-bottom: 24px;
}

.develop-item__wrapper {
    display: flex;
}

.develop-item__left {
    max-width: 304px;
    width: 100%;
    border-radius: 24px;
    margin-right: 42px;
}

.develop-item__left img {
    border-radius: 24px;
    object-fit: cover;
    height: 100%;
}

.develop-item {
    max-width: 965px;
    width: 100%;
    padding: 0 70px 62px;
}

.develop-item__right {
    max-width: 477px;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 45px 45px 65px rgba(16, 77, 68, 0.06);
}

.develop-item__year {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--dark);
    margin-bottom: 42px;
}

.horizontal__line {
    background: #F5F5F5;
    height: 2px;
    color: #F5F5F5;
    margin-bottom: 18px;
}

.develop-item__content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--dark);
}

.develop-wrapper {
    width: 100%;
}

.develop-items {
    position: relative;
}

.develop-items .owl-prev {
    position: absolute;
    top: 33%;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    border: 1px solid #E5E5E5!important;
    transition: all .3s ease;
}

.develop-items .owl-next {
    position: absolute;
    top: 33%;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    border: 1px solid #E5E5E5!important;
    transition: all .3s ease;
}


.develop-items .owl-next img,
.develop-items .owl-prev img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: none;
    transition: all .3s ease;
}

.develop-items .owl-next:hover,
.develop-items .owl-prev:hover {
    background: var(--dark-blue) !important;
    border: 1px solid var(--blue) !important;
    transition: all .3s ease;
}

.develop-items .owl-next:hover img,
.develop-items .owl-prev:hover img {
    filter: brightness(0) invert(1);
    transition: all .3s ease;
}

.develop-items .owl-dots {
    margin-top: -40px;
    position: relative;
    z-index: 10000;
}

.develop-items .owl-dots .owl-dot.active span, .develop-items .owl-dots .owl-dot:hover span {
    background: var(--blue) !important;
}

.develop-items .owl-dots .owl-dot span {
    margin: 0 4px!important;
    width: 8px;
    height: 8px;
}

.blog-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: var(--dark);
    margin-bottom: 48px;
}

.blog-item {
    max-width: 360px;
    width: 100%;
}

.blog-image {
    width: 100%;
    margin-bottom: 16px;
}

.blog-info {
    display: flex;
    margin-bottom: 12px;
}

.blog-info__date {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--dark-grey);
    margin-right: 8px;
}

.blog-info__right {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--blue);
}

.blog-info__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--dark);
    transition: all .3s ease;
}

.blog-info__title:hover {
    color: var(--blue);
    transition: all .3s ease;
}

.blog-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 70px;
}


.price-wrapper {
    background-color: var(--blue);
    border-radius: 32px;
}

.price-content {
    padding: 80px 0;
    max-width: 766px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.price-content h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    text-align: center;
    color: var(--white);
    margin-bottom: 12px;
}

.price-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--white);
}

.link--white {
    background-color: var(--white);
    color: var(--blue);
}

.link--white:hover {
    color: var(--blue);
    background-color: var(--white);
}

.price {
    margin-bottom: 120px;
}

.footer-left {
    max-width: 286px;
    width: 100%;
}

.footer-left img {
    margin-bottom: 12px;
}

.footer-left p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--dark-grey);
}

.footer-left ul {
    display: flex;
}

.footer-left ul li {
    width: 41px;
    height: 41px;
    border: 1px solid #E5E5E5;
    border-radius: 50%;
    position: relative;
    margin-right: 12px;
    transition: all .3s ease;
}

.footer-left ul li a {
    display: block;
    height: 100%;
}

.footer-left ul li img {
    margin-bottom: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease;
    filter: none;
}

.footer-left ul li:hover {
    background: var(--blue);
    border: 1px solid var(--blue);
    transition: all .3s ease;
}

.footer-left ul li:hover img {
    filter: brightness(0) invert(1);
    transition: all .3s ease;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-right {
    display: flex;
}

.footer-right h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: var(--dark);
    margin-bottom: 16px;
}

.footer-menu {
    margin-right: 15px;
}

.footer-menu li a,
.footer-blog li a {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: var(--light-green);
    transition: all .3s ease;
}

.footer-menu li a:hover,
.footer-blog li a:hover {
    color: var(--blue);
    transition: all .3s ease;
}

.footer-menu li,
.footer-blog li {
    margin-right: 24px;
}

.footer-menu li:last-child,
.footer-blog li:last-child {
    margin-right: 0;
}

.footer-address p {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: var(--light-green);
}

.footer-blog__link {
    margin-top: 60px;
    display: block;
    border: 1px solid var(--blue);
    background: var(--white);
    color: var(--blue);
    border-radius: 20px;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    max-width: fit-content;
    transition: all .3s ease;
}

.footer-blog__link:hover {
    background: var(--blue);
    color: var(--white);
    transition: all .3s ease;
}

.footer-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.footer-bottom__left,
.footer-bottom__menu {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--dark-grey);
    margin-right: 40px;
}

.footer-bottom__menu li a,
.footer-bottom__right a {
    color: var(--dark-grey);
    transition: all .3s ease;
}

.footer-bottom__menu li a:hover,
.footer-bottom__right a:hover {
    color: var(--blue);
    transition: all .3s ease;
}

.footer-bottom__right {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--dark-grey);
}

.footer {
    padding-bottom: 24px;
    background: var(--green);
}

.ouroffer {
    margin-top: 54px;
}

.ouroffer-left__content h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: var(--dark);
    margin-bottom: 24px;
}

.ouroffer-left__content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--dark-grey);
}

.ouroffer-left {
    max-width: 800px;
    width: 100%;
}

.ouroffer-left__inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.ouroffer-item__top {
    background: #A8D3D4;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 48px;
}

.ouroffer-item__top-number {
    max-width: 72px;
    width: 100%;
    height: 72px;
    background: var(--green);
    color: var(--light-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    margin-right: 24px;
}

.ouroffer-item__top-wrapper {
    display: flex;
    align-items: center;
}

.ouroffer-item__top-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--green);
}

.ouroffer-item__top-content p,
.ouroffer-item__top-content li,
.answer li {
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    color: var(--green);
}

.ouroffer-item__top-content li,
.answer li {
    list-style: disc;
    margin-bottom: 15px;
}

.ouroffer-item__top-content li:last-child,
.answer li:last-child {
    margin-bottom: 0;
}

.ouroffer-item__top-content ul
.answer ul {
    padding-left: 18px;
}

.ouroffer-item__top-content a {
    display: inline-block;
    color: var(--green);
    text-decoration: underline;
    font-weight: 400;
    font-size: 16px;
}

.ouroffer-item {
    margin-bottom: 24px;
}

.ouroffer-item__top-content {
    margin-top: 24px;
}

.ouroffer-wrapper {
    display: flex;
    justify-content: space-between;
}

.ouroffer-right {
    margin-left: 40px;
    max-width: 367px;
    width: 100%;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.ouroffer-title {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--green);
    margin-bottom: 24px;
}

.ouroffer-right li {
    background: #FAFAFA;
    margin-bottom: 5px;
    border-radius: 16px;
    transition: all .3s ease;
}

.ouroffer-right__wrapper {
    padding: 10px 16px;
    display: flex;
    align-items: center;
}

.ouroffer-right__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #A8D3D4;
    font-size: 16px;
    font-weight: 600;
    color: var(--green);
    margin-right: 12px;
    border-radius: 50%;
    transition: all .3s ease;
}

.ouroffer-right__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    color: var(--light-green);
    transition: all .3s ease;
}

.ouroffer-right li:hover {
    background: var(--blue);
    transition: all .3s ease;
}

.ouroffer-right li:hover .ouroffer-right__number {
    background: var(--brand-color);
    color: var(--white);
    transition: all .3s ease;
}

.ouroffer-right li:hover .ouroffer-right__title {
    color: var(--white);
    transition: all .3s ease;
}

.partner {
    margin: 54px 0 140px;
}

.partner-content h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    color: var(--light-green);
    margin-bottom: 24px;
}

.partner-content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--light-green);
}

.partner-content {
    margin-bottom: 48px;
}

.answer ul {
    padding-left: 18px;
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--light-green);
}

.answer ul li {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--light-green);
}

.partner-content a {
    display: inline-block;
    color: var(--light-green);
    text-decoration: underline;
}

.partner-content {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--light-green);
}

.singleblog__content h1,
.singleblog__content h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    color: var(--light-green);
    margin-bottom: 48px;
}

.singleblog__content h3 {
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    color: var(--light-green);
    margin-bottom: 40px;
}

.singleblog__content h4 {
    font-size: 35px;
    font-weight: 400;
    line-height: 42px;
    color: var(--light-green);
    margin-bottom: 35px;
}

.singleblog__content h5 {
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    color: var(--light-green);
    margin-bottom: 30px;
}

.singleblog__content h6 {
    font-size: 25px;
    font-weight: 400;
    line-height: 32px;
    color: var(--light-green);
    margin-bottom: 25px;
}

.singleblog__content p,
.singleblog__content li {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--light-green);
}

.singleblog__content li {
    list-style: disc;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--light-green);
}

.singleblog__content ul {
    padding-left: 18px;
}

.singleblog__content img {
    max-width: 100%;
    margin-bottom: 48px;
}

.singleblog__content a {
    color: var(--light-green);
    text-decoration: underline;
}

.ouroffer {
    margin-bottom: 80px;
}

.ouroffer-right__icon {
    max-width: 32px;
    width: 100%;
    height: 32px;
    background: #A8D3D4;
    position: relative;
    border-radius: 50%;
    margin-right: 16px;
    transition: all .3s ease;
}

.ouroffer-right__icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease;
}

.ouroffer-right li:hover .ouroffer-right__icon {
    background: var(--brand-color);
    transition: all .3s ease;
}

.ouroffer-right li:hover .ouroffer-right__icon img {
    filter: brightness(0) invert(1);
    transition: all .3s ease;
}

.ouroffer-right__item {
    margin-bottom: 40px;
}

.ouroffer-right__item:last-child {
    margin-bottom: 0;
}

.ouroffer-right__lists {
    display: flex;
    flex-wrap: wrap;
}

.ouroffer-right__lists li {
    margin-right: 8px;
}

.download-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    color: var(--green);
    margin-bottom: 24px;
}

.download-item li {
    background: #FAFAFA;
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all .3s ease;
}

.download-item li:last-child {
    margin-bottom: 0;
}

.download-item__left {
    display: flex;
    align-items: center;
    padding: 8px 16px;
}

.download-item li:hover {
    background: var(--blue);
    transition: all .3s ease;
}

.download-item li:hover .ouroffer-right__icon {
    background: var(--brand-color);
    transition: all .3s ease;
}

.download-item li:hover .ouroffer-right__icon img {
    filter: brightness(0) invert(1);
    transition: all .3s ease;
}

.download-item li:hover .ouroffer-right__title {
    color: var(--white);
    transition: all .3s ease;
}

.download-item {
    margin-bottom: 48px;
}

.contact__top h1 {
    font-size: 56px;
    font-weight: 400;
    line-height: 62px;
    color: var(--green);
    margin-bottom: 24px;
}

.contact__top h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    color: var(--green);
    margin-bottom: 24px;
}

.contact__top p {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--green);
}

.contact-left {
    max-width: 576px;
    width: 100%;
}

.contact-left h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: var(--dark);
    margin-bottom: 24px;
}

.contact-left p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--dark-grey);
    margin-bottom: 24px;
}

.form-item__label {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-item {
    display: flex;
    flex-direction: column;
}

.form-item__input {
    width: 100%;
    border: 1px solid #A3A3A3;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--dark);
    padding: 16px;
}

.form-item__input::placeholder {
    color: #A3A3A3;
}

.form-inner {
    display: flex;
    width: 100%;
    margin-bottom: 24px;
}

.form-item {
    max-width: 276px;
    width: 100%;
    margin-right: 24px;
}

.form-item:last-child {
    margin-right: 0;
}

.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding: 22px 16px;
    background-color: transparent;
    border: 1px solid #A8D3D4;
    border-radius: 20px;
    color: var(--light-green);
    cursor: pointer;
}

.custom-select::before,
.custom-select::after {
    --size: 0.3rem;
    content: "";
    position: absolute;
    right: 1rem;
    pointer-events: none;
}

.custom-select::before {
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-bottom: var(--size) solid black;
    top: 40%;
}

.custom-select::after {
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-top: var(--size) solid black;
    top: 55%;
}

.form-fullinner {
    display: flex;
    flex-direction: column;
}

.form-item__textarea {
    resize: none;
    min-height: 216px;
    max-height: 216px;
    border: 1px solid #A8D3D4;
    border-radius: 20px;
    padding: 22px 16px;
    color: var(--light-green);
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    background: transparent;
}

.form-item__textarea::placeholder {
    color: var(--light-green);
}

.comment-form-cookies-consent input[type="checkbox"] {
    position: relative;
    border: 1px solid #A8D3D4;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 !important;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    max-width: 100%;
    -webkit-appearance: none;
    opacity: 0.5;
    border-radius: 4px;
}

.comment-form-cookies-consent input[type="checkbox"]:hover {
    opacity: 1;
}

.comment-form-cookies-consent input[type="checkbox"]:checked {
    background-color: var(--light-green);
    opacity: 1;
}

.comment-form-cookies-consent input[type="checkbox"]:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    width: 5px;
    height: 10px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.comment-form-cookies-consent input[type="checkbox"]:checked:before {
    border: solid #fff;
    border-width: 0 2px 2px 0;
}

.comment-form-cookies-consent-label {
    display: flex;
}

.comment-form-cookies-consent input[type="checkbox"] {
    background: transparent;
    opacity: 1;
}

.comment-form-cookies-consent input[type="checkbox"]:checked {
    background: #A8D3D4;
    border: 1px solid #A8D3D4;
}

.comment-form-cookies-consent {
    margin: 18px 0;
}

.form-check__span {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: #A8D3D4;
    margin-left: 21px;
    cursor: pointer;
}

.form-check__span a {
    font-weight: 700;
    font-size: 15px;
    color: #A8D3D4;
    display: inline-block;
}

.cookies-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #A8D3D4;
    margin-bottom: 21px;
}

.cookies-text a {
    font-weight: 700;
    color: #A8D3D4;
    display: inline-block;
}

.form-send {
    font-family: "IBM Plex Sans", sans-serif;
    max-width: 100%;
    width: 100%;
    background: #498487;
    border: 1px solid #498487;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    padding: 8px 16px;
    border-radius: 16px;
    transition: all .3s ease;
    cursor: pointer;
}

.form-send:hover {
    background: #fff;
    color: #498487;
    transition: all .3s ease;
}

.contact-wrapper {
    margin-bottom: 48px;
    display: flex;
    justify-content: space-between;
}

.contact-right {
    max-width: 576px;
    width: 100%;
}

.contact-left {
    margin-right: 48px;
}

.contact-right h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: var(--dark);
    margin-bottom: 24px;
}

.ct-bottom__title {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    color: var(--green);
    margin-bottom: 24px;
}

.ct-item {
    background: var(--green);
    border-radius: 16px;
    padding: 20px;
}

.ct-left {
    max-width: 588px;
    width: 100%;
}

.ct-icon {
    width: 72px;
    height: 72px;
    background: #A8D3D4;
    border-radius: 50%;
    position: relative;
    margin-right: 24px;

}

.ct-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ct-item__top-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--light-green);
}

.ct-item__top {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.ct-item__inner {
    display: flex;
    align-items: center;
}

.ct-item__inner img {
    margin-right: 16px;
}

.ct-item__inner p,
.ct-item__inner a {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--light-green);
    transition: all .3s ease;
}

.ct-item__inner a:hover {
    text-decoration: underline;
    transition: all .3s ease;
}

.ct-item {
    margin-bottom: 24px;
}

.ct-item:last-child {
    margin-bottom: 0;
}

.ct-item__content .ct-item__inner {
    margin-bottom: 24px;
}

.ct-item__content .ct-item__inner:last-child {
    margin-bottom: 0;
}

.ct-wrapper {
    display: flex;
    justify-content: space-between;
}

.ct-right {
    max-width: 800px;
    width: 100%;
    margin-left: 24px;
}

.ct-right .ct-item {
	height: 100%;
}

.header .menu > .menu-item.menu-item__contact {
    display: none;
}

@media (max-width: 992px) {
    .menu-item__cta {
        display: none;
    }

    .header .menu > .menu-item.menu-item__contact {
        display: block;
    }
    .header .menu > .menu-item > a {
        justify-content: space-between;
    }
    .header .menu > .menu-item > a {
        padding: 0.75rem 1rem;
        color: #fff;
        border-bottom: 1px solid var(--light-green);
    }
    .whitespace {
        height: 90px;
    }

    .header {
        height: 70px;
        padding: 10px 0;
    }

    .intro {
        margin: 8px 0 40px;
    }
    .intro-left h1 {
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 15px;
    }
    .intro-left {
        max-width: 450px;
        width: 100%;
    }
    .numbers-item__top h2, .numbers-item__top span {
        font-size: 40px;
        line-height: 50px;
    }
    .numbers-items {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 56px;
        grid-gap: 100px;
    }
    .offer-items {
        grid-template-columns: repeat(3, 1fr);
    }
    .feature-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-info__date,
    .blog-info__right {
        font-size: 12px;
        line-height: 18px;
    }
    .blog-items {
        grid-gap: 10px;
    }
    .footer-menu, .footer-address {
        margin-right: 30px;
    }
}

@media (max-width: 767px) {
    .intro-wrapper {
        flex-direction: column;
    }
    .intro-left {
        max-width: 800px;
        width: 100%;
    }
    .intro-left h1 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 12px;
    }
    .intro-left p {
        max-width: 100%;
    }
    .numbers-items {
        grid-template-columns: repeat(1, 1fr);
        padding: 40px 56px;
        grid-gap: 40px;
    }
    .about-wrapper {
        flex-direction: column;
    }
    .about-left {
        margin-right: 0;
        margin-bottom: 32px;
    }
    .about-right {
        max-width: 800px;
    }
    .about-right__content h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .about {
        margin-bottom: 80px;
    }
    .feature-text h2 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 12px;
    }
    .feature-items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }
    .feature-item {
        max-width: 800px;
    }
    .feature {
        margin-bottom: 80px;
    }
    .offer-top h2 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 12px;
    }
    .offer-items {
        grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));

    }
    .offer-item {
        max-width: 400px;
    }
    .offer {
        margin-bottom: 80px;
    }
    .cooperate-wrapper {
        flex-direction: column;
    }
    .cooperate-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 24px;
    }
    .cooperate-left {
        margin-right: 0;
        max-width: 800px;
        margin-bottom: 30px;
    }
    ul.accordion-list li h3 {
        font-size: 18px;
        line-height: 26px;
    }
    .cooperate-right {
        display: flex;
        justify-content: center;
    }
    .cooperate {
        margin-bottom: 80px;
    }
    .develop-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 40px;
    }
    .develop-item__wrapper {
        flex-direction: column;
    }
    .develop-item__left {
        order: 1;
        margin-right: 0;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
    .develop-item__right {
        max-width: 100%;
        margin-bottom: 24px;
        box-shadow: none;
    }
    .develop-item {
        padding: 0 10px;
    }
    .develop {
        margin-bottom: 80px;
    }
    .blog-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 32px;
    }
    .blog-items {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 40px;
    }
    .blog-item {
        max-width: 800px;
        margin-bottom: 30px;
    }
    .blog-item:last-child {
        margin-bottom: 0;
    }
    .blog-info__title {
        font-size: 18px;
        line-height: 26px;
    }
    .blog {
        margin-bottom: 80px;
    }
    .price-content {
        padding: 46px 32px;
    }
    .price-content h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 12px;
    }
    .footer-wrapper {
        flex-direction: column;
    }
    .footer-left {
        max-width: 800px;
        margin-bottom: 40px;
    }
    .footer-right {
        flex-wrap: wrap;
    }
    .footer-blog {
        margin-top: 32px;
        width: 100%;
    }
    .footer-address {
        margin-right: 0;
    }
    .footer-blog__link {
        margin-top: 24px;
    }

    .footer-bottom {
        flex-wrap: wrap;
    }
    .footer-bottom__left {
        width: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 24px;
    }
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 375px) {
    .footer-right {
        flex-direction: column;
    }
    .footer-menu {
        margin-right: 0;
        margin-bottom: 32px;
    }
}

/* Burger */

.burger {
    width: 30px;
    height: 23px;
    position: relative;
    padding: 0;
    background: var(--blue);
    border: 0;

    font-size: 0;
    color: transparent;

    display: none;
}

.burger:focus {
    outline: none;
}

.burger__line {
    display: block;
    width: 30px;
    height: 2px;
    margin: 3px 0;

    background-color: #fff;

    transition: transform 0.2s ease-out;
}

.burger__line:nth-child(1) {
    width: 20px;
    margin-left: auto;
}

.burger__line:nth-child(1),
.burger__line:nth-child(3) {
    transform-origin: right;
    transition: width 0.2s ease-out;
}

.burger.active .burger__line:nth-child(1),
.burger.active .burger__line:nth-child(3) {
    width: 0;
}

.burger.active .burger__line:nth-child(2),
.burger.active .burger__line:nth-child(4) {
    position: absolute;
    left: 0;
    top: 50%;

    transform-origin: center;
}

.burger.active .burger__line:nth-child(2) {
    transform: rotate(45deg);
}

.burger.active .burger__line:nth-child(4) {
    transform: rotate(-45deg);
}

.nav {
    display: none;
}

body {
    position: relative;
    overflow-x: hidden;
}

body.no-scroll,
body.show-nav {
    overflow: hidden;
}

@media (max-width: 992px) {
    .burger {
        display: block;
    }
    .nav {
        width: 100%;
        height: calc(100vh - 50px);
        overflow: auto;
        flex-direction: column;
        padding-top: 9px;

        background-color: rgba(0, 0, 0, 0.85);

        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1;

        transform: translateX(100%);
        transition: transform 0.2s ease-out;

        display: flex;
    }

    .nav.show {
        transform: translateX(0);
    }
}

.blogpage .blog-item a img {
    max-height: 200px;
    height: 100%;
    object-fit: cover;
    margin-bottom: 16px;
    width: 100%;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.page-numbers {
    padding: 0 10px;
}

.page-numbers.current {
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.page-numbers {
    color: var(--green);
    font-weight: 700;
    font-size: 16px;
}

.wpcf7-list-item {
    margin: 0;
}

.mappl__inner {
    display: flex;
    padding: 16px;
    align-items: center;
}

.mappl__wrapper {
    background: #EBF5F8;
    border-radius: 16px;
    border: 1px solid var(--blue);
}

.cssmap > li a, .cssmap > li a:hover, .cssmap-tooltip-content {
    background: unset!important;
    color: #525252;
    text-shadow: none!important;
    font: normal 14px "Plus Jakarta Sans", sans-serif!important;
}

.mappl__left {
    margin-right: 16px;
}

.mappl__li-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: #00313C;
    margin-left: 16px;
}

.mappl__li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.mappl__li:last-child {
    margin-bottom: 0;
}

.contact {
    padding: 56px 0;
    background: var(--light-bg);
}

@media (max-width: 767px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-left {
        margin-right: 0;
        max-width: 800px;
    }
    .form-item {
        max-width: 450px;
    }
    .contact-right {
        max-width: 800px;
    }
    .contact-right iframe {
        height: 550px!important;
    }
    .contact__top h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 12px;
    }
    .contact-left h3,
    .contact-right h3,
    .ct-bottom__title {
        font-size: 24px;
        line-height: 32px;
    }
    .ct-wrapper {
        flex-direction: column;
    }
    .ct-left {
        max-width: 800px;
        width: 100%;
    }
    .ct-right {
        margin-left: 0;
        max-width: 800px;
        margin-top: 24px;
    }
    .ct-item__top-title {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 576px) {
    .mappl__left {
        display: none;
    }
}

.post-navigation {
    display: none;
}

/* nav toggle */
.nav-toggle {
    cursor: pointer;
    right: 0;
    position: fixed;
    bottom: 50px;
    width: 40px;
    height: 40px;
    z-index: 1000;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
}
.nav-toggle:hover {
    opacity: 0.8;
}
.nav-toggle .nav-toggle-bar,
.nav-toggle .nav-toggle-bar::after,
.nav-toggle .nav-toggle-bar::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: white;
    content: "";
    height: 1px;
    transition: all 0.5s;
    width: 18px;
    text-align: center;
    left: 50%;
    transform: translate(-50%);
}
.nav-toggle .nav-toggle-bar {
    margin-top: 1px;
}
.nav-toggle .nav-toggle-bar::after {
    margin-top: -5px;
}
.nav-toggle .nav-toggle-bar::before {
    margin-top: 4px;
}
.nav-toggle.expanded .nav-toggle-bar {
    background: transparent;
}
.nav-toggle.expanded .nav-toggle-bar::after, .nav-toggle.expanded .nav-toggle-bar::before {
    background: white;
    margin-top: 0;
}
.nav-toggle.expanded .nav-toggle-bar::after {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-toggle.expanded .nav-toggle-bar::before {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav-toggle.expanded .nav-toggle-bar, .nav-toggle.expanded .nav-toggle-bar::after, .nav-toggle.expanded .nav-toggle-bar::before {
    left: 35%;
    top: 47%;
}

/* nav */
.nav {
    background: var(--green);
    box-shadow: none;
    color: white;
    cursor: pointer;
    display: flex;
    font-size: 1.75rem;
    height: 100vh;
    left: 100%;
    padding: 6rem 3rem 3rem 3rem;
    position: fixed;
    top: 0;
    transition: box-shadow 0.5s, left 0.5s;
    width: 24rem;
    z-index: 1;
}
.nav.expanded {
    left: -200px;
}
.nav ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: auto 0;
}

.nav-toggle,
#nav {
    display: none;
}

@media (max-width: 992px) {
    .ouroffer-right {
        display: none;
    }
    .ouroffer-left {
        max-width: 1000px;
    }
    .nav-toggle,
    #nav {
        display: block;
    }
    .nav.expanded {
        left: 19%;
    }
    .ouroffer-right.blogoffer-right {
        display: block;
        margin-left: 0;
        margin-top: 30px;
    }
    .ouroffer-wrapper.ouroffer-wrapperblog {
        flex-direction: column;
    }
    .ouroffer-item {
        margin-bottom: 40px;
    }
}

@media (max-width: 850px) {
    .nav.expanded {
        left: 7%;
    }
}

@media (max-width: 767px) {
    .nav.expanded {
        left: -4%;
    }
}

@media (max-width: 650px) {
    .nav.expanded {
        left: -21%;
        padding: 6rem 0rem 3rem 1rem;
    }
}

@media (max-width: 550px) {
    .nav.expanded {
        left: -43%;
        padding: 6rem 0rem 3rem 1rem;
    }
}

@media (max-width: 450px) {
    .nav.expanded {
        left: -72%;
        padding: 6rem 0rem 3rem 1rem;
    }
}

@media (max-width: 370px) {
    .nav.expanded {
        left: -101%;
        padding: 6rem 0rem 3rem 1rem;
    }
}

@media (max-width: 767px) {
    .ouroffer-left__content h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .ouroffer {
        margin-top: 20px;
    }
    .download-title {
        font-size: 24px;
        line-height: 32px;
    }
    .ouroffer {
        margin-bottom: 40px;
    }
    .partner-content h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .partner {
        margin: 20px 0 40px;
    }
    .singleblog__content h1, .singleblog__content h2 {
        font-size: 32px;
        font-weight: 600;
        line-height: 40px;
        color: var(--light-green);
        margin-bottom: 30px;
    }
	.ouroffer-item__top-number {
	font-size: 20px;
	max-width: 50px;
	height: 50px;
	}
}

.ouroffer-item__top-content ul {
padding-left: 18px;
margin-top: 5px;
}

.nav-up {
	top: -106px;
	transition: all 0.3s ease;
}

.nav-down {
	top: 0;
transition: all 0.3s ease;
}

.singleblog__content iframe {
	width: 100%;
}

.hrfooter {
	margin-bottom: 50px;
}

@media (max-width: 992px) {
.hrfooter {
	margin-bottom: 20px;
}
}

.menu-items__ctas {
	display: flex;
}

.menu-item__ctared {
	margin-left: 10px;
}

@media (max-width: 992px) {
	.menu-items__ctas {
		display: none;
	}
}

.intro {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

/* */

.containerinner {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: -40px;
}

.center-circle {
    position: absolute;
    top: 100px;
    left: 100px;
    width: 222px;
    height: 222px;
    border-radius: 50%;
    background: radial-gradient(circle, #0e5b60, #053238);
    box-shadow: inset -10px -10px 30px #01272b;
    animation: fadeIn 1s ease-out forwards;
    z-index: 10;
}

/* Dots */
.dot {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #0e5b60, #053238);
    border-radius: 50%;
    box-shadow: inset -4px -4px 10px #01272b;
    animation: fadeIn 1s ease-out forwards;
}

.dot1 { top: 230px; right: 500px; animation-delay: 0.5s; }
.dot2 { top: 300px; right: 590px; animation-delay: 0.7s; }
.dot3 { top: 370px; left: 560px; animation-delay: 0.9s; }
.dot4 { top: 440px; left: 470px; animation-delay: 1.1s; }
.dot5 { top: 520px; left: 380px; animation-delay: 1.3s; }

/* Text */
.text {
    position: absolute;
    color: var(--light-green);
    width: 470px;
    font-size: 17px;
    line-height: 22px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.text1 { top: 240px; right: 00px; animation-delay: 0.6s; }
.text2 { top: 310px; right: 90px; animation-delay: 0.8s; }
.text3 { top: 380px; left: 650px; animation-delay: 1.0s; }
.text4 { top: 450px; left: 560px; animation-delay: 1.2s; }
.text5 { top: 530px; left: 470px; animation-delay: 1.4s; }

/* SVG lines */
.lines {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.svg-line {
    stroke: #68a9a1;
    stroke-width: 1;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawLine 1s ease-out forwards;
}

.line1 { animation-delay: 0.5s; }
.line2 { animation-delay: 0.7s; }
.line3 { animation-delay: 0.9s; }
.line4 { animation-delay: 1.1s; }
.line5 { animation-delay: 1.3s; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .dot, .text, .center-circle, .lines {
        position: static;
        margin: 10px auto;
        display: block;
    }

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .text {
        text-align: center;
        width: 90%;
    }

    .lines {
        display: none;
    }
}

.suptitle {
    display: inline-block;
    border: 1px solid var(--light-green);
    color: var(--light-green);
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 600;
    line-height: 13px;
    border-radius: 17px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.aboutm__left {
    max-width: 535px;
    width: 100%;
    margin-right: 30px;
}

.aboutm__content {
    color: var(--light-green);
}

.aboutm__content h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    color: var(--light-green);
    margin-bottom: 24px;
}

.aboutm__content,
.aboutm__content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--light-green);
}

.aboutm__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aboutm__right {
    position: relative;
}

.aboutm__img {
    position: absolute;
    top: 60px;
    left: -200px;
    z-index: 1;
}

.aboutm__image {
    position: relative;
    border-radius: 50%;
    z-index: 2;
}

.aboutm {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.aboutm__linkk {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    padding: 0.75rem 1.25rem;
    border: none;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.aboutm__linkk .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.aboutm__linkk:hover .arrow {
    transform: translateX(6px) translateY(-6px) ;
}

.cnt {
    margin-bottom: 24px;
}

.aboutm__linkk span {
    margin-right: 10px;
}

.aboutmm-text,
.aboutmm-item h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: var(--light-green);
}

.aboutmm-item {
    display: flex;
    border-bottom: 1px solid var(--light-green);
    padding-bottom: 24px;
    margin-bottom: 8px;
}

.aboutmm-item:last-child {
    margin-bottom: 0;
}

.aboutmm-item img {
    margin-right: 16px;
}

.aboutmm__right {
    max-width: 573px;
    width: 100%;
}

.aboutmm__right-content h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    color: var(--light-green);
    margin-bottom: 24px;
}

.cooperate {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 114px 0 64px;
    background-attachment: fixed;
    background-position: top;
    min-height: 500px;
    background-color: #498487;
}

.cooperate-content h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    color: var(--white);
    text-align: center;
    margin-bottom: 55px;
}

.cooperate-content,
.cooperate-content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--white);
    text-align: center;
}

.link-center {
    display: flex;
    justify-content: center;
    margin: 55px auto 0;
}

.develop {
    background-color: var(--green);
    padding: 56px 0;
}

.develop__item {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 24px;
    border-radius: 16px;
}

.develop__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
    margin-bottom: 24px;
}

.develop__item img {
    margin-bottom: 20px;
}

.develop-item__content,
.develop-item__content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--light-green);
}

.develop-text,
.develop-text p {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--light-green);
}

.swiper-container{
    width: 100%;
}

.swiper-wrapper {
    width: 50%;
}

.swiper-slide,
.blogg__it {
    text-align: center;
    width: auto;
    background: linear-gradient(to bottom right, #00313C00, #3e6f75, #01323d);
    height: auto;
    border-radius: 16px;
}



.slide-image {
    height: 400px;
    width: auto;
}
.my-gallery figure {
    margin: 0px;
}

.blog {
    background-color: var(--light-green);
}

.blog__wrapper {
    padding-right: 0;
    max-width: 100%;
    padding-left: 40px;
    padding-left: 0;
}

@media (min-width: 576px) {
    .blog__wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 1200px) {
    .blog__wrapper {
        padding-left: 100px;
        padding-right: 0px;
    }
}

@media (min-width: 1200px) {
    .blog__wrapper {
        padding-left: 100px;
    }
}

@media (min-width: 1640px) {
    .blog__wrapper {
        padding-left: calc((100% - 1300px) / 2);
        padding-right: 0;
    }
}

.blog {
    padding: 56px 0;
}

.blog-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    color: #00313C;
    margin-bottom: 24px;
}

.blog__wrapper {
    position: relative;
}

.swipe-nav {
    position: absolute;
    top: -45px;
}

.swiper-button-prev {
    left: unset;
    right: 70px;
    top: -2px;
}

.swiper-button-prev:after {
    content: "";
    position: absolute;
    background-image: url(../../assets/img/arrowleft.svg);
    width: 36px;
    height: 36px;
}

.swiper-button-next:after {
    content: "";
    position: absolute;
    background-image: url(../../assets/img/arrowright.svg);
    width: 36px;
    height: 36px;
}

.blog__item-head {
    min-height: 270px;
    max-height: 270px;
    margin-bottom: 24px;
}

.blog__item-head img {
    object-fit: cover;
    min-height: 270px;
    max-height: 270px;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
}

.blog__item-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: #A8D3D4;
    margin-bottom: 24px;
    text-align: left;
    padding: 0 24px;
}

.blog__item-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: #A8D3D4;
    padding: 0 24px;
    margin-bottom: 24px;
    text-align: left;
}

.aboutml__wrapp {
    display: flex;
    justify-content: flex-end;
    padding: 0 24px 24px;
    margin-top: auto;
}

.blog__item-link {
    display: flex;
    flex-direction: column;
}

.blog__item,
.blog__item-link {
    height: 100%;
}

.blog__item {
    border-radius: 16px;
}

.cf__right {
    max-width: 555px;
    width: 100%;
}

.cf__wrapp {
    align-items: flex-start;
}

.form-item {
    max-width: 100%;
}

.form__inner {
    margin-bottom: 21px;
}

.form__inner input {
    font-family: "IBM Plex Sans", sans-serif;
    background: transparent;
    border: 1px solid var(--light-green);
    padding: 22px 16px;
    color: var(--light-green);
    font-size: 15px;
    font-weight: 400;
}


.form__inner input::placeholder {
    font-family: "IBM Plex Sans", sans-serif;
    color: #ADD4D5;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
}

.cf__wrapp {
    align-items: stretch;
}

.aboutmm__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 650px;
    width: 100%;
}

.wpcf7-spinner {
    display: none;
}

.aboutmm__cnt h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    color: var(--light-green);
}

.footer {
    padding: 64px 0;
}

.footer-left p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--light-green);
    padding-left: 43px;
    margin-top: -10px;
}

.footer-menu ul {
    display: flex;
}

.down {
    padding: 56px 0;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.ouroffer-left__content h1,
.partner-content h1 {
    font-size: 56px;
    font-weight: 400;
    line-height: 120%;
    color: var(--light-green);
    margin-bottom: 24px;
}

.ouroffer-left__content h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 120%;
    color: var(--light-green);
    margin-bottom: 24px;
}

.ouroffer-left__content,
.ouroffer-left__content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: var(--light-green);
}

.ouroffer-left__inner {
    margin-bottom: 0px;
}

.ouroffer {
    background-color: var(--light-bg);
    margin: 0;
    padding: 56px 0;
}

.download-item ul li,
.ouroffer-right ul li {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
}

.part {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 56px 0;
}

.partner {
    background-color: var(--light-bg);
    margin: 0;
    padding: 56px 0;
}

.accordion-top .acc__span {
    width: 100%;
    height: 32px;
    max-width: 32px;
    background: var(--light-bg);
    border-radius: 50%;
    position: relative;
    margin-right: 16px;
}

ul.accordion-list li h3 {
    display: flex;
    align-items: center;
}

.accordion-top .acc__span span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 600;
    color: var(--green);
}

.ct__top {
    background: var(--light-bg);
    padding: 56px 0;
}

.cff {
    background: var(--green);
    padding: 56px 0;
}

.ccf-wrapper h2,
.ccf-wrapper h3 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    color: var(--light-green);
    margin-bottom: 24px;
}

.ooffer {
    padding: 56px 0;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.sp-inner {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.singleblog__content .wp-post-image {
    max-width: 464px;
    width: 100%;
    max-height: 100%;
    height: 464px;
    border-radius: 50%;
}

.case__content .wp-post-image {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: unset;
}

.nm {
    background: #498487;
    padding: 56px 0;
}

.nm-content {
    color: var(--white);
}

.nm-content h1,
.nm-content h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    color: var(--white);
    margin-bottom: 48px;
}

.nm-content h3 {
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    color: var(--white);
    margin-bottom: 40px;
}

.nm-content h4 {
    font-size: 35px;
    font-weight: 400;
    line-height: 42px;
    color: var(--white);
    margin-bottom: 35px;
}

.nm-content h5 {
    font-size: 30px;
    font-weight: 400;
    line-height: 38px;
    color: var(--white);
    margin-bottom: 30px;
}

.nm-content h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--white);
    margin-bottom: 24px;
}

.nm-content p,
.nm-content li {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--white);
}

.nm-content li {
    list-style: disc;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--white);
}

.nm-content ul {
    padding-left: 18px;
}

.nm-content img {
    max-width: 100%;
    margin-bottom: 48px;
}

.nm-content a {
    color: var(--white);
    text-decoration: underline;
}

.nm-content {
    margin-bottom: 56px;
}

.nm-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
}

.nm-item {
    border-right: 1px solid #fff;
}

.nm-item:last-child {
    border-right: none;
}

.nm-num {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    color: var(--white);
    margin-bottom: 24px;
}

.nm-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: var(--white);
}

@media (max-width: 767px) {
    .nm-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ab-wrapp {
    padding-bottom: 100px;
    margin-bottom: 100px;
    border-bottom: 1px solid #ADD4D5;
    width: 100%;
    max-width: 100%;
}

.ab-wrapp .about-right__content {
    max-width: 688px;
}

.cont__left {
    max-width: 741px;
    width: 100%;
}

.abo__text {
    max-width: 555px;
    width: 100%;
    margin-left: auto;
}

.abo__text h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 52px;
    color: var(--light-green);
}

@media (max-width: 1500px) {
    .swiper-button-prev {
        right: 170px;
    }
    .swiper-button-next {
        right: 110px;
    }
    .dot2 {
        left: 670px;
        right: unset;
    }
    .text2 {
        left: 760px;
        right: unset;
    }
    .text1 {
        left: 840px;
        right: unset;
    }
    .dot1 {
        left: 760px;
        right: unset;
    }
    .swipe-nav {
        max-width: 1200px;
    }
}

.cntimg {
    display: none;
}

@media (max-width: 1350px) {
    .dot1 {
        left: 660px;
    }
    .text1 {
        left: 630px;
        top: 125px;
    }
    .text2 {
        top: 200px;
        left: 540px;
    }
    .text3 {
        top: 272px;
        left: 450px;
    }
    .text4 {
        top: 345px;
        left: 360px;
    }
    .text5 {
        top: 420px;
        left: 270px;
    }
    .center-circle {
        display: none;
    }
    .containerinner .lines {
        display: none;
    }
    .containerinner .dot {
        display: none;
    }
    .cntimg {
        max-width: 600px;
    }
    .containerinner {
        height: 500px;
    }
    .swipe-nav {
        max-width: 1100px;
    }
    .cntimg {
        display: block;
    }
}

@media (max-width: 1150px) {
    .cntimg {
        max-width: 500px;
    }
    .text1 {
        left: 520px;
        top: 100px;
    }
    .text2 {
        top: 165px;
        left: 450px;
    }
    .text3 {
        top: 225px;
        left: 365px;
    }
    .text4 {
        top: 285px;
        left: 290px;
    }
    .text5 {
        top: 345px;
        left: 215px;
    }
    .containerinner {
        height: 400px;
    }
    .swipe-nav {
        max-width: 1000px;
    }
}

@media (max-width: 1050px) {
    .cntimg {
        max-width: 400px;
    }
    .text {
        font-size: 15px;
    }
    .text1 {
        left: 420px;
        top: 75px;
    }
    .text2 {
        top: 125px;
        left: 355px;
    }
    .text3 {
        top: 185px;
        left: 290px;
    }
    .text4 {
        top: 220px;
        left: 230px;
    }
    .text5 {
        top: 270px;
        left: 170px;
    }
    .swipe-nav {
        max-width: 900px;
    }
}

.aboutm__left {
    position: relative;
    z-index: 2;
}

.containermob {
    display: none;
}

@media (max-width: 993px) {
    .cntimg,
    .containerinner {
        display: none;
    }
    .containermob {
        display: block;
    }
    .abo__text {
        margin-left: unset;
        text-align: center;
        max-width: 100%;
    }
    .containermob__item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    .containermob__item:last-child {
        margin-bottom: 0;
    }
    .containermob__item img {
        margin-right: 15px;
    }

    .containermob__text {
        font-size: 17px;
        font-weight: 400;
        line-height: 22px;
        color: var(--light-green);
    }
    .containermob {
        padding: 30px 0 0;
    }
    .whitespace {
        height: 45px;
    }
    .header {
        height: 55px;
    }
    .intro {
        margin: 8px 0 0px;
    }
}

.aboutmm-item img {
    max-width: 22px;
    max-height: 23px;
}

@media (max-width: 950px) {
    .swipe-nav {
        max-width: 800px;
    }

}

@media (max-width: 993px) {
    .develop__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .swipe-nav {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .wrapper {
        width: 100%;
    }
    .intro-wrapper,
    .aboutm__wrapper{
        flex-direction: column;
    }
    .intro-left,
    .aboutm__left {
        max-width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }
    .ab-wrapp {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .about {
        margin-bottom: 0;
    }
    .aboutmm__right {
        max-width: 100%;
    }
    .offer {
        margin-bottom: 0;
    }
    .cooperate {
        margin-bottom: 0;
    }
    .intro,
    .about {
        padding: 20px 0;
    }
    .abo__text h2,
    .aboutm__content h2,
    .aboutmm__right-content h2,
    .cooperate-content h2,
    .blog-title,
    .aboutmm__cnt h2,
    .ouroffer-left__content h1, .partner-content h1,
    .partner-content h2,
    .contact__top h1,
    .ccf-wrapper h2, .ccf-wrapper h3 {
        font-size: 24px;
        line-height: 32px;
    }
    .abo__text {
        text-align: left;
    }
    .containermob__item img {
        width: 40px;
        height: 40px;
    }
    .containermob__text,
    .aboutm__content, .aboutm__content p,
    .intro-left p,
    .about-right__content p,
    .cooperate-content, .cooperate-content p,
    .develop-text, .develop-text p,
    .develop-item__content, .develop-item__content p,
    .ouroffer-item__top-content p, .ouroffer-item__top-content li, .answer li,
    ul.accordion-list li div.answer p,
    .answer ul li,
    .answer ol li,
    .partner-content p,
    .contact__top p,
    .ct-item__inner p, .ct-item__inner a,
    .blog__item-text {
        font-size: 14px;
        line-height: 18px;
    }
    ul.accordion-list > li {
        margin-bottom: 10px;
    }
    .ouroffer-item {
        margin-bottom: 10px;
    }
    .aboutm__content h2 {
        margin-bottom: 15px;
    }
    .suptitle {
        margin-bottom: 15px;
    }
    .aboutmm-text, .aboutmm-item h3 {
        font-size: 18px;
    }
    .aboutmm-item {
        padding-bottom: 12px;
    }
    .offer {
        padding: 20px 0!important;
    }
    .cooperate {
        min-height: 300px;
        padding: 20px 0;
    }
    .develop {
        padding: 20px 0;
        margin-bottom: 0;
    }
    .container {
        display: flex;
        flex-direction: column;
         align-items: unset;
    }
    .swiper-button-prev {
        right: unset;
        left: 0;
    }
    .swiper-button-next {
        right: unset;
        left: 40px;
    }
    .swipe-nav {
        max-width: 200px;
    }
    .blog {
        padding: 20px 0;
    }
    .blog__wrapper {
        padding-top: 40px;
    }
    .swiper-button-prev,
    .swiper-button-next
    {
        height: 20px;
        width: 20px;
        top: 65px;
    }
    .swiper-button-prev:after,
    .swiper-button-next:after{
        height: 20px;
        width: 20px;
        background-size: contain;
    }
    .blog__wrapper {
        padding-left: 20px;
    }
    .blog__item-title {
        font-size: 18px;
    }
    .blog__item-text {
        font-size: 15px;
    }
    .blog {
        margin-bottom: 0;
    }
    .aboutmm__cnt {
        margin-top: 15px;
    }
    .form__inner input,
    .custom-select select {
        padding: 12px;
    }
    .develop__item {
        padding: 16px;
    }
    .develop__item img {
        width: 45px;
    }
    .link-center {
        display: flex;
        justify-content: center;
        margin: 25px auto 0;
    }
    .ooffer {
        padding: 25px 0;
    }
    .ouroffer {
        padding: 20px 0;
    }
    .ouroffer-item__top-title {
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        color: var(--green);
    }
    .ouroffer-item__top-number {
        font-size: 18px;
        max-width: 30px;
        height: 30px;
        margin-right: 15px;
    }
    .ouroffer-item__top-content {
        margin-top: 15px;
    }
    .ouroffer-item__top {
        margin-bottom: 20px;
    }
    .part,
    .partner {
        padding: 20px 0;
    }
    .partner-content {
        margin-bottom: 0;
    }
    .ct__top,
    .cff,
    .contact {
        padding: 20px 0;
    }
    .ct-icon {
        width: 42px;
        height: 42px;
        background: #A8D3D4;
        border-radius: 50%;
        position: relative;
        margin-right: 15px;
    }
    .ct-icon img {
        max-width: 18px;
    }
    .ct-item__inner img {
        margin-right: 10px;
        max-width: 15px;
    }
    .ct-item__content .ct-item__inner {
        margin-bottom: 15px;
    }
}

@media (min-width: 576px) {
    .blog__wrapper {
        padding-left: 40px;
        padding-right: 0px;
    }

}

@media (min-width: 0px) {
    .blog__wrapper {
        padding-left: 20px;
        padding-right: 0px;
    }
}

@media (max-width: 577px) {
    .develop__items {
        grid-template-columns: repeat(1, 1fr);
    }
    .form-item__textarea {
        min-height: 120px;
        max-height: 120px;
        padding: 12px;
    }
    .ct-icon {
        max-width: 42px;
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .footer-wrapper {
        flex-wrap: wrap;
    }
    .footer-left {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .footer-menu {
        margin-right: 0;
        width: 100%;
    }
    .footer-left {
        max-width: 100%;
        width: 100%;
        margin-bottom: 15px;
    }
    .footer__social {
        width: 100%;
        margin-bottom: 15px;
    }
    .footer-menu {
        margin-bottom: 15px;
    }
    .footer {
        padding: 30px 0;
    }
    .footer-right {
        width: 100%;
    }
    .footer-menu li, .footer-blog li {
        margin-right: 15px;
    }
    .down {
        padding: 20px 0;
    }
    .nm-item:nth-child(even) {
	border-right: none;
	}
}

@media (max-width: 577px) {
    .footer-menu ul {
        flex-direction: column;
    }
    .footer-menu li, .footer-blog li {
        margin-right: 0;
    }
    .footer-menu li, .footer-blog li {
        margin-bottom: 10px;
    }
    .footer-menu li:last-child, .footer-blog li:last-child {
        margin-bottom: 0;
    }
    .blog__item-head {
        min-height: 200px;
        max-height: 200px;
        margin-bottom: 24px;
    }
    .blog__item-head img {
        object-fit: cover;
        min-height: 200px;
        max-height: 200px;
        border-top-right-radius: 16px;
        border-top-left-radius: 16px;
    }
}

@media (max-width: 1300px) {
    .blog-items {
        grid-gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 993px) {
    .blog-items {
        grid-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
    .ouroffer-title {
        color: var(--light-green);
    }
}

.sp-inner .ouroffer-title {
    color: var(--light-green);
}

@media (max-width: 577px) {
    .blog-items {
        grid-gap: 20px;
        grid-template-columns: repeat(1, 1fr);
    }
    .nm-items {
		grid-template-columns: repeat(1, 1fr);	
	}
	.nm-item {
		border-right: none;
	}
}

.main {
	flex: 1;
}

body.archive .main {
	background: var(--light-green);
}

.wpcf7-response-output {
	color: #fff;
}