/* 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;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 14px 30px;
    position: relative;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Бургер */
.menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1001;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.4s;
}

#menu-toggle {
    display: none;
}

/* Анімація бургер → Х */
#menu-toggle:checked+.menu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle:checked+.menu-btn span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked+.menu-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Side-drawer меню */
.nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background: #161b22;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.5);
    transition: right 0.4s ease;
    padding-top: 80px;
    z-index: 1002;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nav ul li a {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    padding: 10px 25px;
    display: block;
    transition: 0.3s;
}

.nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #4facfe;
}

#menu-toggle:checked~.nav {
    right: 0;
}

/* Хрестик */
.close-btn {
    font-size: 2rem;
    color: #fff;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #4facfe;
}

/* Оверлей */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 1000;
}

#menu-toggle:checked~.overlay {
    opacity: 1;
    pointer-events: auto;
}

@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 */
.IvhcmqeFgC {
    background: linear-gradient(135deg, #fbeff6, #fb3d82);
    color: #333;
    font-family: 'Playfair Display', serif;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

.G752ZVNBcx .brand {
    font-size: 1.8em;
    font-weight: bold;
    color: #c2185b;
    text-decoration: none;
}

.G752ZVNBcx .tagline {
    font-size: 0.9em;
    color: #555;
    margin-top: 8px;
}

.footer-links h3,
.Ewt13WfnOl h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #c2185b;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #c2185b;
}

.Ewt13WfnOl p {
    margin: 5px 0;
}

.social-icons a {
    margin-right: 10px;
}

.social-icons img {
    width: 22px;
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #666;
}

/* Загальний стиль */
.modern-header {
    background: #fff;
    border-bottom: 2px solid #f0f0f0;
    padding: 15px 25px;
    font-family: 'Poppins', sans-serif;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Логотип */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5em;
    font-weight: bold;
    color: #c2185b;
}

/* Меню */
.nav-menu {
    position: relative;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: #c2185b;
}

/* Бургер */
#menu-toggle {
    display: none;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}

/* Кнопка закриття */
.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2em;
    color: #c2185b;
    cursor: pointer;
    display: none;
}

/* Адаптив */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background: #fff;
        box-shadow: -3px 0 8px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    #menu-toggle:checked~.nav-menu {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .close-btn {
        display: block;
    }

    /* Анімація бургера */
    #menu-toggle:checked+.burger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked+.burger span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked+.burger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* 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;
}



.button-style-1 {
    background-color: var(--color-4);
    padding: 12px 30px;
    color: #fb3d82;
    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;
}

.button-style-1:hover {
    color: #fff;
}

.button-style-1::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;
}

.button-style-1:hover::before {
    transform: none;
}

.button-style-1-icon {
    display: inline-block;
}

.button-style-1-icon img {
    vertical-align: middle;
}

.cdrMGLxP6X {
    background-color: #fb3d82;
    transition: background-color 0.5s ease;
    color: #fff;
    border-radius: 15px;
}

.cdrMGLxP6X:hover {
    background-color: #e328bc;
}

.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;
}

.sj1p7Phghx {
    padding: 80px 0;
}

.p-100 {
    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: #fb3d82;
    margin-right: 10px;
}

ol.ol-styled li::before {
    counter-increment: num;
    content: counter(num)'.';
    display: inline-block;
    font-weight: 700;
    color: #fb3d82;
    margin-right: 10px;
}

p {
    margin-top: 0;
}

.title-left {
    text-align: left;
}

.F5lb3DHgdt {
    text-align: center;
    margin-bottom: 50px;
}

.svpwr4cBjP .def-title {
    color: #fff;
}

.svpwr4cBjP .tOkFZfkPO9 {
    color: #fff;
}

.svpwr4cBjP .def-desc {
    color: #C8C8C8;
}

.def-title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fb3d82;
}

.tOkFZfkPO9 {
    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 #fb3d82;
    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: #fb3d82;
}

/* 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: #fb3d82;
}

.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: #fb3d82;
    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: #fb3d82;
    transition: width 0.4s;
}

.preloader-close {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fb3d82;
    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: #fb3d82;
    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: #fb3d82;
    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: #fb3d82;
    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: #fb3d82;
    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: #fb3d82;
}

.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: #fb3d82;
    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 */
.sJFPG9B7Rq {
    background: linear-gradient(45deg, #f06292, #c2185b);
    padding: 70px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}



.v63sRgW23M {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    padding: 0;
}

.breadcrumbs-last {
    font-weight: 700;
}

/* Breadcrumbs END */

/* Banner START */


.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 {
    border-radius: 15px;
    width: 400px;
    height: 500px;
    overflow: hidden;
    border: 1px solid #fb3d82;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.Xtl0wWLFNE {
    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: #fb3d82;
}

.about-feat-row {
    display: flex;
    column-gap: 20px;
}

.about-feat-item {
    border: 1px solid #fb3d82;
    background-color: #fff;
    padding: 35px;
}

.about-feat-icon {
    border: 1px solid #fb3d82;
    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: #fb3d82;
}

.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: #fb3d82;
}

.about-feat-desc {
    color: var(--color-text);
}

.about-feat-desc p {
    margin-bottom: 0;
}

/* About END */

/* Features START */
.DUUGQ5gH4w {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
    color: #fff;
}



.features-title-wrap {
    margin-bottom: 30px;
}


.DUUGQ5gH4w .tOkFZfkPO9 {
    margin-bottom: 10px;
}

.DUUGQ5gH4w .def-desc {
    color: #C8C8C8;
}

.DUUGQ5gH4w::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #fff0f5;
    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 {
    width: 400px;
    height: 300px;
    overflow: hidden;
    border: 1px solid #fb3d82;
}

.features-right {
    max-width: 750px;
    margin-left: auto;
}

.Gtb6usMvmM {
    display: flex;
    column-gap: 20px;
    position: relative;
}

.features-item {
    background-color: #fb3d82;
    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-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;
    border-radius: 20px;
    background-color: #fff;
    padding: 40px 30px;
    counter-increment: number
}

.services-item:hover {
    border-color: #fb3d82;
}



.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: #fb3d82;
    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: #fb3d82;
    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 #fb3d82;
    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: #fb3d82;
}

.service-pdf-item {
    display: flex;
    align-items: center;
    column-gap: 15px;
    border: 1px solid #fb3d82;
    padding: 10px 20px;
    color: #fb3d82;
    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: #fb3d82;
    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 #fb3d82;
    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: #fb3d82;
    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 .def-title,
.works-wrap .tOkFZfkPO9,
.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 #fb3d82;
    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: #fb3d82;
}

.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: #fb3d82;

}

.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: #fb3d82;
    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 #fb3d82;
    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: #fb3d82;
    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: #fb3d82;
}

.news-desc {
    color: #969494;
}

.news-readmore {
    background-color: var(--color-4);
    display: block;
    padding: 14px 18px;
    font-weight: 700;
    color: #fb3d82;
    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 #fb3d82;
    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: #fb3d82;
}

.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: #fb3d82;
}

.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;
}

.reviews-row {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.reviews-left {
    min-width: 350px;
}

.reviews-right {
    width: 100%;
}

.swiper-reviews {
    height: 320px;
}

.reviews-item {
    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;
}

.reviews-footer {
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.reviews-thumb {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border: 1px solid #fb3d82;
}

.reviews-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-name {
    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 #fb3d82;
    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-wrap::before {
    content: '';
    display: block;
    background-image: url('../images/geometry-3.png');
    position: absolute;
    top: 0;
    right: -43px;
    width: 670px;
    height: 678px;
    z-index: -1;
}

.form-wrap::after {
    content: '';
    display: block;
    background-image: url('../images/geometry-3.png');
    position: absolute;
    bottom: 0;
    left: 0;
    width: 670px;
    height: 678px;
    z-index: -1;
    transform: rotate(180deg);
}

.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 .inp-icon {
    position: absolute;
    left: 0;
    top: 4px;
    display: inline-block;
}

.form-label .inp-message-icon {
    top: -2px;
}

.form-label .inp-icon 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 #fb3d82;
    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: #fb3d82;
}

.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 .def-title {
    line-height: 1;
}

.newsletter-title-wrap .tOkFZfkPO9 {
    font-size: 38px;
}

.newsletter-title-wrap .title-left {
    background-color: #fb3d82;
    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 */
.hero-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    overflow: hidden;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(44, 32, 32, 0.7), rgba(255, 192, 203, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 60px;
    color: #333;
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
}

.hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #c2185b;
    margin-top: 10px;
    border-radius: 2px;
    animation: expandWidth 1s ease forwards;
}

.hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
}

.Jr0KLb7C9a {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #f06292, #c2185b);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.Jr0KLb7C9a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(194, 24, 91, 0.4);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    0% {
        width: 0;
    }

    100% {
        width: 60px;
    }
}

/* Мобільна адаптивність */
@media (max-width: 991px) {
    .hero-content {
        margin-left: 30px;
        max-width: 90%;
    }

    .hero-title {
        font-size: 2em;
    }

    .hero-description {
        font-size: 1em;
    }

    .Jr0KLb7C9a {
        padding: 10px 25px;
        font-size: 0.95em;
    }
}

/* Progress START */
.CmYFxMdmjS {
    background: linear-gradient(45deg, #f06292, #c2185b);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.skills-title-wrap {
    margin-bottom: 40px;
}

.Bcn6qggoOh {
    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: #fb3d82;
    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: #fb3d82;
    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);
    }
}






.DUUGQ5gH4w {
    padding: 100px 0;
    background: #fdf5f9;
    font-family: 'Poppins', sans-serif;
}

.F5lb3DHgdt {
    text-align: center;
    margin-bottom: 60px;
}

.tOkFZfkPO9 {
    font-size: 1.8em;
    font-weight: 600;
    color: #c2185b;
}

.Gtb6usMvmM {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3em;
    color: #c2185b;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-body p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}


.blog-section {
    padding: 100px 0;
    background: #fff0f5;
    font-family: 'Poppins', sans-serif;
}

.section-header .section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 30px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.blog-thumb img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 220px;
    transition: transform 0.3s;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    text-align: left;
}

.blog-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.blog-content p {
    font-size: 1em;
    line-height: 1.7;
    color: #555;
}

.bT7fQAVkW6 {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e1 100%);
    font-family: 'Poppins', sans-serif;
}

.JCKC5bs3yU {
    font-size: 2.5em;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 1.05em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.jecQYCxCaQ {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1 1 45%;
}

.KG0jMssK1M {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item .icon img {
    width: 30px;
    height: 30px;
}

.contact-item .text .label {
    font-weight: 600;
    color: #c2185b;
    margin-bottom: 3px;
}

.contact-item .text .zznGm2HFLj {
    color: #333;
}

.contact-map {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.qqE7doXx2O {
    flex: 1 1 50%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .OLOCDniZnF {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 12px 15px;
    transition: border-color 0.3s;
}

.contact-form .OLOCDniZnF:hover {
    border-color: #c2185b;
}

.contact-form .OLOCDniZnF input,
.contact-form .OLOCDniZnF textarea {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1em;
    color: #333;
    background: transparent;
    resize: none;
}

.contact-form .btn-submit {
    background: #c2185b;
    color: #fff;
    font-weight: 600;
    padding: 15px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background 0.3s, transform 0.3s;
}

.contact-form .btn-submit:hover {
    background: #e91e63;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .jecQYCxCaQ {
        flex-direction: column;
    }
}

.checkout-section {
    background-color: #fff5f8;
    padding: 70px 20px;
    font-family: 'Poppins', sans-serif;
}

.checkout-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
}

.k8PXBV67IC {
    margin-bottom: 30px;
}

.checkout-title {
    font-size: 2.4rem;
    color: #d63384;
    margin-bottom: 10px;
}

.pMblIZF1Yp {
    font-size: 1rem;
    color: #555;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.double-input {
    flex-direction: row;
    gap: 15px;
}

.double-input input {
    flex: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: #d63384;
    box-shadow: 0 0 5px rgba(214, 51, 132, 0.2);
}

textarea {
    resize: none;
    min-height: 100px;
}

.terms {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.terms label {
    font-size: 0.9rem;
    color: #555;
}

.terms a {
    color: #d63384;
    text-decoration: underline;
}

.btn-submit {
    background-color: #d63384;
    color: #fff;
    border: none;
    padding: 15px 0;
    border-radius: 8px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #b32c6b;
}

.form-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 768px) {
    .double-input {
        flex-direction: column;
    }
}

.sTYdYQMAAP {
    background: #fff0f6;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.bcH6u51Fgl {
    max-width: 1420px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #d63384;
    margin-bottom: 10px;
    text-align: center;
}

.section-header p {
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.chic-product-card {
    width: 390px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.jyf1LYa6Ma {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #333;
}

.jyf1LYa6Ma th,
.jyf1LYa6Ma td {
    border: 1px solid #ddd;
    padding: 12px;
    vertical-align: top;
}

.jyf1LYa6Ma th {
    background-color: #f7f7f7;
    text-align: left;
    font-weight: bold;
    width: 30%;
}

.jyf1LYa6Ma ul {
    margin: 0;
    padding-left: 20px;
}

.chic-product-card:hover {
    transform: translateY(-8px);
}

.BMICuSSxEq {
    position: relative;
}

.main-product-img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 350px;
}

.product-thumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
}

.product-thumbs img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    object-fit: cover;
    transition: 0.3s;
}

.product-thumbs img.active,
.product-thumbs img:hover {
    border-color: #d63384;
}

:root {
    --accent-neon: #f06292;
    /* Bright cyan for buttons and highlights */
    --text-bold: #0a0a23;
    /* Deep navy for text */
    --bg-overlay: rgba(10, 10, 35, 0.85);
    /* Dark navy overlay */
    --bg-card: #1c2526;
    /* Dark slate for dialog box */
    --gradient-fresh: linear-gradient(135deg, #00ffcc, #ff00cc);
    /* Cyan to magenta gradient */
    --shadow-flicker: 0 6px 15px rgba(0, 255, 204, 0.3);
    --shadow-flicker-hover: 0 10px 25px rgba(0, 255, 204, 0.4);
    --transition-glide: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --anim-slide: slideUp 0.9s ease-out;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    background-color: #e6e6fa;
    /* Lavender background */
}

.cyber-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    opacity: 1;
    transition: var(--transition-glide);
    animation: var(--anim-slide);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.E0SvysdcTz {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    max-width: 450px;
    width: 85%;
    text-align: center;
    box-shadow: var(--shadow-flicker);
    transition: var(--transition-glide);
    border: 1px solid var(--accent-neon);
}

.E0SvysdcTz:hover {
    box-shadow: var(--shadow-flicker-hover);
    transform: translateY(-8px);
}

.E0SvysdcTz h2 {
    font-size: 1.7rem;
    color: var(--accent-neon);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.E0SvysdcTz p {
    font-size: 0.95rem;
    color: #d3d3d3;
    /* Light gray for text */
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.cyber-action {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.cyber-btn {
    padding: 0.7rem 1.8rem;
    border: 2px solid var(--accent-neon);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-glide);
    background: transparent;
    color: var(--accent-neon);
}

.cyber-btn-accept {
    background: var(--accent-neon);
    color: var(--bg-card);
}

.cyber-btn:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-flicker);
}

.bRmeoZouaI {
    font-size: 0.85rem;
    color: var(--accent-neon);
    text-decoration: none;
    transition: var(--transition-glide);
}

.bRmeoZouaI:hover {
    color: #ff00cc;
    text-decoration: underline;
}

/* Checkbox hack for closing the banner */
#cyber-toggle {
    display: none;
}

#cyber-toggle:checked~.cyber-overlay {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.cyber-btn-accept[for="cyber-toggle"],
.cyber-btn-deny[for="cyber-toggle"] {
    cursor: pointer;
}

@media (max-width: 768px) {
    .E0SvysdcTz {
        padding: 1.5rem;
        max-width: 95%;
    }

    .E0SvysdcTz h2 {
        font-size: 1.4rem;
    }

    .E0SvysdcTz p {
        font-size: 0.85rem;
    }

    .cyber-action {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cyber-btn {
        width: 100%;
        padding: 0.6rem;
    }
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.u1OKie1GLC {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    flex-grow: 1;
}

.fTt8ouKvVC {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d63384;
}

.btn-order {
    background: #d63384;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-order:hover {
    background: #b32c6b;
}

@media (max-width: 768px) {
    .main-product-img {
        height: 350px;
    }

    .product-thumbs img {
        width: 50px;
        height: 50px;
    }

    .chic-product-card {
        width: 100%;
    }
}

.ch-faq-section {
    background: #fff0f6;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.ch-faq-container {
    max-width: 1380px;
    width: 100%;
    text-align: center;
}

.w5E4mPaKog {
    font-size: 3rem;
    color: #d63384;
    margin-bottom: 15px;
}

.ch-faq-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
}

.ch-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.Sn35lE2kA1 {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    width: 90%;
    max-width: 900px;
    overflow: hidden;
}

.ch-faq-question {

    text-align: left;
    background: #fce4f0;
    border: none;
    padding: 25px 30px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #d63384;
    cursor: pointer;
    position: relative;
}

.ch-faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.Sn35lE2kA1.active .ch-faq-question::after {
    transform: rotate(45deg);
}

.UAf2vfzkmR {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.UAf2vfzkmR p {
    margin: 20px 0;
    line-height: 1.7;
    color: #555;
}

.Sn35lE2kA1.active .UAf2vfzkmR {
    max-height: 500px;
    padding: 20px 30px 30px;
}

@media (max-width: 768px) {
    .w5E4mPaKog {
        font-size: 2.5rem;
    }

    .ch-faq-subtitle {
        font-size: 1rem;
    }

    .ch-faq-question {
        font-size: 1.15rem;
        padding: 20px 20px;
    }
}

.ch-reviews-section {
    background: #fff0f6;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
}

.ch-reviews-container {
    max-width: 1380px;
    width: 100%;
    text-align: center;
}

.ch-reviews-title {
    font-size: 3rem;
    color: #d63384;
    margin-bottom: 15px;
}

.ch-reviews-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
}

.ch-reviews-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.ch-review-item {
    display: none;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    margin: 0 auto;
    max-width: 900px;
    transition: all 0.5s ease;
}

.ch-review-item.active {
    display: block;
}

.ch-review-rating {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #f39c12;
}

.ch-review-author {
    margin-top: 10px;
    font-weight: 700;
    color: #333;
}

.ch-reviews-controls {
    margin-top: 30px;
}

.ch-reviews-controls button {
    background: #d63384;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1.5rem;
    border-radius: 8px;
    margin: 0 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.ch-reviews-controls button:hover {
    background: #b0266e;
}

@media (max-width: 768px) {
    .ch-reviews-title {
        font-size: 2.2rem;
    }

    .ch-reviews-subtitle {
        font-size: 1rem;
    }

    .ch-review-item {
        padding: 30px 20px;
    }
}

.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: #fb3d82;
}

.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: #fb3d82;
}

.blog-btn .button {
    font-size: 14px;
}

.widget-area {
    width: 350px;
    min-width: 350px;
    border: 1px solid #fb3d82;
    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: #fb3d82;
    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: #fb3d82;
    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: #fb3d82;
    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: #fb3d82;
    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: #fb3d82;
    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: #fb3d82;
}

.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: #fb3d82;
    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 .inp-icon {
    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: #fb3d82;
    border-color: #fb3d82;
    background-image: url('../images/check-white.svg');
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: center center;
}

/* Article END */

/* Contact START */

.getting-row {
    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;
}

.getting-title {
    font-weight: 500;
    color: #fb3d82;
}

.getting-value {
    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-top {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    margin-bottom: 60px;
}

.G752ZVNBcx 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: #fb3d82;
    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;
}

.footer-center {
    margin-bottom: 50px;
}

.footer-title {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.footer-nav-row {
    display: flex;
    column-gap: 100px;
    justify-content: space-evenly;
}

.footer-nav-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;
}

.footer-nav iframe {
    display: block;
    max-width: 400px;
    height: 200px;
}

.footer-bottom {
    border: 1px solid rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    column-gap: 30px;
    justify-content: space-between;
    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: #fb3d82;
    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 */
    .footer-nav-row {
        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 */
    .sj1p7Phghx {
        padding: 60px 0;
    }

    .p-100 {
        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: #fb3d82;
    }

    .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 */
    .reviews-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-left {
        min-width: auto;
        margin-bottom: 30px;
    }

    .reviews-item {
        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 */
    .getting-row {
        column-gap: 50px;
    }

    .getting-right {
        gap: 30px;
    }

    /* Contact 992 END */

    /* Footer 992 START */
    .footer-top {
        flex-direction: column;
        row-gap: 30px;
    }

    /* Footer 992 END */

}

@media screen and (max-width: 768px) {

    /* Global 768 START */
    .def-title {
        font-size: 18px;
    }

    .tOkFZfkPO9 {
        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;
    }

    .Xtl0wWLFNE {
        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 */
    .Bcn6qggoOh {
        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 */
    .Gtb6usMvmM {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .features-item {
        width: calc(50% - 10px);
    }

    /* Features 768 END */

    /* Services 768 START */
    .services-wrap .F5lb3DHgdt {
        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 */
    .getting-row {
        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;
    }

    .footer-nav-row {
        flex-wrap: wrap;
        column-gap: 6cap;
        row-gap: 30px;
    }

    .footer-map {
        width: 100%;
    }

    .footer-nav iframe {
        max-width: none;
        width: 100%;
    }

    .footer-nav-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 .tOkFZfkPO9 {
        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 */
    .footer-top {
        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 */
    .tOkFZfkPO9 {
        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 */
    .sJFPG9B7Rq {
        padding: 50px 0;
    }

    .sJFPG9B7Rq::before,
    .sJFPG9B7Rq::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 */
    .getting-row {
        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;
    }

    .footer-nav {
        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 */