/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Common
# Custom Cursor
# Animations
# Cards
# Topbar
# Navigation
# Home Showcase
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
# Forms
# Comments
# Sidebar Popup
# Sidebar
# Footer
# Hero Slider
# About
# Contact
# Testimonials
# Package
# Services
# Service Details
# Portfolio
# Portfolio Details
# Why Choose
# Funfact
# CTA
# Gallery
# Blog Details
# Shop
# Shop Details
# Cart
# Checkout
# Work Process
# Sliding Text
# Error 404
# Faq
# Boxed Home
--------------------------------------------------------------*/
:root {
    --ogoni-font: "DM Sans", serif;
    --ogoni-heading-font: "Plus Jakarta Sans", serif;
    --ogoni-text: #666666;
    --ogoni-text-rgb: 102, 102, 102;
    --ogoni-base: #7a5c4d;
    --ogoni-base-rgb: 194, 234, 29;
    --ogoni-gray: #f9f9f9;
    --ogoni-gray-rgb: 249, 249, 249;
    --ogoni-white: #ffffff;
    --ogoni-white-rgb: 255, 255, 255;
    --ogoni-black: #131313;
    --ogoni-black-rgb: 19, 19, 19;
    --ogoni-black2: #000000;
    --ogoni-black2-rgb: 0, 0, 0;
    --ogoni-border-color: #ECECEC;
    --ogoni-border-color-rgb: 236, 236, 236;
    --section-space: 120px;
    --ogoni-letter-space: 0.1em;
    --ogoni-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-120 {
    margin-top: 120px;
}

.mt--60 {
    margin-top: -60px;
}

.mt--120 {
    margin-top: -120px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb--60 {
    margin-bottom: -60px;
}

.mb--120 {
    margin-bottom: -120px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-142 {
    padding-top: 142px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-30 {
    padding-left: 30px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-30 {
    padding-right: 30px;
}

.social {
    position: relative;
    border-top: 1px solid var(--ogoni-border-color, #ECECEC);
}

.customfontfamily {
    font-family: Arial, sans-serif !important;
}

.social__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .social__list {
        flex-direction: column;
    }
}

.social__list li {
    position: relative;
}

@media (max-width: 767px) {
    .social__list li {
        width: 100%;
    }
}

.social__list li a {
    font-size: 32px;
    color: var(--ogoni-black, #131313);
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 50px 0;
}

@media (max-width: 1199px) {
    .social__list li a {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .social__list li a {
        font-size: 24px;
        gap: 10px;
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .social__list li a {
        justify-content: center;
    }
}

.social__list li a i {
    color: var(--ogoni-text, #666666);
    position: relative;
    top: 4px;
    transition: all 0.3s ease;
}

.social__list li a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.social__list li a:hover i {
    color: var(--ogoni-base, #C2EA1D);
    animation: bounceIn 1s linear;
    animation-duration: 1s;
}

.social__list li+li {
    position: relative;
}

.social__list li+li::before {
    position: absolute;
    left: -36%;
    top: 0;
    width: 1px;
    height: 100%;
    content: "";
    background-color: var(--ogoni-border-color, #ECECEC);
}

@media (max-width: 1199px) {
    .social__list li+li::before {
        left: -20%;
    }
}

@media (max-width: 991px) {
    .social__list li+li::before {
        left: -15%;
    }
}

@media (max-width: 767px) {
    .social__list li+li::before {
        width: 100%;
        height: 1px;
        left: 0;
    }
}

.social-one {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 82px 0 0;
    margin-bottom: -40px;
}

@media (max-width: 767px) {
    .social-one {
        padding: 60px 0 0;
        margin-bottom: -20px;
    }
}

.social-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.social-one .container {
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
}

.social-one__title {
    font-size: 150px;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 33px;
}

@media (max-width: 1199px) {
    .social-one__title {
        font-size: 110px;
    }
}

@media (max-width: 991px) {
    .social-one__title {
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .social-one__title {
        font-size: 44px;
    }
}

.social-one__title span {
    font-weight: 400;
    font-style: italic;
}

.social-one__title img {
    width: 70px;
    height: 70px;
    animation: startIconOne 1s infinite alternate;
    flex-shrink: 0;
    margin: 0 50px 0 25px;
}

@media (max-width: 767px) {
    .social-one__title img {
        width: 35px;
        height: 35px;
        margin: 0 10px 0 5px;
    }
}

.social-one__item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
    border-top: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    transition: all 0.4s ease-out 0s;
    font-size: 16px;
    color: var(--ogoni-text, #666666);
    padding: 25px 0;
}

@media (max-width: 767px) {
    .social-one__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

.social-one__item::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 1px;
    top: -1px;
    left: auto;
    right: 0;
    background-color: var(--ogoni-base, #C2EA1D);
    transition: all 0.4s ease-out 0s;
}

.social-one__item:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.social-one__item__text {
    font-size: 52px;
    color: var(--ogoni-black, #131313);
    display: inline-block;
    min-width: 42%;
}

.social-one__item i {
    margin-left: auto;
    font-size: 32px;
    color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    transition: 0.5s;
}

@media (max-width: 767px) {
    .social-one__item i {
        margin: 10px 0 0;
    }
}

.social-one__item:hover i {
    color: var(--ogoni-black, #131313);
    animation: bounceIn 1s linear;
    animation-duration: 1s;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
    font-family: var(--ogoni-font, "DM Sans", serif);
    color: var(--ogoni-text, #666666);
    font-size: 16px;
    line-height: 1.625;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--ogoni-base, #C2EA1D);
    transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    color: var(--ogoni-black, #131313);
}

@media (max-width: 575px) {

    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br {
        display: none;
    }
}

@media (max-width: 575px) {
    p br {
        display: none;
    }
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.background-base {
    background-color: var(--ogoni-base, #C2EA1D);
}

.background-gray {
    background-color: var(--ogoni-gray, #f9f9f9);
}

.background-black {
    background-color: var(--ogoni-black, #131313);
}

.background-black-2 {
    background-color: var(--ogoni-black2, #000000);
}

.ogoni-text {
    color: var(--ogoni-text, #666666);
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.section-space {
    padding-top: var(--section-space, 120px);
    padding-bottom: var(--section-space, 120px);
}

@media (max-width: 767px) {
    .section-space {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.section-space-top {
    padding-top: var(--section-space, 120px);
}

@media (max-width: 767px) {
    .section-space-top {
        padding-top: 80px;
    }
}

.section-space-bottom {
    padding-bottom: var(--section-space, 120px);
}

@media (max-width: 767px) {
    .section-space-bottom {
        padding-bottom: 80px;
    }
}

.container-fluid,
.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1326px;
    }
}

.row {
    --bs-gutter-x: 50px;
}

.gutter-y-24 {
    --bs-gutter-y: 24px;
}

.gutter-x-24 {
    --bs-gutter-x: 24px;
}

.gutter-y-10 {
    --bs-gutter-y: 10px;
}

.gutter-y-15 {
    --bs-gutter-y: 15px;
}

.gutter-y-20 {
    --bs-gutter-y: 20px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

.gutter-y-40 {
    --bs-gutter-y: 40px;
}

.gutter-y-50 {
    --bs-gutter-y: 50px;
}

.gutter-y-60 {
    --bs-gutter-y: 60px;
}

.fix {
    overflow: hidden;
}

.logo-retina img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.ogoni-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--ogoni-black, #131313);
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    color: var(--ogoni-white, #ffffff);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 19px 36px;
    transition: 0.5s ease-in-out;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-top: 20px;
}

.ogoni-btn>span {
    position: relative;
    z-index: 2;
}

.ogoni-btn__hover {
    position: absolute;
    width: calc(100% + 2px);
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.ogoni-btn__hover__item {
    width: 25%;
    height: 100%;
    top: 0;
    position: absolute;
    transform: translateY(100%);
    background-color: var(--ogoni-base, #C2EA1D);
    transition: all 0.5s ease 0s;
    transition-delay: 0s;
    opacity: 0;
}

.ogoni-btn__hover__item:nth-child(1) {
    left: 0;
    transition-delay: 0.105s;
}

.ogoni-btn__hover__item:nth-child(2) {
    left: 25%;
    transition-delay: 0.15s;
}

.ogoni-btn__hover__item:nth-child(3) {
    left: 50%;
    transition-delay: 0.2s;
}

.ogoni-btn__hover__item:nth-child(4) {
    left: 75%;
    transition-delay: 0.25s;
}

.ogoni-btn:hover {
    color: var(--ogoni-black, #ffff);
}

.ogoni-btn:hover .ogoni-btn__hover__item {
    transform: translateY(0px);
    opacity: 1;
}

.revland-svg-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 190px;
    text-decoration: none;
}

.rotate-circle {
    width: 100%;
    height: 100%;
    animation: rotateText 15s linear infinite;
    /* Slow aur smooth rotation */
}

.arrow-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.revland-svg-btn:hover .arrow-icon {
    transform: scale(1.2);
    /* Hover karne par arrow thora bara hoga */
}

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

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

.ogoni-circle-btn {
    position: relative;
    z-index: 2;
    width: 196px;
    height: 196px;
    background-color: var(--ogoni-white, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.ogoni-circle-btn__dot {
    position: absolute;
    bottom: 0;
    left: 32px;
    width: 0;
    height: 0;
    background-color: var(--ogoni-base, #C2EA1D);
    line-height: 20px;
    border-radius: 50%;
    transition: all 0.5s ease-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.ogoni-circle-btn:hover .ogoni-circle-btn__dot {
    width: 400px;
    height: 400px;
}

.ogoni-circle-btn__text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    text-transform: capitalize;
    transition: all 0.5s ease-out;
}

.ogoni-circle-btn__text i {
    font-size: 24px;
    transform: rotate(40deg);
}

.ogoni-ratings {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ogoni-ratings__icon {
    display: inline-flex;
    font-size: 16px;
    color: var(--ogoni-base, #C2EA1D);
    transition: all 500ms ease;
}

.ogoni-ratings__icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
    display: none;
}

.bootstrap-select .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background-color: var(--ogoni-base, #C2EA1D);
}

.tns-outer .tns-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.tns-outer .tns-controls button {
    width: 45px;
    height: 45px;
    border: 2px solid #f4f4f4;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--ogoni-text, #666666);
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 5px;
}

.block-title {
    margin-top: -8px;
    margin-bottom: 50px;
}

.block-title__decor {
    width: 21px;
    height: 14px;
    background-image: url(../images/shapes/leaf-1-1.png);
    background-repeat: no-repeat;
    background-position: top center;
    display: inline-block;
    line-height: 1;
    margin-bottom: -5px;
    position: relative;
    top: -7px;
}

.block-title p {
    margin: 0;
    color: var(--ogoni-text, #666666);
    font-size: 16px;
    line-height: 1;
    margin-bottom: 7px;
}

@media (min-width: 768px) {
    .block-title p {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .block-title p {
        font-size: 20px;
    }
}

.block-title h3 {
    margin: 0;
    font-size: 35px;
    color: var(--ogoni-black, #131313);
}

@media (min-width: 768px) {
    .block-title h3 {
        font-size: 42px;
    }
}

@media (min-width: 992px) {
    .block-title h3 {
        font-size: 50px;
    }
}

.ul-list-one {
    margin-bottom: 0;
}

.ul-list-one li {
    position: relative;
    padding-left: 45px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ogoni-black, #131313);
}

@media (min-width: 481px) {
    .ul-list-one li {
        font-size: 20px;
    }
}

.ul-list-one li::before {
    content: "\e907";
    color: var(--ogoni-base, #C2EA1D);
    font-size: 26px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: "azino-icon";
}

.preloader {
    position: fixed;
    background-color: var(--ogoni-black, #131313);
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60px auto;
    width: 100%;
    height: 100%;
}

/* scroll to top */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    background-color: var(--ogoni-black, #131313);
    z-index: 99;
    opacity: 0;
    padding: 6px;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.scroll-top--active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top::after {
    position: absolute;
    content: "\e903";
    font-family: "icomoon" !important;
    text-align: center;
    line-height: 50px;
    font-size: 15px;
    color: var(--ogoni-base, #C2EA1D);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.scroll-top__circle path {
    stroke: var(--ogoni-base, #C2EA1D);
    stroke-width: 4;
    fill: none;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* post paginations */
.post-pagination {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--ogoni-white, #ffffff);
    font-family: var(--ogoni-font, "DM Sans", serif);
    color: var(--ogoni-text, #666666);
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1;
    border-radius: 50%;
    overflow: hidden;
    transition: all 400ms ease;
}

@media (max-width: 575px) {
    .post-pagination a {
        width: 55px;
        height: 55px;
    }
}

.post-pagination a:hover {
    color: var(--ogoni-white, #ffffff);
    background-color: var(--ogoni-black, #131313);
}

.post-pagination li.active a {
    color: var(--ogoni-white, #ffffff);
    background-color: var(--ogoni-black, #131313);
}

.pagination-box {
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    border-bottom: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.pagination-box__prev,
.pagination-box__next {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pagination-box__btn {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: RGBA(var(--ogoni-base-rgb, 194, 234, 29), 0.1);
    overflow: hidden;
    transition: all 500ms ease;
}

.pagination-box__btn:hover {
    background-color: var(--ogoni-base, #C2EA1D);
}

.pagination-box__icon {
    display: inline-flex;
    font-size: 17px;
    color: var(--ogoni-text, #666666);
    transition: all 500ms ease;
}

.pagination-box__icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.pagination-box__btn:hover .pagination-box__icon {
    color: var(--ogoni-white, #ffffff);
}

.pagination-box__prev .pagination-box__btn:hover .pagination-box__icon {
    animation: slideLeft 400ms;
}

.pagination-box__next .pagination-box__btn:hover .pagination-box__icon {
    animation: slideRight 400ms;
}

.pagination-box__text {
    color: var(--ogoni-text, #666666);
    transition: all 500ms ease;
}

.pagination-box__text:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.ogoni-owl__carousel--with-shadow .owl-stage-outer {
    overflow: visible;
}

.ogoni-owl__carousel--with-shadow .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.ogoni-owl__carousel--with-shadow .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav {
    display: flex;
    justify-content: flex-start;
    gap: 88px;
    margin-top: 50px;
}

@media (max-width: 767px) {
    .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav {
        margin-top: 30px;
    }
}

.ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    border: none;
    outline: none;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    opacity: 1;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 0;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    position: relative;
}

.ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav button.owl-prev::after {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    height: 1px;
    width: 70px;
    background-color: RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    position: relative;
}

@media (max-width: 767px) {
    .ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots {
        margin-top: 30px;
    }
}

.ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    transition: all 500ms ease;
    position: relative;
    cursor: pointer;
}

.ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 2px;
    height: 2px;
    content: "";
    background-color: var(--ogoni-black, #131313);
    transform: scale(0);
    transition: all 500ms ease;
    border-radius: 50%;
}

.ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

.ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover,
.ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
    border-color: var(--ogoni-black, #131313);
}

.ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover::after,
.ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active::after {
    transform: scale(1);
}

.ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
    display: none;
}

.ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
    display: none;
}

/* custom cursor */
.custom-cursor-two {
    position: absolute;
    top: 0;
    left: 0;
    padding: 3px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background-color: var(--ogoni-white, #ffffff);
    opacity: 0;
    transition: all 500ms ease;
    z-index: 11;
    pointer-events: none;
}

.custom-cursor-two__icon {
    font-size: 22px;
    color: var(--ogoni-black, #131313);
    display: inline-block;
}

.custom-cursor-two__icon--left {
    position: relative;
    top: -3px;
    transform: rotate(-180deg);
}

.custom-cursor-two-hover:hover+.custom-cursor-two {
    opacity: 1;
}

.sec-title {
    position: relative;
    z-index: 1;
    line-height: 1;
    padding-bottom: 35px;
}

@media (min-width: 768px) {
    .sec-title {
        padding-bottom: 53px;
        margin-top: -2px;
    }
}

.sec-title img {
    width: 28px;
    height: 32px;
    display: inline-block;
    margin-bottom: 8px;
}

.sec-title__title {
    margin: 0;
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    margin: 0 0 12px;
}

@media (min-width: 768px) {
    .sec-title__title {
        font-size: 52px;
        line-height: 62px;
    }
}

.sec-title__title span {
    font-weight: 400;
    font-style: italic;
}

.sec-title__title.bw-split-text>div {
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to left, rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1) 50%, var(--ogoni-black, #131313) 50%);
}

.sec-title__text {
    margin: 0;
    color: var(--ogoni-text, #666666);
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
}

.sec-title__text.bw-split-text>div {
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to left, rgba(var(--ogoni-text-rgb, 102, 102, 102), 0.2) 50%, var(--ogoni-text, #666666) 50%);
}

.ui-datepicker .ui-datepicker-header {
    background-image: none;
    background-color: var(--ogoni-black, #131313);
    color: var(--ogoni-white, #ffffff);
    font-family: var(--ogoni-font, "DM Sans", serif);
}

.ui-datepicker-calendar th span {
    font-family: var(--ogoni-font, "DM Sans", serif);
}

.ui-datepicker-calendar td {
    background-color: var(--ogoni-gray, #f9f9f9);
    background-image: none;
    font-family: var(--ogoni-font, "DM Sans", serif);
    color: var(--ogoni-text, #666666);
}

.ui-datepicker-calendar td a {
    border-color: var(--ogoni-border-color, #ECECEC);
    background-color: var(--ogoni-gray, #f9f9f9);
    background-image: none;
}

.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
    border-color: var(--ogoni-border-color, #ECECEC);
    background-color: var(--ogoni-gray, #f9f9f9);
    background-image: none;
    color: var(--ogoni-text, #666666);
    padding: 10px 5px;
    text-align: center;
    line-height: 1em;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
    color: var(--ogoni-white, #ffffff);
    background-color: var(--ogoni-base, #C2EA1D);
}

.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
    color: var(--ogoni-white, #ffffff);
    background-color: var(--ogoni-base, #C2EA1D);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    background-image: none;
    background-color: var(--ogoni-white, #ffffff);
    color: var(--ogoni-black, #131313);
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    background-color: var(--ogoni-base, #C2EA1D);
    color: var(--ogoni-white, #ffffff);
    top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
    left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
    right: 2px;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
    background: var(--ogoni-base, #C2EA1D);
    box-shadow: var(--ogoni-base, #C2EA1D) 0 1px 3px 0 inset;
    color: var(--ogoni-white, #ffffff);
    font-weight: 700;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover {
    background: var(--ogoni-base, #C2EA1D) !important;
    color: var(--ogoni-white, #ffffff) !important;
}

.bw-reveal-right {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transition: none !important;
    transition: all 0.8s !important;
    transition-delay: 0.3s !important;
    transform: none !important;
    opacity: 1 !important;
}

.bw-reveal-right.aos-animate {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.bw-reveal-left {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: none !important;
    transition: all 0.9s !important;
    transition-delay: 0.4s !important;
    opacity: 1 !important;
    transform: none !important;
}

.bw-reveal-left.aos-animate {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.bw-reveal-top {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: none !important;
    transition: all 0.9s !important;
    transition-delay: 0.4s !important;
    opacity: 1 !important;
    transform: none !important;
}

.bw-reveal-top.aos-animate {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--ogoni-base, #C2EA1D);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
}

.custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--ogoni-base, #C2EA1D);
    opacity: 0.3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 999991;
}

.custom-cursor__hover {
    background-color: var(--ogoni-base, #C2EA1D);
    opacity: 0.4;
}

.custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: 0.4;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
        transform: translateY(50px) translateX(100px) rotate(45deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes cloudMove {
    0% {
        background-position: 1920px 100%;
    }

    100% {
        background-position: 0 100%;
    }
}

@keyframes bgMove {
    0% {
        background-position: 50% 3000px;
    }

    100% {
        background-position: 50% 0;
    }
}

@keyframes bgMoveTwo {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

@keyframes startIconOne {
    0% {
        transform: scale(1) rotate(0);
    }

    100% {
        transform: scale(0.5) rotate(45deg);
    }
}

@keyframes iconTranslateX {
    49% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    51% {
        opacity: 1;
    }
}

@-webkit-keyframes widths {
    0% {
        width: 0%;
    }

    50% {
        width: 97%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

@keyframes widths {
    0% {
        width: 0%;
    }

    50% {
        width: 97%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

@keyframes shapeMover {

    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes banner3Shake {
    0% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        -webkit-transform: rotate3d(1, 0, 0, 0deg);
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes squareMover {

    0%,
    100% {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0);
    }

    20%,
    60% {
        -webkit-transform: translate(20px, 40px) rotate(180deg);
        transform: translate(20px, 40px) rotate(180deg);
    }

    30%,
    80% {
        -webkit-transform: translate(40px, 60px) rotate(0deg);
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@keyframes treeMove {

    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}

@keyframes treeMove2 {

    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        -webkit-transform: rotate(-10deg) translateX(0);
        transform: rotate(-10deg) translateX(0);
    }

    50% {
        -webkit-transform: rotate(10deg) translateX(0);
        transform: rotate(10deg) translateX(0);
    }
}

@keyframes treeMove3 {

    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        -webkit-transform: rotate(-10deg) translateX(0);
        transform: rotate(-3deg) translateX(0);
    }

    50% {
        -webkit-transform: rotate(3deg) translateX(0);
        transform: rotate(3deg) translateX(0);
    }
}

@keyframes leafMove {

    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }

    25%,
    75% {
        transform: rotate(-2deg) translateX(5px);
    }

    50% {
        transform: rotate(-4deg) translateX(10px);
    }
}

@keyframes messageMove {

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

    25%,
    75% {
        transform: translateX(5px);
    }

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

@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes flowerRotate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

@keyframes zump {

    0%,
    100% {
        transform: translateY(0);
    }

    25%,
    75% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(-5px);
    }
}

@-webkit-keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

@keyframes videoZoom {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
        border-width: 3px;
    }

    40% {
        opacity: 1;
        border-width: 1px;
    }

    65% {
        border-width: 1px;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes moveHorizontal {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    50% {
        -webkit-transform: translate3d(15px, 0, 0);
        transform: translate3d(15px, 0, 0);
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    100% {
        transform: translateX(-30px);
    }
}

@keyframes zumpY {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-30px);
    }
}

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

    100% {
        transform: translateX(30px);
    }
}

@keyframes zoom-hover {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 120%;
        height: 120%;
        opacity: 0;
    }
}

@keyframes zoomsIn {

    100%,
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }
}

@keyframes shrinkAnim {

    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 0 50%;
    }

    10% {
        transform: rotate(2deg);
    }

    20%,
    40%,
    60% {
        transform: rotate(-4deg);
    }

    30%,
    50%,
    70% {
        transform: rotate(4deg);
    }

    80% {
        transform: rotate(-2deg);
    }

    90% {
        transform: rotate(2deg);
    }
}

@keyframes shrinkAnim2 {

    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 100% 50%;
    }

    10% {
        transform: rotate(1deg);
    }

    20%,
    40%,
    60% {
        transform: rotate(-2deg);
    }

    30%,
    50%,
    70% {
        transform: rotate(2deg);
    }

    80% {
        transform: rotate(-1deg);
    }

    90% {
        transform: rotate(1deg);
    }
}

@keyframes rollInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes vibrant {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

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

@keyframes blinkAnim {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

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

    50% {
        transform: translateX(-15px);
    }

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

@keyframes movebounce3 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shapeMove {

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

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

@keyframes rotated {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotated2 {
    0% {
        transform: rotate(0);
    }

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

@-webkit-keyframes backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(0.7);
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: translateY(0px) scale(0.7);
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(0.7);
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: translateY(0px) scale(0.7);
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.animate__backInUp {
    -webkit-animation-name: backInUp;
    animation-name: backInUp;
}

@keyframes iconTranslateY {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes iconTranslate_Y {
    49% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    51% {
        opacity: 1;
    }
}

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

    100% {
        transform: translateX(5px);
    }
}

@keyframes animateTop {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes animateRight {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes animateBottom {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes animateLeft {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes shadows {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.2), 0 0 0 30px rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.2);
    }

    100% {
        box-shadow: 0 0 0 30px rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.2), 0 0 0 70px rgba(var(--ogoni-white-rgb, 255, 255, 255), 0);
    }
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@keyframes wobble-horizontal-on-hover {
    16.65% {
        transform: translateX(8px);
    }

    33.3% {
        transform: translateX(-6px);
    }

    49.95% {
        transform: translateX(4px);
    }

    66.6% {
        transform: translateX(-2px);
    }

    83.25% {
        transform: translateX(1px);
    }

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

@keyframes text-scrolling {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes text-scrolling-two {
    from {
        transform: translate(-100%, 0);
    }

    to {
        transform: translate(0, 0);
    }
}

@keyframes shapes {
    0% {
        width: 0%;
        opacity: 1;
    }

    100% {
        width: 74%;
    }
}

@keyframes slideTop {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes slideBottom {
    49% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes slideLeft {
    49% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes slideRight {
    49% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes wobbleTop {
    16.65% {
        transform: skew(-12deg);
    }

    33.3% {
        transform: skew(10deg);
    }

    49.95% {
        transform: skew(-6deg);
    }

    66.6% {
        transform: skew(4deg);
    }

    83.25% {
        transform: skew(-2deg);
    }

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

@keyframes svgAnimation {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 100%;
    }
}

@keyframes iconsZoom {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1.75, 1.75);
    }
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
    position: relative;
    z-index: 2;
}

@media (min-width: 1300px) {
    .video-one {
        border-left: 50px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (min-width: 1400px) {
    .video-one {
        border-left: 100px solid var(--ogoni-gray, #f9f9f9);
    }
}

.video-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

@media (min-width: 1300px) {
    .video-one__line {
        left: -25px;
    }
}

@media (min-width: 1400px) {
    .video-one__line {
        left: -50px;
    }
}

.video-one::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 100px);
    background-color: var(--ogoni-gray, #f9f9f9);
    z-index: -1;
    content: "";
}

.video-one__shape {
    position: absolute;
    right: 10%;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 200px;
}

.video-one__shape img {
    animation: rotated 10s infinite linear;
}

.video-one__wrapper {
    position: relative;
    width: 76.8%;
    padding: 230px 0;
}

@media (max-width: 1199px) {
    .video-one__wrapper {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .video-one__wrapper {
        padding: 180px 0;
    }
}

.video-one__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video-one .video-popup {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: all 500ms ease;
    position: relative;
    z-index: 1;
}

.video-one .video-popup i {
    background-color: var(--ogoni-white, #ffffff);
    border-radius: 50%;
    z-index: 2;
    width: 140px;
    height: 140px;
    transition: all 500ms ease;
    font-size: 24px;
    color: var(--ogoni-black, #131313);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-one .video-popup .ripple {
    content: "";
    border: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.5);
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: calc(100% + 25px);
    height: calc(100% + 25px);
    border-radius: 50%;
    animation: videoZoom 3s linear infinite;
    animation-delay: 0s;
    animation-delay: 0.55s;
}

.video-one .video-popup .ripple::after {
    content: "";
    border: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.5);
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    border-radius: 50%;
    animation: videoZoom 1.5s linear infinite;
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.video-one .video-popup:hover i {
    color: var(--ogoni-black, #131313);
    background-color: var(--ogoni-base, #C2EA1D);
}

.video-two {
    position: relative;
    padding: 330px 0;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .video-two {
        padding: 250px 0;
    }
}

@media (max-width: 991px) {
    .video-two {
        padding: 200px 0;
    }
}

@media (max-width: 767px) {
    .video-two {
        padding: 120px 0;
    }
}

.video-two__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.video-two .container {
    position: relative;
}

.video-two .video-popup {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: all 500ms ease;
    position: relative;
    z-index: 1;
}

.video-two .video-popup i {
    background-color: var(--ogoni-white, #ffffff);
    border-radius: 50%;
    z-index: 2;
    width: 140px;
    height: 140px;
    transition: all 500ms ease;
    font-size: 24px;
    color: var(--ogoni-black, #131313);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-two .video-popup .ripple {
    content: "";
    border: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.5);
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: calc(100% + 25px);
    height: calc(100% + 25px);
    border-radius: 50%;
    animation: videoZoom 3s linear infinite;
    animation-delay: 0s;
    animation-delay: 0.55s;
}

.video-two .video-popup .ripple::after {
    content: "";
    border: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.5);
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    border-radius: 50%;
    animation: videoZoom 1.5s linear infinite;
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.video-two .video-popup:hover i {
    color: var(--ogoni-black, #131313);
    background-color: var(--ogoni-base, #C2EA1D);
}

.team-one {
    padding: 120px 0 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
}

@media (max-width: 1199px) {
    .team-one {
        padding: 120px 0 60px;
    }
}

@media (max-width: 767px) {
    .team-one {
        padding: 80px 0 50px;
    }
}

.team-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.team-one__row-two {
    position: relative;
}

.team-one__row-two .team-card {
    margin-left: auto;
}

@media (max-width: 1199px) {
    .team-one__row-two .team-card {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .team-one__row-two .team-card {
        margin-left: auto;
        margin-right: auto;
    }
}

.team-one .ogoni-circle-btn__wrapper {
    margin-top: 88px;
    margin-left: 30px;
}

@media (max-width: 767px) {
    .team-one .ogoni-circle-btn__wrapper {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.team-card {
    position: relative;
    width: 220px;
    z-index: 1;
    background-color: var(--ogoni-white, #ffffff);
    margin-bottom: 110px;
}

@media (max-width: 1199px) {
    .team-card {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .team-card {
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }
}

.team-card:hover {
    border-color: rgba(var(--ogoni-base-rgb, 194, 234, 29), 0.2);
}

.team-card:hover .team-card__social {
    border-color: rgba(var(--ogoni-text-rgb, 102, 102, 102), 0.2);
}

.team-card__image {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.team-card__image::after {
    background: linear-gradient(90deg, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1) 0px, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1) 77%, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.35) 92%, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0));
    content: "";
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all 0.6s ease 0s;
    width: 200%;
}

.team-card__image img {
    width: 100%;
    height: auto;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-card:hover .team-card__image:after {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: 0.6s, 0.6s, 0.15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.team-card:hover .team-card__image img {
    transform: rotate(1deg) scale(1.05);
}

.team-card__content {
    position: relative;
    padding: 28px 30px 30px;
}

.team-card__designation {
    margin: 0;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 7px;
}

.team-card__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 23px;
}

.team-card__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
}

.team-card__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.team-card:hover .team-card__title a {
    background-size: 100% 1px;
}

.team-card:hover .team-card__social {
    background-color: var(--ogoni-black, #131313);
}

.team-card__social {
    position: relative;
    z-index: 2;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 5px 12px;
    transition: all 0.3s;
}

.team-card__social a {
    font-size: 14px;
    line-height: 1;
    color: var(--ogoni-text, #666666);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-card__social a span {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.team-card__social a:hover {
    color: var(--ogoni-white, #ffffff);
}

.team-card__social a:hover span {
    animation: iconTranslateY 0.4s forwards;
}

.team-card__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 30px;
    bottom: 33px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card:hover .team-card__star {
    color: var(--ogoni-base, #C2EA1D);
}

.team-two {
    padding: 120px 0 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
}

@media (max-width: 767px) {
    .team-two {
        padding: 80px 0 0;
    }
}

.team-two--home-three {
    padding: 0 0 120px;
}

@media (max-width: 767px) {
    .team-two--home-three {
        padding: 0 0 80px;
    }
}

.team-two--home-four {
    padding: 120px 0;
}

@media (max-width: 767px) {
    .team-two--home-four {
        padding: 80px 0;
    }
}

.team-two__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.team-two .team-card {
    margin: 0;
    width: 100%;
}

.team-two--team-page {
    position: relative;
    padding: 120px 0 195px;
}

@media (max-width: 767px) {
    .team-two--team-page {
        padding: 80px 0 145px;
    }
}

.team-two .post-pagination {
    margin-top: 50px;
}

.team-three {
    position: relative;
    padding: 120px 0;
    background-color: var(--ogoni-gray, #f9f9f9);
}

@media (max-width: 767px) {
    .team-three {
        padding: 80px 0;
    }
}

.team-three__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.team-card-two {
    position: relative;
    z-index: 1;
    background-color: var(--ogoni-white, #ffffff);
    padding: 30px 30px;
}

.team-card-two:hover .team-card-two__social {
    border-color: rgba(var(--ogoni-text-rgb, 102, 102, 102), 0.2);
}

.team-card-two__image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 246px;
    height: 246px;
    border-radius: 50%;
    margin: 0 auto 28px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .team-card-two__image {
        max-width: 100%;
        height: auto;
    }
}

.team-card-two__image::after {
    background: linear-gradient(90deg, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1) 0px, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1) 77%, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.35) 92%, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0));
    content: "";
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all 0.6s ease 0s;
    width: 200%;
}

.team-card-two__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-card-two:hover .team-card-two__image:after {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: 0.6s, 0.6s, 0.15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.team-card-two:hover .team-card-two__image img {
    transform: rotate(1deg) scale(1.05);
}

.team-card-two__content {
    position: relative;
    text-align: center;
}

.team-card-two__designation {
    margin: 0;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 7px;
}

.team-card-two__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 23px;
}

.team-card-two__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
}

.team-card-two__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.team-card-two:hover .team-card-two__title a {
    background-size: 100% 1px;
}

.team-card-two:hover .team-card-two__social {
    background-color: var(--ogoni-black, #131313);
}

.team-card-two__social {
    position: relative;
    z-index: 2;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 5px 12px;
    transition: all 0.3s;
}

.team-card-two__social a {
    font-size: 14px;
    line-height: 1;
    color: var(--ogoni-text, #666666);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-card-two__social a span {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.team-card-two__social a:hover {
    color: var(--ogoni-white, #ffffff);
}

.team-card-two__social a:hover span {
    animation: iconTranslateY 0.4s forwards;
}

.team-card-two__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0;
    bottom: 3px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card-two:hover .team-card-two__star {
    color: var(--ogoni-base, #C2EA1D);
}

.team-rm {
    position: relative;
    margin-top: -75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-rm .ogoni-circle-btn {
    width: 149px;
    height: 149px;
    background-color: var(--ogoni-black, #131313);
}

.team-rm .ogoni-circle-btn:hover .ogoni-circle-btn__text {
    color: var(--ogoni-black, #131313);
}

.team-rm .ogoni-circle-btn__text {
    font-weight: normal;
    font-family: var(--ogoni-font, "DM Sans", serif);
    gap: 0;
    color: var(--ogoni-white, #ffffff);
}

.team-rm .ogoni-circle-btn__text i {
    font-size: 18px;
    transform: rotate(45deg);
    display: inline-block;
    position: relative;
    top: 3px;
    margin-left: 8px;
}

.team-rm .ogoni-circle-btn__dot {
    background-color: var(--ogoni-base, #C2EA1D);
}

.team-details {
    padding: 100px 0 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
}

@media (max-width: 767px) {
    .team-details {
        padding: 80px 0 0;
    }
}

.team-details__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.team-details__content {
    position: relative;
}

@media (min-width: 1400px) {
    .team-details__content {
        max-width: 528px;
    }
}

@media (max-width: 991px) {
    .team-details__content {
        margin: 20px 0 40px;
    }
}

.team-details__designation {
    position: relative;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    line-height: 28px;
    font-size: 14px;
    padding: 0 18px;
    margin-right: 26px;
}

.team-details__designation__wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.team-details__designation__wrapper i {
    width: 14px;
    height: 16px;
    background-color: var(--ogoni-black, #131313);
    display: inline-block;
    font-style: normal;
    margin-left: 4px;
}

.team-details__title {
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 11px 0 17px;
}

.team-details__text {
    margin: 0 0 36px;
}

.team-details__list {
    margin: 0 0 42px;
    padding: 0;
    list-style: none;
}

.team-details__list li {
    margin: 0 0 20px;
}

.team-details__list li span {
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    min-width: 220px;
    display: inline-block;
}

@media (max-width: 500px) {
    .team-details__list li span {
        display: block;
    }
}

.team-details__list li:last-child {
    color: var(--ogoni-base, #C2EA1D);
}

.team-details__info {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 500px) {
    .team-details__info {
        flex-direction: column;
        align-items: flex-start;
    }
}

.team-details__info__left {
    position: relative;
    display: flex;
    gap: 11px;
}

.team-details__info__left:hover .team-details__info__icon {
    background-color: var(--ogoni-black, #131313);
    color: var(--ogoni-white, #ffffff);
}

.team-details__info__left:hover .team-details__info__icon i {
    animation: iconTranslateY 0.4s forwards;
}

.team-details__info__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ogoni-white, #ffffff);
    border-radius: 50%;
    overflow: hidden;
    font-size: 24px;
    color: var(--ogoni-black, #131313);
    transition: all 400ms ease;
}

.team-details__info__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.team-details__info__text {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--ogoni-text, #666666);
    text-transform: capitalize;
}

.team-details__info__text a {
    color: var(--ogoni-black, #131313);
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.team-details__info__text a:hover {
    background-size: 100% 1px;
}

.team-details__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .team-details__social {
        margin: 40px 0 0;
    }
}

.team-details__social a {
    width: 40px;
    height: 40px;
    font-size: 14px;
    color: var(--ogoni-black, #131313);
    background-color: var(--ogoni-white, #ffffff);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-details__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.team-details__social a:hover {
    color: var(--ogoni-white, #ffffff);
    background-color: var(--ogoni-black, #131313);
}

.team-details__social a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.team-details__image {
    position: relative;
}

.team-details__image img {
    min-height: 750px;
    max-width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .team-details__image img {
        min-height: auto;
    }
}

.team-details__carousel {
    position: relative;
}

.team-details .slick-arrow {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--ogoni-text, #666666);
    font-size: 14px;
    border: none;
    outline: none;
    position: absolute;
    z-index: 5;
    right: 308px;
    bottom: -64px;
    padding: 0;
    margin: 0;
    transition: all 500ms ease;
}

@media (max-width: 1299px) {
    .team-details .slick-arrow {
        display: none !important;
    }
}

.team-details .slick-arrow:hover {
    color: var(--ogoni-black, #131313);
}

.team-details .slick-arrow.prev {
    right: 710px;
}

.team-details .slick-arrow.prev::after {
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 370px;
    height: 1px;
    content: "";
    background-color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.team-details .slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    right: 100px;
    bottom: -55px;
    z-index: 5;
}

@media (max-width: 1199px) {
    .team-details .slick-dots {
        right: 50px;
    }
}

@media (max-width: 767px) {
    .team-details .slick-dots {
        position: relative;
        right: 0;
        bottom: 0;
        left: 0;
        margin-top: 30px;
    }
}

.team-details .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    transition: all 500ms ease;
    position: relative;
    cursor: pointer;
}

.team-details .slick-dots li::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 2px;
    height: 2px;
    content: "";
    background-color: var(--ogoni-black, #131313);
    transform: scale(0);
    transition: all 500ms ease;
    border-radius: 50%;
}

.team-details .slick-dots li button {
    display: none;
}

.team-details .slick-dots li:hover,
.team-details .slick-dots li.slick-active {
    border-color: var(--ogoni-black, #131313);
}

.team-details .slick-dots li:hover::after,
.team-details .slick-dots li.slick-active::after {
    transform: scale(1);
}

.blog-one {
    padding: 120px 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
}

@media (max-width: 767px) {
    .blog-one {
        padding: 80px 0;
    }
}

.blog-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.blog-one .sec-title__title {
    text-transform: none;
}

.blog-one .ripple-svg-one,
.blog-one .ripple-svg-two {
    position: absolute;
}

.blog-one .post-pagination {
    margin-top: 50px;
}

.blog-one--pt-0 {
    padding-top: 0;
}

.blog-card {
    position: relative;
    background-color: var(--ogoni-white, #ffffff);
}

.blog-card__image {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.blog-card__image a {
    display: block;
    width: 100%;
    position: relative;
}

.blog-card__image img {
    transition: 0.5s;
    background-size: cover;
    width: 100%;
}

.blog-card__date {
    background-color: var(--ogoni-black, #131313);
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    color: var(--ogoni-white, #ffffff);
    text-transform: capitalize;
    font-weight: 700;
    padding: 11px 15px;
    line-height: 1.5em;
    position: relative;
    overflow: hidden;
    width: 66px;
    height: 66px;
    z-index: 2;
    transition: all 300ms ease;
}

.blog-card__date::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    background-color: var(--ogoni-base, #C2EA1D);
    top: 0px;
    left: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.blog-card:hover .blog-card__date {
    color: var(--ogoni-black, #131313);
}

.blog-card:hover .blog-card__date::after {
    height: 100%;
}

.blog-card__content {
    position: relative;
    margin-top: -33px;
    z-index: 2;
    padding: 0 30px 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-card__content {
        padding: 0 20px 30px;
    }
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 41px;
    margin: 19px 0 6px;
}

@media (max-width: 1199px) {
    .blog-card__meta {
        gap: 21px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-card__meta {
        gap: 12px;
    }
}

.blog-card__meta li {
    color: var(--ogoni-text, #666666);
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.blog-card__meta li i {
    margin-right: 11px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-card__meta li i {
        margin-right: 7px;
    }
}

.blog-card__meta li a {
    display: flex;
    align-items: center;
    color: inherit;
    transition: all 500ms ease;
    margin-left: 3px;
}

.blog-card__meta li a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.blog-card__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 19px;
}

.blog-card__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
}

.blog-card:hover .blog-card__title a {
    background-size: 100% 1px;
}

.blog-card__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.blog-card__bottom a {
    color: var(--ogoni-text, #666666);
    display: inline-block;
    background-color: var(--ogoni-gray, #f9f9f9);
    font-size: 14px;
    line-height: 24px;
    padding: 0 10px;
    transition: all 500ms ease;
}

.blog-card__bottom a:hover {
    background-color: var(--ogoni-black, #131313);
    color: var(--ogoni-white, #ffffff);
    border-radius: 5px;
}

.blog-card__bottom__star {
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
}

.blog-card:hover .blog-card__bottom__star {
    color: var(--ogoni-base, #C2EA1D);
}

.blog-card--list {
    position: relative;
}

.blog-card--list .blog-card__content {
    padding: 0 50px 30px;
}

@media (max-width: 767px) {
    .blog-card--list .blog-card__content {
        padding: 0 30px 30px;
    }
}

.blog-card--list .blog-card__title {
    font-size: 32px;
    line-height: 42px;
}

@media (max-width: 767px) {
    .blog-card--list .blog-card__title {
        font-size: 24px;
        line-height: 34px;
    }
}

.blog-two {
    padding: 120px 0 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
}

@media (max-width: 767px) {
    .blog-two {
        padding: 80px 0 0;
    }
}

.blog-two--home-four {
    position: relative;
    padding: 120px 0 100px;
}

@media (max-width: 767px) {
    .blog-two--home-four {
        padding: 80px 0 60px;
    }
}

.blog-two__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.blog-two .ripple-svg-one,
.blog-two .ripple-svg-two {
    position: absolute;
}

.blog-two .blog-card__content {
    padding-left: 50px;
    padding-right: 50px;
}

@media (max-width: 1199px) {
    .blog-two .blog-card__content {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 1200px) {
    .blog-two .blog-card__image img {
        min-height: 478px;
        object-fit: cover;
    }
}

@media (min-width: 1400px) {
    .blog-two .blog-card__title {
        padding-right: 15px;
    }
}

.blog-card-two {
    position: relative;
    background-color: var(--ogoni-white, #ffffff);
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    .blog-card-two {
        display: block;
    }
}

.blog-card-two__image {
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 34.6%;
}

@media (max-width: 767px) {
    .blog-card-two__image {
        width: 100%;
    }
}

.blog-card-two__image a {
    display: block;
    width: 100%;
    position: relative;
}

.blog-card-two__image img {
    transition: 0.5s;
    background-size: cover;
    width: 100%;
    min-height: 234px;
    object-fit: cover;
}

.blog-card-two__content {
    position: relative;
    z-index: 2;
    padding: 25px 30px;
    width: 65.4%;
}

@media (max-width: 1199px) {
    .blog-card-two__content {
        padding: 25px 25px;
    }
}

@media (max-width: 767px) {
    .blog-card-two__content {
        width: 100%;
        padding: 25px 30px;
    }
}

.blog-card-two__meta {
    display: flex;
    align-items: center;
    gap: 41px;
    margin: 0 0 7px;
}

@media (max-width: 1199px) {
    .blog-card-two__meta {
        gap: 11px;
    }
}

.blog-card-two__meta li {
    color: var(--ogoni-text, #666666);
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.blog-card-two__meta li i {
    margin-right: 11px;
}

@media (max-width: 1199px) {
    .blog-card-two__meta li i {
        margin-right: 5px;
    }
}

.blog-card-two__meta li a {
    display: flex;
    align-items: center;
    color: inherit;
    transition: all 500ms ease;
    margin-left: 3px;
}

.blog-card-two__meta li a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.blog-card-two__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 19px;
}

@media (max-width: 1199px) {
    .blog-card-two__title {
        font-size: 22px;
    }
}

.blog-card-two__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
}

.blog-card-two__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.blog-card-two:hover .blog-card-two__title a {
    background-size: 100% 1px;
}

.blog-card-two__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.blog-card-two__bottom a {
    color: var(--ogoni-text, #666666);
    display: inline-block;
    background-color: var(--ogoni-gray, #f9f9f9);
    font-size: 14px;
    line-height: 24px;
    padding: 0 10px;
    transition: all 500ms ease;
}

.blog-card-two__bottom a:hover {
    background-color: var(--ogoni-base, #C2EA1D);
    color: var(--ogoni-white, #ffffff);
    border-radius: 5px;
}

.blog-card-two__bottom__star {
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
}

.blog-card-two:hover .blog-card-two__bottom__star {
    color: var(--ogoni-base, #C2EA1D);
}

.blog-three {
    padding: 120px 0 110px;
    position: relative;
}

@media (max-width: 767px) {
    .blog-three {
        padding: 80px 0 70px;
    }
}

.blog-three__btn {
    position: relative;
    text-align: right;
    margin: 80px 0 0;
}

@media (max-width: 767px) {
    .blog-three__btn {
        margin: 0 0 45px;
        text-align: left;
    }
}

.blog-three__btn .ogoni-btn {
    padding: 17px 46px;
}

.blog-card-three {
    position: relative;
    z-index: 2;
    padding: 0 30px 25px;
}

@media (max-width: 1199px) {
    .blog-card-three {
        padding: 0 25px 25px;
    }
}

.blog-card-three::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 8px);
    content: "";
    background-image: linear-gradient(119deg, #f6efff 0%, #ebf6f8 100%);
    z-index: -1;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
}

.blog-card-three__image {
    position: relative;
    overflow: hidden;
    margin: 0 0 23px;
}

.blog-card-three__image a {
    display: block;
    width: 100%;
    position: relative;
}

.blog-card-three__image img {
    transition: 0.5s;
    object-fit: cover;
    width: 100%;
}

.blog-card-three__image img:nth-child(2) {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    transform: scale(1.5);
    opacity: 0;
    z-index: 1;
}

.blog-card-three:hover .blog-card-three__image img:nth-child(2) {
    transform: scale(1);
    opacity: 1;
    transition: all 1000ms ease;
}

.blog-card-three__content {
    position: relative;
    padding: 0 0 0;
}

.blog-card-three__meta {
    display: flex;
    align-items: center;
    gap: 21px;
    margin: 0;
    margin-bottom: 11px;
}

@media (max-width: 1199px) {
    .blog-card-three__meta {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
}

.blog-card-three__meta li {
    color: var(--ogoni-text, #666666);
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.blog-card-three__meta li i {
    margin-right: 8px;
}

.blog-card-three__meta li a {
    display: flex;
    align-items: center;
    color: inherit;
    transition: all 500ms ease;
}

.blog-card-three__meta li a:hover {
    color: var(--ogoni-base, #C2EA1D);
    text-shadow: 0 0 1px currentColor;
}

.blog-card-three__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
}

.blog-card-three__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-card-three__title a:hover {
    background-size: 100% 1px;
}

.blog-card-three__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.blog-card-three__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    text-transform: capitalize;
}

.blog-card-three__btn__text {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-card-three__btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 11px;
    height: 11px;
    position: relative;
    overflow: hidden;
    font-size: 10px;
}

.blog-card-three__btn__icon i {
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.2s ease-out;
}

.blog-card-three__btn__icon i:last-child {
    left: -13px;
    bottom: -13px;
    transform: translate(0, 0);
    opacity: 0;
    transition: all 0.6s ease-out;
}

.blog-card-three__btn:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.blog-card-three__btn:hover .blog-card-three__btn__text {
    background-size: 100% 1px;
}

.blog-card-three__btn:hover .blog-card-three__btn__icon i:first-child {
    transform: translate(16px, -16px);
}

.blog-card-three__btn:hover .blog-card-three__btn__icon i:last-child {
    opacity: 1;
    visibility: visible;
    transform: translate(13px, -13px);
}

.blog-card-list {
    position: relative;
    border-bottom: 1px solid var(--ogoni-border-color, #ECECEC);
    padding: 0 0 40px;
    margin: 0 0 40px;
}

.blog-card-list__image {
    position: relative;
    overflow: hidden;
    margin: 0 0 26px;
}

.blog-card-list__image img {
    transition: 0.5s;
    background-size: cover;
    width: 100%;
}

.blog-card-list__image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 1s;
    overflow: hidden;
}

.blog-card-list:hover .blog-card-list__image img:nth-child(2) {
    width: 100%;
    visibility: visible;
}

.blog-card-list__date {
    width: 59px;
    height: 54px;
    background-color: var(--ogoni-base, #C2EA1D);
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 12px;
    font-family: var(--ogoni-font, "DM Sans", serif);
    color: var(--ogoni-white, #ffffff);
    padding: 0;
    line-height: 1.2em;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    text-transform: capitalize;
    font-weight: 400;
    flex-direction: column;
}

.blog-card-list__date span {
    font-size: 24px;
    font-weight: 400;
    display: block;
    margin-bottom: 6px;
}

.blog-card-list__content {
    position: relative;
    padding: 0;
}

.blog-card-list__meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    margin-bottom: 18px;
}

.blog-card-list__meta li {
    color: var(--ogoni-text, #666666);
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.blog-card-list__meta li i {
    color: var(--ogoni-base, #C2EA1D);
    margin-right: 10px;
}

.blog-card-list__meta li a {
    display: flex;
    align-items: center;
    color: inherit;
    transition: all 500ms ease;
}

.blog-card-list__meta li a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.blog-card-list__title {
    margin: 0;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.4px;
    margin-bottom: 14px;
    font-weight: 700;
}

.blog-card-list__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-card-list__title a:hover {
    background-size: 100% 1px;
}

.blog-card-list__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
    text-shadow: 0 0 1px currentColor;
}

.blog-card-list__text {
    line-height: 28px;
    margin: 0 0 22px;
}

.blog-card-list .ogoni-btn {
    font-size: 15px;
    padding: 15px 22px;
    font-weight: 700;
}

.blog-card-list .ogoni-btn i {
    position: relative;
    top: 3px;
    font-size: 20px;
    margin: 0 0 0 24px;
    padding-left: 13px;
    border-left: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.2);
    transform: none !important;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar {
    position: relative;
    z-index: 9;
    border-bottom: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    padding: 19px 0;
}

@media (max-width: 767px) {
    .topbar {
        padding: 10px 0;
    }
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .topbar__inner {
        justify-content: center;
    }
}

.topbar__toggler {
    display: flex;
    align-items: center;
    gap: 17px;
    color: var(--ogoni-text, #666666);
}

@media (max-width: 767px) {
    .topbar__toggler {
        display: none;
    }
}

.topbar__toggler i {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0 11px;
    flex-shrink: 0;
    position: relative;
    border-radius: 50%;
    font-style: normal;
    transition: all 500ms ease;
}

.topbar__toggler span {
    display: block;
    width: 12px;
    height: 1px;
    position: relative;
    background-color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    border-radius: 5px;
}

.topbar__toggler span:nth-child(2) {
    margin-left: 4px;
}

.topbar__toggler:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.topbar__toggler:hover i {
    border-color: var(--ogoni-base, #C2EA1D);
}

.topbar__toggler:hover span {
    background-color: var(--ogoni-base, #C2EA1D);
    transition: all 500ms ease;
    margin-left: 4px;
}

.topbar__toggler:hover span:nth-child(2) {
    margin-left: 0;
}

.topbar__logo {
    position: relative;
}

@media (min-width: 1200px) {
    .topbar__logo {
        margin-left: 9%;
    }
}

.topbar__social {
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 18px;
}

@media (max-width: 767px) {
    .topbar__social {
        display: none;
    }
}

.topbar__social__text {
    margin: 0;
    padding-right: 11px;
    border-right: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.topbar__social a {
    font-size: 18px;
    color: rgba(var(--ogoni-text-rgb, 102, 102, 102), 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

.topbar__social a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.topbar-two {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 5;
    border-bottom: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    padding: 0;
}

@media (max-width: 767px) {
    .topbar-two {
        display: none;
    }
}

.topbar-two__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
}

.topbar-two__info {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 20px;
}

.topbar-two__info__item {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    color: var(--ogoni-white, #ffffff);
}

.topbar-two__info__item i {
    font-size: 14px;
    display: inline-block;
    margin-right: 6px;
}

.topbar-two__info__item a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.topbar-two__info__item a:hover {
    background-size: 100% 1px;
}

@media (max-width: 991px) {
    .topbar-two__info__item:nth-child(3) {
        display: none;
    }
}

.topbar-two__social {
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 18px;
}

@media (max-width: 767px) {
    .topbar-two__social {
        display: none;
    }
}

.topbar-two__social__text {
    margin: 0;
    padding-right: 11px;
    color: var(--ogoni-white, #ffffff);
    border-right: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
}

.topbar-two__social a {
    font-size: 18px;
    color: var(--ogoni-white, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

.topbar-two__social a:hover {
    color: var(--ogoni-black, #131313);
}

.topbar-four {
    position: relative;
    border-bottom: 1px solid var(--ogoni-border-color, #ECECEC);
}

.topbar-four .container {
    max-width: 1350px;
}

.topbar-four__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 52px;
    padding: 29px 0;
}

@media (max-width: 1199px) {
    .topbar-four__inner {
        gap: 30px;
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .topbar-four__inner {
        justify-content: center;
        padding: 15px 0;
    }
}

.topbar-four__logo {
    position: relative;
}

.topbar-four__search {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 632px;
    width: 100%;
    height: 55px;
    border: 1px solid var(--ogoni-base, #C2EA1D);
    border-radius: 10px;
    margin-left: auto;
}

@media (max-width: 767px) {
    .topbar-four__search {
        display: none;
    }
}

.topbar-four__search form {
    width: 100%;
    position: relative;
}

.topbar-four__search__category {
    position: relative;
}

.topbar-four__search__category::after {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 33px;
    content: "";
    background-color: var(--ogoni-border-color, #ECECEC);
}

.topbar-four__search__category .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 165px !important;
    font-family: var(--ogoni-font, "DM Sans", serif);
}

.topbar-four__search__category .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.topbar-four__search__category .bootstrap-select .dropdown-menu {
    border: none;
}

.topbar-four__search__category .bootstrap-select>.dropdown-toggle {
    position: relative;
    height: 55px;
    outline: none !important;
    border-radius: 0;
    border: 0;
    background-color: transparent !important;
    margin: 0;
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    color: var(--ogoni-black, #131313) !important;
    font-size: 16px;
    line-height: 55px;
    font-weight: 400;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
}

.topbar-four__search__category .bootstrap-select>.dropdown-toggle:before {
    position: absolute;
    top: 3px;
    bottom: 0;
    right: 28px;
    font-family: "icomoon" !important;
    content: "\e909";
    font-weight: normal;
    font-size: 14px;
    color: var(--ogoni-text, #666666);
}

.topbar-four__search__category .bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid var(--ogoni-border-color, #ECECEC);
}

.topbar-four__search__category .bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 400;
    padding: 10px 30px;
    color: var(--ogoni-black, #131313);
    background-color: var(--ogoni-gray, #f9f9f9);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.topbar-four__search__category .bootstrap-select .dropdown-menu>li:hover>a,
.topbar-four__search__category .bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--ogoni-base, #C2EA1D);
    color: var(--ogoni-white, #ffffff);
    border-color: var(--ogoni-base, #C2EA1D);
}

.topbar-four__search input[type=search] {
    height: 53px;
    font-size: 16px;
    font-weight: 400;
    color: var(--ogoni-text, #666666);
    text-transform: capitalize;
    border: none;
    background: transparent;
    outline: none;
    padding: 0 30px;
    width: 100%;
}

.topbar-four__search button[type=submit] {
    margin: 0;
    border: none;
    outline: none;
    box-shadow: none;
    line-height: 53px;
    padding: 0;
    background-color: transparent;
    position: absolute;
    right: 25px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 300ms ease;
}

.topbar-four__search button[type=submit]:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.topbar-four__info {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1199px) {
    .topbar-four__info {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .topbar-four__info {
        gap: 0;
    }
}

@media (max-width: 767px) {
    .topbar-four__info {
        display: none;
    }
}

.topbar-four__info__item {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--ogoni-text, #666666);
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.topbar-four__info__item i {
    margin-right: 8px;
    color: var(--ogoni-base, #C2EA1D);
    position: relative;
    top: -1px;
}

.topbar-four__info__item span {
    margin: 0 4px;
}

.topbar-four__info__item a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.topbar-four__info__item a:hover {
    background-size: 100% 1px;
}

.topbar-four__info__item a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.topbar-four__info__currency,
.topbar-four__info__language {
    position: relative;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

@media (max-width: 991px) {

    .topbar-four__info__currency,
    .topbar-four__info__language {
        display: none;
    }
}

.topbar-four__info__currency>a,
.topbar-four__info__language>a {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--ogoni-text, #666666);
    text-transform: capitalize;
}

.topbar-four__info__currency>a i,
.topbar-four__info__language>a i {
    margin-right: 8px;
    position: relative;
    top: -1px;
    color: var(--ogoni-base, #C2EA1D);
}

.topbar-four__info__currency>a::after,
.topbar-four__info__language>a::after {
    position: relative;
    right: 0;
    top: 1px;
    font-size: 14px;
    font-weight: normal;
    font-family: "icomoon" !important;
    content: "\e909";
    color: currentColor;
    margin-left: 8px;
}

.topbar-four__info__currency>a:hover,
.topbar-four__info__language>a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.topbar-four__info__currency__dropdown,
.topbar-four__info__language__dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 15px);
    width: 110px;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 18px 20px;
    z-index: 99;
    display: none;
}

.topbar-four__info__currency__dropdown a,
.topbar-four__info__language__dropdown a {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--ogoni-text, #666666);
    line-height: 12px;
    padding-right: 17px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--ogoni-border-color, #ECECEC);
}

.topbar-four__info__currency__dropdown a:hover,
.topbar-four__info__language__dropdown a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.topbar-four__info__currency__dropdown a:last-child,
.topbar-four__info__language__dropdown a:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.main-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
    padding: 13px 85px;
}

@media (max-width: 1500px) {
    .main-header {
        padding: 13px 0px;
    }
}

@media (max-width: 767px) {
    .main-header {
        padding: 0px;
    }
}

.main-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .main-header__inner {
        padding: 15px 0;
    }
}

.main-header__right {
    display: flex;
    align-items: center;
}

@media (max-width: 1199px) {
    .main-header__right {
        width: 100%;
    }
}

.main-header__cart,
.main-header__search {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    line-height: 1em;
    margin-left: 20px;
}

@media (max-width: 767px) {

    .main-header__cart,
    .main-header__search {
        margin-left: 15px;
    }
}

.main-header__cart:hover,
.main-header__search:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.main-header__toggler {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ogoni-white, #ffffff);
    color: var(--ogoni-black, #131313);
    border-radius: 50%;
    font-size: 18px;
    transition: all 500ms ease;
    line-height: 1em;
    margin-left: 25px;
}

@media (max-width: 767px) {
    .main-header__toggler {
        margin-left: 15px;
    }
}

.main-header__toggler:hover {
    color: var(--ogoni-black, #131313);
    background-color: var(--ogoni-base, #C2EA1D);
}

.main-header--two {
    background-color: var(--ogoni-white, #ffffff);
    padding: 0;
    position: relative;
}

.main-header--two .main-header__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .main-header--two .main-header__inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1199px) {
    .main-header--two .main-header__inner {
        display: flex;
        padding: 0;
    }
}

.main-header--two .main-header__right {
    margin-left: auto;
}

.main-header--two .main-header__logo {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--ogoni-white, #ffffff);
    box-shadow: 0px 10px 44px 50px rgba(0, 0, 0, 0.05);
    padding: 21px 49px;
}

@media (max-width: 1199px) {
    .main-header--two .main-header__logo {
        margin-left: 0;
        margin-right: auto;
        padding: 16px 40px;
    }
}

@media (max-width: 767px) {
    .main-header--two .main-header__logo {
        padding: 16px 20px;
    }
}

.main-header--two .main-menu .main-menu__list>li {
    padding-top: 37px;
    padding-bottom: 37px;
}

.main-header--two .main-menu .main-menu__list li ul li>ul ul {
    display: block;
}

.main-header--two .main-menu .main-menu__list li ul li>ul {
    top: 0;
    left: calc(100% + 20px);
    right: auto;
}

.main-header--three {
    background-color: transparent;
    z-index: 9;
    width: 100%;
    border: none;
}

.main-header--three.sticky-header--cloned {
    background-color: var(--ogoni-black, #131313);
    border: none;
    box-shadow: 0px 3px 18px rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.07);
}

.main-header--three .main-header__inner {
    position: relative;
}

.main-header--three .main-menu .main-menu__list>li+li {
    margin-left: 26px;
}

.main-header--three .main-menu .main-menu__list>li>a {
    color: var(--ogoni-white, #ffffff);
}

.main-header--three .main-menu .main-menu__list>li.current>a,
.main-header--three .main-menu .main-menu__list>li:hover>a {
    color: var(--ogoni-base, #C2EA1D);
}

.main-header--three__middle {
    position: relative;
    display: flex;
    align-items: center;
}

@media (max-width: 1199px) {
    .main-header--three__middle {
        margin-left: auto;
        justify-content: flex-end;
        margin-right: 25px;
    }
}

@media (max-width: 767px) {
    .main-header--three__middle {
        display: none;
    }
}

.main-header--three__middle__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.05);
}

@media (max-width: 1340px) {
    .main-header--three__middle__social {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }
}

.main-header--three__middle__social a {
    color: var(--ogoni-text, #666666);
    font-size: 13px;
}

.main-header--three__middle__social a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.main-header--three__middle__rm {
    position: relative;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-white, #ffffff);
}

@media (max-width: 1340px) {
    .main-header--three__middle__rm {
        display: none;
    }
}

.main-header--three__middle__rm i {
    font-size: 14px;
    width: 14px;
    margin-left: 5px;
    overflow: hidden;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.main-header--three__middle__rm:hover {
    color: var(--ogoni-base, #C2EA1D);
    background-size: 100% 1px;
}

.main-header--three__middle__rm:hover i {
    animation: iconTranslateX 0.4s forwards;
}

@media (max-width: 1199px) {
    .main-header--three .main-header__right {
        width: auto;
    }
}

.main-header--three .mobile-nav__btn span {
    background-color: var(--ogoni-white, #ffffff);
}

.main-header--three .main-header__cart,
.main-header--three .main-header__search {
    color: var(--ogoni-text, #666666);
}

.main-header--three .main-header__cart:hover,
.main-header--three .main-header__search:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.main-header--three .main-header__toggler {
    color: var(--ogoni-text, #666666);
    background-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.05);
}

.main-header--three .main-header__toggler:hover {
    background-color: var(--ogoni-base, #C2EA1D);
    color: var(--ogoni-black, #131313);
}

.main-header--four {
    padding: 0 85px;
}

@media (max-width: 1599px) {
    .main-header--four {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .main-header--four {
        padding: 0;
    }
}

.main-header--four .main-header__logo {
    visibility: hidden;

    opacity: 0;
}

@media (max-width: 1299px) {
    .main-header--four .main-header__logo {
        visibility: visible;
        opacity: 1;
    }
}

.main-header--four.sticky-header--cloned .main-header__logo {
    visibility: visible;
    opacity: 1;
}

.main-header--four__rm {
    position: relative;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
}

@media (max-width: 1199px) {
    .main-header--four__rm {
        margin-left: 25px;
    }
}

.main-header--four__rm i {
    font-size: 14px;
    width: 14px;
    margin-left: 5px;
    overflow: hidden;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.main-header--four__rm:hover {
    color: var(--ogoni-base, #C2EA1D);
    background-size: 100% 1px;
}

.main-header--four__rm:hover i {
    animation: iconTranslateX 0.4s forwards;
}

.main-header--five {
    padding: 5px 85px 5px 15px;
}

@media (max-width: 1299px) {
    .main-header--five {
        padding: 5px 65px 5px 15px;
    }
}

@media (max-width: 1199px) {
    .main-header--five {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .main-header--five {
        padding: 0;
    }
}

.main-header--five__rm {
    position: relative;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
}

@media (max-width: 1199px) {
    .main-header--five__rm {
        margin-left: 25px;
    }
}

.main-header--five__rm i {
    font-size: 14px;
    width: 14px;
    margin-left: 5px;
    overflow: hidden;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.main-header--five__rm:hover {
    color: var(--ogoni-base, #C2EA1D);
    background-size: 100% 1px;
}

.main-header--five__rm:hover i {
    animation: iconTranslateX 0.4s forwards;
}

.main-header--six {
    padding-top: 5px;
    padding-top: 5px;
}

.left-sidebar {
    position: absolute;
    left: 0;
    height: 100vh;
    width: 90px;
    z-index: 2;
}

@media (max-width: 1699px) {
    .left-sidebar {
        width: 65px;
    }
}

@media (max-width: 1299px) {
    .left-sidebar {
        display: none;
    }
}

.left-sidebar__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    /* margin-left: 20px; */
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 0 50px 100px;
}

@media (max-width: 1699px) {
    .left-sidebar__wrapper {
        padding: 32px 0 30px 52px;
    }
}

.left-sidebar .main-header__toggler {
    margin: 0;
    width: auto;
    height: auto;
    background-color: transparent;
    font-size: 24px;
    color: var(--ogoni-text, #666666);
}

.left-sidebar .main-header__toggler:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.left-sidebar .main-header__cart,
.left-sidebar .main-header__search {
    color: var(--ogoni-text, #666666);
}

.left-sidebar .main-header__cart:hover,
.left-sidebar .main-header__search:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.left-sidebar-two {
    position: absolute;
    left: 0;
    height: 100vh;
    width: 62px;
    z-index: 2;
    padding: 100px 0;
}

@media (max-width: 1199px) {
    .left-sidebar-two {
        display: none;
    }
}

.left-sidebar-two .main-header__logo {
    visibility: hidden;
    opacity: 0;
}

.left-sidebar-two__wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 0 0;
}

.left-sidebar-two .main-header__toggler {
    margin: 0;
    width: auto;
    height: auto;
    background-color: transparent;
    font-size: 24px;
    color: var(--ogoni-text, #666666);
}

.left-sidebar-two .main-header__toggler:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.left-sidebar-two .main-header__cart,
.left-sidebar-two .main-header__search {
    color: var(--ogoni-text, #666666);
}

.left-sidebar-two .main-header__cart:hover,
.left-sidebar-two .main-header__search:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.sticky-header--cloned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    top: 0;
    background-color: var(--ogoni-white, #ffffff);
    transform: translateY(-100%);
    box-shadow: 0px 3px 18px rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.07);
    transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
    visibility: hidden;
    transition: transform 500ms ease, visibility 500ms ease;
    padding-top: 0;
    padding-bottom: 0;
}

.sticky-header--cloned.active {
    transform: translateY(0%);
    visibility: visible;
}

.mobile-nav__btn {
    width: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    cursor: pointer;
    z-index: 3;
}

@media (max-width: 1199px) {
    .mobile-nav__btn {
        margin-left: auto;
        margin-right: 0;
    }
}

@media (min-width: 1200px) {
    .mobile-nav__btn {
        display: none;
    }
}

.mobile-nav__btn span {
    width: 100%;
    height: 2px;
    background-color: var(--ogoni-black, #131313);
}

.mobile-nav__btn span:nth-child(2) {
    margin-top: 4px;
    margin-bottom: 4px;
}

.main-menu {
    /* after third level no menu */
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul {
        display: flex;
    }
}

.main-menu .main-menu__list>li {
    padding-top: 32px;
    padding-bottom: 32px;
    position: relative;
}

.main-menu .main-menu__list>li.dropdown>a {
    position: relative;
}

.main-menu .main-menu__list>li.dropdown>a::after {
    content: "\e90c";
    font-family: "icomoon" !important;
    color: inherit;
    font-weight: normal;
    font-size: 10px;
    margin-left: 5px;
    position: relative;
    top: 3px;
    display: inline-block;
    transition: all 0.4s ease-out;
}

.main-menu .main-menu__list>li+li {
    margin-left: 15px;
}

.main-menu .main-menu__list>li>a {
    font-size: 16px;
    color: var(--ogoni-black, #131313);
    font-weight: 700;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    outline: none;
    transform: translateY(var(--y)) translateZ(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.main-menu .main-menu__list>li>a .main-menu__text {
    display: flex;
    overflow: hidden;
    text-shadow: 0 80px 0 var(--ogoni-base, #C2EA1D);
}

.main-menu .main-menu__list>li>a .main-menu__text span {
    display: block;
    backface-visibility: hidden;
    font-style: normal;
    transition: transform 0.4s ease;
    transform: translateY(var(--m)) translateZ(0);
}

.main-menu .main-menu__list>li>a .main-menu__text span:nth-child(1) {
    transition-delay: 0.0333333333s;
}

.main-menu .main-menu__list>li>a .main-menu__text span:nth-child(2) {
    transition-delay: 0.0666666667s;
}

.main-menu .main-menu__list>li>a .main-menu__text span:nth-child(3) {
    transition-delay: 0.1s;
}

.main-menu .main-menu__list>li>a .main-menu__text span:nth-child(4) {
    transition-delay: 0.1333333333s;
}

.main-menu .main-menu__list>li>a .main-menu__text span:nth-child(5) {
    transition-delay: 0.1666666667s;
}

.main-menu .main-menu__list>li>a .main-menu__text span:nth-child(6) {
    transition-delay: 0.2s;
}

.main-menu .main-menu__list>li>a .main-menu__text span:nth-child(7) {
    transition-delay: 0.2333333333s;
}

.main-menu .main-menu__list>li>a .main-menu__text span:nth-child(8) {
    transition-delay: 0.3s;
}

.main-menu .main-menu__list>li>a .main-menu__text span:nth-child(9) {
    transition-delay: 0.3333333333s;
}

.main-menu .main-menu__list>li>a .main-menu__text span:nth-child(10) {
    transition-delay: 0.3666666667s;
}

.main-menu .main-menu__list>li>a .main-menu__text span:nth-child(11) {
    transition-delay: 0.4;
}

.main-menu .main-menu__list>li>a .main-menu__text span:nth-child(12) {
    transition-delay: 0.4333333333s;
}

.main-menu .main-menu__list>li>a .main-menu__text span:nth-child(13) {
    transition-delay: 0.4666666667s;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a {
    color: var(--ogoni-base, #C2EA1D);
    text-shadow: 0 0 0.5px currentColor;
    --y: -0px;
    background-color: transparent;
}

.main-menu .main-menu__list>li.current>a span,
.main-menu .main-menu__list>li:hover>a span {
    --m: calc(80px * -1);
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after {
    transform: rotate(-180deg) translateY(2px);
}

.main-menu .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: -25px;
    min-width: 270px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    z-index: 99;
    background-color: var(--ogoni-white, #ffffff);
    box-shadow: 0px 10px 60px 0px RGBA(var(--ogoni-white-rgb, 255, 255, 255), 0.07);
    padding: 15px 20px 11px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list li.megamenu:hover>ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: perspective(500px) rotateX(0);
}

.main-menu .main-menu__list>.megamenu {
    position: static;
}

.main-menu .main-menu__list>.megamenu>ul {
    top: 100% !important;
    left: -15px !important;
    right: -15px !important;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    transition: all 300ms linear 0ms;
    transform: perspective(500px) rotateX(-20deg);
    transform-origin: 50% 0%;
    pointer-events: none;
}

.main-menu .main-menu__list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

.main-menu .main-menu__list li ul li>a {
    font-size: 15px;
    line-height: 26px;
    color: var(--ogoni-text, #666666);
    font-weight: 600;
    display: flex;
    text-transform: capitalize;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    padding: 8px 20px;
    transition: 400ms;
    margin-bottom: 4px;
}

.main-menu .main-menu__list li ul li>a::after {
    position: absolute;
    right: 20px;
    top: 8px;
    border-radius: 0;
    font-size: 6px;
    font-weight: 700;
    font-family: "Font Awesome 5 Free";
    content: "\f111";
    color: var(--ogoni-base, #C2EA1D);
    visibility: hidden;
    opacity: 0;
    transition: all 500ms ease;
    transform: scale(0);
}

.main-menu .main-menu__list li ul li.current>a,
.main-menu .main-menu__list li ul li:hover>a {
    background-color: var(--ogoni-gray, #f9f9f9);
    color: var(--ogoni-base, #C2EA1D);
}

.main-menu .main-menu__list li ul li.current>a::after,
.main-menu .main-menu__list li ul li:hover>a::after {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.main-menu .main-menu__list li ul li>ul {
    top: 0;
    left: calc(100% + 20px);
}

.main-menu .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu .main-menu__list li ul li>ul ul {
    display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {

    .main-menu__list li:nth-last-child(1) ul li>ul,
    .main-menu__list li:nth-last-child(2) ul li>ul {
        left: auto;
        right: calc(100% + 20px);
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .main-menu__list li:nth-last-child(3) ul li>ul {
        left: auto;
        right: calc(100% + 20px);
    }
}

/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    width: 100vw;
    height: 100vh;
    visibility: visible;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
    z-index: 999999;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
    padding: 0;
    background-color: var(--ogoni-white, #ffffff);
    display: block !important;
    margin: 0;
}

.main-menu__list>li.megamenu-clickable>ul::-webkit-scrollbar {
    display: none;
}

.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
    transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
    overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
    bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
    overflow: unset;
}

.mobile-nav__content .demo-one .container {
    padding-left: 15px;
    padding-right: 15px;
}

.megamenu-popup {
    position: relative;
}

.megamenu-popup .megamenu-clickable--close {
    position: absolute;
    top: 18px;
    right: 20px;
    display: block;
    color: var(--ogoni-black, #131313);
}

@media (min-width: 1300px) {
    .megamenu-popup .megamenu-clickable--close {
        top: 38px;
        right: 40px;
    }
}

.megamenu-popup .megamenu-clickable--close:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.megamenu-popup .megamenu-clickable--close span {
    width: 24px;
    height: 24px;
    display: block;
    position: relative;
    color: currentColor;
    transition: all 500ms ease;
}

.megamenu-popup .megamenu-clickable--close span::before,
.megamenu-popup .megamenu-clickable--close span::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.megamenu-popup .megamenu-clickable--close span::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.demo-one {
    padding-top: 120px;
    padding-bottom: 120px;
}

.demo-one .row {
    --bs-gutter-y: 30px;
}

.demo-one__card {
    background-color: var(--ogoni-white, #ffffff);
    box-shadow: 0px 10px 60px 0px rgba(var(--ogoni-black2-rgb, 0, 0, 0), 0.1);
    text-align: center;
    transition: 500ms ease;
    transform: translateY(0px);
}

.demo-one__card:hover {
    transform: translateY(-10px);
}

.demo-one__title {
    margin: 0;
    text-transform: capitalize;
    font-size: 16px;
    color: var(--ogoni-black, #131313);
    font-weight: 700;
}

.demo-one__title:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.demo-one__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.demo-one__title a:hover {
    background-size: 100% 1px;
}

.demo-one__image {
    position: relative;
    overflow: hidden;
}

.demo-one__image img {
    max-width: 100%;
    transition: filter 500ms ease;
    filter: blur(0px);
}

.demo-one__card:hover .demo-one__image img {
    filter: blur(2px);
}

.demo-one__btns {
    background-color: rgba(var(--ogoni-black2-rgb, 0, 0, 0), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: scale(1, 0);
    transition: transform 500ms ease, opacity 600ms linear;
    transform-origin: bottom center;
    opacity: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .demo-one__btns {
        flex-direction: column;
    }
}

@media (max-width: 375px) {
    .demo-one__btns {
        flex-direction: column;
    }
}

.demo-one__card:hover .demo-one__btns {
    transform: scale(1, 1);
    opacity: 1;
    transform-origin: top center;
}

.demo-one__btn {
    position: relative;
    padding: 12px 24px;
}

.demo-one__title {
    padding-top: 30px;
    padding-bottom: 30px;
}

.home-showcase .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 20px;
}

.home-showcase__inner {
    max-height: 90vh;
    overflow-y: scroll;
    padding: 40px 40px 21px;
    background-color: var(--ogoni-white, #ffffff);
    box-shadow: 0px 10px 60px 0px rgba(var(--ogoni-black2-rgb, 0, 0, 0), 0.07);
}

.home-showcase .demo-one__card {
    box-shadow: none;
}

.home-showcase .demo-one__btns {
    flex-direction: column;
}

.home-showcase .demo-one__btn {
    min-width: 135px;
    text-align: center;
    justify-content: center;
}

.home-showcase .demo-one__title {
    padding: 0;
    font-weight: 700;
    font-size: 16px;
    margin-top: 15px;
    padding-bottom: 15px;
}

.home-showcase .demo-one__title:hover {
    color: var(--ogoni-base, #C2EA1D);
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(-100%);
    transform-origin: left center;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    visibility: hidden;
    position: fixed;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
    flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase {
    margin-bottom: -1px;
    margin-top: 0;
    border-bottom: 1px solid RGBA(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__wrapper .home-showcase__inner {
    padding: 15px 0px;
    background-color: transparent;
    box-shadow: none;
}

.mobile-nav__wrapper .home-showcase__title {
    color: var(--ogoni-white, #ffffff);
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--ogoni-black, #131313);
    opacity: 0.3;
    cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--ogoni-black2, #000000);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

.mobile-nav__content .main-menu__nav {
    display: block;
    padding: 0;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--ogoni-white, #ffffff);
    cursor: pointer;
    transition: all 500ms ease;
}

.mobile-nav__close:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid RGBA(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li>a {
    padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid RGBA(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li>a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: var(--ogoni-white, #ffffff);
    font-size: 12px;
    font-family: var(--ogoni-font, "DM Sans", serif);
    text-transform: uppercase;
    font-weight: 500;
    height: 46px;
    letter-spacing: var(--ogoni-letter-space, 0.1em);
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--ogoni-base, #C2EA1D);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--ogoni-base, #C2EA1D);
    border: none;
    outline: none;
    color: var(--ogoni-white, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: var(--ogoni-white, #ffffff);
    color: var(--ogoni-black, #131313);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--ogoni-white, #ffffff);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 20px;
}

.mobile-nav__social a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--ogoni-white, #ffffff);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: inherit;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--ogoni-base, #C2EA1D);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    margin-right: 10px;
    color: var(--ogoni-white, #ffffff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
    display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    -webkit-transition: all 1s ease;
    -khtml-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.search-popup__overlay {
    position: fixed;
    width: 224vw;
    height: 224vw;
    top: calc(90px - 112vw);
    right: calc(50% - 112vw);
    z-index: 3;
    display: block;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: transform 0.8s ease-in-out;
    -khtml-transition: transform 0.8s ease-in-out;
    -moz-transition: transform 0.8s ease-in-out;
    -ms-transition: transform 0.8s ease-in-out;
    -o-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    transition-delay: 0s;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    background-color: #000;
    opacity: 0.9;
    cursor: url(../images/close.png), auto;
}

@media (max-width: 767px) {
    .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(-110%);
    }
}

.search-popup__content {
    position: fixed;
    width: 0;
    max-width: 560px;
    padding: 30px 15px;
    left: 50%;
    top: 50%;
    opacity: 0;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition-delay: 0s, 0.8s, 0s;
    transition-delay: 0s, 0.4s, 0s;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
}

.search-popup__form {
    position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
    width: 100%;
    background-color: var(--ogoni-white, #ffffff);
    font-size: 15px;
    color: var(--ogoni-text, #666666);
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__form .ogoni-btn {
    padding: 0;
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
}

.search-popup__form .ogoni-btn i {
    font-size: 16px;
    margin: 0;
    transform: none;
}

.search-popup.active {
    z-index: 9999;
}

.search-popup.active .search-popup__overlay {
    top: auto;
    bottom: calc(90px - 112vw);
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    opacity: 0.9;
    -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
    .search-popup.active .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(0%);
    }
}

.search-popup.active .search-popup__content {
    width: 100%;
    opacity: 1;
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    padding: 117px 100px 0;
    background-color: var(--ogoni-gray, #f9f9f9);
}

@media (max-width: 1499px) {
    .page-header {
        padding: 117px 20px 0;
    }
}

.page-header__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.page-header__wrapper {
    position: relative;
    background-color: var(--ogoni-white, #ffffff);
    padding-top: 127px;
    padding-bottom: 128px;
}

@media (max-width: 767px) {
    .page-header__wrapper {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.page-header__shape-one {
    position: absolute;
    left: 52px;
    bottom: 20px;
    width: 74px;
    height: 60px;
    animation: rotated 10s infinite linear;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1199px) {
    .page-header__shape-one {
        display: none;
    }
}

.page-header__shape-two {
    position: absolute;
    left: 47%;
    bottom: 0px;
    width: 301px;
    height: 324px;
    animation: zoomsIn 2s infinite alternate;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1199px) {
    .page-header__shape-two {
        display: none;
    }
}

.page-header__shape-three {
    position: absolute;
    left: 51%;
    top: 24px;
    width: 200px;
    height: 32px;
    animation: shrinkAnim 3s ease 0s infinite;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1199px) {
    .page-header__shape-three {
        display: none;
    }
}

.page-header__shape-four {
    position: absolute;
    right: 20%;
    top: 50px;
    width: 47px;
    height: 47px;
    animation: rotated2 10s infinite linear;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1199px) {
    .page-header__shape-four {
        display: none;
    }
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header__content {
    position: relative;
}

.page-header__title {
    margin-bottom: 6px;
    font-size: 82px;
    color: var(--ogoni-black, #131313);
    font-weight: 400;
    font-style: italic;
    text-transform: capitalize;
    line-height: 1.3;
}

.page-header__title span {
    font-weight: 800;
    font-style: normal;
}

@media (max-width: 1399px) {
    .page-header__title {
        font-size: 65px;
    }
}

@media (max-width: 991px) {
    .page-header__title {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .page-header__title {
        font-size: 40px;
    }
}

.page-header__circle {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px !important;
    height: 130px !important;
    border-radius: 50%;
    margin: auto;
}

@media (max-width: 767px) {
    .page-header__circle {
        position: relative;
        margin: 25px 0 0;
    }
}

.page-header__circle__icon {
    width: 30px;
    height: 30px;
    font-size: 24px;
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: var(--ogoni-black, #131313);
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header__circle__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.page-header__circle__icon:hover {
    color: var(--ogoni-black, #131313);
}

.page-header__circle__icon:hover i {
    animation: iconTranslate_Y 0.4s forwards;
}

.page-header__circle .curved-circle {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 130px !important;
    height: 130px !important;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.page-header__circle .curved-circle .curved-circle--item {
    width: 130px !important;
    height: 130px !important;
}

.page-header__circle .curved-circle span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: var(--ogoni-text, #666666);
    letter-spacing: 4.5px;
}

.page-header-two {
    position: relative;
    padding: 117px 100px 0 0;
}

@media (max-width: 1499px) {
    .page-header-two {
        padding: 117px 20px 0 0;
    }
}

.page-header-two__bg {
    position: absolute;
    height: 100%;
    width: 47.9%;
    right: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media (max-width: 991px) {
    .page-header-two__bg {
        display: none;
    }
}

.page-header-two__wrapper {
    position: relative;
    background-color: var(--ogoni-white, #ffffff);
    padding-top: 127px;
    padding-bottom: 128px;
}

@media (max-width: 767px) {
    .page-header-two__wrapper {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.page-header-two__shape-one {
    position: absolute;
    left: 152px;
    bottom: 20px;
    width: 74px;
    height: 60px;
    animation: rotated 10s infinite linear;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1199px) {
    .page-header-two__shape-one {
        display: none;
    }
}

.page-header-two__shape-two {
    position: absolute;
    left: 47%;
    bottom: 0px;
    width: 301px;
    height: 324px;
    animation: zoomsIn 2s infinite alternate;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1199px) {
    .page-header-two__shape-two {
        display: none;
    }
}

.page-header-two__shape-three {
    position: absolute;
    left: 53%;
    top: 24px;
    width: 200px;
    height: 32px;
    animation: shrinkAnim 3s ease 0s infinite;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1199px) {
    .page-header-two__shape-three {
        display: none;
    }
}

.page-header-two__shape-four {
    position: absolute;
    right: 20%;
    top: 50px;
    width: 47px;
    height: 47px;
    animation: rotated2 10s infinite linear;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1199px) {
    .page-header-two__shape-four {
        display: none;
    }
}

.page-header-two .container {
    position: relative;
    z-index: 1;
}

.page-header-two__content {
    position: relative;
}

.page-header-two__title {
    margin-bottom: 6px;
    font-size: 82px;
    color: var(--ogoni-black, #131313);
    font-weight: 400;
    font-style: italic;
    text-transform: capitalize;
    line-height: 1.3;
}

.page-header-two__title span {
    font-weight: 800;
    font-style: normal;
}

@media (max-width: 1399px) {
    .page-header-two__title {
        font-size: 65px;
    }
}

@media (max-width: 991px) {
    .page-header-two__title {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .page-header-two__title {
        font-size: 40px;
    }
}

.page-header-two__circle {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px !important;
    height: 130px !important;
    border-radius: 50%;
    margin: auto;
}

@media (max-width: 767px) {
    .page-header-two__circle {
        position: relative;
        margin: 25px 0 0;
    }
}

.page-header-two__circle__icon {
    width: 30px;
    height: 30px;
    font-size: 24px;
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: var(--ogoni-black, #131313);
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header-two__circle__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.page-header-two__circle__icon:hover {
    color: var(--ogoni-black, #131313);
}

.page-header-two__circle__icon:hover i {
    animation: iconTranslate_Y 0.4s forwards;
}

.page-header-two__circle .curved-circle {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 130px !important;
    height: 130px !important;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.page-header-two__circle .curved-circle .curved-circle--item {
    width: 130px !important;
    height: 130px !important;
}

.page-header-two__circle .curved-circle span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: var(--ogoni-text, #666666);
    letter-spacing: 4.5px;
}

.ogoni-breadcrumb {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px 0;
    flex-wrap: wrap;
    position: relative;
}

.ogoni-breadcrumb::before {
    position: relative;
    display: inline-block;
    background-image: url(../images/shapes/star.png);
    width: 24px;
    height: 24px;
    animation: startIconOne 1s infinite alternate;
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 18px;
}

.ogoni-breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--ogoni-text, #666666);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.25;
}

.ogoni-breadcrumb li:not(:last-of-type)::after {
    content: "/";
    position: relative;
    top: -1px;
    margin-left: 8px;
    margin-right: 8px;
    font-size: 21px;
    color: var(--ogoni-black, #131313);
}

.ogoni-breadcrumb li:not(:first-child) span {
    color: var(--ogoni-base, #C2EA1D);
}

.ogoni-breadcrumb li a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    color: var(--ogoni-black, #131313);
}

.ogoni-breadcrumb li a:hover {
    background-size: 100% 1px;
}

.ogoni-breadcrumb li a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
    position: relative;
    background-color: var(--ogoni-black, #131313);
}

.google-map iframe {
    position: relative;
    display: block;
    border: none;
    height: 800px;
    width: 100%;
    mix-blend-mode: luminosity;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

@media (max-width: 1199px) {
    .google-map iframe {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .google-map iframe {
        height: 450px;
    }
}

.contact-map {
    position: relative;
    overflow: hidden;
    background-color: var(--ogoni-gray, #f9f9f9);
}

@media (min-width: 1300px) {
    .contact-map {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (min-width: 1400px) {
    .contact-map {
        padding-left: 100px;
        padding-right: 100px;
    }
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
    position: relative;
    padding: 110px 0;
}

@media (min-width: 1300px) {
    .client-carousel {
        border-left: 50px solid var(--ogoni-gray, #f9f9f9);
        border-right: 50px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (min-width: 1400px) {
    .client-carousel {
        border-left: 100px solid var(--ogoni-gray, #f9f9f9);
        border-right: 100px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (max-width: 767px) {
    .client-carousel {
        padding: 70px 0;
    }
}

.client-carousel__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
    display: none;
}

.client-carousel__one__item {
    text-align: center;
    display: flex;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    min-height: 71px;
}

.client-carousel__one__item img {
    display: block;
    width: auto;
    margin: 0 auto;
    position: relative;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    width: auto !important;
}

.client-carousel__one__item img:nth-child(2) {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -100%);
    opacity: 1;
}

.client-carousel__one__item:hover img:nth-child(1) {
    transform: translatey(160%);
}

.client-carousel__one__item:hover img:nth-child(2) {
    top: 100%;
    opacity: 1;
}

.client-carousel--home-two {
    background-color: var(--ogoni-gray, #f9f9f9);
    border: none;
    padding-top: 96px;
}

@media (max-width: 767px) {
    .client-carousel--home-two {
        padding-top: 50px;
    }
}

.client-carousel--home-two .client-carousel__line {
    display: block;
}

.client-carousel--home-three {
    background-color: var(--ogoni-gray, #f9f9f9);
    border: none;
    padding-top: 0;
}

.client-carousel--home-three .client-carousel__line {
    display: block;
}

.client-carousel--shop {
    background-color: var(--ogoni-gray, #f9f9f9);
    border: none;
    padding-top: 0;
    padding-bottom: 120px;
}

@media (max-width: 767px) {
    .client-carousel--shop {
        padding-bottom: 80px;
    }
}

.client-carousel--shop .client-carousel__line {
    display: block;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.form-one__group {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px 24px;
    margin: 0;
}

@media (min-width: 576px) {
    .form-one__group {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-one__control {
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
    position: relative;
}

.form-one__control label {
    display: block;
    line-height: 1;
    font-size: 24px;
    margin: 0 0 0;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    cursor: pointer;
    text-transform: capitalize;
}

.form-one__control__icon {
    position: absolute;
    bottom: 17px;
    right: 20px;
    font-size: 16px;
}

.form-one__control--full {
    grid-column-start: 1;
    grid-column-end: -1;
}

.form-one__text {
    margin: 0 0 24px;
}

.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
    outline: none !important;
    color: var(--ogoni-text, #666666);
    font-size: 14px;
    font-weight: 400;
}

.form-one .bootstrap-select>.dropdown-toggle,
.form-one input[type=text],
.form-one input[type=tel],
.form-one input[type=email],
.form-one textarea {
    display: block;
    width: 100%;
    height: 50px;
    background-color: transparent;
    color: var(--ogoni-text, #666666);
    font-size: 14px;
    font-weight: 400;
    border: none;
    border-bottom: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    outline: none;
    padding-left: 0;
    padding-right: 0;
    transition: all 500ms ease;
}

.form-one .bootstrap-select>.dropdown-toggle:focus,
.form-one input[type=text]:focus,
.form-one input[type=tel]:focus,
.form-one input[type=email]:focus,
.form-one textarea:focus {
    color: var(--ogoni-black, #131313);
    border-color: var(--ogoni-base, #C2EA1D);
}

.form-one textarea {
    height: 144px;
    padding-top: 15px;
    margin-bottom: 2px;
}

.form-one .bootstrap-select>.dropdown-toggle {
    display: flex;
    align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.form-one .bootstrap-select>.dropdown-toggle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    font-weight: normal;
    font-family: "icomoon" !important;
    content: "\e90c";
    font-size: 14px;
    color: var(--ogoni-text, #666666);
    display: flex;
    align-items: center;
}

.form-one .bootstrap-select .dropdown-menu li a {
    padding: 15px 20px;
    color: var(--ogoni-text, #666666);
    font-size: 16px;
}

.form-one .bootstrap-select .dropdown-menu li a:hover,
.form-one .bootstrap-select .dropdown-menu li a.active {
    background-color: var(--ogoni-base, #C2EA1D);
    color: var(--ogoni-white, #ffffff);
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
    margin-top: 115px;
}

@media (max-width: 767px) {
    .comments-one {
        margin-top: 75px;
    }
}

.comments-one__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comments-one__card {
    display: grid;
    grid-template-columns: 86px auto;
    grid-gap: 24px;
}

@media (max-width: 767px) {
    .comments-one__card {
        grid-template-columns: auto;
    }
}

.comments-one__card:nth-child(even) {
    padding-left: 70px;
}

@media (max-width: 767px) {
    .comments-one__card:nth-child(even) {
        padding-left: 50px;
    }
}

@media (max-width: 575px) {
    .comments-one__card:nth-child(even) {
        padding-left: 0px;
    }
}

.comments-one__card:not(:last-child) {
    margin-bottom: 34px;
    padding-bottom: 29px;
    border-bottom: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.comments-one__card__image {
    width: 86px;
}

.comments-one__card__image img {
    width: 86px;
    height: 86px;
    object-fit: cover;
}

.comments-one__card__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px 40px;
}

@media (max-width: 767px) {
    .comments-one__card__content {
        flex-direction: column;
        justify-content: flex-start;
    }
}

.comments-one__card__name {
    margin: -4px 0 15px;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
}

.comments-one__card__text {
    margin-bottom: 0;
}

.comments-one__card__reply {
    flex-shrink: 0;
    padding: 0px 16.5px;
    line-height: 23px;
    font-family: var(--ogoni-font, "DM Sans", serif);
    font-weight: 400;
    font-size: 14px;
    color: var(--ogoni-text, #666666);
    background-color: var(--ogoni-white, #ffffff);
    display: inline-block;
    border: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.comments-one__card__reply:hover {
    background-color: var(--ogoni-black, #131313);
    border-color: var(--ogoni-black, #131313);
    color: var(--ogoni-white, #ffffff);
}

.comments-form {
    margin-top: 108px;
}

@media (max-width: 767px) {
    .comments-form {
        margin-top: 68px;
    }
}

.comments-one__title,
.comments-form__title {
    margin-bottom: 38px;
    font-weight: 700;
    font-size: 32px;
    text-transform: capitalize;
}

.comments-one__title {
    margin-bottom: 45px;
}

/*--------------------------------------------------------------
# Sidebar Popup
--------------------------------------------------------------*/
.sidebar-one {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(100%);
    transform-origin: right center;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.sidebar-one.active {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.sidebar-one.active .sidebar-one__content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.sidebar-one__overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--ogoni-black2, #000000);
    opacity: 0.5;
    cursor: url(../images/close.png), auto;
}

.sidebar-one__close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 20px;
    transform: rotate(45deg);
    color: var(--ogoni-white, #ffffff);
    transition: all 0.4s ease;
    cursor: pointer;
}

.sidebar-one__close:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.sidebar-one__content {
    width: 350px;
    background-color: var(--ogoni-black2, #000000);
    z-index: 10;
    position: relative;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    overflow-y: auto;
    padding-top: 40px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    scrollbar-width: none;
}

.sidebar-one__text {
    color: var(--ogoni-gray, #f9f9f9);
    margin: 35px 0 30px;
    line-height: 28px;
}

.sidebar-one__title {
    color: var(--ogoni-white, #ffffff);
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 18px;
}

.sidebar-one__info {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-one__info li {
    position: relative;
    padding: 0 0 0 28px;
    margin-bottom: 10px;
    color: var(--ogoni-gray, #f9f9f9);
}

.sidebar-one__info li span {
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 15px;
    color: var(--ogoni-base, #C2EA1D);
    line-height: inherit;
}

.sidebar-one__info li a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    color: inherit;
}

.sidebar-one__info li a:hover {
    background-size: 100% 1px;
}

.sidebar-one__info li a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.sidebar-one__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0 40px;
}

.sidebar-one__social a {
    width: 37px;
    height: 37px;
    background-color: RGBA(var(--ogoni-white-rgb, 255, 255, 255), 0.08);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 14px;
    color: var(--ogoni-white, #ffffff);
}

.sidebar-one__social a span {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.sidebar-one__social a:hover {
    background-color: var(--ogoni-base, #C2EA1D);
    color: var(--ogoni-black, #131313);
}

.sidebar-one__social a:hover span {
    animation: iconTranslateY 0.4s forwards;
}

.sidebar-one__newsletter {
    position: relative;
}

.sidebar-one__newsletter input[type=text] {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    height: 60px;
    background-color: RGBA(var(--ogoni-white-rgb, 255, 255, 255), 0.08);
    color: var(--ogoni-gray, #f9f9f9);
    font-size: 16px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 50px;
    transition: all 500ms ease;
    border-radius: 5px;
}

.sidebar-one__newsletter button[type=submit] {
    background-color: transparent;
    width: auto;
    height: auto;
    border: none;
    outline: none;
    color: var(--ogoni-white, #ffffff);
    font-size: 16px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.sidebar-one__newsletter button[type=submit]:hover {
    color: var(--ogoni-base, #C2EA1D);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
    position: relative;
}

.sidebar__single {
    position: relative;
    padding: 30px;
    background-color: var(--ogoni-white, #ffffff);
}

@media (max-width: 767px) {
    .sidebar__single {
        padding: 20px;
    }
}

.sidebar__single--info {
    padding: 0;
}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__title {
    margin-bottom: 25px;
    margin-top: -5px;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.416;
}

.sidebar__title span {
    font-weight: normal;
    font-style: italic;
}

.sidebar__search {
    position: relative;
    height: 50px;
}

.sidebar__search input[type=search],
.sidebar__search input[type=text] {
    padding-left: 19px;
    padding-right: 40px;
    outline: none;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    font-size: 14px;
    color: var(--ogoni-text, #666666);
    font-weight: 400;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: all 400ms ease;
}

.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
    color: var(--ogoni-black, #131313);
}

.sidebar__search button[type=submit] {
    padding: 0;
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: auto;
    font-size: 14px;
    color: var(--ogoni-black, #131313);
    transition: all 400ms ease;
    z-index: 2;
}

.sidebar__search button[type=submit]:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.sidebar__categories {
    position: relative;
}

.sidebar__categories li {
    position: relative;
}

.sidebar__categories li a {
    display: block;
    background-color: var(--ogoni-gray, #f9f9f9);
    color: var(--ogoni-text, #666666);
    font-size: 16px;
    padding: 12px 21px;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 1;
    position: relative;
}

.sidebar__categories li a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
}

.sidebar__categories li a:hover {
    color: var(--ogoni-white, #ffffff);
}

.sidebar__categories li a:hover::after {
    left: 0;
    width: 100%;
}

.sidebar__categories li+li {
    margin-top: 20px;
}

.sidebar__social {
    position: relative;
    display: flex;
    gap: 20px;
}

.sidebar__social a {
    width: 50px;
    height: 50px;
    font-size: 14px;
    color: var(--ogoni-black, #131313);
    background-color: var(--ogoni-gray, #f9f9f9);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.sidebar__social a:hover {
    color: var(--ogoni-white, #ffffff);
    background-color: var(--ogoni-black, #131313);
}

.sidebar__social a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.sidebar__mail {
    position: relative;
    text-align: center;
}

.sidebar__mail__icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ogoni-gray, #f9f9f9);
    font-size: 40px;
    color: var(--ogoni-black, #131313);
    margin: 0 auto 25px;
    overflow: hidden;
    transition: all 300ms ease;
}

.sidebar__mail__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.sidebar__mail:hover .sidebar__mail__icon {
    background-color: var(--ogoni-black, #131313);
    color: var(--ogoni-white, #ffffff);
}

.sidebar__mail:hover .sidebar__mail__icon i {
    animation: iconTranslateY 0.4s forwards;
}

.sidebar__mail__text {
    margin: 0 0 5px;
}

.sidebar__mail__title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 44px;
}

.sidebar__mail input[type=text] {
    width: 100%;
    display: block;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    outline: none;
    height: 40px;
    background-color: transparent;
    color: var(--ogoni-text, #666666);
    font-size: 14px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease;
    border-radius: 0;
    text-align: center;
    margin-bottom: 10px;
}

.sidebar__mail button[type=submit] {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--ogoni-font, "DM Sans", serif);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 500ms ease;
}

.sidebar__mail button[type=submit] i {
    position: relative;
    top: 1px;
    margin-right: 8px;
}

.sidebar__products {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar__products__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 19px;
}

.sidebar__products__item+.sidebar__products__item {
    margin-top: 20px;
}

.sidebar__products__image {
    width: 110px;
    height: 110px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar__products__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar__products__title {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}

.sidebar__products__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.sidebar__products__title a:hover {
    background-size: 100% 1px;
}

.sidebar__products__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.sidebar__products__price {
    display: flex;
    gap: 10px;
    font-size: 16px;
    color: var(--ogoni-text, #666666);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 14px;
}

.sidebar__products__price__new {
    margin: 0;
    font-weight: 800;
    color: var(--ogoni-black, #131313);
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
}

.sidebar__products__price__old {
    margin: 0;
    text-decoration: line-through;
}

.sidebar__products__ratings {
    display: flex;
    align-items: center;
    font-size: 10px;
    color: var(--ogoni-black, #131313);
}

.sidebar--blog {
    position: relative;
}

.sidebar__gallery {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 13px;
}

.sidebar__gallery a {
    display: block;
    width: 110px;
    height: 110px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.sidebar__gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar__gallery a:hover .sidebar__gallery__overlay {
    opacity: 1;
    transform: rotateY(0deg);
    transition: transform 0.5s, opacity 0.1s;
}

.sidebar__gallery__overlay {
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    background-color: RGBA(var(--ogoni-base-rgb, 194, 234, 29), 0.8);
    opacity: 0;
    backface-visibility: hidden;
    transform-origin: 0 0;
    transform: rotateY(-90deg);
    transition: transform 0.5s, opacity 0.1s 0.3s;
}

.sidebar__gallery__wrapper {
    position: relative;
}

.sidebar__gallery__wrapper .ogoni-btn {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    font-weight: 400;
    font-family: var(--ogoni-font, "DM Sans", serif);
    padding: 9px 25px;
}

.sidebar__gallery__wrapper .ogoni-btn i {
    margin-right: 11px;
    position: relative;
    top: 1px;
}

.sidebar__info {
    position: relative;
    z-index: 1;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 131px 45px 133px;
    text-align: center;
}

.sidebar__info::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.5);
}

.sidebar__info::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    border: 1px solid RGBA(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    content: "";
    z-index: 1;
}

.sidebar__info__title {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: var(--ogoni-white, #ffffff);
    position: relative;
    z-index: 1;
    margin: 0 0 38px;
}

.sidebar__info__title span {
    font-weight: normal;
    font-style: italic;
}

.sidebar__info__text {
    position: relative;
    z-index: 2;
    display: inline-block;
    background-color: var(--ogoni-base, #C2EA1D);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: var(--ogoni-black, #131313);
    padding: 17px 21px;
}

.sidebar__info__text i {
    font-size: 24px;
    margin-right: 12px;
    position: relative;
    top: 4px;
}

.sidebar__info__text a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.sidebar__info__text a:hover {
    background-size: 100% 1px;
}

.service-sidebar {
    position: relative;
}

.service-sidebar__single+.service-sidebar__single {
    margin-top: 30px;
}

.service-sidebar__nav {
    margin: 0;
    padding: 0;
}

.service-sidebar__nav li {
    position: relative;
    z-index: 1;
    font-size: 24px;
    font-weight: 500;
    color: var(--ogoni-black, #131313);
    text-transform: uppercase;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 19px 30px;
    transition: all 400ms ease;
}

.service-sidebar__nav li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    height: 17px;
    margin: auto;
    background-color: var(--ogoni-base, #C2EA1D);
    transition: all 400ms ease;
}

.service-sidebar__nav li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--ogoni-base, #C2EA1D);
    transform: scalex(0);
    transform-style: preserve-3d;
    transition: transform 0.4s ease-in-out;
    transform-origin: right center;
    z-index: -1;
}

.service-sidebar__nav li a {
    color: inherit;
    display: inline-block;
    transition: none;
}

.service-sidebar__nav li.current,
.service-sidebar__nav li:hover {
    color: var(--ogoni-white, #ffffff);
    border-color: var(--ogoni-base, #C2EA1D);
}

.service-sidebar__nav li.current::after,
.service-sidebar__nav li:hover::after {
    background-color: var(--ogoni-white, #ffffff);
}

.service-sidebar__nav li.current::before,
.service-sidebar__nav li:hover::before {
    transform: scalex(1);
    transform-origin: left center;
}

.service-sidebar__nav li+li {
    border-top: 1px solid var(--ogoni-border-color, #ECECEC);
}

.service-sidebar__contact {
    padding: 149px 25px 144px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.service-sidebar__contact::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.8);
}

.service-sidebar__contact__left-triangle {
    position: absolute;
    z-index: 1;
    left: 20px;
    top: 20px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 41px 47px 0 0;
    border-color: var(--ogoni-base, #C2EA1D) transparent transparent transparent;
    transform: rotate(0deg);
}

.service-sidebar__contact__right-triangle {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 20px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0 41px 47px;
    border-color: transparent transparent var(--ogoni-base, #C2EA1D) transparent;
    transform: rotate(0deg);
}

.service-sidebar__contact__icon {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    width: 72px;
    height: 72px;
    background-color: var(--ogoni-white, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 500ms ease;
    margin-bottom: 36px;
}

.service-sidebar__contact__icon i {
    color: var(--ogoni-base, #C2EA1D);
    font-size: 36px;
    transition: color 500ms ease, transform 500ms ease;
    transform: scale(1);
}

.service-sidebar__contact:hover .service-sidebar__contact__icon {
    background-color: var(--ogoni-base, #C2EA1D);
}

.service-sidebar__contact:hover .service-sidebar__contact__icon i {
    transform: scale(0.9);
    color: var(--ogoni-white, #ffffff);
}

.service-sidebar__contact__number {
    position: relative;
    z-index: 1;
    color: var(--ogoni-white, #ffffff);
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    letter-spacing: -0.9px;
    margin-bottom: 0;
}

.service-sidebar__contact__number span {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: -0.48px;
    font-weight: 600;
    display: block;
    line-height: 1;
    margin-bottom: 9px;
}

.service-sidebar__contact__number a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.service-sidebar__contact__number a:hover {
    background-size: 100% 1px;
}

.service-sidebar__contact__number a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-details-sidebar__single {
    padding: 24px 30px 30px;
    background: linear-gradient(119.31deg, #F6EFFF 0%, #EBF6F8 100%);
}

@media (max-width: 375px) {
    .portfolio-details-sidebar__single {
        padding: 20px 26px 26px;
    }
}

.portfolio-details-sidebar__single+.portfolio-details-sidebar__single {
    margin-top: 30px;
}

.portfolio-details-sidebar__title {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.416;
}

.portfolio-details-sidebar__project {
    background: var(--ogoni-base, #C2EA1D);
}

.portfolio-details-sidebar__project .portfolio-details-sidebar__title {
    color: var(--ogoni-white, #ffffff);
}

.portfolio-details-sidebar__project__list {
    margin: 0;
}

.portfolio-details-sidebar__project__list li+li {
    margin-top: 15px;
}

.portfolio-details-sidebar__project__title {
    display: block;
    margin-bottom: 5px;
    color: RGBA(var(--ogoni-white-rgb, 255, 255, 255), 0.7);
    text-transform: capitalize;
}

.portfolio-details-sidebar__project__text {
    display: block;
    color: var(--ogoni-white, #ffffff);
}

.portfolio-details-sidebar__project a.portfolio-details-sidebar__project__text {
    display: inline;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-details-sidebar__project a.portfolio-details-sidebar__project__text:hover {
    background-size: 100% 1px;
}

.portfolio-details-sidebar__social {
    margin-top: 35px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-details-sidebar__social a {
    width: 60px;
    height: 60px;
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: RGBA(var(--ogoni-white-rgb, 255, 255, 255), 0.05);
    font-size: 19px;
    color: RGBA(var(--ogoni-white-rgb, 255, 255, 255), 0.5);
    overflow: hidden;
    z-index: 1;
    transition: all 500ms ease;
}

@media (max-width: 575px) {
    .portfolio-details-sidebar__social a {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

.portfolio-details-sidebar__social a svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.portfolio-details-sidebar__social a::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--ogoni-white, #ffffff);
    border-radius: inherit;
    z-index: -1;
    transition: all 500ms ease;
}

.portfolio-details-sidebar__social a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-details-sidebar__social a:hover::after {
    width: 100%;
    height: 100%;
}

.portfolio-details-sidebar__contact__list {
    margin: 0;
}

.portfolio-details-sidebar__contact__list li+li {
    margin-top: 17px;
}

.portfolio-details-sidebar__contact__list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.portfolio-details-sidebar__contact__icon {
    display: inline-flex;
    flex-shrink: 0;
    font-size: 24px;
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-details-sidebar__contact__icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.portfolio-details-sidebar__contact__title {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.625;
    text-transform: capitalize;
}

.portfolio-details-sidebar__contact__text {
    color: var(--ogoni-text, #666666);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-details-sidebar__contact__text:hover {
    background-size: 100% 1px;
}

.portfolio-details-sidebar__contact__text:hover {
    color: var(--ogoni-base, #C2EA1D);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
    position: relative;
    background-color: var(--ogoni-black, #131313);
    padding-top: 216px;
    padding-bottom: 172px;
}

@media (max-width: 767px) {
    .main-footer {
        padding-top: 200px;
        padding-bottom: 130px;
    }
}

.main-footer .container {
    position: relative;
}

.main-footer__shape {
    position: absolute;
    right: 3%;
    bottom: 35%;
    width: 341px;
    height: 399px;
    animation: startIconOne 1.5s infinite alternate;
}

@media (max-width: 1300px) {
    .main-footer__shape {
        display: none;
    }
}

.main-footer__title {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: var(--ogoni-white, #ffffff);
    font-size: 120px;
    line-height: 130px;
    font-weight: 700;
    margin: 0 0 113px;
}

@media (max-width: 1199px) {
    .main-footer__title {
        font-size: 90px;
        line-height: 100px;
    }
}

@media (max-width: 991px) {
    .main-footer__title {
        font-size: 60px;
        line-height: 70px;
    }
}

@media (max-width: 767px) {
    .main-footer__title {
        font-size: 35px;
        line-height: 45px;
    }
}

.main-footer__title a {
    font-weight: 400;
    color: var(--ogoni-white, #ffffff);
    display: inline-block;
    font-style: italic;
    position: relative;
}

.main-footer__title a::after {
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 3px;
    content: "";
    background-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    animation: widths 4s infinite;
    transition: all 400ms ease;
}

.main-footer__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.main-footer__title a:hover::after {
    background-color: var(--ogoni-base, #C2EA1D);
}

.main-footer__title img {
    width: 50px;
    height: 50px;
    animation: startIconOne 1s infinite alternate;
    flex-shrink: 0;
    margin: 10px 0 0 20px;
}

.main-footer__bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--ogoni-white, #ffffff);
    border-radius: 20px 0 0 0;
    padding: 27px 80px;
    width: 38%;
}

@media (max-width: 1299px) {
    .main-footer__bottom {
        width: 48%;
    }
}

@media (max-width: 1199px) {
    .main-footer__bottom {
        width: 100%;
        padding: 25px 0;
        text-align: center;
        border-radius: 0;
    }
}

.main-footer__copyright {
    margin: 0;
}

.main-footer__shape-two {
    position: relative;
    margin: -55px 0 45px 45px;
}

.main-footer__shape-two img {
    width: 60px;
    height: 200px;
    animation: shrinkAnim 3s ease 0s infinite;
}

.main-footer__circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 130px;
    height: 130px;
}

@media (max-width: 767px) {
    .main-footer__circle {
        margin-bottom: 35px;
    }
}

.main-footer__circle__icon {
    width: 30px;
    height: 30px;
    font-size: 24px;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: var(--ogoni-white, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
}

.main-footer__circle__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.main-footer__circle__icon:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.main-footer__circle .curved-circle {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    width: 130px !important;
    height: 130px !important;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.main-footer__circle .curved-circle .curved-circle--item {
    width: 130px !important;
    height: 130px !important;
}

.main-footer__circle .curved-circle span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: var(--ogoni-text, #666666);
    letter-spacing: 4.5px;
}

.main-footer--inner {
    position: relative;
    padding-top: 177px;
}

@media (max-width: 767px) {
    .main-footer--inner {
        padding-top: 80px;
    }
}

.main-footer--white {
    position: relative;
    background-color: var(--ogoni-white, #ffffff);
    padding-top: 165px;
}

@media (max-width: 767px) {
    .main-footer--white {
        padding-top: 80px;
    }
}

.main-footer--white .main-footer__title {
    color: var(--ogoni-black, #131313);
}

.main-footer--white .main-footer__title a {
    color: inherit;
}

.main-footer--white .main-footer__title a::after {
    background-color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.main-footer--white .main-footer__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.main-footer--white .main-footer__title a:hover::after {
    background-color: var(--ogoni-base, #C2EA1D);
}

.main-footer--white .footer-widget__info li span,
.main-footer--white .footer-widget__links li a:hover,
.main-footer--white .footer-widget__info li a:hover,
.main-footer--white .footer-widget__title,
.main-footer--white .main-footer__circle__icon {
    color: var(--ogoni-black, #131313);
}

.main-footer--white .main-footer__shape-two {
    opacity: 0.1;
}

.main-footer--white .main-footer__bottom {
    background-color: var(--ogoni-gray, #f9f9f9);
}

.main-footer--seven {
    position: relative;
    background-color: var(--ogoni-white, #ffffff);
    padding-top: 165px;
}

@media (min-width: 1300px) {
    .main-footer--seven {
        border-left: 50px solid var(--ogoni-gray, #f9f9f9);
        border-right: 50px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (min-width: 1400px) {
    .main-footer--seven {
        border-left: 100px solid var(--ogoni-gray, #f9f9f9);
        border-right: 100px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (max-width: 767px) {
    .main-footer--seven {
        padding-top: 80px;
    }
}

.main-footer--seven .main-footer__title {
    color: var(--ogoni-black, #131313);
}

.main-footer--seven .main-footer__title a {
    color: inherit;
}

.main-footer--seven .main-footer__title a::after {
    background-color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.main-footer--seven .main-footer__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.main-footer--seven .main-footer__title a:hover::after {
    background-color: var(--ogoni-base, #C2EA1D);
}

.main-footer--seven .footer-widget__info li span,
.main-footer--seven .footer-widget__links li a:hover,
.main-footer--seven .footer-widget__info li a:hover,
.main-footer--seven .footer-widget__title,
.main-footer--seven .main-footer__circle__icon {
    color: var(--ogoni-black, #131313);
}

.main-footer--seven .main-footer__shape-two {
    opacity: 0.1;
}

.main-footer--seven .main-footer__bottom {
    background-color: var(--ogoni-gray, #f9f9f9);
}

.footer-widget {
    margin-bottom: 33px;
}

.footer-widget--about {
    position: relative;
}

.footer-widget--about .footer-widget__links {
    margin: 38px 0 0;
    display: flex;
    align-items: center;
    gap: 21px;
}

.footer-widget--about .footer-widget__links li {
    margin: 0;
}

.footer-widget__logo {
    display: inline-flex;
    margin-bottom: 25px;
}

.footer-widget__text {
    margin: 0;
    color: var(--ogoni-border-color, #ECECEC);
    margin-bottom: 43px;
}

.footer-widget__title {
    font-size: 18px;
    font-weight: bold;
    color: var(--ogoni-white, #ffffff);
    text-transform: capitalize;
    margin: 0;
    margin-bottom: 19px;
}

.footer-widget__links {
    padding: 0;
    margin: 0 0 -13px;
}

.footer-widget__links li {
    /* text-transform: capitalize; */
    position: relative;
    margin: 0 0 19px;
}

.footer-widget__links li a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    color: inherit;
}

.footer-widget__links li a:hover {
    background-size: 100% 1px;
}

.footer-widget__links li a:hover {
    color: var(--ogoni-white, #ffffff);
}

.footer-widget__newsletter {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-widget__newsletter input[type=text] {
    width: 100%;
    display: block;
    outline: none;
    border: none;
    border: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    height: 50px;
    background-color: transparent;
    color: rgba(var(--ogoni-text-rgb, 102, 102, 102), 0.8);
    font-size: 14px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
    transition: all 500ms ease;
}

.footer-widget__newsletter input[type=text]:focus {
    color: var(--ogoni-text, #666666);
}

.footer-widget__newsletter .ogoni-btn {
    position: relative;
    flex-shrink: 0;
    padding: 12px 13.5px;
}

.footer-widget__newsletter .ogoni-btn:hover {
    background-color: var(--ogoni-white, #ffffff);
    color: var(--ogoni-black, #131313);
}

.footer-widget__newsletter .ogoni-btn::after {
    background-color: var(--ogoni-white, #ffffff);
}

.footer-widget__newsletter-text {
    font-size: 14px;
    color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.7);
    margin: 24px 0 0;
    position: relative;
}

.footer-widget__newsletter-text::before {
    width: 6px;
    height: 6px;
    content: "";
    position: relative;
    top: -1px;
    background-color: var(--ogoni-white, #ffffff);
    border-radius: 50%;
    margin-right: 7px;
    background-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.7);
    display: inline-block;
}

.footer-widget__newsletter-text span {
    color: var(--ogoni-white, #ffffff);
}

.footer-widget--contact {
    position: relative;
}

.footer-widget__info {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget__info li {
    font-size: 18px;
    line-height: 26px;
    color: var(--ogoni-text, #666666);
    position: relative;
    margin: 0 0 19px;
}

.footer-widget__info li span {
    font-size: 24px;
    font-weight: 700;
    color: var(--ogoni-white, #ffffff);
    margin-right: 10px;
    transition: all 300ms ease;
}

.footer-widget__info li a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.footer-widget__info li a:hover {
    background-size: 100% 1px;
}

.footer-widget__info li a:hover {
    color: var(--ogoni-white, #ffffff);
}

.footer-widget__instagram {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.footer-widget__instagram a {
    width: 95px;
    height: 90px;
    display: block;
    position: relative;
}

.footer-widget__instagram a::after {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "";
    width: 40px;
    height: 40px;
    background-color: var(--ogoni-base, #C2EA1D);
    border-radius: 50%;
    font-size: 14px;
    color: var(--ogoni-white, #ffffff);
    content: "\f16d";
    font-family: "Font Awesome 5 Brands";
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: 0.3s ease-in-out;
}

.footer-widget__instagram a:hover::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.footer-widget__instagram a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-widget__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 50px;
}

.footer-widget__social__title {
    margin: 0 10px 0 0;
    color: var(--ogoni-white, #ffffff);
}

.footer-widget__social a {
    width: 40px;
    height: 40px;
    font-size: 14px;
    color: var(--ogoni-white, #ffffff);
    background-color: var(--ogoni-black2, #000000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

.footer-widget__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.footer-widget__social a:hover {
    background-color: var(--ogoni-base, #C2EA1D);
    color: var(--ogoni-white, #ffffff);
}

.footer-widget__social a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.main-footer-two {
    position: relative;
    background-color: var(--ogoni-white, #ffffff);
    padding-top: 116px;
    padding-bottom: 90px;
}

@media (max-width: 767px) {
    .main-footer-two {
        padding-top: 66px;
        padding-bottom: 50px;
    }
}

.main-footer-two .container {
    position: relative;
}

.main-footer-two__mail {
    position: relative;
    max-width: 530px;
    margin-left: auto;
}

@media (max-width: 991px) {
    .main-footer-two__mail {
        margin-top: 40px;
        max-width: 100%;
    }
}

.main-footer-two__mail .mc-form {
    position: relative;
    width: 100%;
}

.main-footer-two__mail .mc-form i {
    width: 18px;
    height: 18px;
    font-size: 18px;
    color: var(--ogoni-black, #131313);
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.main-footer-two__mail .mc-form i::after {
    position: absolute;
    right: -1px;
    top: -1px;
    width: 6px;
    height: 6px;
    border: 2px solid var(--ogoni-base, #C2EA1D);
    border-radius: 50%;
    content: "";
}

.main-footer-two__mail .mc-form input[type=text] {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    outline: none;
    height: 60px;
    background-color: transparent;
    color: var(--ogoni-text, #666666);
    font-size: 16px;
    text-align: right;
    font-weight: 400;
    padding-left: 40px;
    transition: all 500ms ease;
    border-radius: 0;
}

.main-footer-two__title {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    margin: 0 0 22px;
}

@media (max-width: 1199px) {
    .main-footer-two__title {
        font-size: 49px;
    }
}

@media (max-width: 767px) {
    .main-footer-two__title {
        font-size: 35px;
        line-height: 45px;
    }
}

.main-footer-two__title a {
    font-weight: 400;
    color: inherit;
    display: inline-block;
    font-style: italic;
    position: relative;
}

.main-footer-two__title a::after {
    position: absolute;
    left: 0;
    bottom: 3px;
    height: 3px;
    width: 0;
    content: "";
    background-color: var(--ogoni-base, #C2EA1D);
    transition: all 400ms ease;
}

.main-footer-two__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.main-footer-two__title a:hover::after {
    width: 100%;
}

.main-footer-two__title img {
    width: 50px;
    height: 50px;
    animation: startIconOne 1s infinite alternate;
    flex-shrink: 0;
    margin: 10px 0 0 20px;
}

.main-footer-two__text {
    margin: 0;
}

.main-footer-two__copyright {
    margin: 23px 0 36px;
}

.main-footer-two .mt100 {
    margin-top: 100px;
}

@media (max-width: 767px) {
    .main-footer-two .mt100 {
        margin-top: 50px;
    }
}

.main-footer-two .footer-widget__title {
    color: var(--ogoni-black, #131313);
}

.main-footer-two .footer-widget__info li span,
.main-footer-two .footer-widget__info li a:hover,
.main-footer-two .footer-widget__links li a:hover {
    color: var(--ogoni-black, #131313);
}

.main-footer-two .footer-widget--about .footer-widget__links {
    margin: 78px 0 0;
}

.main-footer-two__shape-two {
    position: relative;
    margin: 5px 45px 45px 0;
    text-align: right;
}

@media (max-width: 767px) {
    .main-footer-two__shape-two {
        text-align: left;
        margin-left: 45px;
    }
}

.main-footer-two__shape-two img {
    width: 60px;
    height: 102px;
    animation: shrinkAnim 3s ease 0s infinite;
}

.main-footer-two__circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin-left: auto;
}

@media (max-width: 767px) {
    .main-footer-two__circle {
        margin-left: 0;
    }
}

.main-footer-two__circle__icon {
    width: 30px;
    height: 30px;
    font-size: 24px;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: var(--ogoni-black, #131313);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
}

.main-footer-two__circle__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.main-footer-two__circle__icon:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.main-footer-two__circle .curved-circle {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 130px !important;
    height: 130px !important;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.main-footer-two__circle .curved-circle .curved-circle--item {
    width: 130px !important;
    height: 130px !important;
}

.main-footer-two__circle .curved-circle span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: var(--ogoni-text, #666666);
    letter-spacing: 4.5px;
}

.main-footer-three {
    position: relative;
    background-color: var(--ogoni-black, #131313);
    padding-top: 120px;
}

@media (max-width: 767px) {
    .main-footer-three {
        padding-top: 80px;
    }
}

.main-footer-three .container {
    position: relative;
}

.main-footer-three__shape {
    position: absolute;
    right: 1%;
    bottom: 150px;
    width: 341px;
    height: 399px;
    animation: startIconOne 1.5s infinite alternate;
}

@media (max-width: 1300px) {
    .main-footer-three__shape {
        display: none;
    }
}

.main-footer-three__logo {
    position: relative;
}

.main-footer-three__top-text {
    margin: -7px 0 0;
}

@media (min-width: 1400px) {
    .main-footer-three__top-text {
        padding-right: 15px;
    }
}

@media (max-width: 991px) {
    .main-footer-three__top-text {
        margin: 30px 0;
    }
}

.main-footer-three__social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

@media (max-width: 991px) {
    .main-footer-three__social {
        justify-content: flex-start;
    }
}

.main-footer-three__social a {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    font-size: 18px;
    color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.4);
    transition: all 500ms ease;
    border-radius: 50%;
}

.main-footer-three__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.main-footer-three__social a:hover {
    background-color: var(--ogoni-base, #C2EA1D);
    color: var(--ogoni-black, #131313);
}

.main-footer-three__social a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.main-footer-three__divider {
    position: relative;
    border-top: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    margin-top: 113px;
}

@media (max-width: 767px) {
    .main-footer-three__divider {
        margin-top: 73px;
        margin-bottom: 30px;
    }
}

.main-footer-three__bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    border-radius: 20px 0 0 0;
    padding: 27px 80px;
    width: 43.5%;
}

@media (max-width: 1199px) {
    .main-footer-three__bottom {
        position: relative;
        width: 100%;
        padding: 25px 0;
        text-align: center;
        border-radius: 0;
    }
}

.main-footer-three__copyright {
    margin: 0;
}

.main-footer-three .footer-widget {
    margin: 115px 0 0;
}

@media (max-width: 767px) {
    .main-footer-three .footer-widget {
        margin-top: 45px;
    }
}

.main-footer-three__title {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 52px;
    color: var(--ogoni-white, #ffffff);
    line-height: 62px;
    font-weight: 700;
    margin: 0 0 22px;
}

@media (max-width: 1199px) {
    .main-footer-three__title {
        font-size: 45px;
        line-height: 55px;
    }
}

@media (max-width: 767px) {
    .main-footer-three__title {
        font-size: 35px;
        line-height: 45px;
    }
}

.main-footer-three__title a {
    font-weight: 400;
    color: inherit;
    display: inline-block;
    font-style: italic;
    position: relative;
}

.main-footer-three__title a::after {
    position: absolute;
    left: 0;
    bottom: 3px;
    height: 3px;
    width: 0;
    content: "";
    background-color: var(--ogoni-base, #C2EA1D);
    transition: all 400ms ease;
}

.main-footer-three__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.main-footer-three__title a:hover::after {
    width: 100%;
}

.main-footer-three__title img {
    width: 50px;
    height: 50px;
    animation: startIconOne 1s infinite alternate;
    flex-shrink: 0;
    margin: 10px 0 0 20px;
}

.main-footer-three__mail {
    position: relative;
    border-left: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    padding: 107px 0 200px 110px;
}

@media (max-width: 1399px) {
    .main-footer-three__mail {
        padding-left: 70px;
    }
}

@media (max-width: 1199px) {
    .main-footer-three__mail {
        padding: 107px 0 200px 30px;
    }
}

@media (max-width: 991px) {
    .main-footer-three__mail {
        border: none;
        padding: 107px 0 100px 0;
    }
}

@media (max-width: 767px) {
    .main-footer-three__mail {
        padding: 47px 0 80px 0;
    }
}

.main-footer-three__mail .mc-form {
    position: relative;
    width: 100%;
}

.main-footer-three__mail .mc-form i {
    width: 18px;
    height: 18px;
    font-size: 18px;
    color: var(--ogoni-white, #ffffff);
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.main-footer-three__mail .mc-form i::after {
    position: absolute;
    right: -1px;
    top: -1px;
    width: 6px;
    height: 6px;
    border: 2px solid var(--ogoni-base, #C2EA1D);
    border-radius: 50%;
    content: "";
}

.main-footer-three__mail .mc-form input[type=text] {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    outline: none;
    height: 60px;
    background-color: transparent;
    color: var(--ogoni-text, #666666);
    font-size: 16px;
    text-align: right;
    font-weight: 400;
    padding-left: 40px;
    transition: all 500ms ease;
    border-radius: 0;
}

.main-footer-four {
    position: relative;
    background-color: var(--ogoni-black, #131313);
    padding-top: 296px;
    padding-bottom: 52px;
}

@media (max-width: 767px) {
    .main-footer-four {
        padding-top: 150px;
    }
}

.main-footer-four .container {
    position: relative;
}

.main-footer-four__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-footer-four__bg::after {
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(90deg, rgba(19, 19, 19, 0.5) 0%, rgb(19, 19, 19) 100%);
    width: 100%;
    height: 100%;
    content: "";
}

.main-footer-four__shape {
    position: absolute;
    right: 3%;
    bottom: 32%;
    width: 199px;
    height: 233px;
    animation: startIconOne 1.5s infinite alternate;
}

@media (max-width: 1300px) {
    .main-footer-four__shape {
        display: none;
    }
}

.main-footer-four__left-bg {
    position: absolute;
    left: 0;
    top: 180px;
    width: 50.6%;
    height: 100%;
    background-color: #131313a3;
}

@media (max-width: 991px) {
    .main-footer-four__left-bg {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .main-footer-four__left-bg {
        top: 80px;
    }
}

.main-footer-four__logo {
    position: relative;
}

.main-footer-four__title {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 32px;
    color: var(--ogoni-white, #ffffff);
    line-height: 42px;
    font-weight: 700;
    margin: 48px 0 20px;
}

@media (max-width: 767px) {
    .main-footer-four__title {
        font-size: 25px;
        line-height: 35px;
    }
}

.main-footer-four__title a {
    font-weight: 400;
    color: inherit;
    display: inline-block;
    font-style: italic;
    position: relative;
}

.main-footer-four__title a::after {
    position: absolute;
    left: 0;
    bottom: 3px;
    height: 3px;
    width: 0;
    content: "";
    background-color: var(--ogoni-base, #C2EA1D);
    transition: all 400ms ease;
}

.main-footer-four__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.main-footer-four__title a:hover::after {
    width: 100%;
}

.main-footer-four__title img {
    width: 30px;
    height: 30px;
    animation: startIconOne 1s infinite alternate;
    flex-shrink: 0;
    margin: 10px 0 0 20px;
}

.main-footer-four__mail {
    position: relative;
    padding: 0 0 0 110px;
}

@media (max-width: 1399px) {
    .main-footer-four__mail {
        padding-left: 70px;
    }
}

@media (max-width: 1199px) {
    .main-footer-four__mail {
        padding-left: 30px;
    }
}

@media (max-width: 991px) {
    .main-footer-four__mail {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .main-footer-four__mail {
        padding: 30px 0;
    }
}

.main-footer-four__mail .mc-form {
    position: relative;
    width: 100%;
}

.main-footer-four__mail .mc-form i {
    width: 18px;
    height: 18px;
    font-size: 18px;
    color: var(--ogoni-white, #ffffff);
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.main-footer-four__mail .mc-form i::after {
    position: absolute;
    right: -1px;
    top: -1px;
    width: 6px;
    height: 6px;
    border: 2px solid var(--ogoni-base, #C2EA1D);
    border-radius: 50%;
    content: "";
}

.main-footer-four__mail .mc-form input[type=text] {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    outline: none;
    height: 60px;
    background-color: transparent;
    color: var(--ogoni-text, #666666);
    font-size: 16px;
    text-align: right;
    font-weight: 400;
    padding-left: 40px;
    transition: all 500ms ease;
    border-radius: 0;
}

.main-footer-four-bottom {
    position: relative;
    background-color: #0C0C0C;
    padding: 27px 0;
}

.main-footer-four-bottom__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .main-footer-four-bottom__wrapper {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }
}

.main-footer-four-bottom__social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 45px;
}

.main-footer-four-bottom__social a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    overflow: hidden;
    color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.4);
    transition: all 500ms ease;
}

.main-footer-four-bottom__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.main-footer-four-bottom__social a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.main-footer-four-bottom__social a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.main-footer-four-bottom__copyright {
    margin: 0;
}

.main-footer-five {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: transparent;
    padding: 37px 100px;
    display: flex;
    align-items: center;
    gap: 200px;
}

@media (max-width: 1499px) {
    .main-footer-five {
        gap: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 1299px) {
    .main-footer-five {
        padding: 37px 80px;
        padding-left: 20px;
    }
}

@media (max-width: 1199px) {
    .main-footer-five {
        padding: 37px 30px;
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .main-footer-five {
        gap: 7px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px 30px;
    }
}

.main-footer-five__copyright {
    margin: 0;
    position: relative;
    z-index: 2;
}

.main-footer-five__social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 33px;
}

@media (max-width: 1499px) {
    .main-footer-five__social {
        gap: 20px;
    }
}

.main-footer-five__social a {
    font-size: 14px;
    line-height: 1;
    color: var(--ogoni-text, #666666);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-footer-five__social a span {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.main-footer-five__social a:hover {
    color: var(--ogoni-black, #131313);
}

.main-footer-five__social a:hover span {
    animation: iconTranslateY 0.4s forwards;
}

.main-footer-six {
    position: relative;
    width: 100%;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 37px 100px;
    display: flex;
    align-items: center;
    gap: 200px;
}

@media (max-width: 1499px) {
    .main-footer-six {
        gap: 20px;
    }
}

@media (max-width: 1299px) {
    .main-footer-six {
        padding: 37px 80px;
    }
}

@media (max-width: 1199px) {
    .main-footer-six {
        padding: 37px 30px;
    }
}

@media (max-width: 767px) {
    .main-footer-six {
        gap: 7px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px 30px;
    }
}

.main-footer-six__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.main-footer-six__copyright {
    margin: 0;
    position: relative;
    z-index: 2;
}

.main-footer-six__social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 33px;
}

@media (max-width: 1499px) {
    .main-footer-six__social {
        gap: 20px;
    }
}

.main-footer-six__social a {
    font-size: 14px;
    line-height: 1;
    color: var(--ogoni-text, #666666);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-footer-six__social a span {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.main-footer-six__social a:hover {
    color: var(--ogoni-black, #131313);
}

.main-footer-six__social a:hover span {
    animation: iconTranslateY 0.4s forwards;
}

.main-footer-eight {
    position: absolute;
    bottom: 55px;
    width: 100%;
    background-color: transparent;
    z-index: 2;
}

@media (max-width: 1500px) {
    .main-footer-eight {
        bottom: 28px;
    }
}

.main-footer-eight__social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 33px;
}

@media (max-width: 1499px) {
    .main-footer-eight__social {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .main-footer-eight__social {
        justify-content: center;
    }
}

.main-footer-eight__social a {
    font-size: 14px;
    line-height: 1;
    color: var(--ogoni-text, #666666);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-footer-eight__social a span {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.main-footer-eight__social a:hover {
    color: var(--ogoni-black, #131313);
}

.main-footer-eight__social a:hover span {
    animation: iconTranslateY 0.4s forwards;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.hero-banner-one {
    position: relative;
    padding: 98px 0 120px;
    border-top: 117px solid var(--ogoni-gray, #f9f9f9);
}

@media (min-width: 1300px) {
    .hero-banner-one {
        border-left: 50px solid var(--ogoni-gray, #f9f9f9);
        border-right: 50px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (min-width: 1400px) {
    .hero-banner-one {
        border-left: 100px solid var(--ogoni-gray, #f9f9f9);
        border-right: 100px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (max-width: 767px) {
    .hero-banner-one {
        padding: 75px 0 90px;
    }
}

.hero-banner-one__shape-one {
    position: absolute;
    left: 7%;
    top: 12%;
    width: 47px;
    height: 47px;
    animation: startIconOne 1s infinite alternate;
    background-size: cover;
}

@media (max-width: 767px) {
    .hero-banner-one__shape-one {
        display: none;
    }
}

.hero-banner-one__shape-two {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 3%;
    width: 100%;
    height: 100%;
    animation: zoomsIn 2s infinite alternate;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: auto;
}

@media (max-width: 767px) {
    .hero-banner-one__shape-two {
        display: none;
    }
}

.hero-banner-one__shape-three {
    position: absolute;
    right: 5%;
    top: 69px;
    width: 322px;
    height: 344px;
    animation: rotated 10s infinite linear;
    background-size: cover;
}

@media (max-width: 767px) {
    .hero-banner-one__shape-three {
        display: none;
    }
}

.hero-banner-one__shape-four {
    position: absolute;
    right: 10%;
    bottom: 70px;
    width: 126px;
    height: 144px;
    animation: rotated 10s infinite linear;
    background-size: cover;
}

@media (max-width: 767px) {
    .hero-banner-one__shape-four {
        display: none;
    }
}

.hero-banner-one__content {
    position: relative;
    text-align: center;
}

.hero-banner-one__title {
    font-size: 120px;
    font-weight: 800;
    line-height: 130px;
    text-transform: capitalize;
    margin: 0 0 28px;
}

@media (max-width: 1199px) {
    .hero-banner-one__title {
        font-size: 90px;
        line-height: 100px;
    }
}

@media (max-width: 767px) {
    .hero-banner-one__title {
        font-size: 42px;
        line-height: 52px;
    }
}

.hero-banner-one__title span {
    font-weight: 400;
    font-style: italic;
}

.hero-banner-one__text {
    max-width: 640px;
    margin: 0 auto 43px;
    text-align: left;
    padding-right: 45px;
}

@media (max-width: 767px) {
    .hero-banner-one__text {
        padding-right: 0;
    }
}

.hero-banner-one__bottom {
    position: relative;
    display: flex;
    align-items: flex-start;
    max-width: 640px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .hero-banner-one__bottom {
        flex-wrap: wrap;
    }
}

.hero-banner-one__bottom .video-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--ogoni-black, #131313);
    border-radius: 50%;
    font-size: 13px;
    color: var(--ogoni-white, #ffffff);
    flex-shrink: 0;
    transform: scale(1);
}

.hero-banner-one__bottom .video-popup:hover {
    color: var(--ogoni-black, #131313);
    background-color: var(--ogoni-base, #C2EA1D);
    color: var(--ogoni-black, #131313);
    transform: scale(1.1);
}

.hero-banner-one__bottom>span {
    width: 120px;
    height: 1px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    margin: 31px 10px 0 30px;
    background: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

@media (max-width: 500px) {
    .hero-banner-one__bottom>span {
        width: 90px;
    }
}

.hero-banner-one__bottom__btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    font-size: 16px;
    text-transform: capitalize;
    color: var(--ogoni-black, #131313);
    font-weight: 700;
    margin: 16px 0 0;
}

.hero-banner-one__bottom__btn span {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-banner-one__bottom__btn:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.hero-banner-one__bottom__btn:hover span {
    animation: iconTranslateY 0.4s forwards;
}

.hero-banner-one__bottom__image {
    position: relative;
    display: inline-block;
    margin-left: auto;
    border-radius: 50%;
    overflow: hidden;
    width: 196px;
    height: 196px;
    animation: vibrant 3s ease 0s infinite;
}

@media (max-width: 767px) {
    .hero-banner-one__bottom__image {
        margin: 20px 0 0;
    }
}

.hero-banner-one__bottom__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner-one__social {
    position: absolute;
    right: 2%;
    bottom: 260px;
    display: flex;
    align-items: center;
    gap: 32px;
    transform: rotate(-90deg);
}

@media (max-width: 991px) {
    .hero-banner-one__social {
        display: none;
    }
}

.hero-banner-one__social a {
    font-size: 16px;
    color: var(--ogoni-text, #666666);
    overflow: hidden;
    display: inline-block;
}

.hero-banner-one__social a span {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-banner-one__social a:hover {
    color: var(--ogoni-black, #131313);
}

.hero-banner-one__social a:hover span {
    animation: iconTranslateY 0.4s forwards;
}

.hero-banner-two {
    position: relative;
    overflow: hidden;
    padding: 165px 0 0;
}

@media (max-width: 1199px) {
    .hero-banner-two {
        padding: 135px 0 0;
    }
}

@media (max-width: 767px) {
    .hero-banner-two {
        padding: 105px 0 0;
    }
}

.hero-banner-two__shape-one {
    position: absolute;
    left: 20%;
    right: 0;
    margin: 0 auto;
    top: 150px;
    width: 60px;
    height: 32px;
    z-index: 1;
    animation: rotated 10s infinite linear;
}

.hero-banner-two__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-banner-two .owl-carousel {
    position: relative;
    max-width: 526px;
}

@media (max-width: 1199px) {
    .hero-banner-two .owl-carousel {
        max-width: 450px;
    }
}

.hero-banner-two .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots {
    position: absolute;
    left: 50px;
    bottom: 50px;
    margin: 0 !important;
    z-index: 2;
}

.hero-banner-two__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 26px 48px 114px;
}

@media (max-width: 1199px) {
    .hero-banner-two__content {
        padding: 26px 32px 114px;
    }
}

.hero-banner-two__content-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--ogoni-white, #ffffff);
    z-index: -1;
    transition: transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translatey(120%);
}

.hero-banner-two__content-bg__star {
    position: absolute;
    width: 45px;
    height: 45px;
    right: 50px;
    top: 24px;
    font-size: 45px;
    color: var(--ogoni-base, #C2EA1D);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-two__content-bg__shape {
    position: absolute;
    right: 24px;
    top: 140px;
    width: 74px;
    height: 60px;
    animation: rotated 10s infinite linear;
}

.hero-banner-two__title {
    font-size: 120px;
    font-weight: 800;
    line-height: 130px;
    text-transform: capitalize;
    margin: 0 0 26px -5px;
    opacity: 0;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scaleY(0);
    transform-origin: 0% 0%;
}

.hero-banner-two__title__wrapper {
    position: relative;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .hero-banner-two__title {
        font-size: 90px;
        line-height: 100px;
    }
}

@media (max-width: 767px) {
    .hero-banner-two__title {
        font-size: 55px;
        line-height: 65px;
        margin-left: 0;
    }
}

.hero-banner-two__title span {
    font-weight: normal;
    font-style: italic;
}

.hero-banner-two__text {
    margin: 0 0 35px;
    opacity: 0;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scaleY(0);
    transform-origin: 0% 0%;
}

.hero-banner-two__text__wrapper {
    position: relative;
    overflow: hidden;
}

.hero-banner-two__bottom {
    position: relative;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scaleY(0);
    transform-origin: 0% 0%;
}

@media (max-width: 767px) {
    .hero-banner-two__bottom {
        flex-wrap: wrap;
    }
}

.hero-banner-two__bottom>span {
    width: 120px;
    height: 1px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    margin: 0 10px 0 0;
    background: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

@media (max-width: 500px) {
    .hero-banner-two__bottom>span {
        width: 90px;
    }
}

.hero-banner-two__bottom__btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    font-size: 16px;
    text-transform: capitalize;
    color: var(--ogoni-black, #131313);
    font-weight: 700;
}

.hero-banner-two__bottom__btn span {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-banner-two__bottom__btn:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.hero-banner-two__bottom__btn:hover span {
    animation: iconTranslateY 0.4s forwards;
}

.hero-banner-two .active .hero-banner-two__content-bg {
    transform: translatey(0);
    transition-delay: 700ms;
}

.hero-banner-two .active .hero-banner-two__title {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 1200ms;
}

.hero-banner-two .active .hero-banner-two__text {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 1500ms;
}

.hero-banner-two .active .hero-banner-two__bottom {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 1800ms;
}

.hero-banner-two__up-text {
    position: absolute;
    right: 10px;
    left: auto;
    bottom: 145px;
    z-index: 1;
    width: 40%;
    text-align: right;
}

.hero-banner-two__up-text svg {
    width: 100%;
    height: 170px;
}

.hero-banner-two__up-text svg text {
    margin: 0;
    line-height: 1;
    font-size: 12vw;
    animation: stroke 5s infinite alternate;
    stroke-width: 1;
    font-weight: 700;
    stroke: var(--ogoni-white, #ffffff);
    text-transform: uppercase;
}

@keyframes stroke {
    0% {
        fill: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0);
        stroke: rgba(var(--ogoni-white-rgb, 255, 255, 255), 1);
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 1;
    }

    70% {
        fill: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0);
        stroke: rgba(var(--ogoni-white-rgb, 255, 255, 255), 1);
    }

    80% {
        fill: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0);
        stroke: rgba(var(--ogoni-white-rgb, 255, 255, 255), 1);
        stroke-width: 1;
    }

    100% {
        fill: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0);
        stroke: rgba(var(--ogoni-white-rgb, 255, 255, 255), 1);
        stroke-dashoffset: -25%;
        stroke-dasharray: 50% 0;
        stroke-width: 0;
    }
}

.hero-banner-three {
    position: relative;
    z-index: 1;
    background-color: var(--ogoni-black, #131313);
}

.hero-banner-three__shape-one {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 220px;
    width: 47px;
    height: 47px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: rotated2 10s infinite linear;
}

@media (max-width: 1199px) {
    .hero-banner-three__shape-one {
        display: none;
    }
}

.hero-banner-three__shape-two {
    position: absolute;
    right: 26%;
    top: 155px;
    width: 322px;
    height: 413px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: shrinkAnim 3s ease 0s infinite;
    opacity: 0.1;
}

@media (max-width: 1199px) {
    .hero-banner-three__shape-two {
        display: none;
    }
}

.hero-banner-three__shape-three {
    position: absolute;
    right: 4%;
    top: 180px;
    width: 322px;
    height: 344px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: startIconOne 1.5s infinite alternate;
}

@media (max-width: 1199px) {
    .hero-banner-three__shape-three {
        display: none;
    }
}

.hero-banner-three .owl-carousel {
    position: relative;
}

.hero-banner-three .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    max-width: 1296px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 165px;
    padding: 0;
    margin: 0 auto;
    margin-top: 0px;
    margin-top: 0px;
    height: 0;
    line-height: 0;
    z-index: 3;
}

@media (max-width: 1399px) {
    .hero-banner-three .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots {
        max-width: 1150px;
    }
}

@media (max-width: 1199px) {
    .hero-banner-three .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots {
        max-width: 100%;
        left: 50px;
    }
}

@media (max-width: 991px) {
    .hero-banner-three .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots {
        bottom: 45px;
    }
}

.hero-banner-three .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots .owl-dot {
    border-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
}

.hero-banner-three .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots .owl-dot::after {
    background-color: var(--ogoni-white, #ffffff);
}

.hero-banner-three .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots .owl-dot:hover,
.hero-banner-three .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots .owl-dot.active {
    border-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 1);
}

.hero-banner-three__item {
    position: relative;
    padding-top: 157px;
    padding-bottom: 224px;
}

@media (max-width: 991px) {
    .hero-banner-three__item {
        padding-bottom: 124px;
    }
}

.hero-banner-three__content {
    position: relative;
    z-index: 2;
    padding: 0;
}

.hero-banner-three__title {
    font-size: 120px;
    font-weight: 800;
    line-height: 130px;
    color: var(--ogoni-white, #ffffff);
    text-transform: capitalize;
    margin: 0 0 26px;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(150px);
    transform-origin: bottom;
    transition: all 1100ms ease;
}

.hero-banner-three__title__wrapper {
    position: relative;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .hero-banner-three__title {
        font-size: 90px;
        line-height: 100px;
    }
}

@media (max-width: 767px) {
    .hero-banner-three__title {
        font-size: 55px;
        line-height: 65px;
    }
}

.hero-banner-three__title span {
    font-weight: normal;
    font-style: italic;
}

.hero-banner-three__text {
    margin: 0 0 44px;
    opacity: 0;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scaleY(0);
    transform-origin: 0% 0%;
}

@media (min-width: 1400px) {
    .hero-banner-three__text {
        max-width: 390px;
    }
}

.hero-banner-three__text__wrapper {
    position: relative;
    overflow: hidden;
}

.hero-banner-three__bottom {
    position: relative;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    transition: all 1100ms ease;
    transform-origin: 0% 0%;
    transform: translateX(200px);
}

@media (max-width: 767px) {
    .hero-banner-three__bottom {
        flex-wrap: wrap;
    }
}

.hero-banner-three__bottom .video-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    border-radius: 50%;
    font-size: 13px;
    color: var(--ogoni-white, #ffffff);
    flex-shrink: 0;
    transform: scale(1);
}

.hero-banner-three__bottom .video-popup:hover {
    background-color: var(--ogoni-base, #C2EA1D);
    color: var(--ogoni-black, #131313);
    transform: scale(1.1);
}

.hero-banner-three__bottom>span {
    width: 120px;
    height: 1px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    margin: 31px 10px 0 30px;
    background: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
}

@media (max-width: 500px) {
    .hero-banner-three__bottom>span {
        width: 90px;
    }
}

.hero-banner-three__bottom__btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    font-size: 16px;
    text-transform: capitalize;
    color: var(--ogoni-white, #ffffff);
    font-weight: 700;
    margin: 16px 0 0;
}

.hero-banner-three__bottom__btn span {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-banner-three__bottom__btn:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.hero-banner-three__bottom__btn:hover span {
    animation: iconTranslateY 0.4s forwards;
}

.hero-banner-three__circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: -105px 60px 0 auto;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 1000ms ease;
}

@media (max-width: 767px) {
    .hero-banner-three__circle {
        display: none;
    }
}

.hero-banner-three__circle__icon {
    width: 30px;
    height: 30px;
    font-size: 24px;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: var(--ogoni-white, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
}

.hero-banner-three__circle__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-banner-three__circle__icon:hover i {
    animation: iconTranslate_Y 0.4s forwards;
}

.hero-banner-three__circle .curved-circle {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 130px !important;
    height: 130px !important;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.hero-banner-three__circle .curved-circle .curved-circle--item {
    width: 130px !important;
    height: 130px !important;
}

.hero-banner-three__circle .curved-circle span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: var(--ogoni-text, #666666);
    letter-spacing: 4.5px;
}

.hero-banner-three .active .hero-banner-three__title {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1200ms;
}

.hero-banner-three .active .hero-banner-three__circle {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1500ms;
}

.hero-banner-three .active .hero-banner-three__text {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 1600ms;
}

.hero-banner-three .active .hero-banner-three__bottom {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1800ms;
}

.hero-banner-three__up-text {
    position: absolute;
    right: 10px;
    left: auto;
    bottom: 145px;
    z-index: 1;
    width: 40%;
    text-align: right;
}

.hero-banner-three__up-text svg {
    width: 100%;
    height: 170px;
}

.hero-banner-three__up-text svg text {
    margin: 0;
    line-height: 1;
    font-size: 12vw;
    animation: stroke 5s infinite alternate;
    stroke-width: 1;
    font-weight: 700;
    stroke: var(--ogoni-white, #ffffff);
    opacity: 0.1;
    text-transform: uppercase;
}

.hero-banner-three__social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
    transform: rotate(-90deg);
}

.hero-banner-three__social__wrapper {
    position: absolute;
    right: 1%;
    top: 44%;
    z-index: 2;
}

@media (max-width: 1399px) {
    .hero-banner-three__social__wrapper {
        right: -30px;
    }
}

@media (max-width: 1300px) {
    .hero-banner-three__social {
        display: none;
    }
}

.hero-banner-three__social a {
    font-size: 16px;
    color: var(--ogoni-text, #666666);
    overflow: hidden;
    display: inline-block;
}

.hero-banner-three__social a span {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-banner-three__social a:hover {
    color: var(--ogoni-white, #ffffff);
}

.hero-banner-three__social a:hover span {
    animation: iconTranslateY 0.4s forwards;
}

.hero-banner-four {
    position: relative;
    z-index: 1;
    background-color: var(--ogoni-gray, #f9f9f9);
}

.hero-banner-four__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.hero-banner-four__shape-one {
    position: absolute;
    left: 40%;
    top: 170px;
    width: 70px;
    height: 70px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: rotated2 10s infinite linear;
}

@media (max-width: 1199px) {
    .hero-banner-four__shape-one {
        display: none;
    }
}

.hero-banner-four__shape-two {
    position: absolute;
    left: 42%;
    top: 635px;
    width: 24px;
    height: 24px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: rotated 10s infinite linear;
}

@media (max-width: 1199px) {
    .hero-banner-four__shape-two {
        display: none;
    }
}

.hero-banner-four__shape-three {
    position: absolute;
    left: 40%;
    bottom: 100px;
    width: 74px;
    height: 60px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: startIconOne 1.5s infinite alternate;
}

@media (max-width: 1199px) {
    .hero-banner-four__shape-three {
        display: none;
    }
}

.hero-banner-four .owl-carousel {
    position: relative;
}

.hero-banner-four .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    max-width: 1296px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5px;
    margin: 0 auto;
    margin-top: 0px;
    margin-top: 0px;
    height: 0;
    line-height: 0;
    z-index: 3;
}

@media (max-width: 1399px) {
    .hero-banner-four .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots {
        max-width: 1150px;
    }
}

@media (max-width: 1199px) {
    .hero-banner-four .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots {
        max-width: 100%;
        left: 50px;
    }
}

.hero-banner-four__item {
    position: relative;
    padding-top: 260px;
    padding-bottom: 150px;
}

@media (max-width: 1199px) {
    .hero-banner-four__item {
        padding-top: 200px;
        padding-bottom: 120px;
    }
}

@media (max-width: 767px) {
    .hero-banner-four__item {
        padding-top: 140px;
        padding-bottom: 100px;
    }
}

.hero-banner-four__bg {
    width: 42%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 100px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transition: all 0.8s;
    transition-delay: 0.3s;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 991px) {
    .hero-banner-four__bg {
        /*display: none;*/
    }
}




.hero-banner-four__content {
    position: relative;
    z-index: 2;
    padding: 0;
}

.hero-banner-four__sub-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 17px;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.hero-banner-four__sub-title img {
    flex-shrink: 0;
    width: 24px !important;
    height: 24px;
    animation: rotated2 10s infinite linear;
}

.hero-banner-four__title {
    font-size: 82px;
    font-weight: 800;
    line-height: 82px;
    color: var(--ogoni-black, #131313);
    /* text-transform: capitalize; */
    margin: 0 0 36px;
    max-width: 550px;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (max-width: 1199px) {
    .hero-banner-four__title {
        font-size: 60px;
        line-height: 80px;
    }
}

@media (max-width: 991px) {
    .hero-banner-four__title {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-banner-four__title {
        font-size: 50px;
        line-height: 60px;
    }
}

.hero-banner-four__title span {
    font-weight: normal;
    font-style: italic;
}

.hero-banner-four__text {
    margin: 0 0 43px;
    max-width: 450px;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (max-width: 991px) {
    .hero-banner-four__text {
        max-width: 100%;
    }
}

.hero-banner-four__btn {
    position: relative;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.hero-banner-four .active .hero-banner-four__bg {
    opacity: 1;
    visibility: visible;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition-delay: 2000ms;
}

.hero-banner-four .active .hero-banner-four__sub-title {
    opacity: 1;
    animation-delay: 1.2s;
    animation-name: rotateInUpLeft;
}

.hero-banner-four .active .hero-banner-four__title {
    opacity: 1;
    animation-delay: 1.4s;
    animation-name: rotateInUpRight;
}

.hero-banner-four .active .hero-banner-four__text {
    opacity: 1;
    animation-delay: 1.6s;
    animation-name: rotateInUpLeft;
}

.hero-banner-four .active .hero-banner-four__btn {
    opacity: 1;
    animation-delay: 1.8s;
    animation-name: rotateInUpRight;
}

.hero-banner-five {
    position: relative;
    z-index: 1;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 117px 0 0;
}

.hero-banner-five__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.hero-banner-five .owl-carousel {
    position: relative;
}

.hero-banner-five .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    max-width: 1296px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 140px;
    padding: 5px;
    margin: 0 auto;
    margin-top: 0px;
    margin-top: 0px;
    height: 0;
    line-height: 0;
    z-index: 3;
}

@media (max-width: 1399px) {
    .hero-banner-five .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots {
        max-width: 1150px;
    }
}

@media (max-width: 1199px) {
    .hero-banner-five .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots {
        max-width: 100%;
        left: 50px;
    }
}

.hero-banner-five .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots .owl-dot {
    border-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.2);
}

.hero-banner-five .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots .owl-dot:hover,
.hero-banner-five .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots .owl-dot.active {
    border-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 1);
}

.hero-banner-five .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots .owl-dot:hover::after,
.hero-banner-five .owl-carousel.ogoni-owl__carousel--basic-nav .owl-dots .owl-dot.active::after {
    background-color: var(--ogoni-white, #ffffff);
}

.hero-banner-five__item {
    position: relative;
    padding-top: 272px;
    padding-bottom: 265px;
    background-color: #050304;
}

@media (max-width: 1199px) {
    .hero-banner-five__item {
        padding-top: 180px;
        padding-bottom: 240px;
    }
}

@media (max-width: 767px) {
    .hero-banner-five__item {
        padding-top: 110px;
        padding-bottom: 200px;
    }
}

.hero-banner-five__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: all 0.9s;
    transition-delay: 0.4s;
    opacity: 0;
    visibility: hidden;
}

.hero-banner-five__content {
    position: relative;
    z-index: 2;
    padding: 0;
}

.hero-banner-five__sub-title {
    position: relative;
    color: var(--ogoni-white, #ffffff);
    text-transform: capitalize;
    display: inline-block;
    margin: 0 0 8px;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    animation-duration: 1s;
    animation-fill-mode: both;
    transition: all 0.9s;
    transition-delay: 1.3s;
    opacity: 0;
    visibility: hidden;
}

.hero-banner-five__sub-title img {
    flex-shrink: 0;
    width: 100% !important;
    height: 7px;
    position: absolute;
    left: 0;
    bottom: -3px;
    animation: shrinkAnim2 10s ease 0s infinite;
}

.hero-banner-five__title {
    font-size: 120px;
    font-weight: 800;
    line-height: 130px;
    color: var(--ogoni-white, #ffffff);
    text-transform: capitalize;
    margin: 0 0 19px;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    animation-duration: 1s;
    animation-fill-mode: both;
    transition: all 0.9s;
    transition-delay: 1.5s;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 991px) {
    .hero-banner-five__title {
        font-size: 90px;
        line-height: 100px;
    }
}

@media (max-width: 767px) {
    .hero-banner-five__title {
        font-size: 50px;
        line-height: 60px;
    }
}

.hero-banner-five__title span {
    font-weight: normal;
    font-style: italic;
}

.hero-banner-five__text {
    margin: 0 0 37px;
    display: flex;
    align-items: center;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    font-size: 32px;
    font-weight: 800;
    color: var(--ogoni-white, #ffffff);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    animation-duration: 1s;
    animation-fill-mode: both;
    transition: all 0.9s;
    transition-delay: 1.7s;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 767px) {
    .hero-banner-five__text {
        font-size: 24px;
    }
}

.hero-banner-five__text span {
    font-weight: normal;
    font-style: italic;
}

.hero-banner-five__text img {
    flex-shrink: 0;
    margin-right: 17px;
    width: 30px !important;
    height: 30px;
    animation: rotated2 10s infinite linear;
}

.hero-banner-five__btn {
    position: relative;
    display: flex;
    align-items: flex-start;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    animation-duration: 1s;
    animation-fill-mode: both;
    transition: all 0.9s;
    transition-delay: 1.7s;
    opacity: 0;
    visibility: hidden;
}

.hero-banner-five .active .hero-banner-five__bg {
    opacity: 1;
    visibility: visible;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    animation-delay: 1000ms;
}

.hero-banner-five .active .hero-banner-five__sub-title {
    opacity: 1;
    visibility: visible;
    animation-delay: 1.3s;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-banner-five .active .hero-banner-five__title {
    opacity: 1;
    visibility: visible;
    animation-delay: 1.5s;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-banner-five .active .hero-banner-five__text {
    opacity: 1;
    visibility: visible;
    animation-delay: 1.7s;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-banner-five .active .hero-banner-five__btn {
    opacity: 1;
    visibility: visible;
    animation-delay: 1.9s;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0 0;
}

@media (max-width: 767px) {
    .about-one {
        padding: 80px 0 0;
    }
}

.about-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.about-one__content {
    position: relative;
    padding: 0;
}

.about-one__content__font {
    position: relative;
}

.about-one__content__font img {
    max-width: 100%;
    height: auto;
}

.about-one__content__list {
    margin: -8px 0 0;
    padding: 0;
    list-style: none;
}

.about-one__content__list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--ogoni-text, #666666);
    margin: 0 0 20px;
}

.about-one__content__list li:last-child {
    margin-bottom: 0;
}

.about-one__content__list li span {
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    min-width: 52%;
}

@media (max-width: 1199px) {
    .about-one__content__list li span {
        min-width: 42%;
    }
}

.about-one__sub-title {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    text-transform: uppercase;
    letter-spacing: 30%;
    margin: 0 0 15px;
}

.about-one__sub-title img {
    flex-shrink: 0;
    height: 18px;
}

.about-one__title {
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    margin: 0 -10px 32px 0;
}

.about-one__title span {
    font-weight: 400;
    font-style: italic;
}

@media (max-width: 767px) {
    .about-one__title {
        font-size: 30px;
        line-height: 38px;
    }
}

.about-one__text {
    margin: 0 0 16px;
}

.about-one__text--last {
    margin-bottom: 43px;
}

.about-one__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 27px;
    margin: 0 0 23px;
}

@media (max-width: 991px) {
    .about-one__item {
        margin-top: 40px;
        justify-content: flex-start;
    }
}

.about-one__item__count {
    margin: 0;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.3s ease;
}

.about-one__item__text {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-align: left;
    margin: 0 0 0;
}

@media (max-width: 767px) {
    .about-one__item__text br {
        display: block;
    }
}

.about-one__image {
    position: relative;
}

.about-one__image img {
    max-width: 58%;
    height: auto;
}



/* Tablet */
@media (max-width: 992px) {
    .about-one__image img {
        max-width: 80%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-one__image img {
        max-width: 100%;
    }
}

@media (max-width: 1199px) {
    .about-one .text-end {
        text-align: left !important;
    }
}

.about-one--about {
    padding: 120px 0;
}

@media (max-width: 767px) {
    .about-one--about {
        padding: 80px 0;
    }
}

.about-two {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0 0;
    text-align: center;
}

@media (max-width: 767px) {
    .about-two {
        padding: 80px 0 0;
    }
}

.about-two__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.about-two .container {
    max-width: 885px;
}

.about-two__sub-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    text-transform: uppercase;
    letter-spacing: 30%;
    margin: 0 auto 5px;
}

.about-two__sub-title img {
    flex-shrink: 0;
    height: 18px;
}

.about-two__title {
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    margin: 0 -10px 32px 0;
}

.about-two__title span {
    font-weight: 400;
    font-style: italic;
}

@media (max-width: 767px) {
    .about-two__title {
        font-size: 30px;
        line-height: 38px;
    }
}

.about-two__text {
    margin: 0 0 0;
}

.about-two__funfact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 44px 0 110px;
}

@media (max-width: 767px) {
    .about-two__funfact {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
        max-width: 251px;
        margin: 40px auto 60px;
    }

    .about-two__funfact .funfact-one__item__text br {
        display: block;
    }
}

.about-two__funfact .funfact-one__item {
    text-align: left;
}

.about-two__circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto;
}

.about-two__circle__icon {
    width: 30px;
    height: 30px;
    font-size: 24px;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: var(--ogoni-black, #131313);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
}

.about-two__circle__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.about-two__circle__icon:hover i {
    animation: iconTranslate_Y 0.4s forwards;
}

.about-two__circle .curved-circle {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 130px !important;
    height: 130px !important;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.about-two__circle .curved-circle .curved-circle--item {
    width: 130px !important;
    height: 130px !important;
}

.about-two__circle .curved-circle span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: var(--ogoni-black, #131313);
    letter-spacing: 4.5px;
}

.about-three {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 0 0;
    margin-top: -120px;
}

.about-three__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.about-three__shape {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 70px;
    margin-top: 150px;
}

.about-three__shape__one {
    position: relative;
    margin-top: 100px;
}

.about-three__shape__one img {
    animation: zoomsIn 2s infinite alternate;
    opacity: 0.1;
}

.about-three__shape__two {
    position: relative;
    opacity: 0.05;
}

.about-three__shape__two img {
    animation: rotated 10s infinite linear;
}

.about-three__right {
    position: relative;
    z-index: 3;
}

.about-three__right__text {
    margin: 0 0 43px;
}

.about-three__image {
    position: relative;
    height: 600px;
    overflow: hidden;
    transition: all 0.6s ease-out;
}

@media (max-width: 767px) {
    .about-three__image {
        height: 400px;
    }
}

.custom-container {
    display: flex;
    align-items: center;
    /* Yeh vertical alignment center rakhta hai */
    justify-content: center;
    gap: 0;
    max-width: 1300px;
    margin: 0 auto;
}

/* LEFT SIDE TEXT */
.text-left-side {
    flex: 1;
    /* text-align: right; */
    /* padding-right: px; */
    z-index: 1;
    /* --- YAHAN SE NEECHE KAREIN --- */
    margin-top: 200px;
}

.image-middle {
    flex: 0 0 auto;
    z-index: 2;
}

/* RIGHT SIDE TEXT */
.text-right-side {
    flex: 1;
    /* text-align: left; */
    margin-left: -60px;
    /* Image ke kareeb lane ke liye */
    z-index: 1;
    /* --- YAHAN SE OOPAR KAREIN --- */
    margin-top: -200px;
}

@media (max-width: 768px) {
    .custom-container {
        flex-direction: column;
        text-align: center !important;
    }

    .text-left-side,
    .text-right-side {
        text-align: center !important;
        margin-top: 0 !important;
        /* Mobile par alignment normal ho jayegi */
        margin-left: 0 !important;
        padding: 20px;
    }
}



.main-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Default center alignment */
    gap: 0px;
    padding: 80px 1%;
    width: 100%;
}

.flex-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Left text ko bottom mein karne ke liye */
.align-bottom {
    align-self: flex-end;
    padding-bottom: 50px;
    /* Thoda gap niche se */
}

/* Right text ko top mein karne ke liye */
.align-top {
    align-self: flex-start;
    padding-top: 50px;
    /* Thoda gap upar se */
}

.image-column {
    text-align: center;
    align-self: center;
    /* Image hamesha center mein rahegi */
}

.image-column img {
    max-width: 100%;
    height: 548px;
    /* Aapki original height */
    object-fit: contain;
}

.content-wrapper p {
    line-height: 1.6;
    font-size: 16px;
    text-align: justify;
}

/* Image aur Button ko side-by-side karne ke liye wrapper */
.image-with-btn-wrapper {
    /* display: flex; */
    align-items: center;
    /* Vertically center */
    justify-content: center;
    position: relative;
    gap: 20px;
    /* Image aur button ke beech ka gap */
}

.center-btn-wrapper {
    display: flex;
    justify-content: center;
    /* Horizontally center karne ke liye */
    align-items: center;
    /* Vertically center karne ke liye */
    width: 100%;
    /* Puri width cover karne ke liye */
    padding: 40px 0;
    /* Upar niche thoda fasla */
    text-align: center;
}

.side-button-box {
    display: inline-block;
    /* Taake button apni hi jagah le */
}

/* Button ki alignment fix karne ke liye */
.side-button-box {
    flex-shrink: 0;
    /* Button ko chota hone se rokega */
    z-index: 10;
}

/* Mobile par layout fix karne ke liye */
@media (max-width: 1199px) {
    .image-with-btn-wrapper {
        flex-direction: column;
        /* Tablet/Mobile par button image ke niche aa jayega */
    }

    .side-button-box {
        margin-top: 20px;
    }
}

.main-flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 5%;
}

.flex-column {
    flex: 1;
}

.align-bottom {
    align-self: flex-end;
}

.align-top {
    align-self: flex-start;
}

/* --- Mobile Responsive --- */
@media (max-width: 991px) {
    .main-flex-container {
        flex-direction: column;
        text-align: center;
    }

    .align-bottom,
    .align-top {
        align-self: center;
        /* Mobile par sab wapis center ho jayenge */
        padding: 0;
    }

    .image-column img {
        height: auto;
        max-height: 400px;
    }
}

/* Container ko screen ke center mein lane ke liye */
.main-flex-container {
    display: flex;
    justify-content: center;
    /* Horizontal center */
    align-items: center;
    /* Vertical center */
    gap: 0px;
    /* Elements ke beech ka fasla */
    padding: 9px 1%;
    width: 100%;
    min-height: 600px;
    /* Section ki height */
}

/* Har column ka content center karne ke liye */
.flex-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Content ko horizontally center karega */
    text-align: center;
    /* Text ko center karega */
}

/* Image styling */
.image-column img {
    max-width: 100%;
    height: auto;
    max-height: 548px;
    /* Aapki original height */
    display: block;
    margin: 0 auto;
}

/* Responsive: Mobile/Tablet ke liye */
@media (max-width: 1024px) {
    .main-flex-container {
        flex-direction: column;
        /* Sab ek ke niche ek aa jayenge */
        padding: 50px 20px;
        gap: 50px;
    }

    .flex-column {
        width: 100%;
    }

    /* Image ko beech mein hi rakhne ke liye sequence fix */
    .image-column {
        order: 2;
    }
}

.about-three__image img {
    width: 667px;
    height: 603px;
    transition: all 0.6s ease-out;
    object-fit: cover;
    object-position: center;
}

.about-three__image img {
    width: 100%;
    max-width: 608px;
    height: auto;
    transition: all 0.6s ease-out;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Tablet */
@media (max-width: 992px) {
    .about-three__image img {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-three__image img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 992px) {
    .image-3 imgx {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .image-3 img {
        width: 100%;
        height: auto;
    }
}

.portfolio-two__item__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 10px;
}

/* .portfolio-two__item__content p,
.portfolio-two__item__content h3 {
    margin: 0;
    margin-left: -47px;
    margin-right: 66px;
} */

/* Responsive */
@media (max-width: 576px) {
    .portfolio-two__item__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .right-text {
        align-self: flex-end;
    }
}


.about-three__image .video-popup {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: all 500ms ease;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
}

.about-three__image .video-popup i {
    background-color: var(--ogoni-white, #ffffff);
    border-radius: 50%;
    z-index: 2;
    width: 140px;
    height: 140px;
    transition: all 500ms ease;
    font-size: 24px;
    color: var(--ogoni-black, #131313);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-three__image .video-popup .ripple {
    content: "";
    border: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.5);
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: calc(100% + 25px);
    height: calc(100% + 25px);
    border-radius: 50%;
    animation: videoZoom 3s linear infinite;
    animation-delay: 0s;
    animation-delay: 0.55s;
}

.about-three__image .video-popup .ripple::after {
    content: "";
    border: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.5);
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    border-radius: 50%;
    animation: videoZoom 1.5s linear infinite;
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.about-three__image .video-popup:hover i {
    color: var(--ogoni-black, #131313);
    background-color: var(--ogoni-base, #C2EA1D);
}

.about-three__funfact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 120px 0 42px;
}

@media (max-width: 767px) {
    .about-three__funfact {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
        max-width: 251px;
        margin: 40px auto 30px;
    }

    .about-three__funfact .funfact-one__item__text br {
        display: block;
    }
}

.about-three__funfact .funfact-one__item {
    text-align: left;
}

.about-three--inner {
    position: relative;
    margin: 0;
}

.about-three--inner .about-three__image {
    display: inline-block;
}

.about-three--service {
    position: relative;
    margin: 0;
    padding-top: 10px;
}

.about-three--service .about-three__image {
    display: inline-block;
    height: 700px;
}

@media (max-width: 767px) {
    .about-three--service .about-three__image {
        height: 400px;
    }
}

.about-four {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 0 0 120px;
}

@media (max-width: 767px) {
    .about-four {
        padding: 0 0 80px;
    }
}

.about-four__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.about-four__shape {
    position: absolute;
    height: 52px;
    width: 44px;
    right: 10%;
    bottom: 150px;
    animation: rotated 10s infinite linear;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (max-width: 1399px) {
    .about-four__shape {
        display: none;
    }
}

.about-four__image {
    position: relative;
}

@media (max-width: 991px) {
    .about-four__image {
        margin-bottom: 40px;
    }
}

.about-four__image img {
    max-width: 100%;
    height: auto;
}

.about-four__content {
    position: relative;
    z-index: 3;
}

.about-four__sub-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    text-transform: uppercase;
    letter-spacing: 30%;
    margin: 0 auto 5px;
}

.about-four__sub-title img {
    flex-shrink: 0;
    height: 18px;
}

.about-four__title {
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    margin: 0 0 14px;
}

.about-four__title span {
    font-weight: 400;
    font-style: italic;
}

@media (max-width: 767px) {
    .about-four__title {
        font-size: 30px;
        line-height: 38px;
    }
}

.about-four__text {
    margin: 0 0 26px;
}

.about-four__box {
    position: relative;
    padding: 0;
    counter-increment: count;
    max-width: 255px;
}

.about-four__box__icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 50px;
    color: var(--ogoni-black, #131313);
}

.about-four__box:hover .about-four__box__icon {
    animation-name: wobbleTop;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

.about-four__box__title {
    font-size: 18px;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 700;
    margin: 21px 0 24px;
}

.about-four__box__number {
    margin: 0;
    background-color: var(--ogoni-white, #ffffff);
    display: inline-block;
    text-transform: lowercase;
    font-size: 21px;
    line-height: 24px;
    padding: 0 9.5px;
}

.about-four__box__number::after {
    content: counters(count, ".");
    position: relative;
    display: none;
    margin-left: 4px;
}

.about-four__box__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0;
    bottom: 0;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-four__box:hover .about-four__box__star {
    color: var(--ogoni-base, #C2EA1D);
}

.about-four--about {
    padding: 120px 0 0;
}

@media (max-width: 767px) {
    .about-four--about {
        padding: 80px 0 0;
    }
}

.about-banner {
    position: relative;
    z-index: 2;
    padding: 115px 0 0;
}

.about-banner__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
    z-index: -1;
}

.about-banner img {
    width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-banner {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 205px 0 112px;
}

@media (max-width: 767px) {
    .contact-banner {
        padding: 140px 0 80px;
    }
}

.contact-banner__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.contact-banner__content {
    position: relative;
}

.contact-banner__sub-title {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 0 18px;
}

.contact-banner__sub-title i {
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: var(--ogoni-base, #C2EA1D);
    animation: rotated 10s infinite linear;
    display: inline-block;
    position: relative;
    top: 4px;
    margin-right: 9px;
}

.contact-banner__title {
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    margin: 0 0 33px;
}

@media (max-width: 767px) {
    .contact-banner__title {
        font-size: 40px;
        line-height: 52px;
    }
}

.contact-banner__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-banner__list li {
    display: flex;
    align-items: center;
    gap: 19px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    margin: 16px 0 0;
}

.contact-banner__list li a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.contact-banner__list li a:hover {
    background-size: 100% 1px;
}

.contact-banner__list li a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.contact-banner__social {
    position: absolute;
    right: 0;
    top: 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 991px) {
    .contact-banner__social {
        position: relative;
        flex-direction: row;
        margin: 40px 0 0;
    }
}

.contact-banner__social a {
    width: 50px;
    height: 50px;
    font-size: 16px;
    color: var(--ogoni-black, #131313);
    background-color: var(--ogoni-white, #ffffff);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-banner__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.contact-banner__social a:hover {
    color: var(--ogoni-white, #ffffff);
    background-color: var(--ogoni-black, #131313);
}

.contact-banner__social a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.contact-one {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .contact-one {
        padding: 80px 0;
    }
}

.contact-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.contact-one .container {
    max-width: 666px;
}

.contact-one__title {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px;
    margin: 0 0 40px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-one {
    position: relative;
    padding: 145px 0 120px;
}

@media (min-width: 1300px) {
    .testimonials-one {
        border-left: 50px solid var(--ogoni-gray, #f9f9f9);
        border-right: 50px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (min-width: 1400px) {
    .testimonials-one {
        border-left: 100px solid var(--ogoni-gray, #f9f9f9);
        border-right: 100px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (max-width: 767px) {
    .testimonials-one {
        padding: 80px 0;
    }
}

.testimonials-one__image {
    position: relative;
    text-align: center;
    transform: rotate(-10deg);
}

@media (max-width: 1199px) {
    .testimonials-one__image {
        text-align: left;
    }
}

@media (max-width: 991px) {
    .testimonials-one__image {
        margin-bottom: 70px;
    }
}

.testimonials-one__image__item {
    position: relative;
    display: inline-block;
    text-align: center;
    border: 7px solid var(--ogoni-gray, #f9f9f9);
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@media (max-width: 767px) {
    .testimonials-one__image__item {
        margin-right: 20px;
    }
}

.testimonials-one__image__item img {
    max-width: 100%;
    height: auto;
}

.testimonials-one .slick-active .testimonials-one__image__item {
    animation-delay: 0.4s;
    animation-name: fadeInUp;
}

.testimonials-one__carousel {
    position: relative;
    padding-left: 86px;
}

@media (max-width: 1199px) {
    .testimonials-one__carousel {
        padding-left: 0;
    }
}

.testimonials-one__item {
    position: relative;
}

.testimonials-one__item__meta {
    position: relative;
    min-height: 65px;
    padding: 0 0 0 81px;
    margin-bottom: 9px;
}

.testimonials-one__item__quote {
    width: 54px;
    height: 52px;
    position: absolute;
    left: 0;
    top: 0;
}

.testimonials-one__item__designation {
    line-height: 1;
    display: block;
    margin-bottom: 14px;
}

.testimonials-one__item__name {
    margin: 0;
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.testimonials-one__item__content {
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    color: var(--ogoni-black, #131313);
    border-bottom: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    margin-bottom: 25px;
    padding-bottom: 42px;
}

.testimonials-one__item__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

@media (max-width: 575px) {
    .testimonials-one__item__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.testimonials-one__item__rating {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.testimonials-one__item__rating i {
    width: 15px;
    height: 15px;
    background-color: var(--ogoni-black, #131313);
    color: var(--ogoni-white, #ffffff);
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    margin-right: 3px;
    display: inline-block;
}

.testimonials-one__item__rating__text {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 0 16px;
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .testimonials-one__item__rating__text {
        font-size: 18px;
        margin: 0 0 0 10px;
    }
}

.testimonials-one__item__average {
    margin: 0;
}

.testimonials-one__item__average span {
    color: var(--ogoni-black, #131313);
    display: inline-block;
}

.testimonials-one .slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 1199px) {
    .testimonials-one .slick-dots {
        left: -45px;
    }
}

@media (max-width: 991px) {
    .testimonials-one .slick-dots {
        left: 0;
        position: relative;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        margin: 40px 0 0;
    }
}

.testimonials-one .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    transition: all 500ms ease;
    position: relative;
    cursor: pointer;
}

.testimonials-one .slick-dots li::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 2px;
    height: 2px;
    content: "";
    background-color: var(--ogoni-black, #131313);
    transform: scale(0);
    transition: all 500ms ease;
    border-radius: 50%;
}

.testimonials-one .slick-dots li:hover,
.testimonials-one .slick-dots li.slick-active {
    border-color: var(--ogoni-black, #131313);
}

.testimonials-one .slick-dots li:hover::after,
.testimonials-one .slick-dots li.slick-active::after {
    transform: scale(1);
}

.testimonials-one .slick-dots li button {
    display: none;
}

.testimonials-two {
    position: relative;
    padding: 120px 0;
}

@media (min-width: 1300px) {
    .testimonials-two {
        border-left: 50px solid var(--ogoni-gray, #f9f9f9);
        border-right: 50px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (min-width: 1400px) {
    .testimonials-two {
        border-left: 100px solid var(--ogoni-gray, #f9f9f9);
        border-right: 100px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (max-width: 767px) {
    .testimonials-two {
        padding: 80px 0;
    }
}

.testimonials-two__item {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-color: var(--ogoni-white, #ffffff);
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    padding: 47px 29px 42px;
    transition: all 0.5s linear;
}

.testimonials-two__item::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    transition: all 0.5s linear;
    z-index: 2;
}

.testimonials-two__item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    transition: all 0.5s linear;
    z-index: 2;
}

.testimonials-two__item:hover {
    border-color: transparent;
}

.testimonials-two__item:hover::before,
.testimonials-two__item:hover::after {
    border-color: var(--ogoni-base, #C2EA1D);
    width: 100%;
    height: 100%;
}

.testimonials-two__item__meta {
    margin-bottom: 21px;
}

.testimonials-two__item__image {
    width: 70px;
    height: 70px;
    position: absolute;
    border-radius: 50%;
    right: 48px;
    top: 28px;
    overflow: hidden;
}

.testimonials-two__item__designation {
    line-height: 1;
    font-size: 14px;
    display: block;
    margin-bottom: 14px;
}

.testimonials-two__item__name {
    margin: 0;
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.testimonials-two__item__content {
    border-bottom: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    margin-bottom: 25px;
    padding-bottom: 24px;
}

.testimonials-two__item__rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 7px;
}

.testimonials-two__item__rating i {
    width: 15px;
    height: 15px;
    background-color: var(--ogoni-black, #131313);
    color: var(--ogoni-white, #ffffff);
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    margin-right: 3px;
    display: inline-block;
}

.testimonials-two__item__rating__text {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 0 16px;
    text-transform: capitalize;
}

.testimonials-two__item__average {
    margin: 0;
}

.testimonials-two__item__average span {
    color: var(--ogoni-black, #131313);
    display: inline-block;
}

.testimonials-two--home-shop {
    border: none;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding-bottom: 25px;
}

.testimonials-two--home-shop__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.testimonials-two--home-shop__title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 30px;
    padding: 0 0 25px;
    border-bottom: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.testimonials-two--home-shop__title span {
    font-weight: normal;
    font-style: italic;
}

.testimonials-two--home-shop .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    top: -76px;
    margin: 0;
}

.testimonials-three {
    position: relative;
    background-color: var(--ogoni-black, #131313);
    overflow: hidden;
}

@media (min-width: 1400px) {
    .testimonials-three {
        border-left: 100px solid var(--ogoni-gray, #f9f9f9);
        border-right: 100px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (max-width: 767px) {
    .testimonials-three {
        padding: 0 0;
    }
}

.testimonials-three .container-fluid,
.testimonials-three .container {
    padding-left: 0;
    padding-right: 0;
}

.testimonials-three__shape-one {
    position: absolute;
    right: 55px;
    top: 50px;
    width: 60px;
    height: 200px;
    animation: shrinkAnim 3s ease 0s infinite;
    display: none;
}

@media (min-width: 1400px) {
    .testimonials-three__shape-one {
        display: block;
    }
}

.testimonials-three__shape-two {
    position: absolute;
    right: 55px;
    bottom: 110px;
    width: 96px;
    height: 91px;
    display: none;
}

@media (min-width: 1400px) {
    .testimonials-three__shape-two {
        display: block;
    }
}

.testimonials-three__image {
    position: relative;
    height: 806px;
    overflow: hidden;
    transition: all 0.6s ease-out;
}

@media (max-width: 767px) {
    .testimonials-three__image {
        height: 500px;
    }
}

.testimonials-three__image img {
    width: 100%;
    height: 100%;
    transition: all 0.6s ease-out;
    object-fit: cover;
    object-position: center;
}

.testimonials-three__item {
    position: relative;
    max-width: 550px;
}

.testimonials-three__item__image {
    position: relative;
    z-index: 1;
    width: 220px;
    height: 220px;
    margin: 0 0 47px;
}

.testimonials-three__item__image img {
    width: 100%;
    height: 100%;
}

.testimonials-three__item__image::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    z-index: -1;
    transform: rotate(-10deg);
}

.testimonials-three__item__designation {
    display: block;
    margin: 0 0 14px;
    line-height: 1;
}

.testimonials-three__item__name {
    margin: 0;
    text-transform: capitalize;
    color: var(--ogoni-white, #ffffff);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 19px;
}

.testimonials-three__item__content {
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    color: var(--ogoni-text, #666666);
    border-bottom: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    margin-bottom: 26px;
    padding-bottom: 42px;
}

.testimonials-three__item__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

@media (max-width: 575px) {
    .testimonials-three__item__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.testimonials-three__item__rating {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.testimonials-three__item__rating i {
    width: 15px;
    height: 15px;
    background-color: var(--ogoni-white, #ffffff);
    color: var(--ogoni-black, #131313);
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    margin-right: 3px;
    display: inline-block;
}

.testimonials-three__item__rating__text {
    font-size: 20px;
    font-weight: 700;
    color: var(--ogoni-white, #ffffff);
    margin: 0 0 0 16px;
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .testimonials-three__item__rating__text {
        font-size: 18px;
        margin: 0 0 0 10px;
    }
}

.testimonials-three__item__average {
    margin: 0;
}

.testimonials-three__item__average span {
    color: var(--ogoni-white, #ffffff);
    display: inline-block;
}

.testimonials-three__wrapper {
    position: relative;
    max-width: 100%;
}

@media (min-width: 1400px) {
    .testimonials-three__wrapper {
        padding-left: 86px;
    }
}

@media (max-width: 1199px) {
    .testimonials-three__wrapper {
        padding-right: 15px;
    }
}

@media (max-width: 991px) {
    .testimonials-three__wrapper {
        padding: 110px 25px;
    }
}

@media (max-width: 767px) {
    .testimonials-three__wrapper {
        padding: 80px 20px;
    }
}

.testimonials-three__wrapper__star {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 400px;
    width: 100%;
    text-align: right;
}

@media (min-width: 1400px) {
    .testimonials-three__wrapper__star {
        max-width: 490px;
    }
}

@media (max-width: 767px) {
    .testimonials-three__wrapper__star {
        display: none;
    }
}

.testimonials-three__wrapper__star img {
    width: 40px;
    height: 40px;
    animation: rotated 10s infinite linear;
    margin: 90px 65px 0 0;
}

.testimonials-three__wrapper__star__text {
    position: absolute;
    right: 0;
    top: 0;
    width: 111px;
    height: 222px;
}

.testimonials-three .ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots {
    margin: auto;
    position: absolute;
    right: 45px;
    top: 0;
    bottom: 0;
    flex-direction: column;
}

.testimonials-three .ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
    border-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
}

.testimonials-three .ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
    background-color: var(--ogoni-white, #ffffff);
}

.testimonials-three .ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover,
.testimonials-three .ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
    border-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 1);
}

.testimonials-four {
    position: relative;
    padding: 120px 0;
}

@media (min-width: 1300px) {
    .testimonials-four {
        border-left: 50px solid var(--ogoni-gray, #f9f9f9);
        border-right: 50px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (min-width: 1400px) {
    .testimonials-four {
        border-left: 100px solid var(--ogoni-gray, #f9f9f9);
        border-right: 100px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (max-width: 767px) {
    .testimonials-four {
        padding: 80px 0;
    }
}

.testimonials-four__item {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    padding: 47px 29px 42px;
    transition: all 0.5s linear;
}

.testimonials-four__item::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    transition: all 0.5s linear;
    z-index: 2;
}

.testimonials-four__item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    transition: all 0.5s linear;
    z-index: 2;
}

.testimonials-four__item:hover {
    border-color: transparent;
}

.testimonials-four__item:hover::before,
.testimonials-four__item:hover::after {
    border-color: var(--ogoni-base, #C2EA1D);
    width: 100%;
    height: 100%;
}

.testimonials-four__item__meta {
    margin-bottom: 21px;
}

.testimonials-four__item__image {
    width: 70px;
    height: 70px;
    position: absolute;
    border-radius: 50%;
    right: 28px;
    top: 28px;
    overflow: hidden;
}

.testimonials-four__item__designation {
    line-height: 1;
    font-size: 14px;
    display: block;
    margin-bottom: 14px;
}

.testimonials-four__item__name {
    margin: 0;
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.testimonials-four__item__content {
    border-bottom: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    margin-bottom: 25px;
    padding-bottom: 24px;
}

.testimonials-four__item__rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 7px;
}

.testimonials-four__item__rating i {
    width: 15px;
    height: 15px;
    background-color: var(--ogoni-black, #131313);
    color: var(--ogoni-white, #ffffff);
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    margin-right: 3px;
    display: inline-block;
}

.testimonials-four__item__rating__text {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 0 16px;
    text-transform: capitalize;
}

.testimonials-four__item__average {
    margin: 0;
    font-size: 15px;
}

.testimonials-four__item__average span {
    color: var(--ogoni-black, #131313);
    display: inline-block;
}

.testimonial-page {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .testimonial-page {
        padding: 80px 0;
    }
}

.testimonial-page__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.testimonial-page .post-pagination {
    margin-top: 50px;
}

.testimonial-page .testimonials-two__item {
    background-color: var(--ogoni-gray, #f9f9f9);
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.package-one {
    padding: 120px 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    overflow: hidden;
    position: relative;
}

@media (max-width: 767px) {
    .package-one {
        padding: 80px 0;
    }
}

.package-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.package-one__content {
    position: relative;
    padding: 0;
}

@media (min-width: 1400px) {
    .package-one__content {
        padding-right: 100px;
    }
}

@media (max-width: 1199px) {
    .package-one__content {
        margin-bottom: 30px;
    }
}

.package-one__sub-title {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    text-transform: uppercase;
    letter-spacing: 30%;
    margin: 0 0 15px;
}

.package-one__sub-title img {
    flex-shrink: 0;
    height: 18px;
}

.package-one__title {
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    margin: 0 0px 33px 0;
}

.package-one__title span {
    font-weight: 400;
    font-style: italic;
}

@media (max-width: 767px) {
    .package-one__title {
        font-size: 30px;
        line-height: 38px;
    }
}

.package-one__text {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 14px;
}

.package-one__text-two {
    margin: 0 0 16px;
}

.package-one__switch {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 44px 0 0;
}

.package-one__switch__text {
    margin: 0;
    font-size: 18px;
    color: var(--ogoni-black, #131313);
    font-weight: 500;
    text-transform: capitalize;
    flex-shrink: 0;
}

.package-one__switch__wrap {
    width: 60px;
    height: 30px;
    flex-shrink: 0;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    background-color: var(--ogoni-white, #ffffff);
    overflow: hidden;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
}

.package-one__switch__wrap input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
    position: absolute;
}

.package-one__switch__wrap label {
    cursor: pointer;
    text-indent: -9999px;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: block;
    position: relative;
}

.package-one__switch__wrap label::after {
    position: absolute;
    content: "";
    top: 9px;
    left: 9px;
    width: 20px;
    height: 10px;
    background-color: var(--ogoni-black, #131313);
    border-radius: 100px;
    transition: 0.3s ease-in-out;
}

.package-one__switch__wrap input:checked+label {
    background-color: transparent;
}

.package-one__switch__wrap input:checked+label::after {
    left: calc(100% - 9px);
    transform: translateX(-100%);
}

.package-one__switch__wrap label:active:after {
    width: 60px;
}

.package-one__item {
    position: relative;
    z-index: 2;
    background-color: var(--ogoni-white, #ffffff);
    padding: 20px 20px 84px;
    transition: all 400ms ease;
}

.package-one__item__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 28%;
    left: 0;
    margin: auto;
    bottom: 80px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .package-one__item__star {
        display: none;
    }
}

.package-one__item__top {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 25px 30px 23px;
    margin: 0 0 23px;
}

.package-one__item__top__text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .package-one__item__top__text {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
    }
}

.package-one__item__price {
    font-weight: 700;
    font-size: 32px;
    margin: 0 0 10px;
}

.package-one__item__title {
    text-transform: capitalize;
    margin: 0 0 0;
}

.package-one__item__text {
    color: #9C9C9C;
    margin: 0;
}

.package-one__item__text span {
    color: var(--ogoni-black, #131313);
}

.package-one__item__period {
    margin: 0 0 23px 30px;
}

.package-one__item__period span {
    color: var(--ogoni-black, #131313);
}

.package-one__item .ogoni-btn {
    margin-left: 30px;
}

.package-one__item__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 767px) {
    .package-one__item__list {
        margin: 30px 0 0 30px;
    }
}

.package-one__item__list li {
    position: relative;
    margin: 0 0 20px;
    padding-left: 21px;
}

.package-one__item__list li i {
    color: var(--ogoni-black, #131313);
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 8px;
}

.package-one__carousel {
    position: relative;
    transform: translate3d(0, 100px, 0);
    opacity: 0;
    transition-property: opacity, transform;
    transition-timing-function: ease;
}

.package-one__carousel.ogoni-owl__carousel--basic-nav.owl-carousel .owl-dots {
    position: absolute;
    left: 50px;
    bottom: 50px;
}

.package-one .active .package-one__carousel {
    opacity: 1;
    transform: translateZ(0);
    transition-duration: 1.3s;
}

.package-page {
    padding: 120px 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
}

@media (max-width: 767px) {
    .package-page {
        padding: 80px 0;
    }
}

.package-page__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.package-page .package-one__switch {
    margin: 0 auto 50px;
    justify-content: center;
}

.package-page .ogoni-btn {
    background-color: transparent;
    color: var(--ogoni-black, #131313);
    border: 1px solid var(--ogoni-black, #131313);
}

.package-page .ogoni-btn__hover__item {
    background-color: var(--ogoni-black, #131313);
}

.package-page .ogoni-btn:hover {
    color: var(--ogoni-white, #ffffff);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .package-page .package-one__item__period {
        margin-left: 0;
    }

    .package-page .package-one__item .ogoni-btn {
        margin-left: 0;
        padding: 19px 26px;
    }
}

.package-page .post-pagination {
    margin-top: 50px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-one {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .service-one {
        padding: 80px 0;
    }
}

.service-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.service-one__carousel {
    position: relative;
}

.service-one__item {
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 500ms ease;
    background-color: var(--ogoni-white, #ffffff);
    padding: 50px 30px 41px 45px;
}

.service-one__item__number {
    position: absolute;
    right: 20px;
    top: 50px;
    display: inline-block;
    background-color: var(--ogoni-gray, #f9f9f9);
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    line-height: 22px;
    padding: 0 10px;
    font-size: 14px;
    color: var(--ogoni-text, #666666);
    text-transform: capitalize;
}

.service-one__item__icon {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 49px;
    line-height: 49px;
    color: var(--ogoni-black, #131313);
    transition: all 300ms ease;
    margin: 0 0 41px;
}

.service-one__item__icon .icon-ui-research {
    font-size: 72px;
}

.service-one__item__icon svg {
    position: absolute;
    border-radius: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.2s ease-out;
}

.service-one__item__icon svg rect {
    animation: svgAnimation 5s linear infinite;
    opacity: 0.1;
    transition: all 300ms ease;
}

.service-one__item:hover .service-one__item__icon svg rect {
    opacity: 1;
}

.service-one__item__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 16px;
}

.service-one__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
}

.service-one__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.service-one__item:hover .service-one__item__title a {
    background-size: 100% 1px;
}

.service-one__item__text {
    transition: all 300ms ease;
    margin: 0 0 33px;
}

.service-one__item__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 15px;
    font-weight: 400;
    color: var(--ogoni-text, #666666);
    text-transform: capitalize;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 100% 1px;
    transition: all 500ms ease;
}

.service-one__item__btn:hover .service-one__item__btn__btn {
    color: var(--ogoni-black, #131313);
}

.service-one__item__btn:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.service-one__item__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 50px;
    bottom: 45px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-one__item:hover .service-one__item__star {
    color: var(--ogoni-base, #C2EA1D);
}

.service-two {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0 0;
}

@media (max-width: 767px) {
    .service-two {
        padding: 80px 0 0;
    }
}

.service-two__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.service-two__item {
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 500ms ease;
    background-color: var(--ogoni-white, #ffffff);
    padding: 50px 50px 45px;
}

.service-two__item__letter {
    font-size: 200px;
    line-height: 0.8;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    font-weight: 800;
    text-transform: uppercase;
    padding-bottom: 5px;
    margin: -12px 0 38px;
    position: relative;
    left: -12px;
    color: transparent;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-size: 120%;
    overflow: hidden;
    animation: bgMoveTwo 15s cubic-bezier(0.3, 0, 0.7, 1) infinite;
}

.service-two__item__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 16px;
}

.service-two__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
}

.service-two__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.service-two__item:hover .service-two__item__title a {
    background-size: 100% 1px;
}

.service-two__item__text {
    transition: all 300ms ease;
    margin: 0 0 33px;
}

.service-two__item__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 15px;
    font-weight: 400;
    color: var(--ogoni-text, #666666);
    text-transform: capitalize;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 100% 1px;
    transition: all 500ms ease;
}

.service-two__item__btn:hover .service-two__item__btn__btn {
    color: var(--ogoni-black, #131313);
}

.service-two__item__btn:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.service-two__item__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 50px;
    bottom: 45px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-two__item:hover .service-two__item__star {
    color: var(--ogoni-base, #C2EA1D);
}

.service-three {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 80px 0 0;
    counter-reset: count;
}

@media (max-width: 767px) {
    .service-three {
        padding: 80px 0 0;
    }
}

.service-three__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.service-three .container {
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
}

.service-three__title {
    font-size: 150px;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 33px;
}

@media (max-width: 1199px) {
    .service-three__title {
        font-size: 110px;
    }
}

@media (max-width: 991px) {
    .service-three__title {
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .service-three__title {
        font-size: 44px;
    }
}

.service-three__title span {
    font-weight: 400;
    font-style: italic;
}

.service-three__title img {
    width: 70px;
    height: 70px;
    animation: startIconOne 1s infinite alternate;
    flex-shrink: 0;
    margin: 0 50px 0 25px;
}

@media (max-width: 767px) {
    .service-three__title img {
        width: 35px;
        height: 35px;
        margin: 0 10px 0 5px;
    }
}

.service-three__item {
    position: relative;
    display: flex;
    counter-increment: count;
    border-top: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    padding: 50px 0 27px;
}

.service-three__item::after {
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 1px;
    content: "";
}

.service-three__item:hover::after {
    animation: widths 2s infinite;
    background-color: var(--ogoni-base, #C2EA1D);
}

.service-three__item__wrapper {
    width: 100%;
    display: flex;
    position: relative;
}

@media (max-width: 767px) {
    .service-three__item__wrapper {
        display: block;
    }
}

.service-three__item__left {
    position: relative;
    max-width: 390px;
}

.service-three__item__number {
    position: relative;
    width: 34px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 150px;
    line-height: 1;
    font-weight: 400;
    font-size: 14px;
    color: var(--ogoni-text, #666666);
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1199px) {
    .service-three__item__number {
        margin-right: 80px;
    }
}

@media (max-width: 991px) {
    .service-three__item__number {
        margin-right: 40px;
    }
}

@media (max-width: 767px) {
    .service-three__item__number {
        margin: 0 0 25px;
    }
}

.service-three__item__number::after {
    content: counters(count, ".", decimal-leading-zero);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-three__item__icon {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 49px;
    line-height: 49px;
    color: var(--ogoni-black, #131313);
    transition: all 300ms ease;
    margin: 0 0 20px;
}

.service-three__item__icon .icon-ui-research {
    font-size: 72px;
}

.service-three__item__icon svg {
    position: absolute;
    border-radius: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.2s ease-out;
}

.service-three__item__icon svg rect {
    animation: svgAnimation 5s linear infinite;
    opacity: 0.1;
    transition: all 300ms ease;
}

.service-three__item:hover .service-three__item__icon svg rect {
    opacity: 1;
}

.service-three__item__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 16px;
}

.service-three__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
}

.service-three__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.service-three__item:hover .service-three__item__title a {
    background-size: 100% 1px;
}

.service-three__item__right {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 20px;
    margin-left: auto;
}

@media (max-width: 767px) {
    .service-three__item__right {
        margin: 15px 0 0;
        justify-content: flex-start;
    }
}

.service-three__item__date {
    background-color: var(--ogoni-white, #ffffff);
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    color: var(--ogoni-black, #131313);
    text-transform: capitalize;
    font-weight: 700;
    padding: 11px 15px;
    line-height: 1.5em;
    position: relative;
    overflow: hidden;
    width: 66px;
    height: 66px;
    z-index: 2;
    transition: all 300ms ease;
}

.service-three__item__star {
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    margin-top: 75px;
}

.service-three__item__circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-left: 75px;
}

@media (max-width: 991px) {
    .service-three__item__circle {
        margin-left: 35px;
    }
}

@media (max-width: 767px) {
    .service-three__item__circle {
        margin-left: 25px;
    }
}

.service-three__item__circle__icon {
    width: 30px;
    height: 30px;
    font-size: 24px;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: var(--ogoni-black, #131313);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
}

.service-three__item__circle__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.service-three__item__circle__icon:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.service-three__item__circle .curved-circle {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 90px !important;
    height: 90px !important;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.service-three__item__circle .curved-circle .curved-circle--item {
    width: 90px !important;
    height: 90px !important;
}

.service-three__item__circle .curved-circle span {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 400;
    color: var(--ogoni-text, #666666);
    letter-spacing: 6.5px;
}

.service-three__item__image {
    position: fixed;
    top: -150px;
    left: 0;
    width: 335px;
    height: 317px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: rotate(-9deg);
}

.service-three__item__image__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: -1;
}

.service-three__item:hover .service-three__item__image {
    opacity: 1;
}

.service-three .ogoni-circle-btn__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 68px;
}

@media (max-width: 767px) {
    .service-three .ogoni-circle-btn__wrapper {
        margin-top: 28px;
    }
}

.service-three .ogoni-circle-btn {
    background-color: var(--ogoni-black, #131313);
    width: 306px;
    height: 306px;
}

.service-three .ogoni-circle-btn__text {
    color: var(--ogoni-white, #ffffff);
}

.service-three .ogoni-circle-btn:hover .ogoni-circle-btn__dot {
    width: 600px;
    height: 600px;
}

.service-three .ogoni-circle-btn:hover .ogoni-circle-btn__text {
    color: var(--ogoni-black, #131313);
}

.service-four {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0;
    counter-reset: count;
}

@media (max-width: 767px) {
    .service-four {
        padding: 80px 0;
    }
}

.service-four__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.service-four__item {
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 500ms ease;
    background-color: var(--ogoni-white, #ffffff);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .service-four__item {
        flex-direction: column;
    }
}

.service-four__item__content {
    position: relative;
    padding: 48px 50px 44px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .service-four__item__content {
        padding: 48px 30px 44px;
    }
}

.service-four__item__letter {
    font-size: 200px;
    line-height: 0.8;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    font-weight: 800;
    text-transform: uppercase;
    padding-bottom: 5px;
    margin: -12px 0 38px;
    position: relative;
    left: -12px;
    color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.service-four__item__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 13px;
}

.service-four__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
}

.service-four__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.service-four__item:hover .service-four__item__title a {
    background-size: 100% 1px;
}

.service-four__item__text {
    transition: all 300ms ease;
    margin: 0 0 33px;
}

.service-four__item__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 15px;
    font-weight: 400;
    color: var(--ogoni-text, #666666);
    text-transform: capitalize;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 100% 1px;
    transition: all 500ms ease;
}

.service-four__item__btn:hover .service-four__item__btn__btn {
    color: var(--ogoni-black, #131313);
}

.service-four__item__btn:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.service-four__item__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 50px;
    bottom: 45px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-four__item:hover .service-four__item__star {
    color: var(--ogoni-base, #C2EA1D);
}

.service-four__item__image {
    position: relative;
    flex-shrink: 0;
    height: 390px;
    width: 330px;
    overflow: hidden;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .service-four__item__image {
        width: 310px;
    }
}

.service-four__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-about {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .service-about {
        padding: 80px 0;
    }
}

.service-about .sec-title {
    padding-bottom: 30px;
}

.service-about__image {
    position: relative;
}

.service-about__image img {
    width: 100%;
    height: auto;
}

.service-about__text {
    letter-spacing: -0.48px;
    text-transform: capitalize;
    margin: 33px 0 0;
}

@media (max-width: 1199px) {
    .service-about__text br {
        display: none;
    }
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 198px 0 120px;
}

@media (max-width: 767px) {
    .service-details {
        padding: 140px 0 80px;
    }
}

.service-details__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.service-details__top {
    position: relative;
    padding: 0 440px 0 110px;
    margin-bottom: 113px;
}

@media (max-width: 1199px) {
    .service-details__top {
        padding-right: 120px;
    }
}

@media (max-width: 991px) {
    .service-details__top {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .service-details__top {
        margin-bottom: 73px;
        padding-left: 0;
    }
}

.service-details__icon {
    position: absolute;
    left: 0;
    top: 13px;
    z-index: 1;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    line-height: 56px;
    color: var(--ogoni-black, #131313);
    transition: all 300ms ease;
    margin: 0;
}

@media (max-width: 767px) {
    .service-details__icon {
        position: relative;
        top: 0;
        margin: 0 0 15px;
    }
}

.service-details__icon .icon-ui-research {
    font-size: 86px;
}

.service-details__icon svg {
    position: absolute;
    border-radius: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.2s ease-out;
}

.service-details__icon svg rect {
    animation: svgAnimation 5s linear infinite;
    opacity: 0.1;
    transition: all 300ms ease;
}

.service-details__icon:hover svg rect {
    opacity: 1;
}

.service-details__title {
    margin: 0 0 15px;
    font-weight: 700;
    font-size: 52px;
    text-transform: capitalize;
    line-height: 62px;
}

@media (max-width: 767px) {
    .service-details__title {
        font-size: 32px;
        line-height: 45px;
    }
}

.service-details__text {
    margin-bottom: 15px;
}

.service-details__info {
    position: relative;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.service-details__info li {
    display: flex;
    align-items: center;
    margin: 20px 0 0;
}

.service-details__info li span {
    color: var(--ogoni-black, #131313);
    font-weight: 700;
    min-width: 220px;
}

.service-details__thumbnail {
    position: relative;
    margin: 0 101px 0;
}

@media (max-width: 1799px) {
    .service-details__thumbnail {
        margin: 0 50px 0;
    }
}

@media (max-width: 1499px) {
    .service-details__thumbnail {
        margin: 0 15px 0;
    }
}

@media (max-width: 767px) {
    .service-details__thumbnail {
        margin: 0 15px 0;
    }
}

.service-details__thumbnail img {
    width: 100%;
    display: block;
}

.service-details__middle {
    position: relative;
    max-width: 636px;
    margin: 42px auto 114px;
}

@media (max-width: 767px) {
    .service-details__middle {
        margin-bottom: 75px;
    }
}

.service-details__middle__title {
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 18px;
}

.service-details__gallery {
    position: relative;
}

.service-details__gallery img {
    width: 100%;
    height: auto;
}

.service-details__pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 120px;
}

@media (max-width: 767px) {
    .service-details__pagination {
        margin-top: 80px;
    }
}

.service-details__pagination__prev {
    position: relative;
}

.service-details__pagination__prev .ogoni-circle-btn__text i {
    font-size: 18px;
    transform: rotate(-45deg);
    display: inline-block;
    position: relative;
    top: 3px;
    margin-right: 8px;
}

.service-details__pagination__prev:hover .ogoni-circle-btn__text {
    color: var(--ogoni-white, #ffffff);
}

.service-details__pagination__next {
    position: relative;
}

.service-details__pagination__next .ogoni-circle-btn__text i {
    font-size: 18px;
    transform: rotate(45deg);
    display: inline-block;
    position: relative;
    top: 3px;
    margin-left: 8px;
}

.service-details__pagination__next:hover .ogoni-circle-btn__text {
    color: var(--ogoni-white, #ffffff);
}

.service-details__pagination .ogoni-circle-btn {
    width: 149px;
    height: 149px;
}

.service-details__pagination .ogoni-circle-btn__text {
    font-weight: normal;
    font-family: var(--ogoni-font, "DM Sans", serif);
    gap: 0;
    color: var(--ogoni-text, #666666);
}

.service-details__pagination .ogoni-circle-btn__dot {
    background-color: var(--ogoni-black, #131313);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-one {
    padding: 120px 0;
    background-color: var(--ogoni-black, #131313);
    overflow: hidden;
    position: relative;
}

@media (max-width: 767px) {
    .portfolio-one {
        padding: 80px 0;
    }
}

.portfolio-one__shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 47px;
    height: 47px;
    animation: startIconOne 1s infinite alternate;
    background-size: cover;
}

@media (max-width: 767px) {
    .portfolio-one__shape {
        display: none;
    }
}

.portfolio-one__tabs {
    position: relative;
    display: block;
    margin: 82px 0 0;
    padding: 0;
    list-style: none;
    max-width: 306px;
}

@media (max-width: 991px) {
    .portfolio-one__tabs {
        margin: 0 0 40px;
    }
}

.portfolio-one__tabs li {
    display: flex;
    align-items: baseline;
    gap: 30px;
    cursor: pointer;
    width: 100%;
    counter-increment: count;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    font-size: 30px;
    font-weight: 700;
    color: var(--ogoni-text, #666666);
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.portfolio-one__tabs li span {
    position: relative;
    left: 0;
    bottom: 0;
    top: 0;
    display: inline-block;
    line-height: 1;
    font-size: 16px;
}

.portfolio-one__tabs li span::before {
    content: counters(count, ".");
    position: relative;
    display: inline-block;
}

.portfolio-one__tabs li:hover,
.portfolio-one__tabs li.active-btn {
    color: var(--ogoni-white, #ffffff);
}

.portfolio-one__tabs li+li {
    border-top: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    padding: 17px 0 0;
    margin: 17px 0 0;
}

.portfolio-one__dots {
    margin: 108px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
}

@media (max-width: 1199px) {
    .portfolio-one__dots {
        margin: 50px 0;
    }
}

.portfolio-one__dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    transition: all 500ms ease;
    position: relative;
    cursor: pointer;
}

.portfolio-one__dots .owl-dot::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 2px;
    height: 2px;
    content: "";
    background-color: var(--ogoni-white, #ffffff);
    transform: scale(0);
    transition: all 500ms ease;
    border-radius: 50%;
}

.portfolio-one__dots .owl-dot span {
    display: none;
}

.portfolio-one__dots .owl-dot:hover,
.portfolio-one__dots .owl-dot.active {
    border-color: var(--ogoni-white, #ffffff);
}

.portfolio-one__dots .owl-dot:hover::after,
.portfolio-one__dots .owl-dot.active::after {
    transform: scale(1);
}

.portfolio-one .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav {
    position: absolute;
    right: -10px;
    top: 78px;
    margin: 0;
    transform: rotate(90deg);
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .portfolio-one .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav {
        right: -50px;
    }
}

@media (max-width: 991px) {
    .portfolio-one .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav {
        display: none;
    }
}

.portfolio-one .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    color: var(--ogoni-text, #666666);
}

.portfolio-one .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav button::after {
    background-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
}

.portfolio-one .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
    color: var(--ogoni-white, #ffffff);
}

.portfolio-one__item {
    position: relative;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .portfolio-one__item {
        padding-right: 40px;
    }
}

.portfolio-one__item__image {
    position: relative;
    display: inline-block;
    margin: 0 0 18px;
}

.portfolio-one__item__image img {
    width: auto !important;
    max-width: 100%;
    height: auto;
    transition: all 400ms ease;
}

.portfolio-one__item__title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--ogoni-white, #ffffff);
    font-size: 32px;
    line-height: 1.3;
}

.portfolio-one__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-one__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-one__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-one__item__year {
    position: absolute;
    right: -48px;
    bottom: 27px;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
}

.portfolio-one .fade-up {
    transform: translate3d(0, 100px, 0);
    opacity: 0;
    transition-property: opacity, transform;
    transition-timing-function: ease;
}

.portfolio-one .active-tab .fade-up {
    opacity: 1;
    transform: translateZ(0);
    transition-duration: 1.2s;
}

.portfolio-one .tabs-content {
    overflow: hidden;
}

@media (max-width: 1199px) {
    .portfolio-one .owl-carousel {
        max-width: 750px;
        position: relative;
    }
}

.portfolio-two {
    padding: 120px 0;
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    counter-reset: count;
}

@media (max-width: 767px) {
    .portfolio-two {
        padding: 80px 0;
    }
}

.portfolio-two__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.portfolio-two .ripple-svg-one,
.portfolio-two .ripple-svg-two {
    position: absolute;
}

.portfolio-two__item {
    position: relative;
    margin-bottom: 130px;
}

@media (max-width: 991px) {
    .portfolio-two__item {
        margin-bottom: 50px;
        max-width: 636px;
    }
}

.portfolio-two__item__image {
    position: relative;
    display: inline-block;
    /* height: 600px; */
    width: 450px;
    overflow: hidden;
    transition: all 0.6s ease-out;
}

@media (max-width: 767px) {
    .portfolio-two__item__image {
        height: 400px;
    }
}

.portfolio-two__item__image img {
    max-width: 100%;

    transition: all 0.6s ease-out;
    object-fit: cover;
    object-position: center;
}

.portfolio-two__item--two {
    max-width: 526px;
}

.portfolio-two__item--two .portfolio-two__item__image {
    /* height: 500px; */
}

/* new class added */
[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
    transition-delay: .2s;
    padding-top: 60px !important;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
    transition-delay: .4s;
    padding-top: 60px !important;
}

/* new class added end */
@media (max-width: 767px) {
    .portfolio-two__item--two .portfolio-two__item__image {
        height: 400px;
    }
}

.portfolio-two__item--three {
    max-width: 526px;
    /* margin-left: auto; */
    margin-top: 200px;
}

@media (max-width: 991px) {
    .portfolio-two__item--three {
        margin-left: 0;
        margin-top: 0;
    }
}

.portfolio-two__item--three .portfolio-two__item__image {
    /* height: 500px; */
}

@media (max-width: 767px) {
    .portfolio-two__item--three .portfolio-two__item__image {
        height: 400px;
    }
}

.portfolio-two__item--four {
    max-width: 526px;
}

.portfolio-two__item__content {
    /* position: relative; */
    width: 496px;
    /* background-color: var(--ogoni-white, #ffffff); */
    padding: 10px 43px 10px 10px;
}

@media (max-width: 1199px) {
    .portfolio-two__item__content {
        width: 324px;
        /* padding-left: 30px; */
    }
}

@media (max-width: 991px) {
    .portfolio-two__item__content {
        max-width: 540px;
    }
}

.portfolio-two__item__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 42px;
    font-size: 32px;
}

@media (max-width: 767px) {
    .portfolio-two__item__title {
        line-height: 36px;
        font-size: 26px;
    }
}

.portfolio-two__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-two__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-two__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-two__item__meta {
    font-size: 14px;
    margin: 0 0 4px;
}

.portfolio-two__item__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 50px;
    bottom: 30px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-two__item:hover .portfolio-two__item__star {
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-two__item__year {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 22px;
    z-index: 2;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.portfolio-two .post-pagination {
    margin-top: -80px;
}

@media (max-width: 991px) {
    .portfolio-two .post-pagination {
        margin-top: 0;
    }
}

.portfolio-three {
    padding-top: 120px;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
}

@media (max-width: 767px) {
    .portfolio-three {
        padding-top: 80px;
    }
}

.portfolio-three__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.portfolio-three__text {
    position: relative;
    margin: 45px 0 0 55px;
}

@media (max-width: 991px) {
    .portfolio-three__text {
        margin: -25px 0 45px;
    }
}

.portfolio-three__wrapper {
    margin-left: -110px;
}

@media (max-width: 1199px) {
    .portfolio-three__wrapper {
        margin: 0 15px;
    }
}

.portfolio-three__item {
    position: relative;
}

.portfolio-three__item__image {
    position: relative;
    display: inline-block;
    height: 570px;
    overflow: hidden;
    transition: all 0.6s ease-out;
}

@media (max-width: 767px) {
    .portfolio-three__item__image {
        height: 400px;
    }
}

.portfolio-three__item__image img {
    max-width: 100%;
    height: 100%;
    transition: all 0.6s ease-out;
    object-fit: cover;
    object-position: center;
}

.portfolio-three__item__content {
    position: relative;
    padding: 16px 50px 0 0;
}

.portfolio-three__item__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 42px;
    font-size: 32px;
}

.portfolio-three__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-three__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-three__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-three__item__meta {
    font-size: 14px;
    margin: 0 0 4px;
}

.portfolio-three__item__year {
    position: absolute;
    bottom: 0;
    top: 10px;
    right: 0;
    z-index: 2;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.portfolio-three .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav {
    margin-top: 42px;
}

.portfolio-four {
    padding: 120px 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
}

@media (max-width: 767px) {
    .portfolio-four {
        padding: 80px 0;
    }
}

.portfolio-four__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.portfolio-four__item {
    position: relative;
}

.portfolio-four__item--four,
.portfolio-four__item--two {
    margin-top: 100px;
}

@media (max-width: 767px) {

    .portfolio-four__item--four,
    .portfolio-four__item--two {
        margin-top: 0;
    }
}

.portfolio-four__item--three {
    margin-top: 50px;
}

@media (max-width: 767px) {
    .portfolio-four__item--three {
        margin-top: 0;
    }
}

.portfolio-four__item__image {
    position: relative;
    height: 468px;
    overflow: hidden;
    transition: all 0.6s ease-out;
}

@media (max-width: 767px) {
    .portfolio-four__item__image {
        height: 400px;
    }
}

.portfolio-four__item__image img {
    width: 100%;
    height: 100%;
    transition: all 0.6s ease-out;
    object-fit: cover;
    object-position: center;
}

.portfolio-four__item__content {
    position: relative;
    padding: 14px 50px 0 0;
}

.portfolio-four__item__meta {
    font-size: 14px;
    background-color: var(--ogoni-white, #ffffff);
    line-height: 24px;
    padding: 0 11px;
    text-transform: capitalize;
    margin: 0;
}

.portfolio-four__item__meta__wrapper {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1;
    transition: all 0.4s ease;
}

.portfolio-four__item:hover .portfolio-four__item__meta__wrapper {
    opacity: 0;
}

.portfolio-four__item__overlay {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    background-color: var(--ogoni-white, #ffffff);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    transform: scale(0.5);
}

.portfolio-four__item__overlay .ogoni-circle-btn {
    width: 200px;
    height: 200px;
    background-color: var(--ogoni-black, #131313);
}

.portfolio-four__item__overlay .ogoni-circle-btn:hover .ogoni-circle-btn__text {
    color: var(--ogoni-black, #131313);
}

.portfolio-four__item__overlay .ogoni-circle-btn__text {
    color: var(--ogoni-white, #ffffff);
}

.portfolio-four__item:hover .portfolio-four__item__overlay {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.portfolio-four__item__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 30px;
    font-size: 20px;
}

.portfolio-four__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-four__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-four__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-four__item__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0;
    bottom: 7px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-four__item:hover .portfolio-four__item__star {
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-four .post-pagination {
    margin-top: 43px;
}

.portfolio-five {
    padding: 0 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    margin: auto;
    padding: 100px 88px;
}

@media (max-width: 1299px) {
    .portfolio-five {
        padding: 100px 70px;
    }
}

@media (max-width: 1199px) {
    .portfolio-five {
        padding: 100px 20px;
    }
}

@media (max-width: 767px) {
    .portfolio-five {
        padding: 80px 0;
    }
}

.portfolio-five__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.portfolio-five__middle {
    position: relative;
    top: 51%;
    transform: translateY(-50%);
    line-height: 0.8;
    width: 100%;
    height: 100%;
}

.portfolio-five__item {
    position: relative;
    max-height: calc(100vh - 200px);
}

.portfolio-five__item__image {
    position: relative;
    height: 100%;
    overflow: hidden;
    transition: all 0.6s ease-out;
}

.portfolio-five__item__image img {
    width: 100%;
    height: 100%;
    transition: all 0.6s ease-out;
    object-fit: cover;
    object-position: center;
}

.portfolio-five__item__content {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 30px;
    width: 350px;
    height: 350px;
    background-color: var(--ogoni-black, #131313);
    border-radius: 50%;
    padding: 154px 59px 30px;
    transition: all 500ms ease;
    visibility: hidden;
    opacity: 0;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@media (max-width: 1299px) {
    .portfolio-five__item__content {
        width: 300px;
        height: 300px;
        padding: 110px 50px 30px;
    }
}

.portfolio-five__item:hover .portfolio-five__item__content {
    visibility: visible;
    opacity: 1;
    animation-delay: 0.1s;
    animation-name: zoomInDown;
}

.portfolio-five__item__letter {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    font-size: 198px;
    line-height: 1;
    position: absolute;
    left: 52px;
    top: 50px;
}

.portfolio-five__item__title {
    margin: 0 0 22px;
    font-weight: 700;
    color: var(--ogoni-white, #ffffff);
    text-transform: capitalize;
    line-height: 34px;
    font-size: 24px;
    position: relative;
    z-index: 2;
}

.portfolio-five__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-five__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-five__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-five__item__meta {
    font-size: 14px;
    border: 1px solid rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1);
    line-height: 22px;
    display: inline-block;
    padding: 0 10px;
    text-transform: capitalize;
    margin: 0;
}

.portfolio-five__item__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 74px;
    top: 78px;
    font-size: 20px;
    color: var(--ogoni-base, #C2EA1D);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-five__carousel {
    position: relative;
}

.portfolio-five .slick-arrow {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--ogoni-text, #666666);
    font-size: 14px;
    border: none;
    outline: none;
    position: absolute;
    z-index: 5;
    right: 215px;
    bottom: -50px;
    padding: 0;
    margin: 0;
    transition: all 500ms ease;
}

@media (max-width: 1299px) {
    .portfolio-five .slick-arrow {
        display: none !important;
    }
}

.portfolio-five .slick-arrow:hover {
    color: var(--ogoni-black, #131313);
}

.portfolio-five .slick-arrow.prev {
    right: 615px;
}

.portfolio-five .slick-arrow.prev::after {
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 370px;
    height: 1px;
    content: "";
    background-color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.portfolio-five .slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    right: 10px;
    bottom: -46px;
    z-index: 5;
}

@media (max-width: 767px) {
    .portfolio-five .slick-dots {
        right: 0;
        bottom: -30px;
        left: 0;
    }
}

.portfolio-five .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    transition: all 500ms ease;
    position: relative;
    cursor: pointer;
}

.portfolio-five .slick-dots li::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 2px;
    height: 2px;
    content: "";
    background-color: var(--ogoni-black, #131313);
    transform: scale(0);
    transition: all 500ms ease;
    border-radius: 50%;
}

.portfolio-five .slick-dots li button {
    display: none;
}

.portfolio-five .slick-dots li:hover,
.portfolio-five .slick-dots li.slick-active {
    border-color: var(--ogoni-black, #131313);
}

.portfolio-five .slick-dots li:hover::after,
.portfolio-five .slick-dots li.slick-active::after {
    transform: scale(1);
}

.portfolio-five .slick-slide {
    padding: 0 12px;
}

.portfolio-six {
    padding: 0 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    margin: auto;
    padding: 100px 38px;
}

@media (max-width: 1499px) {
    .portfolio-six {
        padding: 100px 10px;
    }
}

@media (max-width: 767px) {
    .portfolio-six {
        padding: 80px 0;
    }
}

.portfolio-six .ripple-svg-one,
.portfolio-six .ripple-svg-two {
    position: absolute;
}

.portfolio-six__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.portfolio-six__middle {
    position: relative;
    top: 51%;
    transform: translateY(-50%);
    line-height: 0.8;
    width: 100%;
    height: 100%;
}

.portfolio-six__item {
    position: relative;
    overflow: hidden;
    max-height: calc(100vh - 200px);
}

.portfolio-six__item__image {
    position: relative;
    transition: all 0.6s ease-out;
}

.portfolio-six__item__image img {
    width: 100%;
    height: auto;
    transition: all 0.6s ease-out;
}

.portfolio-six__item__image__bottom {
    position: relative;
    left: 0;
    right: 0;
    margin: -140px auto 0;
    width: calc(100% - 40px);
    height: auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-six__item__image__bottom {
        margin-top: -250px;
    }
}

.portfolio-six__item__image__bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-six__item__content {
    position: absolute;
    z-index: 2;
    left: 0;
    margin: auto;
    bottom: 292px;
    padding: 0 105px 0 30px;
}

@media (max-width: 1599px) {
    .portfolio-six__item__content {
        bottom: 160px;
    }
}

@media (max-width: 1299px) {
    .portfolio-six__item__content {
        bottom: 230px;
    }
}

.portfolio-six__item__meta {
    font-size: 14px;
    text-transform: capitalize;
    margin: 0 0 9px;
    opacity: 0;
    transform: translateX(-700px) scale(0.1) skewX(95deg);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.portfolio-six__item:hover .portfolio-six__item__meta {
    opacity: 1;
    transform: translateX(0px) scale(1) skewX(0deg);
}

.portfolio-six__item__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 42px;
    font-size: 32px;
    opacity: 0;
    transform: translateX(-700px) scale(0.1) skewX(95deg);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.portfolio-six__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-six__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-six__item:hover .portfolio-six__item__title {
    opacity: 1;
    transform: translateX(0px) scale(1) skewX(0deg);
}

.portfolio-six__item__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 55px;
    bottom: 7px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.portfolio-six__item:hover .portfolio-six__item__star {
    opacity: 1;
}

.portfolio-six__item__year {
    position: absolute;
    bottom: 2px;
    top: 0;
    right: 30px;
    z-index: 2;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    opacity: 0;
    transform: translateX(60px);
    transition: transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.portfolio-six__item:hover .portfolio-six__item__year {
    opacity: 1;
    transform: translateX(0px);
}

.portfolio-six__carousel {
    position: relative;
}

.portfolio-six .slick-arrow {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--ogoni-text, #666666);
    font-size: 14px;
    border: none;
    outline: none;
    position: absolute;
    z-index: 5;
    right: 215px;
    bottom: -50px;
    padding: 0;
    margin: 0;
    transition: all 500ms ease;
}

@media (max-width: 1299px) {
    .portfolio-six .slick-arrow {
        display: none !important;
    }
}

.portfolio-six .slick-arrow:hover {
    color: var(--ogoni-black, #131313);
}

.portfolio-six .slick-arrow.prev {
    right: 615px;
}

.portfolio-six .slick-arrow.prev::after {
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 370px;
    height: 1px;
    content: "";
    background-color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.portfolio-six .slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    right: 10px;
    bottom: -46px;
    z-index: 5;
}

@media (max-width: 767px) {
    .portfolio-six .slick-dots {
        right: 0;
        bottom: -30px;
        left: 0;
    }
}

.portfolio-six .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    transition: all 500ms ease;
    position: relative;
    cursor: pointer;
}

.portfolio-six .slick-dots li::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 2px;
    height: 2px;
    content: "";
    background-color: var(--ogoni-black, #131313);
    transform: scale(0);
    transition: all 500ms ease;
    border-radius: 50%;
}

.portfolio-six .slick-dots li button {
    display: none;
}

.portfolio-six .slick-dots li:hover,
.portfolio-six .slick-dots li.slick-active {
    border-color: var(--ogoni-black, #131313);
}

.portfolio-six .slick-dots li:hover::after,
.portfolio-six .slick-dots li.slick-active::after {
    transform: scale(1);
}

.portfolio-six .slick-slide {
    padding: 0 12px;
}

.portfolio-seven {
    overflow: hidden;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
    z-index: 1;
    width: 100%;
    margin: auto;
    padding: 100px 85px 120px;
}

@media (max-width: 1499px) {
    .portfolio-seven {
        padding: 100px 50px 120px 70px;
    }
}

@media (max-width: 1199px) {
    .portfolio-seven {
        padding: 100px 0 120px;
    }
}

@media (max-width: 767px) {
    .portfolio-seven {
        padding: 80px 0;
    }
}

.portfolio-seven .ripple-svg-one,
.portfolio-seven .ripple-svg-two {
    position: absolute;
}

.portfolio-seven__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

@media (min-width: 1200px) and (max-width: 1299px) {
    .portfolio-seven .col-xl-3 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

@media (min-width: 1300px) and (max-width: 1499px) {
    .portfolio-seven .col-xl-3 {
        flex: 0 0 auto;
        width: 33%;
    }
}

@media (min-width: 1600px) {

    .portfolio-seven .col-xl-3.col-md-6:nth-child(4) .portfolio-seven__item__content,
    .portfolio-seven .col-xl-3.col-md-6:nth-child(5) .portfolio-seven__item__content,
    .portfolio-seven .col-xl-3.col-md-6:nth-child(9) .portfolio-seven__item__content,
    .portfolio-seven .col-xl-3.col-md-6:nth-child(11) .portfolio-seven__item__content,
    .portfolio-seven .col-xl-3.col-md-6:nth-child(15) .portfolio-seven__item__content {
        left: auto;
        right: 0;
    }
}

.portfolio-seven__item {
    position: relative;
}

.portfolio-seven__item__image {
    position: relative;
    transition: all 0.6s ease-out;
}

.portfolio-seven__item__image img {
    width: 100%;
    height: auto;
    transition: all 0.6s ease-out;
}

.portfolio-seven__item__content {
    position: absolute;
    z-index: 5;
    left: 0;
    bottom: 0;
    background-color: var(--ogoni-white, #ffffff);
    padding: 23px 50px;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.77, 0, 0.175, 1) 0.1s;
    transform: translateY(50%);
    width: calc(100% + 138px);
}

@media (max-width: 1599px) {
    .portfolio-seven__item__content {
        width: 100%;
        padding-left: 30px;
    }
}

.portfolio-seven__item:hover .portfolio-seven__item__content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.portfolio-seven__item__content__inner {
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(30%);
}

.portfolio-seven__item:hover .portfolio-seven__item__content__inner {
    transform: translateY(0);
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

.portfolio-seven__item__meta {
    font-size: 14px;
    text-transform: capitalize;
    margin: 0 0 3px;
}

.portfolio-seven__item__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 42px;
    font-size: 32px;
}

@media (max-width: 1599px) {
    .portfolio-seven__item__title {
        line-height: 38px;
        font-size: 28px;
    }
}

@media (max-width: 1199px) {
    .portfolio-seven__item__title {
        line-height: 34px;
        font-size: 24px;
    }
}

.portfolio-seven__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-seven__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-seven__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-seven__item__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0;
    bottom: 5px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-seven__item__year {
    position: absolute;
    bottom: 2px;
    top: 0;
    right: -28px;
    z-index: 2;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.portfolio-seven__rm {
    margin: 120px auto 0;
    width: 195px;
    height: 229px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media (max-width: 767px) {
    .portfolio-seven__rm {
        margin-top: 80px;
    }
}

.portfolio-seven__rm a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--ogoni-gray, #f9f9f9);
    font-size: 24px;
    color: var(--ogoni-black, #131313);
    position: absolute;
    bottom: 59px;
    border-radius: 50%;
    left: 59px;
}

.portfolio-seven__rm a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.portfolio-seven__rm a:hover {
    background-color: var(--ogoni-base, #C2EA1D);
    color: var(--ogoni-black, #131313);
}

.portfolio-seven__rm a:hover i {
    animation: iconTranslate_Y 0.4s forwards;
}

.portfolio-eight {
    overflow: hidden;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
    z-index: 1;
    width: 100%;
    margin: auto;
    padding: 100px 35px 120px;
}

@media (max-width: 1499px) {
    .portfolio-eight {
        padding: 100px 0px 120px;
    }
}

@media (max-width: 767px) {
    .portfolio-eight {
        padding: 100px 0 80px;
    }
}

.portfolio-eight .ripple-svg-one,
.portfolio-eight .ripple-svg-two {
    position: absolute;
}

.portfolio-eight__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

@media (min-width: 1200px) and (max-width: 1299px) {
    .portfolio-eight .col-xl-3 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

@media (min-width: 1300px) and (max-width: 1499px) {
    .portfolio-eight .col-xl-3 {
        flex: 0 0 auto;
        width: 33%;
    }
}

.portfolio-eight__item {
    position: relative;
}

.portfolio-eight__item__image {
    position: relative;
    transition: all 0.6s ease-out;
}

.portfolio-eight__item__image img {
    width: 100%;
    height: auto;
    transition: all 0.6s ease-out;
}

.portfolio-eight__item__content {
    position: relative;
    padding: 23px 50px 0 0;
}

.portfolio-eight__item__meta {
    font-size: 14px;
    text-transform: capitalize;
    margin: 0 0 3px;
}

.portfolio-eight__item__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 42px;
    font-size: 32px;
}

@media (max-width: 1599px) {
    .portfolio-eight__item__title {
        line-height: 38px;
        font-size: 28px;
    }
}

@media (max-width: 1199px) {
    .portfolio-eight__item__title {
        line-height: 34px;
        font-size: 24px;
    }
}

.portfolio-eight__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-eight__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-eight__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-eight__item__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 41px;
    bottom: 10px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-eight__item__year {
    position: absolute;
    bottom: -20px;
    top: 0;
    right: -7px;
    z-index: 2;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.portfolio-eight__rm {
    margin: 112px auto 0;
    width: 195px;
    height: 229px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media (max-width: 767px) {
    .portfolio-eight__rm {
        margin-top: 72px;
    }
}

.portfolio-eight__rm a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--ogoni-gray, #f9f9f9);
    font-size: 24px;
    color: var(--ogoni-black, #131313);
    position: absolute;
    bottom: 59px;
    border-radius: 50%;
    left: 59px;
}

.portfolio-eight__rm a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.portfolio-eight__rm a:hover {
    background-color: var(--ogoni-base, #C2EA1D);
    color: var(--ogoni-black, #131313);
}

.portfolio-eight__rm a:hover i {
    animation: iconTranslate_Y 0.4s forwards;
}

.portfolio-nine {
    overflow: hidden;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
    z-index: 1;
    width: 100%;
    margin: auto;
    padding: 100px 0 120px;
}

@media (max-width: 767px) {
    .portfolio-nine {
        padding: 100px 0 80px;
    }
}

.portfolio-nine .ripple-svg-one,
.portfolio-nine .ripple-svg-two {
    position: absolute;
}

.portfolio-nine .container {
    max-width: 1106px;
}

.portfolio-nine__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.portfolio-nine__item {
    position: relative;
}

.portfolio-nine__item__image {
    position: relative;
    transition: all 0.6s ease-out;
}

.portfolio-nine__item__image img {
    width: 100%;
    height: auto;
    transition: all 0.6s ease-out;
}

.portfolio-nine__item__content {
    position: relative;
    padding: 23px 50px 0 0;
}

.portfolio-nine__item__meta {
    font-size: 14px;
    text-transform: capitalize;
    margin: 0 0 3px;
}

.portfolio-nine__item__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 42px;
    font-size: 32px;
}

@media (max-width: 767px) {
    .portfolio-nine__item__title {
        line-height: 40px;
        font-size: 30px;
    }
}

.portfolio-nine__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-nine__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-nine__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-nine__item__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 41px;
    bottom: 10px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-nine__item__year {
    position: absolute;
    bottom: -20px;
    top: 0;
    right: -7px;
    z-index: 2;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.portfolio-nine__rm {
    margin: 112px auto 0;
    width: 195px;
    height: 229px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media (max-width: 767px) {
    .portfolio-nine__rm {
        margin-top: 72px;
    }
}

.portfolio-nine__rm a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--ogoni-gray, #f9f9f9);
    font-size: 24px;
    color: var(--ogoni-black, #131313);
    position: absolute;
    bottom: 59px;
    border-radius: 50%;
    left: 59px;
}

.portfolio-nine__rm a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.portfolio-nine__rm a:hover {
    background-color: var(--ogoni-base, #C2EA1D);
    color: var(--ogoni-black, #131313);
}

.portfolio-nine__rm a:hover i {
    animation: iconTranslate_Y 0.4s forwards;
}

.portfolio-ten {
    padding: 0 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    margin: auto;
    padding: 100px 85px;
}

@media (max-width: 1499px) {
    .portfolio-ten {
        padding: 100px 20px;
    }
}

.portfolio-ten__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.portfolio-ten__middle {
    position: relative;
    top: 51%;
    transform: translateY(-50%);
    line-height: 0.8;
    width: 100%;
    height: 100%;
}

.portfolio-ten__item-wrapper {
    display: flex;
    width: 100%;
    gap: 24px;
    box-sizing: border-box;
    height: 100vh;
    max-height: calc(100vh - 200px);
    overflow: hidden;
}

@media (max-width: 767px) {
    .portfolio-ten__item-wrapper {
        flex-direction: column;
        max-height: calc(100vh - 240px);
    }
}

.portfolio-ten__item {
    position: relative;
    z-index: 5;
    overflow: hidden;
    max-height: calc(100vh - 200px);
    height: 100%;
    flex: 1;
    transition: 0.5s;
    margin: 0;
}

.portfolio-ten__item.active {
    flex: 1 1 71.2%;
}

.portfolio-ten__item.active .portfolio-ten__item__content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.portfolio-ten__item.active .portfolio-ten__item__content__inner {
    transform: translateY(0);
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

.portfolio-ten__item__image {
    position: relative;
    height: 100%;
    transition: all 0.6s ease-out;
}

.portfolio-ten__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s ease-out;
}

.portfolio-ten__item__image__small {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.portfolio-ten__item__content {
    position: absolute;
    z-index: 2;
    left: 200px;
    bottom: 0;
    background-color: var(--ogoni-white, #ffffff);
    padding: 29px 30px 22px;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.77, 0, 0.175, 1) 0.1s;
    transform: translateY(50%);
    width: calc(100% - 320px);
}

@media (max-width: 1599px) {
    .portfolio-ten__item__content {
        width: calc(100% - 100px);
        left: 50px;
    }
}

@media (max-width: 767px) {
    .portfolio-ten__item__content {
        width: calc(100% - 30px);
        left: 15px;
    }
}

.portfolio-ten__item__content__inner {
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(30%);
}

.portfolio-ten__item__meta {
    font-size: 14px;
    text-transform: capitalize;
    margin: 0 0 10px;
}

.portfolio-ten__item__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 42px;
    font-size: 32px;
}

@media (max-width: 1199px) {
    .portfolio-ten__item__title {
        line-height: 34px;
        font-size: 24px;
    }
}

.portfolio-ten__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-ten__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-ten__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-ten__item__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 22px;
    bottom: 5px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-ten__item__year {
    position: absolute;
    bottom: 2px;
    top: 0;
    right: 0;
    z-index: 2;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.portfolio-ten .slick-arrow {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--ogoni-text, #666666);
    font-size: 14px;
    border: none;
    outline: none;
    position: absolute;
    z-index: 5;
    right: 215px;
    bottom: -50px;
    padding: 0;
    margin: 0;
    transition: all 500ms ease;
}

@media (max-width: 1299px) {
    .portfolio-ten .slick-arrow {
        display: none !important;
    }
}

.portfolio-ten .slick-arrow:hover {
    color: var(--ogoni-black, #131313);
}

.portfolio-ten .slick-arrow.prev {
    right: 615px;
}

.portfolio-ten .slick-arrow.prev::after {
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 370px;
    height: 1px;
    content: "";
    background-color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.portfolio-ten .slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    right: 10px;
    bottom: -46px;
    z-index: 5;
}

@media (max-width: 767px) {
    .portfolio-ten .slick-dots {
        right: 0;
        bottom: -30px;
        left: 0;
    }
}

.portfolio-ten .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    transition: all 500ms ease;
    position: relative;
    cursor: pointer;
}

.portfolio-ten .slick-dots li::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 2px;
    height: 2px;
    content: "";
    background-color: var(--ogoni-black, #131313);
    transform: scale(0);
    transition: all 500ms ease;
    border-radius: 50%;
}

.portfolio-ten .slick-dots li button {
    display: none;
}

.portfolio-ten .slick-dots li:hover,
.portfolio-ten .slick-dots li.slick-active {
    border-color: var(--ogoni-black, #131313);
}

.portfolio-ten .slick-dots li:hover::after,
.portfolio-ten .slick-dots li.slick-active::after {
    transform: scale(1);
}

.portfolio-ten .slick-slide {
    padding: 0;
}

.portfolio-eleventh {
    padding: 0 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    margin: auto;
    padding: 100px 85px;
}

@media (max-width: 1599px) {
    .portfolio-eleventh {
        padding: 100px 20px;
    }
}

@media (max-width: 767px) {
    .portfolio-eleventh {
        padding: 80px 0;
    }
}

.portfolio-eleventh__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.portfolio-eleventh__star {
    position: absolute;
    width: 290px;
    height: 700px;
    left: 18%;
    top: 10%;
    background-position: left top;
    background-repeat: no-repeat;
    animation: zoomsIn 4s infinite linear;
}

@media (max-width: 1199px) {
    .portfolio-eleventh__star {
        display: none;
    }
}

.portfolio-eleventh__middle {
    position: relative;
    top: 51%;
    transform: translateY(-50%);
    line-height: 0.8;
    width: 100%;
    height: 100%;
    padding-right: 212px;
}

@media (max-width: 1599px) {
    .portfolio-eleventh__middle {
        padding-right: 190px;
    }
}

@media (max-width: 1399px) {
    .portfolio-eleventh__middle {
        padding-right: 160px;
    }
}

@media (max-width: 991px) {
    .portfolio-eleventh__middle {
        padding-right: 0;
    }
}

.portfolio-eleventh__item {
    position: relative;
    z-index: 5;
    overflow: hidden;
    max-height: calc(100vh - 200px);
    height: 100%;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 0;
}

@media (max-width: 767px) {
    .portfolio-eleventh__item {
        flex-direction: column;
        padding: 20px 15px 0;
        max-height: calc(100vh - 230px);
    }
}

.portfolio-eleventh__item__image {
    position: relative;
    height: 100vh;
    transition: all 0.6s ease-out;
    display: flex;
    align-items: center;
    width: 62.8%;
}

@media (max-width: 1199px) {
    .portfolio-eleventh__item__image {
        width: 60%;
    }
}

@media (max-width: 767px) {
    .portfolio-eleventh__item__image {
        width: 100%;
    }
}

.portfolio-eleventh__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s ease-out;
}

.portfolio-eleventh__item__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 37.2%;
}

@media (max-width: 1199px) {
    .portfolio-eleventh__item__content {
        width: 40%;
    }
}

@media (max-width: 767px) {
    .portfolio-eleventh__item__content {
        width: 100%;
        margin-bottom: 25px;
    }
}

.portfolio-eleventh__item__meta {
    font-size: 16px;
    text-transform: capitalize;
    display: flex;
    gap: 17px;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 10px;
}

.portfolio-eleventh__item__meta img {
    flex-shrink: 0;
    width: 24px !important;
    height: 24px;
    animation: rotated2 10s infinite linear;
}

.portfolio-eleventh__item__title {
    margin: 0;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 92px;
    font-size: 82px;
}

@media (max-width: 1699px) {
    .portfolio-eleventh__item__title {
        line-height: 80px;
        font-size: 70px;
    }
}

@media (max-width: 1599px) {
    .portfolio-eleventh__item__title {
        line-height: 70px;
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    .portfolio-eleventh__item__title {
        line-height: 55px;
        font-size: 45px;
    }
}

@media (max-width: 767px) {
    .portfolio-eleventh__item__title {
        line-height: 50px;
        font-size: 40px;
    }
}

.portfolio-eleventh__item__title span {
    font-weight: 400;
    font-style: italic;
}

.portfolio-eleventh .slick-arrow {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--ogoni-text, #666666);
    font-size: 14px;
    border: none;
    outline: none;
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: -50px;
    padding: 0;
    margin: 0;
    transition: all 500ms ease;
}

@media (max-width: 1299px) {
    .portfolio-eleventh .slick-arrow {
        display: none !important;
    }
}

.portfolio-eleventh .slick-arrow:hover {
    color: var(--ogoni-black, #131313);
}

.portfolio-eleventh .slick-arrow.prev {
    right: 400px;
}

.portfolio-eleventh .slick-arrow.prev::after {
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 370px;
    height: 1px;
    content: "";
    background-color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.portfolio-eleventh .slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    right: -210px;
    bottom: -46px;
    z-index: 5;
}

@media (max-width: 1599px) {
    .portfolio-eleventh .slick-dots {
        right: -185px;
    }
}

@media (max-width: 1399px) {
    .portfolio-eleventh .slick-dots {
        right: -155px;
    }
}

@media (max-width: 991px) {
    .portfolio-eleventh .slick-dots {
        right: 0;
    }
}

@media (max-width: 767px) {
    .portfolio-eleventh .slick-dots {
        right: 0;
        bottom: -30px;
        left: 0;
    }
}

.portfolio-eleventh .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    transition: all 500ms ease;
    position: relative;
    cursor: pointer;
}

.portfolio-eleventh .slick-dots li::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 2px;
    height: 2px;
    content: "";
    background-color: var(--ogoni-black, #131313);
    transform: scale(0);
    transition: all 500ms ease;
    border-radius: 50%;
}

.portfolio-eleventh .slick-dots li button {
    display: none;
}

.portfolio-eleventh .slick-dots li:hover,
.portfolio-eleventh .slick-dots li.slick-active {
    border-color: var(--ogoni-black, #131313);
}

.portfolio-eleventh .slick-dots li:hover::after,
.portfolio-eleventh .slick-dots li.slick-active::after {
    transform: scale(1);
}

.portfolio-eleventh .slick-slide {
    padding: 0;
}

.portfolio-eleventh__nav {
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 188px;
    height: 100%;
    overflow: hidden;
}

@media (max-width: 1599px) {
    .portfolio-eleventh__nav {
        width: 170px;
    }
}

@media (max-width: 1399px) {
    .portfolio-eleventh__nav {
        width: 140px;
    }
}

@media (max-width: 991px) {
    .portfolio-eleventh__nav {
        display: none;
    }
}

.portfolio-eleventh__nav__item {
    position: relative;
    width: 100%;
    height: 233px;
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1599px) {
    .portfolio-eleventh__nav__item {
        height: 172px;
    }
}

.portfolio-eleventh__nav__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.portfolio-twelve {
    overflow: hidden;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
    counter-reset: count;
    z-index: 1;
    width: 100%;
    height: 100vh;
    margin: auto;
    padding: 100px 85px;
}

@media (max-width: 1599px) {
    .portfolio-twelve {
        padding: 100px 20px;
    }
}

@media (max-width: 1199px) {
    .portfolio-twelve {
        height: auto;
    }
}

.portfolio-twelve__middle {
    position: relative;
    top: 51%;
    transform: translateY(-50%);
    line-height: 0.8;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 200px);
}

@media (max-width: 1199px) {
    .portfolio-twelve__middle {
        max-height: 100%;
        transform: none;
        top: 0;
    }
}

.portfolio-twelve__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.portfolio-twelve__item {
    position: relative;
    height: 100%;
}

.portfolio-twelve__item__image {
    position: relative;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transition: all 0.5s;
    transition-delay: 0.2s;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    max-height: calc(100vh - 200px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1199px) {
    .portfolio-twelve__item__image {
        max-height: 100%;
        margin-top: 45px;
    }
}

.portfolio-twelve__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease-out;
}

@media (max-width: 1199px) {
    .portfolio-twelve__item__image img {
        height: auto;
    }
}

.portfolio-twelve__item .col-lg-7 {
    transform: scale(1.1) translatex(-50px);
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    height: 100%;
}

.portfolio-twelve__item__content {
    position: relative;
    padding: 0 0 22px 96px;
    margin-bottom: 20px;
    counter-increment: count;
    border-bottom: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

@media (max-width: 1499px) {
    .portfolio-twelve__item__content {
        padding: 0 0 17px 96px;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .portfolio-twelve__item__content {
        padding: 0 0 17px 0;
        margin-bottom: 15px;
    }
}

.portfolio-twelve__item__content:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.portfolio-twelve__item__number {
    font-size: 14px;
    color: var(--ogoni-text, #666666);
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 38px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

@media (max-width: 767px) {
    .portfolio-twelve__item__number {
        position: relative;
        margin: 10px 0 15px;
    }
}

.portfolio-twelve__item__number::before {
    content: counters(count, ".", decimal-leading-zero);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-twelve__item__title {
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 42px;
    font-size: 32px;
}

@media (max-width: 1499px) {
    .portfolio-twelve__item__title {
        line-height: 40px;
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .portfolio-twelve__item__title {
        line-height: 40px;
        font-size: 30px;
    }
}

.portfolio-twelve__item__title span {
    font-weight: normal;
    font-style: italic;
}

.portfolio-twelve__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-twelve__item__title a:hover {
    background-size: 100% 1px;
}

.portfolio-twelve__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.portfolio-twelve .slick-arrow {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--ogoni-text, #666666);
    font-size: 14px;
    border: none;
    outline: none;
    position: absolute;
    z-index: 5;
    right: 215px;
    bottom: -50px;
    padding: 0;
    margin: 0;
    transition: all 500ms ease;
}

@media (max-width: 1299px) {
    .portfolio-twelve .slick-arrow {
        display: none !important;
    }
}

.portfolio-twelve .slick-arrow:hover {
    color: var(--ogoni-black, #131313);
}

.portfolio-twelve .slick-arrow.prev {
    right: 615px;
}

.portfolio-twelve .slick-arrow.prev::after {
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 370px;
    height: 1px;
    content: "";
    background-color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.portfolio-twelve .slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    right: 10px;
    bottom: -46px;
    z-index: 5;
}

@media (max-width: 767px) {
    .portfolio-twelve .slick-dots {
        right: 0;
        bottom: 0;
        left: 0;
        position: relative;
        margin-top: 35px;
    }
}

.portfolio-twelve .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    transition: all 500ms ease;
    position: relative;
    cursor: pointer;
}

.portfolio-twelve .slick-dots li::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 2px;
    height: 2px;
    content: "";
    background-color: var(--ogoni-black, #131313);
    transform: scale(0);
    transition: all 500ms ease;
    border-radius: 50%;
}

.portfolio-twelve .slick-dots li button {
    display: none;
}

.portfolio-twelve .slick-dots li:hover,
.portfolio-twelve .slick-dots li.slick-active {
    border-color: var(--ogoni-black, #131313);
}

.portfolio-twelve .slick-dots li:hover::after,
.portfolio-twelve .slick-dots li.slick-active::after {
    transform: scale(1);
}

.portfolio-twelve .slick-slide {
    padding: 0;
}

.portfolio-twelve .slick-slide.slick-current.slick-active .col-lg-7 {
    opacity: 1;
    transform: scale(1) translatex(0);
}

.portfolio-twelve .slick-slide.slick-current.slick-active .portfolio-twelve__item__image {
    opacity: 1;
    visibility: visible;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.portfolio-thirteen {
    overflow: hidden;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
    counter-reset: count;
    z-index: 1;
    width: 100%;
    height: 100vh;
    margin: auto;
    padding: 100px 0;
}

.portfolio-thirteen__middle {
    position: relative;
    top: 51%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
}

@media (max-width: 1199px) {
    .portfolio-thirteen__middle {
        max-height: 100%;
        transform: none;
        top: 0;
    }
}

.portfolio-thirteen__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.portfolio-thirteen__shape-one {
    position: absolute;
    height: 70px;
    width: 70px;
    left: 40%;
    top: 180px;
    animation: rotated 10s infinite linear;
}

@media (max-width: 767px) {
    .portfolio-thirteen__shape-one {
        display: none;
    }
}

.portfolio-thirteen__shape-two {
    position: absolute;
    height: 47px;
    width: 47px;
    left: 29%;
    bottom: 22%;
    z-index: 2;
    animation: rotated2 10s infinite linear;
}

@media (max-width: 767px) {
    .portfolio-thirteen__shape-two {
        display: none;
    }
}

.portfolio-thirteen__shape-three {
    position: absolute;
    height: 24px;
    width: 24px;
    left: 44%;
    bottom: 29%;
    z-index: 2;
    animation: rotated 10s infinite linear;
}

@media (max-width: 767px) {
    .portfolio-thirteen__shape-three {
        display: none;
    }
}

.portfolio-thirteen__shape-four {
    position: absolute;
    height: 60px;
    width: 74px;
    left: 42%;
    bottom: 7%;
    z-index: 2;
    animation: zoomsIn 2s infinite alternate;
}

@media (max-width: 767px) {
    .portfolio-thirteen__shape-four {
        display: none;
    }
}

.portfolio-thirteen__item {
    position: relative;
    z-index: 5;
    overflow: hidden;
    max-height: calc(100vh - 180px);
    height: 100%;
    transition: 0.5s;
    margin: 0;
    display: flex;
    align-items: center;
}

@media (max-width: 1199px) {
    .portfolio-thirteen__item {
        max-height: calc(100vh - 100px);
    }
}

@media (max-width: 767px) {
    .portfolio-thirteen__item {
        max-height: calc(100vh - 200px);
    }
}

.portfolio-thirteen__bg {
    width: 50.6%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transition: all 0.5s;
    transition-delay: 0.2s;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 991px) {
    .portfolio-thirteen__bg {
        display: none;
    }
}

.portfolio-thirteen__content {
    position: relative;
    z-index: 2;
}

@media (max-width: 1499px) {
    .portfolio-thirteen__content {
        margin-left: 24px;
    }
}

.portfolio-thirteen__content::after {
    position: absolute;
    left: -30px;
    bottom: -100px;
    z-index: -1;
    content: "";
    background-color: var(--ogoni-white, #ffffff);
    width: 776px;
    height: 390px;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: all 0.5s;
    transition-delay: 0.3s;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 1199px) {
    .portfolio-thirteen__content::after {
        display: none;
    }
}

.portfolio-thirteen__sub-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 12px;
}

.portfolio-thirteen__sub-title img {
    flex-shrink: 0;
    width: 24px !important;
    height: 24px;
    animation: rotated2 10s infinite linear;
}

.portfolio-thirteen__title {
    font-size: 82px;
    line-height: 92px;
    font-weight: 800;
    color: var(--ogoni-black, #131313);
    text-transform: capitalize;
    margin: 0 0 31px;
    max-width: 550px;
}

@media (max-width: 1599px) {
    .portfolio-thirteen__title {
        font-size: 72px;
        line-height: 82px;
        margin-bottom: 24px;
    }
}

@media (max-width: 1199px) {
    .portfolio-thirteen__title {
        font-size: 60px;
        line-height: 72px;
    }
}

@media (max-width: 991px) {
    .portfolio-thirteen__title {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .portfolio-thirteen__title {
        font-size: 45px;
        line-height: 55px;
    }
}

.portfolio-thirteen__title span {
    font-weight: normal;
    font-style: italic;
}

.portfolio-thirteen__text {
    margin: 0 0 43px;
    max-width: 450px;
}

@media (max-width: 1599px) {
    .portfolio-thirteen__text {
        margin: 0 0 33px;
    }
}

@media (max-width: 991px) {
    .portfolio-thirteen__text {
        max-width: 100%;
    }
}

.portfolio-thirteen__btn {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.portfolio-thirteen .slick-dots {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 10px;
    list-style: none;
    max-width: 1296px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 45px;
    padding: 0;
    margin: 0 auto;
    z-index: 3;
}

@media (max-width: 1599px) {
    .portfolio-thirteen .slick-dots {
        bottom: 10px;
    }
}

@media (max-width: 1399px) {
    .portfolio-thirteen .slick-dots {
        max-width: 1120px;
        bottom: 0;
    }
}

@media (max-width: 1199px) {
    .portfolio-thirteen .slick-dots {
        bottom: -25px;
        max-width: 900px;
    }
}

@media (max-width: 991px) {
    .portfolio-thirteen .slick-dots {
        bottom: -25px;
        max-width: 650px;
    }
}

@media (max-width: 767px) {
    .portfolio-thirteen .slick-dots {
        max-width: 100%;
        left: 40px;
    }
}

.portfolio-thirteen .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    transition: all 500ms ease;
    position: relative;
    cursor: pointer;
}

.portfolio-thirteen .slick-dots li::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 2px;
    height: 2px;
    content: "";
    background-color: var(--ogoni-black, #131313);
    transform: scale(0);
    transition: all 500ms ease;
    border-radius: 50%;
}

.portfolio-thirteen .slick-dots li button {
    display: none;
}

.portfolio-thirteen .slick-dots li:hover,
.portfolio-thirteen .slick-dots li.slick-active {
    border-color: var(--ogoni-black, #131313);
}

.portfolio-thirteen .slick-dots li:hover::after,
.portfolio-thirteen .slick-dots li.slick-active::after {
    transform: scale(1);
}

.portfolio-thirteen .slick-slider {
    height: 100%;
}

.portfolio-thirteen .slick-slide {
    padding: 0;
    height: 100vh;
}

.portfolio-thirteen .slick-slide.slick-current.slick-active .portfolio-thirteen__bg {
    opacity: 1;
    visibility: visible;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.portfolio-thirteen .slick-slide.slick-current.slick-active .portfolio-thirteen__content::after {
    opacity: 1;
    visibility: visible;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.portfolio-page {
    padding: 120px 0;
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    counter-reset: count;
}

@media (max-width: 767px) {
    .portfolio-page {
        padding: 80px 0;
    }
}

.portfolio-page__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.portfolio-page .post-pagination {
    margin-top: 50px;
}

@media (max-width: 767px) {
    .portfolio-page .post-pagination {
        margin-top: 0;
    }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding: 207px 0 120px;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
}

@media (max-width: 767px) {
    .portfolio-details {
        padding: 140px 0 80px;
    }
}

.portfolio-details__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.portfolio-details__content {
    position: relative;
}

.portfolio-details__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
}

.portfolio-details__meta img {
    width: 24px;
    height: 24px;
    animation: rotated 10s infinite linear;
}

.portfolio-details__title {
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 52px;
    text-transform: capitalize;
    line-height: 62px;
}

@media (max-width: 767px) {
    .portfolio-details__title {
        font-size: 36px;
        line-height: 45px;
    }
}

@media (min-width: 1400px) {
    .portfolio-details__title {
        max-width: 527px;
    }
}

.portfolio-details__text {
    margin-bottom: 35px;
}

@media (min-width: 1400px) {
    .portfolio-details__text {
        max-width: 527px;
    }
}

.portfolio-details__info {
    position: relative;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 35px 0;
}

@media (max-width: 500px) {
    .portfolio-details__info {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px 0;
    }
}

.portfolio-details__info li {
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
}

.portfolio-details__info li span {
    display: block;
    font-weight: 400;
    color: var(--ogoni-text, #666666);
}

.portfolio-details__social {
    position: relative;
    border-top: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    padding: 22px 0 0;
    margin: 113px 0 0;
}

@media (min-width: 1400px) {
    .portfolio-details__social {
        max-width: 527px;
    }
}

@media (max-width: 767px) {
    .portfolio-details__social {
        margin-top: 70px;
    }
}

.portfolio-details__social__text {
    margin: 0 0 23px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
}

.portfolio-details__social__wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.portfolio-details__social a {
    width: 50px;
    height: 50px;
    font-size: 16px;
    color: var(--ogoni-black, #131313);
    background-color: var(--ogoni-white, #ffffff);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-details__social a i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.portfolio-details__social a:hover {
    color: var(--ogoni-white, #ffffff);
    background-color: var(--ogoni-black, #131313);
}

.portfolio-details__social a:hover i {
    animation: iconTranslateY 0.4s forwards;
}

.portfolio-details__gallery {
    position: relative;
    overflow: hidden;
    height: 636px;
}

@media (max-width: 991px) {
    .portfolio-details__gallery {
        height: auto;
        overflow: visible;
        margin-top: 40px;
    }
}

.portfolio-details__gallery__item {
    position: absolute;
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .portfolio-details__gallery__item {
        position: relative;
        margin-top: 24px;
    }
}

.portfolio-details__gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .portfolio-details__gallery img {
        height: auto;
    }
}

.portfolio-details--two {
    position: relative;
    padding: 106px 0 44px;
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .portfolio-details--two {
        padding: 106px 70px 44px;
    }
}

.portfolio-details--two .portfolio-details__text {
    max-width: 100%;
    margin: 0;
}

.portfolio-details--three {
    position: relative;
}

.portfolio-details--three__right {
    position: relative;
}

@media (max-width: 991px) {
    .portfolio-details--three__right {
        margin-top: 40px;
    }
}

.portfolio-details--three__right .portfolio-details__text {
    max-width: 100%;
}

.portfolio-details--three__image {
    position: relative;
    margin: 114px 101px 0;
}

@media (max-width: 1799px) {
    .portfolio-details--three__image {
        margin: 114px 50px 0;
    }
}

@media (max-width: 1499px) {
    .portfolio-details--three__image {
        margin: 114px 15px 0;
    }
}

@media (max-width: 767px) {
    .portfolio-details--three__image {
        margin: 75px 15px 0;
    }
}

.portfolio-details--three__image img {
    width: 100%;
    display: block;
}

.portfolio-details--three__middle {
    position: relative;
    max-width: 636px;
    margin: 43px auto 110px;
}

@media (max-width: 767px) {
    .portfolio-details--three__middle {
        margin-bottom: 70px;
    }
}

.portfolio-details--three__middle__title {
    font-weight: 700;
    font-size: 32px;
    text-transform: capitalize;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .portfolio-details--three__middle__title {
        font-size: 30px;
        line-height: 40px;
    }
}

.portfolio-details--three__middle__text {
    margin-bottom: 15px;
}

.portfolio-details--three__middle__list {
    position: relative;
    margin: 35px 0 44px;
    padding: 0;
    list-style: none;
}

.portfolio-details--three__middle__list li {
    position: relative;
    padding-left: 36px;
    margin-top: 20px;
}

.portfolio-details--three__middle__list li i {
    font-size: 15px;
    color: var(--ogoni-black, #131313);
    position: absolute;
    left: 0;
    top: 6px;
}

.portfolio-details--three__bottom {
    position: relative;
}

.portfolio-details--three__bottom__content {
    position: relative;
    margin-top: -7px;
}

.portfolio-details--three__bottom__text {
    margin: 0 0 15px;
}

.portfolio-details--three__bottom .mt42 {
    margin-top: 42px;
}

.portfolio-details--three__bottom__image {
    position: relative;
    text-align: right;
}

@media (max-width: 991px) {
    .portfolio-details--three__bottom__image {
        margin-top: 40px;
        text-align: left;
    }
}

.portfolio-details--three__bottom__image img {
    max-width: 100%;
    height: auto;
}

.portfolio-details--three__faq {
    position: relative;
    border-top: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    margin: 114px 0 0;
    padding: 120px 0 0;
}

@media (max-width: 767px) {
    .portfolio-details--three__faq {
        margin: 74px 0 0;
        padding: 80px 0 0;
    }
}

.portfolio-details--three__faq__image {
    position: relative;
}

.portfolio-details--three__faq__image img {
    width: 100%;
    height: auto;
}

.portfolio-details--three__faq__content {
    position: relative;
    margin-top: -9px;
}

@media (max-width: 991px) {
    .portfolio-details--three__faq__content {
        margin-top: 40px;
    }
}

@media (min-width: 1400px) {
    .portfolio-details--three__faq__content {
        padding-left: 100px;
    }

    .portfolio-details--three__faq__content .portfolio-details--three__middle__text {
        margin-right: -100px;
    }
}

.portfolio-details--three__faq__content .faq-one__accordion {
    margin-top: 45px;
}

.portfolio-details--three__pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 120px;
}

@media (max-width: 767px) {
    .portfolio-details--three__pagination {
        margin-top: 80px;
    }
}

.portfolio-details--three__pagination__prev {
    position: relative;
}

.portfolio-details--three__pagination__prev .ogoni-circle-btn__text i {
    font-size: 18px;
    transform: rotate(-45deg);
    display: inline-block;
    position: relative;
    top: 3px;
    margin-right: 8px;
}

.portfolio-details--three__pagination__prev:hover .ogoni-circle-btn__text {
    color: var(--ogoni-white, #ffffff);
}

.portfolio-details--three__pagination__next {
    position: relative;
}

.portfolio-details--three__pagination__next .ogoni-circle-btn__text i {
    font-size: 18px;
    transform: rotate(45deg);
    display: inline-block;
    position: relative;
    top: 3px;
    margin-left: 8px;
}

.portfolio-details--three__pagination__next:hover .ogoni-circle-btn__text {
    color: var(--ogoni-white, #ffffff);
}

.portfolio-details--three__pagination .ogoni-circle-btn {
    width: 149px;
    height: 149px;
}

.portfolio-details--three__pagination .ogoni-circle-btn__text {
    font-weight: normal;
    font-family: var(--ogoni-font, "DM Sans", serif);
    gap: 0;
    color: var(--ogoni-text, #666666);
}

.portfolio-details--three__pagination .ogoni-circle-btn__dot {
    background-color: var(--ogoni-black, #131313);
}

.portfolio-details-slider {
    padding: 0 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
    z-index: 1;
    margin: auto;
    padding: 0 88px;
}

@media (max-width: 1299px) {
    .portfolio-details-slider {
        padding: 0 70px;
    }
}

@media (max-width: 1199px) {
    .portfolio-details-slider {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .portfolio-details-slider {
        padding: 0 0;
    }
}

.portfolio-details-slider__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.portfolio-details-slider__item {
    position: relative;
}

.portfolio-details-slider__item img {
    width: 100%;
    height: 100%;
    transition: all 0.6s ease-out;
    object-fit: cover;
    object-position: center;
}

.portfolio-details-slider__carousel {
    position: relative;
}

.portfolio-details-slider .slick-arrow {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--ogoni-text, #666666);
    font-size: 14px;
    border: none;
    outline: none;
    position: absolute;
    z-index: 5;
    right: 308px;
    bottom: -64px;
    padding: 0;
    margin: 0;
    transition: all 500ms ease;
}

@media (max-width: 1299px) {
    .portfolio-details-slider .slick-arrow {
        display: none !important;
    }
}

.portfolio-details-slider .slick-arrow:hover {
    color: var(--ogoni-black, #131313);
}

.portfolio-details-slider .slick-arrow.prev {
    right: 710px;
}

.portfolio-details-slider .slick-arrow.prev::after {
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 370px;
    height: 1px;
    content: "";
    background-color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.portfolio-details-slider .slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    right: 100px;
    bottom: -55px;
    z-index: 5;
}

@media (max-width: 1199px) {
    .portfolio-details-slider .slick-dots {
        right: 50px;
    }
}

@media (max-width: 767px) {
    .portfolio-details-slider .slick-dots {
        position: relative;
        right: 0;
        bottom: 0;
        left: 0;
        margin-top: 30px;
    }
}

.portfolio-details-slider .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    transition: all 500ms ease;
    position: relative;
    cursor: pointer;
}

.portfolio-details-slider .slick-dots li::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 2px;
    height: 2px;
    content: "";
    background-color: var(--ogoni-black, #131313);
    transform: scale(0);
    transition: all 500ms ease;
    border-radius: 50%;
}

.portfolio-details-slider .slick-dots li button {
    display: none;
}

.portfolio-details-slider .slick-dots li:hover,
.portfolio-details-slider .slick-dots li.slick-active {
    border-color: var(--ogoni-black, #131313);
}

.portfolio-details-slider .slick-dots li:hover::after,
.portfolio-details-slider .slick-dots li.slick-active::after {
    transform: scale(1);
}

.portfolio-details-slider .slick-slide {
    padding: 0 12px;
}

/*--------------------------------------------------------------
# Why Choose
--------------------------------------------------------------*/
.why-choose-one {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0 0;
    counter-reset: count;
}

@media (max-width: 767px) {
    .why-choose-one {
        padding: 80px 0 0;
    }
}

.why-choose-one--home-three {
    background-color: var(--ogoni-white, #ffffff);
    padding: 120px 0;
}

@media (min-width: 1300px) {
    .why-choose-one--home-three {
        border-left: 50px solid var(--ogoni-gray, #f9f9f9);
        border-right: 50px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (min-width: 1400px) {
    .why-choose-one--home-three {
        border-left: 100px solid var(--ogoni-gray, #f9f9f9);
        border-right: 100px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (max-width: 767px) {
    .why-choose-one--home-three {
        padding: 80px 0;
    }
}

.why-choose-one--home-three .why-choose-one__image::after {
    background-color: var(--ogoni-gray, #f9f9f9);
}

.why-choose-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.why-choose-one .sec-title {
    padding-bottom: 35px;
}

.why-choose-one__image {
    position: relative;
    z-index: 2;
}

@media (max-width: 1199px) {
    .why-choose-one__image {
        max-width: 636px;
        margin-bottom: 40px;
    }
}

.why-choose-one__image__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 120px;
    top: 110px;
    font-size: 20px;
    color: var(--ogoni-base, #C2EA1D);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .why-choose-one__image__star {
        display: none;
    }
}

.why-choose-one__image__shape {
    position: absolute;
    right: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 102px;
    display: flex;
    align-items: center;
    animation: rotated2 10s infinite linear;
}

@media (max-width: 767px) {
    .why-choose-one__image__shape {
        display: none;
    }
}

.why-choose-one__image::after {
    position: absolute;
    right: 0;
    top: -30px;
    width: 712px;
    height: 712px;
    background-color: var(--ogoni-white, #ffffff);
    border-radius: 50%;
    content: "";
    z-index: -1;
    animation: zoomsIn 2s infinite alternate;
}

@media (max-width: 767px) {
    .why-choose-one__image::after {
        display: none;
    }
}

.why-choose-one__image__one {
    position: relative;
    margin-bottom: 24px;
}

.why-choose-one__image__one img {
    max-width: 100%;
    height: auto;
}

.why-choose-one__image__two {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    transition-delay: 0.55s !important;
}

@media (max-width: 767px) {
    .why-choose-one__image__two {
        display: none;
    }
}

.why-choose-one__image__two img {
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
}

.why-choose-one__image__two img:nth-child(2) {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 100%, 55% 50%, 0% 0%);
    animation: shapeMove 3s linear 0s infinite;
}

.why-choose-one__content {
    position: relative;
}

.why-choose-one__sub-title {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    text-transform: uppercase;
    letter-spacing: 30%;
    margin: 0 0 15px;
}

.why-choose-one__sub-title img {
    flex-shrink: 0;
    height: 18px;
}

.why-choose-one__title {
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    margin: 0 0 13px;
}

@media (max-width: 767px) {
    .why-choose-one__title {
        font-size: 30px;
        line-height: 38px;
    }
}

.why-choose-one__text-one {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 15px;
}

.why-choose-one__text {
    margin: 0 0 43px;
}

.why-choose-one__box {
    position: relative;
    background-color: var(--ogoni-white, #ffffff);
    padding: 30px 28px;
    counter-increment: count;
}

.why-choose-one__box__icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 50px;
    color: var(--ogoni-black, #131313);
}

.why-choose-one__box:hover .why-choose-one__box__icon {
    animation-name: wobbleTop;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

.why-choose-one__box__title {
    font-size: 18px;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 700;
    margin: 21px 0 24px;
}

.why-choose-one__box__number {
    margin: 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    text-transform: lowercase;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    padding: 0 9.5px;
}

.why-choose-one__box__number::after {
    content: counters(count, ".");
    position: relative;
    display: inline-block;
    margin-left: 4px;
}

.why-choose-one__box__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 28px;
    bottom: 33px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-one__box:hover .why-choose-one__box__star {
    color: var(--ogoni-base, #C2EA1D);
}

.why-choose-two {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0 0;
    counter-reset: count;
}

@media (max-width: 767px) {
    .why-choose-two {
        padding: 80px 0 0;
    }
}

.why-choose-two__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.why-choose-two__shape {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 70px;
}

.why-choose-two__shape__one {
    position: relative;
    margin-top: 100px;
}

.why-choose-two__shape__one img {
    animation: zoomsIn 2s infinite alternate;
}

.why-choose-two__shape__two {
    position: relative;
    opacity: 0.05;
}

.why-choose-two__shape__two img {
    animation: rotated 10s infinite linear;
}

.why-choose-two__image {
    position: relative;
    z-index: 2;
    margin: 0 0 60px;
}

.why-choose-two__image img {
    width: 100%;
    height: auto;
}

.why-choose-two ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .why-choose-two ul {
        flex-direction: column;
        gap: 24px;
    }
}

.why-choose-two__box {
    position: relative;
    background-color: var(--ogoni-white, #ffffff);
    padding: 30px 28px;
    counter-increment: count;
    max-width: 196px;
}

.why-choose-two__box__icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 50px;
    color: var(--ogoni-black, #131313);
}

.why-choose-two__box:hover .why-choose-two__box__icon {
    animation-name: wobbleTop;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

.why-choose-two__box__title {
    font-size: 18px;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 700;
    margin: 21px 0 24px;
}

.why-choose-two__box__number {
    margin: 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    text-transform: lowercase;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    padding: 0 9.5px;
}

.why-choose-two__box__number::after {
    content: counters(count, ".");
    position: relative;
    display: inline-block;
    margin-left: 4px;
}

.why-choose-two__box__star {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 28px;
    bottom: 33px;
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
    animation: rotated 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-two__box:hover .why-choose-two__box__star {
    color: var(--ogoni-base, #C2EA1D);
}

.why-choose-three {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 20px 0;
    counter-reset: count;
}

.why-choose-three__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.why-choose-three__content {
    position: relative;
}

@media (min-width: 1400px) {
    .why-choose-three__content {
        max-width: 536px;
    }
}

.why-choose-three__sub-title {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    /* text-transform: uppercase; */
    letter-spacing: 30%;
    margin: 0 0 15px;
}

.why-choose-three__sub-title img {
    flex-shrink: 0;
    height: 18px;
}

.why-choose-three__title {
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    margin: 0 0 13px;
}

.why-choose-three__title span {
    font-weight: 400;
    font-style: italic;
}

@media (max-width: 767px) {
    .why-choose-three__title {
        font-size: 30px;
        line-height: 38px;
    }
}

.why-choose-three__text {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 32px;
}

.why-choose-three__accordion {
    position: relative;
}

.why-choose-three__accordion .accrodion {
    margin: 20px 0 0;
    position: relative;
    background-color: var(--ogoni-white, #ffffff);
    border-radius: 5px;
}

.why-choose-three__accordion .accrodion::after {
    position: absolute;
    left: 29px;
    top: 33px;
    width: 5px;
    height: 5px;
    content: "";
    background-color: var(--ogoni-black, #131313);
    border-radius: 50%;
}

.why-choose-three__accordion .accrodion-title {
    padding: 25px 28px 26px;
    padding-left: 54px;
    cursor: pointer;
}

.why-choose-three__accordion .accrodion-title h4 {
    font-weight: bold;
    color: var(--ogoni-black, #131313);
    font-size: 16px;
    margin: 0;
    transition: all 500ms ease;
    position: relative;
}

.why-choose-three__accordion .accrodion-title__icon {
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
}

.why-choose-three__accordion .accrodion-title__icon::after {
    width: 100%;
    height: 100%;
    position: absolute;
    color: inherit;
    top: 0;
    left: 0;
    font-family: "icomoon" !important;
    font-size: 10px;
    content: "\e90b";
    font-weight: normal;
    transition: all 500ms ease;
}

.why-choose-three__accordion .active .accrodion-title__icon::after {
    transform: rotate(90deg);
}

.why-choose-three__accordion .accrodion-content .inner {
    padding: 0 28px 26px;
    margin-top: -10px;
    padding-left: 54px;
}

.why-choose-three__accordion .accrodion-content p {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
}

.why-choose-three__image {
    position: relative;
    z-index: 2;
    text-align: right;
    padding-bottom: 41px;
}

@media (min-width: 1200px) {
    .why-choose-three__image {
        padding-left: 100px;
    }
}

@media (max-width: 1199px) {
    .why-choose-three__image {
        margin-top: 40px;
    }
}

.why-choose-three__image>img {
    max-width: 100%;
    height: auto;
    /* height: 560px; */
    object-fit: cover;
}

@media (max-width: 767px) {
    .why-choose-three__image>img {
        height: 400px;
    }
}

.why-choose-three__image__two {
    position: absolute;
    left: 0;
    bottom: 0;
    display: inline-block;
    transition-delay: 0.55s !important;
}

@media (max-width: 767px) {
    .why-choose-three__image__two {
        position: relative;
        margin-top: 24px;
    }
}

.why-choose-three__image__two img {
    max-width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.funfact-one {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 0 0 116px;
}

@media (max-width: 767px) {
    .funfact-one {
        padding: 0 0 76px;
    }
}

.funfact-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.funfact-one__item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding-left: 20px;
    min-height: 52px;
}

.funfact-one__item::after {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    content: "";
    margin: auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    z-index: -1;
}

.funfact-one__item:hover::after {
    animation: bounceIn 1s linear;
    animation-duration: 1s;
    animation-duration: 1s;
}

.funfact-one__item__count {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.3s ease;
}

.funfact-one__item__text {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    margin: 0 0 0;
}

.funfact-two {
    position: relative;
    background-color: var(--ogoni-base, #C2EA1D);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.funfact-two__shape {
    position: absolute;
    left: -10px;
    top: 0;
}

.funfact-two__shape img {
    animation: shapeMove 3s linear 0s infinite;
}

@media (max-width: 767px) {
    .funfact-two {
        padding: 80px 0;
    }
}

.funfact-two .sec-title {
    padding-bottom: 33px;
}

.funfact-two .sec-title__tagline,
.funfact-two .sec-title__title {
    color: var(--ogoni-white, #ffffff);
}

.funfact-two__list {
    position: relative;
    background-color: var(--ogoni-white, #ffffff);
    margin: 0 0 0 -7px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    row-gap: 0;
}

@media (max-width: 991px) {
    .funfact-two__list {
        margin: 50px 0 0;
    }
}

.funfact-two__list__icon {
    width: 94px;
    height: 94px;
    background-color: var(--ogoni-base, #C2EA1D);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.funfact-two__list__icon img {
    height: 65px;
    transform: scale(1);
    transition: 500ms ease;
}

@media (max-width: 767px) {
    .funfact-two__list__icon {
        display: none;
    }
}

.funfact-two__list:hover .funfact-two__list__icon img {
    transform: scale(0.9);
}

.funfact-two__item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 42px 58px;
}

.funfact-two__item:nth-child(1),
.funfact-two__item:nth-child(3) {
    border-right: 1px solid var(--ogoni-base, #C2EA1D);
}

.funfact-two__item:nth-child(1),
.funfact-two__item:nth-child(2) {
    border-bottom: 1px solid var(--ogoni-base, #C2EA1D);
}

@media (max-width: 1199px) {
    .funfact-two__item {
        padding-left: 30px;
        padding-right: 25px;
    }
}

@media (max-width: 991px) {
    .funfact-two__item {
        padding-left: 50px;
    }
}

@media (max-width: 767px) {
    .funfact-two__item {
        padding-left: 50px;
        flex: 0 0 100%;
        max-width: 100%;
        border-bottom: 1px solid var(--ogoni-base, #C2EA1D);
    }
}

.funfact-two__count {
    margin: 0;
    color: var(--ogoni-black, #131313);
    font-size: 40px;
    font-family: var(--ogoni-font, "DM Sans", serif);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .funfact-two__count {
        font-size: 50px;
    }
}

.funfact-two__text {
    margin: 0;
    font-size: 18px;
    margin: 0;
}

.funfact-three {
    position: relative;
    padding: 100px 0;
}

@media (max-width: 767px) {
    .funfact-three {
        padding: 80px 0 50px;
    }
}

.funfact-three__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--ogoni-gray, #f9f9f9);
}

@media (min-width: 1400px) {
    .funfact-three__bg {
        width: calc(100% - 240px);
        left: 120px;
    }
}

.funfact-three__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    row-gap: 0;
}

@media (max-width: 767px) {
    .funfact-three__list {
        display: block;
    }
}

.funfact-three__item {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
}

@media (max-width: 991px) {
    .funfact-three__item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 0 30px !important;
    }
}

@media (max-width: 767px) {
    .funfact-three__item {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 0 30px !important;
        text-align: center;
    }
}

.funfact-three__item:not(:last-of-type)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--ogoni-border-color, #ECECEC);
    position: absolute;
    top: 0;
    right: 54px;
}

@media (max-width: 991px) {
    .funfact-three__item:not(:last-of-type)::before {
        right: 50px !important;
    }
}

@media (max-width: 767px) {
    .funfact-three__item:not(:last-of-type)::before {
        display: none;
    }
}

.funfact-three__item:not(:first-of-type) {
    padding-left: 37px;
}

@media (max-width: 1199px) {
    .funfact-three__item:not(:first-of-type) {
        padding-left: 0;
    }
}

.funfact-three__item:nth-child(2)::before {
    right: 16px;
}

@media (max-width: 991px) {
    .funfact-three__item:nth-child(2)::before {
        display: none;
    }
}

.funfact-three__item:nth-child(3)::before {
    right: -20px;
}

.funfact-three__item:nth-child(3) {
    padding-left: 63px;
}

@media (max-width: 1199px) {
    .funfact-three__item:nth-child(3) {
        padding-left: 40px;
    }
}

.funfact-three__item:last-child {
    padding-left: 104px;
}

@media (max-width: 1199px) {
    .funfact-three__item:last-child {
        padding-left: 70px;
    }
}

.funfact-three__item:hover .funfact-three__icon::before {
    transform: scale(0.9);
}

.funfact-three__icon {
    width: 103px;
    height: 104px;
    background-color: var(--ogoni-base, #C2EA1D);
    font-size: 60px;
    color: var(--ogoni-white, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 13px;
}

@media (max-width: 767px) {
    .funfact-three__icon {
        margin-left: auto;
        margin-right: auto;
    }
}

.funfact-three__icon::before {
    transition: all 500ms linear;
    transition-delay: 0s;
    transition-delay: 0s;
    transition-delay: 0s;
    transition-delay: 0s;
    transition-delay: 0.1s;
    transform: scale(1);
}

.funfact-three__count {
    margin: 0;
    color: var(--ogoni-black, #131313);
    font-family: var(--ogoni-font, "DM Sans", serif);
    font-size: 35px;
    font-weight: 500;
    line-height: 1;
}

@media (min-width: 768px) {
    .funfact-three__count {
        font-size: 40px;
    }
}

.funfact-three__text {
    margin: 0;
    color: var(--ogoni-text, #666666);
    font-size: 16px;
    margin-top: 9px;
    margin-bottom: -6px;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-one {
    position: relative;
}

@media (min-width: 1300px) {
    .cta-one {
        border-left: 50px solid var(--ogoni-gray, #f9f9f9);
        border-right: 50px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (min-width: 1400px) {
    .cta-one {
        border-left: 100px solid var(--ogoni-gray, #f9f9f9);
        border-right: 100px solid var(--ogoni-gray, #f9f9f9);
    }
}

.cta-one__wrapper {
    position: relative;
    display: flex;
    align-items: baseline;
}

@media (max-width: 767px) {
    .cta-one__wrapper {
        display: block;
    }
}

.cta-one__image {
    position: relative;
    width: 82%;
}

@media (max-width: 767px) {
    .cta-one__image {
        width: 100%;
    }
}

.cta-one__image img {
    max-width: 100%;
    height: auto;
    min-height: 600px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .cta-one__image img {
        min-height: auto;
    }
}

.cta-one__right {
    position: relative;
    width: 18%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    bottom: 50px;
}

@media (max-width: 767px) {
    .cta-one__right {
        width: 100%;
        bottom: 0;
        gap: 0;
        margin-top: 25px;
    }
}

.cta-one__right__shape {
    position: relative;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 200px;
}

.cta-one__right__shape img {
    animation: rotated 10s infinite linear;
}

@media (max-width: 767px) {
    .cta-one__right__shape {
        display: none;
    }
}

.cta-one__right__circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto;
}

.cta-one__right__circle__icon {
    width: 30px;
    height: 30px;
    font-size: 24px;
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: var(--ogoni-black, #131313);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-one__right__circle__icon i {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cta-one__right__circle__icon:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.cta-one__right__circle__icon:hover i {
    animation: iconTranslate_Y 0.4s forwards;
}

.cta-one__right__circle .curved-circle {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    width: 130px !important;
    height: 130px !important;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.cta-one__right__circle .curved-circle .curved-circle--item {
    width: 130px !important;
    height: 130px !important;
}

.cta-one__right__circle .curved-circle span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: var(--ogoni-text, #666666);
    letter-spacing: 4.5px;
}

.cta-two {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
}

.cta-two__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.cta-two .bw-reveal-left {
    transition-delay: 0.3s !important;
}

.cta-two__item {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 172px 30px 54px;
}

.cta-two__item::before {
    background: linear-gradient(90deg, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1) 0px, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1) 77%, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.35) 92%, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0));
    content: "";
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all 0.6s ease 0s;
    width: 200%;
    z-index: 2;
}

.cta-two__item:hover::before {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: 0.6s, 0.6s, 0.15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.cta-two__item::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.cta-two__item__off {
    position: absolute;
    right: 85px;
    top: 50px;
    background-color: var(--ogoni-base, #C2EA1D);
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ogoni-black, #131313);
    text-align: center;
    padding: 10px 10px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
}

.cta-two__item__title {
    color: var(--ogoni-white, #ffffff);
    font-size: 52px;
    line-height: 62px;
    font-weight: 800;
    margin: 0;
    position: relative;
    z-index: 2;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .cta-two__item__title {
        font-size: 45px;
        line-height: 56px;
    }
}

.cta-two__item--two {
    position: relative;
    padding: 130px 50px 50px;
}

@media (max-width: 991px) {
    .cta-two__item--two {
        margin-top: 25px;
    }
}

@media (max-width: 767px) {
    .cta-two__item--two {
        padding: 130px 30px 50px;
    }
}

.cta-two__item--two__star {
    position: absolute;
    left: 258px;
    top: 127px;
    width: 30px;
    height: 30px;
    animation: startIconOne 1s infinite alternate;
    background-size: cover;
}

.cta-two__item--two::after {
    display: none;
}

.cta-two__item--two .cta-two__item__title {
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

.cta-two__item--two .cta-two__item__title span {
    display: inline-block;
    background-color: var(--ogoni-black, #131313);
    padding: 18px 39px 12px;
    transform: rotate(-4deg);
    clip-path: polygon(7% 24%, 100% 0%, 93% 92%, 0 100%);
}

.cta-two__item--two .cta-two__item__off {
    font-size: 16px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    right: 0;
    top: 0;
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
    display: block;
    text-align: left;
    border-radius: 0;
    margin: -18px 0 36px 32px;
}

.cta-two__item--two .cta-two__item__off span {
    display: inline-block;
    background-color: var(--ogoni-base, #C2EA1D);
    padding: 18px 55px 10px;
    transform: rotate(-4deg);
    clip-path: polygon(0 0, 94% 13%, 100% 100%, 7% 100%);
}

.cta-two__item--two .ogoni-btn {
    padding: 14px 44px;
}

.feature-one {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
}

.feature-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.feature-one__wrapper {
    position: relative;
    top: -90px;
    margin-bottom: -90px;
    z-index: 2;
    background-color: var(--ogoni-white, #ffffff);
    box-shadow: 0px 24px 100px 0px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    padding: 53px 70px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .feature-one__wrapper {
        padding: 53px 40px 50px;
    }
}

@media (max-width: 1199px) {
    .feature-one__wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .feature-one__wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.feature-one__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
}

.feature-one__item__icon {
    flex-shrink: 0;
    font-size: 50px;
    line-height: 50px;
    color: var(--ogoni-black, #131313);
    position: relative;
}

.feature-one__item__icon__zoom {
    display: inline-block;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: auto;
}

.feature-one__item:hover .feature-one__item__icon__zoom {
    animation: iconsZoom 0.45s ease-out;
}

.feature-one__item__title {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 9px;
}

.feature-one__item__title span {
    font-weight: 400;
    font-style: italic;
}

.feature-one__item__text {
    font-size: 15px;
    margin: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-one {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    margin-bottom: -120px;
}

.gallery-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.gallery-one__wrapper {
    position: relative;
    width: 79%;
    display: flex;
    align-items: center;
}

@media (max-width: 1400px) {
    .gallery-one__wrapper {
        width: 95%;
    }
}

@media (max-width: 1300px) {
    .gallery-one__wrapper {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .gallery-one__wrapper {
        width: 100%;
        display: block;
    }
}

@media (min-width: 1300px) {
    .gallery-one__wrapper {
        border-left: 50px solid var(--ogoni-gray, #f9f9f9);
    }
}

@media (min-width: 1400px) {
    .gallery-one__wrapper {
        border-left: 100px solid var(--ogoni-gray, #f9f9f9);
    }
}

.gallery-one__item {
    position: relative;
    z-index: 3;
}

.gallery-one__item img {
    max-width: 100%;
    height: auto;
}

.gallery-page {
    background-color: var(--ogoni-white, #ffffff);
}

.gallery-page--filter .post-pagination {
    margin-top: 50px;
}

.gallery-page__filter {
    margin-bottom: 50px;
}

.gallery-page__filter__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
}

.gallery-page__filter__list li {
    cursor: pointer;
    padding: 9px 28px;
}

.gallery-page__filter__list li.active {
    color: var(--ogoni-white, #ffffff);
    background-color: var(--ogoni-black, #131313);
}

.gallery-page__card {
    position: relative;
    overflow: hidden;
}

.gallery-page__card img {
    width: 100%;
    display: block;
    transform: scale(1);
    transition: transform 500ms ease, opacity 500ms ease;
    opacity: 1;
}

.gallery-page__card__hover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 10, 30, 0) 0%, #003CEA 100%);
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.1s 0.3s;
    -moz-transition: -moz-transform 0.5s, opacity 0.1s 0.3s;
    transition: transform 0.5s, opacity 0.1s 0.3s;
}

.gallery-page__card__hover .img-popup {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--ogoni-base, #C2EA1D);
    font-size: 14px;
    color: var(--ogoni-white, #ffffff);
}

.gallery-page__card__hover .img-popup:hover {
    background-color: var(--ogoni-white, #ffffff);
    color: var(--ogoni-base, #C2EA1D);
    transform: rotate(45deg);
}

.gallery-page__card__hover .img-popup svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.gallery-page__card:hover img {
    transform: scale(1.05);
}

.gallery-page__card:hover .gallery-page__card__hover {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.1s;
    -moz-transition: -moz-transform 0.5s, opacity 0.1s;
    transition: transform 0.5s, opacity 0.1s;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
    padding: 120px 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
}

@media (max-width: 767px) {
    .blog-details {
        padding: 80px 0;
    }
}

.blog-details__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.blog-details__thumbnail {
    position: relative;
    margin: 0 0 60px;
}

.blog-details__thumbnail img {
    width: 100%;
    height: auto;
}

.blog-details__thumbnail .blog-card__date {
    position: absolute;
    right: 50px;
    bottom: -33px;
}

.blog-details__title {
    font-weight: 700;
    font-size: 52px;
    line-height: 62px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .blog-details__title {
        font-size: 30px;
        line-height: 40px;
    }
}

.blog-details .blog-card__bottom {
    margin: 0 0 20px;
}

.blog-details .blog-card__bottom a {
    background-color: var(--ogoni-white, #ffffff);
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.blog-details .blog-card__bottom a:hover {
    background-color: var(--ogoni-black, #131313);
    border-color: var(--ogoni-black, #131313);
}

.blog-details__description {
    position: relative;
}

.blog-details__description__text {
    margin: 0;
}

.blog-details__description__text+.blog-details__description__text {
    margin-top: 16px;
}

.blog-details__description__image {
    position: relative;
}

.blog-details__description__image img {
    width: 100%;
    height: auto;
}

.blog-details__description__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 62px;
    text-transform: capitalize;
    margin-bottom: 5px;
    margin-top: 24px;
}

@media (max-width: 767px) {
    .blog-details__description__title {
        font-size: 30px;
        line-height: 40px;
    }
}

.blog-details__description__list {
    position: relative;
    margin: 35px 0 44px;
    padding: 0;
    list-style: none;
}

.blog-details__description__list li {
    position: relative;
    padding-left: 36px;
    margin-top: 20px;
}

.blog-details__description__list li i {
    font-size: 15px;
    color: var(--ogoni-black, #131313);
    position: absolute;
    left: 0;
    top: 6px;
}

.blog-details__description__blockquote {
    position: relative;
    background-color: var(--ogoni-white, #ffffff);
    font-size: 18px;
    line-height: 28px;
    color: var(--ogoni-black, #131313);
    padding: 23px 60px 23px 110px;
    margin: 44px 0 42px;
}

.blog-details__description__blockquote::before {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 49px;
    height: 57px;
    content: "";
    background-image: url(../images/shapes/blockquote.png);
}

.blog-details__description__info {
    position: relative;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.blog-details__description__info li {
    display: flex;
    align-items: center;
    margin: 20px 0 0;
}

.blog-details__description__info li span {
    color: var(--ogoni-black, #131313);
    min-width: 220px;
}

.blog-details__tags {
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 0;
    color: var(--ogoni-text, #666666);
    text-transform: capitalize;
    font-size: 14px;
}

.blog-details__tags__title {
    margin: 0;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 16px;
    margin-right: 18px;
}

.blog-details__tags a {
    color: inherit;
}

.blog-details__tags a:hover {
    color: var(--ogoni-black, #131313);
}

.blog-details__card {
    padding: 50px 75px 50px 50px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--ogoni-white, #ffffff);
    margin: 114px 0 120px;
}

@media (max-width: 767px) {
    .blog-details__card {
        padding: 30px;
        flex-direction: column;
        margin: 74px 0 80px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-details__card {
        padding: 40px;
    }
}

.blog-details__card__image {
    width: 100px;
    height: 91px;
    flex-shrink: 0;
}

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

.blog-details__card__name {
    font-weight: 700;
    font-size: 24px;
    text-transform: capitalize;
    margin: -4px 0 15px;
}

.blog-details__card__text {
    margin: 0;
}

.blog-details__card__social {
    position: absolute;
    right: 50px;
    top: 36px;
}

.blog-details__card__social a {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    font-size: 16px;
    color: var(--ogoni-white, #ffffff);
    background-color: var(--ogoni-black, #131313);
    overflow: hidden;
    z-index: 1;
    transition: all 500ms ease;
}

.blog-details__card__social a::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--ogoni-base, #C2EA1D);
    border-radius: inherit;
    z-index: -1;
    transition: all 500ms ease;
}

.blog-details__card__social a:hover {
    color: var(--ogoni-black, #131313);
}

.blog-details__card__social a:hover::after {
    width: 100%;
    height: 100%;
}

.blog-details__pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.blog-details__pagination__prev {
    position: relative;
}

.blog-details__pagination__prev .ogoni-circle-btn__text i {
    font-size: 18px;
    transform: rotate(-45deg);
    display: inline-block;
    position: relative;
    top: 3px;
    margin-right: 8px;
}

.blog-details__pagination__prev:hover .ogoni-circle-btn__text {
    color: var(--ogoni-white, #ffffff);
}

.blog-details__pagination__next {
    position: relative;
}

.blog-details__pagination__next .ogoni-circle-btn__text i {
    font-size: 18px;
    transform: rotate(45deg);
    display: inline-block;
    position: relative;
    top: 3px;
    margin-left: 8px;
}

.blog-details__pagination__next:hover .ogoni-circle-btn__text {
    color: var(--ogoni-white, #ffffff);
}

.blog-details__pagination .ogoni-circle-btn {
    width: 149px;
    height: 149px;
}

.blog-details__pagination .ogoni-circle-btn__text {
    font-weight: normal;
    font-family: var(--ogoni-font, "DM Sans", serif);
    gap: 0;
    color: var(--ogoni-text, #666666);
}

.blog-details__pagination .ogoni-circle-btn__dot {
    background-color: var(--ogoni-black, #131313);
}

.blog-details .form-one__control label {
    font-size: 20px;
}

.blog-details--two {
    position: relative;
    padding-top: 205px;
}

@media (max-width: 767px) {
    .blog-details--two {
        padding-top: 145px;
    }
}

.blog-details--two__top {
    position: relative;
    padding-right: 250px;
}

@media (max-width: 991px) {
    .blog-details--two__top {
        padding-right: 0;
    }
}

.blog-details--two .blog-details__thumbnail {
    position: relative;
    margin: 90px 100px 42px;
}

@media (max-width: 1799px) {
    .blog-details--two .blog-details__thumbnail {
        margin: 90px 50px 42px;
    }
}

@media (max-width: 1499px) {
    .blog-details--two .blog-details__thumbnail {
        margin: 90px 15px 42px;
    }
}

@media (max-width: 767px) {
    .blog-details--two .blog-details__thumbnail {
        margin: 60px 15px 42px;
    }
}

.blog-details--two__middle {
    position: relative;
    max-width: 636px;
    margin: 0 auto 113px;
}

@media (max-width: 767px) {
    .blog-details--two__middle {
        margin: 0 auto 73px;
    }
}

.blog-details--two__bottom {
    position: relative;
    max-width: 636px;
    margin: 0 auto;
}

.blog-details--two .blog-details__pagination {
    margin-top: 115px;
}

@media (max-width: 767px) {
    .blog-details--two .blog-details__pagination {
        margin-top: 75px;
    }
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .product {
        padding: 80px 0;
    }
}

.product__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.product__card {
    position: relative;
}

.product__card__image {
    position: relative;
    overflow: hidden;
}

.product__card__image::after {
    background: linear-gradient(90deg, rgba(var(--ogoni-base-rgb, 194, 234, 29), 0.05) 0px, rgba(var(--ogoni-base-rgb, 194, 234, 29), 0.05) 77%, rgba(var(--ogoni-base-rgb, 194, 234, 29), 0.25) 92%, rgba(var(--ogoni-base-rgb, 194, 234, 29), 0));
    content: "";
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all 0.7s ease 0s;
    width: 200%;
}

.product__card__image img {
    width: 100%;
    display: block;
    transition: all 400ms ease;
}

.product__card:hover .product__card__image img {
    transform: scale(1.05) rotate(1deg);
}

.product__card:hover .product__card__image::after {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.product__card__btn-two {
    position: absolute;
    right: 11px;
    top: 11px;
    z-index: 2;
}

.product__card__btn-two a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ogoni-white, #ffffff);
    border-radius: 50%;
    color: var(--ogoni-black, #131313);
    font-size: 17px;
}

.product__card__btn-two a:hover {
    background-color: var(--ogoni-black, #131313);
    color: var(--ogoni-white, #ffffff);
}

.product__card__flash {
    position: absolute;
    top: 11px;
    left: 11px;
    display: inline-block;
    padding: 5px 10.5px;
    font-size: 13px;
    color: var(--ogoni-white, #ffffff);
    line-height: 1;
    background-color: var(--ogoni-black, #131313);
    z-index: 2;
}

.product__card__flash--sale {
    background-color: #FB7338;
}

.product__card__content {
    position: relative;
    padding: 14px 70px 0 0;
}

.product__card__title {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
}

.product__card__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.product__card__title a:hover {
    background-size: 100% 1px;
}

.product__card__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.product__card__price {
    display: flex;
    gap: 10px;
    font-size: 16px;
    color: var(--ogoni-text, #666666);
    font-weight: 400;
    line-height: 1;
}

.product__card__price__new {
    margin: 0;
    font-weight: 800;
    color: var(--ogoni-black, #131313);
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
}

.product__card__price__old {
    margin: 0;
    text-decoration: line-through;
}

.product__card__btn {
    position: absolute;
    right: 0;
    top: 20px;
}

.product__card__btn a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ogoni-black, #131313);
    border-radius: 50%;
    color: var(--ogoni-black, #131313);
    font-size: 19px;
}

.product__card__btn a:hover {
    background-color: var(--ogoni-black, #131313);
    color: var(--ogoni-white, #ffffff);
    border-color: var(--ogoni-black, #131313);
}

.product-one {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .product-one {
        padding: 80px 0;
    }
}

.product-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.product-one__title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 30px;
    padding: 0 0 25px;
    border-bottom: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.product-one__title span {
    font-weight: normal;
    font-style: italic;
}

.product-one .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    top: -76px;
    margin: 0;
}

.product-two {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0 90px;
}

@media (max-width: 767px) {
    .product-two {
        padding: 80px 0 50px;
    }
}

.product-two__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.product-two__title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 30px;
    padding: 0 0 25px;
    border-bottom: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.product-two__title span {
    font-weight: normal;
    font-style: italic;
}

.product-two .slick-arrow {
    position: absolute;
    right: 7px;
    top: -76px;
    margin: 0;
    border: none;
    outline: none;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    opacity: 1;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 0;
    color: var(--ogoni-black, #131313);
    transition: all 500ms ease;
}

.product-two .slick-arrow:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.product-two .slick-arrow.prev {
    right: 103px;
}

.product-two .slick-arrow.prev::after {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    height: 1px;
    width: 70px;
    background-color: rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.product-two .slick-slider {
    margin: 0 -12px;
    padding: 0;
}

.product-two .slick-slide {
    margin-right: 12px;
    margin-left: 12px;
}

.product-two .product__card {
    margin-bottom: 30px;
}

.category-one {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 0 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    .category-one {
        padding: 0 0;
    }
}

.category-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.category-one__title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 30px;
    padding: 0 0 25px;
    border-bottom: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.category-one__title span {
    font-weight: normal;
    font-style: italic;
}

.category-one__carousel.owl-carousel {
    position: relative;
}

.category-one__carousel.owl-carousel::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 290px;
    height: 100%;
    content: "";
    background-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.5);
}

@media (max-width: 1599px) {
    .category-one__carousel.owl-carousel::after {
        width: 150px;
    }
}

@media (max-width: 1399px) {
    .category-one__carousel.owl-carousel::after {
        width: 100px;
    }
}

@media (max-width: 1199px) {
    .category-one__carousel.owl-carousel::after {
        display: none;
    }
}

.category-one__carousel.owl-carousel::before {
    position: absolute;
    right: 0;
    top: 0;
    width: 290px;
    height: 100%;
    content: "";
    background-color: rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.5);
    z-index: 1;
}

@media (max-width: 1599px) {
    .category-one__carousel.owl-carousel::before {
        width: 150px;
    }
}

@media (max-width: 1399px) {
    .category-one__carousel.owl-carousel::before {
        width: 100px;
    }
}

@media (max-width: 1199px) {
    .category-one__carousel.owl-carousel::before {
        display: none;
    }
}

@media (max-width: 574px) {
    .category-one__carousel.owl-carousel {
        padding: 0 15px;
    }
}

.category-one__item {
    position: relative;
    transition: all 0.4s ease 0s;
    opacity: 0.5;
}

.category-one__item__image {
    position: relative;
    overflow: hidden;
}

.category-one__item__image::after {
    background: linear-gradient(90deg, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1) 0px, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.1) 77%, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0.35) 92%, rgba(var(--ogoni-white-rgb, 255, 255, 255), 0));
    content: "";
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all 0.6s ease 0s;
    width: 200%;
}

.category-one__item__image img {
    width: 100%;
    height: auto;
    transition: all 500ms ease;
}

.category-one__item:hover .category-one__item__image img {
    transform: rotate(1deg) scale(1.05);
}

.category-one__item:hover .category-one__item__image::after {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: 0.6s, 0.6s, 0.15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.category-one__item__content {
    position: relative;
    margin: -52px 0 0 10px;
    background-color: var(--ogoni-black, #131313);
    max-width: 77%;
    padding: 16px 20px 10px;
}

@media (max-width: 1699px) {
    .category-one__item__content {
        max-width: 80%;
    }
}

.category-one__item__title {
    color: var(--ogoni-white, #ffffff);
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 2px;
}

.category-one__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.category-one__item__title a:hover {
    background-size: 100% 1px;
}

.category-one__item__title a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.category-one__item__text {
    margin: 0;
}

.category-one .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -76px;
    z-index: 2;
    width: 1300px;
    transform: none;
    text-align: right;
}

@media (max-width: 1399px) {
    .category-one .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav {
        max-width: 1174px;
    }
}

@media (max-width: 1199px) {
    .category-one .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav {
        max-width: 934px;
    }
}

@media (max-width: 991px) {
    .category-one .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav {
        max-width: 690px;
    }
}

@media (max-width: 767px) {
    .category-one .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav {
        max-width: 100%;
        padding-right: 15px;
    }
}

/*--------------------------------------------------------------
# Shop Details
--------------------------------------------------------------*/
.product-details {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .product-details {
        padding: 80px 0;
    }
}

.product-details__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.product-details__slider {
    position: relative;
    overflow: hidden;
    max-width: 636px;
}

.product-details__slider__image {
    position: relative;
}

.product-details__slider__image img {
    width: 100%;
    height: auto;
}

.product-details__carousel-thumb {
    position: relative;
    margin: 0 -12px;
    margin-top: 24px;
}

.product-details__carousel-thumb__item {
    position: relative;
    width: 196px;
    display: block;
    height: 196px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    cursor: pointer;
}

.product-details__carousel-thumb__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details__content {
    margin-top: -8px;
}

@media (min-width: 1400px) {
    .product-details__content {
        margin-left: 110px;
    }
}

@media (min-width: 1200px) {
    .product-details__content {
        margin-left: 40px;
    }
}

@media (max-width: 1199px) {
    .product-details__content {
        margin-top: 45px;
    }
}

.product-details__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px;
}

.product-details__top {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 88px;
}

@media (max-width: 574px) {
    .product-details__top {
        gap: 50px;
    }
}

.product-details__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 16px;
    color: var(--ogoni-text, #666666);
    font-weight: 400;
    line-height: 1;
}

.product-details__price__new {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: var(--ogoni-black, #131313);
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
}

.product-details__price__old {
    margin: 0;
    text-decoration: line-through;
}

.product-details__review {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--ogoni-black, #131313);
}

.product-details__review a {
    font-size: 16px;
    color: var(--ogoni-text, #666666);
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0;
    margin-left: 8px;
}

.product-details__review a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.product-details__excerpt {
    margin: 0 0 42px;
}

.product-details__quantity {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}

.product-details__quantity__title {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--ogoni-black, #131313);
    text-transform: capitalize;
}

.product-details__quantity .quantity-box {
    border: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    background-color: var(--ogoni-white, #ffffff);
    width: 162px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-details__quantity .quantity-box__input {
    border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
    height: 100%;
    font-family: var(--ogoni-font, "DM Sans", serif);
    padding: 0;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: var(--ogoni-black, #131313);
    line-height: 1;
    background-color: transparent;
    text-align: center;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    transition: all 500ms ease;
}

.product-details__quantity .quantity-box__btn {
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--ogoni-text, #666666);
    transition: all 500ms ease;
}

.product-details__quantity .quantity-box__btn:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.product-details__tags {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.product-details__tags__title {
    margin: 0 18px 0 0;
    color: var(--ogoni-black, #131313);
}

.product-details__tags a {
    color: inherit;
}

.product-details__tags a:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.product-details__buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 44px;
}

@media (max-width: 574px) {
    .product-details__buttons {
        gap: 15px;
    }
}

.product-details__buttons .ogoni-btn {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--ogoni-font, "DM Sans", serif);
    padding: 14px 15px;
    width: 180px;
}

.product-details__buttons .ogoni-btn i {
    font-size: 16px;
    margin-right: 9px;
    position: relative;
    top: 2px;
}

.product-details__buttons .ogoni-btn.wishlist {
    background-color: transparent;
    border: 1px solid var(--ogoni-black, #131313);
    color: var(--ogoni-black, #131313);
}

.product-details__buttons .ogoni-btn.wishlist .ogoni-btn__hover__item {
    background-color: var(--ogoni-black, #131313);
}

.product-details__buttons .ogoni-btn.wishlist:hover {
    color: var(--ogoni-white, #ffffff);
}

.product-details__info {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-details__info li {
    padding-left: 34px;
    position: relative;
    margin: 8px 0 0;
}

.product-details__info__icon {
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    font-size: 7px;
    background-color: var(--ogoni-black, #131313);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--ogoni-white, #ffffff);
}

.product-details__tabs {
    position: relative;
    max-width: 1170px;
    margin-top: 120px;
}

@media (max-width: 767px) {
    .product-details__tabs {
        margin-top: 80px;
    }
}

.product-details__tabs__list {
    position: relative;
    display: flex;
    margin: 0 0 22px;
    padding: 0;
    gap: 30px;
}

@media (max-width: 767px) {
    .product-details__tabs__list {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.product-details__tabs__list li {
    display: inline-block;
    border: 1px solid var(--ogoni-black, #131313);
    font-size: 16px;
    text-transform: capitalize;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    margin: 0 0;
    cursor: pointer;
    padding: 16px 39px;
    transition: all 500ms ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-details__tabs__list li::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--ogoni-black, #131313);
    border-radius: 50%;
    border-radius: inherit;
    z-index: -1;
    transition: all 500ms ease;
}

.product-details__tabs__list li:hover,
.product-details__tabs__list li.active-btn {
    color: var(--ogoni-white, #ffffff);
}

.product-details__tabs__list li:hover::after,
.product-details__tabs__list li.active-btn::after {
    width: 101%;
    height: 100%;
    border-radius: 0;
}

.product-details__tabs__description {
    position: relative;
}

.product-details__tabs__description__text {
    margin-bottom: 17px;
}

.product-details__tabs__description__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-details__tabs__description__list li+li {
    margin-top: 8px;
}

.product-details__tabs__description__list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.product-details__tabs__description__list li i {
    color: var(--ogoni-black, #131313);
    font-size: 14px;
    position: relative;
    top: 6px;
}

.product-details__comment {
    position: relative;
}

.product-details__comment__title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 24px;
}

.product-details__comment__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-details__comment__card+.product-details__comment__card {
    margin-top: 40px;
}

.product-details__comment__card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

@media (max-width: 767px) {
    .product-details__comment__card {
        align-items: flex-start;
    }
}

.product-details__comment__card__image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
}

.product-details__comment__card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details__comment__card__title {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 10px;
}

.product-details__comment__card__text {
    margin: 0;
}

.product-details__comment__card__ratings {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: var(--ogoni-black, #131313);
    letter-spacing: 2px;
    position: absolute;
    right: 26px;
    top: 0;
}

@media (max-width: 767px) {
    .product-details__comment__card__ratings {
        position: relative;
        right: 0;
        margin-top: 20px;
    }
}

.product-details__form {
    position: relative;
    margin-top: 60px;
}

.product-details__form__title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
}

.product-details__form__ratings {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--ogoni-black, #131313);
    letter-spacing: 2px;
    margin: 0 0 25px;
}

.product-details__form__ratings__label {
    margin: 0 15px 0 0;
    letter-spacing: 0;
    font-size: 16px;
}

.product-details__form .form-one__control label {
    font-size: 20px;
}

.related-product {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 0 0 120px;
}

@media (max-width: 767px) {
    .related-product {
        padding: 0 0 80px;
    }
}

.related-product__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.related-product__title {
    font-size: 24px;
    font-weight: 800;
    border-bottom: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    margin: 0 0 30px;
    padding-bottom: 25px;
}

.related-product__title span {
    font-weight: normal;
    font-style: italic;
}

.related-product .owl-carousel {
    position: relative;
}

.related-product .ogoni-owl__carousel--basic-nav.owl-carousel .owl-nav {
    margin: 0;
    position: absolute;
    right: 0;
    top: -75px;
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .cart-page {
        padding: 80px 0;
    }
}

.cart-page__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.cart-page .table-responsive {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .cart-page .table-responsive {
        margin-bottom: 30px;
    }
}

.cart-page__table {
    position: relative;
    width: 100%;
    border: none;
    margin: 0 0 24px;
}

@media (max-width: 1199px) {
    .cart-page__table {
        min-width: 1170px;
    }
}

.cart-page__table thead tr {
    border-bottom: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.cart-page__table thead tr th {
    padding: 0 0 25px;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    line-height: 1;
    font-weight: 700;
    text-transform: capitalize;
    border: none;
    background-color: transparent;
    border: 0 !important;
    box-shadow: none;
}

.cart-page__table thead tr th:last-child {
    text-align: right;
}

.cart-page__table tbody tr td {
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    text-transform: capitalize;
    line-height: normal;
    vertical-align: middle;
    border-top: none;
    box-shadow: none;
    background-color: transparent;
    border-top: 0 !important;
    border-bottom: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    padding: 30px 0;
    letter-spacing: 0;
}

.cart-page__table tbody tr td:last-child {
    text-align: right;
}

.cart-page__table tbody tr td .cart-page__table__remove {
    width: 24px;
    height: 24px;
    background-color: var(--ogoni-white, #ffffff);
    color: var(--ogoni-black, #131313);
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.cart-page__table tbody tr td .cart-page__table__remove:hover {
    background-color: var(--ogoni-black, #131313);
    color: var(--ogoni-white, #ffffff);
}

.cart-page__table .product-details__quantity {
    margin: 0;
    width: 125px;
}

.cart-page__table__meta {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cart-page__table__meta__img {
    width: 110px;
    flex-shrink: 0;
}

.cart-page__table__meta__img img {
    width: 100%;
    display: block;
    border: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.cart-page__table__meta__title {
    margin: 0;
    font-size: 18px;
    color: var(--ogoni-black, #131313);
    font-weight: 700;
    line-height: 1.5;
}

.cart-page__table__meta__title:hover {
    color: var(--ogoni-base, #C2EA1D);
}

.cart-page__table__meta__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.cart-page__table__meta__title a:hover {
    background-size: 100% 1px;
}

.cart-page__bottom {
    margin-top: 26px;
}

.cart-page__coupone__form {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .cart-page__coupone__form {
        flex-direction: column;
        align-items: flex-start;
    }
}

.cart-page__coupone__form input[type=text] {
    display: block;
    width: 303px;
    height: 60px;
    border: none;
    font-size: 16px;
    font-family: var(--ogoni-font, "DM Sans", serif);
    color: var(--ogoni-text, #666666);
    font-weight: 400;
    background-color: var(--ogoni-white, #ffffff);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    border: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    transition: all 500ms ease;
}

.cart-page__coupone__form input[type=text]:focus {
    color: var(--ogoni-black, #131313);
}

@media (max-width: 767px) {
    .cart-page__coupone__form input[type=text] {
        width: 100%;
    }
}

@media (max-width: 375px) {
    .cart-page__coupone__form input[type=text] {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.cart-page__cart-checkout {
    max-width: 313px;
}

@media (min-width: 992px) {
    .cart-page__cart-checkout {
        margin-top: -5px;
        margin-left: auto;
    }
}

.cart-page__cart-total {
    position: relative;
    margin: 0 0 35px;
}

.cart-page__cart-total li+li {
    margin-top: 18px;
}

.cart-page__cart-total li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 16px;
    font-family: var(--ogoni-font, "DM Sans", serif);
    color: var(--ogoni-text, #666666);
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.3;
}

.cart-page__cart-total__amount--shipping {
    margin-bottom: 23px;
    padding-bottom: 26px;
    border-bottom: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.cart-page__cart-total__amount__title {
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    color: var(--ogoni-black, #131313);
    font-size: 18px;
    font-weight: 700;
}

.cart-page__cart-total__amount__text {
    text-align: right;
}

.cart-page__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.cart-page__button .checkout {
    background-color: var(--ogoni-base, #C2EA1D);
    color: var(--ogoni-black, #131313);
}

.cart-page__button .checkout .ogoni-btn__hover__item {
    background-color: var(--ogoni-black, #131313);
}

.cart-page__button .checkout:hover {
    color: var(--ogoni-white, #ffffff);
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
    position: relative;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .checkout-page {
        padding: 80px 0;
    }
}

.checkout-page__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.checkout-page__billing-address {
    position: relative;
}

.checkout-page .notice-box {
    padding: 25px 30px;
    margin-bottom: 28px;
    background-color: var(--ogoni-white, #ffffff);
    border: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    font-size: 16px;
    color: var(--ogoni-black, #131313);
}

@media (max-width: 430px) {
    .checkout-page .notice-box {
        padding-left: 25px;
        padding-right: 25px;
        font-size: 16px;
    }
}

.checkout-page .notice-box a {
    color: var(--ogoni-base, #C2EA1D);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.checkout-page .notice-box a:hover {
    background-size: 100% 1px;
}

.checkout-page__title {
    margin-bottom: 28px;
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.5;
}

@media (max-width: 430px) {
    .checkout-page__title {
        font-size: 28px;
    }
}

.checkout-page__billing-details {
    margin-top: 18px;
}

.checkout-page__billing-details .checkout-page__title {
    margin-bottom: 33px;
}

.checkout-page__check-box {
    position: relative;
    display: block;
    margin-top: -6px;
}

.checkout-page__check-box input[type=checkbox] {
    display: none;
}

.checkout-page__check-box label {
    position: relative;
    display: inline-block;
    padding-left: 40px;
    margin-right: 0px;
    margin-bottom: 0;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    font-size: 16px;
    line-height: 1.3;
    text-transform: none;
    cursor: pointer;
}

.checkout-page__check-box label span::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    color: var(--ogoni-white, #ffffff);
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-size: 12px;
    font-weight: 900;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.checkout-page__check-box input[type=checkbox]+label span {
    position: absolute;
    top: 1px;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: var(--ogoni-black, #131313);
    border-radius: 50%;
    border: none;
    vertical-align: middle;
    cursor: pointer;
    transition: all 300ms ease;
}

.checkout-page__check-box input[type=checkbox]:checked+label span:before {
    opacity: 1;
}

.checkout-page__additional-information {
    margin-top: 121px;
}

@media (max-width: 1199px) {
    .checkout-page__additional-information {
        margin-top: 128px;
    }
}

@media (max-width: 991px) {
    .checkout-page__additional-information {
        margin-top: 30px;
    }
}

.checkout-page__additional-information .form-one textarea {
    height: 176px;
}

.checkout-page__your-order {
    position: relative;
    margin: 63px 0 0;
}

@media (max-width: 991px) {
    .checkout-page__your-order {
        margin: 30px 0 0;
    }
}

.checkout-page__your-order .checkout-page__title {
    margin-bottom: 27px;
}

.checkout-page__order-table {
    position: relative;
    width: 100%;
    border: none;
    margin: 0 0 0;
}

.checkout-page__order-table thead tr th {
    margin: 0;
    padding: 22px 0;
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    font-size: 20px;
    color: var(--ogoni-black, #131313);
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.5;
    border: none;
    border-top: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    border-bottom: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.checkout-page__order-table thead tr th:last-child {
    text-align: right;
}

@media (max-width: 430px) {
    .checkout-page__order-table thead tr th {
        font-size: 18px;
    }
}

.checkout-page__order-table tbody tr td {
    font-size: 16px;
    color: var(--ogoni-black, #131313);
    text-transform: capitalize;
    font-weight: 700;
    font-family: var(--ogoni-font, "DM Sans", serif);
    line-height: 1.5;
    margin: 0;
    padding: 0 0 16px;
    border: none;
}

.checkout-page__order-table tbody tr td:last-child {
    text-align: right;
}

.checkout-page__order-table tbody tr:not(:last-child) td:last-child {
    font-family: var(--ogoni-font, "DM Sans", serif);
    color: var(--ogoni-text, #666666);
    font-weight: 600;
}

.checkout-page__order-table tbody tr:first-child td {
    padding-top: 22px;
}

.checkout-page__order-table tbody tr:nth-child(3) td {
    padding-bottom: 20px;
}

.checkout-page__order-table tbody tr:last-child td {
    padding-top: 21px;
    border-top: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
}

.checkout-page__payment {
    background-color: var(--ogoni-white, #ffffff);
    border: 1px solid RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    padding: 37px 40px 29px;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .checkout-page__payment {
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .checkout-page__payment {
        padding: 30px 30px 22px;
    }
}

@media (max-width: 390px) {
    .checkout-page__payment {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.checkout-page__payment__item+.checkout-page__payment__item {
    margin-top: 27px;
}

.checkout-page__payment__item {
    position: relative;
}

.checkout-page__payment__title {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.5;
    cursor: pointer;
    color: var(--ogoni-black, #131313);
}

.checkout-page__payment__title::before {
    content: "";
    width: 24px;
    height: 24px;
    background-color: RGBA(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    border: 0;
    border-radius: 50%;
    margin-right: 10px;
    font-family: "icomoon" !important;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 13px;
    position: relative;
    top: 1px;
    transition: all 500ms ease;
}

.checkout-page__payment .checkout-page__payment__item--active .checkout-page__payment__title::before {
    content: "\e911";
    background-color: var(--ogoni-black, #131313);
    color: var(--ogoni-white, #ffffff);
}

.checkout-page__payment__content {
    margin-top: 18px;
    margin-left: 38px;
}

.checkout-page__payment__content p {
    margin: 0;
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/
.work-process-one {
    position: relative;
    counter-reset: count;
    background-image: linear-gradient(119deg, #f6efff 0%, #ebf6f8 100%);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .work-process-one {
        padding: 80px 0;
    }
}

.work-process-one__item {
    position: relative;
    counter-increment: count;
}

.work-process-one__item__draw {
    position: absolute;
    top: 40px;
    left: 62%;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg, var(--ogoni-base, #C2EA1D), var(--ogoni-base, #C2EA1D) 40%, transparent 40%, transparent 100%);
    background-size: 12px 1px;
    z-index: -1;
    transition: all 0.7s;
    animation: shapes 5s linear infinite;
}

@media (max-width: 767px) {
    .work-process-one__item__draw {
        display: none;
    }
}

@media (max-width: 1199px) {
    .work-process-one__item__draw--two {
        display: none;
    }
}

.work-process-one__item__draw::after {
    content: "\e928";
    font-family: "icomoon" !important;
    color: var(--ogoni-base, #C2EA1D);
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: all 0.7s;
}

.work-process-one__item__icon {
    font-size: 36px;
    color: var(--ogoni-base, #C2EA1D);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 76px;
    height: 76px;
    margin: 0 auto;
    border: 2px solid var(--ogoni-base, #C2EA1D);
    border-radius: 50%;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.work-process-one__item:hover .work-process-one__item__icon {
    color: var(--ogoni-white, #ffffff);
    background-color: var(--ogoni-base, #C2EA1D);
    transform: scale(1.05);
}

.work-process-one__item__number {
    width: 26px;
    height: 26px;
    background-color: var(--ogoni-black, #131313);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--ogoni-white, #ffffff);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    right: -4px;
    top: 0;
    z-index: 1;
}

.work-process-one__item__number::before {
    content: counters(count, ".", decimal-leading-zero);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-process-one__item__title {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 19px 0 12px;
}

.work-process-one__item__text {
    margin: 0;
}

/*--------------------------------------------------------------
# Sliding Text
--------------------------------------------------------------*/
.slide-text {
    position: relative;
    overflow: hidden;
    background-color: var(--ogoni-gray, #f9f9f9);
    padding: 110px 0;
}

@media (max-width: 767px) {
    .slide-text {
        padding: 70px 0;
    }
}

.slide-text__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.slide-text__one {
    position: relative;
    white-space: nowrap;
    z-index: 2;
}

.slide-text__one__list {
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 61px;
    flex-wrap: wrap;
    animation: text-scrolling 22s linear infinite;
    will-change: transform;
    flex-wrap: nowrap;
}

@media (max-width: 767px) {
    .slide-text__one__list {
        animation: text-scrolling 6s linear infinite;
    }
}

.slide-text__one__list li {
    position: relative;
    letter-spacing: 0;
    margin: 0;
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .slide-text__one__list li {
        font-size: 42px;
        line-height: 52px;
    }
}

.slide-text__one__list li br {
    display: block;
}

.slide-text__one__list li span {
    font-weight: 400;
    font-style: italic;
}

.slide-text__one__list li:nth-child(3),
.slide-text__one__list li:nth-child(6),
.slide-text__one__list li:nth-child(9),
.slide-text__one__list li:nth-child(12),
.slide-text__one__list li:nth-child(15),
.slide-text__one__list li:nth-child(18),
.slide-text__one__list li:nth-child(21) {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--ogoni-black, #131313);
}

.slide-text__one__list li:nth-child(3) .slide-text__one__list__star,
.slide-text__one__list li:nth-child(6) .slide-text__one__list__star,
.slide-text__one__list li:nth-child(9) .slide-text__one__list__star,
.slide-text__one__list li:nth-child(12) .slide-text__one__list__star,
.slide-text__one__list li:nth-child(15) .slide-text__one__list__star,
.slide-text__one__list li:nth-child(18) .slide-text__one__list__star,
.slide-text__one__list li:nth-child(21) .slide-text__one__list__star {
    -webkit-text-fill-color: #D9D9D9;
    -webkit-text-stroke-color: #D9D9D9;
}

.slide-text__one__list:hover {
    animation-play-state: paused;
}

.slide-text__one__list__star {
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotated 10s infinite linear;
    position: absolute;
    right: -42px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.slide-text--home-four {
    background-color: var(--ogoni-black, #131313);
}

.slide-text--home-four .slide-text__one__list li {
    color: var(--ogoni-white, #ffffff);
}

.slide-text--home-four .slide-text__one__list li:nth-child(3),
.slide-text--home-four .slide-text__one__list li:nth-child(6),
.slide-text--home-four .slide-text__one__list li:nth-child(9),
.slide-text--home-four .slide-text__one__list li:nth-child(12),
.slide-text--home-four .slide-text__one__list li:nth-child(15),
.slide-text--home-four .slide-text__one__list li:nth-child(18),
.slide-text--home-four .slide-text__one__list li:nth-child(21) {
    -webkit-text-stroke-color: var(--ogoni-white, #ffffff);
}

.slide-text-two {
    position: relative;
    overflow: hidden;
    text-align: center;
}

@media (max-width: 767px) {
    .slide-text-two {
        margin: -50px 0;
    }
}

.slide-text-two::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 23%;
    height: 100%;
    background-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
    content: "";
}

.slide-text-two::before {
    position: absolute;
    right: 0;
    top: 0;
    width: 23%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
    content: "";
}

.slide-text-two svg {
    font-family: var(--ogoni-heading-font, "Plus Jakarta Sans", serif);
    width: 100%;
    height: 100%;
}

.slide-text-two svg text {
    margin: 0;
    line-height: 1;
    font-size: 7vw;
    animation: stroke 5s infinite alternate;
    stroke-width: 2;
    font-weight: 900;
    stroke: var(--ogoni-base, #C2EA1D);
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
    background-color: var(--ogoni-white, #ffffff);
}

.error-404__content {
    text-align: center;
}

.error-404__image {
    margin-bottom: 35px;
    max-width: 100%;
    height: auto;
    animation: moveHorizontal 2s linear infinite;
}

.error-404__title {
    margin-bottom: 0;
    font-size: 100px;
    font-weight: 700;
    line-height: 1.255;
    text-transform: capitalize;
}

.error-404__sm-title {
    margin-bottom: 14px;
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.4;
}

.error-404__text {
    margin: 0 auto 32px;
    width: 100%;
    max-width: 653px;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-one {
    padding: 120px 0 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
}

@media (max-width: 767px) {
    .faq-one {
        padding: 80px 0 0;
    }
}

.faq-one__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.faq-one__wrapper {
    position: relative;
    background-color: var(--ogoni-white, #ffffff);
}

.faq-one__wrapper .row {
    --bs-gutter-x: 0;
}

.faq-one__content {
    position: relative;
    padding: 110px 110px;
}

@media (max-width: 1399px) {
    .faq-one__content {
        padding: 110px 60px;
    }
}

@media (max-width: 767px) {
    .faq-one__content {
        padding: 80px 20px;
    }
}

.faq-one__sub-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    text-transform: uppercase;
    letter-spacing: 30%;
    margin: 0 auto 5px;
}

.faq-one__sub-title img {
    flex-shrink: 0;
    height: 18px;
}

.faq-one__title {
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    margin: 0 0 12px;
}

.faq-one__title span {
    font-weight: 400;
    font-style: italic;
}

@media (max-width: 767px) {
    .faq-one__title {
        font-size: 30px;
        line-height: 38px;
    }
}

.faq-one__text {
    font-size: 18px;
    font-style: italic;
    margin: 0 0 42px;
}

.faq-one__accordion {
    position: relative;
}

.faq-one__accordion .accrodion {
    margin: 20px 0 0;
    position: relative;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    border-radius: 5px;
}

.faq-one__accordion .accrodion-title {
    padding: 25px 28px 26px;
    padding-left: 54px;
    cursor: pointer;
}

.faq-one__accordion .accrodion-title h4 {
    font-weight: bold;
    color: var(--ogoni-black, #131313);
    font-size: 16px;
    margin: 0;
    transition: all 500ms ease;
    position: relative;
}

.faq-one__accordion .accrodion-title__icon {
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: -29px;
    transform: translateY(-50%);
}

.faq-one__accordion .accrodion-title__icon::after {
    width: 100%;
    height: 100%;
    position: absolute;
    color: inherit;
    top: 0;
    left: 0;
    font-family: "icomoon" !important;
    font-size: 10px;
    content: "\e90b";
    font-weight: normal;
    transition: all 500ms ease;
}

.faq-one__accordion .active .accrodion-title__icon::after {
    transform: rotate(90deg);
}

.faq-one__accordion .accrodion-content .inner {
    padding: 0 28px 26px;
    margin-top: -10px;
    padding-left: 54px;
}

.faq-one__accordion .accrodion-content p {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
}

.faq-one__image {
    position: relative;
    height: 933px;
    overflow: hidden;
    transition: all 0.6s ease-out;
}

@media (min-width: 1200px) {
    .faq-one__image {
        margin-left: -10px;
    }
}

@media (max-width: 767px) {
    .faq-one__image {
        height: 500px;
    }
}

.faq-one__image img {
    width: 100%;
    height: 100%;
    transition: all 0.6s ease-out;
    object-fit: cover;
    object-position: center;
}

.faq-one .bw-reveal-top {
    transition: all 1.5s !important;
    transition-delay: 0.6s !important;
}

.faq-page {
    padding: 120px 0;
    background-color: var(--ogoni-gray, #f9f9f9);
    position: relative;
}

@media (max-width: 767px) {
    .faq-page {
        padding: 80px 0;
    }
}

.faq-page__line {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    animation: 10s bgMove infinite linear;
    background-repeat: repeat-y;
    background-position: top center;
    pointer-events: none;
}

.faq-page__image {
    position: relative;
}

.faq-page__image img {
    max-width: 100%;
    height: auto;
}

.faq-page .bw-reveal-top {
    transition: all 1.5s !important;
    transition-delay: 0.6s !important;
}

.faq-page__content {
    position: relative;
}

@media (max-width: 1199px) {
    .faq-page__content {
        margin-top: 45px;
    }
}

.faq-page__sub-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ogoni-black, #131313);
    text-transform: uppercase;
    letter-spacing: 30%;
    margin: 0 auto 5px;
}

.faq-page__sub-title img {
    flex-shrink: 0;
    height: 18px;
}

.faq-page__title {
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    margin: 0 0 12px;
}

.faq-page__title span {
    font-weight: 400;
    font-style: italic;
}

@media (max-width: 767px) {
    .faq-page__title {
        font-size: 30px;
        line-height: 38px;
    }
}

.faq-page__text {
    font-size: 18px;
    font-style: italic;
    margin: 0 0 42px;
}

@media (max-width: 1399px) {
    .faq-page__text {
        font-size: 17px;
    }
}

.faq-page__accordion {
    position: relative;
}

.faq-page__accordion .accrodion {
    margin: 18px 0 0;
    position: relative;
    border: 1px solid rgba(var(--ogoni-black-rgb, 19, 19, 19), 0.1);
    border-radius: 5px;
}

.faq-page__accordion .accrodion-title {
    padding: 25px 28px 25px;
    padding-left: 54px;
    cursor: pointer;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .faq-page__accordion .accrodion-title {
        padding-left: 44px;
    }
}

.faq-page__accordion .accrodion-title h4 {
    font-weight: bold;
    color: var(--ogoni-black, #131313);
    font-size: 16px;
    margin: 0;
    transition: all 500ms ease;
    position: relative;
}

.faq-page__accordion .accrodion-title__icon {
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: -29px;
    transform: translateY(-50%);
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .faq-page__accordion .accrodion-title__icon {
        left: -22px;
    }
}

.faq-page__accordion .accrodion-title__icon::after {
    width: 100%;
    height: 100%;
    position: absolute;
    color: inherit;
    top: 0;
    left: 0;
    font-family: "icomoon" !important;
    font-size: 10px;
    content: "\e90b";
    font-weight: normal;
    transition: all 500ms ease;
}

.faq-page__accordion .active .accrodion-title__icon::after {
    transform: rotate(90deg);
}

.faq-page__accordion .accrodion-content .inner {
    padding: 0 28px 26px;
    margin-top: -10px;
    padding-left: 54px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .faq-page__accordion .accrodion-content .inner {
        padding-right: 15px;
        padding-left: 44px;
    }
}

.faq-page__accordion .accrodion-content p {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
    position: relative;
}

body.boxed-wrapper .page-wrapper {
    max-width: 1530px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--ogoni-white, #ffffff);
    box-shadow: 0px 0px 100px 0px rgba(var(--ogoni-black2-rgb, 0, 0, 0), 0.08);
    overflow: hidden;
}

body.boxed-wrapper .page-wrapper--top {
    overflow: visible;
}

/*# sourceMappingURL=ogoni.css.map */
