.loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: var(--white);
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
}

.loader span {
    display: block;
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid var(--primary);
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

body.loaded .loader {
    display: none;
}

body {
    background-color: var(--white);
    color: var(--black);
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: .6rem 0;
    background-color: var(--white);
    transition: all .2s;
}

.shadow {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

nav {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
    width: 150px;
}

.logo img {
    width: 100%;
    padding: .5rem 0;
}

.navMenu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.7rem;
}

.navMenu li a {
    color: #666666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all .2s;
    position: relative;
}
.navMenu li a::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    transition: all .2s;
}
.navMenu li:hover a {
    color: var(--primary);
}
.navMenu li a:hover::before{
    width: 100%;
}
.navMenu .active a {
    color: var(--primary);
    font-weight: 500;
}
.navMenu .active a::before{
    background-color: var(--primary);
}
.contactBtn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 40px;
    border-radius: 60px;
    position: relative;
    cursor: pointer;
}

.contactBtn::after {
    content: '';
    position: absolute;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid var(--primary);
    bottom: -1px;
    right: 2px;
    transform: rotate(24deg);
}

.vibrat {
    animation: shake .5s infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}


.whatsappIcon {
    position: fixed;
    right: 4%;
    bottom: 40px;
    background-color: #4CAF50;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 7;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.whatsappIcon img {
    width: 30px;
}

#goUpBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #696969;
    color: #fff;
    border: none;
    border-radius: 36px;
    width: 130px;
    height: 45px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 7;
    transition: all .2s;
}

#goUpBtn img {
    height: 12px;
}

#goUpBtn:hover {
    background-color: var(--primary);
}

.mainImgText {
    position: absolute;
    background-color:#E9FFDE;
    left: 3%;
    bottom: 15%;
    font-size: 16px;
    color: var(--white);
    padding: 1.5rem 3rem 1.5rem 1.5rem;
    border-radius: 6px;
    color: var(--black);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    font-weight: 300;
}

.mainImgText img {
    width: 20px;
    margin-right: 7px;
    padding: 6px;
}

#imageBorder {
    animation: rotate 35s infinite linear;
    transform-box: fill-box;
    transform-origin: center;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn {
    font-size: 15px;
    border-radius: 60px;
    cursor: pointer;
    padding: 20px 60px;
    font-weight: 400;
    text-transform: uppercase;
}

.primaryBtn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

.outlineBtn {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.outlineBtn:hover {
    color: var(--white);
}

.outlineBtn::before {
    position: absolute;
    content: '';
    background-color: var(--primary);
    width: 110%;
    height: 0;
    left: -10px;
    bottom: 0;
    z-index: -1;
    transition: all .4s;
}

.outlineBtn:hover::before {
    height: 100%;
}

.textBtn {
    font-size: 16px;
    font-weight: 500;
    border: none;
    background-color: transparent;
    color: var(--primary);
    cursor: pointer;
}

.subHeading {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.card {
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all .2s;
}

.card:hover {
    box-shadow: 0px 2px 44.79999923706055px 0px rgba(0, 0, 0, 0.15);
}

.card .icon {
    background-color: var(--primary);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 18px;
}

.card .icon img {
    width: 100%;
    height: 100%;
}

.card span {
    font-size: 25px;
    font-weight: 600;
    margin-left: 12px;
}

.card ul {
    list-style: none;
    margin-top: 2rem;
}

.card ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.card ul li::before {
    position: absolute;
    content: '';
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.card::before,
.card::after {
    position: absolute;
    content: '';
    width: 150px;
    height: 0;
    border-radius: 50%;
    transition: all .5s;
    z-index: -1;
}

.card::before {
    top: -30px;
    right: -14px;
    transform: rotate(40deg);

}

.card::after {
    bottom: -30px;
    left: -14px;
    transform: rotate(-140deg);
}

.card:hover::before {
    background: linear-gradient(to bottom, rgba(255, 219, 87, 0.124), rgba(255, 219, 87, 0.119), rgba(255, 219, 87, 0.073), #ffffff);

}

.card:hover::after {
    background: linear-gradient(to bottom, rgba(87, 224, 255, 0.133), rgba(87, 224, 255, 0.071), rgba(87, 224, 255, 0.099), #ffffff);

}

.card:hover::before,
.card:hover::after {
    height: 130px;
}

.buildingBg {
    background-image: url(/assets/jpg/buliding-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tabButtons {
    width: 350px;
}

.tablink {
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    text-transform: uppercase;
    color: #333333;
    padding: .3rem 0;
    transition: all .2s;
    z-index: 3;
}

.tablink:hover {
    color: var(--primary);
}

.tablink.active {
    color: var(--primary);
    font-weight: 600;
    padding-left: 1.2rem;
    position: relative;
}

.tablink.active::before {
    position: absolute;
    content: '';
    width: 6px;
    height: 100%;
    background-color: var(--primary);
    left: 0;
    top: 0;
}

.tabcontent {
    display: none;
    width: calc(100% - 350px);
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.logoImages {
    background-color: var(--white);
    height: 100%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.10);
    padding: 3rem;
    border-radius: 3px;
}

.logoImages img {
    width: 100%;
}

.borderAnimation {
    width: 350px;
    height: 350px;
    border-bottom: 1px solid var(--border);
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: -13%;
    animation: border 3s infinite;
}

@keyframes border {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.whatOfferBg {
    background-image: url('../jpg/what-offer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.companiesLogo {
    padding: 3rem 4rem;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.companiesLogo img {
    width: 100%;
    filter: brightness(0) saturate(100%) invert(47%) sepia(1%) saturate(2214%) hue-rotate(29deg) brightness(92%) contrast(83%);
}

/* .companiesLogo::before{
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    left: 50%;
    top: 50%;
    transform: translateY(-50%, -50%);
    border-radius: 50%;
    transition: all .3s;
}
.companiesLogo:hover::before{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: unset;
    border-radius: 0;
    background-color: var(--primary);
} */
.companiesLogo:hover img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(14%) saturate(12%) hue-rotate(339deg) brightness(96%) contrast(87%);
}

/* slider css starts here */
.slider {
    display: flex;
    overflow-x: scroll;
    gap: 1rem;
    padding: 1rem 10rem 7rem 10rem;
    margin-top: 3rem;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slide {
    width: 26rem;
    background-color: var(--white);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 1rem;
    transition: all .2s;
    border-radius: 10px;
}

.slide:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    z-index: 9;
}

.slide .text {
    font-size: 20px;
    line-height: 34px;
    opacity: 0.8;
}

.slide .image {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
}

.slide .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.slide .name h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.slide .name span {
    font-size: 15px;
    opacity: 0.8;
}

.scrollProgressBar {
    width: 300px;
    height: 5px;
    margin: 0 auto;
    border-radius: 10px;
    background-color: #ccc;
    overflow: hidden;
}

.scrollProgressBar .progress {
    background-color: var(--primary);
    width: 0%;
    height: 100%;
}

.dotsImage {
    position: absolute;
    top: 57%;
    left: 0;
    z-index: -1;
    width: 300px;
    opacity: 0.7;
}

.roundBg {
    position: absolute;
    top: 10%;
    right: -300px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    z-index: -1;
    background-color: rgba(253, 252, 248, 0.87);
}
/* slider css end here */

/* footer css starts here */
footer {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.footerMenu {
    list-style: none;
}

.footerMenu li {
    margin-bottom: 1.2rem;
}

.footerMenu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-clr);
    text-decoration: none;
    transition: all .2s;
}

.footerMenu a:hover {
    color: var(--primary);
}

.socialIcons img {
    width: 40px;
}

.socialIcons a:hover img {
    filter: brightness(0) saturate(100%) invert(34%) sepia(61%) saturate(5231%) hue-rotate(12deg) brightness(100%) contrast(94%);
}

/* footer css end here */


/* text animation */
.textAimation {
    width: 50%;
    height: 700px;
    display: flex;
    flex-shrink: 0;
    overflow: hidden;
}

.textAimation section {
    width: 100%;
}

.textAimation section .texts {
    list-style: none;
    color: var(--heading-clr);
    writing-mode: vertical-rl;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-transform: uppercase;
    align-items: center;
    gap: 2rem;
}

.textAimation section .texts .text {
    text-align: center;
    transform: rotate(180deg);
}

.textAimation section .texts .text:first-child,
.textAimation section .texts .text:last-child {
    font-size: 11rem;
    font-weight: 900;
}

.textAimation section .texts .text:nth-child(2) {
    font-size: 4rem;
    font-weight: 400;
}

.texts1 {
    animation: text1 35s infinite linear;
}

@keyframes text1 {
    0% {
        transform: translateY(20px);
    }

    25% {
        transform: translateY(-54%);
    }

    50% {
        transform: translateY(20px);
    }

    75% {
        transform: translateY(-54%);
    }

    100% {
        transform: translateY(20px);
    }
}

.texts2 {
    animation: text2 35s infinite linear;
}

@keyframes text2 {
    0% {
        transform: translateY(-62%);
    }

    25% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(-62%);
    }

    75% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(-62%);
    }
}

.whyWeAreDiferentImage {
    background-image: url('../jpg/why-we-are-different.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 250px 0;
}

.whyWeAreDiferentImage .textPosition {
    display: flex;
    justify-content: end;
}

.whyWeAreDiferentImage .textPosition .image {
    display: none;
}

.localGlobalText,
.overlayBox {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    background: linear-gradient(80deg, #ffffff, #ffffff, #ffffff, #ffffff43, transparent);
}

.localGlobalText {
    background: linear-gradient(80deg, #ffffff, #ffffff67, transparent);
}

/* contact us css starts here */
.contactBox {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 4px 0px;
    padding: 2rem;
    border-radius: 8px;
}

.input-box {
    border: 1px solid var(--border);
    padding: 13px 15px;
    outline: none;
    border-radius: 4px;
    transition: all .2s;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    user-select: none;
}

.input-box:focus {
    border-color: var(--primary);
}

.input-box::placeholder {
    font-size: 13px;
    font-weight: 400;
}

#contact-form .textarea {
    border: 1px solid var(--border);
    padding: 13px 15px;
    outline: none;
    border-radius: 4px;
    transition: all .2s;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    user-select: none;
    resize: none;
    height: 200px;
}

#contact-form .textarea:focus {
    border-color: var(--primary);
}

#contact-form .textarea::placeholder {
    font-size: 13px;
    font-weight: 400;
}

.contactIcon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 17px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 10px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contactIcon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(50%) sepia(2%) saturate(8%) hue-rotate(25deg) brightness(97%) contrast(99%);
}

.followUsIcon {
    width: 40px;
    height: 40px;
}

.followUsIcon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(37%) sepia(9%) saturate(886%) hue-rotate(189deg) brightness(90%) contrast(87%);
}

.selectTypeLabel {
    position: static;
    border-radius: 4px;
    padding: 12px 22px;
    font-size: 14px;
}

.selectTypeLabel:hover {
    color: var(--primary);
}

.selectTypeLabel::before {
    position: static;
}

#career:checked+.selectTypeLabel,
#discussProject:checked+.selectTypeLabel {
    background-color: var(--primary);
    color: var(--white);
}

.label {
    font-size: 14px;
    /* opacity: 0.8; */
    margin-bottom: 5px;
    display: block;
}

#contact-form .primaryBtn {
    border-radius: 4px;
}

#job-role-container .textarea {
    height: 100px;
}

.file-field {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
}

.input-icon img,
.file-field img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    width: 18px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(9%) saturate(886%) hue-rotate(189deg) brightness(90%) contrast(87%);
}

#hidden-click-here span {
    color: #001aff;
}

.input-icon {
    position: relative;
}

.input-icon .input-box {
    padding-left: 40px;
}

.map {
    height: 290px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

/* contact us css end here */
.bgImage {
    padding-top: 5rem;
    background-size: cover;
    background-repeat: no-repeat;
}

.aboutBg {
    background-image: linear-gradient(180deg, #ffffff00, #ffffff), url('/assets/jpg/about-us-bg.jpg');
}

.whatWeDoBg {
    background-image: linear-gradient(180deg, #ffffff00, #ffffff), url('/assets/jpg/what-we-do-bg.jpg');
}

.whyWeAreDiferentBg {
    background-image: linear-gradient(180deg, #ffffff00, #ffffff), url('/assets/jpg/why-we-are-different-bg.jpg');
}

.recruitmentServicesBg {
    background-image: linear-gradient(180deg, #ffffff00, #ffffff), url('/assets/jpg/recruitment-services-bg.jpg');
}

#scrollButton {
    width: 65px;
    cursor: pointer;
}

.videoThumbnail {
    height: 400px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.videoThumbnail .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .4s;
}

.videoThumbnail:hover .img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 1px solid var(--white);
    background-color: var(--primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all .2s;
}

.play-button img {
    height: 20px;
}

.play-button:hover {
    background-color: var(--white);
}

.play-button:hover img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(23%) saturate(6428%) hue-rotate(358deg) brightness(90%) contrast(97%);
}

.aboutCounterList {
    border-radius: 9px;
    background: linear-gradient(92deg, #F6F4FF -3.79%, #F2FEFF 105.58%);
    display: flex;
    justify-content: space-evenly;
    padding: 3rem 3rem;
    margin-top: 5rem;
}

.aboutCounterList .listItem span:nth-child(1) {
    color: var(--primary);
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 36px;
    position: relative;
    display: block;
}

.aboutCounterList .listItem span:nth-child(1)::before {
    position: absolute;
    content: '';
    background-color: #252525a2;
    width: 40px;
    height: 1px;
    left: 0;
    bottom: -17px;
}

.succes,
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
}

.modal-content video {
    width: 100%;
}

.close {
    color: #ffffff;
    float: right;
    font-size: 34px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
}

.close:hover {
    color: var(--primary-clr);
}


.teamMembers {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.teamMembers .card {
    padding: 0;
    border-radius: 0;
    border: none;
}

.teamMembers .card .img {
    width: 100%;
    height: 350px;
}

.teamMembers .card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.teamMembers .card .text {
    background-color: var(--white);
    width: 95%;
    border-top: 8px solid var(--primary);
    margin: -37px auto auto auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
}

.teamMembers .card .text p {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.teamMembers .card .text span {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
    margin: 0;
}

.teamMembers .card .text img {
    width: 30px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(23%) saturate(6428%) hue-rotate(358deg) brightness(90%) contrast(97%);
}

.teamMembers .card::before,
.teamMembers .card::after {
    background: unset !important;
}

/* ========================= what we do css starts here ========================= */
.someIncludesText {
    color: var(--text-clr);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.buttonPara {
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-clr);
    padding: 10px 0;
}

.buttonPara .blueDot {
    width: 8px;
}

.buttonPara .dropdownIcon {
    width: 24px;
}

.para {
    display: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    padding: 0 16px;
}

.rotate {
    transform: rotate(180deg);
    transition: all .3s;
}

.differentCounterList {
    background: url('../jpg/number-counter-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 5rem 0;
}

.differentCounterList .listItem h3 {
    color: var(--white);
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}

.differentCounterList .listItem h3::before {
    position: absolute;
    content: '';
    background-color: #a5a5a5a2;
    width: 40px;
    height: 1px;
    left: 0;
    bottom: -7px;
}

.differentCounterList .listItem span {
    color: var(--white);
}

.box {
    background-color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-gray);
    border-radius: 5px;
    overflow: hidden;
}

.accordion {
    background-color: transparent;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.accordion:after {
    content: '\002B';
    margin-left: 5px;
    font-size: 35px;
    font-weight: 300;
}

.accordion.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    margin-bottom: 1rem;
    opacity: .8;
    line-height: 24px;
}

.starImgText {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.starImgText img {
    width: 20px;
}

.keyFeaturesList {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-bottom: 5rem;
}

.keyFeaturesList .item {
    border-radius: 6px;
    border: 1px solid #E8E8ED;
    background: #FFF;
    box-shadow: 0px 0px 9px 0px rgba(255, 172, 94, 0.12), 0px 3px 3px 0px rgba(255, 172, 94, 0.12);
    backdrop-filter: blur(7px);
    padding: 2rem;
}

.keyFeaturesList .item .icon {
    height: 40px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(30%) saturate(4774%) hue-rotate(357deg) brightness(89%) contrast(98%);
}

.keyFeaturesList .item .icon img {
    height: 100%;
}

.keyFeaturesList .item h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin: 1rem 0;
}

.keyFeaturesList .item p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    opacity: 0.7;
}


/* =============== Recruitment Services toggle button css starts here =============== */
.toggleContainer {
    position: relative;
    display: inline-block;
}

.hiddenCheckbox {
    display: none;
}

.toggleLabel {
    display: block;
    width: 60px;
    height: 30px;
    background-color: #ffffff;
    border: 1px solid var(--primary);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
}

.toggleLabel:before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background-color: var(--primary);
    border-radius: 50%;
    position: absolute;
    right: 2px;
    top: 2px;
    transition: right 0.3s;
}

.hiddenCheckbox:checked+.toggleLabel:before {
    right: 31px;
}

#monthly,
#yearly {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.hidden {
    display: none !important;
}

.paymentCard {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.paymentCard h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin: 1rem 0;
}

.paymentCard .box {
    background-color: var(--white);
    border-radius: 14px;
    margin: 2px;
    padding: 25px 15px;
}

.monthlyPrice,
.yearlyPrice {
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.euro {
    font-size: 25px;
    font-weight: 400;
}

.price {
    font-size: 34px;
    font-weight: 500;
}

.yearlyPrice div {
    display: flex;
    align-items: flex-end;
}

.savePrice {
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.6;
}

.savePercentage {
    font-size: 16px;
    font-weight: 500;
    background: #e24d081e;
    padding: 8px 10px;
    border-radius: 5px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.savePercentageNavy {
    background: #0a558a1f;
    color: var(--navy);
}

.benefits img {
    width: 18px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(30%) saturate(4774%) hue-rotate(357deg) brightness(89%) contrast(98%);
}

.navyColorTick img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(96%) saturate(1861%) hue-rotate(188deg) brightness(94%) contrast(92%);
}

.benefits p {
    font-size: 14px;
}

/* =============== Recruitment Services toggle button css end here =============== */
.detailsPageBg {
    background-image: linear-gradient(180deg,rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.966)), url('../jpg/details-page-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
}

.detailsText {
    width: 100%;
}

.detailsText span {
    color: #7161D1;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.detailsText h2 {
    font-size: 35px;
    font-weight: 500;
    margin: 1rem 0;
}

.detailsText p {
    color: #575C6D;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.detailsImg {
    width: 100%;
    height: 450px;
    /* animation-name: detailImg;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-timing-function: linear; */
}

@keyframes detailImg {
    0% {
        transform: translateY(50%);
        opacity: 0;
        height: 350px;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
        height: 450px;
    }
}

.detailsImg img {
    height: 100%;
}

.succes {
    display: block;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}

.succes .modal-content {
    background-color: var(--white);
    width: 400px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    text-align: center;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s
}

.succes .modal-content img {
    width: 80%;
}

.succes .modal-content p {
    font-size: 1.5rem;
    font-weight: 600;
}

@-webkit-keyframes slideIn {
    from {
        top: 300px;
        opacity: 0
    }

    to {
        top: 50%;
        opacity: 1
    }
}

@keyframes slideIn {
    from {
        top: 300px;
        opacity: 0
    }

    to {
        top: 50%;
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}