.vw_nav_manu {
    transition: .5s;
    z-index: 2;
    position: relative;
}

.row.up {
    position: relative;
    z-index: 1;
}

:root {
    --bg-dark: #0a0a0a;
    --text-light: #eee;
    --accent-hover: #ff3e00;
    --border-light: #555;
}



.hdr-minimal-dark {
    background: var(--bg-dark);
    padding: 12px 30px;
    user-select: none;
}

.hdr-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.hdr-logo {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1.5px;
}

.hdr-nav {
    display: flex;
    gap: 28px;
}

.hdr-link {
    position: relative;
    color: var(--text-light);
    text-decoration: none;
    padding: 6px 14px;
    border: 1.5px solid var(--border-light);
    border-radius: 18px;
    font-weight: 600;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.hdr-link:hover,
.hdr-link.active {
    color: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 0 12px var(--accent-hover);
}

/* Mobile */

@media (max-width: 768px) {

    .hdr-logo {
        font-size: 1.8rem;
        font-weight: 500;
        color: var(--text-light);
        text-decoration: none;
        letter-spacing: 1.5px;

    }

    .hdr-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        align-items: center;
    }

    .hdr-nav {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .hdr-link {
        width: 100%;
        text-align: center;
        border-radius: 10px;
    }
}

.container1 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Секції */
.section-wrapper {
    padding: 70px 0;
    /* Менші вертикальні відступи */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Заголовки */
.section-headline {
    text-align: center;
    margin-bottom: 50px;
    /* Менший відступ */
}

.section-headline h2 {
    font-family: 'Oswald', sans-serif;
    /* Контрастний, виразний шрифт для заголовків */
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-headline p {
    font-size: 1.05rem;
    color: #7f8c8d;
    max-width: 550px;
    margin: 0 auto;
}

/* Кнопки */
.btn-stylish {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    /* Легка округлість */
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    /* Для ефекту при ховері */
    overflow: hidden;
    z-index: 1;
}

.btn-stylish::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-stylish:hover::before {
    left: 0;
}

.btn-primary-accent {
    color: #3498db;
    border-color: #3498db;
}

.btn-primary-accent::before {
    background-color: #3498db;
}

.btn-primary-accent:hover {
    color: #fff;
}

.btn-stylish i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-stylish:hover i {
    transform: translateX(3px);
}

/* Секції статей (Cards) */
.article-card-compact {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    /* М'яка тінь */
    overflow: hidden;
    display: flex;
    align-items: stretch;
    /* Вирівнюємо висоту колонок */
    margin-bottom: 50px;
    /* Менший відступ між картками */
    min-height: 350px;
    /* Мінімальна висота картки */
    position: relative;
    z-index: 2;
    /* Щоб картки були над фоновими елементами */
}

.article-card-compact:last-of-type {
    margin-bottom: 0;
}

.article-card-compact.yqte69WI2t {
    flex-direction: row-reverse;
}

.article-card-compact .image-area-compact {
    flex: 0 0 45%;
    /* Зображення займає менше */
    position: relative;
}

.article-card-compact .image-area-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-card-compact .content-area-compact {
    flex: 0 0 55%;
    /* Контент займає більше */
    padding: 30px;
    /* Зменшений внутрішній відступ */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Центрування контенту по вертикалі */
}

.article-card-compact .content-area-compact h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: uppercase;
}

.article-card-compact .content-area-compact p {
    font-size: 0.95rem;
    /* Дрібніший текст */
    color: #555;
    margin-bottom: 25px;
}

/* Фонова графіка для секцій */
.background-shape {
    position: absolute;
    opacity: 0.05;
    background-color: #3498db;
    /* Основний акцентний колір */
    z-index: 0;
    pointer-events: none;
    /* Не заважає клікам */
}

#shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, #3498db, transparent 70%);
}

#shape-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, #2ecc71, transparent 70%);
    /* Інший акцентний колір */
}

#shape-3 {
    width: 200px;
    height: 200px;
    background-color: #f1c40f;
    /* Третій акцентний колір */
    transform: rotate(45deg);
    top: 20%;
    right: -50px;
    opacity: 0.03;
}

/* Секція підписки */
.newsletter-section-compact {
    background: #2c3e50;
    /* Темний фон */
    color: #fff;
    padding: 80px 0;
    /* Менше відступів */
    position: relative;
    overflow: hidden;
}

.newsletter-section-compact .section-headline h2,
.newsletter-section-compact .section-headline p {
    color: #fff;
}

.newsletter-content-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.08);
    /* Напівпрозорий фон */
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.newsletter-form-compact {
    flex: 1;
    min-width: 280px;
}

.newsletter-form-compact .form-group {
    margin-bottom: 18px;
}

.newsletter-form-compact .form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: all 0.2s ease;
}

.newsletter-form-compact .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form-compact .form-control:focus {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.qCIOQvmern {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    margin-right: 10px;
    flex-shrink: 0;
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-check-input:checked {
    background-color: #2ecc71;
    /* Зелений акцент */
    border-color: #2ecc71;
}

.form-check-input:checked::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #fff;
    font-weight: bold;
}

.uGdEEdYqzp {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    line-height: 1.4;
}

.uGdEEdYqzp a {
    color: #2ecc71;
    /* Посилання зеленим */
    text-decoration: underline;
    transition: color 0.2s ease;
}

.uGdEEdYqzp a:hover {
    color: #a4e6ff;
}

.mandatory-star {
    color: #f1c40f;
    /* Жовта зірочка */
    font-weight: bold;
    margin-right: 3px;
}

.KR8YdG6z1R {
    flex: 1;
    text-align: center;
}

.KR8YdG6z1R img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Дисклеймер */
.disclaimer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    /* Ще менший шрифт */
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.disclaimer-text strong {
    color: #fff;
}

/* Утиліти */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Адаптивність */
@media (max-width: 991.98px) {
    .article-card-compact {
        flex-direction: column;
        min-height: auto;
        /* Скасувати фіксовану висоту на мобільних */
    }

    .article-card-compact.yqte69WI2t {
        flex-direction: column;
    }

    .article-card-compact .image-area-compact,
    .article-card-compact .content-area-compact {
        flex: none;
        width: 100%;
    }

    .article-card-compact .image-area-compact img {
        height: 250px;
        /* Зменшити висоту зображення на мобільних */
    }

    .article-card-compact .content-area-compact {
        padding: 25px;
        text-align: center;
    }

    .article-card-compact .content-area-compact h3 {
        font-size: 1.5rem;
    }

    .article-card-compact .content-area-compact p {
        font-size: 0.9rem;
    }

    .article-card-compact .button-area {
        text-align: center;
    }

    .newsletter-content-compact {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .KR8YdG6z1R {
        order: -1;
    }

    .section-headline h2 {
        font-size: 2.5rem;
    }

    .section-headline p {
        font-size: 0.95rem;
    }

    .background-shape {
        display: none;
        /* Приховати фонові фігури на мобільних для кращої продуктивності */
    }
}

@media (max-width: 767.98px) {
    .section-wrapper {
        padding: 50px 0;
    }

    .section-headline h2 {
        font-size: 2rem;
    }

    .section-headline p {
        font-size: 0.9rem;
    }

    .btn-stylish {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

.row.up:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -12;
    height: 1px;
    border-bottom: 1px solid #6c1ae0;
    opacity: 0.051;
}

.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background: #FFFFFF !important;
    transition: .5s !important;
    z-index: 922;
    -webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    animation-name: slideInDown;
}

.sticky .vw_menu>ul>li>a {
    color: #101210;
}

.sticky .header-button a {
    background-image: linear-gradient(90deg, #c115db 0%, #692fd5 100%);
}

.sticky .header-button a i {
    color: #fff;
}

/* vw Menu Css*/
nav.vw_menu {
    position: relative;
    z-index: 1;
    text-align: right;
}

.vw_menu ul {
    list-style: none;
    display: inline-block;
}

.vw_menu>ul>li {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.vw_menu>ul>li>a {
    display: inline-block;
    margin: 35px 13px;
    transition: .5s;
    font-size: 16px;
    color: #1d2124;
    font-weight: 500;
    font-family: "Mulish";
}

.vw_menu>ul>li>a span {
    font-size: 11px;
    padding-left: 5px;
    font-family: FontAwesome;
    color: #1d2124 !important;
    transition: .5s;
}

.vw_menu>ul>li>a:hover {
    color: #792BD7;
}

.vw_menu>ul>li>a:hover i {
    color: #792BD7 !important;
}

nav.vw_menu.up>ul>li>a {
    color: #FFF;
    transition: .5s;
}

nav.vw_menu.up>ul>li>a i {
    color: #FFF;
    transition: .5s;
}

nav.vw_menu.up>ul>li>a:hover {
    color: #F95169;
}

nav.vw_menu.up>ul>li>a:hover i {
    color: #F95169 !important;
}

.sticky nav.vw_menu.up>ul>li>a {
    color: #000;
}

.sticky nav.vw_menu.up>ul>li>a i {
    color: #000;
}

.sticky nav.vw_menu.up>ul>li>a:hover {
    color: #F95169;
}

/*menu button*/

.header-button {
    display: inline-block;
    margin-left: 42px;
}

.header-button a {
    padding: 9px 27px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: .5s;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Mulish";
    border-radius: 4px;
    background: linear-gradient(90deg, #c115db 0%, #692fd5 100%);
}

.header-button a:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #c115db, #692fd5, #7A2AD7, #c115db);
    transition: .5s;
    transform: scale(0);
    border-radius: 4px;
    z-index: -1;
}

.header-button a:hover:before {
    transform: scale(1);
}

/*Style Two Nav Menu*/

.style-two.vw_nav_manu {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10196078431372549);
}

.style-two .vw_menu>ul>li>a {
    color: #fff;

}

/*style two btn*/

.style-two .header-button a {
    background: rgba(16, 18, 16, 0);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.style-two .header-button a i {
    color: #8129D7;
}

/*** Sub Menu Style 
==========================***/

.vw_menu ul .sub-menu {
    position: absolute;
    left: 0;
    top: 130%;
    width: 217px;
    text-align: left;
    background: #fff;
    margin: 0;
    z-index: 1;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    transition: .5s;
    visibility: hidden;
    border-top: 2px solid #8129D7;
    opacity: 0;
}

.vw_menu ul li:hover>.sub-menu {
    visibility: visible;
    top: 100%;
    opacity: 1;
}

.vw_menu ul .sub-menu li {
    position: relative;
}

.vw_menu ul .sub-menu li a {
    display: block;
    padding: 12px 20px;
    margin: 0;
    line-height: 1.3;
    letter-spacing: normal;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    -webkit-transition: .1s;
    transition: .1s;
    visibility: inherit !important;
    color: #9623D9 !important;
    position: relative;
    z-index: 1;
}

.vw_menu ul .sub-menu li:hover>a,
.vw_menu ul .sub-menu .sub-menu li:hover>a,
.vw_menu ul .sub-menu .sub-menu .sub-menu li:hover>a,
.vw_menu ul .sub-menu .sub-menu .sub-menu .sub-menu li:hover>a {
    color: #fff !important;
}

.sub-menu li a:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background-image: linear-gradient(90deg, #c115db 0%, #692fd5 100%);
    margin: auto;
    transition: .5s;
    z-index: -1;
}

.sub-menu li a:hover:before {
    width: 100%;
}

/* sub menu 2 
=================*/

.vw_menu ul .sub-menu .sub-menu {
    left: 100%;
    top: 130%;
    opacity: 0;
    visibility: hidden;
}

.vw_menu ul .sub-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    top: 0%;
}

/* sub menu 3 
==================*/

.vw_menu ul .sub-menu .sub-menu li {
    position: relative;
}

.vw_menu ul .sub-menu .sub-menu .sub-menu {
    right: 100%;
    left: auto;
    top: 130%;
    opacity: 0;
    visibility: hidden;
}

.vw_menu ul .sub-menu .sub-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    top: 0%;
}

ul.sub-menu li a span {
    background: #00cc99;
    padding: 5px 10px;
    color: #fff;
    opacity: 1;
    font-family: 'Fira Sans';
    border-radius: 2px;
    margin-left: 5px;
    transition: .5s;
}

ul.sub-menu li:hover a span {
    background: rgba(255, 255, 255, 0.20);
}

/* sub menu 4 
====================*/

.vw_menu ul .sub-menu .sub-menu .sub-menu li {
    position: relative;
}

.vw_menu ul .sub-menu .sub-menu .sub-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    top: 0%;
}

.vw_menu li a:hover:before {
    width: 101%;
}

.vw_nav_manu.sticky .logo_img {
    display: none;
}

.main_sticky {
    display: none;
}

.vw_nav_manu.sticky .main_sticky {
    display: inherit;
}

.mobile-menu.mean-container {
    overflow: hidden;
}

/*
<!-- ============================================================== -->
<!-- Start vw Slider Section Css -->
<!-- ============================================================== -->*/

.VjvwrXKC5H {
    height: 766px;
    position: relative;
    z-index: 1;
}

.GVqVFhUUV4 h5 {
    font-size: 14px;
    color: #7a2ad5;
    font-weight: 500;
    margin: auto;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
}

.GVqVFhUUV4 h5:before {
    position: absolute;
    content: "";
    left: 190px;
    top: 12px;
    width: 100%;
    height: 100%;
    background: url(../images/slider/shape0.png);
    background-repeat: no-repeat;
}

.GVqVFhUUV4 h1 {
    font-size: 55px;
    letter-spacing: -2px;
    line-height: 70px;
    color: #202020;
    font-weight: 800;
    font-family: "Mulish";
    margin: auto;
}

.GVqVFhUUV4 p {
    font-size: 18px;
    line-height: 26px;
    color: #919191;
    font-weight: 400;
    margin: 10px 0 27px;
    width: 90%;
}

.hero-button {
    display: inline-block;
    padding-right: 15px;
}

.hero-button a {
    display: inline-block;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Rubik";
    border-radius: 6px;
    background-image: linear-gradient(90deg, #c115db 0%, #692fd5 100%);
    padding: 16px 25px;
    position: relative;
    z-index: 1;
}

.hero-button a:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    border-radius: 6px;
    transform: scale(0);
    z-index: -1;
    background: linear-gradient(to right, #c115db, #692fd5, #7A2AD7, #c115db);
}

.hero-button a:hover:before {
    transform: scale(1);
}

.hero-button a i {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    padding-left: 10px;
}

.hero-video-button {
    display: inline;
}

.hero-video-button a span {
    display: inline;
    font-size: 18px;
    color: #8527d5;
    font-weight: 500;
    margin-left: 18px;
}

.hero-video-button a i {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    background-image: linear-gradient(90deg, #c115db 0%, #692fd5 100%);
    color: #ffff;
    text-align: center;
    font-size: 32px;
    position: relative;
    top: 6px;
}

.jjD9uShDtA img {
    width: 100%;
}

.hero-shape {
    position: absolute;
    top: -100px;
    left: 0;
}

.hero-shape1 {
    position: absolute;
    right: 0;
    top: -100px;
    z-index: -1;
}

.hero-shape2 {
    position: absolute;
    right: 45%;
    bottom: 80px;
    animation: 8.0s ease 0s infinite normal none running bounce;
}

@keyframes bounce {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(35px);
    }

    100% {
        transform: translateX(0);
    }
}

.hero-shape3 {
    position: absolute;
    right: 23%;
    bottom: 62px;
    animation: 10.0s ease 0s infinite normal none running bounce1;
}

@keyframes bounce1 {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(35px);
    }

    100% {
        transform: translateX(0);
    }
}

/*<!-- Start vw section-title Css -->*/

.section-title {
    margin-bottom: 55px;
}

.section-title h5 {
    display: inline-block;
    margin: 0 auto 12px;
    font-size: 16px;
    color: #5f2ced;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.section-title h5:before {
    position: absolute;
    content: "";
    left: 72px;
    top: 10px;
    width: 100%;
    height: 100%;
    background: url(../images/resource/service-shape.png);
    background-repeat: no-repeat;
}

.section-title h1 {
    margin: auto;
    font-size: 30px;
    line-height: 40px;
    color: #202020;
    font-weight: 700;
    font-family: "Mulish";
}

.section-title p {
    width: 65%;
    font-size: 16px;
    line-height: 24px;
    color: #202020;
    font-weight: 400;
    font-family: "Rubik";
    margin: 23px auto 0 0;
}

/*section-title-two*/
.section-title-left {
    margin-bottom: 59px;
}

.section-title-left h5 {
    display: inline-block;
    margin: 0 auto 12px;
    font-size: 16px;
    color: #5f2ced;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.section-title-left h5:before {
    position: absolute;
    content: "";
    left: 136px;
    top: 10px;
    width: 100%;
    height: 100%;
    background: url(../images/resource/service-shape.png);
    background-repeat: no-repeat;
}

.section-title-left h5:after {
    position: absolute;
    content: "";
    right: 62px;
    top: 10px;
    width: 100%;
    height: 100%;
    background: url(../images/resource/service-shape3.png);
    background-repeat: no-repeat;
}

.section-title-left h1 {
    margin: auto;
    font-size: 30px;
    line-height: 40px;
    color: #202020;
    font-weight: 700;
    font-family: "Mulish";
}

.section-title-left p.description {
    width: 44%;
    font-size: 16px;
    line-height: 24px;
    color: #202020;
    font-weight: 400;
    font-family: "Rubik";
    margin: 23px auto 0;
}

/*<!-- ============================================================== -->
<!-- Start vw feature Section  -->
<!-- ============================================================== -->*/

.feature-section {
    background: url(../images/resource/feature-bg.png);
    padding: 150px 0 115px;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.row.upper {
    height: 404px;
    border-radius: 30px;
    background-image: linear-gradient(90deg, #c115db 0%, #692fd5 100%);
    padding: 0 38px 0;
}

.single-feature-box {
    padding: 0 50px 0;
}

.single-feature-box h3 {
    font-size: 18px;
    color: #6a31d7;
    font-weight: 500;
    font-family: "Rubik";
    margin: auto;
    background: #FCF6FE;
    display: inline-block;
    width: 185px;
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
    text-align: center;
    transition: .5s;
    position: relative;
    z-index: 1;
}

.single-feature-box h3:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    background: linear-gradient(to right, #c115db, #692fd5, #7A2AD7, #c115db);
    border-radius: 6px;
    z-index: -1;
    transform: scale(0);
}

.single-feature-box:hover h3:before {
    transform: scale(1);
}

.single-feature-box:hover h3 {
    color: #FFF;
}

.single-feature-box p {
    opacity: 0.702;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 400;
    margin: 25px auto 18px 0;
    width: 95%;
}

.single-feature-box a {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.single-feature-box a i {
    font-size: 12px;
    padding-left: 5px;
    position: absolute;
    left: 65px;
    top: 2px;
    opacity: 0;
    transition: .5s;
}

.single-feature-box a:hover i {
    opacity: 1;
    margin-left: 20px;
}

.single-feature-box.up {
    position: relative;
    z-index: 1;
}

.single-feature-box.up:before {
    position: absolute;
    content: "";
    left: 0px;
    top: -10px;
    opacity: 0.231;
    width: 1px;
    height: 200px;
    background: #ffffff;
}

.single-feature-box.up:after {
    position: absolute;
    content: "";
    right: -22px;
    top: -10px;
    opacity: 0.231;
    width: 1px;
    height: 200px;
    background: #ffffff;
}

/*---owl-dots---*/

.owl-dots {
    position: absolute;
    left: 50%;
    bottom: -40px;
    border-radius: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.owl-dot.active {
    width: 22px;
    height: 9px;
    border-radius: 4px;
    background-color: #563afb;
}

.owl-dot {
    margin: 0 5px 0;
    width: 9px;
    height: 9px;
    line-height: 9px;
    border-radius: 4px;
    background-color: #563afb;
    display: inline-block !important;
}

/*<!-- ============================================================== -->
<!-- End vw feature Section  -->
<!-- ============================================================== -->*/






/*<!-- ============================================================== -->
<!-- Start vw service Section  -->
<!-- ============================================================== -->*/

.service-section {
    padding: 43px 0 38px;
}

.service-project-button {
    text-align: right;
}

.service-project-button a {
    display: inline-block;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Rubik";
    border-radius: 6px;
    background-image: linear-gradient(90deg, #b519d9 0%, #6931d7 100%);
    padding: 14px 26px;
    position: relative;
    z-index: 1;
}

.service-project-button a:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: .5s;
    background: linear-gradient(to right, #c115db, #692fd5, #7A2AD7, #c115db);
    border-radius: 6px;
    transform: scale(0);
    z-index: -1;
}

.service-project-button a:hover:before {
    transform: scale(1);
}

.service-project-button a i {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    padding-left: 15px;
}

.single-service-box {
    margin-bottom: 30px;
    border-radius: 15px;
    background-color: #6a31d7;
    padding: 55px 45px 35px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.single-service-box:hover {
    transform: translateY(15px);
}

.single-service-box:hover {
    background-image: linear-gradient(90deg, #b519d9 0%, #6931d7 100%);
}

.single-service-box:hover:before {
    display: none;
}

.single-service-box:before {
    position: absolute;
    content: "";
    left: 145px;
    bottom: 60px;
    width: 100%;
    height: 100%;
    background: url(../images/resource/service-shape1.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(350deg);
    transition: .5s;
}

.single-service-box:before {
    position: absolute;
    content: "";
    left: 145px;
    bottom: 40px;
    width: 100%;
    height: 100%;
    background: url(../images/resource/service-shape1.png);
    background-repeat: no-repeat;
    transform: rotate(356deg);
    background-size: contain;
}

.service-icon img {
    border-radius: 6px;
    filter: drop-shadow(0 0 22.5px rgba(255, 0, 0, 0.0));
    background-color: #611ae7;
    display: inline-block;
    padding: 14px 14px;
    transition: .5s;
}

.service-icon img:hover {
    transform: translateY(-10px);
}

.service-title {
    position: absolute;
    top: 28px;
    right: 28px;
}

.service-title h1 {
    font-size: 70px;
    font-weight: 400;
    filter: drop-shadow(0 0 22.5px rgba(255, 0, 0, 0.2));
    -webkit-text-stroke-width: 2px;
    color: transparent;
    -webkit-text-stroke-color: #ffffff;
    margin: auto;
    font-family: "Rubik";
}

.service-content h4 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Rubik";
    margin: auto;
    padding: 27px 0 25px;
}

.service-content p {
    opacity: 0.702;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Rubik";
    margin: 0 auto 0 0;
    width: 85%;
}

/*<!-- ============================================================== -->
<!-- End vw service Section  -->
<!-- ============================================================== -->*/






/*<!-- ============================================================== -->
<!-- Start vw about Section  -->
<!-- ============================================================== -->*/

.aoOW1D1tez {
    padding: 120px 0 105px;
}

.aoOW1D1tez .section-title {
    margin-bottom: 35px;
}

.aoOW1D1tez .section-title h5:before {
    left: 80px;
}

.aoOW1D1tez .section-title p {
    width: 82%;
    color: #616161;
}

.about-thumb {
    position: relative;
    z-index: 1;
}

.about-shape {
    position: absolute;
    top: -555px;
    right: 100px;
    animation-name: rotateme;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(250deg);
    }
}

@keyframes alltuchtopdown {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px)
    }

    50% {
        -webkit-transform: rotateX(0deg) translateY(-20px);
        -ms-transform: rotateX(0deg) translateY(-20px);
        transform: rotateX(0deg) translateY(-20px)
    }

    100% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px)
    }
}

.about-shape1 {
    position: absolute;
    bottom: 0;
    right: 105px;
    animation: 8.0s ease 0s infinite normal none running bounce3;
}

.about-shape2 {
    position: absolute;
    bottom: 90px;
    left: -118px;
    animation: 7s ease 0s infinite normal none running bounce3;
}

@keyframes bounce3 {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(35px);
    }

    100% {
        transform: translateX(0);
    }
}



.about-icon-box {
    display: inline-flex;
    margin-bottom: 40px;
}

.icon {
    position: relative;
    padding-right: 35px;
    top: 26px;
}

.icon img {
    transition: .5s;
}

.icon img:hover {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.about-title h4 {
    font-size: 20px;
    color: #202020;
    font-weight: 700;
    font-family: "Mulish";
    margin: auto;
}

.about-title p {
    font-size: 16px;
    line-height: 24px;
    color: #616161;
    font-weight: 400;
    margin: 8px auto 0 0;
    width: 66%;
}

.about-button {
    margin-top: 14px;
}

.about-button a {
    display: inline-block;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Rubik";
    border-radius: 6px;
    background-image: linear-gradient(90deg, #b519d9 0%, #6931d7 100%);
    padding: 14px 26px;
    position: relative;
    z-index: 1;
}

.about-button a i {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    padding-left: 15px;
}

.about-button a:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: .5s;
    background: linear-gradient(to right, #c115db, #692fd5, #7A2AD7, #c115db);
    border-radius: 6px;
    transform: scale(0);
    z-index: -1;
}

.about-button a:hover:before {
    transform: scale(1);
}

/*<!-- ============================================================== -->
<!-- End vw about Section  -->
<!-- ============================================================== -->*/





/*<!-- ============================================================== -->
<!-- Start vw why choose us Section  -->
<!-- ============================================================== -->*/

.why-choose-us-section {
    padding: 0 0 70px;
}

.why-choose-us-section .section-title h5:before {
    left: 130px;
}

.why-choose-us-section .section-title {
    margin-bottom: 30px;
}

/*accordion*/
.accordion li {
    position: relative;
    list-style: none;
    margin-bottom: 10px;
    border-radius: 6px;
    filter: drop-shadow(0px 12px 22.5px rgba(0, 0, 0, 0.15));
    background-color: #ffffff;
    transition: .5s;
}

.accordion li a {
    width: 100%;
    display: block;
    cursor: pointer;
    user-select: none;
    color: #7d43eb !important;
    padding: 11px 25px 11px;
    font-size: 20px;
    line-height: 50px;
    font-weight: 500;
    transition: .5s;
}

.accordion li a.active {
    background-image: linear-gradient(90deg, #c115db 0%, #692fd5 100%);
    border-radius: 6px;
    color: #FFFF !important;
}

.accordion li a span i {
    display: inline-block;
    float: right;
    transform: rotate(270deg);
    transition: .5s;
    font-size: 16px;
    transition: .5s;
}

a.active span i {
    transform: rotate(187deg) !important;
}

.accordion li p {
    display: none;
    font-size: 16px;
    color: #616161;
    margin: auto;
    padding: 25px 25px 25px;
}

a.active:after {
    transform: rotate(0deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a.active:before {
    display: none;
}

.why-choose-us-thumb {
    position: relative;
    z-index: 1;
    left: 50px;
}

.why-choose-us-shape {
    position: absolute;
    z-index: -1;
    bottom: 185px;
    right: 40px;
}

/*<!-- ============================================================== -->
<!-- End vw why choose us Section  -->
<!-- ============================================================== -->*/





/*<!-- ============================================================== -->
<!-- Start vw counter Section  -->
<!-- ============================================================== -->*/

.counter-section {
    background: url(../images/resource/counter-bg.png);
    padding: 96px 0 70px;
    background-attachment: fixed;
}

.single-counter-box {
    border-radius: 10px;
    background-color: #ffffff;
    text-align: center;
    padding: 60px 0 32px;
    margin-bottom: 30px;
    transition: .5s;
}

.single-counter-box:hover {
    transform: translateY(-20px);
}

.counter-icon {
    position: relative;
}

.counter-icon:before {
    position: absolute;
    content: "";
    left: 0;
    top: -20px;
    width: 100%;
    height: 188%;
    background: url(../images/resource/counter-shape.png);
    background-repeat: no-repeat;
    background-position: center center;
}

.counter-text {
    padding-top: 32px;
}

.counter-text h1 {
    font-size: 46px;
    color: #4d1da8;
    font-weight: 700;
    font-family: "Mulish";
    margin: auto;
    display: inline;
}

.counter-text span {
    font-size: 40px;
    color: #4d1da8;
    font-weight: 700;
    font-family: "Mulish";
    display: inline;
}

.counter-text p {
    font-size: 18px;
    color: #4d1da8;
    font-weight: 700;
    text-align: center;
    margin: 6px auto 0;
    font-family: "Mulish";
}

/*<!-- ============================================================== -->
<!-- End vw counter Section  -->
<!-- ============================================================== -->*/




/*<!-- ============================================================== -->
<!-- Start vw testimonial Section  -->
<!-- ============================================================== -->*/

.testimonial-section {
    background: url(../images/resource/teasti-bg.png);
    padding: 80px 0 140px;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.testimonial-section .section-title h5:before {
    left: 92px;
}

.testimonial-button {
    margin-top: -28px;
}

.testimonial-button a {
    display: inline-block;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Rubik";
    border-radius: 6px;
    background-image: linear-gradient(90deg, #b519d9 0%, #6931d7 100%);
    padding: 14px 27px;
    position: relative;
    z-index: 1;
}

.testimonial-button a i {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    padding-left: 15px;
}

.testimonial-button a:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: .5s;
    background: linear-gradient(to right, #c115db, #692fd5, #7A2AD7, #c115db);
    border-radius: 6px;
    transform: scale(0);
    z-index: -1;
}

.testimonial-button a:hover:before {
    transform: scale(1);
}

.single-testi-box {
    border-radius: 10px;
    background-color: #ffffff;
    padding: 48px 50px 25px;
    position: relative;
    z-index: 1;
    margin-top: 30px;
    box-shadow: 0 13px 28px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.0);
}

.single-testi-box:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 62%;
    width: 100%;
    height: 100%;
    background: url(../images/resource/testi-shape.png);
    background-repeat: no-repeat;
}

.testi-desc p {
    font-size: 20px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    font-style: italic;
    font-family: "Rubik";
    margin: 0 auto 25px 0;
    width: 90%;
}

.img {
    display: inline-block;
}

.testi-icon {
    position: absolute;
    top: -26px;
    left: 46%;
    width: 57px;
    height: 57px;
    line-height: 57px;
    border-radius: 28px;
    background: #ffffff;
}

.testi-icon img {
    margin-top: -15px;
    margin-left: -15px;
}

.people-text h5 {
    font-size: 18px;
    color: #0d0c0c;
    font-weight: 500;
    font-family: "Rubik";
    margin: auto;
}

.people-text p {
    font-size: 14px;
    color: #0d0c0c;
    font-weight: 400;
    font-family: "Rubik";
    margin: 2px auto 0;
}

.testi-content {
    margin: 0 0 -28px;
}

.people-text {
    display: inline-table;
    position: relative;
    top: -35px;
}

.star-icon {
    position: absolute;
    bottom: 60px;
    right: 70px;
}

.star-icon ul {
    list-style: none;
    display: inline-block;
}

.star-icon ul li {
    color: #743fd9;
    font-size: 16px;
}

.testimonial-section .owl-dots {
    bottom: -50px;
}

/*<!-- ============================================================== -->
<!-- End vw testimonial Section  -->
<!-- ============================================================== -->*/






/*<!-- ============================================================== -->
<!-- Start vw brand Section  -->
<!-- ============================================================== -->*/

.brand-section {
    padding: 60px 0 85px;
}

.single-brand-box {
    margin-bottom: 30px;
    text-align: -webkit-center;
}

.brand-thumb img {
    filter: brightness(10) invert(10);
    transition: .5s;
}

.single-brand-box:hover .brand-thumb img {
    filter: brightness(1) invert(0);
}

/*<!-- ============================================================== -->
<!-- End vw brand Section  -->
<!-- ============================================================== -->*/







/*<!-- ============================================================== -->
<!-- Start vw pricing Section  -->
<!-- ============================================================== -->*/

.pricing-section {
    padding: 0 0 65px;
}

.pricing-section.price {
    padding: 120px 0 90px;
}

.pricing-section .section-title-left h5:before {
    left: 122px;
}

.pricing-section .section-title-left h5:after {
    right: 62px;
}

.pricing-section .section-title-left h5 {
    margin: 0 auto 6px;
}

.pricing-section .section-title-left p.description {
    color: #616161;
    margin: 17px auto 0;
}


/*-- pricing-tab--*/

.pricing-tab-button {
    text-align: center;
    margin: -31px 0 60px;
}

.pricing-tab-button ul li {
    display: inline-block;
}

.pricing-tab-button ul li button.active {
    border: none !important;
    font-size: 17px;
    font-weight: 500;
    color: #ffff;
    background-image: linear-gradient(94deg, #ca35e5 0%, #7a29d5 100%);
    width: 136px;
    height: 44px;
}

.pricing-tab-button ul li button {
    border: none;
    font-size: 18px;
    color: #1c1c1c;
    font-weight: 500;
    font-family: "Mulish";
    text-align: center;
    width: 134px;
    height: 44px;
    background: #E5E2FF;
    margin-left: -2px;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

h2.price-yearly {
    display: none;
}

.tab-content {
    display: none;
    transition: .5s;
    -webkit-animation: move 0.4s ease-in;
    animation: FadeInUp 0.5s ease-in;
}

.tab-content.active {
    display: block;
}

.pricing-single-items.style_one.style_3 {
    padding: 48px 0 40px 0;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 4px;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.15));
    background: #ffffff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pricing-single-items.style_one.style_3:before {
    position: absolute;
    content: "";
    left: 0;
    top: -28px;
    width: 100%;
    height: 100%;
    background: url(../images/resource/pricing-bg.png);
    background-repeat: no-repeat;
    z-index: -1;
}

.pricing-single-items.style_one.style_3:after {
    position: absolute;
    content: "";
    left: 0;
    top: -28px;
    width: 100%;
    height: 100%;
    background: url(../images/resource/pricing-shape.png);
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0;
    transition: .5s;
}

.pricing-single-items.style_one.style_3:hover:after {
    opacity: 1;
}

h3.pricing-plan2 {
    margin: auto;
    display: inline-block;
    font-size: 16px;
    color: #1c1c1c;
    font-weight: 500;
    text-align: center;
    width: 121px;
    height: 34px;
    line-height: 34px;
    border-radius: 4px;
    background: #ffffff;
}

.pricing-plan h2 {
    margin: 18px 0 84px;
    font-size: 46px;
    color: #fefefe;
    font-weight: 600;
    text-align: center;
}

.pricing-plan h2 span {
    font-size: 18px;
    color: #FFF;
    font-weight: 400;
    display: inline-block;
}

.pricing-desc p {
    font-size: 16px;
    line-height: 24px;
    color: #616161;
    font-weight: 400;
    font-family: "Rubik";
    text-align: center;
    width: 71%;
    margin: auto;
}

.pricing-feature {
    text-align: left;
    padding: 48px 85px 35px;
    position: relative;
    z-index: 1;
}

.pricing-feature:before {
    position: absolute;
    content: "";
    left: 70px;
    top: 23px;
    opacity: 0.102;
    width: 239px;
    height: 1px;
    background: #533efe;
}

.pricing-feature:after {
    position: absolute;
    content: "";
    left: 70px;
    bottom: 13px;
    opacity: 0.102;
    width: 239px;
    height: 1px;
    background: #533efe;
}

.pricing-feature ul {
    list-style: none;
}

.pricing-feature ul li {
    padding-bottom: 7px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    font-family: "Mulish";
    color: #616161;
    transition: .5s;
}

.pricing-single-items.style_one.style_3:hover .pricing-feature ul li {
    color: #6a30d6;
}

.pricing-feature ul li i {
    display: inline-block;
    color: #4f3bf3;
    font-size: 18px;
    padding-right: 10px;
}

.pricing-btn {
    padding-top: 25px;
}

.pricing-btn a {
    display: inline-block;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Rubik";
    border-radius: 6px;
    background-image: linear-gradient(90deg, #c115db 0%, #692fd5 100%);
    padding: 14px 27px;
    position: relative;
    z-index: 1;
}

.pricing-btn a i {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    padding-left: 15px;
}

.pricing-btn a:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #c115db, #692fd5, #7A2AD7, #c115db);
    transition: .5s;
    transform: scale(0);
    border-radius: 6px;
    z-index: -1;
}

.pricing-btn a:hover:before {
    transform: scale(1);
}

.pricing-button {
    padding-top: 25px;
}

.pricing-button a {
    display: inline-block;
    font-size: 18px;
    color: #09aff2;
    font-weight: 500;
    text-align: center;
    width: 100%;
    padding: 12px 0;
    border-radius: 2px;
    background: #ffffff;
    position: relative;
    z-index: 1;
    transition: .5s;
}

/*<!-- ============================================================== -->
	<!-- End vw pricing Section  -->
<!-- ============================================================== -->*/







/*<!-- ============================================================== -->
 <!-- Start vw blog Section  -->
<!-- ============================================================== -->*/

.blog-section {
    padding: 0 0 75px;
}

.blog-section.upper {
    padding: 115px 0 90px;
}

.single-blog-box {
    background: #ffffff;
    margin-bottom: 30px;
    border-radius: 7px;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.15));
    background-color: #ffffff;
}

.blog-thumb {
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    border-radius: 5px 5px 0 0;
    transition: .5s;
}

.single-blog-box:hover .blog-thumb img {
    transform: scale(1.1);
}


.blog-meta-icon {
    display: inline-block;
}

.blog-meta-icon h6 i {
    color: #c215db;
    font-size: 16px;
    padding-right: 10px;
}

.blog-meta-icon h6 span {
    font-size: 16px;
    color: #646464;
    font-weight: 400;
    font-family: "Mulish";
    display: inline-block;
    margin: auto;
    position: relative;
    z-index: 1;
}

.blog-meta-icon h6 span:before {
    position: absolute;
    content: "";
    right: -35px;
    top: 6px;
    opacity: 0.251;
    width: 7px;
    height: 7px;
    border-radius: 3px;
    background-color: #777af2;
}

.blog-meta-comment-icon {
    display: inline-block;
    float: right;
}

.blog-meta-comment-icon h6 i {
    color: #c215db;
    font-size: 16px;
    padding-right: 10px;
}

.blog-meta-comment-icon h6 span {
    font-size: 16px;
    color: #646464;
    font-weight: 400;
    font-family: "Mulish";
    display: inline-block;
    margin: auto;
}

.blog-content {
    padding: 17px 40px 35px;
}

.blog-content h3 {
    margin: auto;
}

.blog-content h3 a {
    margin: inherit;
    display: inline-block;
    transition: .5s;
    width: 82%;
    font-size: 22px;
    letter-spacing: -1px;
    line-height: 32px;
    color: #1d2124;
    font-weight: 600;
    font-family: "Mulish";
    padding-top: 43px;
    position: relative;
    z-index: 1;
}

.blog-content h3 a:before {
    position: absolute;
    content: "";
    left: 0;
    top: 20px;
    width: 121%;
    height: 100%;
    border-top: 1px solid #5a49f8;
    opacity: 0.102;
}

.single-blog-box:hover .blog-content h3 a {
    color: #c215db;
}

.blog-content p {
    width: 92%;
    margin: inherit;
    padding: 11px 0 15px;
    transition: .5s;
    font-size: 16px;
    line-height: 28px;
    color: #646464;
    font-weight: 400;
    font-family: "Mulish";
}

.single-blog-box:hover .blog-content p {
    color: #c215db;
}

.blog-button a {
    display: inline-block;
    font-size: 16px;
    color: #762cd7;
    font-weight: 700;
    font-family: "Mulish";
}

.blog-button a i {
    display: inline-block;
    color: #762cd7;
    font-size: 12px;
    padding-left: 5px;
    position: relative;
    left: -40px;
    top: 1px;
    opacity: 0;
    transition: .5s;
}

.single-blog-box:hover .blog-button a i {
    opacity: 1;
    margin-left: 40px;
}

.single-blog-box:hover .blog-button a {
    color: #000000;
}

.single-blog-box:hover .blog-button a i {
    color: #000000;
}

/*<!-- ============================================================== -->
<!-- End vw blog Section  -->
<!-- ============================================================== -->*/







/*<!-- ============================================================== -->
 <!-- Start vw subscribe Section  -->
<!-- ============================================================== -->*/

.subscribe-section {
    padding: 0 0 120px;
    overflow: hidden;
}

.subscribe-section.up {
    padding: 95px 0 120px;
}

.row.subscribe {
    border-radius: 20px;
    background-image: linear-gradient(90deg, #c115db 0%, #692fd5 100%);
    padding: 108px 0 50px;
    position: relative;
    z-index: 1;
}

.subscribe-shape {
    position: absolute;
    z-index: -1;
    bottom: 15px;
    left: 58%;
    animation: 8.0s ease 0s infinite normal none running bounce1;
}

.subscribe-section .section-title-left {
    margin-bottom: 28px;
}

.section-title-left h4 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Mulish";
    margin: 0 auto 22px;
}

.subscribe-section .section-title-left h1 {
    margin: auto;
    font-size: 50px;
    line-height: 65px;
    color: #ffffff;
    font-weight: 700;
    font-family: "Mulish";
    text-align: center;
}

.mail-address {
    text-align: center;
}

.mail-address input {
    display: inline-block;
    border: 1px solid #ffff;
    padding: 0 0 0 35px;
    background: #ffffff;
    width: 660px;
    height: 60px;
    border-radius: 30px;
}

.mail-address input::placeholder {
    opacity: 0.510;
    font-size: 18px;
    color: #616161;
    font-weight: 400;
}

.Subcribe-button button {
    display: inline-block;
    border: 1px solid #7c2ad7;
    z-index: 1;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Rubik";
    width: 140px;
    height: 50px;
    border-radius: 25px;
    background-color: #7c2ad7;
    position: relative;
    top: -55px;
    left: 255px;
}



a {
    color: #a94029;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.H0ktOjk539 {
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
    gap: 60px;
    padding: 50px 30px;
    flex-wrap: wrap;
}

.main-story {
    flex: 3;
    background: #ffffff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-story header h1 {
    font-size: 3.2em;
    margin-bottom: 35px;
    color: #a94029;
}

.meta-bar {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 40px;
}

.feature-image img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 40px;
}

.main-story h2 {
    margin-top: 60px;
    font-size: 2.5em;
    color: #a94029;
}

.main-story h3 {
    margin-top: 50px;
    font-size: 1.7em;
    color: #a94029;
}

.main-story p {
    margin-bottom: 35px;
    text-align: justify;
}

.main-story blockquote {
    margin: 45px 0;
    padding: 25px;
    background: #f9ede8;
    font-style: italic;
    border-left: 5px solid #a94029;
    border-radius: 15px;
}

.aside-box {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-width: 320px;
}

.aside-box h3 {
    color: #a94029;
    font-size: 1.9em;
    margin-bottom: 25px;
}

.lKIAMt3wnd {
    margin-bottom: 45px;
}

.lKIAMt3wnd img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 12px;
}

.lKIAMt3wnd h4 {
    font-size: 1.3em;
    color: #2c1f17;
    margin-bottom: 8px;
}

.lKIAMt3wnd p {
    font-size: 0.95em;
    color: #555;
}

.lKIAMt3wnd a {
    display: inline-block;
    margin-top: 10px;
    background: #a94029;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    transition: background 0.3s ease;
}

.lKIAMt3wnd a:hover {
    background: #8a301b;
}

@media (max-width: 1200px) {
    .H0ktOjk539 {
        gap: 40px;
        padding: 40px 20px;
    }

    .main-story {
        padding: 50px;
    }
}

@media (max-width: 992px) {
    .H0ktOjk539 {
        flex-direction: column;
        padding: 30px 15px;
    }

    .main-story {
        padding: 40px 25px;
    }

    .main-story header h1 {
        font-size: 2.6em;
    }

    .main-story h2 {
        font-size: 2.2em;
    }

    .main-story h3 {
        font-size: 1.5em;
    }

    .aside-box {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .main-story header h1 {
        font-size: 2.2em;
    }

    .main-story h2 {
        font-size: 2em;
    }

    .main-story h3 {
        font-size: 1.4em;
    }

    .main-story {
        padding: 30px 20px;
    }

    .aside-box {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .H0ktOjk539 {
        padding: 20px 10px;
        gap: 30px;
    }

    .main-story {
        padding: 20px 15px;
    }

    .main-story header h1 {
        font-size: 1.8em;
    }

    .main-story h2 {
        font-size: 1.6em;
    }

    .main-story h3 {
        font-size: 1.3em;
    }

    .aside-box {
        padding: 20px 15px;
    }

    .aside-box h3 {
        font-size: 1.6em;
    }

    .lKIAMt3wnd h4 {
        font-size: 1.1em;
    }

    .lKIAMt3wnd p {
        font-size: 0.9em;
    }

    .lKIAMt3wnd a {
        padding: 8px 16px;
        font-size: 0.85em;
    }
}

/*<!-- ============================================================== -->
<!-- End vw subscribe Section  -->
<!-- ============================================================== -->*/


.footer-section a {
    color: #ffffff;
}



/*<!-- ============================================================== -->
<!-- Start vw footer Section Css -->
<!-- ============================================================== -->*/

.footer-section {
    padding: 102px 0 12px;
    background-color: #0a0a0a;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.company-info-desce p {
    opacity: 0.702;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Mulish";
    margin: 26px auto 25px;
    width: 100%;
}

.footer-widget-social-icon ul {
    list-style: none;
}

.footer-widget-social-icon ul li {
    display: inline-block;
    padding-right: 5px;
}

.footer-widget-social-icon ul li a {
    display: inline-block;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 5px;
    background-color: #B14DE1;
    transition: .5s;
}

.footer-widget-social-icon ul li a:hover {
    background: #FFFFFF;
    color: #B14DE1;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.footer-widget-title {
    padding-bottom: 28px;
}

.footer-widget-title h3 {
    font-size: 24px;
    letter-spacing: -1px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Mulish";
    margin: auto;
}


.OqFJ8vanzy ul {
    list-style: none;
}

.OqFJ8vanzy ul li {
    padding: 0 0 5px;
    margin-left: 35px;
    position: relative;
    z-index: 1;
    opacity: 0.702;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Rubik";
}

.OqFJ8vanzy ul li:before {
    position: absolute;
    content: "";
    left: -35px;
    top: 12px;
    width: 22px;
    height: 1px;
    background: #ffff;
    transition: .5s;
}

.icon-box {
    display: inline-flex;
    padding-bottom: 28px;
}

.XRWysjACfp {
    margin: -6px 0 0 23px;
}

.widget-icon i {
    display: inline-block;
    color: #ffff;
    line-height: 46px;
    text-align: center;
    font-size: 20px;
    width: 46px;
    height: 46px;
    border-radius: 23px;
    background-color: #9C54E0;
}

.XRWysjACfp p {
    margin: auto;
    opacity: 0.702;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Mulish";
}

.XRWysjACfp h4 {
    margin: 4px auto 0;
    font-size: 18px;
    letter-spacing: -1px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Mulish";
}

/*--copyright-section--*/

.copyright-description {
    padding-top: 93px;
    position: relative;
    z-index: 1;
}

.copyright-description:before {
    position: absolute;
    z-index: -1;
    content: "";
    left: 0;
    top: -38px;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #9E55E0;
}

.copyright-description p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    margin: auto;
}

.footer-shape {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 28%;
    animation: 6s ease 0s infinite normal none running bounce3;
}


/*<!-- ============================================================== -->
<!-- End vw footer Section Css -->
<!-- ============================================================== -->*/






/*<!-- ============================================================== -->
<!-- Start vw breadcumb Menu  -->
<!-- ============================================================== -->*/

.eBcledg7f3 {
    background: url(../images/resource/breadcumb-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    height: 450px;
    margin-top: -98px;
}

.breadcumb-title h1 {
    margin: auto;
    font-size: 30px;
    line-height: 40px;
    color: #FFFF;
    font-weight: 700;
    font-family: "Mulish";
}

.YyZrLX0gP2 ul {
    list-style: none;
}

.YyZrLX0gP2 ul li {
    display: inline-block;
    font-size: 16px;
    color: #FFF;
    font-weight: 400;
}

.YyZrLX0gP2 ul li i {
    display: inline-block;
    font-size: 16px;
    color: #ffff;
    padding: 0 5px 0;
}

.YyZrLX0gP2 ul li a {
    display: inline-block;
    font-size: 16px;
    color: #FFF;
    font-weight: 400;
}

/*<!-- ============================================================== -->
	<!-- End vw breadcumb Menu  -->
<!-- ============================================================== -->*/






/*<!-- ============================================================== -->
<!-- Start vw faq Section  -->
<!-- ============================================================== -->*/

.faq-section {
    padding: 120px 0;
}

.google-map iframe {
    width: 100%;
    height: 420px;
    border-radius: 10px;
}

/*<!-- ============================================================== -->
<!-- End vw faq Section  -->
<!-- ============================================================== -->*/






/*<!-- ============================================================== -->
<!-- Start vw contact now secton  -->
<!-- ============================================================== -->*/

.contact-now-section {
    padding: 110px 0 90px;
    background: #f5f5f5;
}

.JDKBui47Be {
    text-align: center;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 5px;
    padding: 30px 30px 30px;
}

.single_contact_now_inner {
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: .5s;
}

.JDKBui47Be:hover .single_contact_now_inner {
    border: 2px solid #9623D9;
}

.single_contact_now_icon {
    padding-top: 24px;
}

.single_contact_now_icon i {
    font-size: 40px;
    color: #9623D9;
}

.single_contact_now_content {
    padding-bottom: 15px;
}

.single_contact_now_content h2 {
    font-size: 22px;
    padding-bottom: 12px;
}

.single_contact_now_content p {
    padding: 0;
    margin: 0;
    margin-bottom: 6px;
}

.contact_now_area .section_title_inner h2 {
    color: #fff;
}

.contact_now_area .section_title_text p {
    color: #fff;
}


/*<!-- ============================================================== -->
<!-- End vw contact now section  -->
<!-- ============================================================== -->*/






/*<!-- ============================================================== -->
	<!-- Start vw contact2 secton  -->
<!-- ============================================================== -->*/

.contact2-section {
    padding: 110px 0 120px;
}

.contact-form-main input {
    width: 100%;
    margin-bottom: 18px;
    height: 45px;
    padding-left: 15px;
    border: 1px solid #dddd;
    border-radius: 5px;
}

.contact-form-main textarea {
    width: 100%;
    padding-left: 15px;
    padding-top: 20px;
    height: 218px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form-main button {
    background: #9623D9;
    border: 2px solid #9623D9;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 10px 30px;
    transition: all 0.5s ease 0s;
    margin-top: 20px;
    font-family: "Mulish";
}

.map {
    width: 100%;
    margin: 0;
    height: 410px;
    border: 1px solid #ddd;
    border-radius: 10px;
}




/*<!-- ============================================================== -->
	<!-- End vw contact2 section -->
<!-- ============================================================== -->*/







/*<!-- ============================================================== -->
 <!-- Start vw blog grid Section  -->
<!-- ============================================================== -->*/

.paginations {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 28px;
}

.page-numbers li {
    display: inline-block;
}

.paginations a,
.page-numbers span.current {
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin: auto 5px;
    border: 1px solid #ddd;
    color: #888;
}

.paginations a:hover,
.paginations a.current,
.page-numbers span.current {
    background: linear-gradient(90deg, #c115db 0%, #692fd5 100%);
    border-color: linear-gradient(90deg, #c115db 0%, #692fd5 100%);
    color: #fff;
}


/*<!-- ============================================================== -->
<!-- End vw blog grid Section  -->->
<!-- ============================================================== -->*/






/*<!-- ============================================================== -->
<!-- Start vw Blog Detaisl section  -->
<!-- ============================================================== -->*/

.blog-details-section {
    padding: 120px 0;
}

.blog-thumb-left img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.blog-box {
    border: 1px solid #dddd;
    transition: .5s;
    margin-bottom: 30px;
    border-radius: 5px 5px 0 0;
    box-shadow: 0px 10px 25px rgba(10, 81, 200, 0.05);
    background: #ffff;
}

p.blog {
    width: 50%;
    margin-top: 0px;
}

.blog-content {
    padding: 25px 40px 26px;
}

.blog-meta-left a {
    color: #616161;
    font-size: 16px;
    margin-right: 22px;
    transition: .5s;
    position: relative;
    z-index: 1;
}

.blog-meta-left a:before {
    position: absolute;
    content: "";
    right: -13px;
    height: 12px;
    top: 4px;
    width: 1px;
    background: #616161;
}

.blog-meta-left a:hover {
    color: #692fd5;
}

.blog-meta-left span {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.meta-title {
    margin-top: 6px;
}

.meta-title a {
    color: #0a0a0a;
    font-size: 20px;
    font-weight: 500;
    transition: .5s;
}

.meta-title a:hover {
    color: #692fd5;
}

.blog-content-left {
    padding: 0 0 0 35px;
}

.blog-content-left h4 a {
    color: #0a0a0a;
    font-size: 32px;
    font-weight: 500;
    padding-bottom: 20px;
    display: inline-block;
    font-family: 'Mulish';
}

.blog-content-left p {
    font-size: 16px;
    line-height: 32px;
    width: 98%;
    opacity: 0.702;
    color: #000;
}

/*Blog Social Share
=======================*/

.blogs-social-share {
    padding: 24px 25px 25px;
    margin: 40px 0 40px;
    border-top: 1px solid rgba(16, 18, 16, 0.10196078431372549);
    border-bottom: 1px solid rgba(16, 18, 16, 0.10196078431372549);
}

span.social-text {
    font-size: 18px;
    font-weight: 500;
    color: #101210;
}

ul.social-share {
    float: right;
}

ul.social-share li {
    display: inline-block;
    list-style: none;
}

ul.social-share li a {
    height: 32px;
    width: 32px;
    line-height: 32px;
    background: #692fd5;
    text-align: center;
    display: inline-block;
    border-radius: 3px;
    font-size: 14px;
    color: #FFFFFF;
    margin-right: 7px;
    position: relative;
    z-index: 1;
}

ul.social-share li a:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #c115db;
    border-radius: 3px;
    z-index: -1;
    transform: scale(0);
    transition: .5s;
}

ul.social-share li a:hover:before {
    transform: scale(1);
}

ul.social-share li a:hover {
    color: #ffff;
}

.blog-details-auther {
    margin: 35px 0;
}

.blog-details-author-inner {
    background: #FFFFFF;
    padding: 30px 30px 25px;
    box-shadow: 0px 10px 25px rgba(10, 81, 200, 0.05);
}

.blog-details-auther-thumb {
    float: left;
    margin-right: 30px;
}

.blog-details-auther-thumb img {
    border-radius: 100%;
}

.blog-details-auther-content h4 {
    color: #692fd5;
    padding: 0 0 10px;
    font-size: 24px;
    font-weight: 600;
}

.blog-details-auther-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    width: 100%;
    margin: auto;
    color: #8796A5;
}

.blog-details-content {
    padding: 20px 0 18px;
}

.blog-details-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #692fd5;
}

.blog-details-comment {
    margin-bottom: 60px;
    position: relative;
}

.blog-details-comment-reply {
    position: absolute;
    right: 25px;
}

.blog-details-comment-reply a {
    background: #692fd5;
    padding: 3px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: 2px;
    display: inline-block;
    text-decoration: none;
}

.blog-details-comment-thumb {
    float: left;
    margin-right: 30px;
}

.blog-details-comment-thumb img {
    border-radius: 100%;
}

.blog-details-comment-content {
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-details-comment-content span {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}


.blog-details-comment-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    width: 100%;
    margin: auto;
    color: #8796A5;
}


.blog-details-comment-content h2 {
    font-size: 18px;
    margin-top: 0;
    color: #692fd5;
}

.widget_search {
    padding: 45px 35px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    border-radius: 5px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.15));
    background: #ffffff;
}

.widget_search input::placeholder {
    color: #888f99;
}

.widget_search form input {
    display: inline-block;
    padding: 12px 75px;
    border: 1px dashed #ddd;
    background: #ffff;
}

.widget_search form i {
    font-size: 17px;
    color: #692fd5;
    position: absolute;
    left: 75px;
    top: 65px;
}

.widget-recent-post {
    border-bottom: 1px solid rgba(16, 18, 16, 0.10196078431372549);
    padding: 0 0 25px;
    margin-bottom: 25px;
}

.rpost-thumb {
    margin-right: 20px;
}


.rpost-thumb img {
    height: 90px;
    width: 90px;
    border-radius: 10px;
}

h4.sidebar-title {
    padding: 0 0 30px;
}

.rpost-title h4 {
    margin-top: 2px;
}

.rpost-content h4 a {
    font-size: 17px;
    font-weight: 500;
    font-family: Mulish;
    line-height: 24px;
    color: #101010;
    display: inline-block;
    transition: .5s;
}

.rpost-title span {
    font-size: 15px;
    padding: 6px 0 0;
    display: inline-block;
}

.widget-sidebar-box {
    padding: 30px 30px 45px;
    border-radius: 5px;
    border-bottom: 30px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.15));
    background: #ffffff;
}

h4.sidebar-title.upp {
    padding: 0;
    margin: 0;
}

.sidebar-title {
    font-size: 24px;
    color: #01101e;
    font-weight: 700;
}

ul.sidebar-menu {
    list-style: none;
}

ul.sidebar-menu li a {
    font-size: 17px;
    color: #888f99;
    font-weight: 400;
    border: 1px dashed #888f99;
    display: inline-block;
    padding: 12px 0px 11px 0;
    margin: 30px 0 0;
    width: 100%;
    transition: .5s;
}

ul.sidebar-menu li a i {
    color: #888f99;
    font-size: 10px;
    display: inline-block;
    height: 20px;
    width: 20px;
    line-height: 20px;
    border: 1px solid #888f99;
    border-radius: 15px;
    text-align: center;
    margin: 0 5px 0 22px;
    transition: .5s;
}

ul.sidebar-menu li a span {
    float: right;
    margin-right: 30px;
}

ul.sidebar-menu li a:hover {
    color: #692fd5;
}

ul.sidebar-menu li a i:hover {
    color: #692fd5;
    border-color: #692fd5;
}

.blog-details-single-box {
    text-align: center;
    background: #fff;
    margin: 35px 0;
    padding: 35px 0 35px;
    border-radius: 5px;
    box-shadow: 10px 10px 57px rgba(16, 84, 200, 0.05);
}

.blog-content.up {
    padding: 12px 0 0;
}

.blog-content.up a {
    font-size: 22px;
    font-weight: 600;
}

.blog-content p {
    padding: 13px 0 18px;
    font-size: 16px;
    line-height: 24px;
    color: #616161;
    font-weight: 400;
    width: 85%;
}

.blog-details-icon a {
    font-size: 16px;
    color: #692fd5;
    display: inline-block;
    border: 1px dashed #692fd5;
    height: 40px;
    margin: 0 5px 0;
    transition: 0.5s;
    width: 40px;
    border-radius: 10px;
    line-height: 40px;
    text-align: center;
}

.blog-details-icon a:hover {
    background: #692fd5;
    color: #fff;
}

.widget-sidebar-box.up {
    background: #ffff;
    padding: 30px 30px 45px;
    border-radius: 5px;
    border-bottom: 30px;
}

.sidebar-title-left {
    font-size: 22px;
    color: #01101e;
    font-weight: 700;
    margin-bottom: 25px;
}

.tag-item {
    text-align: center;
}

.tag-item ul {
    list-style: none;
}

.tag-item ul li {
    display: inline-block;
}

.tag-item ul li a {
    display: inline-block;
    padding: 5px 19px;
    border: 1px dashed #692fd5;
    font-size: 15px;
    color: #656970;
    font-weight: 400;
    margin: 0 6px 10px;
    transition: .5s;
}

.tag-item ul li a:hover {
    color: #F1F5F9;
    background-color: #692fd5;
}

.contact-section.up {
    margin-top: 0;
}

/*<!-- ============================================================== -->
<!-- End vw Blog Detaisl section  -->
<!-- ============================================================== -->*/







/*<!-- ============================================================== -->
<!-- Start vw team Section  -->
<!-- ============================================================== -->*/

.team-section {
    padding: 110px 0 90px;
}

.single-team-box {
    background: #FFF;
    margin-bottom: 30px;
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.15));
}

.team-thumb img {
    width: 100%;
}

.single-team-icon {
    position: relative;
    z-index: 1;
}

.single-team-icon-inner {
    position: absolute;
    z-index: -1;
    right: -38px;
    padding: 10px 15px;
    text-align: center;
    bottom: 80px;
    opacity: 0;
}

.single-team-box:hover .single-team-icon-inner {
    opacity: 1;
    right: 0px;
}

.single-team-icon-inner {
    background: linear-gradient(90deg, #c115db 0%, #692fd5 100%);
    transition: .5s;
}

.single-team-icon-inner a {
    color: #FFFF;
    font-size: 16px;
    margin: 8px 0;
    display: block;
    border: 1px solid #FFFD;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 20px;
    text-align: center;
}

.single-team-content {
    padding: 12px 10px 22px;
    border-bottom: 5px solid #9F20D9;
}

.single-team-content h4 {
    color: #9F20D9;
    font-size: 22px;
    margin: 0;
}

.single-team-content span {
    color: #000;
    margin-top: 5px;
    display: inline-block;
    font-size: 16px;
}

/*<!-- ============================================================== -->
<!-- End vw team Section  -->
<!-- ============================================================== -->*/








/*===========================
<-- vw Loader Css -->
=============================*/
.loader-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: 0.8s 1s ease;
    z-index: 666;
}

.loader {
    position: relative;
    display: block;
    z-index: 201;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    transition: all 1s 1s ease;
    border: 3px solid transparent;
    border-top-color: #7F2AD7;
    -webkit-animation: spin 1.5s linear infinite;
    -moz-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.loader:before {
    position: absolute;
    content: '';
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: #9D24D9;
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:after {
    position: absolute;
    content: '';
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-right-color: #F9455Eff;
    -webkit-animation: spin 2.5s linear infinite;
    -moz-animation: spin 2.5s linear infinite;
    -o-animation: spin 2.5s linear infinite;
    animation: spin 2.5s linear infinite;
}

/*/ Here comes the Magic /*/

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-wrapper .loder-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: #111;
    z-index: 2;
}

.loader-wrapper .loder-section.left-section {
    left: 0;
    transition: 1s 1.4s ease;
}

.loader-wrapper .loder-section.right-section {
    right: 0;
    transition: 1s 1.4s ease;
}

/*/ When page loaded /*/
.loaded .loder-section.left-section {
    left: -100%;
}

.loaded .loder-section.right-section {
    right: -100%;
}

.loaded .loader-wrapper {
    visibility: hidden;
}

.loaded .loader {
    top: -100%;
    opacity: 0;
}


/*
<!-- ============================================================== -->
<!--Scrollup Button Section -->
<!-- ============================================================== -->*/


/*------back-to-top------------*/

.prgoress_indicator {
    position: fixed;
    right: 50px;
    bottom: 20px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgb(153, 149, 219);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #EF4D72;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    font-weight: 900;
    opacity: 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear !important;
}

.prgoress_indicator:hover ::after {
    color: #EF4D72;
}

.prgoress_indicator:hover ::before {
    opacity: 1;
}

.prgoress_indicator svg path {
    fill: none;
}

.prgoress_indicator svg.progress-circle path {
    stroke: #EF4D72;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear !important;
}

.JLVv1xOStj {
    background: #444;
    color: #fff;
    padding: 6px;
    font-size: 13px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
    transition: opacity 0.3s ease-in-out;
}

.JLVv1xOStj .asB3tOgX7m {
    display: none;
}

.JLVv1xOStj .pCkqStHnuy {
    display: inline-block;
    background: #222;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    padding: 4px 7px;
    margin: 2px 0;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.07s, color 0.07s, border-color 0.07s;
}

.JLVv1xOStj .pCkqStHnuy:hover {
    background: #fff;
    color: #222;
}

.asB3tOgX7m:checked+.cookies-content {
    display: none;
}