@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Special+Gothic:wght@400..700&display=swap');

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}
html , body{
    overflow-x:hidden;
     font-family: "Poppins";
}
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    color: #737373;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.3s;
    color: inherit;
}

a:hover {
    color: #737373;
}

a i {
    transition: all 0.3s;
}

button {
    background-color: transparent;
    border: 0;
}

p {
    padding: 0;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
    font-size: 16px;
    color: #555555;
}

.dark p {
    color: #999999;
}

strong {
    font-weight: 500;
}

video,
iframe,
img {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

.medium {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    .g-0 {
        padding-right: 15px;
        padding-left: 15px;
    }
    .row.g-0 {
        padding-right: 0;
        padding-left: 0;
    }
    br {
        display: none;
    }
}

main {
    display: inline-block;
    width: 100%;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}



/*----------------------------------------*/

/*  01. ANIMATION CSS START
/*----------------------------------------*/

.cf_parallax_image {
    overflow: hidden;
}

@keyframes wcBubble {
    0% {
        scale: 1;
    }
    50% {
        scale: 1.5;
    }
    100% {
        scale: 1;
    }
}

@keyframes wcZoom {
    0% {
        scale: 1;
    }
    50% {
        scale: 0.5;
    }
    100% {
        scale: 1;
    }
}

@keyframes wcZoom_2 {
    0% {
        scale: 1;
    }
    50% {
        scale: 0.9;
    }
    100% {
        scale: 1;
    }
}

@keyframes wcSlideBottom {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(50px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes reveal {
    to {
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes wcfadeUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes characters {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes sheen {
    50% {
        transform: translateY(-20px);
        color: #737373;
    }
}

/*----------------------------------------*/

/*  01. Global CSS START
/*----------------------------------------*/

.body-overlay {
    position: fixed;
    z-index: 9;
    pointer-events: none;
    top: 0;
    opacity: 1;
    inset-inline-start: 0;
    width: 100vw;
    height: 100vh;
    background-repeat: repeat;
    background-position: top left;
    background-image: url(../imgs/writer/body-bg.webp);
}

.section-spacing {
    padding-top: 130px;
    padding-bottom: 130px;
}

@media only screen and (max-width: 1919px) {
    .section-spacing {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .section-spacing {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .section-spacing {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.text-slider-active .swiper-slide {
    width: auto;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #d6d6d6;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*
-----------------------
Pagination
-----------------------
*/

.pagination.style-1 {
    display: flex;
    gap: 20px;
}

.pagination.style-1 li:last-child {
    padding-inline-start: 20px;
}

.pagination.style-1 li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dir-rtl .pagination.style-1 li a img {
    transform: rotate(180deg);
}

.pagination.style-1 li a.current {
    color: #999;
}

.header__logo {
    position: relative;
    z-index: 2;
}
.header__logo img{
    width: 130px;
}
.header__search {
    position: relative;
}

.header__nav {
    position: relative;
}

.active {
    color: rgb(141, 207, 155) !important;
}

.active-circle {
    height: 10px;
    width: 10px;
    margin-left: 5px;
    background-color: rgb(141, 207, 155);
    border-radius: 50px;
    display: inline-block;
    animation: dot-lighting 1s infinite;
}

@keyframes dot-lighting {
    0% {
        background-color: rgb(0, 226, 52);
        transition: 0.3s ease-in;
    }
    50% {
        background-color: rgba(141, 207, 155, 0.7);
        transition: 0.3s ease-out;
    }
    100% {
        background-color: rgb(141, 207, 155);
        transition: 0.3s ease-in;
    }
}

@media screen and (min-width: 1550px) {
    .container-large {
        max-width: 1550px;
    }
    .container-x-large {
        max-width: 1790px;
    }
    .container-hd {
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
    }
}

.circle-text {
    width: 140px;
    height: 140px;
    position: relative;
    border-radius: 100px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

@media only screen and (max-width: 991px) {
    .circle-text {
        width: 120px;
        height: 120px;
    }
}

.circle-text .text {
    animation: spinner 5s infinite linear;
}

.circle-text .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.circle-text:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 37px solid #737373;
    border-radius: 50%;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.fix {
    overflow: hidden;
}

.bg-full {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bg-full img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.has-top-line {
    position: relative;
    padding-top: 10px;
}

.has-top-line:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: currentColor;
    top: 0;
    left: 0;
}

.has-bottom-line {
    position: relative;
    padding-bottom: 10px;
}

.has-bottom-line:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: currentColor;
    bottom: 0;
    left: 0;
}

.has-left-line {
    position: relative;
    padding-inline-start: 35px;
    display: inline-block;
}

.has-left-line:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    background-color: currentColor;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
}

.has-right-line {
    position: relative;
    padding-inline-end: 35px;
    display: inline-block;
}

.has-right-line:after {
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    background-color: currentColor;
    inset-inline-end: 0;
    top: 50%;
    transform: translateY(-50%);
}

.wc-btn-play {
    width: 80px;
    height: 80px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid currentColor;
    color: #737373;
    border-radius: 50%;
    transition: all 0.5s;
    font-size: 16px;
}

@media only screen and (max-width: 767px) {
    .wc-btn-play {
        width: 60px;
        height: 60px;
        font-size: 12px;
        border-width: 1px;
    }
}

.wc-btn-play:hover {
    color: #FFCD4D;
}

.wc-btn-play.light {
    color: #fff;
}

.wc-btn-play.light:hover {
    color: #fff;
}

.wc-btn-play.dark {
    color: #737373;
}

.wc-btn-play.dark:hover {
    color: #737373;
}

.show-light {
    display: inline-block;
}

.dark .show-light {
    display: none;
}

.show-dark {
    display: none;
}

.dark .show-dark {
    display: inline-block;
}

.line-area {
    position: relative;
}

.lines {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
}

.lines .line {
    width: 1px;
    height: 100%;
    background-color: rgba(0, 81, 83, 0.031372549);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.wc-btn-icon i {
    transform: rotate(-45deg);
    transition: all 0.3s;
    font-size: 14px;
    color: #737373;
}

.dir-rtl .wc-btn-icon i {
    transform: rotate(-135deg);
}

.wc-btn-icon:hover i {
    transform: rotate(0);
}

.dir-rtl .wc-btn-icon:hover i {
    transform: rotate(-180deg);
}

.list-check li {
    position: relative;
    padding-inline-start: 30px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 10px;
}

.list-check li::before {
    content: "\e94d";
    font-family: "FontAwesome";
    position: absolute;
    inset-inline-start: 0;
    font-size: 14px;
}

.list-check li:last-child {
    margin-bottom: 0;
}

.list-plus li {
    position: relative;
    padding-inline-start: 30px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    display: inline-block;
    width: 100%;
}

.list-plus li::before {
    content: "\f067";
    font-family: "FontAwesome";
    position: absolute;
    inset-inline-start: 0;
    top: 5px !important;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
}

.list-plus li:not(:last-child) {
    margin-bottom: 10px;
}

.pos-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.pagination-with-dash {
    font-size: 14px;
    display: flex;
    gap: 10px;
    color: #737373;
    align-items: center;
}

.pagination-with-dash .dash {
    width: 100px;
    height: 1px;
    background-color: #737373;
}

.pagination-with-dash .swiper-pagination-current {
    display: flex;
    gap: 5px;
    align-items: center;
}

.pagination-with-dash .swiper-pagination-current:before {
    content: url(../imgs/icon/arrow-left.webp);
}

.pagination-with-dash .swiper-pagination-total {
    display: flex;
    gap: 5px;
    align-items: center;
}

.pagination-with-dash .swiper-pagination-total:after {
    content: url(../imgs/icon/arrow-right.webp);
}

/*----------------------------------------*/

/*  01. THEME CSS START
/*----------------------------------------*/

.body-wrapper {
    background-color: #fff;
}

.dark .body-wrapper {
    background-color: #737373;
}

.img_anim_reveal {
    visibility: hidden;
    overflow: hidden;
}

.img_anim_reveal img {
    -o-object-fit: cover;
    object-fit: cover;
    transform-origin: left;
}

.anim-reveal {
    overflow: hidden;
}

.anim-reveal-line {
    overflow: hidden;
}

.color-white {
    color: #fff;
}

.color-black {
    color: #737373;
}

.color-primary {
    color: #737373;
}

.color-secondary {
    color: #555555;
}

.wc-bg-white {
    background-color: #fff;
}

.wc-bg-black {
    background-color: #737373;
}

.wc-bg-primary {
    background-color: #737373;
}

.wc-bg-secondary {
    background-color: #555555;
}

.wc-bg-transparent {
    background-color: transparent !important;
}

.zi-1 {
    z-index: 1;
}

.zi-2 {
    z-index: 2;
}

.zi-0 {
    z-index: 0;
}

.zi--1 {
    z-index: -1;
}

.box-layout {
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden !important;
}

.text-underline {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.header__area-6 {
    position: unset;
}

.vertically-center {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-indent-40 {
    text-indent: 40px;
}

.text-indent-50 {
    text-indent: 50px;
}

header {
    margin-bottom: -1px;
    z-index: 100;
}

section {
    margin-bottom: -1px;
}

.dir-rtl {
    direction: rtl;
}

.show-dark {
    display: inline-block;
}

.dark .show-dark {
    display: none;
}

.show-light {
    display: none;
}

.dark .show-light {
    display: inline-block;
}

.line-divider-sm {
    height: 0.5px;
    background-color: var(--black-9);
}

.dark .line-divider-sm {
    background-color: #E9E9E9;
}

.admin-bar header,
.admin-bar .body-wrapper {
    margin-top: 32px;
}

.swiper,
.swiper-container {
    direction: ltr;
}

.border-e-0 {
    border-inline-end: 0 !important;
}

.border-s-0 {
    border-inline-start: 0 !important;
}

.hover-zoom li a:hover {
    transform: scale(1.1);
}

.hover-rotate li a i {
    transition: all 1s;
}

.hover-rotate li a:hover i {
    transform: rotate(360deg);
}

.hover-space li a:hover {
    letter-spacing: 1px;
}

.hover-border-move li a {
    position: relative;
    transition: all 0.5s;
}

.hover-border-move li a:hover::after {
    width: 100%;
    left: auto;
    right: 0;
}

.hover-border-move li a::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 1px;
    bottom: 0;
    left: 0;
    transition: all 0.5s;
    background-color: currentColor;
}

.menu-hover-default li a:hover {
    color: #737373;
}

.menu-hover-space li a:hover {
    letter-spacing: 1px;
}

.blog-img-leftmove img {
    transform: scale(1.1);
    transition: all 0.5s;
}

.blog-img-leftmove:hover img {
    transform: scale(1.1) translateX(4%);
}

.blog-img-zoom {
    overflow: hidden;
}

.blog-img-zoom img {
    transform: scale(1);
    transition: all 1s;
}

.blog-img-zoom:hover img {
    transform: scale(1.1);
}

.anim_img_zoom img {
    transform: scale(1);
    transition: all 1s;
}

.anim_img_zoom:hover img {
    transform: scale(1.1);
}

.title-hover-flip {
    overflow: hidden;
    perspective: 1000px;
}

.title-hover-flip strong {
    font-weight: 400;
    position: relative;
    display: inline-block;
    transition: transform 0.5s;
    transform-origin: 50% 0;
    transform-style: preserve-3d;
}

.title-hover-flip strong:before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    content: attr(data-hover);
    transition: all 0.5s;
    transform: rotateX(-90deg);
    transform-origin: 50% 0;
}

.title-hover-flip:hover strong {
    transform: rotateX(90deg) translateY(-22px);
}

.service-hover-default:hover {
    background-color: var(--white-6);
}

.service-rollover-right {
    position: relative;
    transition: all 0.5s;
}

.service-rollover-right::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--white-6);
    transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

.service-rollover-right:hover::after {
    width: 100%;
    left: auto;
    right: 0%;
}

.service-rollover-left {
    position: relative;
    transition: all 0.5s;
}

.service-rollover-left::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--white-6);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.service-rollover-left:hover::after {
    width: 100%;
    right: auto;
    left: 0%;
}

.service-rollover-top {
    position: relative;
    transition: all 0.5s;
}

.service-rollover-top::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    left: 0;
    bottom: 0;
    background-color: var(--white-6);
    transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

.service-rollover-top:hover::after {
    height: 100%;
    bottom: auto;
    top: 0%;
}

.service-rollover-bottom {
    position: relative;
    transition: all 0.5s;
}

.service-rollover-bottom::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    top: 0;
    left: 0;
    background-color: var(--white-6);
    transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

.service-rollover-bottom:hover::after {
    height: 100%;
    top: auto;
    bottom: 0%;
}

.list-check li {
    position: relative;
    padding-inline-start: 24px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.list-check li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    inset-inline-start: 0;
    font-size: 14px;
}

.list-check li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-menu-item li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.62;
    display: inline-block;
}

.footer-menu-item li a:hover {
    color: #fff;
}

.footer-address li{
    color: #fff;
    margin-top: 10px;
}
.footer-address li a:hover{
    color: #fff;
}
.footer-address {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 23px;
}

.social-icons li a {
    font-size: 16px;
    display: block;
}

.social-icons li a:hover {
    color: #FFCD4D;
}

.line-horizontal {
    width: 100%;
    background: rgba(18, 18, 18, 0.06);
    height: 1px;
}

.container-medium {
    max-width: 1415px;
    margin: auto;
}

.form-search input {
    width: 100%;
    height: 70px;
    background: transparent;
    border: 0;
    color: #fff;
}

.form-search input:focus {
    outline: 0;
}

.form-search {
    display: flex;
    gap: 10px;
    border: 1px solid #fff;
    border-radius: 70px;
    padding: 0 30px;
}

.form-search button i {
    color: #fff;
}

.modal-content {
    display: unset;
    flex-direction: unset;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: transparent;
    background-clip: padding-box;
    border: 0;
    border-radius: 0;
    outline: 0;
    border: 0;
    text-align: center;
    position: unset;
}

.modal-dialog {
    max-width: 991px;
    position: unset;
}

.btn-close {
    content: "\e92d";
    font-family: "FontAwesome";
    font-size: 16px;
    opacity: 1;
    filter: brightness(100) contrast(0);
    border-radius: 50px;
    width: 2em;
    height: 2em;
    border: 1px solid #fff;
    position: absolute;
    inset-inline-end: 20px;
    top: 20px;
    transition: unset;
}

.modal {
    background-color: #737373;
}

.header__logo {
    transition: 0.3s;
}

.header-area.sticky {
    transition: 0.3s;
}

.header-area.sticky .main-menu li a {
    padding: 15px 15px;
    font-size: 15px !important;
    color: #000;
}

.header-area.sticky .main-menu ul.dp-menu li a {
    padding: 10px 0;
}

.header-area.sticky .wc-btn-primary {
    padding: 15px 30px;
}

.header-area.sticky .header-area__inner {
    height: 60px !important;
}

.header-area.sticky .header__logo img {
    width: 120px;
}

.scroll__down {
    display: flex;
    gap: 20px;
    align-items: center;
}

.scroll__down p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.9;
    text-transform: uppercase;
    color: #fff;
}

.scroll__down span {
    width: 66px;
    height: 106px;
    border: 1px solid var(--black-6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 89px;
}

.scroll__down span i {
    color: #fff;
}

.scroll__down-wrapper {
    height: 425px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 1399px) {
    .scroll__down-wrapper {
        height: 380px;
    }
}

@media only screen and (max-width: 1199px) {
    .scroll__down-wrapper {
        height: 350px;
    }
}

@media only screen and (max-width: 767px) {
    .scroll__down-wrapper {
        height: auto;
        padding: 40px 0;
    }
}

.scroll-top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 15px;
    bottom: 0px;
    z-index: 9999;
    background: #fff;
    border-radius: 100px;
    mix-blend-mode: exclusion;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.scroll-top.showed {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

.go-top-writer {
    width: 105px;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    color: #fff;
    background-image: url(../imgs/writer/go-top.webp);
    background-position: right center;
    background-repeat: no-repeat;
    right: 16%;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    transition: all 0.5s;
}

.dark .go-top-writer {
    color: #737373;
    background-image: url(../imgs/writer/go-top-light.webp);
}

.go-top-writer:hover {
    color: #737373;
}

.go-top-writer.showed {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .go-top-writer br {
        display: block;
    }
}

.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

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

.progress-wrap::after {
    position: absolute;
    content: "\f176";
    font-family: "FontAwesome";
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: #fff;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: #737373;
}

.progress-wrap svg.progress-circle path {
    stroke: rgb(255 213 49);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.light .scroll__down p {
    color: #737373;
}

.light .scroll__down span {
    border-color: var(--white-3);
}

.light .scroll__down span i {
    color: #737373;
}

.light.go-top-writer {
    color: #737373;
    background-color: transparent;
    background-image: url(../imgs/writer/go-top-light.webp);
}

.light.progress-wrap {
    margin: 0;
    background-color: transparent;
}

.light.progress-wrap svg path {
    fill: #737373;
}

.light.progress-wrap::after {
    color: #fff;
}

/*----------------------------------------*/

/*  01. Button CSS START
/*----------------------------------------*/

.b-radius {
    border-radius: 12px;
}

.wc-btn {
    display: inline-block;
}

.wc-btn-default {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-transform: capitalize;
    background: transparent;
    border-radius: 100px;
    padding: 17px 35px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    border: 1px solid var(--black-6);
    overflow: hidden;
    transition: all 0.3s;
}

.wc-btn-default:hover {
    color: #fff;
}

.dark .wc-btn-default {
    color: #737373;
}

.dark .wc-btn-default:hover {
    color: #737373;
}

.dir-rtl .wc-btn-default i {
    transform: rotateY(180deg);
}

.wc-btn-border {
    gap: 10px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    padding: 16px 30px;
    border: 1px solid #fff;
    overflow: hidden;
    transition: all 0.3s;
    z-index: 1;
    position: relative;
}

.wc-btn-border:hover {
    color: #fff;
}

.dark .wc-btn-border {
    color: #737373;
    border-color: #737373;
}

.dark .wc-btn-border:hover {
    color: #737373;
}

.wc-btn-primary {
    padding: 21px 40px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    background-color: #737373;
    border: 1px solid #737373;
    text-transform: capitalize;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
    gap: 20px;
    white-space: nowrap;
}

.wc-btn-primary:hover {
    color: #fff;
    background-color: #737373;
    border-color: #737373;
}

.dir-rtl .wc-btn-primary i {
    transform: rotateY(180deg);
}

.wc-btn-circle {
    text-align: center;
    width: 140px;
    height: 140px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #737373;
    border-radius: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background-color: #737373;
}

@media only screen and (max-width: 1199px) {
    .wc-btn-circle {
        width: 130px;
        height: 130px;
    }
}

.wc-btn-circle:hover {
    color: #fff;
}

.wc-btn-oval {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    border: 1px solid #3F3A36;
    display: inline-block;
    padding: 32px 52px;
    text-align: center;
    transition: all 0.3s;
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
}

.dark .wc-btn-oval {
    color: #737373;
}

.wc-btn-oval:hover {
    color: #737373;
}

.wc-btn-light {
    color: #fff !important;
    border-color: #fff !important;
}

.wc-btn-light:hover {
    color: #737373 !important;
}

.wc-btn-light span {
    background-color: #fff !important;
}

.wc-btn-ellipse {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 45px 45px;
    position: relative;
    display: inline-block;
    background-color: #fff;
    border-radius: 100%;
    border-top-left-radius: 200%;
    border-bottom-right-radius: 200%;
    z-index: 1;
}

.dark .wc-btn-ellipse {
    color: #737373;
    background-color: #737373;
}

.wc-btn-ellipse:before {
    position: absolute;
    content: "";
    width: calc(100% - 14px);
    height: calc(100% - 2px);
    background-color: #737373;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    border-top-left-radius: 200%;
    border-bottom-right-radius: 200%;
}

.dark .wc-btn-ellipse:before {
    background-color: #EDEDED;
}

.wc-btn-appointment {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: var(--blue-6);
    text-align: center;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 215px;
    width: 215px;
    padding: 20px;
}

@media only screen and (max-width: 1199px) {
    .wc-btn-appointment {
        width: 200px;
        height: 200px;
    }
}

@media only screen and (max-width: 991px) {
    .wc-btn-appointment {
        width: 170px;
        height: 170px;
        font-size: 18px;
    }
}

.wc-btn-appointment i {
    font-size: 24px;
    margin-bottom: 10px;
}

.wc-btn-appointment:hover {
    color: var(--blue-3);
}

.wc-btn-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.7;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.dark .wc-btn-link {
    color: #737373;
}

.wc-btn-link i {
    transform: rotate(-45deg);
    transition: all 0.3s;
}

.wc-btn-link:hover {
    color: #737373;
}

.wc-btn-link:hover i {
    transform: rotate(0);
    color: #737373;
}

.about-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #737373;
    color: #737373;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}

.about-btn img {
    padding-left: 15px;
}

.readmore-btn img {
    margin-bottom: 3px;
}

.play_btn_5 {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

@media only screen and (max-width: 991px) {
    .play_btn_5 {
        height: 80px;
        width: 80px;
    }
}

.play_btn_5:hover {
    border-color: #737373;
}

.play_btn_5 i {
    font-size: 20px;
    color: #fff;
}

.dark .play_btn_5 i {
    color: #737373;
}

.dark .play_btn_5 img {
    filter: brightness(0);
}

.get-touch {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: var(--white-11);
    padding: 13px 18px;
    display: inline-block;
    text-transform: uppercase;
    border: 1px solid #fff;
    margin-inline-end: 40px;
}

.get-touch:hover {
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .get-touch {
        padding: 12px 10px;
        margin-inline-end: 12px;
    }
}

.wc-btns-group {
    text-align: center;
    display: flex;
}

@media only screen and (max-width: 991px) {
    .wc-btns-group {
        flex-direction: column;
    }
}

@media only screen and (max-width: 767px) {
    .wc-btns-group {
        padding: 40px 0;
    }
    .wc-btns-group br {
        display: block;
    }
}

.wc-btns-group .btn-wrapper a {
    width: 140px;
    height: 140px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color: #737373;
    font-weight: 500;
}

@media only screen and (max-width: 1199px) {
    .wc-btns-group .btn-wrapper a {
        width: 110px;
        height: 110px;
    }
}

.wc-btns-group .btn-wrapper:first-child a {
    margin-inline-end: -15px;
    background-color: #737373;
}

@media only screen and (max-width: 991px) {
    .wc-btns-group .btn-wrapper:first-child a {
        margin-inline-end: 0;
    }
}

.wc-btns-group .btn-wrapper:first-child a span {
    background-color: #fff;
}

.wc-btns-group .btn-wrapper:last-child a {
    margin-inline-start: -15px;
}

.dark .wc-btns-group .btn-wrapper:last-child a {
    background: #737373;
    color: #fff;
}

@media only screen and (max-width: 991px) {
    .wc-btns-group .btn-wrapper:last-child a {
        margin-inline-start: 0;
        margin-top: -15px;
    }
}

.wc-btns-group .btn-wrapper:last-child a:hover {
    border: 0;
}

.wc-btns-group .btn-wrapper:last-child a span {
    background-color: #737373;
}

.wc-btns-group-wrap {
    height: 425px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--black-6);
}

.dark .wc-btns-group-wrap {
    border-color: #F3F2F2;
}

@media only screen and (max-width: 1399px) {
    .wc-btns-group-wrap {
        height: 380px;
    }
}

@media only screen and (max-width: 1199px) {
    .wc-btns-group-wrap {
        height: 350px;
    }
}

@media only screen and (max-width: 767px) {
    .wc-btns-group-wrap {
        height: auto;
    }
}

.wc-btns-group a:hover {
    border: 0;
}

.wc-btns-group a span {
    background-color: #fff;
}

.btn-hover-bgchange {
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.btn-hover-bgchange span {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 50%;
    top: 50%;
    z-index: -1;
    border-radius: 100%;
    transition: all 1s;
    background-color: #737373;
    transform: translate(-50%, -50%);
}

.btn-hover-bgchange:hover {
    color: #737373;
    border: 1px solid #737373;
}

.btn-hover-bgchange:hover span {
    width: 400px;
    height: 400px;
}

/*
--------------------------------
BINOX NEW BUTTON
--------------------------------
*/

.btn-underline {
    color: #737373;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-underline:hover {
    color: #FFCD4D;
}

.btn-underline:hover::before {
    width: 0;
}

.btn-underline::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #737373;
    transition: 0.3s;
}

.wc-btn-link-none {
    color: #737373;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.85;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 30px;
}

.wc-btn-link-none:hover {
    color: #FFCD4D;
}

/*
--------------------
wc-btn-underline
--------------------
*/

.wc-btn-underline {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    color: #737373;
    text-transform: capitalize;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 4px;
    white-space: nowrap;
}

.wc-btn-underline:hover::before {
    width: 0;
}

.wc-btn-underline::before {
    position: absolute;
    content: "";
    inset-inline-start: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transition: 0.3s;
}

.wc-btn-underline i {
    font-size: 10px;
}

.dir-rtl .wc-btn-underline i {
    transform: rotateY("180deg");
}

/*
--------------------
wc-btn-normal
--------------------
*/

.wc-btn-normal {
    display: inline-flex;
    position: relative;
    color: #737373;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    align-items: center;
    gap: 30px;
    padding-bottom: 4px;
}

.wc-btn-normal::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 0.05em;
    bottom: 0;
    left: 0;
    background: currentcolor;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.wc-btn-normal:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.wc-btn-normal i {
    font-size: 10px;
}

.dir-rtl .wc-btn-normal i {
    transform: rotateY("180deg");
}

/*
--------------------
btn-text-flip
--------------------
*/

.btn-text-flip {
    perspective: 1000px;
}

.btn-text-flip:hover span {
    transform: rotateX(90deg) translateY(-12px);
    color: inherit;
}

.btn-text-flip span {
    position: relative;
    display: inline-block;
    padding: 0;
    transition: transform 0.5s;
    transform-origin: 50% 0;
    transform-style: preserve-3d;
}

.btn-text-flip span:before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    content: attr(data-text);
    transition: color 0.5s;
    transform: rotateX(-90deg);
    transform-origin: 50% 0;
    text-align: center;
}

.wc-btn-group {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
}

.wc-btn-group>*:nth-child(1) {
    transform: scale3d(0.5, 0.5, 1);
    margin-right: -70px;
}

.wc-btn-group>*:nth-child(2) {
    transform: scale3d(1, 1, 1);
}

.wc-btn-group>*:nth-child(3) {
    transform: scale3d(1, 1, 1);
    margin-left: 0;
}

.wc-btn-group:hover>*:nth-child(1) {
    transform: scale3d(1, 1, 1);
    margin-right: 0;
}

.wc-btn-group:hover>*:nth-child(2) {
    transform: scale3d(1, 1, 1);
}

.wc-btn-group:hover>*:nth-child(3) {
    transform: scale3d(0.5, 0.5, 1);
    margin-left: -70px;
}

@keyframes mask_animation {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
}

@keyframes mask_animation_2 {
    from {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
    to {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
}

.btn-hover-default {
    transition: all 0.5s;
}

.btn-hover-default:hover {
    color: #737373;
    background-color: #fff;
}

.btn-hover-cross {
    overflow: hidden;
    position: relative;
    transition: all 1s;
}

.btn-hover-cross::after {
    position: absolute;
    content: "";
    width: 150%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: #737373;
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
    transition: all 0.75s;
    opacity: 0.5;
    z-index: -1;
}

.btn-hover-cross:hover {
    border-color: #737373;
    background-color: transparent;
}

.btn-hover-cross:hover::after {
    height: 120%;
    opacity: 1;
}

.btn-hover-divide {
    overflow: hidden;
    position: relative;
    transition: all 1s;
    z-index: 1;
}

.btn-hover-divide::after {
    position: absolute;
    content: "";
    width: 150%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: #737373;
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
    transition: all 0.75s;
    opacity: 0.5;
    z-index: -1;
}

.btn-hover-divide:hover {
    border-color: #737373;
    background-color: transparent !important;
    border-color: transparent;
}

.btn-hover-divide:hover::after {
    height: 400%;
    opacity: 1;
}

.btn-hover-cropping {
    overflow: hidden;
    position: relative;
    transition: all 1s;
}

.btn-hover-cropping::after {
    position: absolute;
    content: "";
    width: 150%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: #737373;
    transform: translateX(-50%) translateY(-50%) rotate(25deg);
    transition: all 0.75s;
    opacity: 0.5;
    z-index: -1;
}

.btn-hover-cropping:hover {
    border-color: #737373;
    background-color: transparent;
}

.btn-hover-cropping:hover::after {
    height: 400%;
    opacity: 1;
}

.btn-hover-mask {
    gap: 10px;
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    border-radius: 5px;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    border: 1px solid #fff;
    z-index: 1;
}

.btn-hover-mask::after {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #737373;
    position: absolute;
    content: attr(data-text);
    cursor: pointer;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    -webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.webp");
    mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.webp");
    -webkit-mask-size: 2300% 100%;
    mask-size: 2300% 100%;
    animation: mask_animation_2 0.7s steps(22) forwards;
}

.btn-hover-mask:hover {
    color: #fff;
}

.btn-hover-mask:hover::after {
    animation: mask_animation 0.7s steps(22) forwards;
}

.dark .btn-hover-mask {
    border-color: #737373;
}

.dark .btn-hover-mask::after {
    z-index: -1;
    color: #fff;
    background-color: #737373;
}

.dark .btn-hover-mask:hover {
    color: #737373;
}

.btn-rollover-top {
    position: relative;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.btn-rollover-top:before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 0px;
    width: 100%;
    z-index: -1;
    content: "";
    background-color: #737373;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.btn-rollover-top:hover {
    border-color: #737373;
    background-color: transparent;
}

.btn-rollover-top:hover::before {
    top: 0%;
    bottom: auto;
    height: 100%;
}

.btn-rollover-left {
    position: relative;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.btn-rollover-left::before {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    content: "";
    background-color: #737373;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
}

.btn-rollover-left:hover {
    border-color: #737373;
    background-color: transparent;
}

.btn-rollover-left:hover::before {
    left: 0%;
    right: auto;
    width: 100%;
}

.btn-rollover-cross {
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
}

.btn-rollover-cross::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 100%;
    left: 100%;
    opacity: 0;
    border-bottom: 3px solid #737373;
    border-left: 3px solid #737373;
    transition: all 0.75s;
}

.btn-rollover-cross::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 100%;
    right: 100%;
    opacity: 0;
    border-top: 3px solid #737373;
    border-right: 3px solid #737373;
    transition: all 0.75s;
}

.btn-rollover-cross:hover {
    border-color: transparent;
    color: #737373;
}

.btn-rollover-cross:hover::before {
    bottom: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.btn-rollover-cross:hover::after {
    top: 0;
    right: 0;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.btn-parallal-border {
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
}

.btn-parallal-border::before {
    position: absolute;
    content: "";
    width: 0%;
    height: 0%;
    bottom: 0;
    left: 0;
    opacity: 0;
    border-bottom: 3px solid #737373;
    border-left: 3px solid #737373;
    border-radius: 5px;
    transition: all 0.75s;
}

.btn-parallal-border::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 0%;
    top: 0;
    right: 0;
    opacity: 0;
    border-top: 3px solid #737373;
    border-right: 3px solid #737373;
    border-radius: 5px;
    transition: all 0.75s;
}

.btn-parallal-border:hover {
    border-color: transparent;
    color: #737373;
}

.btn-parallal-border:hover::before {
    opacity: 1;
    width: 100%;
    height: 100%;
}

.btn-parallal-border:hover::after {
    opacity: 1;
    width: 100%;
    height: 100%;
}

/*
------------------------------
SECTIN TITLE 1
------------------------------
*/

.section-title-wrapper.style-1 .subtitle-wrapper {
    margin-bottom: 32px;
}

.section-title-wrapper.style-1 .section-subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 2px;
    border-bottom: 1px solid currentColor;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 3.6px;
}

.section-title-wrapper.style-1 .section-title {
    font-size: 28px;
    color: #000;
}

@media only screen and (max-width: 991px) {
    .section-title-wrapper.style-1 .section-title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title-wrapper.style-1 .section-title {
        font-size: 25px;
    }
}

.section-title-wrapper.style-1 .cf_text {
    margin-top: 32px;
}

.section-title-wrapper.style-1 .btn-wrapper {
    margin-top: 30px;
}


/*----------------------------------------*/

/*  01. MENU CSS START
/*----------------------------------------*/

.main-menu.menu-dark>ul>li>a {
    color: #737373;
}

.main-menu.menu-light>ul>li>a {
    color: #fff;
}

.main-menu>ul {
    display: flex;
    justify-content: end;
}

.main-menu>ul>li:hover>ul {
    opacity: 1;
    pointer-events: all;
    inset-inline-start: 0;
}

.main-menu>ul>li:hover>ul.dp-menu li:hover>ul {
    opacity: 1;
    pointer-events: all;
    inset-inline-start: 100%;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #737373;
    padding: 30px 12px;
    text-transform: capitalize;
}

.dark .main-menu li a {
    color: #000;
}

.main-menu ul.dp-menu {
    background-color: #fff;
    padding: 18px 0px;
    width: 370px;
    position: absolute;
    inset-inline-start: 10px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: all 0.5s;
}
.main-menu ul.dp-menu ul {
    background: #737373;
    padding: 18px 0px;
    width: 300px;
    position: absolute;
    inset-inline-start: calc(100% + 10px);
    top: 0;
    opacity: 0;
    z-index: 10;
    transition: all 0.5s;
}

.main-menu ul.dp-menu li {
    position: relative;
    padding: 0 10px;
}

.main-menu ul.dp-menu li:hover>a {
    color: #000;
    background-color: transparent;
}

.main-menu ul.dp-menu li:hover>ul {
    opacity: 1;
    transform: none !important;
    pointer-events: all;
}

.main-menu ul.dp-menu li a {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    padding: 10px 0;
    background-color: transparent;
    border-radius: 8px;
    text-transform: capitalize;
}

.main-menu ul.dp-menu li a:hover {
    letter-spacing: 0.5px;
}

.main-menu ul.dp-menu li a:after {
    transform: rotate(-90deg);
    margin-left: auto;
}

.main-menu .has-mega-menu {
    position: static;
}

.main-menu li.menu-item-has-children>a:after {
    content: "\f107";
    font-family: "FontAwesome";
    margin-inline-start: 5px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 0px;
}

.main-menu .mega-menu {
    background-color: #737373;
    padding: 30px;
    width: 100%;
    position: fixed !important;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    -moz-column-gap: 50px;
    column-gap: 50px;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: all 0.5s;
    max-width: 100%;
    margin: auto;
    right: 0;
    gap: 30px;
    border-radius: 5px;
}

.main-menu .mega-menu::-webkit-scrollbar {
    width: 0px;
}

@media only screen and (max-width: 1399px) {
    .main-menu .mega-menu {
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
}

.main-menu .mega-menu li:has(ul)>a:after {
    content: "";
}

.main-menu .mega-menu li a {
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    padding: 0 !important;
    background: #737373;
    border-radius: 8px;
    overflow: hidden;
}

.main-menu .mega-menu li a img {
    transition: 1s;
}

.main-menu .mega-menu li a:hover {
    color: #fff;
    background: transparent;
}

.main-menu .mega-menu li a:hover img {
    transform: scale(1.1);
}

.main-menu .mega-menu .title {
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 1px solid #333337;
    padding-bottom: 20px;
    margin-bottom: 20px;
    pointer-events: none;
    border-radius: 0;
}

.main-menu .mega-style-2 {
    padding: 0 15%;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
}

.main-menu .mega-style-2 .title {
    height: 70px;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
    overflow: visible;
    padding-left: 30px;
}

.main-menu .mega-style-2 .title:after {
    position: absolute;
    content: "";
    width: 5000px;
    height: 1px;
    background-color: #333337;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.main-menu .mega-style-2>li:not(:first-child) {
    border-left: 1px solid #333337;
}

.main-menu .mega-style-2 ul {
    -moz-column-count: 2;
    column-count: 2;
    position: relative;
    padding: 20px 0;
}

.main-menu .mega-style-2 ul:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 700px;
    background-color: #333337;
    top: 0;
    left: 50%;
    z-index: 1;
}

.main-menu .mega-style-2 ul li a {
    padding-left: 30px;
}

.main-menu .mega-style-3 {
    padding: 0 0 0 20px;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
}

.main-menu .mega-style-3 .title {
    height: 70px;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
    overflow: visible;
    padding-left: 30px;
}

.main-menu .mega-style-3 .title:after {
    position: absolute;
    content: "";
    width: 5000px;
    height: 1px;
    background-color: #333337;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.main-menu .mega-style-3>li:not(:first-child) {
    border-left: 1px solid #333337;
}

.main-menu .mega-style-3>li:last-child {
    border: none;
    width: 36vw;
}

@media only screen and (max-width: 1399px) {
    .main-menu .mega-style-3>li:last-child {
        width: 32vw;
    }
}

.main-menu .mega-style-3 ul {
    -moz-column-count: 2;
    column-count: 2;
    position: relative;
    padding: 20px 0;
    -moz-column-gap: 0;
    column-gap: 0;
}

.main-menu .mega-style-3 ul:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 700px;
    background-color: #333337;
    top: 0;
    left: 50%;
    z-index: 1;
}

.main-menu .mega-style-3 ul li {
    margin: 0 10px;
}

.main-menu .mega-style-3 ul li a {
    padding-left: 20px;
}

.main-menu .mega-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.main-menu .mega-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
}

.main-menu .list-3-column ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 50px;
    column-gap: 50px;
}

@media only screen and (max-width: 1399px) {
    .main-menu .list-3-column ul {
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
}

.main-menu .span-first-item ul li:first-child {
    grid-column: 1/-1;
    -moz-column-span: all;
    column-span: all;
}

.main-menu .new {
    font-size: 10px;
    font-weight: 600;
    background: #FFA38E;
    color: #737373;
    padding: 3px 7px;
    line-height: 1;
    border-radius: 2px;
    margin-inline-start: 8px;
    display: inline-block;
}

@media only screen and (max-width: 1199px) {
    .main-menu-2 {
        display: none;
    }
}

.main-menu-2 li {
    display: inline-block;
    padding: 0 10px;
}

.main-menu-2 li a {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    padding: 10px;
    text-transform: capitalize;
}

.main-menu-2 li a:hover {
    color: #737373;
}

@media only screen and (max-width: 1399px) {
    .main-menu-2 li a {
        padding: 5px 0;
    }
}

.main-menu-3 li {
    display: inline-block;
    margin-right: 45px;
}

@media only screen and (max-width: 1199px) {
    .main-menu-3 li {
        margin-right: 25px;
    }
}

.main-menu-3 li:last-child {
    margin-right: 0;
}

.main-menu-3 li a {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

.main-menu-3 li a:hover {
    color: #737373;
}

.main-menu-4 li {
    display: inline-block;
    margin-right: 50px;
}

.main-menu-4 li a {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
}

.main-menu-4 li a:hover {
    color: #737373;
}

.mega-menu-thumb {
    width: 108%;
    aspect-ratio: 100/83;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media only screen and (max-width: 1199px) {
    .mega-menu-thumb {
        width: 100%;
        height: 100%;
    }
}

.mega-menu-thumb:after {
    position: absolute;
    content: "";
    width: 76%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(270deg, rgba(28, 29, 32, 0) 0%, #1C1D20 100%);
}

.mega-menu-thumb .laptop-view {
    width: 70%;
    aspect-ratio: 100/114;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
    position: absolute;
    right: 70px;
    bottom: 0;
}

.mega-menu-counter__item {
    text-align: center;
    display: inline-block;
    margin-top: 35%;
    margin-left: 17%;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .mega-menu-counter__item {
        margin: 30px auto 50px;
    }
}

.mega-menu-counter__text p {
    font-size: 30px;
    line-height: 28px;
    color: #fff;
    font-weight: 500;
}

.mega-menu-counter__number {
    font-size: 150px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 24px;
    color: #fff;
    background: linear-gradient(136deg, #9479FF 0%, #FFA6D6 47.92%, #FFFCE3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1199px) {
    .menu-with-number {
        display: none;
    }
}

.menu-with-number li {
    display: inline-block;
}

.menu-with-number li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    padding: 34px 40px;
    display: inline-block;
    text-transform: uppercase;
}

.menu-with-number li a:hover span {
    color: #fff;
}

.menu-with-number li a:hover span::before {
    background-color: #fff;
}

.menu-with-number li a.active span {
    color: #fff;
}

.menu-with-number li a.active span::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 1px;
    right: 20px;
    top: 50%;
    background-color: #fff;
}

.menu-with-number li a span {
    display: block;
    font-weight: 500;
    font-size: 12px;
    line-height: 10px;
    text-align: right;
    color: #999999;
    position: relative;
    transition: all 0.5s;
}

.menu-with-number li a span::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 1px;
    right: 20px;
    top: 50%;
    transition: all 0.5s;
    background-color: var(--black-6);
}

.sidebar-menu li {
    display: block;
    padding-bottom: 15px;
}

@media only screen and (max-width: 1919px) {
    .sidebar-menu li {
        padding-bottom: 10px;
    }
}

.sidebar-menu li a {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    padding: 10px 0;
    text-transform: uppercase;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    color: #737373;
}

@media only screen and (max-width: 1399px) {
    .sidebar-menu li a {
        padding: 5px 0;
    }
}

/* mean menu customize */

.offcanvas__menu-wrapper.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.offcanvas__menu-wrapper.mean-container .mean-nav>ul>li:last-child>a {
    border-bottom: 1px solid var(--black-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.offcanvas__menu-wrapper.mean-container .mean-nav .new {
    font-size: 10px;
    font-weight: 600;
    background: #FFA38E;
    color: #737373;
    padding: 3px 7px;
    line-height: 1;
    display: flex;
    align-items: center;
    border-radius: 2px;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 15px 0;
    padding-inline-start: 15px;
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    color: #fff;
    text-transform: capitalize;
    border-top: 1px solid var(--black-4);
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    outline: none;
    transform: translateY(var(--y)) translateZ(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-sizing: border-box;
}

.dark .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    color: #737373;
    border-color: var(--white-4);
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
        font-size: 20px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    width: 54px;
    height: 54px;
    justify-content: center;
    font-weight: 300;
    border: none !important;
}

.dark .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    background-color: var(--white-4);
}

.dir-rtl .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    right: 275px;
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
        height: 50px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand:hover {
    background: #555555;
    opacity: 1;
}

.dark .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand:hover {
    background-color: var(--white-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li:first-child {
    border-top: 1px solid var(--black-4);
}

.dark .offcanvas__menu-wrapper.mean-container .mean-nav ul li li:first-child {
    border-color: var(--white-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
    font-size: 20px;
    text-transform: capitalize;
    border-top: none !important;
    padding: 12px 0;
    padding-inline-start: 30px;
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
        font-size: 18px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 58px;
}

@media only screen and (max-width: 991px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
        height: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
        height: 22px;
    }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li:last-child {
    border-bottom: 1px solid var(--black-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
    padding-left: 40px;
}

.offcanvas__menu-wrapper.mean-container .mean-bar {
    padding: 0;
    background: none;
    max-height: auto;
    overflow-y: scroll;
}

.offcanvas__menu-wrapper.mean-container .mean-bar::-webkit-scrollbar {
    width: 0;
}

.offcanvas__menu-wrapper.mean-container a.meanmenu-reveal {
    display: none !important;
}

.light .main-menu li a:hover {
    color: #737373;
}

.light .main-menu-2 li a {
    color: #737373;
}

.light .main-menu-2 li a:hover {
    color: #737373;
}

.light .main-menu-3 li a {
    color: #737373;
}

.light .main-menu-3 li a:hover {
    color: #737373;
}

.light .sidebar-menu li a {
    color: #737373;
}

.light .sidebar-menu li a:hover {
    color: #737373;
}

.light .menu-with-number li a {
    color: #737373;
}

.light .menu-with-number li a:hover span {
    color: #737373;
}

.light .menu-with-number li a:hover span::before {
    background-color: #737373;
}

.light .menu-with-number li a span {
    color: var(--black-9);
}

.light .menu-with-number li a span::before {
    background-color: var(--black-9);
}

.light .menu-with-number li a.active span {
    color: #737373;
}

.light .menu-with-number li a.active span::before {
    background-color: #737373;
}

/*----------------------------------------*/

/*  01. MODAL CSS START
/*----------------------------------------*/

.modal__dialog {
    width: 760px;
    max-width: 100%;
    margin-top: 100px;
}

@media only screen and (max-width: 991px) {
    .modal__dialog {
        width: 700px;
        margin-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .modal__dialog {
        width: 350px;
    }
}

.modal__content {
    height: 500px;
}

@media only screen and (max-width: 767px) {
    .modal__content {
        height: 300px;
    }
}

.modal__content iframe {
    width: 100%;
    height: 100%;
}

.modal__close {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -15px;
    right: -15px;
    z-index: 9;
    border-radius: 50px;
    font-size: 20px;
    color: #fff;
    background: #737373;
    transition: all 0.3s;
}

.modal__close:hover {
    color: #737373;
}

.modal__sfluence {
    width: 100%;
    height: 100%;
    padding: 60px;
}

@media only screen and (max-width: 767px) {
    .modal__sfluence {
        padding: 20px 10px;
    }
}

.modal__sfluence-area {
    width: 100vw;
    height: 100vh;
    background: #737373;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    transform: scale(0.5);
}

.modal__sfluence-area.showed {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.modal__sfluence-area .close_btn {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0px;
    right: 20px;
    z-index: 9;
    border-radius: 50px;
    font-size: 30px;
    color: #fff;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__sfluence-area .close_btn:hover {
    color: #737373;
}

@media only screen and (max-width: 767px) {
    .modal__sfluence-area .close_btn {
        right: 0;
    }
}

.modal__sfluence-area iframe,
.modal__sfluence-area video {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .modal__sfluence-area iframe,
    .modal__sfluence-area video {
        height: 300px;
        -o-object-fit: cover;
        object-fit: cover;
        margin-top: 45%;
    }
}

/*----------------------------------------*/

/*  01. CURSOR CSS START
/*----------------------------------------*/

.cursor {
    position: fixed;
    pointer-events: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    color: var(--#fff);
    background: #737373;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    z-index: 999;
    opacity: 0;
    mix-blend-mode: hard-light;
    transition: all 0.3s;
}

.cursor.large {
    width: 180px;
    height: 180px;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
}

.cursor1 {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid #737373;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.15s;
    z-index: 999;
}

@media (max-width: 1200px) {
    .cursor1 {
        display: none;
    }
}

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: #737373;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.2s;
    z-index: 999;
}

@media (max-width: 1200px) {
    .cursor2 {
        display: none;
    }
}

.cursor-testi {
    position: fixed;
    width: 80px;
    height: 80px;
    background-color: #737373;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.2s;
    z-index: 999;
}

@media (max-width: 1200px) {
    .cursor-testi {
        display: none;
    }
}

@supports (mix-blend-mode: exclusion) {
    .wc-cursor.exclusion,
    .wc-cursor.opaque {
        mix-blend-mode: exclusion;
    }
}

@supports (mix-blend-mode: exclusion) {
    .wc-cursor.exclusion:before,
    .wc-cursor.opaque:before {
        background: #fff;
    }
}

.wc-cursor.normal,
.wc-cursor.text {
    mix-blend-mode: normal;
}

.wc-cursor.normal:before,
.wc-cursor.text:before {
    background: currentColor;
}

.wc-cursor.inverse {
    color: #fff;
}

.wc-cursor.visible:before {
    transform: scale(0.2);
}

.wc-cursor.visible.active:before {
    transform: scale(0.23);
    transition-duration: 0.2s;
}

.wc-cursor.pointer:before {
    transform: scale(0.15);
}

.wc-cursor.text:before {
    opacity: 0.85;
    transform: scale(1.7);
}

.wc-cursor.text.active:before {
    transform: scale(1.6);
    transition-duration: 0.2s;
}

.wc-cursor.opaque:before {
    transform: scale(1.32);
}

.wc-cursor.opaque.active:before {
    transform: scale(1.2);
}

.wc-cursor.sm:before {
    transform: scale(1.25);
}

.wc-cursor.md:before {
    transform: scale(1.5);
}

.wc-cursor.lg:before {
    transform: scale(2);
}

.wc-cursor.xl:before {
    transform: scale(2.5);
}

.wc-cursor.xxl:before {
    transform: scale(3);
}

.wc-cursor.hidden:before {
    transform: scale(0);
}

.color-accent-lilac {
    color: #8d53e9;
}

.color-accent-lilac-bg {
    background: #8d53e9;
}

/* Cursor CSS */

.wc-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    contain: layout style size;
    pointer-events: none;
    will-change: transform;
    color: #737373;
    transition: opacity 0.3s, color 0.4s;
}

.wc-cursor:before {
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    display: block;
    width: 48px;
    height: 48px;
    transform: scale(0);
    background: currentColor;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out, opacity 0.1s;
}

.wc-cursor-text {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(10deg);
    opacity: 0;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.01em;
    transition: opacity 0.4s, transform 0.3s;
}

.wc-cursor.text .wc-cursor-text {
    opacity: 1;
    transform: scale(1);
}

@supports (mix-blend-mode: exclusion) {
    .wc-cursor.-exclusion,
    .wc-cursor.-opaque {
        mix-blend-mode: exclusion;
    }
}

@supports (mix-blend-mode: exclusion) {
    .wc-cursor.exclusion:before,
    .wc-cursor.opaque:before {
        background: #fff;
    }
}

.wc-cursor.normal,
.wc-cursor.text {
    mix-blend-mode: normal;
}

.wc-cursor.normal:before,
.wc-cursor.text:before {
    background: currentColor;
}

.wc-cursor.inverse {
    color: #fff;
}

.wc-cursor.visible:before {
    transform: scale(0.2);
}

.wc-cursor.visible.active:before {
    transform: scale(0.23);
    transition-duration: 0.2s;
}

.wc-cursor.pointer:before {
    transform: scale(0.15);
}

.wc-cursor.text:before {
    opacity: 0.85;
    transform: scale(1.7);
}

.wc-cursor.text.active:before {
    transform: scale(1.6);
    transition-duration: 0.2s;
}

.wc-cursor.opaque:before {
    transform: scale(1.32);
}

.wc-cursor.opaque.active:before {
    transform: scale(1.2);
}

.wc-cursor.sm:before {
    transform: scale(1.25);
}

.wc-cursor.md:before {
    transform: scale(1.5);
}

.wc-cursor.lg:before {
    transform: scale(2);
}

.wc-cursor.xl:before {
    transform: scale(2.5);
}

.wc-cursor.xxl:before {
    transform: scale(3);
}

.wc-cursor.xxxl:before {
    transform: scale(3.5);
}

.wc-cursor.hidden:before {
    transform: scale(0);
}

/*----------------------------------------*/

/*  01. HERO CSS START
/*----------------------------------------*/

.progress__item p.title,
.progress__item-2 p.title {
    padding: 0;
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    color: #fff;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.progress__item-2 {
    padding-bottom: 25px;
}

.light .progress__item p.title,
.light .progress__item-2 p.title {
    color: #737373;
}

.light .developer-skill__resume .sonny_progressbar .progress-percent {
    color: #737373;
}

.cf-cta__text-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    grid-gap: 45px;
}

@media only screen and (max-width: 991px) {
    .cf-cta__text-wrapper {
        grid-template-columns: 1fr;
    }
}

.cf-cta__btn .wc-btn-default {
    font-size: 18px;
    font-weight: 600;
    padding: 35px 75px;
    background-color: #fff;
    color: #737373;
    text-transform: uppercase;
    border-width: 0;
}

.dark .cf-cta__btn .wc-btn-default {
    background-color: #737373;
    color: #fff;
}

@media only screen and (max-width: 1199px) {
    .cf-cta__btn .wc-btn-default {
        padding: 20px 40px;
        font-weight: 500;
    }
}

.dark .cf-cta__btn .wc-btn-default:hover {
    color: #737373;
}

.cf-cta__text {
    max-width: 250px;
    position: absolute;
    inset-inline-end: -30px;
    top: 47%;
    transform: translateY(-50%);
}

@media only screen and (max-width: 1199px) {
    .cf-cta__text {
        inset-inline-end: -130px;
        max-width: 270px;
    }
}

@media only screen and (max-width: 991px) {
    .cf-cta__text {
        inset-inline-end: 0;
        max-width: 270px;
    }
}

@media only screen and (max-width: 767px) {
    .cf-cta__text {
        position: static;
        transform: none;
    }
}

.cf-cta__text p {
    font-size: 18px;
}

.dark .cf-cta__text p {
    color: #555555;
}

.cf-cta__sec-title-wrapper {
    position: relative;
}

@media only screen and (max-width: 767px) {
    .cf-cta__sec-title-wrapper .sec-title-18 {
        margin-bottom: 20px;
        font-size: 40px;
    }
}

.switcher__area {
    position: relative;
    direction: ltr;
}

@media only screen and (max-width: 767px) {
    .switcher__area {
        display: none;
    }
}

.switcher__icon {
    position: fixed;
    width: 50px;
    height: 50px;
    background: #fff;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    z-index: 999;
    transition: all 0.3s;
    mix-blend-mode: exclusion;
}

.switcher__icon i {
    color: #737373;
}

.switcher__icon button {
    font-size: 24px;
    color: #737373;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    transition: all 0.3s;
}

.switcher__icon button:hover {
    color: #999999;
}

.switcher__icon button#switcher_open {
    animation: wcSpinner 5s infinite linear;
}

.switcher__items {
    width: 280px;
    padding: 50px 30px;
    background: #737373;
    position: fixed;
    right: -280px;
    top: 40%;
    z-index: 99;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.switcher__items .wc-col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.switcher__item {
    margin-bottom: 30px;
}

@media only screen and (max-width: 1399px) {
    .switcher__item:nth-child(3) {
        display: none;
    }
}

.switcher__item:last-child {
    margin-bottom: 0;
}

.switcher__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #fff !important;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.switcher__btn button {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #999999;
    background: #2B2B2F;
    border-radius: 4px;
    padding: 10px 15px;
    text-transform: capitalize;
}

.switcher__btn button:hover,
.switcher__btn button.active {
    color: #fff;
}

.switcher__btn select {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #999999;
    width: 100%;
    border: none;
    padding: 9px 10px;
    border-radius: 4px;
    background: #2B2B2F;
    text-transform: capitalize;
    outline: none;
    cursor: pointer;
}

#switcher_close {
    display: none;
}

.overlay-switcher-close {
    position: fixed;
    z-index: 99;
    height: 100%;
    width: 100%;
    background-color: transparent;
    display: none;
}

.overlay-switcher-close.show-overlay {
    display: block;
}

.offcanvas-3__area {
    background: #737373;
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 50px 50px 100px;
    z-index: 1000;
    overflow: hidden;
}

@media only screen and (max-width: 1919px) {
    .offcanvas-3__area {
        padding: 30px 30px 100px;
    }
}

@media (max-height: 500px) {
    .offcanvas-3__area {
        padding: 40px;
    }
}

.offcanvas-3__inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    height: 100%;
}

@media only screen and (max-width: 991px) {
    .offcanvas-3__inner {
        grid-template-columns: 260px 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas-3__inner {
        overflow-y: scroll;
        display: flex;
        flex-direction: column;
    }
}

@media (max-height: 500px) {
    .offcanvas-3__inner {
        overflow-y: scroll;
    }
}

.offcanvas-3__inner::-webkit-scrollbar {
    width: 0;
}

.offcanvas-3__meta li {
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    text-transform: uppercase;
}

.offcanvas-3__meta li:not(:last-child) {
    margin-bottom: 19px;
}

.offcanvas-3__meta li a:hover {
    color: #555555;
}

.offcanvas-3__meta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
}

.offcanvas-3__social .title {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.offcanvas-3__social-links {
    display: flex;
    gap: 20px;
}

.offcanvas-3__social-links a {
    font-size: 18px;
    color: #fff;
}

.offcanvas-3__social-links a:hover {
    color: #555555;
}

.offcanvas-3__menu {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.offcanvas-3__menu ul {
    position: relative;
}

.offcanvas-3__menu ul:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #333337;
    inset-inline-start: 8px;
    top: 0;
}

@media only screen and (max-width: 767px) {
    .offcanvas-3__menu ul:before {
        display: none;
    }
}

@media (max-height: 500px) {
    .offcanvas-3__menu ul:before {
        height: 100%;
    }
}

.offcanvas-3__menu li {
    padding-inline-start: 58px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .offcanvas-3__menu li {
        padding-left: 0;
    }
}

.offcanvas-3__menu li:hover>a {
    color: #fff;
}

.offcanvas-3__menu li:hover:before {
    opacity: 1;
    visibility: visible;
}

.offcanvas-3__menu li:before {
    position: absolute;
    content: "";
    width: 17px;
    height: 17px;
    background: #fff;
    border-radius: 50%;
    border: 4px solid #555555;
    inset-inline-start: 0;
    top: 38%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

@media only screen and (max-width: 767px) {
    .offcanvas-3__menu li:before {
        display: none;
    }
}

.offcanvas-3__menu li:not(:last-child) {
    margin-bottom: 26px;
}

.offcanvas-3__menu li a {
    font-size: 120px;
    font-size: 8vh;
    color: #fff !important;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 0.9;
    position: relative;
    transition: all 0.5s cubic-bezier(0, 0, 0.23, 1);
    text-decoration: none;
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    background-image: linear-gradient(90deg, #fff, #ddd 50%, #666 0);
    background-size: 200% 100%;
    background-position: 100%;
    transform: perspective(359px) rotateY(-18deg);
}

.offcanvas-3__menu li a:hover {
    background-position: 0;
    color: #fff;
    letter-spacing: 1.5px;
}

@media only screen and (max-width: 1399px) {
    .offcanvas-3__menu li a {
        font-size: 7vh;
    }
}

@media only screen and (max-width: 1199px) {
    .offcanvas-3__menu li a {
        font-size: 6vh;
    }
}

@media only screen and (max-width: 991px) {
    .offcanvas-3__menu li a {
        font-size: 5vw;
    }
}

.offcanvas-3__menu-wrapper {
    display: flex;
    align-items: flex-end;
    overflow-y: hidden;
}

.offcanvas-3__area {
    left: 0%;
    opacity: 0;
    visibility: hidden;
    transform: perspective(359px) rotateY(50deg);
}

.offcanvas-3__menu ul li {
    opacity: 0;
    top: -100px;
    position: relative;
    transform: perspective(359px) rotateX(50deg);
}

.offcanvas-3__meta {
    opacity: 0;
    top: -30px;
    position: relative;
}

.offcanvas-3__social {
    opacity: 0;
    top: -30px;
    position: relative;
}

.close-button {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    background-color: #555555;
    position: relative;
    border: 1px solid #333337;
    transition: all 0.5s;
}

@media only screen and (max-width: 767px) {
    .close-button {
        width: 50px;
        height: 50px;
    }
}

.close-button:hover {
    background-color: #555555;
}

.close-button:hover span {
    background-color: #737373;
}

.close-button span {
    width: 26px;
    height: 1px;
    display: inline-block;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 0.5s;
}

@media only screen and (max-width: 767px) {
    .close-button span {
        width: 20px;
    }
}

.close-button span:first-child {
    transform: translateX(-50%) rotate(45deg);
}

.close-button span:last-child {
    transform: translateX(-50%) rotate(-45deg);
}

/*
-----------------------------
FEATURES STYLES 1
-----------------------------
*/


.body-wrapper.consultant-agency {
    --primary: #737373;
    --secondary: #555;
    --action-color: #8DCF9B;
    max-width: 1920px;
    margin: auto;
}

.body-wrapper.consultant-agency .wc-btn-underline:hover {
    color: inherit;
}

.body-wrapper.consultant-agency .wc-btn-primary .icon-wcf-play-2 {
    font-size: 8px;
}

.body-wrapper.consultant-agency .wcf_iconbox.style-1 .title:hover {
    color: #000;
}

.body-wrapper.consultant-agency .wcf_iconbox.style-1 .title a:hover {
    color: #000;
}

.body-wrapper.consultant-agency .service-area.style-1 .service-list-item li:hover .title:hover {
    color: var(--hover-color);
}

.body-wrapper.consultant-agency .swiper-button-next::after,
.body-wrapper.consultant-agency .swiper-button-prev::after {
    transition: 0.3s;
}

.body-wrapper.consultant-agency .swiper-button-next:hover::after,
.body-wrapper.consultant-agency .swiper-button-prev:hover::after {
    color: #000;
}

.body-wrapper.consultant-agency .blog-area.style-1 .blog .title a:hover {
    color: #000;
}

.body-wrapper.consultant-agency .footer-menu-item li a:hover {
    color: #000;
}

.body-wrapper.consultant-agency .social-icons li a:hover {
    color: #000;
}

.body-wrapper.consultant-agency .footer-area.style-1 .text-copy a:hover {
    color: #000;
}
.text-copy img{
    width: 80px;
    margin-top: -16px;
}
.body-wrapper.consultant-agency .wc-btn-underline {
    gap: 25px;
}

.about-inner-wrapper {
    position: relative;
}

.main-menu__top {
    /* background-color: #737373; */
    border-bottom: 1px solid #fff;
}
.main-menu__top{
    position: relative;
    display: block;
    z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
    .main-menu__top-inner {
        padding: 5px 20px 5px;
    }
}
.main-menu__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5px 26px 5px 43px;
}
.main-menu__contact-list{
    position: relative;
    display: flex;
    align-items: center;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.main-menu__contact-list li{
        position: relative;
    display: flex;
    align-items: center;
}
.main-menu__contact-list li:before {
    content: "";
    position: absolute;
    top: -3px;
    bottom: 2px;
    left: -23px;
    width: 1px;
    /*background-color: rgba(255, 255, 255, .3);*/
}
.main-menu__contact-list li .icon{
       position: relative;
    display: flex;
    align-items: center;
}
.main-menu__contact-list li .icon i, .main-menu__top-time-icon span {
    display: inline-block;
    font-size: 18px;
    position: relative;
    color: #fff;
}
.main-menu__contact-list li .text {
    margin-left: 10px;
}

.main-menu__contact-list li .text p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 16px;
}
.main-menu__contact-list li .text p a {
    color: #fff;
    -webkit-transition: .5s;
    transition: .5s;
}
.main-menu__contact-list li+li {
    margin-left: 46px;
}
.main-menu__top-right, .main-menu__top-time, .main-menu__top-time-icon {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.main-menu__contact-list li .icon i, .main-menu__top-time-icon span {
    display: inline-block;
    font-size: 18px;
    position: relative;
    color: #fff;
}
.main-menu__top-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    letter-spacing: .05em;
    line-height: 16px;
    margin-left: 10px;
}
.main-menu__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 40px;
}
.main-menu__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 5px;
    font-size: 15px;
    color: #fff;
    background-color: transparent;
    overflow: hidden;
    -webkit-transition: .4s 
linear;
    -o-transition: .4s linear;
    transition: .4s 
linear;
    z-index: 1;
}
.main-menu__social a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    transform: scale(.5);
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: .4s 
linear;
    -o-transition: .4s linear;
    transition: .4s 
linear;
    z-index: -1;
}
.main-menu__social a+a {
    margin-left: 5px;
}









.header-area.sticky {
    position: fixed !important;
    background-color: #fff;
}

.header-area.sticky .wc-btn-primary {
    background-color: #fff;
    color: #737373;
    border-color: #fff;
}

.header-area.style-2 .search-icon {
    color: #fff !important;
}

.header-area .search-icon {
    color: #fff;
}

.header-area .wc-btn-primary {
    font-size: 16px;
    padding: 16px 12px;
    background-color: #fff;
    border-color: #fff;
    color: #737373;
}

.header-area .wc-btn-primary i {
    font-size: 8px;
}

.header-area .header-area__inner {
    border-color: rgba(255, 255, 255, 0.2);
}

.header-area.style-2 {
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    transition: 0.3s;
    padding: 20px 0px;
}

.header-area.style-2 .header-area__inner {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    border-bottom: 1px solid rgba(18, 18, 18, 0.06);
    height: 80px;
}

.header-area.style-2 .header-area__inner>*:first-child {
    margin-inline-end: auto;
}

.header-area.style-2 .main-menu li a {
    font-size: 16px;
    font-weight: 500;
}

.header-area.style-2 .search-icon {
    color: #737373;
    cursor: pointer;
}

.header-area.style-2 .open-offcanvas span {
    color: #000;
    font-size: 30px;
}
.open-offcanvas{
    display: none;
}

@media (max-width: 575px) {
    .header-area.style-2 .header__meta {
        display: none;
    }

}

.header-area.style-2 .wc-btn-primary i {
    font-size: 16px;
}

/* bannner-1 area style start */

.banner-1.banner-area .swiper-slide-item {
    padding-top: 280px;
    padding-bottom: 185px;
}

/*@media only screen and (max-width: 1399px) {*/
/*    .banner-1.banner-area .swiper-slide-item {*/
/*        padding-top: 185px;*/
/*    }*/

/*}*/

@media only screen and (max-width: 767px) {
   
    .banner-1.banner-area .swiper-slide-item {
        padding-top: 46px;
        padding-bottom: 70px;
    }
    .main-menu__top{
        display: none;
    }
}

@media (min-width: 1366px) and (max-width: 2500px) {
    .banner-1.banner-area {
        height: 100vh;
    }
}

.banner-1 .banner-area-bg:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(136deg, black, #00000008);
    top: 0;
    inset-inline-start: 0;
}

.banner-1 .banner-content {
    max-width: 100%;
}

.dir-rtl .banner-1 .banner-content {
    margin-left: auto;
}

.banner-1 .subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding: 9.5px 12px;
    background: rgba(255, 255, 255, 0.0705882353);
    /*display: inline-block;*/
        display: none;
    border-radius: 8px;
}

.banner-1 .title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    margin-top: 100px;
}
@media only screen and (max-width: 1200px) {
            .open-offcanvas{
    display: block;
}
}
@media only screen and (max-width: 1919px) {
    .banner-1 .title {
        font-size: 40px;
    }

}

@media only screen and (max-width: 991px) {
    .banner-1 .title {
        font-size: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-1 .title {
        font-size: 50px;
    }
.main-menu__top-inner {

    padding: 5px 6px;
}
.main-menu__social {
    margin-left: 90px;
    margin-top: 20px;
}
}

@media (max-width: 575px) {
    .banner-1 .title {
        font-size: 22px;
        line-height: 1.2;
    }
    .header__logo img {
    width: 112px !important;
}
}

.banner-1 .banner-content .text {
    max-width: 320px;
    margin-top: 10px;
    margin-inline-start: 215px;
}

@media only screen and (max-width: 767px) {
    .banner-1 .banner-content .text {
        margin-inline-start: 0;
        margin-top: 40px;
    }
}

.banner-1 .banner-content .text p {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.banner-1 .banner-content .text p.has-top-line {
    padding-top: 14px;
    border-width: 2px;
}

.banner-1 .banner-area-vision {
    position: absolute;
    max-width: 33%;
    inset-inline-end: 0;
    bottom: 0;
    z-index: 2;
}

@media only screen and (max-width: 1399px) {
    .banner-1 .banner-area-vision {
        max-width: 475px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-1 .banner-area-vision {
        position: relative;
        margin-top: 0;
    }
}

/* bannner-1 area style end */

.banner-area-vision {
    background: #737373;
    padding-top: 80px;
    padding-bottom: 73px;
    padding-inline-start: 110px;
    padding-inline-end: 165px;
    position: relative;
}

@media only screen and (max-width: 1919px) {
    .banner-area-vision {
        padding: 60px;
    }
}

@media only screen and (max-width: 1199px) {
    .banner-area-vision {
        padding: 30px;
    }
}

.banner-area-vision .text-wrapper {
    padding-top: 43px;
}

.banner-area-vision .text {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    color: #fff;
}

.banner-area-vision .shape-x {
    width: 264px;
    position: absolute;
    top: 72px;
    inset-inline-end: 138px;
}

@media only screen and (max-width: 1199px) {
    .banner-area-vision .shape-x {
        inset-inline-end: 38px;
    }
}

.swiper-pagination-current {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.dash {
    width: 2px;
    height: 11px;
    background-color: #fff;
    display: inline-block;
    transform: rotate(30deg);
}

.swiper-pagination-total {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.pagination-style-1 {
    bottom: 54px;
    z-index: 2;
    max-width: 47px;
    display: flex;
    justify-content: space-between;
}

.swiper-pagination-current {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.dash {
    width: 2px;
    height: 11px;
    background-color: #fff;
    display: inline-block;
    transform: rotate(30deg);
}

.swiper-pagination-total {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.pagination-style-1 {
    bottom: 54px;
    z-index: 2;
    max-width: 47px;
    display: flex;
    justify-content: space-between;
}

.pagination-wrapper {
    position: absolute;
    bottom: 60px;
    z-index: 2;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .pagination-wrapper {
        display: none;
    }
}

/*
-----------------------------
FEATURES STYLES 1
-----------------------------
*/

.wcf_iconbox.style-1 .thumb {
    margin-bottom: 50px;
}

@media only screen and (max-width: 1919px) {
    .wcf_iconbox.style-1 .thumb {
        margin-bottom: 30px;
    }
}

.wcf_iconbox.style-1 .thumb img {
    height: 75px;
}

@media only screen and (max-width: 1919px) {
    .wcf_iconbox.style-1 .thumb img {
        height: 60px;
    }
}

.wcf_iconbox.style-1 .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #000;
}
.wcf_iconbox.style-1 .text {
    color: #000;
    line-height: 1.37;
    font-size: 15px;
}

/*
-----------------------------
FEATURES STYLES 1
-----------------------------
*/

.feature-area.style-1 {
    position: relative;
    z-index: 2;
    max-width: 1920px;
    margin: auto;
}

@media (min-width: 1800px) {
    .feature-area.style-1 {
        max-width: 1920px;
    }
}

.feature-area.style-1::before {
    position: absolute;
    content: "";
    inset-inline-start: 0;
    top: 0;
    height: 100%;
    background-color: #F1F6F6;
    width: 67%;
    z-index: -2;
}

@media only screen and (max-width: 1199px) {
    .feature-area.style-1::before {
        background-color: transparent;
    }
}

.feature-area.style-1 .wc-btn-primary i {
    font-size: 16px;
}

.feature-area.style-1 .wc-btn-primary:hover {
    color: #fff;
}

.feature-inner.style-1 {
    display: flex;
    gap: 110px;
}

@media only screen and (max-width: 1919px) {
    .feature-inner.style-1 {
        gap: 50px;
    }
}

@media only screen and (max-width: 1199px) {
    .feature-inner.style-1 {
        gap: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .feature-inner.style-1 {
        flex-wrap: wrap;
    }
}

.feature-wrapper.style-1 {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 115px;
    padding-inline-end: 50px;
}

@media only screen and (max-width: 1919px) {
    .feature-wrapper.style-1 {
        gap: 30px;
    }
}

@media only screen and (max-width: 1199px) {
    .feature-wrapper.style-1 {
        gap: 30px;
        padding-right: 0;
    }
}

@media only screen and (max-width: 991px) {
    .feature-wrapper.style-1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .feature-wrapper.style-1 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.feature-wrapper.style-1 .thumb {
    grid-column: span 2;
}

@media only screen and (max-width: 767px) {
    .feature-wrapper.style-1 .thumb {
        grid-column: unset;
    }
}

/*.feature-about.style-1 .inner {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    height: 100%;*/
/*}*/

.feature-about.style-1 .section-heading {
    height: 100%;
}
.feature-about {
    margin-top: 20%;
}

/*.feature-about.style-1 .section-title-wrapper {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    height: 100%;*/
/*}*/

/*.feature-about.style-1 .btn-wrapper {*/
/*    margin-top: auto;*/
/*}*/

@media only screen and (max-width: 991px) {
    .feature-about.style-1 .btn-wrapper {
        margin-top: 42px;
    }
}

.feature-about.style-1 .sub-title-wrapper {
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .feature-about.style-1 .sub-title-wrapper {
        margin-bottom: 20px;
    }
}

.feature-about.style-1 .title {
    color: #737373;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 35px;
}

@media only screen and (max-width: 1199px) {
    .feature-about.style-1 .title {
        font-size: 40px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .feature-about.style-1 .title {
        font-size: 30px;
        margin-bottom: 25px;
    }
}

.feature-about.style-1 .text {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.44;
}

.consultant-agency p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.44;
    color: #000;
}

.about-area.style-1 {
    max-width: 1920px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.about-area.style-1::before {
    position: absolute;
    content: "";
    inset-inline-start: 0;
    top: 0;
    height: 250px;
    width: 100%;
    background-color: #F1F6F6;
    z-index: -2;
}

@media only screen and (max-width: 1199px) {
    .about-area.style-1::before {
        display: none;
    }
}

.about-area.style-1 .about-inner {
    display: flex;
    justify-content: space-between;
    background-color: #ffd531;
    margin-inline-start: 178px;
    padding-inline-start: 115px;
    height: 83vh;
}

@media only screen and (max-width: 1199px) {
    .about-area.style-1 .about-inner {
        margin-left: 0;
        padding-left: 0;
    }
    .about-area.style-1 .about-inner {
    height: 100vh;
}
}

@media only screen and (max-width: 767px) {
    .about-area.style-1 .about-inner {
        flex-wrap: wrap;
        height: 100%;
        padding-bottom: 50px;
    }
}

.about-area.style-1 .about-inner .subtitle-wrapper {
    margin-bottom: 22px;
    padding-top: 22px;
}


@media only screen and (max-width: 1199px) {
    .about-area.style-1 .about-inner .subtitle-wrapper {
        margin-bottom: 50px;
        padding-left: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .about-area.style-1 .about-inner .subtitle-wrapper {
        margin-bottom: 30px;
    }
}

/*.about-area.style-1 .about-inner .title-wrapper {*/
/*    max-width: 201px;*/
/*}*/

.about-area.style-1 .about-inner .section-title {
    font-size: 25px;
    line-height: 1.16;
}

.about-area.style-1 .about-inner .cf_text {
    margin-top: 15px;
    margin-bottom: 20px;
    width: 92%;
}

@media only screen and (max-width: 767px) {
    .about-area.style-1 .about-inner .cf_text {
        margin-bottom: 30px;
    }
}

.about-area.style-1 .about-inner .list-check li {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.31;
    margin-bottom: 14px;
}

.about-area.style-1 .about-inner .list-check li:last-child {
    margin-bottom: 0;
}

.about-area.style-1 .about-inner .btn-wrapper {
    margin-top: 13px;
}

@media only screen and (max-width: 767px) {
    .about-area.style-1 .about-inner .btn-wrapper {
        margin-top: 45px;
    }
}

.about-area.style-1 .about-inner .btn-wrapper .wc-btn-primary {
    background-color: transparent;
    border: 1px solid #737373;
    color: #737373;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.18;
}

.about-area.style-1 .about-inner .btn-wrapper .wc-btn-primary:hover {
    color: #fff;
    background-color: #737373;
}

.about-area.style-1 .about-text-wrapper {
    padding-left: 50px;
    margin-bottom: 80px;
    border-left: 1px solid rgba(18, 18, 18, 0.06);
}

@media only screen and (max-width: 1199px) {
    .about-area.style-1 .about-text-wrapper {
        border: 0;
        padding-left: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .about-area.style-1 .about-text-wrapper {
        margin-bottom: 0;
    }
}

.about-area.style-1 .about-thumb img {
    height: 100%;
    margin-inline-end: 4px;
    max-width: 645px;
    margin-left: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (max-width: 767px) {
    .about-area.style-1 .about-thumb img {
        display: none;
        height: 0;
    }
}

.content-wrapper {
    display: flex;
    gap: 100px;
}


.testimonial-item.style-1 {
    display: flex;
    gap: 140px;
}

@media only screen and (max-width: 1199px) {
    .testimonial-item.style-1 {
        gap: 60px;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-item.style-1 {
        gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-item.style-1 {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

.testimonial-item.style-1 .image-wrapper {
    flex: 0 0 30%;
}

.testimonial-item.style-1 .image img {
    width: 100%;
    /* Make the image fill its container */
}

.testimonial-item.style-1 .content {
    flex: 0 0 70%;
}

@media only screen and (max-width: 767px) {
    .testimonial-item.style-1 .content {
        flex: 0 0 100%;
    }
}

.testimonial-item.style-1 .text-wrapper {
    max-width: 520px;
}

@media only screen and (max-width: 767px) {
    .testimonial-item.style-1 .text-wrapper {
        max-width: unset;
    }
}

.testimonial-item.style-1 .quote-icon-wrap {
    margin-bottom: 36px;
}

@media only screen and (max-width: 991px) {
    .testimonial-item.style-1 .quote-icon-wrap {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-item.style-1 .quote-icon-wrap {
        margin-bottom: 15px;
    }
}

.testimonial-item.style-1 .text {
    color: #000;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 70px;
}

@media only screen and (max-width: 1199px) {
    .testimonial-item.style-1 .text {
        font-size: 26px;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-item.style-1 .text {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

.testimonial-item.style-1 .meta {
    position: relative;
    border-left: 1px solid #737373;
    padding-left: 15px;
}

@media only screen and (max-width: 767px) {
    .testimonial-item.style-1 .meta {
        border: 0;
    }
}

.testimonial-item.style-1 .name {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.22;
    margin-bottom: 5px;
}

.testimonial-item.style-1 .post {
    color: #999999;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.22;
}

.testimonial-section.style-1 .section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-section.style-1 .subtitle-wrapper {
    margin-bottom: 30px;
}

.testimonial-inner.style-1 {
    padding-left: 90px;
    padding-right: 90px;
    position: relative;
}

@media only screen and (max-width: 991px) {
    .testimonial-inner.style-1 {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-inner.style-1 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*
    ---------------------------------
    # Swiper Prev and Next Button Styles
    # Apply custom styles using the Like "style-1" class
    # Adjust styles for disabled icons with the "swiper-button-disabled" class
    # Apply custom text prev-text next and prev navigation
*/

@media only screen and (max-width: 991px) {
    .swiper-button-prev.style-1,
    .swiper-button-next.style-1 {
        display: none;
    }
}

.swiper-button-prev.style-1::after,
.swiper-button-next.style-1::after {
    color: #737373;
}

.swiper-button-prev.style-1.swiper-button-disabled::after,
.swiper-button-next.style-1.swiper-button-disabled::after {
    color: #E4E4E4;
}

.prev-text {
    position: absolute;
    left: 25px;
}

.case-upper {
    text-transform: uppercase;
    color: #737373;
    font-size: 12px;
    font-weight: 500;
}

.specialization-area.style-1 {
    background-color: #737373;
    margin: 50px 0px;
}
.specialization-area.style-1 .specialization-inner {
    display: flex;
}

@media only screen and (max-width: 767px) {
    .specialization-area.style-1 .specialization-inner {
        flex-wrap: wrap;
    }
}

.specialization-area.style-1 .specialization-thumb {
    flex: 1.2;
}

@media only screen and (max-width: 767px) {
    .specialization-area.style-1 .specialization-thumb {
        flex: unset;
    }
}

.specialization-area.style-1 .specialization-thumb img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.specialization-area.style-1 .specialization-content {
    flex: 1;
}

.specialization-area.style-1 .section-title-wrapper {
    max-width: 560px;
    margin-inline-start: 115px;
}

@media only screen and (max-width: 1919px) {
    .specialization-area.style-1 .section-title-wrapper {
        margin-inline-start: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .specialization-area.style-1 .section-title-wrapper {
        margin-inline-start: 15px;
    }
}

.specialization-area.style-1 .section-subtitle {
    color: #fff;
}

.specialization-area.style-1 .section-title {
    color: #fff;
}

.specialization-area.style-1 .text {
    color: #fff;
}

.specialization-area.style-1 .text span {
    color: #fff;
}

.specialization-area.style-1 .list-plus {
    margin-top: 23px;
}

.specialization-area.style-1 .list-plus li {
    color: #fff;
}

.specialization-area.style-1 .list-plus li::before {
    top: -5px;
}


.footer-area.style-1 {
    background-color: #000;
}

.footer-area.style-1 .footer-inner {
    display: flex;
}

@media only screen and (max-width: 767px) {
    .footer-area.style-1 .footer-inner {
        flex-wrap: wrap;
    }
}

.footer-area.style-1 .logo-wrapper {
    width: 334px;
    min-width: 334px;
    padding-top: 35px;
}
.logo-wrapper img{
    width: 170px;
}
@media only screen and (max-width: 1919px) {
    .footer-area.style-1 .logo-wrapper {
        width: 274px;
        min-width: 274px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-area.style-1 .logo-wrapper {
        padding-top: 30px;
        width: 184px;
        min-width: 184px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-area.style-1 .logo-wrapper {
        text-align: center;
        width: 100%;
        margin: 20px 0;
    }
}

.footer-area.style-1 .footer-menu-item.subscribe-form-item {
    width: 330px;
}

@media only screen and (max-width: 1919px) {
    .footer-area.style-1 .footer-menu-item.subscribe-form-item {
        width: 290px;
    }
}

.footer-area.style-1 .footer-menu-item.subscribe-form-item .title {
    margin-bottom: 27px;
}

.footer-area.style-1 .footer-menu-item .title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-area.style-1 .footer-menu-item li a:hover {
    color: #fff;
}

.footer-area.style-1 .social-icons li a:hover {
    color: #fff;
}

.footer-area.style-1 .links-wrapper {
    flex-grow: 1;
    border-inline-start: 1px solid #282828;
    padding-inline-start: 80px;
    padding-top: 62px;
    padding-inline-start: 60px;
}

@media only screen and (max-width: 1199px) {
    .footer-area.style-1 .links-wrapper {
        padding-inline-start: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-area.style-1 .links-wrapper {
        padding-inline-start: 30px;
        padding-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-area.style-1 .links-wrapper {
        border-left: 0;
        padding-left: 0;
    }
}

.footer-area.style-1 .footer-menu {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 90px;
}

@media only screen and (max-width: 1199px) {
    .footer-area.style-1 .footer-menu {
        flex-wrap: wrap;
        padding-bottom: 40px;
    }
}

.footer-area.style-1 .footer-copyright {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 26px 0;
    border-top: 1px solid #282828;
    text-align: center;
}

@media (max-width: 575px) {
    .footer-area.style-1 .footer-copyright {
        flex-direction: column;
        align-items: center;
    }
}

.footer-area.style-1 .text-copy {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
}

.footer-area.style-1 .text-copy a {
    font-weight: 600;
    color: #fff;
}

/*# sourceMappingURL=master-agency.css.map */


/* Mega menu base */
.menu-item-has-children { position: relative; }

/* Container */
.dp-menu.mega {
  position: absolute;
  left: 0;
  top: 100%;
  width: 1000px;                /* desktop width; change as needed */
  max-width: calc(100vw - 40px);
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0 18px 40px rgba(23, 23, 23, 0.08);
  padding: 28px;
  display: none;
  z-index: 999;
  box-sizing: border-box;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.dp-menu.mega {
    left: 0 !important;
    right: 0;
    margin: 0 auto;
    transform: translateX(-30%); /* adjust this value */
}
/* Row of columns */
.dp-menu.mega .mega-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Column */
.dp-menu.mega .mega-col {
  flex: 1;
  padding: 0 20px;
  box-sizing: border-box;
  min-width: 180px;
  border-right: 1px solid rgba(0,0,0,0.06);
}

/* remove divider on last column */
.dp-menu.mega .mega-col:last-child {
  border-right: none;
}

/* Column heading */
.mega-title {
  font-size: 16px;
  margin: 4px 0 14px;
  color: #222;
  font-weight: 600;
}

/* Links */
.dp-menu.mega ul { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}
.dp-menu.mega li {
    margin: 6px 0;
    text-align: left;
}
.dp-menu.mega a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  padding: 6px 0;
}

/* subtle hover */
.dp-menu.mega a:hover { color: #000; }

/* show on hover (desktop) */
@media (min-width: 992px) {
  .menu-item-has-children:hover > .dp-menu.mega { display: block; }
}

/* Responsive: stack columns vertically */
@media (max-width: 991px) {
  .dp-menu.mega {
    position: static;
    width: 100%;
    padding: 18px;
    box-shadow: none;
    border-radius: 0;
    display: none; /* shown via JS toggle */
  }
  .dp-menu.mega .mega-row { flex-direction: column; gap: 18px; }
  .dp-menu.mega .mega-col { border-right: none; padding: 0; }
  /* make links easier to tap */
  .dp-menu.mega a { padding: 10px 4px; display: block; }
}


/* Container */
.dp-menu1.mega {
  position: absolute;
  left: 0;
  top: 100%;
  width: 820px;                /* desktop width; change as needed */
  max-width: calc(100vw - 40px);
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0 18px 40px rgba(23, 23, 23, 0.08);
  padding: 28px;
  display: none;
  z-index: 999;
  box-sizing: border-box;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.dp-menu1.mega {
    left: 0 !important;
    right: 0;
    margin: 0 auto;
    transform: translateX(-60%); /* adjust this value */
}
/* Row of columns */
.dp-menu1.mega .mega-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Column */
.dp-menu1.mega .mega-col {
  flex: 1;
  padding: 0 20px;
  box-sizing: border-box;
  min-width: 180px;
  border-right: 1px solid rgba(0,0,0,0.06);
}

/* remove divider on last column */
.dp-menu1.mega .mega-col:last-child {
  border-right: none;
}

/* Column heading */
.mega-title {
  font-size: 16px;
  margin: 4px 0 14px;
  color: #222;
  font-weight: 600;
}

/* Links */
.dp-menu1.mega ul { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}
.dp-menu1.mega li {
    margin: 6px 0;
    text-align: left;
}
.dp-menu1.mega a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  padding: 6px 0;
}

/* subtle hover */
.dp-menu1.mega a:hover { color: #000; }

/* show on hover (desktop) */
@media (min-width: 992px) {
  .menu-item-has-children:hover > .dp-menu1.mega { display: block; }
}

/* Responsive: stack columns vertically */
@media (max-width: 991px) {
  .dp-menu1.mega {
    position: static;
    width: 100%;
    padding: 18px;
    box-shadow: none;
    border-radius: 0;
    display: none; /* shown via JS toggle */
  }
  .dp-menu1.mega .mega-row { flex-direction: column; gap: 18px; }
  .dp-menu1.mega .mega-col { border-right: none; padding: 0; }
  /* make links easier to tap */
  .dp-menu1.mega a { padding: 10px 4px; display: block; }
}



/* Hide dropdown and mega menus initially */
.nav-menu .dp-menu,
.nav-menu .mega,
.nav-menu .dp-menu1 {
    display: none;
}

/* When parent li is active, show dropdown */
.nav-menu li.active > .dp-menu,
.nav-menu li.active > .mega,
.nav-menu li.active > .dp-menu1 {
    display: block;
}

/* Optional smooth effect */
.nav-menu li .dp-menu,
.nav-menu li .mega,
.nav-menu li .dp-menu1 {
    transition: all 0.3s ease;
}























/*faq starts*/
.wrapper {
  width: 100%;
  background-color: white;
  color: black;
  border-radius: 20px;
  box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
  margin: 20px 0 50px;
}

/*h1 {*/
/*  margin-bottom: 20px;*/
/*}*/

/*.container {*/
  
/*}*/

.question h2 {
    font-size: 17px;
    font-weight: 500;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #000;
}

.question h2::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question h2.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
      color: #000;
}

.question h2.active + .answercont {
}

@media screen and (max-width: 790px){
  .wrapper {
  width: 100%;
}
}
















.brand-area{
    padding: 50px 0px;
}

.brand-area.style-3 .brand-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

@media only screen and (max-width: 991px) {
    .brand-area.style-3 .brand-inner {
        flex-wrap: wrap;
        gap: 50px;
    }
}

.brand-area.style-3 .brand-text {
    max-width: 200px;
}

@media only screen and (max-width: 991px) {
    .brand-area.style-3 .brand-text {
        max-width: 100%;
    }
}

.brand-area.style-3 .brand-logos {
    max-width: 900px;
}

@media only screen and (max-width: 1199px) {
    .brand-area.style-3 .brand-logos {
        max-width: 700px;
    }
}

.brand-area.style-3 .brand-logo img {
    width: 100%;
}

.brand-area.style-3 .brand-text-title-wrapper {
    padding-left: 17px;
    border-left: 2px solid var(--primary);
}

.brand-area.style-3 .brand-text-title-wrapper .title {
    font-size: 28px;
    font-weight: 500;
    color: #000;
}
























/* :: card :: */
.cards__container {
  display: grid;
  grid-template-columns: 1fr;
  margin: 1.875rem auto;
  max-width: 53.125rem;
  width: 100%;
  gap: 3.75rem;
}

.card {
  display: grid;
  grid-template-columns: 1fr;

}
.card__thumb {
  overflow: hidden;
  background-color: var(--grey);
}
.card__thumb img {
  transition: all 0.3s ease;
}
.card__thumb:hover img {
  transform: scale(1.1);
}
.card__content {
  background-color: #737373d1;
  padding: 2.1875rem 0.9375rem 3.4375rem;
  position: relative;
  text-align: center;
}
.card__title {
  color: #fff;
  font-size:25px;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.card__content .card__text {
  line-height: 1.7;
  color: #fff;
}
.card__btn {
  background: var(--dark-grey);
  border: none;
  bottom: -1.25rem;
  left: 50%;
  padding: 0.625rem;
  position: absolute;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  color: white;
}
.card__btn:hover, .card__btn:focus {
  background-color: var(--grey);
}
.card__btn img {
  width: 1.25rem;
}

/* :: mediaqueries :: */
@media (min-width: 40rem) {
  .card {
    grid-template-columns: auto minmax(6.25rem, 25rem) auto;
    grid-template-rows: repeat(4, auto);
  }
  .card__thumb {
    width: 100%;
    max-width: 34.8rem !important;
    justify-self: center;
    grid-area: 1/1/-2/-1;
  }
  .card__content {
    grid-area: 3/2/-1/-2;
    padding: 2.8125rem 2.8125rem 3.4375rem;
  }
}
@media (min-width: 64rem) {
  .card {
    /*grid-template-columns: auto 4.375rem minmax(6.25rem, 25rem);*/
    grid-template-rows: repeat(3, auto);
    /*margin-top: 36px;*/
  }
  .card:nth-child(even) {
    /*grid-template-columns: minmax(6.25rem, 25rem) 4.375rem auto;*/
  }
  .card__thumb {
    grid-area: 1/1/-1/3;
  }
  .card:nth-child(even) .card__thumb {
    grid-area: 1/2/-1/-1;
  }
  .card__content {
    grid-area: 2/2/-2/-1;
    text-align: left;
  }
  .card:nth-child(even) .card__content {
    text-align: left;
    grid-area: 2/1/-2/3;
  }
}











@media only screen and (max-width: 2560px) {
.about-area.style-1 .about-inner {
    display: flex;
    justify-content: space-between;
    background-color: #ffd531;
    margin-inline-start: 178px;
    padding-inline-start: 115px;
    height: 50vh;
}
}

@media (min-width:1439px){
    .card__thumb{
        max-width:40.4rem !important;
    }
}

@media (max-width: 1500px) {
  .about-area.style-1 .about-inner {
    height: 75vh;
}
.feature-about {
    padding-left: 22px;
}
}
 @media (max-width: 1024px) {
     .about-area.style-1 .about-inner {
    height: 100vh;
}
 }
 @media (max-width: 991px) {
   .feature-inner.style-1 {
     display: block; 
}
.feature-about {
    margin-top: 10px;
}
.img_anim_reveal img {
    width: 100%;
}  
.about-area.style-1 .about-inner {
    height: 100vh;
}
}

/* services pages css starts */
.page-banner {
    height: 450px;
    --color-overlay: linear-gradient(184.15deg, rgba(28, 37, 57, 0) -187.51%, #1c2539 96.62%);
    --color-foreground: rgba(255, 255, 255, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    /* position: relative; */
    overflow: hidden;
}
.media-bg {
    z-index: -1;
}
.media {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}
 .media img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.page-banner-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    -webkit-margin-before: 20px;
    margin-block-start: 20px;
}
.list-unstyled {
    padding: 0;
    list-style: none;
    margin: 0;
}
.page-banner-content h1{
    color: #fff;
}
.breadcrumb a:not(.active), .breadcrumb li svg {
    opacity: 0.75;
    color: #fff;
}
.breadcrumb a {
    text-decoration: none;
    color: #fff;
}
.text-18 {
    font-size: 18px;
    line-height: 1.55;
}
.overlay:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 52%;
    top: 0;
    left: 0;
    background: linear-gradient(184.15deg, rgba(28, 37, 57, 0) -187.51%, #1c2539 96.62%);
}







