:root {
    --clr-common-white: #eeeeee;
    --clr-common-black: #222222;
    --clr-common-border: #c7c7c7;
    --clr-common-placeholder: #8a8787;
    --clr-theme-1: #222222;
    --clr-theme-2: #f26921;
    --clr-theme-3: #7c7c7c;
    --clr-theme-primary: #222222;
    --clr-background-primary: #222222;
    --clr-bg-1: #222222;
    --clr-bg-2: #f26921;
    --clr-bg-3: #fffcf6;
    --clr-bg-4: #f2f2f2;
    --clr-bg-5: #f7f7f7;
    --clr-bg-6: #e8f5ff;
}

.section-spacing {
    padding-top: 120px;
    padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-spacing {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-spacing {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .section-spacing {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.section-spacing-top {
    padding-top: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-spacing-top {
        padding-top: 120px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-spacing-top {
        padding-top: 100px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .section-spacing-top {
        padding-top: 80px;
    }
}

.section-spacing-bottom {
    padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-spacing-bottom {
        padding-bottom: 120px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-spacing-bottom {
        padding-bottom: 100px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .section-spacing-bottom {
        padding-bottom: 80px;
    }
}

.section-title-spacing {
    margin-bottom: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .section-title-spacing {
        margin-bottom: 30px;
    }
}

.adjust-header-space {
    margin-top: 88px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .adjust-header-space {
        margin-top: 65px;
    }
}
/*--- color
-----------------------------------------*/
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: var(--clr-common-white) !important;
}

.white-color {
    color: var(--clr-common-white);
}

.black-color {
    color: var(--clr-common-black);
}

.theme-color {
    color: var(--clr-theme-1);
}

.theme-color-2 {
    color: var(--clr-theme-2);
}

.body-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
    inset-inline-start: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.body-overlay:hover {
    cursor: pointer;
}

.body-overlay.opened {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 575px) {
    .progress-wrap {
        inset-inline-end: 15px;
        bottom: 15px;
    }
}

.centered-title {
    text-align: center;
}
.centered-title .bd-section-subtitle {
    justify-content: center;
}

.bd-section-title {
    font-size: 65px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .bd-section-title {
        font-size: 60px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .bd-section-title {
        font-size: 54px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .bd-section-title {
        font-size: 48px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .bd-section-title {
        font-size: 48px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .bd-section-title {
        font-size: 40px;
    }
}
@media (max-width: 575px) {
    .bd-section-title {
        font-size: 40px;
    }
}
@media (max-width: 450px) {
    .bd-section-title {
        font-size: 34px;
    }
}

.bd-section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-theme-2);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
    line-height: 1;
    margin-bottom: 30px;
    margin-top: -3px;
}
.bd-section-subtitle span {
    color: var(--clr-common-white);
}
.bd-section-subtitle i:not(:last-child) {
    transform: rotateY(180deg);
}
.bd-section-subtitle.no-gap {
    column-gap: 0;
}
.bd-section-subtitle.st-b {
    font-style: italic;
    column-gap: 7px;
}
.bd-section-subtitle.st-b span {
    color: var(--clr-theme-1);
}

.title-text-white.bd-section-subtitle.st-b span {
    color: var(--clr-common-white);
}
.title-text-white.bd-section-title {
    color: var(--clr-common-white);
}

.white-text {
    color: var(--clr-common-white);
}

.border-left {
    position: relative;
}
.border-left:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #eaebee;
    inset-inline-start: 0;
    top: 0;
}

.bg-white {
    background-color: var(--clr-common-white) !important;
}

.bg-gray {
    background-color: var(--clr-bg-4);
}

.bg-theme-1 {
    background: var(--clr-theme-1);
}

.bg-theme-2 {
    background: var(--clr-theme-2);
}

.bg-theme-3 {
    background: var(--clr-theme-3);
}

.section-main-title {
    font-size: 38px;
    line-height: 1.26;
    font-weight: 600;
    color: var(--clr-theme-1);
    margin-top: -8px;
}
@media (max-width: 575px) {
    .section-main-title {
        font-size: 32px;
    }
}
@media (max-width: 450px) {
    .section-main-title {
        font-size: 28px;
    }
}

.hr1 {
    border-bottom: 1px solid #d9d9d9;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-inline-end: var(--bs-gutter-x, 15px);
    padding-inline-start: var(--bs-gutter-x, 15px);
    margin-inline-end: auto;
    margin-inline-start: auto;
}

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

.g-40,
.gx-40 {
    --bs-gutter-x: 40px;
}

.g-40,
.gy-40 {
    --bs-gutter-y: 40px;
}

.g-50,
.gx-50 {
    --bs-gutter-x: 50px;
}

.g-50,
.gy-50 {
    --bs-gutter-y: 50px;
}

@media (min-width: 1441px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1440px;
    }
}
@media (min-width: 1200px) {
    .container-small {
        max-width: 1200px;
    }
}
.circle-dot-pagination {
    display: flex;
    gap: 4px;
}
.circle-dot-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    border: 1px solid transparent;
    border-radius: 50%;
    display: inline-block;
    border-radius: 50%;
    opacity: 1;
    margin: 0 !important;
    position: relative;
    background: none;
}
.circle-dot-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: var(--clr-theme-2);
}
.circle-dot-pagination .swiper-pagination-bullet:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: var(--clr-theme-2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stroke-text {
    font-size: 100px;
    font-weight: 700;

    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #2f2f2f;
    line-height: 1;
    display: inline-block;
}

.area-absolute {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
}

.filter-search-input {
    position: relative;
}
.filter-search-input input {
    width: 100%;
    height: 50px;
    border: 1px solid var(--clr-bg-1);
    background: var(--clr-common-white);
    border-radius: 0;
    padding: 0 20px;
    padding-inline-end: 50px;
    outline: none;
}
.filter-search-input button {
    position: absolute;
    inset-inline-end: 20px;
    top: 12px;
    color: #919191;
}

/*----------------------------------------
   Flaction customize
-----------------------------------------*/
i[class^="flaticon-"] {
    line-height: 1;
    top: 2px;
    position: relative;
}

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    color: var(--clr-theme-2);
    text-decoration: none;
    border-color: var(--clr-theme-2);
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
    border: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.lowercase {
    text-transform: lowercase;
}

h1.section__title-main,
h2.section__title-main,
h3.section__title-main,
h4.section__title-main,
h5.section__title-main,
h6.section__title-main {
    text-transform: capitalize;
    color: var(--clr-theme-primary) !important;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 0px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

h1 {
    font-size: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    h1 {
        font-size: 90px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1 {
        font-size: 60px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 80px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    h1 {
        font-size: 56px;
    }
}
@media (max-width: 575px) {
    h1 {
        font-size: 50px;
    }
}
@media (max-width: 450px) {
    h1 {
        font-size: 38px;
    }
}
h1.small {
    font-size: 65px;
}

h2 {
    font-size: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    h2 {
        font-size: 54px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2 {
        font-size: 50px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 46px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    h2 {
        font-size: 42px;
    }
}
@media (max-width: 450px) {
    h2 {
        font-size: 36px;
    }
}
h2.xlarge {
    font-size: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    h2.xlarge {
        font-size: 70px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2.xlarge {
        font-size: 60px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2.xlarge {
        font-size: 46px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    h2.xlarge {
        font-size: 42px;
    }
}
@media (max-width: 450px) {
    h2.xlarge {
        font-size: 36px;
    }
}
h2.large {
    font-size: 65px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 768px) and (max-width: 991px) {
    h2.large {
        font-size: 60px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2.large {
        font-size: 55px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2.large {
        font-size: 46px;
    }
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    h2.large {
        font-size: 40px;
    }
}
@media (max-width: 450px) {
    h2.large {
        font-size: 35px;
    }
}
h2.small {
    font-size: 50px;
}
h2.x-small {
    font-size: 40px;
}

h3 {
    font-size: 48px;
}

h4 {
    font-size: 34px;
}

h5 {
    font-size: 24px;
}
h5.small {
    font-size: 22px;
}

h6 {
    font-size: 20px;
}

ul {
    margin: 0;
    padding: 0;
}

p {
    font-size: 18px;
    font-weight: normal;
    color: var(--clr-theme-primary);
    margin-bottom: 26px;
    line-height: 28px;
}
p.xlarge {
    font-size: 24px;
    line-height: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    p.xlarge {
        font-size: 22px;
        line-height: 36px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    p.xlarge {
        font-size: 20px;
        line-height: 34px;
    }
}
p.large {
    font-size: 20px;
    line-height: 34px;
}

/*----------------------------------------
	39. team css
----------------------------------------*/
.team__big-video {
    text-align: center;
    padding-bottom: 395px;
}
.team__big-video-inner {
    background-position: center center;
    background-size: cover;
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    margin-top: -150px;
}

.team-area__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}
.team-area__overlay:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #f6f6f6;
    opacity: 0.7;
}

.team-area-2__bg {
    background: var(--clr-theme-1);
    z-index: -1;
}
.team-area-2__shape-1 {
    position: absolute;
    top: 144px;
    width: 572px;
    left: 43%;
    z-index: -1;
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px),
    only screen and (min-width: 768px) and (max-width: 991px) {
    .team-area-2__shape-1 {
        display: none;
    }
}

@media (min-width: 992px) {
    .team__meta-description {
        max-width: 610px;
        margin-left: auto;
    }
}
.team__meta-description p {
    margin-bottom: 0;
}
.team__wrapper {
    border-top: 1px solid #d9d9d9;
}
.team__member span {
    color: #656565 !important;
}
.team__member {
    border-bottom: 1px solid #d9d9d9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px 30px;
    padding: 45px 0;
    padding-left: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .team__member {
        flex-direction: column;
        align-items: flex-start;
    }
}
.team__member:hover .member-designation {
    color: #000000;
}
.team__member:hover .member-name .first-name,
.team__member:hover .member-name .last-name {
    color: #f26921 !important;
}
.team__member:hover .member-image {
    transform: scale(2);
}
@media (max-width: 575px) {
    .team__member:hover .member-image {
        transform: scale(1);
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .team__member:hover .member-image {
        transform: scale(1.1);
    }
}
@media (max-width: 450px) {
    .team__member:hover .member-image img {
        transform: scale(1.1);
    }
}
.team__member .member-designation {
    font-size: 16px;
    color: #656565;
    position: absolute;
    bottom: 0;
    left: 0;
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
    height: 100%;
    text-align: center;
}
.team__member .member-name {
    display: flex;
    align-items: center;
    gap: 20px 10px;
    flex-wrap: wrap;
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .team__member .member-name {
        margin-bottom: 20px;
    }
}
.team__member .member-name .first-name,
.team__member .member-name .last-name {
    font-size: 50px;
    line-height: 1.08;
    text-transform: uppercase;
    font-weight: 400;

    color: #a5a5a5;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .team__member .member-name .first-name,
    .team__member .member-name .last-name {
        font-size: 86px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .team__member .member-name .first-name,
    .team__member .member-name .last-name {
        font-size: 65px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .team__member .member-name .first-name,
    .team__member .member-name .last-name {
        font-size: 40px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .team__member .member-name .first-name,
    .team__member .member-name .last-name {
        font-size: 36px;
    }
}
@media (max-width: 450px) {
    .team__member .member-name .first-name,
    .team__member .member-name .last-name {
        font-size: 26px;
    }
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .team__member .member-name .first-name,
    .team__member .member-name .last-name {
        order: 2;
    }
}
.team__member .member-image {
    width: 150px;
    height: 100px;
    border-radius: 300px;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
@media (max-width: 575px) {
    .team__member .member-image {
        width: 100px;
        height: 100px;
        order: -1;
    }
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .team__member .member-image {
        z-index: 1;
        order: 1;
        width: 100%;
        height: auto;
        border-radius: 10px;
        margin-bottom: 20px;
    }
}
.team__member .member-image img {
    width: 100%;
}
.team__member .member-details-btn .c-button {
    width: 108px;
    height: 108px;
}
@media (max-width: 450px) {
    .team__member .member-details-btn .c-button {
        width: 90px;
        height: 90px;
    }
}

.member-box-2 {
    position: relative;
    overflow: hidden;
}
.member-box-2:hover .member-thumb::after {
    opacity: 0;
}
.member-box-2:hover .member-thumb-overlay {
    transform: translateY(0);
    opacity: 1;
}
.member-box-2:hover .member-thumb img {
    transform: scale(1.1);
}
.member-box-2:hover .member-content {
    transform: translateY(0);
}
.member-box-2 .member-thumb {
    position: relative;
}
.member-box-2 .member-thumb::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(
        355.91deg,
        var(--clr-theme-1) 4.42%,
        rgba(17, 17, 17, 0.47) 97.75%
    );
    left: 0;
    right: 0;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
@media (hover: none) {
    .member-box-2 .member-thumb::after {
        opacity: 0;
    }
}
.member-box-2 .member-thumb img {
    width: 100%;
    aspect-ratio: 100/120;
}
@media (hover: none) {
    .member-box-2 .member-thumb img {
        transform: scale(1.1);
    }
}
.member-box-2 .member-thumb-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 0.01%,
        #ffffff 79.95%
    );
    top: 0;
    left: 0;
    transform: translateY(50%);
    opacity: 0;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
}
.c-button {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.c-button:hover {
    transform: translateY(50%);

    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    background: #f26921;
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.c-button:hover i {
    color: #fff;
}
@media (hover: none) {
    .member-box-2 .member-thumb-overlay {
        transform: translateY(0);
        opacity: 1;
    }
}
.member-box-2 .member-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 30px;
    z-index: 2;
    transform: translateY(100%);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
@media (hover: none) {
    .member-box-2 .member-content {
        transform: translateY(0);
    }
}
.member-box-2 .member-name {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--clr-common-black);
}
.member-box-2 .member-designation {
    line-height: 1;
}

.team-slider {
    overflow: visible;
}

.team-content-title {
    max-width: 1266px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .team-content-title {
        max-width: 100%;
    }
}

.team-slider .swiper-container {
    overflow: visible;
}

.team-slider-item .team-slider-thumb img {
    width: 100%;
    aspect-ratio: 100/54;
}

.swiper-slide:nth-child(2n) .team-slider-item .team-slider-thumb > img {
    width: 100%;
    aspect-ratio: 100/70;
}

.team-member-thumb {
    max-width: 122px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    filter: drop-shadow(0px 4px 100px rgba(248, 122, 88, 0.25));
}
.team-member-thumb::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #111;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.team-member-thumb:hover:before {
    opacity: 1;
    visibility: visible;
}
.team-member-thumb:hover .team-member-info {
    opacity: 1;
    visibility: visible;
}

.team-member-line {
    display: inline-flex;
    gap: 40px 50px;
    flex-wrap: wrap;
    max-width: 1000px;
    justify-content: center;
}
@media (max-width: 450px) {
    .team-member-line {
        gap: 30px 40px;
    }
}

.team-member-main {
    position: relative;
    text-align: center;
}

.team-member-bg {
    position: absolute;
    top: 0;
    height: 80%;
    width: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}

.team-member-info {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    top: 0;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
}
.team-member-info h5 {
    margin-bottom: 0;
    color: var(--clr-common-white);
    font-size: 20px;
}
.team-member-info h5:hover {
    color: var(--clr-theme-2);
}
.team-member-info span {
    color: var(--clr-common-white);
}

.team-item-2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .team-item-2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .team-item-2-grid {
        grid-template-columns: repeat(1, 1fr);
        border-color: transparent;
    }
}

.team-item-2 {
    position: relative;
    text-align: center;
    border-top: 1px solid #414141;
}
.team-item-2.active .team-thmb-2 {
    opacity: 1;
    visibility: visible;
}
.team-item-2.active .team-info-2 {
    top: 71%;
}

.team-info-2 {
    position: absolute;
    top: 50%;
    display: block;
    width: 100%;
    line-height: 1;
    transition: all 0.5s ease-out 0s;
    transform: translateY(-50%);
    padding: 20px;
}
@media (hover: none) {
    .team-info-2 {
        top: 71%;
    }
}

.team-thmb-2 {
    position: relative;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media (max-width: 450px),
    (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px),
    only screen and (min-width: 768px) and (max-width: 991px) {
    .team-thmb-2 {
        opacity: 1;
        visibility: visible;
    }
}
.team-thmb-2::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(
        180deg,
        rgba(17, 17, 17, 0) 0%,
        var(--clr-theme-1) 100%
    );
    top: 0;
    left: 0;
}
.team-thmb-2 img {
    width: 100%;
    aspect-ratio: 100/92;
}

.team-info-2 h3 {
    color: var(--clr-common-white);

    font-size: 45px;
    font-weight: 400;
    margin-bottom: 20px;
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px),
    only screen and (min-width: 1200px) and (max-width: 1399px) {
    .team-info-2 h3 {
        font-size: 40px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
    (max-width: 450px) {
    .team-info-2 h3 {
        font-size: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .team-info-2 h3 {
        font-size: 36px;
    }
}
.team-info-2 h3 a:hover {
    color: var(--clr-theme-2);
}
.team-info-2 span {
    color: var(--clr-common-white);
    text-transform: capitalize;
    font-size: 18px;
}

.team-section-3 {
    max-width: 1245px;
    margin: auto;
}

.team-thum-grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px;
    position: relative;
}
@media (max-width: 575px) {
    .team-thum-grid-top {
        grid-template-columns: repeat(1, 1fr);
        place-items: center;
    }
}

.team-3-thum-common {
    max-width: 450px;
}
@media (max-width: 575px) {
    .team-3-thum-common {
        max-width: 100%;
    }
}
.team-3-thum-common img {
    width: 100%;
    aspect-ratio: 100/70;
}

.team-3-thum-common-2 {
    max-width: 450px;
}
@media (max-width: 575px) {
    .team-3-thum-common-2 {
        max-width: 100%;
    }
}
.team-3-thum-common-2 img {
    width: 100%;
    aspect-ratio: 100/54;
}

.team-thumb-3-1 {
    max-width: 300px;
    position: absolute;
    left: 0;
    bottom: -15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .team-thumb-3-1 {
        left: -10%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .team-thumb-3-1 {
        left: -120px;
    }
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .team-thumb-3-1 {
        display: none;
    }
}
.team-thumb-3-1 img {
    width: 100%;
    aspect-ratio: 100/81;
}

.team-thumb-3-2 {
    right: -232px;
    position: absolute;
    top: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .team-thumb-3-2 {
        right: -350px;
    }
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 992px) and (max-width: 1199px) {
    .team-thumb-3-2 {
        display: none;
    }
}

.team-thumb-3-3 {
    margin-top: 100px;
}
@media (max-width: 575px) {
    .team-thumb-3-3 {
        margin-top: 0;
    }
}

.team-thumb-3-5 {
    margin-top: 170px;
}
@media (max-width: 575px) {
    .team-thumb-3-5 {
        margin-top: 0;
    }
}

.team-thumb-3-6 {
    margin-top: 76px;
}
@media (max-width: 575px) {
    .team-thumb-3-6 {
        margin-top: 0;
    }
}
.team-thumb-3-6 img {
    width: 100%;
    aspect-ratio: 100/70;
}

.team-thumb-3-8 {
    margin-top: 15px;
    max-width: 450px;
}
@media (max-width: 575px) {
    .team-thumb-3-8 {
        margin-top: 0px;
        max-width: 100%;
    }
}
.team-thumb-3-8 img {
    width: 100%;
    aspect-ratio: 100/54;
}

.team-middle .area-btn {
    text-align: center;
    margin-top: -58px;
    margin-bottom: 80px;
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px),
    only screen and (min-width: 768px) and (max-width: 991px) {
    .team-middle .area-btn {
        margin: 30px 0;
        padding-bottom: 30px;
    }
}

.team-thumb-grid-bottom {
    display: grid;
    gap: 30px 30px;
    grid-template-columns: 16% 31% 30%;
    max-width: 1632px;
    margin: 0 auto;
    place-items: self-start;
    justify-content: space-between;
}
@media (max-width: 575px) {
    .team-thumb-grid-bottom {
        grid-template-columns: repeat(1, 1fr);
        place-items: center;
    }
}

.team-inner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 80px;
}
@media (max-width: 450px),
    only screen and (min-width: 1200px) and (max-width: 1399px) {
    .team-inner-grid {
        gap: 50px 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .team-inner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 50px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .team-inner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .team-inner-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 50px 50px;
    }
}

.team-inner-item {
    height: 450px;
    overflow: hidden;
    position: relative;
    background-color: var(--clr-theme-2);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media (max-width: 450px),
    (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .team-inner-item {
        overflow: visible;
        padding: 30px 25px;
    }
}
.team-inner-item:hover {
    padding: 30px 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 768px) and (max-width: 991px) {
    .team-inner-item:hover {
        padding: 30px 25px;
    }
}
.team-inner-item:hover .team-inner-content {
    top: auto;
    bottom: 0;
}

.team-inner-area .noise {
    background: transparent url(../img/bg/noise-4.png) 0 0;
}
.team-inner-area .noise-wrapper {
    opacity: 0.8;
}

.team-inner-thumb {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    height: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.team-inner-content {
    position: absolute;
    bottom: -30%;
    left: 0;
    width: 100%;
    padding: 25px 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background-color: var(--clr-theme-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 768px) and (max-width: 991px) {
    .team-inner-content {
        left: 25px;
    }
}
@media (max-width: 450px),
    (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .team-inner-content {
        left: 0px;
        bottom: 0px;
        padding: 15px 25px;
    }
}
.team-inner-content h3 {
    color: var(--clr-common-white);
    margin-bottom: 5px;
}
@media (max-width: 450px),
    only screen and (min-width: 1200px) and (max-width: 1399px) {
    .team-inner-content h3 {
        font-size: 20px;
    }
}
.team-inner-content h3 a:hover,
.team-inner-content h3 a:focus {
    color: var(--clr-theme-1);
}
.team-inner-content span {
    color: var(--clr-common-white);
}

.team-details-content {
    padding-left: 45px;
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 1200px) and (max-width: 1399px) {
    .team-details-content {
        padding-left: 0;
    }
}

.team-details-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #d9d9d9;
    flex-wrap: wrap;
    gap: 15px 15px;
}

.team-details-content > p {
    padding-top: 30px;
    margin-bottom: 30px;
}

.team-autor-info p {
    margin-bottom: 16px;
}
.team-autor-info p span {
    font-weight: 600;
}

.team-details-thumb img {
    width: 100%;
    aspect-ratio: 100/122;
}

.team-author-btn {
    position: absolute;
    right: 0;
    bottom: 75px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 768px) and (max-width: 991px) {
    .team-author-btn {
        bottom: 20px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .team-author-btn {
        left: 0;
    }
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .team-author-btn {
        display: none;
    }
}

.team-author-btn .thumb-video-btn .circle-btn {
    width: 176px;
    height: 176px;
}

.skil-content {
    padding: 35px 30px 40px 30px;
    background: var(--clr-common-white);
}

.skil-area {
    background: #f2f2f2;
}

.team-skill--content .bd-skill--title__wrapper {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.team-skill--content .bd-skill--title__wrapper span {
    position: absolute;
    top: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--clr-theme-2);

    line-height: 1;
    transform: translateX(-50%);
}
.team-skill--content .progress {
    background: #d9d9d9;
    border-radius: 0;
    height: 3px;
}
.team-skill--content .progress-bar {
    background-color: var(--clr-theme-2);
}
.team-skill--content .bd-skill--title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

@media (max-width: 450px),
    (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px),
    only screen and (min-width: 768px) and (max-width: 991px) {
    .team-details-layout {
        margin-top: 50px;
    }
}

/*----------------------------------------
	34. section title css
----------------------------------------*/
.section__subtitle {
    display: inline-block;
    text-align: center;
}
.section__subtitle-icon {
    margin-bottom: 15px;
    line-height: 1;
}
.section__subtitle-text {
    font-size: 20px;
    font-weight: 400;
    color: var(--clr-theme-2) !important;
    line-height: 22px;
    margin-bottom: 20px;
}
.section__subtitle-3 {
    display: flex;
    align-items: flex-start;
    gap: 27px;
    margin-bottom: 30px;
}
.section__subtitle-3 .section__subtitle-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-theme-1);
    text-transform: uppercase;

    margin-bottom: 0;
    line-height: 25px;
    padding-bottom: 10px;
    display: inline-block;
    position: relative;
}
.section__subtitle-3 .section__subtitle-text::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(
        90deg,
        var(--clr-theme-2) 0%,
        transparent 100%
    );
}
.section__subtitle-3 .section__subtitle-number span {
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-theme-2);
}
.section__title-wrapper-about .section__subtitle-text {
    margin-bottom: 0;
}
.section__title-wrapper-services .section__title-main {
    color: var(--clr-common-white);
}
.section__title-wrapper-work-process .section__title-main {
    color: var(--clr-common-white);
}
.section__title-wrapper-history {
    margin-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section__title-wrapper-history {
        margin-bottom: 80px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .section__title-wrapper-history {
        margin-bottom: 60px;
    }
}
.section__title-main {
    line-height: 1.08;
}
.section__title-2-wrapper-testimonial-2 .section__title-main {
    color: var(--clr-common-white);
}
.section__title-2-wrapper-testimonial-2 .section__title-main span {
    font-weight: 500;
}
.section__title-2-wrapper-cta .section__title-main {
    color: var(--clr-common-white);
    font-weight: 700;
}
.section__title-2-wrapper-cta .section__title-main span {
    font-family: var(--tpl-ff-handwriting);
    color: var(--clr-theme-2);
    text-transform: initial;
    font-weight: 300;
}
.section__title-2-wrapper-capabilities .section__title-main {
    color: var(--clr-common-white);
}
.section__title-3-wrapper.section__title-wrapper-services .section__title-main {
    color: var(--clr-common-white);
}
.section__title-3-wrapper.section__title-wrapper-blogpost .section__title-main {
    color: var(--clr-common-white);
}
.section__title-3-wrapper.section__title-wrapper-discuss .section__title-main {
    color: #f26921;
}
.section__title-3-wrapper.section__title-wrapper-team .section__title-main {
    color: var(--clr-common-white);
}
.section__title-3-wrapper.section__title-wrapper-project .section__title-main {
    line-height: 1;
}
@media only screen and (min-width: 1601px) {
    .section__title-3-wrapper.section__title-wrapper-project
        .section__title-main {
        font-size: 200px;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .section__title-3-wrapper.section__title-wrapper-project
        .section__title-main {
        font-size: 180px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .section__title-3-wrapper.section__title-wrapper-project
        .section__title-main {
        font-size: 140px;
    }
}

.section__right-title {
    font-size: 65px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 768px) and (max-width: 991px) {
    .section__right-title {
        font-size: 60px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section__right-title {
        font-size: 35px;
    }
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .section__right-title {
        font-size: 40px;
    }
}
@media (max-width: 450px) {
    .section__right-title {
        font-size: 35px;
    }
}

.section__title-wrapper.is-white .section__title-main {
    color: var(--clr-common-white);
}
.section__title-wrapper.is-white .section__right-title {
    color: var(--clr-common-white);
}
.section__title-wrapper.is-white .section__paragraph {
    color: var(--clr-common-white);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.7;
}
@media (max-width: 575px),
    (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px),
    only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 1200px) and (max-width: 1399px) {
    .section__title-wrapper.is-white .section__paragraph {
        font-size: 20px;
    }
}
.section__title-wrapper.is-gradient .section__title-main > * {
    background-image: linear-gradient(91.13deg, #f26921 2.19%, #4a79f2 99.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-box .title-icon {
    position: relative;
    top: -7px;
}

.fw-reguler {
    font-weight: 400;
}

.section-title-hightlight {
    color: var(--clr-theme-2);
    font-weight: 300;
}

.section__title-wrapper .title-arrow {
    padding-left: 20px;
}
@media (max-width: 575px), sm {
    .section__title-wrapper .title-arrow {
        -webkit-transform: rotate(165deg);
        -moz-transform: rotate(165deg);
        -ms-transform: rotate(165deg);
        transform: rotate(165deg);
    }
}

.section__inner-subtitle {
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 25px;

    text-transform: capitalize;
}

.line__subtitle {
    font-size: 18px;
    color: #000000;
    line-height: 1;

    position: relative;
    padding-left: 190px;
    display: inline-block;
    font-weight: 600;
}
@media (max-width: 450px) {
    .line__subtitle {
        padding-left: 140px;
    }
}
.line__subtitle::before {
    content: "";
    width: 170px;
    height: 1px;
    background: #d9d9d9;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 450px) {
    .line__subtitle::before {
        width: 120px;
    }
}
.line__subtitle::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 1px;
    background: var(--clr-theme-2);
    left: 130px;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 450px) {
    .line__subtitle::after {
        left: 80px;
    }
}

.section__title-inner {
    font-size: 65px;
    text-transform: capitalize;
    line-height: 1.17;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
    only screen and (min-width: 1400px) and (max-width: 1600px) {
    .section__title-inner {
        font-size: 60px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 992px) and (max-width: 1199px) {
    .section__title-inner {
        font-size: 50px;
    }
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px) {
    .section__title-inner {
        font-size: 40px;
    }
}
@media (max-width: 450px) {
    .section__title-inner {
        font-size: 36px;
    }
}

.section__title-wrapper.is-white .section__inner-subtitle {
    color: var(--clr-common-white);
}
.section__title-wrapper.is-white .section__title-inner {
    color: var(--clr-common-white);
}

.section-intro-paragraph {
    margin-bottom: 0;
}

.title-paragraph {
    margin-bottom: 0;
}

.section__title-wrapper.is-white .title-paragraph {
    color: var(--clr-common-white);
    margin-bottom: 0;
}

.section__title-wrapper.has-strategy-title .section__inner-subtitle {
    font-size: 24px;
    font-weight: 700;
}

.section__title-wrapper.has-strategy-title .title-paragraph {
    max-width: 587px;
}

.section__title-wrapper .title-disable {
    color: #4f4f4f;
    padding-right: 5px;
}

.title-green {
    color: #f26921;
    border-bottom: 3px solid #f26921;
}

/*Interactions*/
.text-mask {
    overflow: hidden;
    white-space: nowrap;
}

.text-line {
    transform: translate(0%, 150%);
}

.split-parent {
    overflow: hidden;
}

.split-child {
    display: inline-block;
}

.title-anim-part-1,
.title-anim-part-2 {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
    overflow: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .title-anim-part-1,
    .title-anim-part-2 {
        height: 90px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .title-anim-part-1,
    .title-anim-part-2 {
        height: 80px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .title-anim-part-1,
    .title-anim-part-2 {
        height: 60px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .title-anim-part-1,
    .title-anim-part-2 {
        height: 52px;
    }
}
@media (max-width: 450px) {
    .title-anim-part-1,
    .title-anim-part-2 {
        height: 40px;
    }
}

.title-anim-part-1 > span {
    position: absolute;
}
@media (min-width: 576px) {
    .title-anim-part-1 > span {
        transform: translateY(100%);
    }
}

.title-anim-part-2 > span {
    position: absolute;
}
@media (min-width: 576px) {
    .title-anim-part-2 > span {
        transform: translateY(-100%);
    }
}

@media (min-width: 576px) {
    .swiper-slide-active .title-anim-part-1 > span {
        animation: 0.7s titleAnim 0.5s ease forwards;
    }
}
@media (min-width: 576px) {
    .swiper-slide-active .title-anim-part-2 > span {
        animation: 0.7s titleAnim 0.7s ease forwards;
    }
}

@keyframes titleAnim {
    100% {
        transform: translateY(0%);
    }
}
