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

    Template Name: Planics-dev Website
    Description: A Library of Responsive Bootstrap5, HTML5, and CSS3
    Version: 5.2

-----------------------------------------------------------------------------------
CSS INDEX
===================

01. Default CSS
02. Header CSS
  2.1. Header Top CSS
  2.2. Dropdown CSS
  2.3 Offcanvas Menu CSS
03. Hero-slider CSS
04. we-are-different CSS
05. Service-section CSS
06. portfolio-section CSS
07. Process-section CSS
08. Achievements-section CSS
09. Key-features CSS
010. Testimoniols CSS
011. Contact-newsletter CSS
012. Footer CSS
013. Breadcrumb CSS
014. Services-page CSS
015. Aboutus-page CSS
016. Portfolio-page CSS
017. Contact-page CSS 
018. UI-UX design CSS
019. Back-to-top CSS
020. Our-team CSS
021. Career page CSS
022. Blog page CSS
023. Pricing page CSS

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

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

/*  01. Default CSS
/*----------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800;900&display=swap");
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*-- Common Style --*/

:root {
    --primary: #1f3f68;
    --secondary: #020045;
    --white: #fff;
    --light-blue: #7854f7;
    --black: #000;
    --dark-blue: #600fe3;
    --text-color: #272d4e;
    --form-border: #a67fc2;
    --dark-purple: #9400d3;
    --light-purple: #9547f0;
}

body {
    font-size: 16px;
    line-height: 27px;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

::selection {
    background-color: var(--dark-blue);
    color: var(--white);
}

*:focus {
    color: inherit;
    outline: inherit;
}

.clients-wrapper {
    background: url(../img/achievement-bg.png);
    background-size: cover;
}

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

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

a,
button {
    color: inherit;
    outline: none;
    border: none;
    text-decoration: none;
}

button:hover {
    cursor: pointer;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    color: var(--primary);
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

a {
    display: inline-block;
    color: var(--primary);
    font-size: 16px;
}

p {
    font-size: 16px;
    margin: 0px;
    color: var(--primary);
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--form-border);
}

textarea.form-control {
    resize: none;
}

/* common loader css */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f6f3fe;
    z-index: 9999999999;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loader {
    text-align: center;
}

.loader-bg {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

.loader-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/services/service-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
}

/* .variant-29 .loader-image {
  animation: minimalPulse 2s ease-in-out infinite;
}

@keyframes minimalPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
} */

/* Variant 25: Business Scale */

.variant-25 {
    position: relative;
    flex-direction: column;
}

.variant-25 .loader-image {
    animation: businessScale 2.2s ease-in-out infinite;
    margin-bottom: 20px;
}

.progress-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    gap: 8px;
}

.progress-dots span {
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, #60b7ec, var(--light-purple));
    border-radius: 50%;
    animation: dotProgress 1.4s ease-in-out infinite;
}

.progress-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.progress-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes businessScale {
    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.08);
        filter: brightness(1.2);
    }
}

@keyframes dotProgress {
    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

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

/* Common class CSS
/*----------------------------------------*/

.btn {
    background: linear-gradient(90deg, var(--dark-purple) 0%, #4b0082 100%);
    border-radius: 60px;
    padding: 8px 30px;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    transition: background-size 0.5s linear;
    display: inline-block;
}
@media (max-width: 576px) {
    .btn {
        padding: 8px 18px;  /* left-right ochhu kariyu */
        font-size: 14px;    /* thodu small font */
    }
}

/* Tablet size */
@media (min-width: 577px) and (max-width: 768px) {
    .btn {
        padding: 8px 22px;
    }
}

@media (max-width: 383px) and (min-width: 340px) {
    .btn {
        padding: 6px 16px;   /* side ochhu kariyu */
        font-size: 13px;     /* thodu font ochhu */
    }
}
.btn:hover {
    color: var(--white);
    background-size: 180%;
}

.btn:focus {
    box-shadow: none;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.social-icon-nav ul li a {
    width: 40px;
    background-color: #ece6ff;
    height: 40px;
    border: 1px solid var(--dark-blue);
    text-align: center;
    margin: 0 4px;
    border-radius: 50%;
    line-height: 38px;
    color: var(--dark-blue);
    font-size: 18px;
    transition: all 0.5s;
}

.social-icon-nav ul li {
    display: inline-block;
}

.social-icon-nav ul {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icon-nav ul li a:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

.padding {
    padding: 100px 0;
}

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

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

.section-title {
    max-width: 630px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-title h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 35px;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 40px;
    position: relative;
    text-transform: capitalize;
}

.section-title .title-underline {
    width: 130px;
    height: 7px;
    background: var(--dark-blue);
    border-radius: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -21px;
}

.section-title .title-underline::after {
    content: "";
    width: 9px;
    height: 9px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    left: 20px;
    bottom: -1px;
    z-index: 11;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: move-bg;
}

@keyframes move-bg {
    0% {
        left: 20px;
    }
    50% {
        left: 120px;
    }
    100% {
        left: 20px;
    }
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--dark-purple) 0%, #4b0082 100%);
    border-radius: 5px;
}

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

/*  02. Header CSS
/*----------------------------------------*/

/*-----------
/*  2.1 - Header Top CSS
/*----------------------------------------*/

.header-area .menu-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-area {
    padding: 20px 10px;
}

.menu-area a img {
    width: 200px;
}

.header-area.active {
    background-color: var(--white);
    box-shadow: -1px 3px 20px 3px rgb(0 0 0 / 13%);
    z-index: 9999999;
    position: fixed;
    top: 0;
    width: 100%;
    display: block;
    transition: all 0.5s;
    left: 0;
    animation: 0.95s ease-in-out sticky22;
}

.header-area.active .social-icon ul li a {
    background-color: var(--white);
}

.header-area {
    position: relative;
    z-index: 999;
}

.header-area .main-menu {
    margin-left: 20px;
    margin-right: 18.5px;
}

.header-area .main-menu li {
    position: relative;
}

.social-icon {
    position: absolute;
    left: 15px;
    z-index: 99999;
}

.social-icon ul li a {
    width: 40px;
    background-color: #f4f8ff;
    height: 40px;
    border: 1px solid var(--dark-blue);
    text-align: center;
    margin: 0 4px;
    border-radius: 50%;
    line-height: 38px;
    color: var(--dark-blue);
    font-size: 18px;
    transition: all 0.5s;
    margin-bottom: 15px;
}

.social-icon ul li a:hover {
    background: var(--dark-blue);
    color: var(--white);
    border: 1px solid var(--dark-blue);
}

.header-area .main-menu li:last-child {
    padding-right: 0;
}

.header-area .main-menu li a {
    color: rgba(31, 63, 104, 0.8);
    font-weight: 600;
    padding: 30px 8.5px;
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
    position: relative;
    margin: 0 10px;
}

.header-area .main-menu li a.active,
.header-area .main-menu li a:hover {
    color: var(--dark-blue);
}

.header-area .main-menu li a::after {
    content: "";
    position: absolute;
    width: 0;
    border-radius: 0px 0px 10px 10px;
    height: 4px;
    left: 0;
    top: 0;
    background-color: var(--dark-blue);
    transition: all 0.4s;
}

.header-area .main-menu li a:hover::after,
.header-area .main-menu li a.active::after {
    width: 100%;
}

aside,
.hamburger-menu {
    display: none;
}

.menu-btn {
    display: flex;
}

.hamburger-menu {
    position: relative;
    width: 25px;
    height: 20px;
    cursor: pointer;
    top: 0;
    left: 0;
}

.hamburger-menu span {
    opacity: 1;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background-color: var(--black);
    position: absolute;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.hamburger-menu span:nth-child(1),
.close-sidebar span:nth-child(1) {
    top: 0;
}

.hamburger-menu span:nth-child(2) {
    top: 9px;
    width: 33px;
    left: -8px;
}

.hamburger-menu span:nth-child(3),
.close-sidebar span:nth-child(2) {
    top: 18px;
}

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

/*  2.2 Dorp-Menu CSS
/*----------------------------------------*/

.dropdown-menu-item {
    background: linear-gradient(90deg, var(--dark-purple) 0%, #4b0082 100%);
    position: absolute;
    min-width: 260px;
    top: 80px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgb(38 71 139 / 25%);
    left: 0;
    padding-left: 20px !important;
    padding: 15px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: -22222;
}

.dropdown-menu-item-main,
.dropdown-menu-item-main2 {
    min-width: 260px;
    top: 65px;
    border-radius: 10px;
    display: none;
    left: 0;
    padding: 10px 15px;
    z-index: 999999;
}

.dropdown-main i.fa-chevron-down {
    font-size: 13px;
}

.down-arrow i.fa-chevron-down {
    font-size: 15px;
}

.dropdown-main:hover .dropdown-menu-item {
    opacity: 1;
    visibility: visible;
    z-index: 999999;
}

.dropdown-menu-item ul li .nav-menu::after,
.dropdown-menu-item-main ul li .nav-menu::before,
.dropdown-menu-item-main ul li .nav-menu::after,
.dropdown-menu-item-main2 ul li .nav-menu::before,
.dropdown-menu-item-main2 ul li .nav-menu::after {
    display: none;
}

.show {
    display: block;
}

.dropdown-menu-item ul li .nav-menu,
.dropdown-menu-item-main ul li .nav-menu,
.dropdown-menu-item-main2 ul li .nav-menu {
    color: var(--white) !important;
    padding-right: 0 !important;
    padding: 5px !important;
    position: relative;
    transition: 0.5s;
}

.dropdown-menu-item ul li .nav-menu:hover {
    color: var(--white) !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    transform: translateX(10px);
}

.dropdown-menu-item ul li .nav-menu img,
.main-menu-title .main-menu-box li a img {
    width: 30px;
    height: auto;
    margin-right: 12px;
}

.dropdown-menu-item ul li .active-menu {
    position: relative !important;
}

.dropdown-menu-item ul li .nav-menu:before {
    content: "";
    position: absolute;
    width: 14px;
    border-radius: 10px;
    height: 3px;
    left: -19px;
    bottom: 17px;
    background-color: var(--white);
    opacity: 0;
}

.dropdown-menu-item ul li .nav-menu:hover:before {
    opacity: 1;
}

.dropdown-menu-item ul li .active-menu {
    transform: unset !important;
}

.dropdown-menu-item ul li .active-menu::before {
    content: "";
    position: absolute;
    width: 14px;
    border-radius: 10px;
    height: 3px;
    left: -19px;
    bottom: 17px;
    background-color: var(--white);
    opacity: 1;
}

.dropdown-menu-item ul .active .nav-menu {
    color: var(--white) !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    transform: translateX(10px);
}

.dropdown-menu-item ul .active .nav-menu:before {
    content: "";
    position: absolute;
    width: 14px;
    border-radius: 10px;
    height: 3px;
    left: -19px;
    bottom: 17px;
    background-color: var(--white);
    opacity: 1;
}

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

/*  2.3 Offcanvas Menu CSS
/*----------------------------------------*/

.main-menu-title {
    width: 330px;
    text-align: left;
    z-index: 999;
    position: fixed;
    top: 0;
    background: #ece6ff;
    height: 100vh;
    padding: 30px 20px;
    left: -500px;
    transition: all 0.5s;
    box-shadow: 0 0 10px rgb(129 129 129 / 50%);
}

.cross-img img {
    width: 25px;
    height: auto;
}

.cross-img {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 25px;
    cursor: pointer;
}

.main-menu-box {
    height: calc(100vh - 270px);
    overflow: auto;
}

.main-menu-title .main-menu-box li a {
    font-weight: 600;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    padding: 10px 0;
    text-transform: capitalize;
    position: relative;
    color: rgba(31, 63, 104, 0.8) !important;
}

.main-menu-title .main-menu-box li a.active {
    color: var(--dark-blue) !important;
}

.main-menu-title .main-menu-box li a:hover {
    color: var(--dark-blue) !important;
}

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

/*  03. Hero-slider CSS
/*----------------------------------------*/

.hero-slider {
    background-image: url(../img/hero-background.png);
    background-size: cover;
    height: calc(100vh - 88px);
    min-height: 667px;
    display: flex;
    align-items: center;
    position: relative;
}

@media (min-width: 992px) and (min-height: 750px) {
    .hero-slider {
        min-height: 750px;
    }
}

@media (min-width: 768px) and (max-height: 667px) {
    .hero-slider {
        min-height: 667px;
    }
}

.hero-text h2 {
    font-family: "Rubik";
    font-style: normal;
    font-weight: 500;
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.hero-text h6 {
    font-family: "Rubik";
    font-weight: 500;
    font-size: 30px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.hero-text p {
    font-weight: 400;
    font-size: 17px;
    color: var(--primary);
    max-width: 500px;
    margin-bottom: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-img {
    height: 441px;
}

.hero-img img {
    width: 100%;
    height: 100%;
}

.slide-padding {
    padding: 0px 15px 70px;
}

.owl-prev,
.owl-next {
    background: var(--white);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
    transform: rotate(-135deg);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

.owl-next:hover,
.owl-prev:hover {
    background-color: var(--dark-blue) !important;
    color: var(--white) !important;
}

.owl-next.disabled,
.owl-prev.disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
}

.owl-prev {
    position: absolute;
    right: 46px;
    top: 50%;
}

.owl-next {
    position: absolute;
    right: 46px;
    top: 60%;
}

.banner-content {
    display: flex;
    padding-top: 120px;
    align-items: center;
}

.left-button i {
    transform: rotate(135deg);
}

.right-button i {
    transform: rotate(-41deg);
}

.banner-content-row {
    padding: 60px 100px 30px 0;
}

.shape1 {
    position: absolute;
    right: 37%;
    top: 0;
}

.shape-position {
    position: absolute;
    right: 28%;
    bottom: 15px;
    top: unset;
}

.shape-position2 {
    position: absolute;
    right: 28%;
    bottom: 15px;
    top: unset !important;
}

.shape-position1 {
    position: absolute;
    right: 37%;
    bottom: unset;
    top: 31px;
}

.shape1 img {
    animation: bottomTopSlow 6s ease-in-out infinite;
}

.shape2 {
    position: absolute;
    right: 28%;
    bottom: 15px;
}

.shape2 img {
    animation: rotation 30s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bottomTopSlow {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

.shape3 {
    position: absolute;
    right: 12%;
    top: 75px;
    width: 64px;
}

.shape3 img {
    animation: leftRight 5s infinite ease-in-out;
}

@keyframes leftRight {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* mouse-scroll */

.field {
    display: flex;
    align-items: end;
    justify-content: space-around;
    width: 100%;
    position: absolute;
    bottom: 41px;
    z-index: 99;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 3px solid var(--dark-blue);
    border-radius: 60px;
    position: relative;
}

.mouse::before {
    content: "";
    width: 3px;
    height: 8px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-blue);
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 2s infinite;
}

@keyframes wheel {
    to {
        opacity: 0;
        top: 20px;
    }
}

.logo-bg {
    position: absolute;
    bottom: 10px;
    left: 20px;
    opacity: 0.3;
    scale: 0.7;
}

.center-logo {
    position: absolute;
    top: 0;
}

.center-mid-logo {
    margin-top: 75px;
}

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

/*  04. we-are-different CSS
/*----------------------------------------*/

.about-block {
    position: relative;
}

.about-block-text {
    margin: 0 auto;
    max-width: 380px;
}

.about-block-text h3 {
    font-family: "Poppins";
    font-weight: 500;
    font-size: 40px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.aboutblock-text p {
    font-weight: 400;
    font-size: 16px;
    color: var(--primary);
    opacity: 0.6;
    max-width: 450px;
}

.about_slider .slick-slide {
    text-align: center;
    margin: 0 15px;
}

.card-block {
    background: var(--white);
    box-shadow: 5px 15px 35px rgb(153 153 153 / 70%);
    border-radius: 10px;
    padding: 50px;
    max-width: 380px;
    transition: all 0.5s;
    margin: 0 auto;
}

.card-block img {
    margin-bottom: 30px;
}

.prev-button2 {
    position: absolute;
    bottom: -35px !important;
    left: 60%;
    z-index: 99999;
}

.next-button2 {
    position: absolute;
    bottom: -35px !important;
    left: 60%;
    z-index: 99999;
}

.card-block-content h2 {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 20px;
}

.card-block-content p {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    color: var(--primary);
    opacity: 0.6;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.card-block:hover {
    transform: translateY(-10px);
}

.card-block-content a {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.card-block-content a:hover {
    color: var(--dark-blue);
}

.card-block-content a i {
    position: relative;
    top: 1px;
    left: 5px;
    transition: all 0.5s;
}

.card-block:hover i {
    transform: translatex(10px);
}

.card-margin {
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
}

.cardmargin {
    margin: -300px auto 0;
}

.about-bg {
    position: absolute;
    bottom: 10%;
    left: 0px;
    z-index: -1;
}

.about-bg1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

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

/*  05. Service-section CSS
/*----------------------------------------*/

.services-wrapper {
    background: url(../img/services/service-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.service-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--text-color);
    text-align: center;
    line-height: 60px;
    margin-bottom: 25px;
}

.service-card {
    padding: 35px;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.5s;
    height: 100%;
}

.service-card .icon-warpper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--text-color);
}

.service-text h2 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-text p {
    font-weight: 400;
    font-size: 16px;
    color: rgba(31, 63, 104, 0.75);
    margin-bottom: 15px;
    width: 100%;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    display: -webkit-box;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 10px rgb(187 187 187 / 50%);
}

.service-card:hover .icon-warpper {
    background: linear-gradient(90deg, var(--dark-purple) 0%, #4b0082 100%);
    -webkit-animation: flip-vertical-left 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
    animation: flip-vertical-left 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

.service-card:hover .icon-warpper img {
    transform: rotateX(0deg) rotateY(180deg);
}

@keyframes flip-vertical-left {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }
    100% {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
}

.service-text a {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.service-text a i {
    position: relative;
    top: 1px;
    left: 5px;
    transition: all 0.5s;
}

.service-card:hover .service-text i {
    transform: translatex(10px);
}

.view-btn {
    border-radius: 60px;
    padding: 8px 30px;
    color: var(--dark-purple);
    font-weight: 500;
    font-size: 16px;
    border: 1px solid var(--dark-purple);
    display: inline-block;
    transition: all 0.5s;
}

.view-btn:hover {
    background: linear-gradient(90deg, var(--dark-purple) 0%, #4b0082 100%);
    color: var(--white);
}

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

/*  06. portfolio-section CSS
/*----------------------------------------*/

.portfolio-box {
    transition: all 0.5s;
    margin-bottom: 30px;
}

.portfolio-box:hover {
    transform: translateY(-10px);
}

.portfolio-img img {
    width: 100%;
    height: auto;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.portfolio-text {
    padding: 20px 0 0 0;
}

.portfolio-text h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: var(--primary);
}

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

/*  07. Process-section CSS
/*----------------------------------------*/

.process-wrapper {
    position: relative;
    background-image: url("../img/Map.png");
    background-size: cover;
}

.process-bg {
    position: absolute;
    top: -450px;
    left: 0px;
    z-index: -1;
}

.process-box {
    text-align: center;
    position: relative;
}

.process-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--white);
    text-align: center;
    line-height: 92px;
    margin: 0 auto 20px;
    border: 2px solid var(--light-blue);
}

.process-box h2 {
    font-weight: 600;
    font-size: 22px;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 10px;
}

.process-box::before {
    content: "";
    position: absolute;
    right: 0;
    transform: translateX(75%);
    width: 100%;
    height: 18px;
    background: url(../img/process-chain.png) no-repeat 0 0;
    top: 49px;
    z-index: -1;
}

@media (max-width: 1399.99px) {
    .process-box::before {
        transform: translateX(66%);
    }
}

.process-box-last::before {
    display: none;
}

.process-box p {
    max-width: 250px;
    margin: auto;
}

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

/*  08. Achievements-section CSS
/*----------------------------------------*/

.achievement-wrapper {
    background: url(../img/services/service-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.achievement-circle {
    position: relative;
    z-index: 9;
    height: 500px;
    width: 500px;
    background-color: #e8dfff;
    border-radius: 50%;
    -webkit-animation: pulsing3 2.3s infinite;
    animation: pulsing3 2.3s infinite;
}

.achievement-circle1 {
    position: absolute;
    z-index: 9;
    height: 400px;
    width: 400px;
    background-color: #d8cfff;
    border-radius: 50%;
    -webkit-animation: pulsing3 2.3s infinite;
    animation: pulsing3 2.3s infinite;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.achievement-circle2 {
    position: absolute;
    z-index: 9;
    height: 300px;
    width: 300px;
    background-color: var(--white);
    border-radius: 50%;
    -webkit-animation: pulsing3 2.3s infinite;
    animation: pulsing3 2.3s infinite;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.achievement-circle3 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* planicsdev logo size increase */

.achievement-circle3 img {
    height: 115px;
}

@keyframes pulsing3 {
    0% {
        box-shadow: 0 0 0 0 #e4d1ff;
    }
    50% {
        box-shadow: 0 0 0 26px rgba(29, 181, 193, 0);
    }
    to {
        box-shadow: 0 0 0 0 rgba(29, 181, 193, 0);
    }
}

.achievement-description .achievement-space {
    row-gap: 60px;
}

.achievement-description h2 {
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 30px;
    color: var(--secondary);
}

.achievement-image img {
    width: 525px;
    height: auto;
}

.achievement-description p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: rgba(31, 63, 104, 0.75);
    font-family: "Rubik";
    margin-bottom: 20px;
}

.counter-text {
    text-align: center;
}

.counter-text h1 span {
    font-weight: 600;
    font-size: 40px;
    color: #263238;
}

.text {
    font-weight: 500;
    font-size: 14px;
    line-height: 27px;
    color: #646464;
}

.counter-box {
    position: relative;
}

.counter-box::before {
    content: "";
    position: absolute;
    top: -40px;
    right: 15px;
    width: 58px;
    height: 84px;
    background-image: url(../img/counter1-img.png);
    background-repeat: no-repeat;
}

.counter-box::after {
    content: "";
    position: absolute;
    bottom: -42px;
    left: -20px;
    width: 79px;
    height: 84px;
    background-image: url(../img/counter2-img.png);
    background-repeat: no-repeat;
}

.achievement-mobile-slider {
    width: 100%;
}

.achievement-mobile-slider .achievement-slide {
    padding: 0 10px;
    outline: none;
}

.achievement-mobile-slider .achievement-services-card {
    margin: 10px auto 10px !important;
    box-shadow: 0 0 9px 1px rgb(49 89 211 / 19%) !important;
}

.achievement-mobile-slider .achievement-services-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

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

/*  09. Key-features CSS
/*----------------------------------------*/

.features-text h2 {
    font-weight: 700;
    font-size: 25px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.features-text p {
    font-weight: 500;
    font-size: 16px;
    color: rgba(31, 63, 104, 0.5);
    max-width: 436px;
}

.festures-text-right p {
    margin: 0 auto 0 0;
}

.festures-text-right {
    margin-left: 30px;
}

.features-text {
    max-width: 490px;
}

.features-img {
    width: 100px;
    height: 100px;
    border: 2px solid var(--light-blue);
    border-radius: 50%;
    text-align: center;
    line-height: 90px;
    position: relative;
    background: var(--white);
}

.features-img:after {
    content: "";
    position: absolute;
    top: 98px;
    left: 47px;
    width: -1px;
    height: 170%;
    border: 1px solid var(--light-blue);
}

.key-features-box:last-child .features-img::after {
    height: 135%;
}

.key-features-box {
    margin-bottom: 75px;
    position: relative;
}

.features-img img {
    width: 45px;
    height: auto;
}

.label-text h2 {
    font-weight: 600;
    font-size: 190px;
    text-align: center;
    letter-spacing: -0.05em;
    color: rgba(96, 15, 227, 0.05);
    line-height: 119px;
    padding-left: 50px;
}

.label-text-right {
    padding-left: 0;
    padding-right: 50px;
}

.features-img-last::after {
    display: none;
}

.description-container {
    position: relative;
}

.description-container .read-more-btn,
.description-container .read-less-btn {
    background: none !important;
    border: none !important;
    color: var(--dark-blue) !important;
    cursor: pointer !important;
    padding: 0 !important;
    font-size: inherit !important;
    text-decoration: underline !important;
    margin-left: 5px !important;
    display: inline !important;
    transition: color 0.3s ease !important;
}

.read-more-btn:hover,
.read-less-btn:hover {
    color: var(--dark-blue) !important;
    text-decoration: none !important;
}

.description-text {
    margin-bottom: 5px !important;
}

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

/*  010. Testimoniols CSS
/*----------------------------------------*/

.testimoniols-wrapper {
    position: relative;
    margin-bottom: 80px;
}

.testimoniols-content-item {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 28px;
    position: relative;
}

.testimoniols-text .paragraph {
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color);
    width: 100%;
    height: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.left-text h2 {
    font-size: 20px;
    font-weight: 600;
    text-align: right;
}

.tab_links.active img {
    border: 3px solid var(--dark-blue);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(122, 122, 122, 50%);
}

.testimoniols-content-img {
    position: absolute;
    top: 0;
    left: 0;
}

.testimonialsSwiper .testimoniols-content-img img,
.testimonial_slider .testimoniols-content-img img {
    width: 130px;
    height: auto;
}

.testimonial-circle-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-32%, -27%);
}

.testimonial-circle-img img {
    width: 100%;
    height: 105px;
}

.testimoniols-circle {
    position: relative;
    z-index: 9;
    min-height: 500px;
    max-width: 500px;
}

.testimoniols-circle-main1 {
    position: absolute;
    height: 550px;
    width: 550px;
    border: 1px dashed rgba(119, 129, 148, 0.6);
    left: 0;
    top: 0;
    border-radius: 50%;
    z-index: -99;
    animation: rotateme 30s infinite linear;
}

@keyframes rotateme {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateme2 {
    0% {
        -webkit-transform: rotate(0deg);
        opacity: 1;
    }
    50% {
        -webkit-transform: rotate(-180deg);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: rotate(-360deg);
        opacity: 1;
    }
}

.testimoniols-circle-main2 {
    position: absolute;
    top: -1px;
    left: 316px;
    width: 8px;
    height: 8px;
    background: var(--light-blue);
    border-radius: 30px;
}

.testimoniols-circle-main3 {
    position: absolute;
    height: 450px;
    width: 450px;
    border: 1px dashed rgba(119, 129, 148, 0.6);
    left: 10%;
    top: 10%;
    border-radius: 50%;
    z-index: -99;
    animation: rotateme2 30s infinite linear;
}

.testimoniols-circle-main4 {
    position: absolute;
    top: 60px;
    left: 54px;
    width: 18px;
    height: 18px;
    background: var(--light-blue);
    border-radius: 30px;
}

.testimoniols-circle-main8 {
    position: absolute;
    bottom: 9px;
    left: 164px;
    width: 18px;
    height: 18px;
    background: var(--dark-blue);
    border-radius: 30px;
}

.testimoniols-circle-main5 {
    position: absolute;
    bottom: 68px;
    right: 45px;
    width: 18px;
    height: 18px;
    background: var(--dark-blue);
    border-radius: 30px;
}

.testimoniols-circle-main6 {
    position: absolute;
    height: 350px;
    width: 350px;
    border: 1px dashed rgba(119, 129, 148, 0.6);
    left: 20%;
    transform: translate(-50%, -50%);
    top: 20%;
    border-radius: 50%;
    z-index: -99;
    animation: rotateme 50s infinite linear;
}

.testimoniols-circle-main7 {
    position: absolute;
    top: 100px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: rgba(120, 84, 247, 0.5);
    border-radius: 30px;
}

.testimoniols-circle-main9 {
    position: absolute;
    top: 208px;
    left: -1px;
    width: 8px;
    height: 8px;
    background: rgba(120, 84, 247, 0.5);
    border-radius: 30px;
}

.testimoniols-circle .active-circle {
    position: absolute;
    top: 30px;
    right: -2px;
    width: max-content;
}

.testimoniols-item {
    cursor: pointer;
}

.tab_content {
    display: none;
}

#test1 {
    display: block;
}

.tab_content.active {
    animation: 1s zoom-in2;
}

.testimoniols-text {
    position: relative;
}

@keyframes zoom-in2 {
    0% {
        transform: translatex(30px);
    }
    100% {
        transform: none;
    }
}

.testimoniols-area-block {
    background: var(--white);
    box-shadow: 0px 0 20px rgb(147 147 147 / 50%);
    border-radius: 20px;
    padding: 50px 30px 30px 30px;
    text-align: center;
    position: relative;
}

.next-button,
.prev-button {
    background: var(--white);
    box-shadow: 0px 0px 30px rgb(0 0 0 / 15%);
    transform: rotate(45deg);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

.next-button:hover,
.prev-button:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

.next-button i,
.prev-button i {
    transform: rotate(-41deg);
}

.next-button {
    position: absolute;
    bottom: -106px;
    left: 28%;
}

.prev-button {
    position: absolute;
    bottom: -106px;
    left: 60%;
}

.tab_links img {
    border: 3px solid rgb(96 15 227 / 35%);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    background: #fff;
    object-fit: cover;
    object-position: top;
}

.testimoniols-item1 {
    position: absolute;
    top: 140px;
    left: -10px;
}

.testimoniols-item2 {
    position: absolute;
    right: 203px;
    bottom: -80px;
}

.testimoniols-item3 {
    position: absolute;
    bottom: 88px;
    left: 445px;
}

.testimoniols-item4 {
    position: absolute;
    left: 260px;
    top: 20px;
}

.testimoniols-item5 {
    position: absolute;
    top: 314px;
    left: 80px;
}

.testimoniols-item6 {
    position: absolute;
    top: 140px;
    right: -56px;
}

.test-flex {
    display: flex;
    align-items: center;
}

.test-img img {
    height: auto;
    border: 3px solid #c8abf5;
    border-radius: 50%;
    background: #fff;
}

.testimoniols-content h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: #39374d;
    font-family: "Roboto", sans-serif;
}

.testimoniols-content p {
    font-weight: 500;
    font-size: 16px;
    color: #f5ad0d;
}

.testimoniols-content {
    margin-left: 20px;
}

.testimonial_slider .prev-button2,
.testimonial_slider .next-button2 {
    bottom: -75px !important;
}

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

/*  011. Contact-newsletter CSS
/*----------------------------------------*/

.contact-newsletter-block {
    background-image: url(../img/contactus.png);
    padding: 35px;
    box-shadow: 0 0 20px rgb(39 45 78 / 15%);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
}

.contact-newsletter-text h2 {
    font-weight: 600;
    font-size: 35px;
    color: var(--text-color);
}

.contact-btn {
    border-radius: 60px;
    padding: 10px 30px;
    color: var(--white);
    font-weight: 600;
    background-color: var(--text-color);
    font-size: 16px;
    display: inline-block;
    transition: all 0.5s;
    white-space: nowrap;
}

.contact-btn:hover {
    color: var(--white);
}

.contact-newsletter {
    position: relative;
    margin-bottom: -80px;
    z-index: 99;
    opacity: 1;
}

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

/*  012. Our-team-section CSS
/*----------------------------------------*/

.owl-carousel-our-team .item {
    background: radial-gradient( 79.75% 79.75% at 50% 50%, #d9d9d9 0%, #4b0082 100%);
    border-radius: 12px;
}

.owl-carousel-our-team .owl-dots {
    display: none !important;
}

.owl-carousel-our-team .owl-prev span,
.owl-carousel-our-team .owl-next span {
    font-size: 34px;
    transform: rotate(136deg);
    color: white !important;
    justify-content: center;
    display: flex;
    align-items: center;
}

.owl-carousel-our-team .owl-prev,
.owl-carousel-our-team .owl-next {
    background: var(--dark-blue) !important;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

.owl-carousel-our-team .owl-next.disabled,
.owl-carousel-our-team .owl-prev.disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
}

.owl-carousel-our-team .owl-next {
    position: absolute;
    right: -100px;
    top: 40%;
}

.owl-carousel-our-team .owl-prev {
    position: absolute;
    left: -100px;
    top: 40%;
}

.team-content {
    background: radial-gradient( 61.93% 621.02% at 49.82% 50.49%, #d9d9d9 0%, var(--light-purple) 100%);
    width: 100%;
    border-radius: 25px 25px 0px 0px;
    transform: translateY(100px);
    transition: all 0.4s;
}

.owl-carousel-our-team .item:hover .team-content {
    transform: translateY(0px);
}

.team-content h3 {
    font-family: Poppins;
    font-size: 28px;
    font-weight: 600;
    line-height: 42px;
    text-align: left;
}

.team-content p {
    font-family: Poppins;
    font-size: 15px;
    font-weight: 700;
    line-height: 22.5px;
}

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

/*  012. Footer CSS
/*----------------------------------------*/

.footer-wrapper {
    background-image: url(../img/footer.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 16px 0;
}

.footer-items img {
    margin-bottom: 15px;
    width: 200px;
    background: #fff;
    border-radius: 10px;
}

.footer-items p {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 340px;
}

.footer-icon ul li {
    display: inline-block;
}

.footer-icon h2 {
    font-weight: 500;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-list h2:after,
.footer-contact h2:after {
    content: "";
    width: 55px;
    height: 2px;
    background-color: var(--white);
    position: absolute;
    left: 0;
    bottom: -10px;
}

.footer-icon ul li a i {
    width: 35px;
    background-color: transparent;
    height: 35px;
    border: 1px solid var(--white);
    text-align: center;
    margin: 0 4px;
    border-radius: 50%;
    line-height: 32px;
    color: var(--white);
    font-size: 18px;
    transition: all 0.5s;
    margin-bottom: 15px;
}

.footer-icon ul li a i:hover {
    background-color: var(--white);
    color: var(--dark-blue);
}

.footer-list h2,
.footer-contact h2 {
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
    position: relative;
}

.footer-list ul li a {
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.8);
    transition: 0.5s;
    font-weight: 500;
}

.footer-list ul li a:hover {
    transform: translateX(10px);
    color: var(--white);
}

.footer-contact ul li {
    display: flex;
    margin-bottom: 10px;
    max-width: 340px;
}

.footer-contact ul li a {
    display: flex;
}

.footer-contact ul li .footer-icon {
    color: var(--white);
    font-size: 20px;
    margin-right: 10px;
    position: relative;
    top: 7px;
}

.footer-contact ul li .footer-iconlast {
    color: var(--white);
    font-size: 20px;
    margin-right: 10px;
    position: relative;
    top: 4px;
}

.footer-contact ul li span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.footer-bottom p,
.footer-bottom p a {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    color: var(--white);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #c4c4c4;
    margin-top: 70px;
}

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

/* 013. Breadcrumb CSS
/*----------------------------------------*/

.bredcumb-wrapper {
    padding: 80px 0;
    background: url(../img/breadcrumb.png);
    background-size: cover;
}

.bredcumb-text h2 {
    text-align: center;
    font-weight: 700;
    font-size: 45px;
    color: var(--white);
    letter-spacing: 2px;
}

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

/*  014. Services-page CSS
/*----------------------------------------*/

.all_services_wrapper {
    position: relative;
    z-index: 0;
}

.all_services_wrapper:not(:last-child) {
    margin-bottom: 80px;
}

.all_services-block {
    position: absolute;
    width: 18px;
    border-radius: 50%;
    height: 18px;
    right: 86px;
    top: 155px;
    background-color: rgba(35, 75, 121, 0.8);
    animation: pulsing2 3s infinite;
}

@keyframes pulsing2 {
    0% {
        box-shadow: 0 0 0 0 rgba(35, 75, 121, 0.8);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(29, 181, 193, 0);
    }
    to {
        box-shadow: 0 0 0 0 rgba(29, 181, 193, 0);
    }
}

.all_services-content {
    top: 18px;
    padding: 35px;
    background: var(--white);
    border: 3px solid #a0aedd;
    border-radius: 0px 0px 0px 40px;
    max-width: 660px;
    z-index: 9999;
    position: absolute;
    left: 18px;
    bottom: 18px;
}

.all_services_position_right {
    width: 670px;
    min-height: 466px;
    border: 3px solid var(--dark-blue);
    box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
    border-radius: 0px 0px 50px 0px;
    margin-left: -142px;
    position: relative;
}

.all_services-content_right {
    padding: 35px;
    background: var(--white);
    border: 3px solid #a0aedd;
    border-radius: 0px 0px 40px 0px;
    z-index: 9999;
    left: unset;
    right: 18px;
}

.all_services_position {
    width: 670px;
    min-height: 466px;
    border: 3px solid var(--dark-blue);
    box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
    border-radius: 0px 0px 0px 50px;
    margin-right: -142px;
    position: relative;
    margin-top: -12px;
}

.all_services-img img {
    width: 100%;
    height: auto;
}

.all_services-img {
    position: relative;
    z-index: 99;
}

.all_services-content h2 {
    font-weight: 700;
    font-size: 35px;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: "Roboto", sans-serif;
}

.all_services-content p {
    font-weight: 500;
    font-size: 16px;
    color: rgba(39, 45, 78, 0.8);
    margin-bottom: 15px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.All_services_list ul li {
    font-weight: 500;
    font-size: 16px;
    color: rgba(39, 45, 78, 0.8);
    display: inline-block;
    margin-bottom: 10px;
    max-width: 350px;
    margin-right: 25px;
}

.achievement-services-wrapper {
    background-image: url(../img/achievement-bg.png);
    background-size: cover;
    margin-bottom: -91px;
    padding-bottom: 220px !important;
}

.all_services_position {
    position: relative;
}

.achievement-services-card {
    padding: 15px 5px;
    background: var(--white);
    box-shadow: 6px 28px 50px rgb(49 89 211 / 19%);
    border-radius: 20px;
    text-align: center;
    width: 125px;
    height: 125px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

.achievement-services-card:hover {
    transform: translateY(-10px);
}

.achievement-services-card img {
    margin-bottom: 10px;
}

.achievement-services-card h4 {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: var(--text-color);
}

.achievement-services-margin {
    margin-bottom: 170px;
}

.achievement-services-logo img {
    box-shadow: 0px 0px 30px rgba(163, 163, 163, 0.25);
    border-radius: 300px;
}

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

/*  015. Aboutus-page CSS
/*----------------------------------------*/

.aboutus-content {
    max-width: 575px;
}

.aboutus-content span {
    font-weight: 700;
    font-size: 35px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.aboutus-content h2 {
    font-weight: 600;
    font-size: 26px;
    line-height: 38px;
    color: var(--light-blue);
    margin-top: 12px;
    margin-bottom: 12px;
}

.aboutus-content .abouttext {
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 16px;
    color: #121e31;
}

.aboutus-content-list {
    display: flex;
    background: var(--white);
    border: 1px solid #eeeeee;
    box-shadow: 0px 20px 25px rgba(0, 0, 0, 0.05), 0px 10px 10px rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    padding: 20px;
    max-width: 600px;
    margin-bottom: 20px;
}

.aboutus-content-img {
    min-width: 60px;
    height: 60px;
    background: #e3ebff;
    border-radius: 50%;
    text-align: center;
    line-height: 56px;
    display: block;
}

.aboutus-content-text {
    margin-left: 15px;
}

.aboutus-content-text h2 {
    font-weight: 600;
    font-size: 24px;
    color: #121e31;
    font-family: "Roboto", sans-serif;
    margin-bottom: 10px;
    line-height: 25px;
}

.goal-wrapper {
    background: var(--white);
    box-shadow: 0px 4px 120px rgba(89, 113, 105, 0.1);
    border-radius: 30px;
    padding: 50px 20px 20px 20px;
    text-align: center;
    height: 250px;
}

.goal-img {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    margin: -89px auto 30px;
}

.goal-wrapper h2 {
    font-weight: 700;
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
}

.goal-wrapper p {
    font-weight: 400;
    font-size: 16px;
    color: rgba(18, 30, 49, 0.6);
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.core-values-wrapper {
    background: url(../img/achievement-bg.png);
    background-size: cover;
}

.core-value-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.5s;
}

.core-value-card:hover {
    transform: translateY(-10px);
}

.core-value-img {
    background: rgba(119, 122, 242, 0.1);
    border-radius: 10px;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    margin: 0 auto 20px;
}

.core-value-card h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 15px;
    color: var(--secondary);
    font-family: "Roboto", sans-serif;
}

.core-value-card p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: rgba(18, 30, 49, 0.6);
}

.core-value-margin {
    margin-top: 72px;
}

.clients-img img {
    margin: auto;
    filter: grayscale(1);
}

.clients-img img:hover {
    margin: auto;
    filter: grayscale(0);
}

.clientsslider .slick-dots {
    display: flex;
    justify-content: center;
    margin: -61px 0;
    padding: 1rem 0;
    list-style-type: none;
}

.clientsslider .slick-dots li {
    margin: 0 0.25rem;
}

.clientsslider .slick-dots button {
    display: block;
    width: 10px !important;
    height: 10px !important;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #ded3ff !important;
    text-indent: -9999px;
}

.clientsslider .slick-dots li.slick-active button {
    background-color: var(--dark-blue) !important;
}

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

/*  016. Portfolio-page CSS
/*----------------------------------------*/

#portfolio-filter {
    text-align: center;
    margin-bottom: 90px;
}

.portfolio-wrapper {
    padding: 80px 0;
}

#portfolio-filter .portfolio-filter-menu .btn.active {
    background: var(--text-color);
    color: var(--white);
}

.portfolio-img {
    width: 100%;
    height: auto;
}

#portfolio-filter .portfolio-filter-menu .btn {
    display: inline-block;
    background: rgba(39, 45, 78, 0.2);
    padding: 12px 30px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 100px;
    transition: 0.5s;
    border: 1px solid transparent;
}

#portfolio-filter .portfolio-filter-menu .btn:hover {
    background: var(--text-color);
    color: var(--white);
}

.is-animated {
    animation: 0.6s zoom-in;
}

@keyframes zoom-in {
    0% {
        transform: scale(0.1);
    }
    100% {
        transform: none;
    }
}

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

/*  017. Contact-page CSS
/*----------------------------------------*/

.contact-form-wrapper .contact-form-img img {
    background-color: #f9f8ff;
    width: 100%;
}

.contact-form-wrapper .contact-left h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: var(--text-color);
    margin-bottom: 10px;
    position: relative;
    text-transform: capitalize;
}

.contact-form-wrapper .contact-left p {
    font-size: 16px;
    margin: 0 0 16px;
    color: var(--primary);
}

.contact-form-wrapper .contact-from input {
    border: 1px solid rgba(78, 0, 133, 0.5);
    border-radius: 30px;
    padding: 15px;
}

.contact-form-wrapper .contact-from textarea {
    border: 1px solid rgba(78, 0, 133, 0.5);
    border-radius: 30px;
    padding: 15px;
}

.contact-info-wrapper .contact-cards-wrapper {
    row-gap: 80px;
}

.contact-info-wrapper .section-title {
    padding-bottom: 20px;
}

.contact-info-wrapper .contact-info-card {
    background: rgba(243, 239, 255, 0.5);
    border-radius: 10px;
    padding: 30px 16px;
    height: 100%;
    width: 100%;
    transition: all 0.5s;
}

.contact-info-card h6 {
    color: rgba(18, 30, 49, 0.6);
}

.contact-info-wrapper .contact-info-card:hover {
    transform: translateY(-10px);
}

.contact-info-wrapper .contact-info-card .contact-card-img {
    width: 80px;
    height: 80px;
    background: var(--white);
    box-shadow: 2px 6px 30px rgba(2, 0, 69, 0.1);
    border-radius: 15px;
    line-height: 75px;
    text-align: center;
    margin: -70px auto 30px;
}

.contact-info-wrapper .contact-info-card .contact-card-img img {
    width: 32px;
    height: auto;
}

.contact-info-wrapper .contact-info-card .contact-card-details h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact-info-wrapper .contact-info-card .contact-card-details a {
    font-weight: 400;
    font-size: 18px;
    color: rgba(18, 30, 49, 0.6);
}

.contact-map-wrapper .conatct-map {
    width: 100%;
    height: 700px;
}

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

/*   018. UI-UX design css */

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

.ui-value-wrapper {
    background-image: url(../img/achievement-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0px;
}

.ui-value-wrapper .ui-value-card {
    background: var(--white);
    border: 1px solid var(--form-border);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 60px;
    position: relative;
    padding: 35px 20px 20px;
}

.ui-value-wrapper .ui-value-card:last-child {
    margin-bottom: 0px;
}

.ui-value-wrapper .ui-value-left-card {
    position: relative;
    left: 70px;
}

.ui-value-wrapper .ui-value-right-card {
    position: relative;
    right: 70px;
}

.ui-value-wrapper .ui-value-img {
    position: relative;
    top: -40px;
    left: 15px;
}

.ui-value-wrapper .ui-value-card .ui-button {
    background: var(--white);
    border-width: 0px 0px 2px 2px;
    border-style: solid;
    border-color: var(--dark-blue);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    border-radius: 7px;
    padding: 8px 30px;
    display: inline-block;
    position: absolute;
    top: -22px;
    right: 16px;
}

.ui-value-wrapper .ui-value-card .ui-button-right {
    left: 16px;
    right: unset;
}

.ui-button h2 {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-color);
    font-family: "Roboto";
}

.ui-value-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: rgba(18, 30, 49, 0.6);
    text-align: center;
    min-height: 120px;
}

.technologi-wrapper .technologi-img {
    background: rgba(243, 239, 255, 0.5);
    width: 190px;
    height: 190px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.technologi-wrapper .technologi-img img {
    margin-bottom: 20px;
    height: auto;
}

.technologi-wrapper .technologi-img h6 {
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary);
}

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

/*  019. Back-to-top CSS
/*----------------------------------------*/

.back-top {
    position: fixed;
    bottom: -80px;
    right: 12px;
    height: 80px;
    width: 80px;
    z-index: 99;
    transition: all 0.9s;
    border-radius: 50%;
    background-color: transparent;
}

.back-top::before {
    content: "";
    background-color: #f6f0ff;
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 50px;
    -webkit-animation: pulsing1 2.3s infinite;
    animation: pulsing1 2.3s infinite;
}

.back-top::after {
    content: "";
    background-color: #e4d1ff;
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border-radius: 50px;
}

.back-top #rocketmeluncur {
    position: fixed;
    bottom: 0;
    z-index: 1;
    display: none;
    visibility: hidden;
    width: 35px;
    height: 100px;
    right: 34px;
    background: url("../img/rocket.png") no-repeat 50% 0;
    transition: visibility 0.6s cubic-bezier(0.6, 0.04, 0.98, 0.2), opacity 8s cubic-bezier(0.9, 0.04, 0.8, 0.2), transform 0.6s cubic-bezier(0.6, 0.04, 0.98, 0.2);
}

.back-top #rocketmeluncur.showrocket {
    visibility: visible;
    opacity: 1;
}

.back-top #rocketmeluncur:hover {
    height: 125px;
    transition: 0.3s linear;
}

.back-top #rocketmeluncur.launchrocket {
    opacity: 0;
    -webkit-transform: translateY(-800px);
    -moz-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    transform: translateY(-800px);
    pointer-events: none;
}

#scrolltop {
    display: none;
}

.font-stroke {
    display: flex;
    justify-content: center;
    font-family: var(--font);
    color: var(--white);
    text-shadow: -2px 0 1px var(--stroke-color), 0 2px 1px var(--stroke-color), 2px 0 1px var(--stroke-color), 0 -2px 1px var(--stroke-color);
    letter-spacing: 5px;
}

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

/*  020. Our-team CSS
/*----------------------------------------*/

.button-our-team {
    padding: 10px 40px;
    font-size: 18px;
    background-image: linear-gradient(var(--dark-purple), #4b0082);
    color: white;
    border-radius: 60px;
}

.form-control {
    border: 1px solid var(--form-border);
    border-radius: 30px;
}

.form-our-team {
    padding-bottom: 120px;
}

.tex-our-team {
    left: 30px;
    bottom: 8px;
    width: 292px;
    height: 87px;
    background: radial-gradient( 61.93% 621.02% at 49.82% 50.49%, #d9d9d9 0%, var(--light-purple) 100%);
    padding: 10px 15px;
    display: none;
    transition: 0.5s ease-in;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.main-hover-img:hover .tex-our-team {
    display: block;
}

.tex-our-team2 {
    left: 2px;
    bottom: 5px;
    width: 287px;
    height: 87px;
    background: radial-gradient( 61.93% 621.02% at 49.82% 50.49%, #d9d9d9 0%, var(--light-purple) 100%);
    padding: 10px 15px;
    display: none;
    transition: 0.5s ease-in;
    border-radius: 30px 30px 0 0;
}

.main-hover-img:hover .tex-our-team2 {
    display: block;
}

/* our-team css end */

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

/*  021. Career page CSS
/*----------------------------------------*/

.fa-check-circle {
    color: #4b0082;
}

.contact-text {
    padding: 100px 50px;
    margin-top: -80px;
    height: 300px;
    width: 300px;
    background: rgba(243, 239, 255, 0.5);
    border-radius: 5px;
}

.all_services_position .icons-sens-cv {
    padding-bottom: 120px;
}

.form-select {
    color: #697681;
}

.send-box {
    box-shadow: 20px 20px 50px 0.5px #d9d9d9;
    padding: 10px 30px;
    border-radius: 10px;
}

.career-hero {
    text-align: end;
    padding: 0px 20px 0 48px;
}

.accordion-header {
    position: relative;
}

.accordion-header .btn {
    position: absolute;
    top: 15px;
    right: 60px;
    z-index: 99;
}

a {
    display: inline-block;
    color: #e7e7e7;
    font-size: 16px;
}

.apply-bt-wordpress {
    padding: 8px 35px;
    border-radius: 30px;
    color: white;
    background-color: var(--text-color);
    font-size: 18px;
    margin-left: 896px;
    margin-top: 8px;
    font-weight: 600;
    position: relative;
    z-index: 99;
}

.apply-bt-beack-end {
    padding: 8px 35px;
    border-radius: 30px;
    color: white;
    background-color: var(--text-color);
    font-size: 18px;
    margin-left: 1085px;
    margin-right: 50px;
    margin-top: -43px;
    font-weight: 600;
    position: relative;
    z-index: 99;
}

a:hover {
    color: #1f3f68c7;
}

.ui-ux-text {
    padding: 15px;
}

.ui-ux-text .experience img,
.ui-ux-text .experience1 img {
    height: 60px;
}

.accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    z-index: 3;
    border-color: white;
    outline: 0;
    box-shadow: none;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 5px;
    border: none;
    box-shadow: 0px 0px 5px rgb(78 0 136);
}

.Upload-file {
    padding: 10px 15px;
}

.accordion-button:not(.collapsed) {
    color: #070000;
    background-color: var(--white);
    box-shadow: none;
}

.wordpress-boder {
    margin-top: 20px;
}

.accordion-button {
    border-radius: 6px;
}

.job-accordian-img {
    width: 24px;
    vertical-align: baseline;
}

/* collapse section start */

.accordion-button:not(.collapsed) {
    color: #070000;
    background-color: var(--white);
    box-shadow: none;
}

.white-box {
    font-weight: bolder !important;
    margin-top: -10px;
    width: 231px;
    height: 61px;
}

.leadership-img1 {
    position: relative;
    width: 23%;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    background: radial-gradient( 61.93% 621.02% at 49.82% 50.49%, #d9d9d9 0%, var(--light-purple) 100%);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
    border-radius: 30px 30px 0 0;
}

.leadership-img1:hover .overlay,
.leadership-img2:hover .overlay {
    height: 25%;
    cursor: pointer;
    padding: 14px 20px;
}

.leadership-tex-p {
    margin-top: -29px;
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--primary);
}

.text-overlay {
    padding: 27px 15px;
    font-size: 50px;
    color: var(--primary);
}

.overlay-sub-header {
    margin-top: -20px;
    font-weight: 600;
}

.leadership-img2 {
    position: relative;
    width: 23%;
}

.image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0 0 10px 10px;
}

.overlay {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    background: radial-gradient( 61.93% 621.02% at 49.82% 50.49%, #d9d9d9 0%, var(--light-purple) 100%);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
    border-radius: 30px 30px 0 0;
}

.text-overlay {
    padding: 27px 15px;
    color: var(--primary);
}

.fa-arrow-right {
    color: var(--primary);
}

.input-group-text {
    background-image: linear-gradient(var(--dark-purple), #4b0082);
    color: white;
    max-width: 140px;
}

.link-icon {
    padding-left: 10px;
}

.over-team-header {
    font-weight: 700;
    font-size: 35px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.sub-heading {
    font-weight: 400;
    font-size: 16px;
    color: #121e31;
}

.cv-header {
    font-weight: 700;
    font-size: 35px;
    line-height: 56px;
    color: var(--secondary);
}

.cv-form-img {
    width: 100%;
    height: auto;
}

.join {
    padding: 0 10px;
}

.join-section-img {
    width: 100%;
    height: auto;
}

.join-summary {
    margin-top: -5px;
}

.mobile-screen {
    display: none;
}

.tablet-screen {
    display: none;
}

.apply-bt a:hover {
    color: white;
}

.white-box .icon-circle {
    width: 34px;
    height: 34px;
    background: linear-gradient(90deg, var(--dark-purple) 0%, #4b0082 100%);
    border-radius: 50%;
    margin-left: 8px;
}

.white-box .icon-circle img {
    width: 20px;
}

.full-blog .send-box:first-child .white-box .icon-circle,
.full-blog .send-box:nth-child(3) .white-box .icon-circle {
    box-shadow: 0 7px 24px #f5a0e980;
}

.full-blog .send-box:nth-child(2) .white-box .icon-circle {
    box-shadow: 0 7px 24px #77b3fc80;
}

.full-blog .send-box:first-child .white-box .icon-circle img {
    margin-top: 4px;
}

/*--------BOLD FONT FOR THE TITTLE/BUTTON-------*/

@keyframes pulsing1 {
    0% {
        box-shadow: 0 0 0 0 #e4d1ff;
    }
    50% {
        box-shadow: 0 0 0 10px rgba(29, 181, 193, 0);
    }
    to {
        box-shadow: 0 0 0 0 rgba(29, 181, 193, 0);
    }
}

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

/*   022. Blog-page CSS
/*----------------------------------------*/

.blog-wrapper .blog-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-card-header {
    background-color: rgba(243, 239, 255, 1);
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    padding: 29px 0px 28px 16px;
    height: 200px;
}

.blog-card-header .head-title {
    font-size: 16px;
    color: rgba(31, 63, 104, 1);
    font-weight: 600;
    line-height: 22px;
}

.blog-card-header .head-title span {
    font-weight: 500;
}

.blog-wrapper .blog-card .blog-card-header .new-badge {
    color: var(--white);
    background: linear-gradient(90deg, var(--dark-purple) 0%, #4b0082 100%);
    font-size: 10px;
    font-weight: 500;
    border-radius: 50px;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 50px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-header .blog-img {
    min-width: 60px;
}

.blog-card-header .vector-dot {
    bottom: 6px;
    left: 6px;
    z-index: 1;
    opacity: 1;
    width: auto !important;
}

.blog-wrapper .blog-card .card-body {
    gap: 12px;
}

.blog-wrapper .blog-card .card-body .text-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--light-blue);
}

.blog-wrapper .blog-card .card-body .text-datetime {
    font-size: 12px;
    color: rgb(31 63 104 / 75%);
}

.blog-wrapper .blog-card .card-body .text-title {
    font-size: 20;
    font-weight: 600;
    color: var(--primary);
}

.blog-wrapper .blog-card .card-body .blog-description {
    font-size: 14px;
    color: rgb(31 63 104 / 75%);
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-wrapper .blog-card .card-body .read-more-btn {
    font-weight: 700;
    font-size: 14px;
    line-height: 30px;
    color: var(--primary);
    margin-left: auto;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-wrapper .blog-card .card-body .read-more-btn i {
    font-size: 18px;
}

/* blog-page css end */

/* blog detail page css start */

.blog-detail-hero {
    background-color: rgba(243, 239, 255, 1);
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    padding: 54px 0px 53px 59px;
    border-radius: 30px;
}

.blog-detail-hero .head-title {
    font-size: 40px;
    color: var(--primary);
    font-weight: 600;
}

.blog-detail-hero .head-title span {
    font-weight: 500;
    line-height: 50px;
}

.blog-detail-hero .blog-img {
    min-width: 60px;
}

.blog-detail-hero .vector-dot {
    bottom: 30px;
    left: 30px;
    z-index: 1;
    opacity: 1;
    width: auto !important;
}

.blog-detail-content {
    margin-top: 30px;
}

.blog-detail-content .header-labels .text-subtitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--light-purple);
}

.blog-detail-content .header-labels .text-datetime {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: rgba(31, 63, 104, 75%);
}

.blog-detail-content .main-question {
    padding: 20px 0 30px;
    border-bottom: 1px solid rgba(31, 63, 104, 10%);
}

.blog-detail-content .hand-point-title {
    margin-bottom: 10px;
    gap: 10px;
}

.blog-detail-content .hand-point-title h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

.blog-detail-content .answer-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: rgba(31, 63, 104, 75%);
}

.blog-detail-content .sub-points-content {
    padding: 32px 0;
    border-bottom: 1px solid rgba(31, 63, 104, 10%);
}

.blog-detail-content .sub-points-content .ordered-list {
    margin-top: 10px;
    margin-left: 40px;
}

.blog-detail-content .ordered-list .ordered-list-item {
    font-size: 16px;
    color: rgba(31, 63, 104, 75%);
    list-style: decimal;
}

.blog-detail-content .sub-points-content.phases-content .ordered-list .ordered-list-item::marker {
    font-weight: 600;
}

.blog-detail-content .ordered-list .ordered-list-item:not(:last-child) {
    margin-bottom: 10px;
}

.blog-detail-content .conclusion-content {
    padding: 32px 0 20px 0;
}

.blog-detail-content .chip-outline-wrapper {
    gap: 10px;
}

.blog-detail-content .chip-outline {
    border: 1px solid rgba(149, 71, 240, 40%);
    color: var(--light-purple);
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
    padding: 5px 16px;
    border-radius: 80px;
}

/* blog detail page css end */

.jobs-sub-header {
    font-size: 24px;
}

.our-team-herosection {
    width: 100%;
    height: auto;
    margin-top: 54px;
}

.leadership-tex-p {
    margin-top: 10px;
}

.our-team-form {
    width: 100%;
    height: auto;
    margin-left: 13px;
}

aside,
.hamburger-menu {
    display: block;
}

.prev-button2,
.next-button2 {
    bottom: -35px !important;
}

.next-button2 {
    left: 54%;
}

.process-box p {
    max-width: 100%;
}

.social-icon {
    display: none;
}

.footer-list h2,
.footer-contact h2 {
    display: inline-block;
}

.footer-items,
.footer-list {
    margin-bottom: 20px;
}

.footer-bottom p,
.footer-bottom p a {
    font-size: 14px;
}

.contact-newsletter-block {
    background-repeat: repeat;
}

.contact-map-wrapper {
    margin-bottom: -100px;
}

.contact-map-wrapper .conatct-map {
    height: 500px;
}

/* contact form */

.contact-form-img {
    position: relative;
    text-align: center;
}

.contact-form-img .image {
    position: absolute;
    bottom: -16px;
}

.image .right-corner {
    position: absolute;
    width: 40px !important;
    height: 40px !important;
    left: 39%;
    z-index: -1;
    top: -27px;
    filter: contrast(1.1);
}

.contact-form-wrapper .contact-form-img .image .main-image {
    width: 270px;
    height: 240px;
}

.contact-form-img .image .main-image:hover {
    cursor: pointer;
}

.contact-form-img .video :hover {
    cursor: pointer;
}

.image .left-corner {
    position: absolute;
    width: 40px !important;
    height: 40px !important;
    left: -4%;
    top: 225px;
    z-index: -1;
    filter: contrast(1.1);
}

/* contact form - video */

.contact-form-img .video {
    left: 85px;
    position: absolute;
    top: 165px;
}

.contact-form-img .video video {
    margin-top: 0;
    object-fit: cover;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
}

.video .bottom-corner {
    position: absolute;
    width: 40px !important;
    height: 40px !important;
    left: 379px;
    top: 31px;
    rotate: 90deg;
    filter: contrast(1.1);
}

.footer-wrapper {
    padding-top: 225px;
}

.technologi-wrapper .technologi-img img {
    margin-bottom: 15px;
    width: 55px;
}

.technologi-wrapper .technologi-img h6 {
    font-size: 16px;
}

/* Read more - Read less */

.line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.line-clamp-four {
    -webkit-line-clamp: 4;
}

.fancybox-container {
    z-index: 999999992 !important;
}

.fancybox-slide--video .fancybox-content {
    background: transparent !important;
}

/* portfolio page css start */

#portfolio-filter-tabs {
    margin-bottom: 50px;
}

#portfolio-filter-tabs .portfolio-tab-list {
    width: fit-content;
    margin: 0 auto;
    background-color: var(--white);
    column-gap: 24px;
    row-gap: 10px;
}

#portfolio-filter-tabs .portfolio-tab-list .nav-link {
    color: var(--text-color);
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
    background-color: transparent;
    padding: 0 20px 6px;
    border-radius: 3px;
    border-bottom: 3px solid transparent;
}

#portfolio-filter-tabs .portfolio-tab-list .nav-link:hover {
    border-bottom: 3px solid var(--light-purple);
    color: var(--light-purple);
    border-radius: 3px;
}

#portfolio-filter-tabs .portfolio-tab-list .nav-link.active {
    border-bottom: 3px solid var(--light-purple);
    color: var(--light-purple);
    border-radius: 3px;
}

.portfolio-item-wrapper {
    display: flex;
    align-items: center;
    gap: 78px;
}

.portfolio-item-wrapper:not(:first-child) {
    margin-top: 120px;
}

.portfolio-item-wrapper:nth-child(even) {
    flex-direction: row-reverse;
}

.portfolio-item-wrapper .portfolio-item-content {
    flex: 1 1 50%;
}

.portfolio-item-wrapper .portfolio-device-wrapper .img {
    position: relative;
    z-index: 1;
}

.portfolio-item-content .portfolio-item-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: var(--light-purple);
    margin-bottom: 6px;
}

.portfolio-item-content .portfolio-item-subtitle {
    font-size: 35px;
    font-weight: bold;
    line-height: 50px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.portfolio-item-content .portfolio-item-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--primary);
}

.point-wrapper-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.point-wrapper-main .point-wrapper {
    gap: 12px;
}

.point-wrapper-main .point-wrapper .point-text {
    gap: 4px;
}

.point-wrapper .icon-wrapper {
    min-width: 40px;
    height: 40px;
    background: #f4e9ff;
}

.point-wrapper .icon-wrapper .check-icon {
    width: 17px;
    height: 20px;
}

.point-wrapper .point-text .point-title {
    font-weight: 500;
    color: #121e31;
}

.point-wrapper .point-text .point-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--primary);
}

.button-wrapper {
    margin-top: 42px;
    gap: 10px;
}

.button-wrapper .btn-portfolio {
    gap: 10px;
}

.button-wrapper .btn-portfolio .right-arrow {
    font-size: 16px;
    color: white;
}

.btn-outline:hover .right-arrow {
    color: var(--white);
    transition: all 0.3s ease;
}

.portfolio-section .tab-content .portfolio-item-img-wrapper {
    background-color: transparent;
}

.portfolio-item-img-wrapper {
    flex: 1 1 50%;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(236, 232, 254, 0.4);
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    padding: 40px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--dark-purple);
    border-radius: 50%;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.btn-outline:hover {
    background: #f4e9ff;
    color: var(--white);
}

.bg-vector {
    z-index: -1;
}

.bg-vector.bg-vector-1 {
    top: 34px;
    left: 0px;
    transform: rotate(180deg);
}

.bg-vector.bg-vector-2 {
    top: 12%;
    right: 0;
}

.bg-vector.bg-vector-3 {
    top: 24%;
    left: 0px;
    transform: rotate(180deg);
}

.bg-vector.bg-vector-4 {
    top: 36%;
    right: 0;
}

.bg-vector.bg-vector-5 {
    top: 48%;
    left: 0px;
    transform: rotate(180deg);
}

.bg-vector.bg-vector-6 {
    top: 60%;
    right: 0;
}

.bg-vector.bg-vector-7 {
    top: 72%;
    left: 0px;
    transform: rotate(180deg);
}

.bg-vector.bg-vector-8 {
    top: 84%;
    right: 0px;
}

.card-description h5 {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary);
}

.mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active .card-description {
    padding: 12px 16px;
    text-align: center;
    background-color: var(--white);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    margin: 0 36px 0;
    position: relative;
    bottom: 26px;
    z-index: 1;
}

.mySwiper .swiper-wrapper .swiper-slide.swiper-slide-next .card-description,
.mySwiper .swiper-wrapper .swiper-slide.swiper-slide-prev .card-description {
    padding: 20px 8px;
}

.mySwiper .swiper-wrapper .swiper-slide.swiper-slide-next .card-description h5,
.mySwiper .swiper-wrapper .swiper-slide.swiper-slide-prev .card-description h5 {
    text-align: left;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background: none !important;
}

/* Home page portfolio section css */

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.mySwiper .swiper-wrapper .swiper-slide .swiper-portfolio-item-img-wrapper {
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(236, 232, 254, 0.4);
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    padding: 30px;
}

.card-description {
    padding: 15px 20px;
    text-align: center;
}

.testimonialsSwiper {
    position: relative;
    height: auto;
}

.testimonialsSwiper .testimoniols-content-item-desktop {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 28px;
    position: relative;
    margin: 16px;
}

.testimonialsSwiper .swiper-slide .test-img img,
.testimonial_slider .test-img img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    object-position: top;
}

@media (min-width: 1200px) {
    .main-menu-title {
        display: none !important;
    }
    .header-area {
        padding: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-img {
        height: 381px;
    }
    .banner-content-row {
        padding: 60px 40px 30px 0;
    }
    .owl-prev,
    .owl-next {
        right: 14px;
    }
}

@media screen and (min-width: 991px) {
    .our-team-herosection {
        width: 100%;
        height: auto;
        margin-top: 0 !important;
    }
    .slide-padding {
        padding: 80px 15px;
    }
    .leadership-tex-p {
        margin-top: 10px;
    }
    .our-team-form {
        width: 100%;
        height: auto;
        margin-left: 13px;
    }
}

@media screen and (max-width: 1700px) {
    .banner-content {
        padding-top: 25px;
    }
}

@media (max-width: 1400px) {
    /* for maintain spacing */
    .founder-box-content {
        position: relative !important;
        top: 0px !important;
    }
    /* contact form - image */
    .contact-form-img .image {
        position: absolute !important;
        bottom: -23px !important;
    }
    .image .right-corner {
        left: 45% !important;
        top: -26px !important;
    }
    .contact-form-wrapper .contact-form-img .image .main-image {
        width: 270px;
        height: 240px;
    }
    .image .left-corner {
        left: -5% !important;
        top: 225px !important;
    }
    /* gallery video size */
    .gallery-video video {
        height: 552px !important;
    }
    .portfolio-item-img-wrapper {
        padding: 0;
    }
}

@media (max-width: 1199px) {
    /* for responsive navbar space */
    #navbar-tab {
        padding-top: 30px;
    }
    /* for maintain spacing */
    .founder-box-content {
        position: relative !important;
        padding-bottom: 45px;
        top: 51px !important;
    }
    .ui-value-wrapper .ui-value-img {
        left: -15px;
    }
    .contact-info-wrapper .contact-info-card .contact-card-details h5 {
        padding: 20px;
        font-size: 20px;
    }
    .testimoniols-wrapper {
        margin-bottom: 0;
    }
    .testimoniols-circle {
        max-width: 400px;
    }
    .testimoniols-circle-main1 {
        height: 470px;
        width: 470px;
    }
    .testimoniols-circle-main3 {
        height: 370px;
        width: 370px;
        left: 13%;
    }
    .testimoniols-circle-main6 {
        height: 270px;
        width: 270px;
        left: 25%;
    }
    .testimoniols-item4 {
        left: 210px;
        top: -30px;
    }
    .testimoniols-item1 {
        top: 90px;
    }
    .testimoniols-item5 {
        top: 244px;
        left: 70px;
    }
    .testimoniols-item3 {
        bottom: 140px;
        left: 350px;
    }
    .testimoniols-item2 {
        right: 123px;
        bottom: 4px;
    }
    .testimoniols-item6 {
        top: 80px;
        right: -66px;
    }
    .testimonial-circle-img {
        transform: translate(-25%, -69%);
    }
    .testimoniols-circle-main5 {
        right: 25px;
    }
    .testimoniols-circle-main4 {
        left: 30px;
    }
    .testimoniols-circle-main7 {
        top: 70px;
    }
    .testimoniols-circle-main9 {
        left: 21px;
    }
    .testimoniols-circle-main8 {
        bottom: -1px;
    }
    .testimoniols-circle-main2 {
        left: 270px;
    }
    .achievement-circle {
        height: 450px;
        width: 450px;
    }
    .contact-btn {
        padding: 10px 20px;
    }
    .contact-newsletter-block {
        gap: 20px;
        padding: 50px 30px;
    }
    /* contact form - image */
    .contact-form-img .image {
        position: absolute !important;
        bottom: -16px !important;
    }
    .image .right-corner {
        left: 50% !important;
        top: -25px !important;
    }
    .contact-form-wrapper .contact-form-img .image .main-image {
        width: 250px !important;
        height: 220px !important;
    }
    .image .left-corner {
        left: -5% !important;
        top: 205px !important;
    }
    .contact-form-img .video video {
        margin-top: 0;
        object-fit: cover;
        position: absolute !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    .become-partner-video {
        position: relative;
        left: 257px !important;
        top: -74px !important;
        width: 285px !important;
        height: 255px !important;
    }
    /* contact form - video */
    .contact-form-img .video {
        left: 48px !important;
        top: 158px !important;
    }
    .video .bottom-corner {
        left: 379px !important;
        top: 32px !important;
    }
    .swiper-slide .portfolio-item-img-wrapper {
        height: 320px;
    }
    .card-description h5 {
        font-weight: 500;
        font-size: 16px;
    }
    .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active .card-description {
        padding: 12px 12px;
        margin: 0 26px 0;
        bottom: 24px;
    }
}

@media screen and (max-width: 1024px) {
    /* for responsive navbar space */
    #navbar-tab {
        padding-top: 30px;
    }
    .social-icon {
        left: 5px;
        top: 25%;
    }
    .hero-text h2,
    .hero-text h6 {
        font-size: 35px;
        width: auto;
    }
    .owl-carousel-our-team .owl-nav {
        margin-top: 30px;
    }
    .owl-carousel-our-team .owl-prev,
    .owl-carousel-our-team .owl-next {
        position: relative;
    }
    .owl-carousel-our-team .owl-next {
        right: -5px;
    }
    .owl-carousel-our-team .owl-prev {
        left: -5px;
    }
    .our-team-herosection {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
    .leadership-tex-p {
        margin-top: 10px;
    }
    .leadership-img2 {
        width: 40%;
    }
    .leadership-img1 {
        width: 40%;
    }
    .our-team-form {
        width: 100%;
        height: auto;
        margin-left: 13px;
    }
    .career-hero {
        text-align: center;
    }
    .career-hero-img {
        width: 100%;
    }
    .join-section-img {
        width: 100%;
        height: auto;
    }
    .apply-bt {
        padding: 8px 10px;
    }
    .apply-bt-wordpress {
        padding: 8px 10px;
        border-radius: 30px;
        color: white;
        background-color: var(--text-color);
        font-size: 10px;
        margin-left: 70px;
        margin-top: 8px;
        font-weight: 200;
    }
    .apply-bt-beack-end {
        padding: 8px 10px;
        border-radius: 30px;
        color: white;
        background-color: var(--text-color);
        font-size: 10px;
        margin-left: 30px;
        margin-top: -9px;
        font-weight: 200;
    }
    .jobs-sub-header {
        font-size: 18px;
    }
    .mobile-screen {
        display: block;
    }
    .desk-scrren {
        display: none;
    }
    .contact-btn {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 991px) {
    aside,
    .hamburger-menu {
        display: block;
    }
    .hero-slider {
        height: 950px;
    }
    .padding {
        padding: 80px 20px;
    }
    .padding-t {
        padding-top: 80px;
    }
    .padding-b {
        padding-bottom: 80px;
    }
    .counter-box::before {
        right: 35px;
    }
    .counter-box::after {
        left: 0;
    }
    .social-icon {
        display: none;
    }
    .main-menu {
        display: none !important;
    }
    .hero-text h6 {
        font-size: 30px;
    }
    .hero-text h2 {
        font-size: 60px;
    }
    .hero-text {
        text-align: center;
    }
    .hero-text p {
        margin: 0 auto 35px;
    }
    .hero-img {
        margin-top: 20px;
    }
    .about-block-text {
        text-align: center;
        margin-bottom: 30px;
    }
    .about-block-text h3 {
        font-size: 40px;
    }
    .about-block-text p {
        margin: auto;
    }
    .achievement-circle {
        margin: auto;
    }
    .cardmargin {
        margin: 0 0 80px 0;
    }
    .card-block {
        margin: 0 auto 32px;
        box-shadow: 0 0 47px rgb(213 213 213 / 70%);
        padding: 30px;
    }
    .card-block-content p {
        min-height: 108px;
    }
    .portfolio-box {
        margin-bottom: 30px;
    }
    .banner-content-row {
        padding: 40px;
        padding-top: 0;
    }
    .process-box::before {
        display: none;
    }
    .process-box {
        margin-bottom: 30px;
    }
    .counter-box {
        margin-bottom: 30px;
    }
    .features-text p {
        margin: 0;
    }
    .features-text {
        margin-left: 140px;
    }
    .career-hero {
        padding: 0;
    }
    .career-hero-img {
        width: 70%;
    }
    .label-text {
        display: none;
    }
    .features-img {
        position: absolute;
        top: 0;
    }
    .test-block {
        display: none;
    }
    .test-none {
        display: flex !important;
    }
    .contact-newsletter-block {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        padding: 45px;
    }
    .contact-newsletter-text h2 {
        font-size: 29px;
        margin-bottom: 15px;
    }
    .aboutus-wrapper {
        padding-bottom: 80px !important;
    }
    .process-bg {
        display: none;
    }
    .about-bg,
    .about-bg1 {
        display: none;
    }
    .next-button {
        position: absolute;
        bottom: -106px;
        left: 55%;
    }
    .prev-button {
        position: absolute;
        bottom: -106px;
        left: 40%;
    }
    .all_services-content {
        margin: 0 -3px;
    }
    .flex-order {
        order: 99;
    }
    .all_services-block_wrapper {
        top: 148px;
    }
    .achievement-services-logo {
        text-align: center;
        margin-bottom: 25px;
    }
    .achievement-services-margin {
        margin-bottom: 0;
    }
    .achievement-services-card {
        margin-bottom: 30px;
    }
    .achievement-services-wrapper {
        margin-bottom: -135px;
    }
    .achievement-services-logo {
        text-align: center;
        margin-bottom: 30px;
    }
    .all_services_wrapper:not(:last-child) {
        margin-bottom: 55px;
    }
    .all_services_position {
        width: 100%;
        padding: 18px 0;
        margin-bottom: 25px;
    }
    .all_services_position_right {
        margin-left: 0;
        width: 100%;
        padding: 16px 0;
        margin-bottom: 30px;
    }
    .aboutus-content {
        margin: auto;
    }
    .about-content-image {
        text-align: center;
    }
    .aboutus-content-list {
        margin: 0 auto 20px;
        max-width: 600px;
    }
    .goal-wrapper {
        margin-bottom: 70px;
    }
    .aboutus-wrapper .row .goal-wrapper-main:last-child .goal-wrapper {
        margin-bottom: 0;
    }
    .core-value-margin {
        margin-top: 0;
    }
    .core-value-card {
        margin-bottom: 30px;
    }
    .clients-wrapper {
        padding-bottom: 200px !important;
    }
    .portfolio-dts-wrapper {
        padding-bottom: 60px !important;
    }
    .team-content h3 {
        font-size: 22px;
    }
    .founder-box-content {
        top: 0px !important;
        padding-bottom: 0px;
    }
    #portfolio-filter .portfolio-filter-menu .btn {
        margin-bottom: 25px;
        margin-bottom: 10px;
        padding: 8px 25px;
        font-size: 16px;
    }
    #portfolio-filter {
        margin-bottom: 10px;
    }
    .shape1 {
        display: none;
    }
    .footer-list {
        margin-bottom: 25px;
    }
    .dropdown-menu-item-main,
    .dropdown-menu-item-main2 {
        background: unset;
        padding: 0;
        width: 100%;
        position: unset;
        padding-left: 15px;
    }
    #navbar-tab {
        padding-top: 30px;
    }
    .contact-info-wrapper .section-title h2 {
        font-size: 30px;
    }
    .ui-value-wrapper .ui-value-left-card {
        position: relative;
        left: 0px;
    }
    .ui-value-wrapper .ui-value-right-card {
        position: relative;
        right: 0px;
    }
    .ui-value-wrapper .ui-value-img {
        position: relative;
        top: unset;
        left: 0px;
        text-align: center;
        margin-top: 30px;
        margin-bottom: 50px;
    }
    .our-team-herosection {
        width: 100%;
        height: auto;
        margin-top: 0 !important;
    }
    .leadership-tex-p {
        margin-top: 10px;
    }
    .our-team-form {
        width: 100%;
        height: auto;
        margin-left: 13px;
    }
    .join-section-img {
        width: 100%;
        height: auto;
    }
    .apply-bt-wordpress {
        padding: 8px 10px;
        border-radius: 30px;
        color: white;
        background-color: var(--text-color);
        font-size: 10px;
        margin-left: 70px;
        margin-top: 8px;
        font-weight: 200;
    }
    .apply-bt-beack-end {
        padding: 8px 10px;
        border-radius: 30px;
        color: white;
        background-color: var(--text-color);
        font-size: 10px;
        margin-left: 30px;
        margin-top: -9px;
        font-weight: 200;
    }
    .jobs-sub-header {
        font-size: 18px;
    }
    .mobile-screen {
        display: block;
    }
    .desk-scrren {
        display: none;
    }
    .achievement-description .achievement-space {
        row-gap: 30px;
    }
    .our-team-main .owl-nav {
        display: none;
    }
    .contact-map-wrapper {
        margin-bottom: -148px;
    }
    /* contact form - image */
    .contact-form-img .image {
        position: absolute !important;
        bottom: -16px !important;
        top: 0px;
        left: 0px;
    }
    .contact-form-wrapper .contact-form-img img {
        width: 370px;
    }
    .image .right-corner {
        left: 60% !important;
        top: -25px !important;
    }
    .contact-form-wrapper .contact-form-img .image .main-image {
        position: absolute;
        width: 310px !important;
        height: 280px !important;
        left: 132px;
    }
    .image .left-corner {
        left: 15% !important;
        top: 265px !important;
    }
    .contact-form-img .video video {
        margin-top: 0;
        object-fit: cover;
        position: absolute !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    .become-partner-video {
        position: relative;
        left: 257px !important;
        top: -74px !important;
        width: 310px !important;
        height: 280px !important;
    }
    /* contact form - video */
    .contact-form-img .video {
        position: absolute !important;
        left: 186px !important;
        bottom: -170px;
    }
    .video .bottom-corner {
        left: 391px !important;
        top: 288px !important;
    }
    /* gallery-video play/pause icons (our-team page)*/
    .play-pause-container-area {
        top: 190px !important;
    }
    /* gallery video size */
    .gallery-video video {
        height: 524px !important;
    }
    /* footer - address */
    .footer-contact ul li span {
        width: 306px;
    }
    #portfolio-filter-tabs {
        margin-bottom: 40px;
    }
    .aboutus-content .abouttext {
        margin-bottom: 24px;
    }
    .portfolio-item-wrapper {
        flex-direction: column !important;
        gap: 40px;
    }
    .portfolio-item-wrapper .portfolio-item-content {
        flex: 1 1 100%;
    }
    .portfolio-item-content .portfolio-item-subtitle {
        font-size: 28px;
        line-height: 40px;
    }
    .portfolio-item-img-wrapper {
        flex: 1 1 100%;
        padding: 40px;
    }
    .vector-circle-big {
        top: -10%;
        right: 11%;
    }
    .vector-circle-small {
        top: 168px;
        left: 25px;
    }
    .bg-vector {
        display: none;
    }
    .swiper {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .swiper-slide .portfolio-item-img-wrapper {
        height: 282px;
    }
    .blog-detail-hero .head-title {
        font-size: 28px;
    }
    .blog-detail-hero .vector-dot {
        width: 70px !important;
    }
}

@media screen and (max-width: 767px) {
    .hero-img {
        height: auto;
    }
    .cv-hero-img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
    .cv-form-img {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
    .join-section-img {
        width: 100%;
        height: auto;
    }
    .apply-bt {
        display: none;
    }
    .apply-bt-wordpress {
        padding: 8px 10px;
        border-radius: 30px;
        color: white;
        background-color: var(--text-color);
        font-size: 10px;
        margin-left: 70px;
        margin-top: -39px;
        font-weight: 200;
    }
    .apply-bt-beack-end {
        padding: 8px 10px;
        border-radius: 30px;
        color: white;
        background-color: var(--text-color);
        font-size: 10px;
        margin-left: 30px;
        margin-top: -9px;
        font-weight: 200;
    }
    .jobs-sub-header {
        font-size: 18px;
    }
    .mobile-screen {
        display: block;
    }
    .desk-scrren {
        display: none;
    }
    .normal-screen {
        display: none;
    }
    .tablet-screen {
        display: block;
    }
    .achievement-circle {
        display: none;
    }
    .contact-newsletter {
        margin-bottom: -165px;
    }
    .about_slider .slick-slide {
        margin: 0 4px;
    }
    .desk-scrren {
        display: block;
    }
    .mobile-screen {
        display: none;
    }
    .join-section-img {
        width: 365px;
        height: auto;
    }
    .apply-bt {
        padding: 8px 10px;
        border-radius: 30px;
        width: max-content;
        color: white;
        background-color: var(--text-color);
        font-size: 18px;
        margin-left: 534px;
        margin-top: 0px;
        font-weight: 600;
    }
    .apply-bt-wordpress {
        padding: 8px 10px;
        border-radius: 30px;
        color: white;
        background-color: var(--text-color);
        font-size: 18px;
        margin-left: 389px;
        margin-top: 8px;
        font-weight: 200;
    }
    .apply-bt-beack-end {
        padding: 8px 10px;
        border-radius: 30px;
        color: white;
        background-color: var(--text-color);
        font-size: 18px;
        margin-left: 536px;
        margin-top: -42px;
        font-weight: 200;
    }
    .clients-wrapper {
        padding-bottom: 100px !important;
    }
    .all_services-content {
        margin: 0 20px;
        position: unset;
    }
    .All_services_list ul li {
        margin-right: 0;
    }
    /* contact form - image */
    .contact-form-img .image {
        position: absolute !important;
        bottom: -16px !important;
        top: 0px;
        left: 0px;
    }
    .image .right-corner {
        left: 53% !important;
        top: -25px !important;
    }
    .contact-form-wrapper .contact-form-img .image .main-image {
        position: absolute;
        width: 280px !important;
        height: 250px !important;
        left: 15px;
    }
    .image .left-corner {
        left: -2% !important;
        top: 236px !important;
    }
    .contact-info-wrapper .contact-info-card .contact-card-img {
        margin: -70px auto 10px;
    }
    .contact-info-wrapper .contact-info-card .contact-card-details h5 {
        margin-bottom: 0;
    }
    .contact-info-wrapper .contact-cards-wrapper {
        row-gap: 44px;
    }
    .contact-form-img .video video {
        margin-top: 0;
        object-fit: cover;
        position: absolute !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    .become-partner-video {
        position: relative;
        left: 257px !important;
        top: -74px !important;
        width: 280px !important;
        height: 250px !important;
    }
    /* contact form - video */
    .contact-form-img .video {
        position: absolute !important;
        left: 98px !important;
        bottom: -168px;
    }
    .video .bottom-corner {
        left: 375px !important;
        top: 272px !important;
    }
    /* gallery-video play/pause icons (our-team page)*/
    .play-pause-container-area {
        top: 190px !important;
    }
    /* gallery video size */
    .gallery-video video {
        height: 420px !important;
    }
    .portfolio-section {
        padding-left: 10px;
        padding-right: 10px;
    }
    .portfolio-item-wrapper:not(:first-child) {
        margin-top: 60px;
    }
    .portfolio-item-content .portfolio-item-subtitle {
        font-size: 24px;
        line-height: 34px;
    }
    .portfolio-item-img-wrapper {
        padding: 0;
    }
    .swiper-slide .portfolio-item-img-wrapper {
        height: 220px;
    }
    .card-description h5 {
        font-size: 14px;
    }
    .card-description p {
        font-size: 14px;
    }
}

@media screen and (max-width: 576px) {
    .career-hero {
        display: none;
    }
    /* for spacing issue */
    .p-b {
        padding-bottom: 35px;
    }
    .join-section-img {
        width: 100%;
        height: auto;
    }
    .apply-bt {
        display: none;
    }
    .apply-bt-wordpress {
        display: none;
    }
    .apply-bt-beack-end {
        display: none;
    }
    .jobs-sub-header {
        font-size: 18px;
    }
    .job-accordian-img {
        width: 24px;
        vertical-align: baseline;
    }
    .mobile-screen {
        display: block;
    }
    .desk-scrren {
        display: none;
    }
    .our-team-herosection {
        width: 100%;
        height: auto;
        margin-top: 54px;
    }
    .leadership-tex-p {
        margin-top: 10px;
    }
    .leadership-img2 {
        width: 40%;
    }
    .leadership-img1 {
        width: 40%;
    }
    .our-team-form {
        width: 100%;
        height: auto;
        margin-left: 13px;
    }
    .over-team-header {
        font-size: 28px;
    }
    aside,
    .hamburger-menu {
        display: block;
    }
    .section-title {
        margin: 0 auto 30px;
    }
    .social-icon {
        display: none;
    }
    .hero-slider {
        height: calc(100vh - 92px);
        align-items: start;
        padding-top: 40px;
    }
    .hero-text h2 {
        font-size: 35px;
    }
    .hero-text h6 {
        font-size: 20px;
    }
    .hero-text p {
        font-size: 16px;
        margin: 0 auto 16px;
    }
    .slide-padding {
        padding: 0px 15px;
    }
    .about-block-text h3 {
        font-size: 27px;
    }
    .card-block {
        margin: 0 auto 25px;
    }
    .card-block-content h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .section-title h2 {
        font-size: 30px;
    }
    .shape1,
    .shape2 {
        display: none;
    }
    .portfolio-text {
        text-align: center;
    }
    .achievement-description h2 {
        font-size: 22px;
    }
    .features-img {
        width: 70px;
        height: 70px;
        line-height: 65px;
    }
    .features-img img {
        width: 30px;
        height: auto;
    }
    .features-text {
        margin-left: 80px;
    }
    .features-text h2 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .key-features-box {
        margin-bottom: 20px;
        position: relative;
    }
    .features-text p {
        font-size: 14px;
        line-height: 23px;
    }
    .features-img:after {
        content: "";
        position: absolute;
        top: 69px;
        left: 33px;
        width: -1px;
        height: 170%;
        border: 1px solid var(--light-blue);
    }
    .contact-newsletter-text h2 {
        font-size: 20px;
        margin-bottom: 0;
    }
    .contact-newsletter-block {
        padding: 25px;
    }
    .card-block {
        box-shadow: none;
        padding: 16px;
        border: 1px solid #8f8f8f;
    }
    .card-block:hover {
        transform: none;
    }
    .hero-img img {
        width: 100% !important;
        margin: auto;
    }
    .next-button {
        position: absolute;
        bottom: -106px;
        left: unset;
        right: calc(50% - 60px);
    }
    .prev-button {
        position: absolute;
        bottom: -106px;
        left: calc(50% - 50px);
    }
    .banner-content {
        padding-top: 0;
    }
    .all_services-content h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .bredcumb-wrapper {
        padding: 40px 0;
    }
    .bredcumb-text h2 {
        font-size: 30px;
    }
    .achievement-services-margin {
        margin-bottom: 0;
    }
    .achievement-services-card {
        margin-bottom: 30px;
    }
    .achievement-services-wrapper {
        margin-bottom: -135px;
    }
    .contact-newsletter {
        margin-bottom: -130px;
    }
    .all_services-content {
        padding: 15px;
        margin: 0;
    }
    .all_services_wrapper:not(:last-child) {
        margin-bottom: 24px;
    }
    .all_services_position,
    .all_services_position_right {
        padding: 0;
    }
    .all_services_position,
    .all_services_position_right {
        border: unset;
        background-color: transparent;
    }
    .all_services_position,
    .all_services_position_right {
        height: 100%;
        min-height: 100%;
    }
    .aboutus-content span {
        font-size: 28px;
    }
    .aboutus-content h2 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    .about-content-image img {
        width: 100%;
        height: auto;
    }
    .aboutus-content-img {
        width: 60px;
        margin-bottom: 20px;
    }
    .aboutus-content-text h2 {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 18px;
    }
    .aboutus-content-list {
        flex-wrap: wrap;
    }
    .aboutus-content-text {
        margin-left: 0;
    }
    .goal-wrapper h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .goal-wrapper {
        margin-bottom: 60px;
    }
    #portfolio-filter {
        margin-bottom: 10px;
    }
    .service-text h2 {
        font-size: 20px;
    }
    .contact-info-wrapper .contact-info-card .contact-card-details h5 {
        font-size: 18px;
    }
    .contact-info-wrapper .contact-info-card .contact-card-details a {
        font-size: 16px;
    }
    .contact-info-wrapper .section-title h2 {
        font-size: 25px;
    }
    .contact-form-wrapper .contact-left h5 {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 25px;
    }
    .contact-form-wrapper .contact-left h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .service-card {
        padding: 16px;
    }
    .accordion-header .btn {
        position: unset;
        margin: 0 20px;
    }
    /* contact form - image */
    .contact-form-img .image {
        position: absolute !important;
        bottom: -16px !important;
        top: 0px;
        left: 0px;
    }
    .contact-form-wrapper .contact-form-img img {
        width: 100%;
        text-align: center;
    }
    .image .right-corner {
        left: 58% !important;
        top: -25px !important;
    }
    .contact-form-wrapper .contact-form-img .image .main-image {
        position: absolute;
        width: 250px !important;
        height: 230px !important;
        left: 12px;
    }
    .image .left-corner {
        left: -3% !important;
        top: 216px !important;
    }
    .contact-form-img .video video {
        margin-top: 0;
        object-fit: cover;
        position: absolute !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    .become-partner-video {
        position: relative;
        left: 257px !important;
        top: -74px !important;
        width: 250px !important;
        height: 230px !important;
    }
    /* contact form - video */
    .contact-form-img .video {
        position: absolute !important;
        left: 54px !important;
        bottom: -110px;
    }
    .video .bottom-corner {
        left: 361px !important;
        top: 235px !important;
    }
    .cv-header {
        font-size: 28px;
    }
    #portfolio-filter-tabs .portfolio-tab-list {
        flex-wrap: wrap;
    }
    #portfolio-filter-tabs .portfolio-tab-list .nav-link {
        font-size: 16px;
    }
    .point-wrapper-main {
        gap: 20px;
    }
    .point-wrapper .icon-wrapper {
        min-width: 40px;
        height: 40px;
    }
    .point-wrapper .icon-wrapper .check-icon {
        width: 18px;
        height: 22px;
    }
    .swiper {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .swiper-slide {
        width: 250px;
        height: auto;
    }
    .swiper-slide .portfolio-item-img-wrapper {
        height: 250px;
    }
    .blog-detail-hero {
        padding: 30px 0px 40px 20px;
        border-radius: 24px;
    }
    .blog-detail-hero .head-title {
        font-size: 16px;
    }
    .blog-detail-hero .head-title span {
        line-height: 28px;
    }
    .blog-detail-hero .vector-dot {
        bottom: 16px;
        left: 16px;
    }
    .blog-detail-content {
        margin-top: 16px;
    }
    .blog-detail-content .hand-point-title h4 {
        font-size: 20px;
    }
    .blog-detail-content .main-question {
        padding: 10px 0 20px;
    }
    .blog-detail-content .sub-points-content {
        padding: 16px 0;
    }
    .blog-detail-content .conclusion-content {
        padding: 16px 0 20px 0;
    }
}

@media screen and (max-width: 480px) {
    .section-title h2 {
        font-size: 24px;
    }
    .section-title p {
        font-size: 14px;
    }
    .swiper-slide {
        width: 220px;
    }
    .card-block-content h2 {
        font-size: 14px;
    }
    .card-block-content p {
        font-size: 13px;
    }
}

@media screen and (max-width: 375px) {
    .our-team-herosection {
        width: 100%;
        height: auto;
        margin-left: 13px;
    }
    .leadership-tex-p {
        margin-top: 10px;
    }
    .leadership-img2 {
        width: 40%;
    }
    .leadership-img1 {
        width: 40%;
    }
    .our-team-form {
        width: 100%;
        height: auto;
    }
    /* cv page css */
    .cv-hero-img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
    .cv-form-img {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
    .join-section-img {
        width: 100%;
        height: auto;
    }
    .apply-bt {
        padding: 8px 10px;
        border-radius: 30px;
        color: white;
        background-color: var(--text-color);
        font-size: 10px;
        margin-left: 20px;
        margin-top: 8px;
        font-weight: 200;
    }
    .apply-bt-wordpress {
        padding: 8px 10px;
        border-radius: 30px;
        color: white;
        background-color: var(--text-color);
        font-size: 10px;
        margin-left: 70px;
        margin-top: 8px;
        font-weight: 200;
    }
    .apply-bt-beack-end {
        padding: 8px 10px;
        border-radius: 30px;
        color: white;
        background-color: var(--text-color);
        font-size: 10px;
        margin-left: 30px;
        margin-top: -9px;
        font-weight: 200;
    }
    .jobs-sub-header {
        font-size: 18px;
    }
    .mobile-screen {
        display: block;
    }
    .desk-scrren {
        display: none;
    }
    /* contact form - image */
    .contact-form-img .image {
        position: absolute !important;
        bottom: -16px !important;
        top: 0px;
        left: 0px;
    }
    .image .right-corner {
        left: 56% !important;
        top: -25px !important;
    }
    .contact-form-wrapper .contact-form-img .image .main-image {
        position: absolute;
        width: 250px !important;
        height: 230px !important;
        left: 45px;
    }
    .image .left-corner {
        left: 3% !important;
        top: 216px !important;
    }
    .contact-form-img .video video {
        margin-top: 0;
        object-fit: cover;
        position: absolute !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    .become-partner-video {
        position: relative;
        left: 257px !important;
        top: -74px !important;
        width: 250px !important;
        height: 230px !important;
    }
    .contact-form-img .video {
        position: absolute !important;
        left: 98px !important;
        bottom: -131px;
    }
    .video .bottom-corner {
        left: 362px !important;
        top: 244px !important;
    }
}

@media (max-width: 577px) and (min-width: 462px) {
    .contact-form-img .image {
        position: relative !important;
        bottom: -16px !important;
        top: 0px;
        left: 20px;
        width: 220px;
        height: 200px;
    }
    .image .right-corner {
        position: absolute !important;
        left: 208px !important;
        top: -18px !important;
        width: 30px !important;
        height: 30px !important;
    }
    .contact-form-wrapper .contact-form-img .image .main-image {
        position: absolute;
        width: 100% !important;
        height: 100% !important;
        left: 0;
    }
    .image .left-corner {
        position: absolute !important;
        left: -19px !important;
        top: 189px !important;
        width: 30px !important;
        height: 30px !important;
    }
    .contact-form-img .video video {
        margin-top: 0;
        object-fit: cover;
        position: absolute !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    .become-partner-video {
        position: relative;
        left: 171px !important;
        top: -74px !important;
        width: 220px;
        height: 200px;
    }
    .contact-form-img .video {
        position: absolute !important;
        left: 119px !important;
        bottom: -139px;
    }
    .video .bottom-corner {
        left: 280px !important;
        top: 215px !important;
        width: 30px !important;
        height: 30px !important;
    }
}

@media (max-width: 461px) and (min-width: 375px) {
    .contact-form-img .image {
        position: absolute !important;
        bottom: -16px !important;
        top: 0px;
        left: 71px;
        width: 220px;
        height: 200px;
    }
    .image .right-corner {
        position: absolute !important;
        left: 208px !important;
        top: -18px !important;
        width: 30px !important;
        height: 30px !important;
    }
    .contact-form-wrapper .contact-form-img .image .main-image {
        position: absolute;
        width: 100% !important;
        height: 100% !important;
        left: 0;
    }
    .image .left-corner {
        position: absolute !important;
        left: -19px !important;
        top: 189px !important;
        width: 30px !important;
        height: 30px !important;
    }
    .contact-form-img .video video {
        margin-top: 0;
        object-fit: cover;
        position: absolute !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    .become-partner-video {
        position: relative;
        left: 171px !important;
        top: -74px !important;
        width: 240px !important;
        height: 220px !important;
        border: 10px solid var(--white) !important;
    }
    .contact-form-img .video {
        position: absolute !important;
        left: 13px !important;
        bottom: -218px;
    }
    .video .bottom-corner {
        left: 275px !important;
        top: 290px !important;
        width: 30px !important;
        height: 30px !important;
    }
    /* for send message */
    .send-message {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 374px) and (min-width: 320px) {
    .contact-form-img .image {
        left: 31px;
        width: 220px;
        height: 200px;
    }
    .image .right-corner {
        position: absolute !important;
        left: 208px !important;
        top: -18px !important;
        width: 30px !important;
        height: 30px !important;
    }
    .contact-form-wrapper .contact-form-img .image .main-image {
        width: 100% !important;
        height: 100% !important;
        left: 0;
    }
    .image .left-corner {
        position: absolute !important;
        left: -19px !important;
        top: 189px !important;
        width: 30px !important;
        height: 30px !important;
    }
    .contact-form-img .video video {
        width: 100% !important;
        height: 100% !important;
    }
    .become-partner-video {
        left: 171px !important;
        width: 240px !important;
        height: 220px !important;
        border: 10px solid var(--white) !important;
    }
    .contact-form-img .video {
        left: -29px !important;
        bottom: -179px;
    }
    .video .bottom-corner {
        left: 275px !important;
        top: 279px !important;
        width: 30px !important;
        height: 30px !important;
    }
    /* for send message */
    .send-message {
        display: flex;
        justify-content: center;
    }
    /* gallery-video play/pause icons (our-team page)*/
    .play-pause-container-area {
        top: 190px !important;
        left: 60px !important;
    }
}

@media screen and (min-width: 320px) and (max-width: 400px) {
    .swiper-slide {
        width: 200px;
    }
    .card-description {
        padding: 10px;
    }
    .card-description p {
        font-size: 12px;
        margin-top: 2px;
    }
}

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

/*  023. Pricing page CSS
/*----------------------------------------*/

.pricing-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 43px 30px;
}

.pricing-card h3 {
    font-size: 24px;
    color: var(--primary);
    font-weight: 600;
}

.popular-pill {
    border: 1px solid var(--light-purple);
    color: var(--light-purple);
    padding: 3px 21px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
}

.pricing-card p {
    font-size: 18px;
    color: rgba(31, 63, 104, 0.75);
    margin-top: 16px;
    height: 81px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.pricing-card h2 {
    font-size: 40px;
    color: var(--light-purple);
    margin-top: 30px;
}

.choose-plan-btn {
    margin-top: 40px;
}

.pricing-cards-section {
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.pricing-header {
    height: 35px;
}

@media screen and (min-width: 576px) {
    .pricing-cards-section {
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (min-width: 768px) {
    .pricing-cards-section {
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (min-width: 992px) {
    .pricing-cards-section {
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (min-width: 1200px) {
    .pricing-cards-section {
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .pricing-cards-table .table th,
    .pricing-cards-table .table td {
        width: 20%;
    }
}

.pricing-cards-table {
    margin-bottom: 80px;
}

.pricing-cards-table .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-cards-table .table {
    margin-bottom: 0;
}

.pricing-table {
    border: 1px solid rgba(31, 63, 104, 0.1);
    border-radius: 12px;
}

.pricing-cards-table .table th,
.pricing-cards-table .table td {
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid rgba(31, 63, 104, 0.1);
}

.pricing-cards-table .table th:last-child,
.pricing-cards-table .table td:last-child {
    border-right: none;
}

.pricing-cards-table .table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-cards-table .table thead th:first-child {
    border-top-left-radius: 12px;
}

.pricing-cards-table .table thead th:last-child {
    border-top-right-radius: 12px;
}

.pricing-cards-table .table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.pricing-cards-table .table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.pricing-cards-table table thead th {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    padding: 30px 20px;
    text-align: center;
}

.pricing-cards-table table thead th:first-child {
    text-align: left;
    /* position: sticky;
    left: 0;
    background: #fcf9fe; */
}

.pricing-cards-table table thead {
    background-color: hwb(268 28% 6% / 0.03);
}

.pricing-cards-table table {
    border-color: rgba(31, 63, 104, 0.1) !important;
}

.pricing-cards-table table tbody {
    border-top: rgba(31, 63, 104, 0.1) !important;
}

.pricing-cards-table table tbody tr td {
    padding: 20px;
    font-size: 16px;
    color: var(--primary);
    text-align: center;
    vertical-align: middle;
}

.pricing-cards-table table tbody tr td:first-child {
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(31, 63, 104, 0.75);
    text-align: left;
    /* position: sticky;
    left: 0;
    background: var(--white); */
}