/* Fonts START */
@font-face {
    font-family: 'Roboto Condensed';
    src: local('Roboto Condensed SemiBold'), local('RobotoCondensed-SemiBold'),
        url('../fonts/RobotoCondensed-SemiBold.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: local('Roboto Condensed Regular'), local('RobotoCondensed-Regular'),
        url('../fonts/RobotoCondensed-Regular.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'),
        url('../fonts/RobotoCondensed-Light.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: local('Roboto Condensed Medium'), local('RobotoCondensed-Medium'),
        url('../fonts/RobotoCondensed-Medium.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'),
        url('../fonts/RobotoCondensed-Bold.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Fonts END */

/* Global START */
:root {
    --font: 'Roboto Condensed';
    --color-1: #7497B5;
    --color-1-hover: #6685a1;
    --color-2: #FBAB04;
    --color-3: #2A4560;
    --color-4: #EBEAF6;
    --color-3-hover: #233950;
    --color-black: #242222;
    --color-text: #656565;
}

* {
    box-sizing: content-box;
}


body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    min-width: 320px;
    position: relative;
    margin: 0;
    padding: 0;
    color: var(--color-black);
    overflow-x: hidden;
}



strong {
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.button {
    font-family: var(--font);
    display: inline-flex;
    column-gap: 10px;
    align-items: center;
    padding: 12px 35px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}

.button-icon img {
    vertical-align: middle;
    display: inline-block;
    margin-top: -4px;
}

.cookies-eu-banner {
    background: #444;
    color: #fff;
    padding: 6px;
    font-size: 13px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
    transition: opacity 0.3s ease-in-out;
}

.cookies-eu-banner .cookie-checkbox {
    display: none;
}

.cookies-eu-banner .accept-btn {
    display: inline-block;
    background: #222;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    padding: 4px 7px;
    margin: 2px 0;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.07s, color 0.07s, border-color 0.07s;
}

.cookies-eu-banner .accept-btn:hover {
    background: #fff;
    color: #222;
}

.cookie-checkbox:checked+.DOWPlOHnn8 {
    display: none;
}

.mirva-bar {
    background-color: #0f172a;
    color: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.mirva-frame {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.tQwSX7wlBn a {
    text-decoration: none;
    font-size: 2rem;
    font-weight: 800;
    color: #facc15;
    letter-spacing: 1px;
}

.mirva-left ul,
.UjJSoEyQXZ ul {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mirva-left a,
.UjJSoEyQXZ a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s;
}

.mirva-left a:hover,
.UjJSoEyQXZ a:hover {
    color: #facc15;
}

/* Hamburger */
.mirva-toggle {
    display: none;
}

.mirva-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 1.2rem;
}

.mirva-hamburger span {
    width: 26px;
    height: 3px;
    background-color: #facc15;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile menu */
.mirva-mobile {
    background-color: #0f172a;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.mirva-mobile ul {
    list-style: none;
    margin: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.mirva-mobile a {
    text-decoration: none;
    color: #facc15;
    font-size: 1.2rem;
    font-weight: 700;
}

.mirva-mobile a:hover {
    color: #ffffff;
}

.mirva-toggle:checked~.mirva-mobile {
    max-height: 300px;
}

.mirva-toggle:checked+.mirva-frame .mirva-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mirva-toggle:checked+.mirva-frame .mirva-hamburger span:nth-child(2) {
    opacity: 0;
}

.mirva-toggle:checked+.mirva-frame .mirva-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Responsive */
@media (max-width: 768px) {

    .mirva-left,
    .UjJSoEyQXZ {
        display: none;
    }

    .mirva-hamburger {
        display: flex;
        margin-top: 10px;
    }

}


.SLtnDKEA8k {
    background-color: var(--color-4);
    padding: 12px 30px;
    color: var(--color-1);
    overflow: hidden;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: 0.35s ease;
    z-index: 0;
    column-gap: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.SLtnDKEA8k:hover {
    color: #fff;
}

.SLtnDKEA8k::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-1-hover);
    transform: translateX(-98%);
    transition: 0.6s ease-out;
    z-index: -1;
}

.SLtnDKEA8k:hover::before {
    transform: none;
}

.SLtnDKEA8k-icon {
    display: inline-block;
}

.SLtnDKEA8k-icon img {
    vertical-align: middle;
}

.bg-color-1 {
    background-color: var(--color-1);
    transition: background-color 0.5s ease;
    color: #fff;
}

.bg-color-1:hover {
    background-color: var(--color-1-hover);
}

.bg-color-2 {
    background-color: var(--color-2);
    transition: background-color 0.5s ease;
}

.bg-color-2:hover {
    background-color: var(--color-2-hover);
}

.p-60 {
    padding: 60px 0;
}

.p-80 {
    padding: 80px 0;
}

.BFA4YCbE3L {
    padding: 100px 0;
}

.p-120 {
    padding: 120px 0;
}

.pb-100 {
    padding-bottom: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 20px;
}

h1 {
    font-size: 55px;
    line-height: 1.4;
}

h2 {
    font-size: 42px;
    line-height: 1.4;
}

h3 {
    font-size: 30px;
    line-height: 1.4;
}

h4 {
    font-size: 24px;
    line-height: 1.4;
}

ul,
ol {
    margin: 0 0 20px 0;
    padding: 0 0 0 15px;
}

ul.ul-styled,
ol.ol-styled {
    padding: 0;
}

ul.ul-styled li,
ol.ol-styled li {
    margin-bottom: 8px;
    list-style-type: none;
}

ol.ol-styled {
    counter-reset: num;
}

ul.ul-styled li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--color-1);
    margin-right: 10px;
}

ol.ol-styled li::before {
    counter-increment: num;
    content: counter(num)'.';
    display: inline-block;
    font-weight: 700;
    color: var(--color-1);
    margin-right: 10px;
}

p {
    margin-top: 0;
}

.title-left {
    text-align: left;
}

.title-center {
    text-align: center;
    margin-bottom: 50px;
}

.title-white .cFLvORVKgm {
    color: #fff;
}

.title-white .def-subtitle {
    color: #fff;
}

.title-white .def-desc {
    color: #C8C8C8;
}

.cFLvORVKgm {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-1);
}

.def-subtitle {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--color-black);
    line-height: 1.4;
}

.def-desc {
    color: var(--color-text);
}

.mt-30 {
    margin-top: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-60 {
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

.image-50 {
    display: flex;
    column-gap: 20px;
    margin-bottom: 25px;
}

.image-50 a,
.image-50 a img {
    display: block;
}

.image-50 a img {
    max-width: 100%;
    margin: 0 auto;
}

blockquote {
    background-color: #F6F3F3;
    border-left: 5px solid var(--color-1);
    padding: 25px 35px;
    margin: 0 0 25px 0;
    font-size: 18px;
    font-style: italic;
}

blockquote::before {
    content: '';
    display: block;
    background-image: url('../images/quote.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

blockquote p {
    margin-bottom: 0;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    color: var(--color-1);
}

/* Swiper Global START */
.swiper-pagination {
    position: static;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border-radius: 0;
    opacity: 1;
    background-color: #dfdfdf;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-1);
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: static;
    margin: 50px auto 0 auto;
    height: 6px;
    border-radius: 0;
    max-width: 400px;
    background-color: #ece7e7;
}

.swiper-scrollbar-drag {
    border-radius: 0;
    background-color: var(--color-1);
    cursor: pointer;
}

.swiper-scrollbar-drag:active {
    background: var(--color-1-hover);
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical>.swiper-scrollbar {
    border-radius: 0;
    width: 6px;
}

/* Swiper Global END */


fieldset {
    border: none;
    appearance: none;
    margin: 0;
    padding: 0;
}

/* MagnificPopup START */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap {
    opacity: 0;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    transform: scale(1.1);
}

.mfp-fade.mfp-wrap.mfp-ready {
    opacity: 1;
    transform: scale(1);
}

.mfp-fade.mfp-wrap.mfp-removing {
    opacity: 0;
    transform: scale(1.1);
}

.mfp-content .mfp-close {
    font-size: 40px;
    font-weight: 300;
    opacity: 1;
    width: 40px;
    height: 40px;
    right: -30px;
}

.form-alert {
    background-color: #fff;
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
    position: relative;
}

.form-alert .mfp-close {
    color: #fff;
    top: -35px;
    right: -35px;
}

.form-alert p {
    margin-bottom: 0;
    font-size: 18px;
}

/* MagnificPopup END */

/* Global END */

/* Preloader START */
.preloader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-3);
    z-index: 99;
    padding: 30px;
    transition: 1s ease;
}

.preloader-wrap.is-hidden {
    opacity: 0;
    transform: translateY(-110%);
}

.preloader-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader-item img {
    max-width: 70px;
    width: 100%;
}

.preloader-line {
    background-color: #e5e5e5;
    height: 5px;
    width: 200px;
    position: absolute;
    bottom: -20px;
}

#preloader-bar {
    width: 0;
    height: 100%;
    background: var(--color-1);
    transition: width 0.4s;
}

.preloader-close {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-1);
    cursor: pointer;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

/* Preloader END */

/* Cursor START */
#cursor {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100000;
    width: 10px;
    height: 10px;
    background-color: var(--color-2);
    background-repeat: no-repeat;
    background-size: 25px 25px;
    background-position: center center;
    display: block;
    user-select: none;
    pointer-events: none;
    border-radius: 100px;
    border: 1px solid var(--color-2);
    transition: width 0.5s ease, height 0.5s ease;
}

#cursor::before {
    content: '';
    display: block;
    background-image: url('../images/news-arrow-white.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    margin-left: -15px;
    transition: 0.5s 0.3s ease;
}

#cursor.is-link::before {
    opacity: 1;
    margin-left: 0;
}

#cursor::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    transition: width 0.5s ease, height 0.5s ease;
}

#cursor.is-link {
    width: 50px;
    height: 50px;
    box-shadow: 0px 2px 4px rgba(51, 45, 45, 0.24);
}

#cursor.is-link::after {
    width: 70px;
    height: 70px;
}

/* Cursor END */

/* Search START */
.search-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: rgba(30, 48, 65, 0.9);
    transition: 0.5s ease;
    transform: translateY(calc(-100% - 50px));
}

.search-wrap.is-active {
    transform: none;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.search-close:hover {
    transform: rotate(180deg);
}

.search-close img {
    max-width: 30px;
    display: block;
}

.search-container {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.search-container form {
    position: relative;
    width: 100%;
}

.search-container input {
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font);
    font-size: 20px;
    border-bottom: 1px solid #fff;
    padding: 0 0 15px 0;
    margin: 0;
    width: 0%;
    display: block;
    outline: none;
    transition-duration: 1s;
    transition-timing-function: ease;
}

.search-wrap.is-active .search-container input {
    width: 100%;
    transition-delay: 0.5s;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, .7);
}

.search-container button {
    background-color: var(--color-1);
    border: none;
    display: inline-block;
    width: 45px;
    height: 45px;
    cursor: pointer;
    position: absolute;
    bottom: 10px;
    right: 0;
    transition-duration: 1s;
    transition-timing-function: ease;
    opacity: 0;
    transform: translateY(-15px);
}

.search-wrap.is-active .search-container button {
    opacity: 1;
    transform: none;
    transition-delay: 1.5s;
}

.search-container button img {
    transition: 0.5s ease;
    display: block;
    margin: 0 auto;
}

.search-container button:hover img {
    transform: scale(1.1);
}

/* Search END */

/* Addon START */
.addon-wrap {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    height: 100%;
    z-index: 12000;
    box-shadow: 0px 2px 12.5px 1px rgba(69, 68, 68, 0.1);
    padding: 30px;
    color: #fff;
    overflow: auto;
    transition: 0.5s ease;
    transform: translateX(calc(100% + 20px));
    -ms-overflow-style: none;
    scrollbar-width: none;
    background-color: rgb(30, 48, 65);
}

.addon-wrap.is-active {
    transform: none;
}

.addon-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    padding-bottom: 20px;
    margin-bottom: 35px;
}

.addon-logo {
    display: flex;
    align-items: center;
}

.addon-logo img {
    max-width: 150px;
}

.addon-close {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    transition: transform 0.5s ease;
}

.addon-close:hover {
    transform: rotate(180deg);

}

.addon-close img {
    max-width: 30px;
    vertical-align: middle;
    display: block;
    width: 50%;
}

.addon-desc {
    margin-bottom: 30px;
}

.addon-desc p {
    font-size: 16px;
    color: #BDBDBD;
    margin-bottom: 0;
}

.addon-contacts-title {
    font-size: 24px;
    font-weight: 700;
}

.addon-el-item {
    display: flex;
    column-gap: 16px;
    margin-bottom: 25px;
}

.addon-el-title {
    font-size: 14px;
    color: #DADADA;
}

.addon-el-subtitle {
    font-size: 16px;
    font-weight: 700;
}

.addon-el-image {
    border: 1px solid #fff;
    padding: 14px 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.addon-el-image::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-1);
    z-index: -1;
    opacity: 0;
    transform: translateY(-100%);
    transition: 0.8s ease;
}

.addon-el-item:hover .addon-el-image::before {
    transform: none;
    opacity: 1;
}

.addon-el-image img {
    max-width: 20px;
}

.addon-footer {
    border-top: 1px solid rgba(255, 255, 255, .4);
    padding-top: 30px;
    margin-top: 50px;
}

.addon-social {
    display: flex;
}

.addon-social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .4);
}

.addon-social a {
    padding: 22px 15px;
    border-right: 1px solid rgba(255, 255, 255, .4);
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .4);
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    position: relative;
    overflow: hidden;
}

.addon-social a::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-1);
    z-index: -1;
    opacity: 0;
    transform: translateY(-100%);
    transition: 0.8s ease;
}

.addon-social a:hover::before {
    transform: none;
    opacity: 1;
}

.addon-social a img {
    max-width: 25px;
}

.backdrop {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: rgba(38, 40, 42, 0.7);
    z-index: 19;
    opacity: 0;
    visibility: hidden;
    transition: 0.7s ease;
}

.backdrop.is-active {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

/* Addon END */

/* Header START */
.s-header {
    background-color: var(--color-3);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.header-top {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .4)
}

.header-top .header-row {
    display: flex;
    justify-content: space-between;
}

.header-logo img {
    width: 170px;
}

.header-el-wrap {
    display: flex;
    column-gap: 30px;
}

.header-el-item {
    display: flex;
    column-gap: 12px;
    color: #fff;
}

.header-el-image {
    border: 1px solid #fff;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.header-el-image::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-1);
    z-index: -1;
    opacity: 0;
    transform: translateY(-100%);
    transition: 0.8s ease;
}

.header-el-item:hover .header-el-image::before {
    opacity: 1;
    transform: none;
}

.header-el-image img {
    width: 18px;
}

.header-el-title {
    font-size: 14px;
    color: #DADADA;
}

.header-el-subtitle {
    font-size: 16px;
    font-weight: 700;
}

.header-menu {
    margin-left: -20px;
}

.header-menu ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 100%;
    align-items: center;
}

.header-menu ul li {
    position: relative;
    height: 100%;
}

.header-menu ul li a {
    transition: 0.5s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 24px;
}

.header-menu ul li:hover>a {
    background-color: var(--color-1-hover);
}

.header-menu ul li.current-menu-item a {
    background-color: var(--color-1);
}

.header-bottom-row {
    display: flex;
    justify-content: space-between;
}

.menu-item-has-children>a::after {
    content: '';
    background-image: url('../images/caret.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-left: 5px;
    transform: translateX(10px);
    transition: 0.35s ease;
}

/* .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
} */
.menu-item-has-children:hover>ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.header-menu ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    z-index: 2;
    background-color: var(--color-3);
    min-width: 130px;
    height: auto;
    transition: 0.5s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    border: 1px solid rgba(255, 255, 255, .4);
    white-space: nowrap;
}

.header-menu ul.sub-menu ul.sub-menu {
    top: 0;
    left: 100%;
}

.header-menu ul.sub-menu .menu-item-has-children>a::after {
    transform: rotate(-90deg) translateY(8px);
    margin-left: auto;
}

.header-right {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.header-eltwo-wrap {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.header-eltwo-item:nth-last-child(n+2) {
    border-right: 1px solid rgba(255, 255, 255, .5);
    padding-right: 20px;
}

.header-eltwo-item img {
    vertical-align: middle;
}

.header-button a {
    display: block;
    height: 100%;
    background-color: var(--color-1);
    padding: 22px 25px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    transition: 0.5s ease;
}

.header-button a:hover {
    background-color: var(--color-1-hover);
}

.hamburger,
.header-mobile-wrap,
.header-mobile-search {
    display: none;
}

.scroller-wrap {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-3);
    z-index: 99;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0px 2px 7.4px -1px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    width: 35px;
    transition: 0.5s ease;
    transform: translateX(100px);
    border-radius: 50px;
}

.scroller-wrap.is-active {
    transform: none;
}

.scroller-wrap img {
    width: 40%;
    display: inline-block;
    margin: 0 auto;
}

.scroller-percent {
    font-size: 12px;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

#scroller-down {
    transform: rotate(180deg);
}

/* Header END */

/* Breadcrumbs START */
.HNYvCldsc3 {
    background-color: var(--color-3);
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}




.breadcrumbs-list {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    padding: 0;
}

.YPkuH9ywGH {
    font-weight: 700;
}

/* Breadcrumbs END */

/* Banner START */
.banner-wrap {}

.banner-wrap .swiper-slide {
    overflow: hidden;
    height: auto;
    background-color: var(--color-3);
}

.banner-content {
    position: relative;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    height: 100%;
}

.banner-content::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(24, 53, 62, 0.5);
    z-index: -1;
}

.banner-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 120px 0;
}

.banner-left {
    padding: 50px 20px;
}

.banner-toptitle {
    font-size: 16px;
    color: #D1CBCB;
    margin-bottom: 15px;
    display: inline-block;
}

.banner-title {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 650px;
    text-transform: uppercase;
}

.banner-btn {
    display: inline-block;
}

.banner-title>span {
    display: inline-block;
}

.banner-rectangle {
    width: 350px;
    height: 433px;
    position: absolute;
    top: -93px;
    left: -56px;
    transform: rotate(180deg) scaleY(-1);
}

.banner-rectangle span:nth-child(1) {
    width: 5px;
    left: 0;
    top: 0;
    animation: line_1 0.5s 2.5s ease forwards;
}

.banner-rectangle span:nth-child(2) {
    height: 5px;
    right: 0;
    top: 0;
    animation: line_2 1s 1.5s ease forwards;
}

.banner-rectangle span:nth-child(3) {
    width: 5px;
    right: 0;
    bottom: 0;
    animation: line_3 1s 0.5s ease forwards;
}

.banner-rectangle span:nth-child(4) {
    height: 5px;
    left: 0;
    bottom: 0;
    animation: line_4 1s 1.5s ease forwards;
}

.banner-rectangle span:nth-child(5) {
    width: 5px;
    left: 0;
    top: calc(100% - 45px);
    animation: line_5 1s 0.5s ease forwards;
}

.banner-wrap .swiper-pagination {
    left: auto;
    right: 20px;
    bottom: 40px;
    width: auto;
    position: absolute;
}

@keyframes line_1 {
    from {
        height: 0;
    }

    to {
        height: 38px;
    }
}

@keyframes line_2 {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes line_3 {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

@keyframes line_4 {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes line_5 {
    from {
        height: 0;
    }

    to {
        height: 45px;
    }
}


.banner-desc {
    max-width: 330px;
    color: #D7D7D7;
    margin-bottom: 30px;
}

.banner-wrap .swiper-button-prev {
    display: none;
}

.banner-wrap .swiper-button-prev,
.banner-wrap .swiper-button-next {
    width: 200px;
    height: 150px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}

.banner-wrap .swiper-button-prev::after,
.banner-wrap .swiper-button-next::after {
    display: none;
}

.banner-wrap .swiper-button-prev img,
.banner-wrap .swiper-button-next img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 1s ease;
    opacity: 1;
    transform: none;
}

.banner-wrap .swiper-button-prev.is-active img,
.banner-wrap .swiper-button-next.is-active img {
    transform: translateX(150px);
    opacity: 0;
}



.banner-wrap .swiper-button-next::after,
.banner-wrap .swiper-button-prev::after {
    font-size: 24px;
}

.banner-wrap .swiper-button-next {
    right: 0;
}

.banner-wrap .swiper-button-prev {
    left: 0;
}

[data-animate] {
    opacity: 0;
    transition: 1s ease;
}

[data-animate="zoom"] {
    transform: scale(2);
}

[data-animate="left"] {
    transform: translateX(-70px);
}

.animate-slide .swiper-slide-active [data-animate] {
    opacity: 1;
    transform: none;
}

.animate-slide .swiper-slide-active .banner-toptitle {
    transition-duration: 1s;
    transition-delay: 0.5s;
}

.animate-slide .swiper-slide-active .banner-title-text {
    transition-duration: 1s;
    transition-delay: 0.8s;
}

.animate-slide .swiper-slide-active .banner-desc {
    transition-delay: 1.1s;
}

.animate-slide .swiper-slide-active .banner-btn {
    transition-delay: 1.4s;
}

/* Banner END */

/* Numbers START */
.numbers-wrap {
    background-color: var(--color-3);
    color: #fff;
}

.numbers-row {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    column-gap: 100px;
}

.numbers-item {
    text-align: center;
}

.numbers-item:nth-last-child(n+2) {
    border-right: 1px solid rgba(255, 255, 255, .6);
    padding-right: 100px;
}

.numbers-title {
    font-size: 48px;
    font-weight: 700;
}

.numbers-subtitle {
    font-size: 20px;
    color: #dad8d8;
}

/* Numbers END */

/* About START */
.about-wrap {
    background-color: #f9f9f9;
    position: relative;
    z-index: 0;
}

.about-row {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 70px;
}

.about-left {
    /* width: 400px;
    height: 500px; */
    overflow: hidden;
    border: 1px solid var(--color-1);
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-right {
    width: 570px;
}

.about-list {
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.about-list li {
    list-style-type: none;
    display: flex;
    align-items: center;
    column-gap: 15px;
    font-weight: 500;
}

.about-list li:nth-last-child(n+2) {
    margin-bottom: 15px;
}

.about-list li span:nth-child(1) {
    border: 1px solid #c1c1c1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-list li span:nth-child(1) img {
    max-width: 30px;
}

.about-list li span:nth-child(2) a {
    transition: 0.5s ease;
}

.about-list li span:nth-child(2) a:hover {
    color: var(--color-1);
}

.about-feat-row {
    display: flex;
    column-gap: 20px;
}

.about-feat-item {
    border: 1px solid var(--color-1);
    background-color: #fff;
    padding: 35px;
}

.about-feat-icon {
    border: 1px solid var(--color-1);
    background-color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: background-color 0.5s ease;
}

.about-feat-item:hover .about-feat-icon {
    background-color: var(--color-1);
}

.about-feat-icon img {
    max-width: 32px;
    transition: filter 0.5s ease;
}

.about-feat-item:hover .about-feat-icon img {
    filter: brightness(10);
}

.about-feat-title {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 12px;
    transition: color 0.5s ease;
}

.about-feat-item:hover .about-feat-title {
    color: var(--color-1);
}

.about-feat-desc {
    color: var(--color-text);
}

.about-feat-desc p {
    margin-bottom: 0;
}

/* About END */

/* Features START */
.oj6OBviu7W {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
    color: #fff;
}

.news-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
}

.J5QObnWzw0 {
    max-width: 1200px;
    margin: 0 auto;
}

.news-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    justify-content: space-between;
}

.news-card {
    flex: 0 0 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.15);
}

.OnPtBHilG8 {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.OnPtBHilG8 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 16px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sXn89QypOs {
    font-size: 1.3rem;
    margin: 0 0 12px;
    line-height: 1.2;
    color: #111;
}

.news-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
    margin: 0;
    flex-grow: 1;
}

/* Адаптивність */

@media (max-width: 768px) {
    .news-slider {
        gap: 16px;
    }

    .news-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 40px 15px;
    }

    .news-card {
        flex: 0 0 100%;
    }
}

.features-title-wrap {
    margin-bottom: 30px;
}

.oj6OBviu7W .cFLvORVKgm,
.oj6OBviu7W .def-subtitle {
    color: #fff;
}

.oj6OBviu7W .def-subtitle {
    margin-bottom: 10px;
}

.oj6OBviu7W .def-desc {
    color: #C8C8C8;
}

.oj6OBviu7W::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 51, 69, 0.85);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.features-img {
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
}

.features-img img {
    max-width: 510px;
}

.features-right {
    max-width: 750px;
    margin-left: auto;
}

.features-row {
    display: flex;
    column-gap: 20px;
    position: relative;
}

.features-item {
    background-color: var(--color-1);
    padding: 20px;
    width: 33%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.7s ease;
    border: 1px solid transparent;
}

.features-item:hover {
    background-color: var(--color-1-hover);
    border-color: #fff;
}

.features-title {
    margin-bottom: 0;
    font-size: 18px;
}

.features-thumb {
    transition: transform 0.5s ease;
}

.features-item:hover .features-thumb {
    transform: translateY(-5px);
}

.features-thumb img {
    max-width: 55px;
}

/* Features END */

/* Services START */
.services-wrap {
    background-color: #F8F7FF;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.services-wrap::before {
    content: '';
    display: block;

    width: 184px;
    height: 184px;
    position: absolute;
    top: -40px;
    right: -30px;
    z-index: -1;
}

.services-wrap::after {
    content: '';
    display: block;

    width: 184px;
    height: 184px;
    position: absolute;
    bottom: -40px;
    left: -30px;
    z-index: -1;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.swiper-services .swiper-wrapper {
    counter-reset: number;
}

.services-row .services-item {
    width: calc(25% - 15px);
}

.services-item {
    position: relative;
    transition: 1s ease;
    border: 1px solid #c8c7c7;
    background-color: #fff;
    padding: 40px 30px;
    counter-increment: number
}

.services-item:hover {
    border-color: var(--color-1);
}

.services-item::before {
    content: counter(number);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-1);
    width: 40px;
    height: 40px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.services-item:hover .services-title {
    color: var(--color-1-hover);
}

.services-thumb {
    padding-bottom: 20px;
}

.services-thumb a {
    display: block;
}

.services-thumb a,
.services-thumb a img {
    display: block;
}

.services-icon {
    width: 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
    filter: grayscale(1)
}

.services-item:hover .services-icon {
    transform: scaleX(-1);
    filter: grayscale(0)
}

.services-icon img {
    width: 95%;
    margin: 0 auto;
}

.services-title {
    font-size: 20px;
    margin-bottom: 5px;
    transition: color 0.5s ease;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-cat {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-1);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services-desc {
    color: var(--color-text);
    margin-bottom: 40px;
}

.services-desc p {
    margin-bottom: 0;
}

.services-wrap .backdrop-image {
    position: absolute;
    right: -80px;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.services-wrap .backdrop-image img {
    max-width: 500px;
    display: block;
}

.services-arrow {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-1);
    background-color: var(--color-4);
    padding: 12px 25px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: color 0.35s ease;
}

.services-arrow::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-1-hover);
    transform: translateX(-99%);
    transition: 0.6s ease-out;
    z-index: -1;
}

.services-arrow:hover {
    color: #fff;
}

.services-arrow:hover::before {
    transform: none;
}

.services-arrow span:nth-child(2) {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-left: auto;
}

.services-arrow img {
    display: inline-block;
    width: 90%;
    transition: filter 0.3s ease, transform 0.35s ease;
}

.services-arrow:hover span:nth-child(2) img {
    transition-delay: 0.35s;
    transform: rotate(45deg);
    filter: brightness(10);
}

/* Services END */

/* Service START */
.service-content h2 {
    font-size: 38px;
}

.service-content p,
ul,
ol {
    margin-bottom: 30px;
}

.service-row {
    display: flex;
    column-gap: 30px;
}

.service-sidebar {
    height: 100%;
    position: sticky;
    top: 20px;
    min-width: 350px;
}

.service-sidebar-item {
    border: 1px solid var(--color-1);
    padding: 30px 30px;
    margin-bottom: 15px;
    background-color: #fff;
}

.sidebar-title {
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
}

.service-sidebar-ul {
    padding: 0;
    list-style-type: none;
    font-size: 16px;
    margin-bottom: 0;
}

.service-sidebar-ul li:nth-last-child(n+2) a {
    margin-bottom: 10px;
}

.service-sidebar-ul a {
    display: block;
    padding: 12px 25px;
    transition: 0.3s ease;
    background-color: var(--color-4);
    font-weight: 400;
    text-transform: uppercase;
}

.service-sidebar-ul a:hover {
    color: var(--color-1);
}

.service-pdf-item {
    display: flex;
    align-items: center;
    column-gap: 15px;
    border: 1px solid var(--color-1);
    padding: 10px 20px;
    color: var(--color-1);
    z-index: 0;
    position: relative;
    overflow: hidden;
    transition: color 0.5s ease;
}

.service-pdf-item:hover {
    color: #fff;
}

.service-pdf-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-1);
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform 0.5s ease;
    transform: translateY(calc(-100% - 10px));
}

.service-pdf-item:hover::before {
    transform: none;
}

.service-pdf-item:nth-last-child(n+2) {
    margin-bottom: 20px;
}

.service-pdf-item .pdf-icon img {
    max-width: 30px;
    vertical-align: middle;
    display: inline-block;
    transition: filter 0.5s ease;
}

.service-pdf-item:hover .pdf-icon img,
.service-pdf-item:hover .pdf-download img {
    filter: brightness(5);
}

.service-pdf-item .pdf-download {
    margin-left: auto;
}

.service-pdf-item .pdf-download img {
    max-width: 30px;
    vertical-align: middle;
    display: inline-block;
    transition: filter 0.5s ease;
}

.service-thumb {
    height: 350px;
    margin-bottom: 30px;
}

.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    width: 100%;
}

.service-content h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 15px;
}

.service-content p {
    color: var(--color-text);
}

.service-content li {
    color: #454444;
}

.image-two {
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.image-two a {
    width: calc(50% - 10px);
    display: block;
}

.image-two a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-normal .faq-item {
    max-width: none;
}

.faq-normal .faq-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-feat-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-feat-item {
    background-color: var(--color-4);
    border-left: 3px solid var(--color-1);
    padding: 20px;
    display: flex;
    column-gap: 20px;
    width: calc(50% - 10px);
}

.service-feat-title {
    font-weight: 700;
    font-size: 18px;
}

.service-feat-desc {
    color: var(--color-text);
}

.service-feat-icon img {
    width: 45px;
}

.video-section {
    height: 300px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.video-section::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 57, 77, 0.2);
}

.video-section .video-thumb {
    height: 100%;
}

.video-section .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-section .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-section .video-play a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    padding: 10px;
    background-color: var(--color-1);
    animation: video-pulse 2s infinite;
}

.video-section .video-play a img {
    transition: transform 0.5s ease;
}

.video-section .video-play:hover a img {
    transform: scale(1.1);
}

@keyframes video-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(21, 20, 123, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(174, 148, 186, 0);
    }
}

/* Service END */

/* Works START */
.works-wrap {
    background-color: var(--color-3);
}

.works-wrap .cFLvORVKgm,
.works-wrap .def-subtitle,
.works-wrap .def-desc {
    color: #fff;
}

.works-wrap .def-desc {
    color: #C8C8C8;
}

.works-tab {
    margin-bottom: 50px;
    text-align: center;
}

.works-tab ul {
    display: inline-flex;
    justify-content: center;
    column-gap: 50px;
    list-style-type: none;
    margin: 0;
    border: 1px dashed var(--color-1);
    padding: 0 40px;
}

.works-tab ul .works-tab-item {
    font-size: 16px;
    display: inline-block;
    position: relative;
}

.works-tab ul .works-tab-item a {
    display: block;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.works-tab ul .works-tab-item.is-active {
    font-weight: 700;
    color: var(--color-1);
}

.works-tab ul .works-tab-item.is-active a {}

.works-tab ul .works-tab-item.is-active a::before {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    position: absolute;
    bottom: -3px;
    left: 0;
    background-color: var(--color-1);

}

.works-tab-content {
    position: absolute;
    transform: scale(.8);
    opacity: 0;
    height: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.works-tab-content.is-active {
    position: static;
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
    height: auto;
}


.works-item {
    display: block;
    position: relative;
    overflow: hidden;
}

.works-item::after {
    content: '';
    display: block;
    background-image: url('../images/services-arrow.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 20px;
    right: 20px;
    transform: translateY(-50px);
}

.works-item:hover::after {
    transform: rotate(-45deg);
}

.works-thumb {
    height: 500px;
    overflow: hidden;
}

.works-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.works-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    background-color: var(--color-1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    transition: 0.3s ease;
    opacity: 0;
}

.works-item:hover .works-body {
    opacity: 1;
}

.works-cat {
    font-size: 16px;
    color: #E8E5E5;
}

.works-name {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.works-col-2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
}

.works-col-2-grid .works-item,
.works-col-3-grid .works-item,
.works-col-4-grid .works-item {
    width: 100%;
}

.works-col-3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

.works-col-4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}

.works-col-4-grid .works-body {
    padding: 20px;
}

.works-col-4-grid .works-thumb {
    height: 350px;
}

.works-col-4-grid .works-name {
    font-size: 24px;
}

.works-col-4-grid .works-cat {
    font-size: 14px;
    margin-bottom: 8px;
}

.masonry-grid .works-item {
    width: 100%;
}

.masonry-grid .works-thumb {
    height: auto;
}

.grid-item {
    float: left;
    margin-bottom: 25px;
    overflow: hidden;
}

.grid-item a,
.grid-item a img {
    display: block;
}

.masonry-grid-2 .grid-sizer,
.masonry-grid-2 .grid-item {
    width: calc(50% - 10px);
}

.masonry-grid-3 .grid-sizer,
.masonry-grid-3 .grid-item {
    width: calc(33.3% - 14px);
}

.masonry-grid-4 .grid-sizer,
.masonry-grid-4 .grid-item {
    width: calc(25% - 15px);
}

.masonry-grid-4 .works-body {
    padding: 20px;
}

.masonry-grid-4 .works-cat {
    font-size: 14px;
}

.masonry-grid-4 .works-name {
    font-size: 24px;
}

/* Works END */

/* Work START */
.work-row {
    display: flex;
    column-gap: 40px;
}

.work-sidebar {
    min-width: 350px;
    width: 350px;
    border: 1px solid var(--color-1);
    height: 100%;
    padding: 25px;
    position: sticky;
    top: 15px;
}

.work-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.work-info-item:nth-last-child(n+2) {
    margin-bottom: 10px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 14px;
}

.work-info-key {
    font-weight: 700;
}

.work-info-val {
    text-align: left;
}

.work-content {
    width: 100%;
}

.work-thumb {
    margin-bottom: 20px;
}

.work-thumb img {
    width: 100%;
    display: block;
}

.work-content h2 {
    font-size: 38px;
}

.work-content h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 15px;
}

.work-nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

.work-nav-item {
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding: 20px;
    z-index: 0;
}

.work-nav-item:first-child:hover .work-nav-icon {
    transform: translateX(-10px);
}

.work-nav-item:last-child:hover .work-nav-icon {
    transform: translateX(10px);
}

.work-nav-icon {
    transition: 0.5s ease;
}

.work-nav-icon img {
    max-width: 22px;
    vertical-align: middle;
}

/* Work END */

/* Gallery START */
.gallery-wrap .works-item {
    height: 450px;
    position: relative;
}

.gallery-wrap .works-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery-wrap .works-item:hover::before {
    transform: none;
    opacity: 1;
}

.gallery-wrap .works-item::after {
    content: '';
    display: block;
    background-image: url('../images/magnify.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 10px;
    transition: margin-top 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.gallery-wrap .works-item:hover::after {
    margin-top: 0;
    opacity: 1;
}

/* Gallery END */

/* News START */
.news-wrap {
    position: relative;
    overflow: hidden;
}

.news-wrap::before {
    content: '';
    display: block;
    background-image: url(../images/breadcrumbs-layer.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 363px;
    height: 375px;
    z-index: -1;
}

.news-wrap::after {
    content: '';
    display: block;
    background-image: url(../images/dots.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 184px;
    height: 184px;
    position: absolute;
    bottom: -40px;
    left: -30px;
}

.news-row {
    display: flex;
    align-items: center;
    column-gap: 50px;
}

.news-left {
    min-width: 350px;
    margin-left: 200px;
}

.news-right {
    width: 100%;
}

.news-wrap .container {
    max-width: none;
    padding: 0;
}

.news-row {
    width: 100%;
}

.swiper-news {
    padding-right: 50px;
}

.swiper-news .swiper-slide {
    max-width: 335px;
}

.news-item {
    border: 1px solid #DEDEDE;
}

.news-thumb {
    display: block;
    height: 250px;
    position: relative;
}

.news-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background-color: var(--color-1);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
}

.news-date strong {
    display: block;
    font-size: 25px;
    line-height: 1;
}

.news-body {
    padding: 20px 20px 30px 20px;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.35s ease;
}

.news-title:hover {
    color: var(--color-1);
}

.news-desc {
    color: #969494;
}

.news-readmore {
    background-color: var(--color-4);
    display: block;
    padding: 14px 18px;
    font-weight: 700;
    color: var(--color-1);
    position: relative;
    z-index: 0;
    transition: color 0.5s ease;
    overflow: hidden;
}

.news-readmore::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-1-hover);
    transform: translateX(-99%);
    transition: 0.6s ease-out;
    z-index: -1;
}

.news-readmore:hover {
    color: #fff;
}

.news-readmore:hover::before {
    transform: none;

}

.news-readmore::after {
    content: '';
    display: inline-block;
    background-image: url('../images/news-arrow.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 17px;
    height: 17px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5s;
    transition-delay: 0.5s;
}

.news-readmore:hover::after {
    background-image: url('../images/news-arrow-white.svg');

}

/* News END */

/* Team START */
.team-wrap {
    position: relative;
    z-index: 0;
    background-color: #F8F8F8;
}

.team-title-wrap {
    color: #fff;
}

.team-wrap.has-backdrop::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 430px;
    background-color: var(--color-3);
    z-index: -1;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-item {
    border: 1px solid var(--color-1);
    box-shadow: 0px 2px 12.5px 1px rgba(69, 68, 68, 0.1);
    background-color: #fff;
    width: calc(25% - 15px);
}

.team-item:hover .team-thumb img {
    transform: scale(1.1);
}

.team-thumb {
    height: 244px;
    display: block;
    overflow: hidden;
    position: relative;
}

.team-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 1s ease;
}

.team-body {
    padding: 30px;
    text-align: center;
}

.team-social {
    display: flex;
    justify-content: center;
    column-gap: 14px;
    margin-bottom: 20px;
}

.team-social a {
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    background-color: #F1EEEE;
    transition: 0.35s ease;
}

.team-social a:hover {
    background-color: var(--color-1);
}

.team-social a img {
    max-width: 16px;
    transition: 0.35s ease;
}

.team-social a:hover img {
    filter: brightness(10);
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-spec {
    color: #949191;
}

.team-scroll-row {
    display: flex;
    column-gap: 50px;
}

.team-scroll-left {
    min-width: 350px;
    max-width: 350px;
    position: sticky;
    top: 30px;
    height: 100%;
}

.team-scroll-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.team-scroll-right {
    margin: 0 auto;
}

.team-scroll-grid .team-item {
    width: calc(33.3% - 14px);
}

.marquee-wrap {
    background-color: #f6f6f6;
    border-top: 1px solid #dad7d7;
    padding: 40px 0;
    overflow: hidden;
}

.marquee-row {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.marquee-row:hover {
    animation-play-state: paused;
}

.marquee-forward {
    animation: marqueeForward 15s linear infinite;
}

@keyframes marqueeForward {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee-item {
    font-family: sans-serif;
    font-size: 56px;
    text-transform: uppercase;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-black);
    -webkit-text-fill: var(--color-black);
    display: flex;
    align-items: center;
    transition: 0.5s ease;
    position: relative;
}

.marquee-item:hover {
    -webkit-text-stroke: 1px #fff;
}

.marquee-item::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: height .8s cubic-bezier(.22, .61, .36, 1);
    -webkit-text-fill-color: var(--color-black);
    -webkit-text-stroke: transparent;
}

.marquee-item:hover::before {
    height: 100%;
}

.marquee-item::after {
    content: '*';
    line-height: 1;
    margin-left: 40px;
    vertical-align: middle;
    font-size: 70px;
    padding-top: 20px;
    transition: 0.3s ease;
}

.marquee-item:hover::after {
    -webkit-text-fill-color: var(--color-black);
    -webkit-text-stroke: transparent;
}

.team-single-row {
    display: flex;
    column-gap: 50px;
}

.team-single-left {
    min-width: 380px;
    width: 380px;
    height: 480px;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.team-single-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-info-social {
    display: flex;
    column-gap: 14px;
    margin-bottom: 50px;
}

.team-info-social a {
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    background-color: #F1EEEE;
    transition: 0.35s ease;
}

.team-info-social a:hover {
    background-color: var(--color-1);
}

.team-info-social a img {
    max-width: 16px;
    transition: 0.35s ease;
}

.team-info-social a:hover img {
    filter: brightness(10);
}

.team-single p {
    color: var(--color-text);
}

.team-subtitle {
    margin-bottom: 10px;
    line-height: 1.3;
}

.team-single-spec {
    font-size: 18px;
    font-weight: 500;
    color: #554F4F;
    margin-bottom: 20px;
}

.team-single-desc {
    margin-bottom: 30px;
}

.team-info {
    margin-bottom: 25px;
}

.team-info-item {
    display: flex;
    column-gap: 25px;
}

.team-info-item:nth-last-child(n+2) {
    margin-bottom: 10px;
}

.team-info-title {
    font-weight: 700;
}

.team-progress {
    margin-bottom: 30px;
}

.progress-white-bg .progress-line {
    background-color: #f3f0f0;
}

.team-awards-images a img {
    max-width: 200px;
    width: 100%;
}

/* Team END */


/* Reviews START */
.reviews-wrap {
    background-color: #F8F8F8;
    padding-bottom: 50px;
}

.Z3QCm0pr1f {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.reviews-left {
    min-width: 350px;
}

.reviews-right {
    width: 100%;
}

.swiper-reviews {
    height: 320px;
}

.H1JaavFCa7 {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.reviews-text {
    margin-bottom: 40px;
    color: #515151;
    font-size: 18px;
}

.reviews-text p {
    margin-bottom: 0;
}

.M6ph7yK3ep {
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.reviews-thumb {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border: 1px solid var(--color-1);
}

.reviews-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s4FmTdjTiM {
    color: #AAA2A2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.reviews-spec {
    font-size: 20px;
    font-weight: 500;
}

/* Reviews END */

/* Partners START */
.partners-item {
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners-item img {
    margin: 0 auto;
    display: block;
}

.partners-item img:nth-child(1) {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 150px);
    transition: 0.8s ease;
    filter: blur(10px);
}

.partners-item img:nth-child(2) {
    position: relative;
    transition: 0.8s ease;
}

.partners-item:hover img:nth-child(1) {
    transform: translate(-50%, 0);
    filter: none;
}

.partners-item:hover img:nth-child(2) {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
}

.swiper-partners .swiper-wrapper {
    display: flex;
    align-items: center;
}

/* Partners END */

/* Workflow START */
.workflow-wrap {
    background-color: #F2F2F2;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.workflow-wrap::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../images/geometry-1.png');
    height: 100%;
    width: 100%;
    z-index: -1;
}

.workflow-title-wrap {
    margin-bottom: 40px;
}

.workflow-row {
    display: flex;
    column-gap: 25px;
    max-width: 930px;
}

.workflow-item {
    border: 1px solid var(--color-1);
    padding: 40px 35px 140px 35px;
    position: relative;
    background-color: #fff;
    width: 33%;
}

.workflow-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
}

.workflow-desc p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
}

.workflow-num {
    background-color: var(--color-3);
    color: #fff;
    font-weight: 700;
    font-size: 35px;
    display: inline-block;
    padding: 8px 25px 8px 40px;
    position: absolute;
    left: 0;
    bottom: 30px;
}

.workflow-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: -1;
    width: 610px;
    overflow: hidden;
}

.workflow-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Workflow END */

/* Form START */
.form-wrap {
    position: relative;
    z-index: 0;
    background-color: #eceaea;
    overflow: hidden;
}



.form-title-wrap {
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.form-touch {
    background-color: var(--color-3);
    padding: 60px 70px;
    min-width: 490px;
}

.form-label {
    display: block;
    position: relative;
    margin-bottom: 25px;
}

.form-label .iyhSFSEo4k {
    position: absolute;
    left: 0;
    top: 4px;
    display: inline-block;
}

.form-label .inp-message-icon {
    top: -2px;
}

.form-label .iyhSFSEo4k img {
    display: inline-block;
    vertical-align: middle;
}

.form-label input,
.form-label textarea {
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font);
    font-size: 16px;
    border-bottom: 1px solid #fff;
    padding: 0 0 0 40px;
    margin: 0;
    width: 100%;
    display: block;
    outline: none;
    height: 46px;
}

.form-label input::placeholder,
.form-label textarea::placeholder {
    color: #e0e0e0;
}

.form-label textarea {
    height: 100px;
}

.form-button .button {
    padding: 16px 35px;
    font-size: 16px;
}

.faq-wrap {
    background-color: #fff;
    border: 1px solid var(--color-1);
    padding: 50px 40px;
}

.faq-title-wrap {
    margin-bottom: 28px;
}

.faq-item {
    border: 1px solid #D5D5D5;
    cursor: pointer;
    max-width: 459px;
}

.faq-item:nth-last-child(n+2) {
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    font-weight: 500;
    font-size: 18px;
    user-select: none;
}

.faq-text {
    margin-right: 15px;
}

.faq-num {
    font-weight: 700;
    margin-right: 10px;
}

.faq-arrow {
    margin-left: auto;
    background-color: #EEEEEE;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
}

.faq-item.active .faq-arrow {
    background-color: var(--color-1);
}

.faq-arrow img {
    vertical-align: middle;
}

.faq-item.active .faq-arrow img {
    filter: brightness(10);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 18px 25px;
    border-top: 1px solid #D7D7D7;
    display: none;
}

.faq-answer p {
    margin-bottom: 0;
    color: var(--color-text);
}

/* Form END */


/* FAQ START */
.faq-inner-wrap .faq-grid {
    display: flex;
    column-gap: 30px;
}

.faq-inner-wrap .faq-group {
    width: 50%;
}

.faq-inner-wrap .faq-item {
    max-width: none;
}


.ask-form-wrap {
    background-color: var(--color-3);
}

.ask-form-wrap form {
    max-width: 500px;
    margin: 0 auto;
}

/* FAQ END */

/* Newsletter START */
.newletter-wrap {
    background-color: var(--color-3);
    color: #fff;
    padding: 86px 0;
    position: relative;
    z-index: 0;
}

.newletter-wrap::after {
    content: '';
    background-image: url('../images/geometry-2.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: block;
    bottom: 0;
    right: 0;
    position: absolute;
    width: 546px;
    height: 312px;
    z-index: -1;
}

.newsletter-title-wrap {
    display: flex;
    column-gap: 20px;
}

.newsletter-title-wrap .cFLvORVKgm {
    line-height: 1;
}

.newsletter-title-wrap .def-subtitle {
    font-size: 38px;
}

.newsletter-title-wrap .title-left {
    background-color: var(--color-1);
    min-width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-title-wrap .title-left img {
    display: block;
    max-width: 45px;
}

.newsletter-title-wrap {
    margin-bottom: 35px;
}

.newsletter-form form {
    display: flex;
    position: relative;
    width: 512px;
}

.newsletter-form .form-label {
    margin-bottom: 0;
    width: 100%;
}

.newsletter-btn {
    position: absolute;
    right: 0;
    bottom: 10px;
    overflow: hidden;
}

.newsletter-btn .send-icon {
    margin-right: 6px;
    display: inline-block;
    position: relative;
}

.newsletter-btn .send-icon img {
    max-width: 14px;
    vertical-align: middle;
}

.newsletter-btn .send-icon img:nth-child(1) {
    position: relative;
    transition: 0.5s ease;
}

.newsletter-btn .send-icon img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-20px);
    filter: blur(2px);
    transition: 0.5s ease;
    opacity: 0;
}

.newsletter-btn:hover .send-icon img:nth-child(1) {
    opacity: 0;
}

.newsletter-btn:hover .send-icon img:nth-child(2) {
    transform: none;
    filter: none;
    opacity: 1;
}

/* Newsletter END */

/* Progress START */
.skills-wrap {
    background-color: var(--color-3);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.skills-title-wrap {
    margin-bottom: 40px;
}

.skills-row {
    display: flex;
    column-gap: 45px;
}

.skills-left {
    max-width: 550px;
}

.progress-top {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}

.progress-line {
    width: 100%;
    height: 12px;
    background-color: #fff;
}

.progress-top {
    margin-bottom: 12px;
}

.progress-drag {
    background-color: var(--color-1);
    width: 0;
    height: 100%;
    transition: 0.5s ease-out;
}

.progress-item:nth-last-child(n+2) {
    margin-bottom: 20px;
}

.skills-right {
    overflow: hidden;
    width: 440px;
    height: 650px;
    margin-top: -100px;
    margin-left: auto;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    position: relative;
}

.skills-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skills-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.skills-play a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    padding: 10px;
    background-color: var(--color-1);
    animation: pulse-animation 2s infinite;
}

.skills-play a img {
    width: 35px;
    height: 35px;
    transition: 0.5s ease;
}

.skills-play a:hover img {
    transform: scale(1.1);
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(43, 38, 205, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(135, 27, 185, 0);
    }
}

.progress-drag.progress-60 {
    width: 60%;
}

.progress-drag.progress-65 {
    width: 65%;
}

.progress-drag.progress-70 {
    width: 70%;
}

.progress-drag.progress-75 {
    width: 75%;
}

.progress-drag.progress-80 {
    width: 80%;
}

.progress-drag.progress-85 {
    width: 85%;
}

.progress-drag.progress-90 {
    width: 90%;
}

.progress-drag.progress-95 {
    width: 95%;
}

.progress-drag.progress-100 {
    width: 100%;
}

/* Progress END */

/* Blog START */
.blog-row {
    display: flex;
    column-gap: 40px;
}

.blog-wrap {
    width: 100%;
}

.blog-classic .blog-thumb {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-classic .blog-thumb a {
    display: block;
    height: 100%;
}

.blog-classic .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-classic .blog-meta {
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.blog-classic .blog-meta ul {
    list-style-type: none;
    display: flex;
    column-gap: 10px;
    padding: 0;
    margin-bottom: 0;
}

.blog-classic .blog-meta ul li {
    color: #616060;
}

.blog-classic .blog-meta ul strong {
    color: #000;
}

.blog-classic .blog-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.blog-excerpt {
    margin-bottom: 20px;
}

.blog-excerpt p {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 0;
}

.blog-list .blog-meta {
    margin-bottom: 10px;
}

.blog-list .blog-meta ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    column-gap: 10px;
    color: #616060;
    margin-bottom: 0;
}

.blog-list .blog-title {
    font-size: 24px;
    margin-bottom: 15px;
    transition: color 0.35s ease;
}

.blog-list .blog-meta ul strong {
    color: #000;
}

.blog-list .blog-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #DEDEDE;
}

.blog-item:hover .blog-title {
    color: var(--color-1);
}

.blog-list .blog-thumb {
    height: 100%;
    width: 260px;
}

.blog-list .blog-thumb a {
    display: block;
    height: 100%;
}

.blog-list .blog-thumb a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-list .list-right {
    padding: 30px 15px 30px 25px;
}

.blog-list .blog-excerpt {
    margin-bottom: 0;
}

.blog-grid .blog-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-grid .blog-item {
    border: 1px solid #DEDEDE;
}

.blog-grid .blog-body {
    padding: 0 20px 20px 20px;
}

.blog-grid .blog-thumb {
    height: 220px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-grid .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-grid .blog-meta {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d5d2d2;
}

.blog-grid .blog-meta ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    column-gap: 10px;
    row-gap: 5px;
    flex-wrap: wrap;
}

.blog-grid .blog-meta ul li {
    color: #616060;
}

.blog-grid .blog-meta ul li strong {
    color: #000;
}

.blog-grid .blog-title {
    transition: color 0.5s ease;
    font-size: 25px;
    line-height: 1.3;
}

.blog-title a {
    transition: color 0.5s ease;
}

.blog-grid .blog-title:hover {
    color: var(--color-1);
}

.blog-btn .button {
    font-size: 14px;
}

.widget-area {
    width: 350px;
    min-width: 350px;
    border: 1px solid var(--color-1);
    padding: 25px;
    height: 100%;
    margin-left: auto;
}

.blog-classic .blog-item {
    margin-bottom: 50px;
}

.paginations {
    margin-top: 70px;
    --padding: 12px 15px;
}

.paginations ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 12px;
    row-gap: 15px;
}

.paginations ul li a {
    display: block;
    padding: var(--padding);
    background-color: #e6e6e6;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.paginations ul li .current {
    display: block;
    padding: var(--padding);
    background-color: var(--color-1);
    color: #fff;
    font-weight: 700;
}

.paginations ul li a:hover {
    background-color: var(--color-1-hover);
    color: #fff;
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.widget_categories ul {
    list-style-type: none;
    padding: 0;
}

.widget_categories ul li {
    display: flex;
    align-items: center;
    color: #373535;
}

.widget_categories ul li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--color-1);
    margin-right: 10px;
    vertical-align: middle;
}

.widget_categories ul li:hover {
    color: var(--color-black);
}

.widget_categories ul li:nth-last-child(n+2) {
    margin-bottom: 10px;
}

.widget_search form {
    display: flex;
}

.widget_search input {
    border: none;
    background-color: #f6f2f2;
    padding: 14px 20px;
    font-size: 14px;
    outline: none;
    font-family: var(--font);
    width: 100%;
}

.widget_search button {
    background-color: var(--color-1);
    border: none;
    outline: none;
    display: block;
    cursor: pointer;
    padding: 0 12px;
    transition: background-color 0.35s ease;
}

.widget_search button:hover {
    background-color: var(--color-1-hover);
}

.widget_search button img {
    width: 19px;
    height: 18px;
}

.widget_recent_entries ul {
    padding: 0;
}

.widget_recent_entries ul li {
    display: flex;
    column-gap: 12px;
}

.widget_recent_entries ul li:nth-last-child(n+2) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d5d2d2;
}

.recent-thumb {
    width: 70px;
    height: 70px;
    display: block;
}

.recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.widget_recent_entries .post-date {
    font-size: 14px;
    font-weight: 700;
    color: #585555;
}

.widget_recent_entries .recent-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    display: block;
    transition: color 0.35s ease;
}

.widget_recent_entries .recent-title:hover {
    color: #424040;
}

.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
}

.tagcloud li a {
    border: 1px solid #cccccc;
    padding: 8px 15px;
    display: block;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    transition: 0.5s ease;
}

.tagcloud li a:hover {
    background-color: var(--color-1-hover);
    color: #fff;
}

/* Blog END */

/* Article START */
.article-row {
    display: flex;
    column-gap: 40px;
}

.article-content {
    width: 100%;
    border-bottom: 1px solid #E1E1E1;
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content a {
    color: var(--color-1);
    text-decoration: underline;
}

.article-content img {
    max-width: 100%;
}

.article-content ul {
    padding: 0;
    margin-bottom: 25px;
}

.article-content ul li {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.article-content ul li:nth-last-child(n+2) {
    margin-bottom: 10px;
}

.article-content ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: var(--color-1);
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.article-content ul.tagcloud li {
    margin-bottom: 0;
}

.article-content ul.tagcloud li::before {
    display: none;
}

.article-content ul.tagcloud li a {
    color: var(--color-black);
    text-decoration: none;
}

.article-content ul.tagcloud li a:hover {
    color: #fff;
}

.article-content blockquote p {
    margin-bottom: 0;
}

.article-thumb {
    height: 380px;
    overflow: hidden;
    margin-bottom: 20px;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-wrap .blog-meta {
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.article-wrap .blog-meta ul {
    display: flex;
    column-gap: 10px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.article-wrap .blog-meta ul li {
    margin-bottom: 0;
}

.article-wrap .blog-meta ul li::before {
    display: none;
}

.article-wrap .blog-meta strong {
    color: #000;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E1E1E1;
    padding-top: 30px;
}

.nav-links a {
    display: block;
    color: var(--color-black);
    text-decoration: none;
}

.nav-arrow img {
    max-width: 12px;
}

.nav-head {
    margin-bottom: 8px;
    column-gap: 8px;
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.nav-links a:hover .nav-head {
    opacity: 1;
}

.nav-links a:hover .nav-title {
    color: var(--color-1);
}

.nav-title {
    font-size: 18px;
    font-weight: 700;
    transition: color 0.5s ease;
}

.nav-next {
    text-align: right;
}

.nav-next .nav-head {
    justify-content: flex-end;
}

.comment-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.comment-list .comment {
    margin-bottom: 40px;
}

.comment-list .children {
    list-style-type: none;
    padding-left: 120px;
    margin-top: 50px;
}

.comment-list .comment-body {
    display: flex;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #E1E1E1;
}

.comment-author {
    margin-right: 30px;
    min-width: 90px;
    width: 90px;
    height: 90px;
}

.comment-author img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-meta {
    display: flex;
    column-gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.comment-meta cite {
    font-style: normal;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.comment-meta cite::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #1c1b1b;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 15px;
}

.comment-meta time {
    color: #524e4e;
}

.comment-text {
    color: #515151;
    margin-bottom: 20px;
}

.comment-text p {
    margin-bottom: 0;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    padding: 6px 20px;
    border: 1px solid #8F8D8D;
    text-transform: uppercase;
    font-weight: 500;
    color: #8F8D8D;
    z-index: 0;
    position: relative;
    overflow: hidden;
    transition: color 0.35s ease;
}

.comment-reply-link:hover {
    color: #fff;
}

.comment-reply-link::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-1);
    z-index: -1;
    transition: transform 0.35s ease;
    transform: translateX(calc(-100% - 10px));
}

.comment-reply-link:hover::before {
    transform: none;
}

.comment-reply-link span:first-child img {
    max-width: 15px;
    margin-top: -4px;
    vertical-align: middle;
    transition: 0.35s ease;
}

.comment-reply-link:hover span:first-child img {
    filter: brightness(5);
}

.comment-respond .comment-reply-title {
    margin-bottom: 45px;
}

.comment-form .form-label input,
.comment-form .form-label textarea {
    border-bottom: 1px solid #d1cfcf;
    color: var(--color-black);
}

.comment-form .form-label input::placeholder,
.comment-form .form-label textarea::placeholder {
    color: #a5a5a5;
}

.comment-form .form-label .iyhSFSEo4k {
    top: 6px;
}

.comment-form .form-label .inp-message-icon {
    top: -2px;
}

.form-agree-label {
    user-select: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 25px;
}

.form-agree-label input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #b9b8b8;
    border-radius: 0;
    margin: 0;
    transition: background-color 0.3s ease;
}

.form-agree-label input:checked {
    background-color: var(--color-1);
    border-color: var(--color-1);
    background-image: url('../images/check-white.svg');
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: center center;
}

/* Article END */

/* Contact START */

.bsEZ49t265 {
    display: flex;
    align-items: center;
    column-gap: 100px;
    margin-bottom: 100px;
}

.getting-left {
    width: 460px;
}

.getting-right {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 60px;
}

.getting-item {
    display: flex;
    width: calc(50% - 30px);
    column-gap: 18px;
}

.getting-icon {
    width: 38px;
}

.getting-icon img {
    max-width: 38px;
}

.cvRxVhGvLl {
    font-weight: 500;
    color: var(--color-1);
}

.NTF1tJHnVK {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
}

.contact-map {
    height: 600px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* Contact END */

/* Error START */
.error-wrap {
    text-align: center;
    background-color: var(--color-3-hover);
    color: #fff;
    position: relative;
}

.error-wrap::before {
    content: '';
    display: block;
    background-image: url('../images/breadcrumbs-layer.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 263px;
    height: 275px;
}

.error-wrap::after {
    content: '';
    display: block;
    background-image: url('../images/breadcrumbs-layer.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 263px;
    height: 275px;
    transform: scale(-1);
}

.error-title {
    font-size: 90px;
    line-height: 1;
    margin-bottom: 10px;
}

.error-subtitle {
    font-size: 50px;
    text-transform: uppercase;
}

.error-desc {
    color: #efeeee;
    margin-bottom: 34px;
}

/* Error END */

/* Footer START */
.s-footer {
    background-color: #24303b;
    color: #fff;
    padding-bottom: 20px;
    overflow: hidden;
}

.footer-disclaimer-alt {
    background: linear-gradient(135deg, #f9f9f9, #ededed);
    color: #333;
    padding: 30px 35px;
    border-left: 6px solid #facc15;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.03);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-disclaimer-alt h5 {
    font-size: 1.2rem;
    color: #facc15;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-disclaimer-alt p {
    margin-bottom: 12px;
}

@media (max-width: 576px) {
    .footer-disclaimer-alt {
        padding: 20px;
        font-size: 0.9rem;
    }

    .footer-disclaimer-alt h5 {
        font-size: 1.05rem;
    }
}

.RvcDMssRyQ {
    padding: 40px 0;
    display: flex;
    justify-content: space-evenly;
    ;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    margin-bottom: 60px;
}

.footer-logo img {
    width: 170px;
    display: block;
}

.footer-info-wrap {
    display: flex;
    column-gap: 60px;
}

.footer-info-item {
    display: flex;
}

.footer-info-icon {
    padding: 10px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.footer-info-icon::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-1);
    z-index: -1;
    opacity: 0;
    transform: translateY(-100%);
    transition: 0.8s ease;
}

.footer-info-item:hover .footer-info-icon::before {
    transform: none;
    opacity: 1;
}

.footer-info-icon img {
    max-width: 18px;
}

.footer-info-title {
    font-size: 14px;
    color: #DADADA;
}

.footer-info-value {
    font-weight: 700;
    font-size: 16px;
}

.sYtdchHhbB {
    margin-bottom: 50px;
}

.footer-title {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.rXYlmX8PFo {
    display: flex;
    column-gap: 100px;
    justify-content: space-evenly;
}

.BVEYaF7cPA-title {
    font-size: 20px;
    font-weight: 700;
}

.footer-ul {
    padding: 0;
    list-style-type: none;
}

.footer-ul li a {
    color: #D1D0D0;
    transition: 0.5s ease;
}

.footer-ul li a:hover {
    color: #fff;
}

.footer-ul li:nth-last-child(n+2) {
    margin-bottom: 15px;
}

.BVEYaF7cPA iframe {
    display: block;
    max-width: 400px;
    height: 200px;
}

.footer-bottom {

    display: flex;
    align-items: center;
    column-gap: 30px;
    justify-content: space-evenly;
    ;
    padding: 0 0 0 25px;
}

.footer-copyright {
    color: #D1D0D0;
}

.footer-bottom-nav ul {
    padding: 0;
    list-style-type: none;
    display: flex;
    column-gap: 20px;
    margin-bottom: 0;
}

.footer-bottom-nav ul li a {
    color: #D1D0D0;
    transition: 0.5s ease;
}

.footer-bottom-nav ul li a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    align-items: center;
}

.footer-social a {
    display: block;
    padding: 20px 16px;
    border-left: 1px solid rgba(255, 255, 255, .4);
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-1);
    z-index: -1;
    opacity: 0;
    transform: translateY(-100%);
    transition: 0.8s ease;
}

.footer-social a:hover::before {
    transform: none;
    opacity: 1;
}

.footer-social a img {
    display: inline-block;
    vertical-align: middle;
}

.footer-social a img {
    max-width: 20px;
}

/* Footer END */



/* Responsive START */
@media screen and (max-width: 1200px) {

    /* Features 1200 START */
    .features-left {
        display: none;
    }

    .features-right {
        margin-left: 0;
        max-width: none;
    }

    /* Features 1200 END */

    /* News 1200 START */
    .news-left {
        margin-left: 30px;
    }

    /* News 1200 END */

    /* Workflow 1200 START */
    .form-wrap .form-touch {
        min-width: 490px;
    }

    .form-wrap .form-row {
        justify-content: center;
    }

    /* Workflow 1200 END */

    /* Newsletter 1200 START */
    .newletter-wrap::after {
        width: 420px;
        height: 230px;
    }

    /* Newsletter 1200 END */

    /* Team 1200 START */
    .team-scroll-grid .team-item {
        width: calc(50% - 10px);
    }

    /* Team 1200 END */

    /* Blog 1200 START */
    .blog-grid .blog-wrap {
        gap: 20px;
    }

    .blog-grid .blog-meta ul {
        font-size: 14px;
    }

    /* Blog 1200 END */

    /* Service 1200 START */
    .service-sidebar {
        min-width: 300px;
    }

    /* Service 1200 END */

    /* Work 1200 START */
    .work-sidebar {
        width: 300px;
        min-width: 300px;
    }

    /* Work 1200 END */

    /* Footer 1200 START */
    .rXYlmX8PFo {
        column-gap: 80px;
    }

    /* Footer 1200 END */

}

@media screen and (max-width: 1024px) {

    /* Global 1024 START */
    #cursor {
        display: none;
    }

    /* Global 1024 END */

}

@media screen and (max-width: 992px) {

    /* Global 992 START */
    .p-80 {
        padding: 60px 0;
    }

    .BFA4YCbE3L {
        padding: 80px 0;
    }

    /* Global 992 END */

    /* Header 992 START */
    .hamburger,
    .header-mobile-search {
        display: block;
        cursor: pointer;
    }

    .hamburger img {
        width: 30px;
    }

    .header-mobile-search img {
        width: 22px;
    }

    .header-mobile-search {
        margin-left: auto;
        margin-right: 20px;
    }

    .header-top {
        padding: 10px 0;
    }

    .header-el-wrap {
        display: none;
    }

    .header-bottom-row {
        display: none;
    }

    .header-logo img {
        max-width: 160px;
    }

    .header-row {
        align-items: center;
    }

    .header-mobile-wrap {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-3);
        color: #fff;
        z-index: 9;
        padding: 20px 30px;
        transition: 0.8s ease;
        transform: translateX(calc(100% + 20px));
        overflow-y: auto;
    }

    .header-mobile-wrap.is-active {
        transform: none;
    }

    .header-mobile-row {
        display: flex;
        align-items: center;
    }

    .header-mobile-left,
    .header-mobile-right {
        width: 50%;
    }

    .header-mobile-left {
        border-right: 1px solid rgba(255, 255, 255, .4);
        margin-right: 50px;
    }

    .header-mobile-wrap .header-menu {
        margin-left: 0;
        margin-bottom: 40px;
    }

    .header-mobile-wrap .header-menu ul {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
    }

    .header-mobile-wrap .header-menu ul li {
        position: relative;
        width: 100%;
    }

    .header-mobile-wrap .header-menu ul li .menu-open-arrow {
        position: absolute;
        top: 0;
        width: 30px;
        height: 30px;
        right: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        background-color: var(--color-1);
    }

    .header-mobile-wrap .header-menu ul li .menu-open-arrow.is-active {
        transform: rotate(180deg);
    }

    .header-mobile-wrap .header-menu ul li .menu-open-arrow img {
        width: 50%;
        vertical-align: middle;
        display: inline-block;
    }

    .header-mobile-wrap .header-menu ul li a {
        font-size: 22px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 0;
    }

    .header-mobile-wrap .header-menu ul li:hover>a {
        background: none;
    }

    .header-mobile-wrap .header-menu ul li.menu-item-has-children>a::after {
        display: none;
    }

    .header-mobile-wrap .header-menu ul li.current-menu-item a {
        background: none;
    }

    .header-mobile-wrap .header-menu ul.sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        border: none;
        margin-top: 10px;
        transform: none;
        transition: initial;
        display: none;
        padding-left: 15px;
    }

    .header-mobile-wrap .header-menu ul.sub-menu li {
        height: auto;
    }

    .header-mobile-wrap .header-menu ul.sub-menu li a {
        font-weight: 400;
        text-transform: none;
        margin-bottom: 10px;
        font-size: 18px;
        color: #e9e9e9;
    }

    .header-mobile-wrap .header-menu ul.sub-menu li a:hover {
        color: #fff;
    }

    .header-mobile-top {
        display: flex;
        justify-content: space-around;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, .4);
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

    .header-mobile-close {
        cursor: pointer;
    }

    .header-mobile-close img {
        max-width: 38px;
    }

    .header-mobile-el {
        margin-bottom: 30px;
    }

    .header-mobile-el .header-el-item {
        margin-bottom: 20px;
    }

    .header-mobile-social {
        display: flex;
        align-items: center;
        column-gap: 25px;
    }

    .header-mobile-wrap .header-button a {
        padding: 18px 25px;
    }

    /* Header 992 END */

    /* Banner 992 START */
    .banner-title {
        font-size: 50px;
    }

    .banner-wrap .swiper-button-prev,
    .banner-wrap .swiper-button-next {
        width: 150px;
        height: 100px;
    }

    /* Banner 992 END */

    /* Numbers 992 START */
    .numbers-row {
        column-gap: 50px;
    }

    .numbers-item:nth-last-child(n+2) {
        padding-right: 50px;
    }

    .numbers-subtitle {
        font-size: 16px;
    }

    /* Numbers 992 END */

    /* About 992 START */
    .about-row {
        align-items: flex-start;
        column-gap: 30px;
    }

    /* About 992 END */

    /* Skills 992 START */
    .skills-left {
        max-width: 420px;
    }

    .skills-right {
        margin-top: -80px;
    }

    /* Skills 992 END */

    /* Services 992 START */
    .services-row {
        flex-wrap: wrap;
    }

    .services-row .services-item {
        width: calc(33.3% - 13.5px);
    }

    /* Services 992 END */

    /* Marquee 992 START */
    .marquee-wrap {
        padding: 20px 0;
    }

    .marquee-item {
        font-size: 46px;
    }

    /* Marquee 992 END */

    /* News 992 START */
    .news-wrap::before {
        width: 263px;
        height: 275px;
    }

    .news-wrap::after {
        width: 100px;
        height: 100px;
        right: 0;
        top: 0;
        left: auto;
    }

    .news-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-left {
        padding: 0 30px;
        margin-left: 0;
        margin-bottom: 30px;
        min-width: auto;
    }

    .swiper-news .swiper-slide {
        max-width: 300px;
    }

    .swiper-news {
        padding-left: 30px;
    }

    /* News 992 END */

    /* Team 992 START */
    .team-wrap .team-item {
        width: calc(50% - 10px);
    }

    .team-wrap .team-thumb {
        height: 300px;
    }

    .team-scroll-left {
        min-width: auto;
    }

    .team-single-row {
        column-gap: 30px;
    }

    .team-single-left {
        min-width: 300px;
        width: 300px;
        height: 400px;
    }

    /* Team 992 END */

    /* Reviews 992 START */
    .Z3QCm0pr1f {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-left {
        min-width: auto;
        margin-bottom: 30px;
    }

    .H1JaavFCa7 {
        justify-content: flex-start;
    }

    /* Reviews 992 END */

    /* Workflow 992 START */
    .workflow-row {
        column-gap: 20px;
    }

    .workflow-item {
        padding: 40px 25px 140px 25px;
    }

    .workflow-title {
        font-size: 28px;
    }

    .workflow-desc p {
        font-size: 14px;
    }

    /* Workflow 992 END */

    /* Team 992 START */
    .team-scroll-row {
        flex-direction: column;
    }

    .team-scroll-left {
        max-width: none;
        margin-bottom: 30px;
        position: static;
    }

    .team-scroll-right {
        margin: 0 auto;
    }

    /* Team 992 END */

    /* Form 992 START */
    .form-wrap .form-row {
        flex-direction: column;
    }

    .form-wrap .form-touch {
        min-width: auto;
        width: 100%;
    }

    .form-wrap .faq-wrap {
        width: 100%;
    }

    .form-wrap .faq-item {
        max-width: none;
    }

    /* Form 992 END */

    /* Works 992 START */
    .works-tab ul {
        column-gap: 40px;
        padding: 15px 0;
        flex-wrap: wrap;
    }

    .works-tab ul .works-tab-item a {
        padding: 10px 0;
    }

    .works-body {
        opacity: 1;
        background-color: rgba(42, 69, 96, 0.6);
        padding: 20px;
    }

    .works-col-2-grid .works-thumb {
        height: 300px;
    }

    .works-col-4-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Works 992 END */

    /* Blog 992 START */
    .blog-row {
        flex-direction: column;
    }

    .blog-classic .blog-title {
        font-size: 28px;
    }

    .widget-area {
        width: 100%;
        min-width: auto;
    }

    .blog-wrap {
        margin-bottom: 30px;
    }

    .blog-grid .blog-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Blog 992 END */

    /* Article 992 START */
    .article-row {
        flex-direction: column;
    }

    .article-group {
        margin-bottom: 40px;
    }

    .article-thumb {
        height: 320px;
    }

    /* Article 992 END */

    /* Service 992 START */
    .service-row {
        flex-wrap: wrap;
    }

    .service-sidebar {
        position: static;
        order: 1;
        width: 100%;
        min-width: auto;
    }

    .service-content {
        margin-bottom: 30px;
    }

    .service-pdf-item {
        padding: 10px 15px;
    }

    /* Service 992 END */

    /* Work 992 START */
    .work-sidebar {
        position: static;
        width: 100%;
        max-width: auto;
        margin-bottom: 30px;
    }

    .work-row {
        flex-direction: column;
    }

    /* Work 992 END */

    /* Contact 992 START */
    .bsEZ49t265 {
        column-gap: 50px;
    }

    .getting-right {
        gap: 30px;
    }

    /* Contact 992 END */

    /* Footer 992 START */
    .RvcDMssRyQ {
        flex-direction: column;
        row-gap: 30px;
    }

    /* Footer 992 END */

}

@media screen and (max-width: 768px) {

    /* Global 768 START */
    .cFLvORVKgm {
        font-size: 18px;
    }

    .def-subtitle {
        font-size: 40px;
        line-height: 1.3;
    }

    /* Global 768 END */

    /* Banner 768 START */
    .banner-row {
        padding: 90px 0;
    }

    .banner-left {
        padding: 30px 20px;
    }

    .banner-wrap .swiper-button-prev,
    .banner-wrap .swiper-button-next {
        display: none;
    }

    .banner-wrap .swiper-pagination {
        left: 20px;
        right: auto;
    }

    /* Banner 768 END */

    /* Numbers 768 START */
    .numbers-row {
        flex-wrap: wrap;
        column-gap: 30px;
        row-gap: 40px;
    }

    .numbers-title {
        font-size: 46px;
    }

    .numbers-item {
        width: calc(50% - 15px);
        border: none !important;
    }

    .numbers-item:nth-last-child(n+2) {
        padding-right: 0;
    }

    /* Numbers 768 END */

    /* About 768 START */
    .about-row {
        flex-direction: column;
    }

    .about-left {
        width: 100%;
        height: 500px;
        margin-bottom: 30px;
    }

    .about-right {
        width: 100%;
    }

    .about-feat-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .about-feat-item {
        width: calc(50% - 10px);
    }

    /* About 768 END */

    /* Skills 768 START */
    .skills-row {
        flex-direction: column;
    }

    .skills-left {
        max-width: none;
        margin-bottom: 20px;
    }

    .skills-right {
        margin-top: 30px;
        margin-left: 0;
        width: 100%;
        height: 450px;
    }

    /* Skills 768 END */

    /* Features 768 START */
    .features-row {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .features-item {
        width: calc(50% - 10px);
    }

    /* Features 768 END */

    /* Services 768 START */
    .services-wrap .title-center {
        margin-bottom: 40px;
    }

    .services-wrap::after {
        display: none;
    }

    .services-row .services-item {
        width: calc(50% - 10px);
    }

    /* Services 768 END */

    /* News 768 START */
    .news-wrap::before {
        width: 213px;
        height: 225px;
    }

    .news-wrap::after {
        width: 100px;
        height: 100px;
    }

    /* News 768 END */

    /* FAQ 768 START */
    .faq-grid {
        flex-wrap: wrap;
    }

    .faq-inner-wrap .faq-group {
        width: 100%;
    }

    /* FAQ 768 END */

    /* Works 768 START */
    .works-col-3-grid,
    .works-col-4-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-grid .works-body {
        padding: 15px;
        position: static;
        background-color: var(--color-3);
    }

    .masonry-grid .works-name {
        font-size: 20px;
    }

    /* Works 768 END */

    /* Contact 768 START */
    .bsEZ49t265 {
        flex-direction: column;
    }

    .getting-left {
        width: auto;
        margin-left: 0;
        margin-bottom: 30px;
    }

    /* Contact 768 END */

    /* Team 768 START */
    .team-single-row {
        flex-direction: column;
    }

    .team-single-left {
        position: static;
        margin-bottom: 20px;
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }

    /* Team 768 END */

    /* Footer 768 START */
    .footer-info-wrap {
        column-gap: 40px;
    }

    .footer-title {
        font-size: 34px;
    }

    .rXYlmX8PFo {
        flex-wrap: wrap;
        column-gap: 6cap;
        row-gap: 30px;
    }

    .footer-map {
        width: 100%;
    }

    .BVEYaF7cPA iframe {
        max-width: none;
        width: 100%;
    }

    .BVEYaF7cPA-title {
        line-height: 1.5;
    }

    .footer-bottom {
        flex-direction: column;
        row-gap: 30px;
        padding: 30px 20px;
    }

    .footer-social {
        border-top: 1px solid rgba(255, 255, 255, .4);
        border-bottom: 1px solid rgba(255, 255, 255, .4);
    }

    .footer-social a:last-child {
        border-right: 1px solid rgba(255, 255, 255, .4);
    }

    /* Footer 768 END */

}

@media screen and (max-width: 640px) {

    /* Header 640 START */
    .header-mobile-row {
        flex-direction: column;
        padding-bottom: 30px;
    }

    .header-mobile-left {
        border-right: none;
        margin-right: 0;
        margin-bottom: 50px;
        padding-right: 0;
        width: 100%;
    }

    .header-mobile-right {
        width: 100%;
    }

    .header-mobile-wrap .header-menu ul li .menu-open-arrow {
        right: 0;
    }

    /* Header 640 END */

    /* About 640 START */
    .about-left {
        height: 350px;
    }

    /* About 640 END */

    /* Services 640 START */
    .services-wrap::before {
        width: 130px;
        height: 130px;
    }

    /* Services 640 END */

    /* News 640 START */
    .news-left {
        padding: 0 20px;

    }

    .swiper-news {
        padding: 0 20px;
    }

    /* News 640 END */

    /* Workflow 640 START */
    .workflow-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .workflow-item {
        width: calc(50% - 10px);
    }

    .workflow-item:nth-child(3) {
        width: 100%;
    }

    /* Workflow 640 END */

    /* Newsletter 640 START */
    .newsletter-form form {
        width: auto;
    }

    .newsletter-title-wrap .def-subtitle {
        font-size: 35px;
    }

    .newsletter-title-wrap .title-left {
        min-width: 50px;
        height: 50px;
    }

    .newsletter-title-wrap .title-left img {
        max-width: 30px;
    }

    /* Newsletter 640 END */

    /* Blog 640 START */
    .blog-list .blog-item {
        flex-direction: column;
        padding-bottom: 10px;
    }

    .blog-list .blog-thumb {
        width: 100%;
    }

    .blog-list .list-right {
        padding: 20px 0;
    }

    .blog-list .blog-meta ul {
        font-size: 14px;
    }

    /* Blog 640 END */

    /* Footer 640 START */
    .RvcDMssRyQ {
        align-items: flex-start;
    }

    .footer-info-wrap {
        flex-direction: column;
        row-gap: 30px;
    }

    /* Footer 640 END */

}

@media screen and (max-width: 575px) {

    /* Global 575 START */
    .def-subtitle {
        font-size: 35px;
    }

    /* Global 575 END */

    /* Header 575 START */
    .header-logo img {
        max-width: 130px;
    }

    /* Header 575 END */

    /* Banner 575 START */
    .banner-toptitle {
        font-size: 14px;
    }

    .banner-title {
        font-size: 46px;
    }

    /* Banner 575 END */

    /* Marquee 575 START */
    .marquee-wrap {
        padding: 10px 0;
    }

    .marquee-item {
        font-size: 38px;
    }

    /* Marquee 575 END */

    /* Features 575 START */
    .features-title {
        font-size: 16px;
    }

    .features-thumb img {
        max-width: 50px;
    }

    /* Features 575 END */

    /* Team 575 START */
    .team-wrap .team-item {
        width: 100%;
    }

    .team-wrap .team-thumb {
        height: 230px;
    }

    .team-scroll-grid .team-item {
        width: 100%;
    }

    /* Team 575 END */

    /* Workflow 575 START */
    .workflow-item {
        width: 100%;
    }

    /* Workflow 575 END */

    /* Form 575 START */
    .form-wrap .form-touch,
    .form-wrap .faq-wrap {
        padding: 40px 30px;
    }

    .form-wrap .faq-question {
        padding: 15px 20px;
    }

    .faq-arrow {
        min-width: 40px;
        height: 40px;
    }

    .faq-num {
        display: none;
    }

    /* Form 575 END */

    /* About 575 START */
    .about-feat-item {
        width: 100%;
    }

    /* About 575 END */

    /* Breadcrumbs 575 START */
    .HNYvCldsc3 {
        padding: 100px 0;
    }

    .HNYvCldsc3::before,
    .HNYvCldsc3::after {
        width: 200px;
        height: 210px;
    }

    /* Breadcrumbs 575 END */

    /* Reviews 575 START */
    .swiper-reviews {
        height: 400px;
    }

    /* Reviews 575 END */

    /* Services 575 START */
    .services-row .services-item {
        width: 100%;
    }

    /* Services 575 END */

    /* Service 575 START */
    .image-two {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .image-two a {
        width: 100%;
    }

    .service-content h2 {
        font-size: 32px;
    }

    .service-feat-item {
        width: 100%;
    }

    /* Service 575 END */

    /* Work 575 START */
    .work-content h2 {
        font-size: 32px;
    }

    .video-section {
        height: 200px;
    }

    .video-section .video-play a {
        width: 60px;
        height: 60px;
    }

    .video-section .video-play a img {
        max-width: 80%;
    }

    /* Work 575 END */

    /* 404 575 START */
    .error-title {
        font-size: 80px;
    }

    .error-subtitle {
        font-size: 42px;
    }

    /* 404 575 END */

    /* Works 575 START */
    .works-col-2-grid,
    .works-col-3-grid,
    .works-col-4-grid {
        grid-template-columns: 1fr;
    }

    .works-cat {
        font-size: 14px;
    }

    .works-name {
        font-size: 18px;
    }

    .masonry-grid .works-body {
        padding: 10px;
    }

    .masonry-grid-3 .grid-sizer,
    .masonry-grid-3 .grid-item {
        width: calc(50% - 10px);
    }

    /* Works 575 END */

    /* Blog 575 START */
    .blog-classic .blog-thumb {
        height: 260px;
    }

    .blog-grid .blog-wrap {
        grid-template-columns: 1fr;
    }

    /* Blog 575 END */

    /* Article 575 START */
    .image-50 {
        flex-direction: column;
        row-gap: 20px;
    }

    .nav-title {
        font-size: 16px;
    }

    .comment-body {
        flex-direction: column;
        row-gap: 15px;
    }

    .comment-list .children {
        padding-left: 50px;
    }

    .article-thumb {
        height: 220px;
    }

    /* Article 575 END */

    /* Getting 575 START */
    .bsEZ49t265 {
        margin-bottom: 50px;
    }

    .getting-item {
        width: 100%;
    }

    /* Getting 575 END */

    /* Gallery 575 START */
    .gallery-wrap .works-item {
        height: 380px;
    }

    /* Gallery 575 END */

    /* Footer 575 START */
    .footer-title {
        display: none;
    }

    .BVEYaF7cPA {
        width: 100%;
    }

    /* Footer 575 END */

}

@media screen and (max-width: 400px) {

    /* Header 400 START */
    .header-mobile-wrap {
        padding: 20px;
    }

    /* Header 400 END */

    /* Newsletter 400 START */
    .newsletter-title-wrap {
        flex-direction: column;
        row-gap: 20px;
    }

    .newsletter-title-wrap .title-left {
        width: 50px;
    }

    /* Newsletter 400 END */

    /* Blog 400 START */
    .blog-classic .blog-meta ul {
        font-size: 14px;
    }

    .blog-classic .blog-thumb {
        height: 220px;
    }

    .widget_recent_entries .recent-title {
        font-size: 16px;
    }

    /* Blog 400 END */

    /* Article 400 START */
    .comment-list .children {
        padding-left: 30px;
    }

    /* Article 400 END */

}

/* Responsive END */

/* Services Page Specific Styles START */
.uIGWoG1fgK {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, var(--color-4) 0%, #f8f9fa 100%);
    border-radius: 10px;
    border: 2px solid var(--color-1);
}

.uIGWoG1fgK .price {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-3);
    display: block;
}

.uIGWoG1fgK .period {
    font-size: 14px;
    color: var(--color-text);
    font-weight: normal;
}

.services-item .SLtnDKEA8k {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* Pricing Plans Styles */
.qFPfnHATXC {
    position: relative;
}

.lpkNyqEnjF {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.aKhT3Z5CFo {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.aKhT3Z5CFo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.aKhT3Z5CFo.featured {
    border-color: var(--color-2);
    transform: scale(1.05);
}

.aKhT3Z5CFo.featured::before {
    content: "Popüler";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.W3KPIeC2MD {
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-3);
    margin-bottom: 15px;
}

.pricing-price {
    margin-bottom: 20px;
}

.pricing-price .price {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-1);
    display: block;
}

.pricing-price .period {
    font-size: 16px;
    color: var(--color-text);
}

.la1K5lM5za {
    margin-bottom: 30px;
}

.la1K5lM5za ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.la1K5lM5za li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 14px;
    color: var(--color-text);
}

.la1K5lM5za li:last-child {
    border-bottom: none;
}

.aKhT3Z5CFo .SLtnDKEA8k {

    margin-top: 0;
}

/* CTA Section Styles */
.cta-wrap {
    position: relative;
    overflow: hidden;
}

.cta-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-wrap .container {
    position: relative;
    z-index: 2;
}

/* Enhanced Reviews Styles */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.H1JaavFCa7 {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.H1JaavFCa7:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.reviews-text {
    flex-grow: 1;
    margin-bottom: 20px;
}

.reviews-text p {
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text);
}

.M6ph7yK3ep {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviews-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-1);
}

.reviews-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-info {
    flex-grow: 1;
}

.s4FmTdjTiM {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-3);
    margin-bottom: 5px;
}

.reviews-spec {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 8px;
}

.reviews-rating {
    color: var(--color-2);
    font-size: 16px;
    letter-spacing: 2px;
}

.banner-simple {
    position: relative;
    width: 100%;
    min-height: 780px;
    color: #fff;
    font-family: Arial, sans-serif;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.x4ZCKXvk68 {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
    z-index: 1;
}

.banner-simple__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.banner-simple__container {
    position: relative;
    max-width: 900px;
    padding: 0 20px;
    z-index: 3;
    text-align: center;
}

.banner-simple__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hbEPoQOsNO {
    margin-bottom: 20px;
}

.hbEPoQOsNO .a9684F9YcT {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #f4a261;
    border-radius: 50%;
    margin: 0 6px;
}

.banner-simple__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.banner-simple__button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #facc15;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.banner-simple__button:hover,
.banner-simple__button:focus {
    background-color: #f4a261;
}

/* Адаптація */
@media (max-width: 768px) {
    .banner-simple__title {
        font-size: 1.6rem;
    }

    .banner-simple__description {
        font-size: 1rem;
    }

    .banner-simple__button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .banner-simple {
        min-height: 660px;
        padding: 30px 10px;
    }

    .banner-simple__title {
        font-size: 1.3rem;
    }

    .banner-simple__description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .banner-simple__button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Запобігає горизонтальному скроллу глобально */
}

/* Services Grid Enhancement */
.services-row {

    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.services-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-1) 0%, var(--color-2) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.services-item:hover::before {
    transform: scaleX(1);
}

.services-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.services-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.services-item:hover .services-icon {
    transform: scale(1.1) rotate(5deg);
}

.services-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.services-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-3);
    margin-bottom: 10px;
    text-align: center;
}

.services-cat {
    background: var(--color-4);
    color: var(--color-1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}

.services-desc {
    margin-bottom: 20px;
}

.services-desc p {
    line-height: 1.8;
    color: var(--color-text);
    text-align: center;
}

/* Responsive adjustments for services page */
@media screen and (max-width: 768px) {
    .lpkNyqEnjF {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aKhT3Z5CFo.featured {
        transform: none;
    }

    .services-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-item {
        padding: 20px;
    }

    .H1JaavFCa7 {
        padding: 20px;
    }

    .M6ph7yK3ep {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .aKhT3Z5CFo {
        padding: 30px 20px;
    }

    .services-item {
        padding: 15px;
    }

    .services-icon {
        width: 60px;
        height: 60px;
    }

    .services-icon img {
        width: 30px;
        height: 30px;
    }
}

/* Services Page Specific Styles END */