/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --theme-color: #0f758e;
    --secondary-color: #e5781f;
    --white: #ffffff;
    --black: #000000;
}

/*::-webkit-scrollbar-track {*/
/*    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);*/
/*    background-color: #F5F5F5;*/
/*    border-radius: 10px;*/
/*}*/

::-webkit-scrollbar {
    width: 5px;
    height: 2px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--theme-color);
}

html {
    font-size: 16px;
    scroll-behavior: initial !important;
    overscroll-behavior: none !important;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    position: relative;
    font-family: "Roboto", sans-serif;
    background: #110F0F;
    box-sizing: border-box;
    overflow-x: clip;
    counter-reset: services;
}

p {
    font-size: 1rem;
    color: #fff8;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover,
button:hover {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

dl,
ol,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

/*buttons*/

.themeBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75em 1.75em;
    border-radius: 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 100%;
    text-transform: uppercase;
}

.themeBtn:hover {
    background-color: var(--theme-color);
}

section {
    position: relative;
    padding: 5rem 0;
}

.subHeading {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.mainHeading {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white);
    text-transform: capitalize;
}

.mainHeading span {
    color: var(--secondary-color);
}

.row [class*="col-"] {
    position: relative;
}

/* Header Start */
header {
    background: #0f0f0f66;
    backdrop-filter: blur(18px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 11111;
}

header .container-fluid {
    padding: 0;
}

header .navbar-brand {
    padding: 0;
    margin: 0;
}

header .navbar-nav {
    gap: 1.5rem;
    align-items: center;
}

header .navbar-nav .nav-item .nav-link {
    color: var(--white);
    padding: 0;
    text-transform: capitalize;
    position: relative;
    line-height: 1.25rem;
    font-size: 1rem;
}

header .navbar-nav .nav-item:not(.dropdown) .nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    height: 2px;
    transition: all 0.3s ease;
    transform-origin: left;
    transform: scaleX(0);
}

header .navbar-nav .nav-item .nav-link:hover {
    color: var(--secondary-color);
}

header .navbar-nav .nav-item:not(.dropdown) .nav-link:hover::before {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 1px solid var(--white);
}

.navbar-toggler span {
    filter: brightness(0) invert(1);
}

/* Header End */

/* Dropdown Start */
.dropdown-menu {
    background: linear-gradient(45deg, #102329, #2a525f);
    border: unset;
}

.dropdown-menu li a {
    color: var(--white);
}

.dropdown-menu li a:hover {
    font-weight: 500;
    background: unset;
    color: var(--secondary-color);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    position: absolute;
}

.dropdown-submenu .dropdown-menu.show {
    display: block;
}

.dropdown-submenu .dropdown-toggle::after {
    transform: rotate(-90deg);
}

/* Dropdown End */

/* Hero Start */
.heroSec {
    padding: 0;
    height: 820px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.heroSec::before {
    content: '';
    position: absolute;
    top: -10rem;
    right: -10rem;
    width: 30rem;
    height: 30rem;
    background: var(--theme-color);
    border-radius: 100%;
    filter: blur(150px);
    z-index: 1;
}

.heroSec::after {
    content: '';
    position: absolute;
    bottom: -10rem;
    left: -10rem;
    width: 30rem;
    height: 30rem;
    background: var(--secondary-color);
    border-radius: 100%;
    filter: blur(150px);
    z-index: 1;
}

.heroSec h1 {
    color: var(--white);
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.heroSec h1 span {
    background: -webkit-linear-gradient(217.81deg,
            #57a2b5 25.05%,
            #65a2b1 25.05%,
            #e5781f 51.71%,
            #0f758e 79.45%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heroSec .heroBg {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Hero End */

/* Companies Start */
.companiesSec .headingRow {
    display: flex;
    gap: 2rem;
}

.companiesSec .headingRow>* {
    flex: 0 1 100%;
}

.companiesSec .headingRow>h2 {
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 3.5rem;
}

.companiesSec .headingRow>h2 span {
    color: var(--secondary-color);
}

:is(.pillSlider, .pillSlider1) .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.pillsRow+.pillsRow {
    margin-top: 1.25rem;
}

.pillsRow .pill {
    border-radius: 0.625rem;
    border: 1px solid var(--secondary-color);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillsRow .pill img {
    width: 100%;
}

/* Companies End */

/* We Offer Start */
.we-offer-ellipses img {
    position: absolute;
}

.we-offer-ellipses img:nth-of-type(1) {
    left: 0;
}

.we-offer-ellipses img:nth-of-type(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.we-offer-ellipses img:nth-of-type(3) {
    right: 0;
}

.we-offer__title {
    margin-bottom: 2.5rem;
}

.we-offer__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    background: transparent;
    border: 1px solid #A1AEBF;
    border-radius: 0.25rem;
    padding: 1.25em;
    height: 100%;
    cursor: pointer;
    transition: all 300ms ease-out;
}

.we-offer__card:hover {
    background: #E5781F1A;
    border-color: var(--secondary-color);
}

.we-offer .row .col-md-4 {
    margin-bottom: 1.5rem;
}

.we-offer__card__img img {
    width: 48px;
    aspect-ratio: 1;
    object-fit: contain;
}

.we-offer__card__content h4 {
    font-size: 1.75rem;
    line-height: 1.3;
    color: var(--white);
    text-transform: capitalize;
}

.we-offer__card__content p {
    color: #FFFFFF99;
    margin: 0;
}

/* We Offer End */

/* Why Choose Us Start */
.why-choose-us {
    background: #110F0F;
    border-radius: 2.5rem;
    margin: 0.875rem;
}

.why-choose-us::before {
    content: "";
    background: var(--secondary-color);
    position: absolute;
    inset: -0.875rem;
    z-index: -1;
    user-select: none;
    pointer-events: none;
}

.why-choose-us .mainHeading {
    font-size: 3.25rem;
}

.why-choose-us__item h3 {
    font-size: 12.5rem;
    font-weight: 600;
    -webkit-text-stroke: 2px var(--secondary-color);
    color: transparent;
    line-height: 1;
    margin: 0;
}

.why-choose-us__item h4 {
    font-weight: 400;
    font-size: 4.375rem;
    line-height: 1.14;
    color: var(--white);
}

.why-choose-us__bullets {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-left: -7rem;
}

.why-choose-us__bullets span {
    display: block;
    height: 4px;
    background: var(--secondary-color);
}

.why-choose-us__bullets span:nth-of-type(1) {
    width: 390px;
    transform: rotate(-20deg);
}

.why-choose-us__bullets span:nth-of-type(2) {
    width: 350px;
    transform: translateX(10px) rotate(-10deg);
}

.why-choose-us__bullets span:nth-of-type(3) {
    width: 390px;
    transform: translateY(-12px) translateX(12px) rotate(-2.5deg);
}

.why-choose-us__bullets span:nth-of-type(4) {
    width: 350px;
    transform: translateY(-16px) translateX(11px) rotate(7deg);
}

.why-choose-us__bullets span:nth-of-type(5) {
    width: 390px;
    transform: translateY(-21px) translateX(6px) rotate(14.87deg);
}

.why-choose-us__bullets span:nth-of-type(6) {
    width: 390px;
    transform: translateY(-26px) translateX(-4px) rotate(23.87deg);
}

.why-choose-us__bullets span::before {
    content: "";
    position: absolute;
    width: 40px;
    aspect-ratio: 1;
    background: #110F0F;
    border: 1px solid #E5781F;
    border-radius: 50%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.why-choose-us__bullets span.active::before {
    background: linear-gradient(217.81deg, #57A2B5 25.05%, #65A2B1 25.05%, #E5781F 51.71%, #0F758E 79.45%);
}

.whychooseSilder :is(.swiper-button-next, .swiper-button-prev) {
    position: static;
    margin: 0;
    width: fit-content;
    height: auto;
}

.whychooseSilder :is(.swiper-button-next, .swiper-button-prev)::after {
    display: none;
}

.whychooseSilder .swiper-button-next {
    margin-left: 1rem;
}

.whychooseSilder .swiper-slide .row {
    opacity: 0;
}

.whychooseSilder .swiper-slide.swiper-slide-active .row {
    opacity: 1;
}

.why-choose-us__img {
    width: 100%;
    height: 400px;
}

.why-choose-us__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Why Choose Us End */

/* Case Studies Start */
.case-studies__card {
    position: relative;
    border-radius: 0.25rem;
    padding: 1.5em;
    border: 1px solid #A1AEBF;
    margin-bottom: 1.5rem;
    transition: all 300ms ease-out;
}

.case-studies__card:hover {
    background: #E5781F1A;
    border-color: var(--secondary-color);
}

.case-studies__card--img img {
    width: 100%;
    height: 142px;
    border-radius: .25rem;
    object-fit: cover;
}

.case-studies__card--content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.case-studies__card--content h6 {
    width: fit-content;
    font-size: .75rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    background: var(--secondary-color);
    padding: .25em .75em;
    border-radius: .25rem;
    margin: 0;
}

.case-studies__card--content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.case-studies__card--content a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.case-studies__card--content a i {
    margin-left: .5rem;
}

/* Case Studies End */

/* Faq section */
.faq-section {
    margin: 1.5em;
    border-radius: 1.5rem;
    box-shadow: 0px 2px 54px 10px #0F758E1A;
}

.faq__title {
    margin-bottom: 4.375rem;
}

.faq__title .subHeading {
    width: fit-content;
    background: linear-gradient(0deg, #E5781F, #E5781F), linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0px 1px 1px 0px #FFFFFF33 inset, 0px 6px 12px 0px #FFFFFF0A inset, 0px 1px 2px 0px #00000033, 0px 4px 4px 0px #00000014;
    padding: .75em 1em;
    margin: 0 auto .5rem;
    font-size: 1rem;
    color: var(--white);
    border-radius: 3.125rem;
    line-height: 1;
}

.faq-accordion .accordion-item {
    border-radius: 1rem;
    padding: 1.5em;
    background: linear-gradient(0deg, #191919, #191919), linear-gradient(180deg, rgba(229, 120, 31, 0.12) 0%, rgba(15, 117, 142, 0) 100%);
    box-shadow: 0px 4px 4px 0px #0000001A, 0px 12px 32px -12px #0000001A, 0px 6px 12px 0px #FFFFFF0A inset, 0px 1px 1px 0px #FFFFFF33 inset;
    border: none;
}

.faq-accordion .accordion-item:not(:last-child) {
    margin-bottom: 1rem;
}

.faq-accordion .accordion-button {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: #E0E0E0;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(90%) sepia(1%) saturate(0%) hue-rotate(14deg) brightness(102%) contrast(91%);
}

.faq-accordion .accordion-body {
    padding-inline: 0;
}

.faq-accordion .accordion-body p {
    font-size: 1rem;
    color: #fff8;
    margin: 0;
}

.faq-section.faq--bg {
    background: linear-gradient(90deg, transparent, #0f758e30);
    margin: 0;
    border-radius: 0;
}

.faq-img {
    width: 100%;
    height: 450px;
}

.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* testimonials-section */
.testimonial-section {
    background: var(--black);
}

.testimonial__slider {
    margin-top: 3.375rem;
}

.testimonial__card {
    height: 190px;
    border-radius: .25rem;
    padding: 1.5em;
    background: #0F0F0F;
    border: 1px solid var(--secondary-color);
}

.testimonial__card--img {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.testimonial__card--img img {
    width: 48px;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__card--name h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: capitalize;
    margin: 0;
}

.testimonial__card--name h5 span {
    color: #FFFFFF99;
}

.testimonial__card--content p {
    font-weight: 600;
    color: var(--white);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial__slider__btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.testimonial__slider__btn :is(.swiper-button-prev, .swiper-button-next) {
    position: static;
    margin: 0;
    width: 60px;
    height: 60px;
    background: #0F0F0F;
    border: 1px solid #E5781F;
    border-radius: .25rem;
    color: var(--secondary-color);
    transition: all 300ms ease-in-out;
}

.testimonial__slider__btn :is(.swiper-button-prev, .swiper-button-next)::after {
    font-size: 1rem;
    transition: all 300ms ease-in-out;
}

.testimonial__slider__btn :is(.swiper-button-prev, .swiper-button-next):hover {
    background: var(--secondary-color);
}

.testimonial__slider__btn :is(.swiper-button-prev, .swiper-button-next):hover::after {
    color: var(--white);
}

/* footer */
.footer {
    padding: 5rem 0;
    background: var(--black);
}

.get-started {
    position: relative;
    background: #110F0F;
    border-radius: 0.625rem;
    border: 2px solid var(--theme-color);
    box-shadow: 0px 2px 210px 10px #0F758E40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5em 3.625em;
    margin-bottom: 4.375rem;
}

.get-started__content .mainHeading {
    font-size: 2.125rem;
    line-height: 1.25;
}

.get-started__content p {
    font-size: 1.125rem;
    margin: 0;
    color: var(--white);
}

.footer__links h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer__links li:not(:last-child) {
    margin-bottom: 1.5rem;
}

.footer__links li a {
    font-size: 1rem;
    font-weight: 500;
    color: #FFFFFF99;
    text-transform: capitalize;
}

.footer__updates h6 {
    font-weight: 300;
    font-size: 1rem;
    color: #FFFFFF99;
    text-transform: capitalize;
    margin: 1.5rem 0;
}

.footer__form input {
    border-radius: 1.5rem;
    padding: 0.5rem 0.8125em;
    background: #0F0F0F;
    border: 1.62px solid #A1AEBF;
    color: var(--white);
    outline: none;
}

.footer__form input::placeholder {
    color: var(--white);
}

.footer__updatesLinks {
    margin-top: 1rem;
}

.footer__updatesLinks li+li {
    margin-top: 0.75rem;
}

.footer__updatesLinks li a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__updatesLinks li a:hover {
    color: var(--secondary-color);
}

.footer__updatesLinks li a:hover i {
    color: var(--white);
}

.footer__updatesLinks li a i {
    min-width: 40px;
    aspect-ratio: 1;
    background: var(--secondary-color);
    border-radius: 100%;
    display: grid;
    place-items: center;
}

/* We Offer Foundation Start */
.we-offer--foundation .we-offer-ellipses img {
    bottom: 0;
    left: auto;
    right: 0;
}

.output__img {
    width: 100%;
    height: 380px;
    margin: 4rem auto 0;
}

.output__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* We Offer Foundation End */

/* Current Opening Start */
.current-opening__selectWrapper {
    margin-top: 5.25rem;
}

.current-opening__select {
    display: flex;
    gap: 2.75rem;
}

.current-opening__select :is(select, .inputField) {
    width: 100%;
    background: transparent;
    color: #E4E4E4;
    border: 1px solid #E4E4E4;
    border-radius: 0.625rem;
    overflow: hidden;
}

.current-opening__select .inputField {
    display: flex;
}

.current-opening__select .inputField input {
    width: 100%;
    background: transparent;
    border: unset;
    outline: none;
    color: var(--white);
    padding: 1rem;
}

.current-opening__select select {
    padding: 1rem;
}

.current-opening__select .inputField button {
    background: unset;
    border: unset;
    color: var(--white);
    font-size: 1.25rem;
    padding: 0 1rem;
}

.current-opening__list {
    margin-top: 3.375rem;
}

.current-opening__list li {
    background: #1B1B1B;
    border: 1px solid #E4E4E430;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.125rem 3.1875rem;
}

.current-opening__list li+li {
    margin-top: 1rem;
}

.current-opening__listContent .title {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.current-opening__listContent p {
    font-size: 1rem;
    color: #757575;
}

/* Current Opening End */

/* Contact Us Start */
.contactWrap {
    background: #110F0F;
    box-shadow: 0 2px 54px 10px #64646430;
    border-radius: 1.25rem;
    padding: 1.5rem;
}

.contact__img {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
}

.contact__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact__form {
    padding: 2rem 6rem 2rem 0;
}

.contact__form .mainHeading {
    font-size: 2.25rem;
    margin: 0;
}

.contact__form p {
    margin-bottom: 1rem;
}

.contact__formList {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.contact__formList li {
    display: contents;
}

.contact__formList li a {
    color: var(--white);
    border: 1px solid #ffffff50;
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
}

.contact__formList li a:hover {
    background: #2E2E2E;
}

.contact__formList li a:focus {
    background: linear-gradient(#01e9ee, #018afd);
}

.contact__formFields {
    margin-top: 2rem;
}

.contact__formFields label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact__formFields :is(input, textarea) {
    width: 100%;
    background: #2E2E2E;
    border: 1px solid #5D5D5D;
    border-radius: 0.5625rem;
    outline: none;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

/* Contact Us End */

/* Services Start */
.services {
    background: linear-gradient(90deg, transparent 10%, #0f758e30, transparent 90%);
}

.services__img {
    width: 400px;
}

.services__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services__contentList {
    position: relative;
    padding-left: 4rem;
}

.services__contentList::before {
    content: '';
    width: 6px;
    height: 100%;
    background: var(--white);
    position: absolute;
    top: 0;
    left: 0;
}

.services__contentList li::before {
    counter-increment: services;
    content: counter(services) ". ";
    font-size: 2.75rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--secondary-color);
    vertical-align: bottom;
}

.services__contentList li span {
    font-size: 4.125rem;
    color: var(--secondary-color);
}

.services__contentList li a {
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
}

.services-popup {
    width: 705px;
    height: 90%;
    position: absolute;
    bottom: 1rem;
    right: 0;
    background: #0F0F0F40;
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    border-radius: 1rem 0 0 1rem;
    overflow: hidden;
    transform: translateX(100%);
    z-index: 1;
    transition: all 300ms ease-in-out;
}

.services-popup.active {
    transform: translateX(0);
}

.services-popup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem 0 0 1rem;
    padding: 0.25rem 0 0.25rem 0.25rem;
    background: linear-gradient(0deg, var(--theme-color), var(--secondary-color));
    -webkit-mask: linear-gradient(white 0 0) content-box,
        linear-gradient(white 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.services-popupClosebtn {
    width: 30px;
    aspect-ratio: 1;
    background: var(--secondary-color);
    border: unset;
    border-radius: 0.25rem;
    color: var(--white);
    position: absolute;
    top: 2rem;
    right: 1.5rem;
}

.services-popup .mainHeading {
    text-align: center;
    margin: 0;
}

.services-popup__img {
    width: 200px;
    height: auto;
    margin: 2rem auto;
}

.services-popup__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-popup__content {
    height: 210px;
    overflow-y: auto;
}

.services-popup__content p {
    color: var(--white);
}

.services-popup__content p+p {
    margin-top: 1rem;
}

/* Services End */

/* Process Start */
.process {
    background: linear-gradient(180deg, transparent 10%, #0f758e30, transparent 100%);
}

.process-content {
    display: flex;
    gap: 2rem 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.process-content__item {
    flex: 0 0 160px;
}

.process-content__itemImg {
    width: 40px;
    aspect-ratio: 1;
    background-image: linear-gradient(to left bottom, var(--theme-color) 20%, var(--secondary-color) 50%, var(--theme-color) 80%);
    border-radius: 100%;
    display: grid;
    place-items: center;
    margin: 0 auto 0.75rem;
    position: relative;
}

.process-content__itemImg img:nth-child(1) {
    width: 20px;
    object-fit: contain;
}

.process-content__item:not(:last-child) .process-content__itemImg::before {
    content: '';
    width: 135px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 75%;
    background: url(../images/process-arrow.png) no-repeat center/contain;
    transform: translateY(-50%);
    z-index: -1;
}

.process-content__item .title {
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    margin: 0;
}

/* Process End */

/* Case Study Start */
.case-studyBg::before {
    content: '';
    position: absolute;
    top: 6rem;
    left: -10rem;
    width: 30rem;
    height: 30rem;
    background: #0f758e70;
    border-radius: 100%;
    filter: blur(150px);
}

.case-studyBg::after {
    content: '';
    position: absolute;
    bottom: 6rem;
    right: -10rem;
    width: 30rem;
    height: 30rem;
    background: #e5781f70;
    border-radius: 100%;
    filter: blur(150px);
}

.case-study__cardWrapper {
    gap: 1.5rem 0;
}

.case-study__card {
    height: 500px;
    display: block;
    position: relative;
    border: 2px solid transparent;
    border-radius: 0.25rem;
    overflow: hidden;
    transition: all 300ms ease-out;
}

.case-study__cardImg {
    width: 100%;
    height: 100%;
    position: relative;
}

.case-study__cardImg::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #00000090;
    z-index: 1;
}

.case-study__cardImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 300ms ease-out;
}

.case-study__cardImg span {
    font-size: 1.125rem;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 100px;
    text-transform: capitalize;
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    z-index: 1;
}

.case-study__cardContent {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem 1rem;
    transition: all 300ms ease-out;
    z-index: 1;
}

.case-study__cardContent .title {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.case-study__cardContent-btn {
    display: flex;
    gap: 0.5rem;
}

.case-study__cardContent-btn .themeBtn {
    width: 100%;
    font-size: 0.75rem;
    border-radius: 0.25rem;
    padding: 0.75em;
}

.swiper-slide-active .case-study__card,
.case-study__card:hover {
    height: 505px;
    border-color: var(--secondary-color);
    box-shadow: 0 0 24px 0 #e5781f50;
    transform: translateY(-10px);
}

.swiper-slide-active .case-study__cardImg img,
.case-study__card:hover .case-study__cardImg img {
    transform: scale(1.1);
}

.swiper-slide-active .case-study__cardContent,
.case-study__card:hover .case-study__cardContent {
    padding: 2.5rem 1rem;
}

.case-study__slider {
    padding-top: 1rem;
}

/* Case Study End */

/* Sort Item Start */
.sortItem {
    background: var(--black);
    padding: 1.5rem 0;
}

.sortItem__select {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.sortItem__select :is(select, .sortItem__selectSearch) {
    width: 300px;
    background: unset;
    border: 1px solid var(--white);
    border-radius: 0.5rem;
    color: var(--white);
    padding: 0.5rem 1rem;
}

.sortItem__select select option {
    color: var(--black);
}

.sortItem__selectSearch {
    display: flex;
}

.sortItem__selectSearch input {
    width: 100%;
    background: unset;
    border: unset;
    outline: unset;
    color: var(--white);
}

.sortItem__selectSearch button {
    background: unset;
    border: unset;
    color: var(--white);
    font-size: 1.25rem;
}

/* Sort Item End */

/* Case Study Detail Start */
.caseStudy-detail__img {
    width: 100%;
    height: 100%;
}

.caseStudy-detail__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.25rem;
    object-fit: cover;
}

.caseStudy-detail__content p {
    color: var(--white);
}

.caseStudy-detail__contentImg {
    width: 100%;
    height: 340px;
    margin: 1.5rem 0;
}

.caseStudy-detail__contentImg img {
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    object-fit: cover;
}

/* Case Study Detail End */

/* Blog Detail Start */
.blog-detail__content p {
    color: var(--white);
}

.blog-detail__content p+.mainHeading {
    margin-top: 1.5rem;
}

.blog-detail__tabs {
    position: sticky;
    top: 15%;
}

.blog-detail__tabs .nav-tabs {
    flex-direction: column;
    gap: 1rem;
    border: unset;
}

.blog-detail__tabs .nav-tabs .nav-link {
    width: 100%;
    font-size: 1.125rem;
    font-weight: 300;
    text-align: left;
    color: var(--white);
    background: unset;
    border: unset;
    border-left: 3px solid transparent;
    border-radius: 0;
    padding: 0.25rem 1.25rem;
}

.blog-detail__tabs .nav-tabs .nav-link.active {
    color: var(--secondary-color);
    font-weight: 500;
    border-color: var(--secondary-color);
}

/* Blog Detail End */

/* Line Animation Start */
.lineWrapper {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    pointer-events: none;
    z-index: -1;
}

.lineWrapper.line-y {
    flex-direction: row;
}

.lineWrapper span:not(:first-child, :last-child) {
    background: #ffffff20;
    display: block;
}

.lineWrapper.line-x span {
    width: 100%;
    height: 1px;
    animation: moveX 5s linear infinite;
}

.lineWrapper.line-y span {
    width: 1px;
    height: 100%;
    animation: moveY 5s linear infinite;
}

@keyframes moveX {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes moveY {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Line Animation End */
