/********** Template CSS **********/
@font-face {
    font-family: "lato";
    src: url("../font/lato/Lato-Regular.ttf") format("truetype");
    /* src: url("../font/rubik/Rubik-Regular.ttf") format("truetype"); */
}

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Unbounded:wght@200..900&display=swap');

@font-face {
    font-family: "poppins";
    src: url("../font/Poppins-Medium.ttf") format("truetype");
    /* src: url("../font/rubik/Rubik-Regular.ttf") format("truetype"); */
}

:root {
    --primary: #0054ff;
    --secondary: #ff454e;
    --light: #F4F7FE;
    --dark: #222;
}

.banner_inner_image {
    width: 500px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.banner_inner_image img {
    width: 100%;
    transform: scale(1.2);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.prompt_answer ul li::before {
    color: var(--primary) !important;
    cursor: none !important;
}

.btn.btn-sm.text-primary:hover {
    transform: scale(1) !important;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--light);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--dark);
}

ul.custom-menu.dropdown-menu::-webkit-scrollbar-track {
    background: var(--primary);
    border-radius: 10px;
}

ul.custom-menu.dropdown-menu::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 10px;
}

html {
    overflow-x: hidden !important;
}

.custom-shadow {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 25px;
    bottom: 15px;
    z-index: 99;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'poppins' !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'lato' !important;
}

ul:not(.navbar-nav, .pagination, .dropdown-menu, .list-group, .slick-dots) {
    list-style: none;
}

ul:not(.navbar-nav, .pagination, .dropdown-menu, .list-group, .slick-dots) li {
    position: relative;
    padding-bottom: 20px;
}

ul:not(.navbar-nav, .pagination, .dropdown-menu, .list-group, .slick-dots) li {
    position: relative;
}

ul:not(.navbar-nav, .pagination, .dropdown-menu, .list-group, .slick-dots) li::before {
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fff;
    position: absolute;
    left: -30px;
    top: 0;
}

/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.sticky-top {
    top: 0px;
    transition: .5s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.navbar {
    padding: 11px 0 !important;
    height: 75px;

}

.navbar .navbar-nav .nav-link {
    padding: 0 25px;
    outline: none;
}

/* .navbar .navbar-nav .nav-item:last-child {
    border-left: 2px solid white;
} */
.navbar .navbar-nav .nav-item:not(.login-btn) {
    position: relative;
    cursor: pointer;
}

.navbar .navbar-nav .nav-item:not(.login-btn)::after {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 1rem;
    background-color: var(--primary);
    transform: scale(0);
    transition: all 300ms ease-in-out;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item.active::after {
    transform: scale(0.9);
    cursor: pointer;
}

/* .navbar .navbar-nav .nav-item:hover,
.navbar .navbar-nav .nav-item.active {
    text-decoration: underline;
} */

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}




/*** Hero Header ***/
.hero-header {
    /* margin-top: -95px; */
    background: url(../images/banner/home-banner.png) center center no-repeat;
    /* background: url(../images/hero-img.png) center center no-repeat; */
    background-size: cover;
    border-bottom: 1px solid #e3e3e3;
    position: relative;
    background-position: bottom;
    overflow: hidden;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
}

.hero-header>.container {
    z-index: 10;
    position: relative;
}

.hero-header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
}

.rtl span {
    direction: rtl;
    display: block;
}

.rtl>* {
    direction: rtl;
}

.transparent-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.2px);
    -webkit-backdrop-filter: blur(8.2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-header .col-lg-12 {
    padding: 50px 25px;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.mainBtn1 {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
}

.mainBtn2 {
    max-width: fit-content;
    line-height: 1;
}

.card-basic,
.card-premium,
.card-standard {
    margin: 0 2rem 1rem 0;
    padding: 0 0 0.5rem 0;
    background: #fff;
    color: #444;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0.5rem 0.5rem 1rem rgba(51, 51, 51, 0.2);
    overflow: hidden;
    transition: all 0.1ms ease-in-out;
}

.card-basic:hover,
.card-premium:hover,
.card-standard:hover {
    transform: scale(1.02);
}

.card-header {
    height: 5rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 1rem 0;
    color: #fff;
    clip-path: polygon(0 0, 100% 0%, 100% 85%, 0% 100%);
}

.header-basic,
.btn-basic {
    background: linear-gradient(135deg, rgb(0, 119, 238), #14183e);
}

.header-standard,
.btn-standard {
    background: linear-gradient(135deg, #b202c9, #cf087c);
}

.header-premium,
.btn-premium {
    background: linear-gradient(135deg, #eea300, #ee5700);
}

.card-body {
    padding: 0.5rem 0;
}

.card-body h2 {
    font-size: 2rem;
    font-weight: 700;
}

.card-element-container {
    color: #444;
    list-style: none;
}

.btn {
    margin: 0.5rem 0;
    padding: 1rem;
    outline: none;
    border-radius: 0rem;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid white !important;
    /* color: #fff; */
    border: none;
    cursor: pointer;
    transition: all 0.1ms ease-in-out;
}

.btn:hover {
    transform: scale(0.95);
}

.btn:active {
    transform: scale(1);
}

.card-element-hidden {
    display: none;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/bg-about-img.png) top left no-repeat;
    background-size: contain;
}


/*** Service ***/

.service-item {
    max-width: 500px;
    height: 100%;
    position: relative;
    padding: 45px 30px;
    /* background: #FFFFFF; */
    transition: .5s;
    /* border: 5px solid var(--primary); */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
    padding-top: 85px;
    margin-top: 80px;
}

/* .service-item:hover {
    background: var(--secondary);
} */

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 125px;
    height: 125px;
    background-color: var(--secondary);
    color: #fff;
    transition: .5s;
    position: absolute;
    top: -43%;
    left: 50%;
    transform: translate(-50%, 50%);
    border-radius: 50%;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

/* .service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
} */

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--secondary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--secondary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Feature ***/
.feature {
    background: url(../images/bg-hero2.png) center center no-repeat;
    background-size: cover;
}


#loaderDiv {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999999;
    overflow: hidden;
    transition: 1.5s ease-out;
}

.loader {
    width: 44.8px;
    height: 44.8px;
    color: var(--primary);
    position: relative;
    background: radial-gradient(11.2px, currentColor 94%, #0000);
}

.loader:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(10.08px at bottom right, #0000 94%, currentColor) top left,
        radial-gradient(10.08px at bottom left, #0000 94%, currentColor) top right,
        radial-gradient(10.08px at top right, #0000 94%, currentColor) bottom left,
        radial-gradient(10.08px at top left, #0000 94%, currentColor) bottom right;
    background-size: 22.4px 22.4px;
    background-repeat: no-repeat;
    animation: loader 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes loader {
    33% {
        inset: -11.2px;
        transform: rotate(0deg);
    }

    66% {
        inset: -11.2px;
        transform: rotate(90deg);
    }

    100% {
        inset: 0;
        transform: rotate(90deg);
    }
}

/*** Newsletter ***/
.newsletter {
    /* background: url(../images/bg-hero.png) center center no-repeat; */
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.border-0 {
    border: none !important;
}

/*** Case Study ***/
.case-item img {
    transition: .5s;
    object-fit: cover;
}

.case-item:hover img {
    transform: scale(1.2);
}

.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(20, 24, 62, 1) 100%);
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--primary);
    background: #FFFFFF;
    border-color: #FFFFFF;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

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

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

.accordion .accordion-button:not(.collapsed) span.bg-primary {
    background-color: #000 !important;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 20px 15px 20px;
}

/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot,
.slick-dots li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--secondary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active,
.slick-dots li.slick-active {
    width: 30px;
    background: var(--secondary);
}


/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

.team-item:hover {

    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    background: url(../images/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    transition: .3s;
}

header {
    position: relative;
    z-index: 99999;
}

.btn.btn-link:hover {
    color: #FFFFFF;
}

.btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 2px solid rgba(255, 255, 255);
}

.footer .copyright a {
    color: rgba(255, 255, 255, .5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.traffic-loader {
    width: 100px;
    height: 100px;
    --c: radial-gradient(farthest-side, #fff 92%, #0000);
    background: var(--c) 50% 0, var(--c) 50% 100%, var(--c) 100% 50%, var(--c) 0 50%;
    background-size: 10px 10px;
    background-repeat: no-repeat;
    /* animation: s8 1s infinite; */
    position: absolute;
    right: 14px;
    bottom: -40px;
}

.traffic-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: 3px;
    background: repeating-conic-gradient(#0000 0 35deg, #fff 0 90deg);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 3px), #000 0);
    border-radius: 50%;
}

.img-container {
    position: relative;
    height: 550px;
}

.img-container img {
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 5px solid white;
}

@keyframes s8 {
    100% {
        transform: rotate(0.5turn);
    }
}


.wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    margin: 50px 0;
    place-content: center;
    place-items: center;
}

.wrapper2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    margin: 50px 0;

}

.pricing-table {
    text-align: center;
    padding: 30px 0px;
    width: 100%;
    border-radius: 20px;
    position: relative;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.pricing-table .head {
    border-bottom: 1px solid #eee;
    padding-bottom: 70px;
    transition: all 0.5s ease;
}

.pricing-table:hover .head {
    border-bottom: 1px solid #0054ff;

}

.pricing-table .head .title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.pricing-table .content .price {
    background: linear-gradient(to right, #0054ff 0%, #14183e 100%);
    width: 120px;
    height: 120px;
    margin: auto;
    line-height: 90px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
    margin-top: -65px;
    transition: all 0.5s ease;
    position: relative;
}

.pricing-table:hover .content .price {
    transform: scale(1.2);

}

.pricing-table .content .price h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.pricing-table .content .price h3 span:nth-child(1) {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
}

.pricing-table .content .price h3 span:nth-child(2) {
    font-size: 15px;
    font-weight: 500;
    margin-top: 10px;
    color: #fff;
}

.pricing-table .content ul {
    list-style-type: none;
    margin-bottom: 20px;
    padding-top: 10px;
}

.pricing-table .content ul li {
    margin: 20px 0px;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.pricing-table .content .sign-up {
    background: linear-gradient(to right, #0054ff 0%, #14183e 100%);
    border-radius: 40px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.service-item:hover .btn-square.service-icon svg,
.service-item:hover .btn-square.service-icon svg #icon {
    fill: var(--secondary) !important
}

.pricing-table .btn {
    color: #fff;
    padding: 14px 40px;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3 linear;
    transition: all 0.3 linear;
    border: none;
    font-size: 14px;
    text-transform: capitalize;
    position: relative;
    text-decoration: none;
    margin: 2px;
    z-index: 9999;
    text-decoration: none;
    border-radius: 50px;

}

.bg-glasstransparent {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.4px);
    -webkit-backdrop-filter: blur(5.4px);
    color: white;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 1);
}

.bg-glasstransparent:hover {
    color: #fff !important;
    background-color: var(--dark) !important;
    cursor: pointer;
}

.pricing-table .btn:hover {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.pricing-table .btn.bordered {
    z-index: 50;
    color: #333;
}

.pricing-table:hover .btn.bordered {
    color: #fff !important;
}

.pricing-table .btn.bordered:after {
    background: #fff none repeat scroll 0 0;
    border-radius: 50px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3 linear;
    transition: all 0.3 linear;
    width: 100%;
    z-index: -1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

.pricing-table:hover .btn.bordered:after {
    opacity: 0;
    transform: scale(0);
}

.form-switch {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 24px;
}

.form-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.form-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.form-switch input:checked+.slider {
    background-color: #2196F3;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.toggle-text {
    font-size: 1rem;
    margin-left: 10px;
    font-weight: bold;
}



.slick-arrow {
    position: absolute;
    top: 50%;
    left: -3%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff;
    background: #0054ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 40px;
}

.slick-next {
    left: auto;
    right: -6%;
}

.slick-arrow:hover {
    background: var(--dark);
    color: #fff;
}

.resumes img {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

.resumes .slick-list {
    padding: 100px 0 !important
}

.resumes .slide>div {
    display: flex;
    justify-content: center;
    position: relative;
    transition: all 0.3s;
}

.resumes .slide>div::after {
    width: 82%;
    height: 0%;
    content: "";
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(0, 0, 0, 0.6);
    transition: all 0.3s;
}

.resumes .slide>div:hover {
    scale: 1.2;
    z-index: 999;
    filter: drop-shadow(rgba(0, 0, 0, 0.24) 0px 3px 8px)
}

.resumes .slide>div>button {
    position: absolute;
    top: 50%;
    transition: all 0.5s;
    opacity: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
}

.resumes .slide>div:hover::after {
    height: 100%;
}

.resumes .slide>div:hover>button {
    opacity: 1;
}

.color-dark {
    color: var(--dark) !important
}

.chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #15ACE1;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    z-index: 999;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Chat Screen */
.chat-screen {
    position: fixed;
    bottom: -450px;
    right: 20px;
    width: 300px;
    max-height: 430px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    z-index: 1000;
}

.chat-screen-alert {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    max-height: 100px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    z-index: 1000;
}

.chat-header {
    background-color: #15ACE1;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.chat-body {
    padding: 10px;
    height: 300px;
    overflow-y: auto;
}

.chat-footer {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.chat-footer input {
    flex: 1;
    margin-right: 10px;
}

.chat-body p:nth-child(odd) {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 10px;
    margin: 5px 0;
}

.chat-body p:nth-child(even) {
    background-color: #15ACE1;
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin: 5px 0;
}

.drag-area {
    border: 2px dashed var(--primary);
    height: 250px;
    width: 100%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.drag-area.active {
    border: 2px solid var(--primary);
}

.drag-area .icon {
    font-size: 50px;
    color: var(--primary);
}

.drag-area header {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
}

.drag-area span {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    margin: 10px 0 15px 0;
}

.drag-area img {
    height: 80%;
    width: 80%;
    object-fit: cover;
    border-radius: 5px;
}


.right_conatct_social_icon {
    background: linear-gradient(to top right, #0054ff -5%, #14183E 100%);
}

.contact_us {
    background-color: #f1f1f1;
    padding: 120px 0px;
}

.contact_inner {
    background-color: #fff;
    position: relative;
    box-shadow: 20px 22px 44px #cccc;
    border-radius: 25px;
}

.contact_field {
    padding: 60px 340px 90px 100px;
}

.right_conatct_social_icon {
    height: 100%;
}

.contact_field h3 {
    color: #000;
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px
}

.contact_field p {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 35px;
}


.contact_field .form-control:focus {
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #1325e8;
}


.contact_info_sec {
    position: absolute;
    background-color: #000;
    right: 1px;
    top: 18%;
    color: #fff;
    height: 340px;
    width: 340px;
    padding: 40px;
    border-radius: 25px 0 0 25px;
}

.contact_info_sec h4 {
    letter-spacing: 1px;
    padding-bottom: 15px;
}

.info_single {
    margin: 30px 0px;
}

.info_single i {
    margin-right: 15px;
}

.info_single span {
    font-size: 14px;
    letter-spacing: 1px;
}


.socil_item_inner li {
    list-style: none;
}

.socil_item_inner li a {
    color: #fff;
    margin: 0px 15px;
    font-size: 14px;
}

.socil_item_inner {
    padding-bottom: 10px;
}

.map_sec {
    padding: 50px 0px;
}

.map_inner h4,
.map_inner p {
    color: #000;
    text-align: center
}

.map_inner p {
    font-size: 13px;
}

.map_bind {
    margin-top: 50px;
    border-radius: 30px;
    overflow: hidden;
}


/* Floating animation for the image */
.floating-animation {
    animation: float 3s ease-in-out infinite;
    transform-origin: center;
}

/* Keyframes for the floating effect */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
        /* Adjust for the desired float height */
    }

    100% {
        transform: translateY(0);
    }
}


.file-upload-view {
    height: 500px;
    padding: 20px;
    width: 50%;
    position: relative;
}

.file-upload-view img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.ocrloader {
    height: 500px;
    width: 100%;
    /* margin: 20px; */
    /* outline-offset: 10px; */
    position: relative;
    position: absolute;
    left: 0%;
    top: 0%;
}

.ocrloader span::before {
    content: "";
    position: absolute;
    top: 5%;
    bottom: 0;
    left: 4%;
    width: 10px;
    height: 90%;
    background: var(--primary);
    box-shadow: 0 0 50px 10px var(--primary);
    clip-path: inset(0);
    animation:
        x 1s ease-in-out infinite alternate,
        y 1s ease-in-out infinite;
}

.ocrloader p::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    position: relative;
    right: 4px;
}

.ocrloader p {
    color: var(--primary);
    position: absolute;
    bottom: -30px;
    left: 38%;
    font-size: 16px;
    font-weight: 600;
    animation: blinker 1s linear infinite;
    font-family: sans-serif;
    text-transform: uppercase;
}

.ocrloader:before,
.ocrloader:after,
.ocrloader em:after,
.ocrloader em:before {
    border-color: var(--primary);
    content: "";
    position: absolute;
    width: 45px;
    height: 46px;
    border-style: solid;
    border-width: 0px;
}

.ocrloader:before {
    left: 0;
    top: 0;
    border-left-width: 5px;
    border-top-width: 5px;
    border-radius: 5px 0 0 0;
}

.ocrloader:after {
    right: 0;
    top: 0;
    border-right-width: 5px;
    border-top-width: 5px;
    border-radius: 0 5px 0 0;
}

.ocrloader em:before {
    left: 0;
    bottom: 0;
    border-left-width: 5px;
    border-bottom-width: 5px;
    border-radius: 0 0 0 5px;
}

.ocrloader em:after {
    right: 0;
    bottom: 0;
    border-right-width: 5px;
    border-bottom-width: 5px;
    border-radius: 0 0 5px 0;
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 9999;
    /* Hidden initially */
    max-width: 350px;
    font-size: 14px;
}

.cookie-consent a {
    color: #fff;
}

.modal-dialog .col-md-7:first-child p {
    margin-bottom: 0.5rem;
}

.modal-dialog li {
    padding-bottom: 10px !important;
}

.modal-dialog li::before {
    color: var(--primary) !important;
}

.modal-dialog .col-md-5:nth-child(2n) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/ai_bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

@keyframes move {

    0%,
    100% {
        transform: translateY(190px);
    }

    50% {
        transform: translateY(0%);
    }

    75% {
        transform: translateY(160px);
    }
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@keyframes x {
    to {
        transform: translateX(-100%);
        left: 100%;
    }
}

@keyframes y {
    33% {
        clip-path: inset(0 0 0 -100px);
    }

    50% {
        clip-path: inset(0 0 0 0);
    }

    83% {
        clip-path: inset(0 -100px 0 0);
    }

}

.resume-description p {
    font-size: 20px;
    margin-top: 20px;
}

.resume-description p b {
    font-weight: 600;
}

.slick-next:before,
.slick-prev:before {
    content: "";
}

#feedbackModal .row {
    max-height: 300px;
    overflow-y: auto;
}

.offcanvas-body .job-card {
    box-shadow: none !important;
}

.offcanvas-end {
    width: 35vw !important;
}

.offcanvas-end ul:not(.navbar-nav) li::before,
.service-item ul:not(.navbar-nav) li::before {
    color: var(--primary);
}

/* .service-item:hover ul:not(.navbar-nav) li::before {
    color: #fff;
}

.service-item:hover h6,
.service-item:hover ul {
    color: #fff;
} */

.features_slider .slick-list.draggable {
    padding: 100px !important;
}

.slick-dots {
    list-style: none !important;
    bottom: 35px;
}

.slick-dots button {
    display: none !important;
}

ul.custom-menu.dropdown-menu {
    width: 50vw;
    left: -15vw;
    padding: 20px;
    height: fit-content;
    overflow-y: auto;
    top: 35px;
    border: 2px solid white !important;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    /* box-shadow: rgba(255, 255, 255, 0.16) 0px 3px 6px, rgba(255, 255, 255, 0.23) 0px 3px 6px; */
}

/* ul.custom-menu.dropdown-menu .col-md-6:not(:nth-child(even), :last-child) {
    border-right: 2px solid #e3e3e3;
} */

.dropdown-menu .transparent-card {
    padding: 20px;
    border-radius: 7px;
}

.dropdown-menu .transparent-card i {
    font-size: 50px;
    color: white;
}

.dropdown-menu .transparent-card svg {
    margin-bottom: 0 !important;
}

ul.custom-menu.dropdown-menu .col-md-6 {
    padding-left: 15px;
    padding: 25px !important;
    /* display: flex;
    gap: 20px; */
    padding-bottom: 5px;
    position: relative;
    border-radius: 10px;
}

ul.custom-menu.dropdown-menu .col-md-6:not(:nth-child(even), :last-child, .single)::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 90%;
    background-color: var(--secondary);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

ul.custom-menu.dropdown-menu .col-md-6:hover {
    cursor: pointer;
    /* background-color: white;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
}

ul.custom-menu.dropdown-menu .col-md-6:hover .transparent-card {
    background: var(--dark);
}

ul.custom-menu.dropdown-menu .header-menu {
    color: var(--dark) !important;
    margin-top: 20px;
}

ul.custom-menu.dropdown-menu .col-md-6:hover .header-menu,
ul.custom-menu.dropdown-menu .col-md-6:hover h5 {
    color: #000 !important;
}

ul.custom-menu.dropdown-menu .header-menu p {
    margin-bottom: 0;
}

ul.custom-menu.dropdown-menu h5 {
    font-weight: 700 !important;
    /* color: #fff !important; */
    margin-right: 5px;
    position: relative;
    font-size: 20px !important;

    i {
        position: absolute;
        top: 2px;
        left: 0;
    }
}


ul.custom-menu.dropdown-menu a.btn-link {
    display: block;
    border: var(--primary) !important;
    /* color: var(--primary); */
    margin-bottom: 0px;
    font-size: 15px;
    padding: 5px 0px;
}

.tab-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-container .tabs {
    display: flex;
    position: relative;
    background-color: var(--dark);
    box-shadow: 0 0 1px 0 rgba(#185ee0, 0.15), 0 6px 12px 0 rgba(#185ee0, 0.15);
    padding: 0.75rem;
    border-radius: 99px;
    color: #fff;

    * {
        z-index: 2;
    }
}

.tab-container input[type="radio"] {
    display: none;

    &:checked {
        &+label {
            color: #fff !important;

            &>.notification {
                background-color: var(--primary);
                color: #fff;
            }
        }
    }
}

.tab-container .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    width: 200px;
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 99px;
    cursor: pointer;
    transition: color 0.15s ease-in;
}

.tab-container input[id="radio-1"] {
    &:checked {
        &~.glider {
            transform: translateX(0);
        }
    }
}

.tab-container input[id="radio-2"] {
    &:checked {
        &~.glider {
            transform: translateX(100%);
        }
    }
}

.tab-container input[id="radio-3"] {
    &:checked {
        &~.glider {
            transform: translateX(200%);
        }
    }
}

.tab-container .glider {
    position: absolute;
    display: flex;
    height: 54px;
    width: 200px;
    background-color: var(--primary);
    z-index: 1;
    border-radius: 99px;
    transition: 0.25s ease-out;
}

.pricing-table2 {
    color: #000;
}

.pricing-table2 td:not(.out),
.pricing-table2 th:not(.out) {
    padding: 15px;
    /* border: 2px solid red; */
    border-radius: 5px;
    outline: 1px solid var(--primary);
}

.pricing-table2 thead tr th {
    position: relative;
    color: var(--primary);
}

.pricing-table2 thead tr:first-child th p {
    position: absolute;
    margin-bottom: 0;
    top: 50%;
    left: 50%;
    color: var(--primary);
    font-size: 20px;
    transform: translate(-60%, -60%);
}

.pricing-table2 thead tr:first-child th:not(:first-child) span:first-child::before {
    content: "";
    width: 2px;
    height: 10px;
    background-color: var(--primary);
    position: absolute;
    top: 45%;
    left: 20%;
}

.pricing-table2 thead tr:first-child th:not(:first-child) span:first-child::after {
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    top: 45%;
    left: 20%;
}

.pricing-table2 thead tr:first-child th:not(:first-child) span:last-child::before {
    content: "";
    width: 2px;
    height: 10px;
    background-color: var(--primary);
    position: absolute;
    top: 45%;
    right: 25%;
}

.pricing-table2 thead tr:first-child th:not(:first-child) span:last-child::after {
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    top: 45%;
    right: 25%;
}

.pricing-table2 thead tr:first-child th:nth-child(3) span:first-child::before {
    left: 13%;
}

.pricing-table2 thead tr:first-child th:nth-child(3) span:first-child::after {
    width: 160px;
    left: 13%;
}

.pricing-table2 thead tr:first-child th:nth-child(3) span:last-child::before {
    right: 18%;
}

.pricing-table2 thead tr:first-child th:nth-child(3) span:last-child::after {
    width: 160px;
    right: 18%;
}

.pricing-table2 thead tr:first-child th:nth-child(3) p {
    transform: translate(-70%, -60%);
}

.pricing-table2 tbody tr td:first-child,
.pricing-table2 thead tr:nth-child(2) th:first-child {
    text-align: left !important;
}

.pricing-table2 tbody tr td i.text-success {
    color: #fff !important;
    -webkit-text-stroke: 1px #00af00;
}

.pricing-table2 tbody tr td i.text-danger {
    color: #fff !important;
    -webkit-text-stroke: 1px #dc3545 !important;
}

.pricing-table2 {
    font-size: 20px;
}


.transparent-card svg {
    margin-bottom: 20px;
}

.date__box {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 4px solid;
    font-weight: bold;
    padding: 5px 10px;

    .date__day {
        font-size: 22px;
    }
}

.blog-card {
    padding: 30px;
    position: relative;

    .date__box {
        opacity: 0;
        transform: scale(0.5);
        transition: 300ms ease-in-out;
    }

    .blog-card__background,
    .card__background--layer {
        z-index: -1;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80%;
    }

    .blog-card__background {
        padding: 15px;
        background: white;
    }

    .card__background--wrapper {
        height: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 80%, 0 60%);
        position: relative;
        overflow: hidden;
    }

    .card__background--main {
        height: 100%;
        position: relative;
        transition: 300ms ease-in-out;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .card__background--layer {
        z-index: 0;
        opacity: 0;
        background: rgba(#333, 0.9);
        transition: 300ms ease-in-out;
    }

    .blog-card__head {
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .blog-card__info {
        z-index: 10;
        background: white;
        padding: 20px 15px;
        border: 2px solid var(--primary);
        border-radius: 20px;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;

        h5 {
            transition: 300ms ease-in-out;
            font-size: 25px;
        }
    }

    &:hover {
        .date__box {
            opacity: 1;
            transform: scale(1);
        }

        .card__background--main {
            transform: scale(1.2) rotate(5deg);
        }

        .card__background--layer {
            opacity: 1;
        }

        .blog-card__info {
            h3 {
                color: var(--primary);

            }
        }
    }
}

a.icon-link {
    color: #000;
    transition: 200ms ease-in-out;

    i {
        color: var(--primary);
    }

    &:hover {
        color: var(--primary);
        text-decoration: none;
    }
}

.btn.text-primary {
    border-color: var(--primary) !important;
    border-radius: 0 !important;
}

.text-black {
    color: #000 !important;
}

.process-box {
    background: #fff;
    height: 375px;
    padding: 15px;
    border-radius: 15px;
    position: relative;
    box-shadow: 2px 2px 7px 0 #00000057;
}

.process-left:after {
    content: "";
    border-top: 15px solid #ffffff;
    border-bottom: 15px solid #ffffff;
    border-left: 15px solid #ffffff;
    border-right: 15px solid #ffffff;
    display: inline-grid;
    position: absolute;
    right: -15px;
    top: 42%;
    transform: rotate(45deg);
    box-shadow: 3px -2px 3px 0px #00000036;
    z-index: 1;
}

.process-right:after {
    content: "";
    border-top: 15px solid #ffffff00;
    border-bottom: 15px solid #ffffff;
    border-left: 15px solid #ffffff;
    border-right: 15px solid #ffffff00;
    display: inline-grid;
    position: absolute;
    left: -14px;
    top: 5%;
    transform: rotate(45deg);
    box-shadow: -1px 1px 3px 0px #0000001a;
    z-index: 1;
}

.process-step {
    background: var(--primary);
    text-align: center;
    width: 80%;
    margin: 0 auto;
    color: #fff;
    height: 100%;
    padding-top: 8px;
    position: relative;
    top: -31px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: -6px 8px 0px 0px #00000014;
}

.process-point-right {
    background: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 8px solid var(--primary);
    box-shadow: 0 0 0px 4px #5c5c5c;
    margin: auto 0;
    position: absolute;
    top: 43%;
    left: -35px;
}

.process-point-right:before {
    content: "";
    height: 415px;
    width: 11px;
    background: #5c5c5c;
    display: inline-grid;
    transform: rotate(17deg);
    position: relative;
    left: -65px;
    top: 10px;
}

.process-point-left {
    background: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 8px solid var(--primary);
    box-shadow: 0 0 0px 4px #5c5c5c;
    margin: auto 0;
    position: absolute;
    top: 43%;
    right: -85px;
}

.process-point-left:before {
    content: "";
    height: 415px;
    width: 11px;
    background: #5c5c5c;
    display: inline-grid;
    transform: rotate(-17deg);
    position: relative;
    left: 63px;
    top: 7px;
}

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

.process-box p {
    z-index: 9;
}

.process-step p {
    font-size: 20px;
}

.process-step h2 {
    font-size: 39px;
}

.process-step:after {
    content: "";
    border-top: 8px solid var(--dark);
    border-bottom: 8px solid var(--primary);
    border-left: 8px solid var(--dark);
    border-right: 8px solid var(--primary);
    display: inline-grid;
    position: absolute;
    left: -16px;
    top: 0;
}

.process-step:before {
    content: "";
    border-top: 8px solid #ff000000;
    border-bottom: 8px solid var(--primary);
    border-left: 8px solid var(--primary);
    border-right: 8px solid #ff000000;
    display: inline-grid;
    position: absolute;
    right: -16px;
    top: 0;
}

.process-line-l {
    background: white;
    height: 4px;
    position: absolute;
    width: 136px;
    right: -153px;
    top: 64px;
    z-index: 9;
}

.process-line-r {
    background: white;
    height: 4px;
    position: absolute;
    width: 136px;
    left: -153px;
    top: 63px;
    z-index: 9;
}

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

.process-box p {
    z-index: 9;
}

.process-step p {
    font-size: 20px;
}

.process-step h2 {
    font-size: 39px;
    color: white !important;
}

.process-box ul li::before {
    color: var(--primary);
}

.process-step:after {
    content: "";
    border-top: 8px solid #ff000000;
    border-bottom: 8px solid var(--primary);
    border-left: 8px solid #ff000000;
    border-right: 8px solid var(--primary);
    display: inline-grid;
    position: absolute;
    left: -16px;
    top: 0;
}

.process-step:before {
    content: "";
    border-top: 8px solid #ff000000;
    border-bottom: 8px solid var(--primary);
    border-left: 8px solid var(--primary);
    border-right: 8px solid #ff000000;
    display: inline-grid;
    position: absolute;
    right: -16px;
    top: 0;
}

.process-line-l {
    background: var(--primary);
    height: 4px;
    position: absolute;
    width: 186px;
    right: -204px;
    top: 45%;
    transform: translate(0px, 1px);
    z-index: 1;
}

.process-line-r {
    background: var(--primary);
    height: 4px;
    position: absolute;
    width: 136px;
    left: -153px;
    top: 45%;
    transform: translate(0px, 1px);
    z-index: 9;
}

.btn.text-primary.active {
    color: #fff !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.nav-pills .nav-link {
    position: relative;
    background: #f4f7fe;
    z-index: 4;
}

.nav-pills .nav-link:not(:first-child)::before {
    content: "";
    width: 5px;
    height: 30px;
    background-color: var(--primary);
    position: absolute;
    left: 50%;
    top: -50%;
    transform: translate(-50%, -23%);
    z-index: -17;
}

.nav-pills .btn:hover {
    transform: scale(1);
}

.process-right.process-second:after {
    top: 26%;
}

.process-right.process-third:after {
    top: 46%;
}

.process-right.process-four:after {
    top: 67%;
}

.process-right.process-five:after {
    top: 87%;
}

.course_card {
    width: 95%;
    border-radius: 1rem;
    background: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    position: relative;
    color: #434343;
}

.course_card .card__container {
    padding: 3.5rem 1rem 1rem;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 1rem;
    position: relative;
}

.course_card .card__header {
    margin-bottom: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}


.course_card::before {
    position: absolute;
    top: 38px;
    left: -0.5rem;
    content: '';
    background: #ff454e;
    height: 28px;
    width: 28px;
    transform: rotate(45deg);
}

.course_card::after {
    position: absolute;
    content: attr(data-label);
    top: 11px;
    left: -14px;
    padding: 0.5rem;
    width: 10rem;
    background: #ff454e;
    color: white;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    box-shadow: 4px 4px 15px rgba(26, 35, 126, 0.2);
}

.modal-backdrop.fade.show {
    z-index: 99999;
}

.modal.fade.show,
.offcanvas.show {
    z-index: 999999;
}

#skills-wrapper {
    max-height: 165px;
    overflow: auto;
}

#skills-wrapper::-webkit-scrollbar {
    width: 4px;
}

/* .service-item:hover h3 {
    color: #fff;
} */
.btn:focus {
    box-shadow: none !important;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: #fff;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (max-width: 1600px) {
    ul.custom-menu.dropdown-menu a.btn-link {
        font-size: 13px;
    }

    ul.custom-menu.dropdown-menu h5 {
        font-size: 20px !important;
    }

    ul.custom-menu.dropdown-menu .col-md-6 {
        padding-left: 13px;
    }

    ul.custom-menu.dropdown-menu {
        width: 70vw;
        left: -20vw;
        padding: 15px;
    }
}


@media (max-width: 1440px) {
    ul.custom-menu.dropdown-menu {
        width: 70vw;
        left: -4vw;
        padding: 15px;
    }
}

@media (max-width: 1300px) {

    ul.custom-menu.dropdown-menu {
        width: 76vw;
        left: -10vw;
        padding: 15px;
        height: 75vh;
        overflow-y: auto;
        top: 35px;
        border: 2px solid white !important;
    }

    .case-item .btn {
        font-size: 0.7rem;
    }

    .service-item {
        padding: 45px 10px;
    }
}

@media only screen and (max-width: 1200px) and (min-width: 1000px) {
    ul.custom-menu.dropdown-menu a.btn-link {
        font-size: 11px;
        padding: 2px 0px;
    }

    .case-item .badge {
        font-size: 8px;
    }

    .resumes .slide>div::after {
        width: 75.5%;
    }

    .d-flex.flex-md-row>div {
        width: 48%;
    }

    ul.custom-menu.dropdown-menu .col-md-6 {
        padding-left: 10px;
    }

    .service-item {
        padding: 45px 10px;
    }

    ul.custom-menu.dropdown-menu {
        left: -7.5vw;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0 15px;
    }

    .img-container {
        position: relative;
        height: 350px;
    }

    .blog-section {
        align-items: center;
        justify-content: center;
    }

    .feature-card-row .col-md-12.row .col-md-6 {
        width: 100%
    }

    .feature-card-row .col-md-12.row {
        padding-bottom: 50px
    }

    .feature-cards>div {
        width: 50%
    }

    .blog-section .col-lg-4 {
        width: 50%;
    }

    .blog-card__info h3 {
        font-size: 20px;
    }

    .resume-benifits .col-lg-6 {
        width: 100%;
    }

    .job-card-buttons button {
        font-size: 12px
    }
}

@media (max-width: 1000px) {
    .banner_inner_image {
        width: 300px;
        filter: opacity(0.5);
    }

    .questions_data {
        min-height: 420px;
        max-height: 420px;
    }

    .course_card {
        width: 100%;
    }

    .service-item .service-icon {
        top: -42%;
    }

    .service-item {
        padding: 45px 25px;
    }

    .tab-container .tabs {
        transform: scale(0.6);
    }

    div#v-pills-tab {
        padding-bottom: 50px;
    }

    .process-right:after {
        display: none;
    }

    .navbar .navbar-nav .nav-item:last-child {
        border-left: none !important;
    }

    .search-type {
        padding-left: 20px;
    }

    ul.custom-menu.dropdown-menu {
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }

    .hero-header .w-50 {
        width: 100% !important;
    }

    .searched-jobs {
        height: 45vh;
    }

    .height-113 {
        height: 75vh !important;
    }

    ul.custom-menu.dropdown-menu .col-md-6 {
        flex-direction: column
    }

    .features_slider .slick-list.draggable {
        padding: 100px 0 !important;
    }

    .process-box {
        height: auto;
    }

    .features_slider .service-item {
        height: 910px;
    }

    .img-container {
        position: relative;
        height: 320px;
        margin-bottom: 50px;
    }

    .traffic-loader {
        right: -10px !important;
        width: 85px !important;
        height: 85px !important;
    }

    .navbar {
        height: 100px;
    }



    a.case-overlay>div.d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .features_slider .service-item .service-icon {
        top: -16% !important;
    }

    .slider_tabs .slick-arrow {
        top: 40%;
    }

    .slider_tabs .slick-prev {
        left: 8%;
    }

    .wrapper2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .pricing-table2 thead tr:first-child th:not(:first-child) span:first-child::after,
    .pricing-table2 thead tr:first-child th:not(:first-child) span:last-child::after {
        width: 12px;
        top: 44%;
    }

    .pricing-table2 thead tr:first-child th p {
        transform: translate(-55%, -60%);
    }

    .pricing-table2 thead tr:first-child th:nth-child(3) span:first-child::after,
    .pricing-table2 thead tr:first-child th:nth-child(3) span:last-child::after {
        width: 65px;
    }

    .pricing-table2 thead tr:first-child th:nth-child(3) p {
        transform: translate(-60%, -60%);
    }

    .d-flex.flex-md-row>div {
        width: 48%;
    }

    .transparent-card {
        padding: 20px !important;
        display: inline-block
    }

    .job .wrapper {
        padding: 30px 0;
    }

    .job-card-buttons {
        flex-wrap: wrap;
    }

    .feature-card-row .col-md-12.row .col-md-6 {
        width: 100%
    }

    .wrapper {
        grid-template-columns: repeat(2, 1fr);

    }

    .search-bar {
        width: 250px !important;
    }

    .search-type {
        width: 185px;
    }

    .search-bar .select2-container {
        width: 100% !important;
    }

    .ocrloader {
        height: 100%;
    }

    .file-upload-view {
        height: 100%;
        width: 100%;
    }

    .slick-next {
        left: auto;
        right: -5%;
    }
}



@media (max-width: 700px) {

    .col-md-4.border-end.border-2.border-dark {
        border-right: 0 !important;
        border-bottom: 2px solid !important;
    }

    .d-flex>.position-relative.w-50 {
        width: 100% !important;
    }

    ul.custom-menu.dropdown-menu .col-md-6:not(:nth-child(even), :last-child)::after {
        content: "";
        position: absolute;
        width: 3px;
        height: 90%;
        background-color: var(--secondary);
        top: auto;
        right: 50%;
        bottom: 0;
        transform: translateY(50%) rotate(90deg);
    }

    .course_card {
        margin-left: 10px;
    }

    .ps-5.testimonial-item {
        padding-left: 25px !important;
    }

    .feature-card-row {
        justify-content: center;
    }



    .banner_inner_image {
        width: 235px;
        filter: opacity(0.5);
    }

    .resumes .slide>div {
        scale: 0.9;
    }

    .hero-header .col-lg-12 {
        padding: 130px 25px 0px;
    }

    .img-container {
        position: relative;
        height: 200px;
        margin-bottom: 50px;
    }

    .resumes .slide>div::after {
        width: 100%;
    }

    .resumes .slide>div:hover {
        scale: 1;
    }

    .d-flex.flex-md-row>div {
        width: 100%;
    }

    .resumes img {
        width: 100%;
    }

    .wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .tab-container .tabs {
        transform: scale(0.6);
    }

    div#v-pills-tab {
        padding-bottom: 50px;
    }

    .process-right:after {
        display: none;
    }

    .navbar .navbar-nav .nav-item:last-child {
        border-left: none !important;
    }

    ul.custom-menu.dropdown-menu {
        width: 100%;
        height: 50vh;
        overflow-y: auto;
    }

    ul.custom-menu.dropdown-menu .col-md-6:not(:nth-child(3n), :last-child) {
        border-right: none !important;
    }

    .features_slider .slick-list.draggable {
        padding: 100px 0 !important;
    }

    .process-box {
        height: auto;
    }

    .features_slider .service-item {
        height: 910px;
    }

    .traffic-loader {
        right: -18px !important;
        width: 60px !important;
        height: 60px !important;
    }

    .navbar {
        height: 100px;
    }

    .hero-header {
        margin-top: -120px;
    }

    a.case-overlay>div.d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .features_slider .service-item .service-icon {
        top: -16% !important;
    }

    .slider_tabs .slick-arrow {
        top: 40%;
    }

    .slider_tabs .slick-prev {
        left: 8%;
    }

    .wrapper2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .pricing-table2 thead tr:first-child th:not(:first-child) span:first-child::after,
    .pricing-table2 thead tr:first-child th:not(:first-child) span:last-child::after {
        width: 12px;
        top: 44%;
    }

    .pricing-table2 thead tr:first-child th p {
        transform: translate(-55%, -60%);
    }

    .pricing-table2 thead tr:first-child th:nth-child(3) span:first-child::after,
    .pricing-table2 thead tr:first-child th:nth-child(3) span:last-child::after {
        width: 65px;
    }

    .pricing-table2 thead tr:first-child th:nth-child(3) p {
        transform: translate(-60%, -60%);
    }

    .transparent-card {
        padding: 20px !important;
    }

    .job .wrapper {
        padding: 30px 0;
    }

    .job-card-buttons {
        justify-content: center !important;
        flex-wrap: wrap;
    }

    .search-bar {
        width: 100px !important;
    }

    .search-bar .select2-container {
        width: 100% !important;
    }

    .ocrloader {
        height: 100%;
    }

    .file-upload-view {
        height: 100%;
        width: 100%;
    }
}

.btn-link {
    color: #fff;
}
