body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    font-family: "f1" !important;
}

:root {
    --primary: #0c2773;
    --secondary: #ffe401;
}

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

/* ===== Scrollbar CSS ===== */
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: #fff;
}

*::-webkit-scrollbar-thumb {
    background-color: #ffe401;
    background-image: -webkit-linear-gradient(45deg,
            rgba(255, 255, 255, 0.2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            transparent 75%,
            transparent);
    border-radius: 10px;
    border: 3px solid #ffffff;
}

a {
    text-decoration: none !important;
    color: #000;
}

.owl-dots,
.owl-nav {
    display: none;
}

p {
    font-size: 15px;
    line-height: 30px;
    color: #000 !important;
    letter-spacing: 0.5px;
}

ul {
    list-style: none;
    padding-left: 0 !important;
    margin: 0 !important;
}

@font-face {
    font-family: "f1";
    src: url("../fonts/Figtree-Regular.ttf");
}

@font-face {
    font-family: "f2";
    src: url("../fonts/Figtree-Medium.ttf");
}

@font-face {
    font-family: "f3";
    src: url("../fonts/Figtree-Bold.ttf");
}

.clrw {
    color: #fff !important;
}

.clrb {
    color: #0c2773;
}

/* common */
.w-95 {
    margin: auto !important;
    width: 95% !important;
}

.w-90 {
    margin: auto !important;
    width: 90% !important;
}

.w-80 {
    margin: auto !important;
    width: 80% !important;
}

.w-lg-70 {
    margin: auto !important;
    width: 70% !important;
}

.d-flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.d-flex-al {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.d-flex-jc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.d-flex-jc-ac {
    display: flex;
    flex-wrap: wrap;
    align-items: center !important;
    justify-content: center;
}

.d-flex-al-jb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.d-ac {
    display: flex;
    align-items: center;
}

/* common end */

/* button starts */

.btn-apply {
    background: #fff;
    color: #0c2773 !important;
    font-family: "f2";
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
    border: 0;
}

/* button ends */

/* navbar starts */
.navbarscr {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    transition: background-color 0.3s ease;
    background: linear-gradient(to bottom, #00000060, #00000000) !important;
    z-index: 1000;
}

.navbarscr.scrolled {
    background: linear-gradient(to bottom, #000000cf, #00000000) !important;
    /* Change to your desired color */
}

.navbarscr::before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    /* backdrop-filter: blur(50px); */
    z-index: -1;
}

.navbarscr::after {
    content: "";
    top: 0;
    left: -100%;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: 0.8s;
}

.navbarscr:hover::after {
    left: 100%;
}

.navbarscr img {
    width: 200px;
}

.navbarscr .navbar-brands {
    position: absolute;
    top: 0;
    background: #fff;
    padding: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbarscr .nav-bgs .nav-item {
    margin: 0 4px;
}

.navbarscr img {
    width: 200px;
}

.navbarscr .nav-bgs .nav-link {
    color: #fff;
    font-size: 14px;
    font-family: "f2";
}

.navbarscr .nav-bgs a.active {
    color: var(--secondary) !important;
}

.navbarscr .nav-bgs .dropdown-menu {
    width: 100%;
    height: 400px;
    overflow-x: hidden;
    overflow-y: scroll;
    border-radius: 5px;
    border: none;
    display: none;
    background: #fff;
    box-shadow: 0px 10px 20px #00000026;
}

.navbarscr .nav-bgs .dropdown-menu.show {
    display: block;
    transition: 0.5s ease-in-out;
}

.mega-dropdown {
    position: static !important;
}

.dr_item {
    color: #fff !important;
}

.dr_item:hover {
    background: none !important;
}

.cre_nav {
    background: #fff;
    padding: 0px 10px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.cre_nav img {
    width: 45px !important;
    height: 45px !important;
    margin-right: 10px;
    border-radius: 15px;
}

.cre_nav h2 {
    font-size: 16px;
    color: #000 !important;
    margin: 0;
    font-family: "f2";
}

.cre_nav:hover {
    background: #fff8ed;
    transition: 0.3s ease;
}

.mega-content .mega_li {
    margin: 15px 0px;
}

.mega-content .mega_submenu {
    padding: 10px;
    font-size: 14px;
    font-family: "f2";
    color: #000 !important;
}

.nav_icon {
    background: #ffda30;
    padding: 5px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

.nav_icon img {
    width: 20px;
}

.what_link {
    width: 100%;
    display: flex;
    align-items: center;
    /* padding: 5px;
    box-shadow: 0px 5px 8px rgb(0 0 0 / 16%); */
}

.nav_contact img {
    width: 50px;
    margin-right: 10px;
}
/* locations */
.locations .loc_place {
    background-color: #fff;
    box-shadow: 2px 2px 4px 1px rgb(0 0 0 / 10%);
    border: 1px solid #e3e01e;
    width: auto;
    padding: 0px 25px;
    border-radius: 6px;
    text-align: center;
    margin: 10px 10px;
    padding: 10px;
}

.loc_place a {
    margin: 0 !important;
    color: #000000 !important;
    font-family: "f3";
}
.locations .heading_text_1 h2 {
    font-size: 25px;
    font-family: "f3";
    color: #0c2773 !important;
    margin-bottom: 20px;
}

.locations .heading_text_1 p {
    color: #000000;
}
/* locations end*/
.outline_btn {
    border: 1px solid #fff;
    padding: 10px 12px;
    border-radius: 5px;
    transition: 0.3s ease;
}

.outline_btn a {
    color: #fff !important;
    font-size: 14px;
    font-family: "f2";
    transition: 0.3s ease;
}

.outline_btn:hover {
    background: #fff;
    transition: 0.3s ease;
}

.outline_btn:hover a {
    color: #0c2773 !important;
    transition: 0.3s ease;
}

/* navbar ends */

/* humbar menu */
.menu-btn {
    height: 32px;
    width: 40px;
    border: 0 !important;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
    background: #fff;
    content: "";
    position: absolute;
    margin-top: 9px;
    transform: rotate(180deg);
    transition: 0.5s ease-in-out;
    /* animation: width_anim 0.5s infinite ease-in-out forwards alternate-reverse; */
    width: 28px;
    height: 3px;
    border-radius: 5rem;
}

.menu-btn span::before {
    animation-delay: 0.1s;
}

.menu-btn span::after {
    animation-delay: 0.2s;
}

.menu-btn span::before {
    margin-top: -8px;
}

.menu-btn span::after {
    margin-top: 8px;
}

.menu-btn.active span {
    background: transparent;
}

.menu-btn.active span,
.menu-btn.active span::before,
.menu-btn.active span::after {
    animation: none;
}

.menu-btn.active span::before {
    margin-top: 0;
    transform: rotate(45deg);
}

.menu-btn.active span::after {
    transform: rotate(-45deg);
    margin-top: 0;
}

/* humbar menu */

/* banner starts */

.ban-design {
    position: relative;
}

.banner_btm {
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 100%;
}

.banner_btm img {
    width: 100%;
}

/* bannre ends */

/* banner audio starts */

.video-ban {
    position: relative;
}

#audio-control {
    position: absolute;
    top: 15%;
    right: 10px;
    background: #ffffff9d;
    padding: 10px;
    border-radius: 100px;
    text-align: center;
    width: 30px;
    height: 30px;
    padding: 4px;
    box-shadow: 0 4px 9px 0 rgb(0 0 0 / 20%);
    cursor: pointer;
}

#audio-control i {
    font-size: 16px;
    color: #fff;
}

/* banner audio ends */

/* our clients starts */

.home_clients h2 {
    color: #0c2773;
    font-family: "f3";
    font-size: 35px;
    margin-bottom: 10px;
}

.client_slider img {
    width: 100px !important;
    height: 100px !important;
    animation: scroll 50s linear infinite;
}

.slide-track {
    width: 100%;
    display: flex;
    gap: 3em;
    overflow: hidden;
}

.client_slider {
    margin-top: 40px;
    background-color: whitesmoke;
    border-radius: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translatex(-1000%);
    }
}

/* our clients ends */

/* home service starts */

.title_section h2 {
    font-family: "f3";
    font-size: 35px;
    color: #0c2773;
    margin-bottom: 10px;
}

.rocket_img img {
    width: 150px;
}

.service_card {
  width: 90%;
  margin: 0 auto;
  /* box-shadow:
    width: 90%;
    margin: 0 auto;
    /* box-shadow: 
    12px 12px 16px 0 rgba(255, 255, 255, 0.3) inset,
    -8px -8px 12px 0 rgba(0, 0, 0, .11) inset; */
    padding: 20px;
    border-radius: 10px;
    border-radius: 30px;
    background: #f4f8ff;
    box-shadow: 10px 10px 20px 0px rgba(199, 213, 239, 0.4),
        -10px -10px 10px 0px rgba(199, 213, 239, 0.4) inset,
        10px 10px 30px 0px #fff inset;
    height: 100%;
}

.service_img {
    background: #dfe8ff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.service_img img {
    width: 100%;
    transition: 0.3s ease;
}

.service_card .service_content h3 {
    font-family: "f3";
    font-size: 20px;
    color: #0c2773;
}

.service_card .service_content p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
}

/* CSS */
.org_btn a {
    margin: 10px 0px;
    padding: 10px 20px;
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: #fff !important;
    border-radius: 10px;
    display: inline-block;
    font-family: "f2";
    box-shadow: 0px 0px 14px -7px #f09819;
    background-image: linear-gradient(45deg,
            #ff512f 0%,
            #f09819 51%,
            #ff512f 100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.org_btn button {
    margin: 10px 0px;
    padding: 10px 20px;
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: #fff !important;
    border-radius: 10px;
    display: inline-block;
    font-family: "f2";
    box-shadow: 0px 0px 14px -7px #f09819;
    background-image: linear-gradient(45deg,
            #ff512f 0%,
            #f09819 51%,
            #ff512f 100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    border: 0 !important;
}

.service_card:hover .org_btn a {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.org_btn a:active {
    transform: scale(0.95);
}

.service_card:hover .service_img img {
    transform: scale(1.2);
    transition: 0.3s ease;
}

/* home service ends */

/* home about starts  */
.home_about {
    background: #ffedd4;
}

.about_img img {
    width: 100%;
}

/* home about ends */

/* home achievement starts */

.counter {
    color: #f51c1c;
    font-family: "Baloo 2", cursive;
    text-align: center;
    width: 200px;
    height: 200px;
    padding: 20px;
    margin: 0 auto;
    position: relative;
}

.counter:before,
.counter:after {
    content: "";
    width: 200px;
    height: 200px;
    border: 15px solid #f51c1c;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
}

.counter:after {
    height: 187px;
    width: 187px;
    border: 3px solid #f51c1c;
    border-right: 3px solid transparent;
}

.counter .counter-content {
    background: #fff;
    width: 160px;
    height: 160px;
    padding: 45px 20px 20px;
    border-radius: 50%;
    box-shadow: 10px 10px 6px -6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.counter .counter-content:before,
.counter .counter-content:after {
    content: "";
    background: linear-gradient(45deg, #fe8605, #f51c1c);
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 50% 50% 0 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}

.counter .counter-content:after {
    background: #fff;
    width: calc(100% - 25px);
    height: calc(100% - 25px);
    border-radius: 50%;
}

.counter h3 {
    font-size: 17px;
    font-family: "f2";
    text-transform: uppercase;
    margin: 0 0 7px 0;
}

.counter .counter-value {
    font-size: 30px;
    font-weight: 600;
    display: block;
}

.counter .counter-icon {
    color: #fff;
    font-size: 22px;
    position: absolute;
    bottom: 23px;
    right: 30px;
    z-index: 1;
}

.counter.purple {
    color: #e56000;
}

.counter.purple:before {
    border: 15px solid #e56000;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent;
}

.counter.purple:after {
    border: 3px solid #e56000;
    border-right: 3px solid transparent;
}

.counter.purple .counter-content:before {
    background: linear-gradient(45deg, #ffc300, #e56000);
}

.counter.blue {
    color: #007be9;
}

.counter.blue:before {
    border: 15px solid #007be9;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent;
}

.counter.blue:after {
    border: 3px solid #007be9;
    border-right: 3px solid transparent;
}

.counter.blue .counter-content:before {
    background: linear-gradient(45deg, #75f2fd, #007be9);
}

.counter.green {
    color: #10ce29;
}

.counter.green:before {
    border: 15px solid #10ce29;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent;
}

.counter.green:after {
    border: 3px solid #10ce29;
    border-right: 3px solid transparent;
}

.counter.green .counter-content:before {
    background: linear-gradient(45deg, #6dff1e, #00ba19);
}

@media screen and (max-width: 990px) {
    .counter {
        margin-bottom: 40px;
    }
}

/* home achievement ends */

/* why choose us starts */

.why_choose {
    background: url("../img/why_choose_background.webp");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 40px 0px;
    background-position: center center;
}

.why_choose:before {
    background: #00000050;
    backdrop-filter: blur(10px);
    position: absolute;
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.z_front {
    position: relative;
    z-index: 1;
}

.why_choose .title_section h2,
.why_choose .title_section p {
    color: #fff !important;
}

.why_choose .choose_card {
    width: 90%;
    margin: 0 auto;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    transition: 0.5s ease;
    height: 100%;
}

.choose_icon img {
    width: 120px;
}

.why_choose .choose_card h3 {
    font-family: "f3";
    font-size: 20px;
    color: #0c2773;
}

.why_choose .choose_card:hover {
    transition: all 0.5s ease;
    transform: translateY(-10px);
}

/* why choose us ends */

/* innovatice process starts */
.margin_y {
    margin: 40px 0px;
}

.innoprocess_card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1);
    padding: 60px 40px 40px 40px;
    position: relative;
    height: 100%;
    width: 90%;
    margin: 0 auto;
}

.inno_icon {
    position: absolute;
    top: -40px;
    left: 40px;
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #ffedd4;
    transition: 0.3s ease;
}

.inno_icon img {
    width: 50px;
}

.innoprocess_card h3 {
    font-family: "f3";
    font-size: 20px;
    color: #0c2773;
}

.innoprocess_card:hover .inno_icon {
    transform: translateY(10px);
}

/* innovative process ends */

/* technology we use starts */
.tech_use {
    background: #ffedd4;
}

.mis-tab .nav-pills .nav-link.active {
    background: linear-gradient(45deg,
            #ff512f 0%,
            #f09819 51%,
            #ff512f 100%) !important;
    color: #fff !important;
    font-family: "f2";
}

.mis-tab .nav-item {
    margin: 0px 15px;
}

.mis-tab .nav-pills {
    justify-content: center;
}

.mis-tab .nav-pills .nav-link {
    border: 1px solid #f15722;
    color: #666666 !important;
    font-family: "f2";
    width: 160px;
    text-align: center;
}

.technology_used_container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.tech_card {
    margin: 0 20px 20px 20px;
}

.tech_icon {
    background: #fff;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    transition: all 0.2s ease-in-out;
}

.tech_card:hover .tech_icon {
    transform: scale(1.2);
}

.tech_card .tech_icon img {
    width: 60px;
}

.tech_card p {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    font-family: "f2";
    color: #0c2773 !important;
}

/* technology we use ends */

/* testimonial starts */
.testimonial_section h2 {
    font-family: "f3";
    font-size: 35px;
    color: #0c2773;
}

.google_rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.google_rating .star {
    display: flex;
    align-items: center;
}

.google_rating .st_ic {
    color: #fc9400;
}

.google_rating p {
    font-family: "f3";
    color: #000 !important;
    margin: 0;
}

.google_rating p img {
    height: 20px;
    margin-left: 5px;
}

.smiley_icon {
    margin-top: 50px;
}

.review_bg {
    background: #eef2fe;
    position: relative;
    padding: 60px;
    border-radius: 30px 0px 0px 30px;
}

.test_sec {
    padding-left: 60px;
}

.testimonial_card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.testimonial_img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    margin-right: 10px;
}

.testimonial_img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.testimonial_card .testimonial_name h4 {
    font-family: "f3";
    font-size: 20px;
    color: #0c2773;
    margin-bottom: 5px;
}

.testimonial_card .testimonial_name p {
    font-family: "f2";
    font-size: 14px;
    line-height: 15px;
    margin: 0;
}

.testimonial_name .st_ic {
    color: #fc9400;
    font-size: 12px;
}

/* testimonial ends */

/* location starts */

.reach-card {
    background: #fff;
    padding: 15px;
    box-shadow: 0 10px 20px #307cff29;
    height: 100%;
}

.reach-inv {
    background: #f0f3fd;
    padding: 15px;
    height: 100%;
}

.reach-sec .reach-icon img {
    margin-right: 20px;
}

.reach-sec .reach-tit h5 {
    color: #0c2773;
    font-family: "f2";
    margin: 0;
}

.reach-sec a {
    font-family: "f1";
    font-size: 16px;
    line-height: 1.6;
    color: #000 !important;
    cursor: pointer;
}

.reach-sec li {
    margin-bottom: 10px;
}

.reach-overlay {
    margin-bottom: -95px;
}

/* location ends */

/* footer starts */

.foot_er {
    background: url("../img/footer-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px 40px;
}

.foot_er h5 {
    color: #0c2773;
    font-family: "f3";
    margin-bottom: 20px;
}

.foot_er li {
    margin-bottom: 15px;
}

.foot_er a {
    color: #000 !important;
    font-size: 16px;
}

.social-con ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-con ul li {
    margin: 0px 10px 10px;
}

/* footer ends */

/* home our works starts */

.vow_card {
  /* background: linear-gradient(74deg, rgba(122, 61, 247, 1) 0%, rgba(232, 123, 156, 1) 100%); */
  width: 95%;
  margin: 0px auto;
  border-radius: 10px;
    background: linear-gradient(74deg,
            rgba(122, 61, 247, 1) 0%,
            rgba(232, 123, 156, 1) 100%);
    width: 95%;
    margin: 0px auto;
    border-radius: 10px;
}

.mithron_card {
    background: linear-gradient(74deg,
            rgb(85, 255, 117) 0%,
            rgba(49, 163, 59, 1) 100%);
    width: 95%;
    margin: 0px auto;
    border-radius: 10px;
}

.pariseva_card {
    background: linear-gradient(74deg,
            rgb(255, 92, 163) 0%,
            rgb(152, 20, 77, 1) 100%);
    width: 95%;
    margin: 0px auto;
    border-radius: 10px;
}

.meat_card {
    background: linear-gradient(74deg,
            rgb(255, 92, 92) 0%,
            rgb(181, 0, 0) 100%);
    width: 95%;
    margin: 0px auto;
    border-radius: 10px;
}

.exito_card {
    background: linear-gradient(74deg,
            rgb(255, 228, 105) 0%,
            rgb(255, 218, 49) 100%);
    width: 95%;
    margin: 0px auto;
    border-radius: 10px;
}

.intertech_card {
    background: linear-gradient(74deg,
            rgb(83, 149, 255) 0%,
            rgb(114, 241, 255) 100%);
    width: 95%;
    margin: 0px auto;
    border-radius: 10px;
}

.home_works .work-heading {
    padding: 20px 20px 0px;
}

.home_works .work-heading h3 {
    font-family: "f3";
    font-size: 20px;
}

.home_works .work-heading p {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 23px;
}

.work-image-box img {
    width: 100%;
}

.work-image-box {
    position: relative;
}

.kn-btn {
    position: absolute;
    bottom: 0;
    opacity: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    transition: 0.8s ease;
}

.vow_card:hover .kn-btn {
    opacity: 1;
    transition: 0.8s ease;
}

.mithron_card:hover .kn-btn {
    opacity: 1;
    transition: 0.8s ease;
}

.pariseva_card:hover .kn-btn {
    opacity: 1;
    transition: 0.8s ease;
}

.meat_card:hover .kn-btn {
    opacity: 1;
    transition: 0.8s ease;
}

.exito_card:hover .kn-btn {
    opacity: 1;
    transition: 0.8s ease;
}

.intertech_card:hover .kn-btn {
    opacity: 1;
    transition: 0.8s ease;
}

.btn-design {
    background: #ffe401;
    box-shadow: 0 10px 20px #307cff29;
    color: #0c2773 !important;
    padding: 10px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-family: "f2";
    border: 0;
    cursor: pointer;
    font-size: 15px;
}

.btn-design .bx::before {
    margin-left: 12px;
    border-radius: 100%;
    background: #fff;
    padding: 4px;
    font-size: 20px;
}

/* home our works ends */

/* page banner starts */

.ban_imgg {
    background: #000;
}

.ban_imgg {
    position: relative;
    height: 80vh;
}

.ban_imgg img {
    opacity: 0.4;
    height: 100%;
    object-fit: cover;
}

.ban_imgg h1 {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    left: 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    font-family: "f3";
}

/* page banner ends */

/* about page starts */

.about_page h2 {
    font-family: "f3";
    font-size: 30px;
    color: #0c2773;
}

.about_page p {
    text-align: justify;
}

.about_card {
    margin: 0px auto;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgb(48 124 255 / 15%);
}

.about_md {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.about_md img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.about_name h3 {
    font-size: 18px;
    font-family: "f2";
}

.about_name p {
    margin: 0;
    font-size: 14px;
}

.about_page img {
    width: 100%;
}

.about_our_flow {
    background: url("../img/empty-room-with-chairs-desks.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px;
    position: relative;
}

.about_our_flow::before {
    position: absolute;
    background: #00000079;
    content: "";
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
}

.our_flow_title {
    position: relative;
    z-index: 11;
}

.our_flow_title h2 {
    color: #fff;
    text-align: center;
}

.our_flow_title p {
    color: #fff;
    text-align: center;
    margin: 0;
}

.flow_card {
    width: 95%;
    margin: 0px auto;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    height: 100%;
}

.flow_card h3 {
    font-family: "f3";
    font-size: 20px;
}

.flow_card p {
    color: #000;
    text-align: start;
    margin: 0;
}

.img_gfrt {
    position: relative;
    height: 70vh;
}

.img_gfrt img {
    height: 100%;
    object-fit: cover;
}

.img_gfrt i {
    position: absolute;
    top: 0;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffff;
}

.mission_card {
    background: #fff;
    /* border: 1.5px solid #000; */
    width: 90%;
    height: 100%;
    margin: 0px auto;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 10px 20px rgb(48 124 255 / 15%);
}

.misvis_icon {
    background: #ffda30;
    width: 80px;
    height: 80px;
    /* margin: 0px 0px 0px -69px; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 13px;
    transform: rotate(45deg);
    margin: 0px auto 30px;
}

.misvis_icon img {
    width: 50px;
    transform: rotate(315deg);
}

.misvis_con h3 {
    font-family: "f3";
    font-size: 20px;
}

.misvis_con p {
    margin: 0;
    text-align: start;
}

/* about page ends */

/* our work starts */

.our-work-title h2 {
    font-family: "f3";
    color: #0c2773;
    font-size: 30px;
}

.work-card {
    width: 95%;
    margin: 0px auto;
    background: #f4f5f9;
    border-radius: 10px;
}

.work-heading {
    padding: 20px 20px 0px;
}

.work-heading h3 {
    font-family: "f3";
    font-size: 20px;
    color: #0c2773;
}

.work-card .work-heading p {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #1d1a1a !important;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 23px;
    font-size: 16px;
}

.work-image-box img {
    width: 100%;
}

.work-image-box {
    position: relative;
}

.kn-btn {
    position: absolute;
    bottom: 0;
    opacity: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    transition: 0.8s ease;
}

.work-card:hover .kn-btn {
    opacity: 1;
    transition: 0.8s ease;
}

/* our work ends */

/* contact info starts */
.address_card {
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    text-align: center;
    padding: 30px;
    height: 100%;
}

.address_card img {
    width: 80px !important;
    margin-bottom: 20px;
}

.address_card h3 {
    font-family: "f3";
    font-size: 20px;
    color: #0c2773;
}

.contact_header h1 {
    font-family: "f3";
    font-size: 30px;
    color: #0c2773;
}

.address_card a {
    font-family: "f1";
    color: #000;
    font-size: 15px;
}

.contact_card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 10px 20px rgb(48 124 255 / 15%);
    height: 100%;
}

.contact_icon {
    background: #ffda30;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.contact_con h2 {
    font-size: 20px;
    font-family: "f3";
}

.contact_con p {
    margin-bottom: 8px;
    font-size: 14px;
}

.contact_con a {
    margin-bottom: 15px;
    font-size: 14px;
    color: #000 !important;
}

.cont_form {
    background: #f4f5f9;
    width: 95%;
    margin: 0px auto;
    padding: 15px;
    border-radius: 10px;
}

.cont_form h3 {
    font-family: "f3";
    color: #0c2773;
    font-size: 25px;
}

.field label {
    font-family: "f2";
    font-size: 18px;
    margin-bottom: 15px;
}

.field .form-control {
    padding: 15px !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 15px !important;
    margin-bottom: 15px;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #c9c9c9;
}

.contact_map h1 {
    font-family: "f3";
    font-size: 30px;
    color: #0c2773;
    text-align: center;
    margin-bottom: 20px;
}

/* contact info ends */

/* join our team starts */

.earth_img img {
    width: 100%;
}

.career_section img {
    width: 100%;
    border-radius: 10px;
}

.career_section h2 {
    font-family: "f3";
    color: #0c2773;
    font-size: 30px;
}

.career_section p {
    font-family: "f1";
    line-height: 2;
    font-size: 20px;
}

.side-arrow {
    position: relative;
}

.arrow-image {
    right: -155px;
    position: absolute;
    bottom: -120px;
    z-index: 1;
    width: 250px;
}

.left-design {
    position: relative;
}

.left-dots {
    left: -105px;
    position: absolute;
    top: -70px;
    z-index: -1;
    width: 250px;
}

.left-arrow {
    position: relative;
}

.left-arrow-img {
    left: -155px;
    position: absolute;
    bottom: -250px;
    z-index: 1;
    width: 250px;
}

.job-list h1 {
    font-family: "f3";
    font-size: 30px;
    text-align: center;
}

.job-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgb(48 124 255 / 15%);
    height: 100%;
    transition: all 0.8s ease;
}

.job-card h3 {
    font-family: "f3";
    font-size: 20px;
    color: #0c2773;
}

.job-card p {
    font-family: "f1";
    color: #000;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    line-height: 2;
    height: 90px;
}

.job-card img {
    width: 50px;
    border-radius: 100%;
    padding: 7px;
    margin: 10px 0;
}

.job-look .child-img:nth-child(odd) .job-card img {
    background: #ffc1072b;
}

.job-look .child-img:nth-child(even) .job-card img {
    background: #2196f321;
}

.job-card:hover {
    transition: all 0.8s ease;
    transform: translateY(-10px);
}

/* join our team ends */

/* career detail page starts */

/* .career-detail-banner {
    height: 30vh;
}
.career-detail-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
} */
.career-detail-banner {
    background: url("../img/blue-gradient-background-with-abstract-shape.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px;
    height: 60vh;
    position: relative;
}

.career_center {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.career-title h1 {
    font-family: "f3";
    font-size: 30px;
    color: #fff;
}

.career-title p {
    color: #fff !important;
}

.apply-btn .btn-apply {
    background: #fff;
    color: #0c2773 !important;
    font-family: "f2";
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
}

.apply-btn {
    transition: all 0.5s ease;
}

.apply-btn:hover {
    transition: all 0.5s ease;
    transform: translateY(-5px);
}

.career-description h2 {
    font-family: "f3";
    color: #0c2773;
    font-size: 25px;
}

.career-description .form-control {
    box-shadow: 0px 5px 10px rgb(0 122 235 / 0.15);
    font-size: 10px;
    border: 0;
}

.career-description ul {
    margin-bottom: 10px;
}

.career-description ul li {
    display: flex;
    font-size: 15px;
    margin-bottom: 10px;
}

.career-description .point-ic {
    margin-right: 5px;
}

.btn-resume {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    color: #0c2773 !important;
    border: 2px solid #0c2773 !important;
    cursor: pointer;
    margin: 20px 0px;
    font-family: "f3";
}

.form-elements label {
    font-family: "f2";
    font-size: 16px;
    margin-bottom: 10px;
}

.form-elements .form-control {
    padding: 15px 20px;
    font-family: "f1";
    font-size: 16px;
}

.form-elements input::placeholder {
    color: #c8c8c8;
}

.form-resume #file-chosen {
    margin-left: 0.3rem;
    font-family: sans-serif;
}

/* career detail page ends */

/* service main page */

.service_main_banner {
    background: url("../img/service-main-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 40px;
    background-position: bottom center;
    color: #fff;
}

.video_banner {
    background: url("../img/video_page_banner.webp");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 40px;
    background-position: top center;
    color: #fff;
    height: 90vh;
    position: relative;
}

.video_banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #000000, #00000000);
}

.z-index {
    position: relative;
    z-index: 1;
}

.service_main_banner img {
    width: 90%;
    margin: auto;
}

.service_main_banner p {
    color: #fff !important;
}

.service_main_banner h1 {
    font-family: "f3";
    font-size: 35px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.service_main_about img {
    width: 100%;
}

.service_main_content h2 {
    font-family: "f3";
    font-size: 30px;
    color: #0c2773;
}

.service_main_about p {
    text-align: justify;
}

.service_who_we {
    background: #fff6ce;
    padding: 40px;
    text-align: center;
}

.service_who_we p {
    text-align: center;
}

.who_card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    width: 80%;
    margin: 0 auto;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 16%);
}

.who_card img {
    width: 50px;
    margin-right: 10px;
}

.who_card h6 {
    font-family: "f3";
    font-size: 18px;
    margin: 0;
}

.product_tech-title p {
    text-align: center;
}

.service_tab .nav-pills {
    justify-content: center;
}

.service_tab {
    position: sticky;
    top: 10%;
    padding: 20px;
    background: #eaeaea;
    z-index: 11;
    border-radius: 10px;
}

.service_tab h3 {
    font-size: 15px;
    font-family: "f2";
    margin: 0;
    text-align: center;
}

.service_tab .nav-pills .nav-link.active {
    background: #ffda30 !important;
    color: #000 !important;
}

.ser_tab_content h4 {
    font-family: "f3";
    font-size: 25px;
    color: #0c2773;
}

.ser_tab_content p {
    text-align: justify;
}

.ser_tab_content img {
    width: 100%;
    border-radius: 10px;
}

/* service main page */

/* service banner starts */

.service_banner {
    /* background: linear-gradient(to right, #0052d4, #65c7f7, #9cecfb); */
    background: linear-gradient(to right, #0051d4, #65bbf7, #9cc7fb);
    padding: 100px 40px 40px;
    color: #fff;
}

.service_banner h1 {
    font-family: "f3";
    font-size: 40px;
}

.service_banner img {
    width: 100%;
}

/* service banner ends */

/* service content starts */

.service_content h2 {
    font-family: "f3";
    font-size: 30px;
    color: #0c2773;
}

.service_content img {
    width: 90%;
    margin: 0px auto;
    border-radius: 50px;
}

.service_about_cont p {
    text-align: justify;
}

.service_about_cont h3 {
    font-size: 20px;
    font-family: "f3";
    color: #0c2773;
}

.pro_tab .nav-pills {
    justify-content: center;
}

.pro_tab {
    position: sticky;
    top: 10%;
    background: #fff6ce;
    padding: 20px;
    z-index: 11;
    border-radius: 10px;
}

.pro_tab h3 {
    font-size: 17px;
    font-family: "f2";
    margin: 0;
}

.pro_tab .nav-pills .nav-item {
    width: 100%;
}

.pro_tab .nav-pills .nav-link.active {
    background: #ffda30 !important;
    color: #000 !important;
}

.pro_tab_title h3 {
    font-family: "f3";
    color: #0c2773;
    font-size: 20px;
    margin-bottom: 10px;
}

.pro_tab_title p {
    font-family: "f2";
}

.pro_tab .nav-link {
    background: #fff !important;
    color: #000 !important;
    margin: 10px auto;
}

.nav-link h3 {
    font-size: 14px;
    color: #000;
}

.right_content h4 {
    font-family: "f3";
    font-size: 25px;
    color: #0c2773;
}

.right_content h5 {
    font-family: "f3";
    font-size: 18px;
    color: #000;
}

.right_content p {
    text-align: justify;
}

.ser-ic {
    color: #0c2773;
    font-size: 30px;
    background: #ffda30;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.right_content img {
    width: 100%;
    border-radius: 20px;
}

.service_benefit_card {
    width: 95%;
    margin: 0px auto;
    border-radius: 10px;
    border: 2px solid #000;
    padding: 20px;
    height: 100%;
    transition: 0.3s ease-in-out;
}

.service_benefit_card:hover {
    background: #ffda30;
}

.service_benefit_card:hover .why-icon img {
    background: #fff;
    transition: 0.3s ease-in-out;
}

.service_benefit_card .why-icon img {
    width: 55px;
    background: #ffda30;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

.service_benefit_card h4 {
    font-family: "f3";
    font-size: 20px;
    color: #252525;
}

.service_benefit_card p {
    text-align: justify;
}

.ali-cen {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* service content ends */

/* work detail banner */

.work-detail-ban {
    /* background: #F4F5F9; */
    background: linear-gradient(to right, #932252, #7d2147);
    padding: 100px 0px 40px;
}

.work-client-logo {
    background: #fff;
    padding: 10px;
    display: inline-block;
    border-radius: 10px;
    margin-bottom: 20px;
}

.work-client-logo img {
    width: 50px;
}

.work-banner-image img {
    width: 100%;
}

.work-banner-content {
    color: #fff;
}

.work-banner-content h1 {
    font-family: "f3";
    font-size: 30px;
}

.work-banner-content h2 {
    font-family: "f2";
    font-size: 20px;
}

.work-banner-content li {
    display: flex;
    margin-bottom: 10px;
    font-size: 15px;
    font-family: "f1";
}

.work-banner-content ul {
    margin: 20px 0px !important;
}

.work-banner-content h3 {
    font-family: "f3";
    font-size: 18px;
    margin: 0;
}

.dev-platform {
    display: inline-flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 5px;
    color: #000;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 16%);
}

.dev-platform img {
    width: 25px !important;
    border-radius: 0 !important;
}

.dev-platform li {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    margin-bottom: 0px;
}

.dev-platform p {
    font-size: 15px;
    margin: 0;
    padding: 0px 8px;
}

.dev-platform li:last-child::after {
    content: "";
    border-right: 1px solid transparent;
}

.dev-platform li:after {
    content: "";
    position: relative;
    right: -12px;
    border-right: 1px solid #bbb;
    height: 80%;
}

/* work detail banner */
/* work content starts */
.work_detail_content h2 {
    font-family: "f3";
    font-size: 30px;
    color: #0c2773;
}

.work_detail_content p {
    text-align: justify;
}

.mockup_image img {
    width: 90% !important;
    transition: all 1s ease-in-out;
    margin: 0 auto;
}

.owl-mockup .owl-item.center .item img {
    transform: scale(1.2);
}

.owl-mockup .owl-stage-outer {
    padding: 80px 0px 100px;
    margin-top: 30px;
}

.technology_used_container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.tech_card {
    margin: 0 20px 40px 20px;
}

.tech_icon {
    background: #fff;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    transition: all 0.2s ease-in-out;
}

.tech_icon:hover {
    /* box-shadow: #ffb134 0px 0px 12px 2px; */
    box-shadow: #ffe400 0px 0px 10px 2px;
}

.tech_card .tech_icon img {
    width: 50px;
}

.tech_card p {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    font-family: "f2";
}

/* work content ends */

/* excellence deserve starts */

.rating_card {
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 16%);
}

.rating_card img {
    width: 100%;
    margin-bottom: 10px;
}

.google_star {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.google_star p {
    color: #000;
    margin: 0;
    padding-right: 5px;
    font-family: "f2";
}

.re-star .st_ar {
    color: #ffb300;
}

/* excellence deserve ends */

/* service faq starts */

.syl h3 {
    font-family: "f4";
    font-size: 25px;
}

.ac-it .ac-he {
    font-family: "f3";
    font-size: 20px;
}

.ac-bo li {
    font-family: "f1";
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 30px;
}

.ac-he .accordion-button:not(.collapsed) {
    background: #ffda30 !important;
    color: #000 !important;
}

.accordion-button:focus {
    border: none !important;
    box-shadow: none !important;
}

/* service faq ends */

/* pricing starts */

.pricing_plan_title h1 {
    font-family: "f3";
    font-size: 40px;
    color: #0c2773;
}

.pricing_plan_title h2 {
    font-size: 20px;
    font-family: "f1";
}

.pricing_banner {
    background: url("../img/white-abstract-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 40px 40px;
}

/* pricing ends */

/* pricing plan starts */
.plan_tab .nav-pills {
    justify-content: center;
}

.plan_tab .nav-pills .nav-link.active {
    background: #ffda30 !important;
    color: #000 !important;
    border: 2px solid #ff060600 !important;
}

.plan_tab .nav-link {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    font-size: 14px;
    font-family: "f3";
    width: 150px;
    margin: 10px 0px;
    text-align: center;
}

.plan_tab .nav-item {
    margin: 0px 10px;
}
.seo_title h1{
    font-family: "f3";
    font-size: 30px;
    color: #0c2773;
    text-align: center;
}

.pricing_card {
    background: #fff;
    border: 2px solid #dddddd;
    width: 95%;
    margin: 0px auto;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.pricing_cardactive {
    background: #ffda30;
    border: 2px solid #dddddd00;
    width: 95%;
    margin: 0px auto;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.pricing_content h3 {
    font-family: "f3";
    font-size: 18px;
    margin: 0;
}

.pricing_content h4 {
    font-size: 35px;
    font-family: "f3";
    color: #000000;
    margin: 16px auto;
}

.pricing_content p {
    font-family: "f2";
    font-size: 15px;
}

.pricing_title p {
    background: #fff;
    border-radius: 20px;
    padding: 0px 10px;
    margin: 0;
    font-size: 12px;
    font-family: "f3";
    width: 106px;
    /* height: 28px; */
    text-align: center;
}

.buy_btn .btn-apply {
    background: #fff;
    color: #0c2773 !important;
    font-family: "f2";
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
}

.buy_btn .btn-applyy {
    background: #ffda30;
    color: #000 !important;
    font-family: "f2";
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
}

.pricing_fet {
    border-top: 1px solid #000;
}

.pricing_fet h5 {
    font-family: "f3";
    font-size: 15px;
    margin: 20px 0px;
}

.pricing_fet ul img {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    margin-top: 2px;
}

.pricing_fet li {
    font-size: 14px;
}

.pricing_fet li {
    display: flex;
    margin-bottom: 20px;
}

.year_title h2 {
    font-family: "f3";
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 0px;
    color: #0c2773;
}

/* pricing plan ends */

/* common enquiry starts */

.ser_cont {
    background: linear-gradient(to right, #c31432, #240b36);
    /* background: linear-gradient(to right, #373b44, #4286f4); */
    padding: 20px;
    color: #fff;
}

.ser_cont img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.ser_cont h6 {
    margin: 0;
    font-family: "f3";
}

.ser_cont a {
    margin: 0;
    font-family: "f2";
    color: #fff;
    transition: 0.2s;
    display: block;
}

.ser_cont a:hover {
    color: rgb(179, 179, 179);
    transition: 0.2s;
}

.wid_drop {
    width: 20% !important;
}

/* common enquiry ends */

.title-design h3 {
    font-family: "f3";
    color: #0c2773;
    margin-bottom: 20px;
}

/* blog starts */

.blog-card .img-blog img {
    width: 100%;
}

.img-blog .blog-cont {
    padding: 15px;
    box-shadow: 0 5px 20px #307cff2e;
    border-radius: 0 0 10px 10px;
    background: #fff;
}

.img-blog .blog-cont h5 {
    color: #0c2773;
    font-family: "f3";
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
}

.img-blog .blog-cont p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #1d1a1a !important;
    display: -webkit-box;
    line-height: 1.8;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
}

.img-blog .blog-cont .btn-design {
    margin: auto;
}

.blog-cont .fold-ic {
    font-size: 14px;
    margin-right: 5px;
}

.blog-cont .blog-cat a {
    font-size: 14px;
    font-family: "f2";
    background: #ffe401;
    display: inline-block;
    padding: 3px 8px;
    border-radius: 5px;
    cursor: pointer;
    color: #000 !important;
}

.mar-b {
    margin-bottom: 20px;
}

/* blog ends */

/* blog view starts */

.blg h2 {
    font-size: 30px;
    font-family: "f3";
}

.blg p {
    text-align: justify;
    line-height: 2;
    color: #000;
}

.blg img {
    width: 100%;
    border-radius: 5px;
    margin: 15px 0px;
}

.pc_ic {
    color: #ffe401;
}

.dt {
    background: #ffe401;
    padding: 5px 8px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 5px;
}

.dt h5 {
    font-family: "f3";
    font-size: 14px;
    margin: 0;
}

.dt_ic {
    font-size: 16px;
}

.rect-post {
    padding: 20px;
    box-shadow: 0 5px 20px #307cff2e;
}

.rect-post .img-cir img {
    width: 70px;
    height: 70px;
    border-radius: 5px;
}

.rect-post .img-cir h5 {
    font-size: 16px;
    font-family: "f2";
    color: #000;
}

.rect-post a {
    color: #000;
}

.rect-post .img-cir .post-date i {
    color: var(--primary);
    padding-right: 5px;
}

.post-date p {
    font-size: 14px;
    margin: 0;
}

.rect-post .borde-bot {
    padding: 10px;
    border-bottom: 1px solid #ededed;
}

.rect-post .borde-bot:last-child {
    border-bottom: 0px solid #ededed;
}

.rect-post li {
    margin: 5px;
    background: #ffe40026;
    padding: 3px 11px;
    border-radius: 12px;
    font-size: 12px;
}
.blog_category{
    padding: 20px;
    box-shadow: 0 5px 20px #307cff2e;
}
.blog_category .rig_ic{
    color: #ffe401;
    margin-right: 5px;
}
.blog_category li{
    margin: 10px 0px;
}
.blog_category li a{
font-family: "f2";
color: #000;
font-size: 14px;
}
.enquiry-post .but-abs h5 {
    color: #fff;
    margin: 15px 0;
}

.enquiry-post {
    background: url("../img/blog-en.jpg") no-repeat;    
    background-size: cover;
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
}

.enquiry-post .btn-design {
    margin: auto;
}

.blog-view {
    position: sticky;
    top: 0;
}

/* blog view ends */

/* blog category page starts */
.blog-category-page {
    padding-top: 60px;
}

.blog-category-title h1 {
    font-family: "f3";
    color: #0c2773;
    text-align: center;
    font-size: 30px;
}

.blog-category-title p {
    text-align: center;
}

.blog-category-date h4 {
    font-size: 14px;
    margin: 0;
    font-family: "f2";
    background: #ffe401;
    display: inline-block;
    padding: 3px 8px;
    border-radius: 5px;
    cursor: pointer;
    color: #000 !important;
}

/* blog category page ends */

/* enquiry pop starts */

.con_rig h4 {
    color: var(--primary);
    font-family: "f3";
    text-align: center;
}

.con_rig input::placeholder,
.con_rig textarea::placeholder {
    color: #cacaca;
}

.clse_btn {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    background: #ffda30;
    width: 35px;
    height: 35px;
    z-index: 1;
    color: #000;
    border-radius: 5px;
    padding: 7px;
}

.form-control,
.form-select {
    padding: 10px 12px !important;
    font-size: 13px !important;
    border: 1px solid #008dd129 !important;
    box-shadow: 0 7px 10px #0058d114;
}

label {
    font-size: 14px;
    font-family: "f2";
}

.mo-co {
    width: 350px !important;
    display: flex;
    justify-content: center;
}

/* enquiry pop ends */

/* product starts */

.company_rating h2 {
    color: #0c2773;
    font-size: 30px;
    font-family: "f3";
    text-align: center;
}

.company_rating p {
    text-align: center;
    font-size: 16px;
}

.product-tech-title h2 {
    font-family: "f3";
    font-size: 30px;
    color: #0c2773;
}

.product_banner {
    background: linear-gradient(to right, #fd5054, #c23133);
    padding: 100px 0px 40px;
    color: #fff;
}

.product_image img {
    width: 80%;
}

.product_content h1 {
    font-family: "f3";
    font-size: 30px;
    margin-bottom: 20px;
}

.product_content h2 {
    font-size: 20px;
    font-family: "f2";
    margin-bottom: 20px;
    line-height: 30px;
}

.product_content p {
    color: #fff !important;
}

.about_product h2 {
    font-family: "f3";
    font-size: 30px;
    color: #0c2773;
    text-align: center;
}

.about_product_image img {
    width: 50%;
    margin: auto;
}

.about_product_image p {
    text-align: justify;
}

.benefit_card {
    width: 90%;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    height: 100%;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
    text-align: center;
}

.benefit_card .why-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #fed40b;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto 15px;
}

.benefit_card .why-icon img {
    width: 50px;
    background: #ffffffc5;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

.benefit_card h4 {
    font-family: "f3";
    font-size: 20px;
    color: #252525;
}

.offer_card {
    width: 95%;
    margin: 0px auto;
    background: linear-gradient(to right, #8e9eab, #eef2f3);
    color: #fff;
    padding: 20px;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 16%);
}

.offer_con {
    width: 70%;
}

.offer_card h4 {
    font-family: "f3";
    font-size: 20px;
}

.offer_icon img {
    width: 100px;
}

/* product ends */

/* video Ad page */
.video_service .flip h2 {
    font-family: "f3";
    font-size: 20px;
    color: #fff;
}

.flip {
    position: relative;
}

.flip>.front,
.flip>.back {
    display: block;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-duration: 0.5s;
    transition-property: transform, opacity;
}

.flip>.front {
    transform: rotateY(0deg);
}

.flip>.back {
    position: absolute;
    opacity: 0;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: rotateY(-180deg);
}

.flip:hover>.front {
    transform: rotateY(180deg);
}

.flip:hover>.back {
    opacity: 1;
    transform: rotateY(0deg);
}

.flip.flip-vertical>.back {
    transform: rotateX(-180deg);
}

.flip.flip-vertical:hover>.front {
    transform: rotateX(180deg);
}

.flip.flip-vertical:hover>.back {
    transform: rotateX(0deg);
}

.flip {
    position: relative;
    margin: 0 auto 1em;
    width: 95%;
}

.video_service .flip .back a {
    color: #fff !important;
    font-size: 15px;
}

.video_service .flip .back i {
    font-size: 14px;
    margin-left: 3px;
}

.flip>.front,
.flip>.back {
    display: block;
    color: white;
    width: inherit;
    background-size: cover !important;
    background-position: center !important;
    width: 100%;
    height: 250px;
    padding: 1em 2em;
    background: #313131;
    border-radius: 10px;
}

.flip>.front p,
.flip>.back p {
    font-size: 0.9125rem;
    line-height: 160%;
    color: #999 !important;
}

.text-shadow {
    text-shadow: 0px 3px 5px #000;
}

/* video ad ends */

.main-timeline {
    padding: 25px 0;
}

.main-timeline:after {
    content: "";
    display: block;
    clear: both;
}

/* .main-timeline:before{
  content: '';
  background: linear-gradient(to right,#777 50%,#999 65%);
  height: 100%;
  width: 25px;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: 0;
} */
.main-timeline .timeline {
    width: calc(50% + 63px);
    margin: 0 0 30px;
    float: right;
    position: relative;
}

.main-timeline .timeline-content {
    color: #666;
    background: linear-gradient(to left, #ff7f23 65%, #df2947);
    text-align: center;
    min-height: 120px;
    padding: 20px 30px 20px 160px;
    border-radius: 100px;
    display: block;
    position: relative;
    z-index: 1;
}

.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.main-timeline .timeline-content:before {
    content: "";
    background: #fff;
    border-radius: 100px 0 0 100px;
    position: absolute;
    left: 130px;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.main-timeline .timeline-icon {
    color: #df2947;
    font-size: 45px;
    line-height: 100px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%);
    position: absolute;
    left: 15px;
    top: 50%;
}

.main-timeline .timeline-icon:before {
    content: "";
    background-color: #fff;
    border-radius: inherit;
    box-shadow: inherit;
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    right: 10px;
    z-index: -1;
}

.main-timeline .title {
    color: #df2947;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.main-timeline .description {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 20px;
    margin: 0;
}

.main-timeline .timeline:nth-child(even) {
    float: left;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 20px 160px 20px 30px;
}

.main-timeline .timeline:nth-child(even) .timeline-content:before {
    border-radius: 0 100px 100px 0;
    left: 0;
    right: 130px;
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
    left: auto;
    right: 15px;
}

.main-timeline .timeline:nth-child(4n + 2) .timeline-content {
    background: linear-gradient(to right, #fdcc49 65%, #f74e00);
}

.main-timeline .timeline:nth-child(4n + 2) .timeline-icon,
.main-timeline .timeline:nth-child(4n + 2) .title {
    color: #f74e00;
}

.main-timeline .timeline:nth-child(4n + 3) .timeline-content {
    background: linear-gradient(to left, #7ee6fc 65%, #378ae6);
}

.main-timeline .timeline:nth-child(4n + 3) .timeline-icon,
.main-timeline .timeline:nth-child(4n + 3) .title {
    color: #378ae6;
}

.main-timeline .timeline:nth-child(4n + 4) .timeline-content {
    background: linear-gradient(to right, #aa84f1 65%, #4f29b0);
}

.main-timeline .timeline:nth-child(4n + 4) .timeline-icon,
.main-timeline .timeline:nth-child(4n + 4) .title {
    color: #4f29b0;
}

@media screen and (max-width: 767px) {
    .main-timeline:before {
        display: none;
    }

    .main-timeline .timeline {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {

    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(even) .timeline-content {
        padding: 145px 20px 20px;
        border-radius: 50px;
    }

    .main-timeline .timeline-content:before,
    .main-timeline .timeline:nth-child(even) .timeline-content:before {
        top: 125px;
        right: 0;
        left: 0;
        border-radius: inherit;
    }

    .main-timeline .timeline-icon,
    .main-timeline .timeline:nth-child(even) .timeline-icon {
        transform: translateY(0) translateX(-50%);
        left: 50%;
        top: 10px;
        right: auto;
    }
}

/*thank you file*/

@font-face {
    font-family: f1;
    src: url(..fonts/Asenik-Medium.otf);
}

@font-face {
    font-family: f2;
    src: url(..fonts/Asenik-Regular.otf);
}

@font-face {
    font-family: f3;
    src: url(..fonts/Asenik-Bold.otf);
}

.thankyou h1 {
    font-size: 70px;
    font-family: f3;
    text-align: center;
    color: #f4f5f9;
    margin-bottom: 10px;
}

.thankyou p {
    font-family: f1;
    font-size: 25px;
    text-align: justify;
    /* line-height: 30px; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.d-flex-jc-ac {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.d-flex-jc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.d-flex-ac {
    display: flex;
    align-items: center;
}

.bg {
    background: linear-gradient(#f8f9ff, #8c6ffe);
    /* padding-top: 8%; */
    height: 100vh;
}

.logo img {
    width: 270px;
    margin-top: 50px;
}

.logo {
    margin-top: 0 !important;
}

/* side icon start */

.social_icon {
    position: fixed;
    right: 0;
    bottom: 3%;
    z-index: 111;
}

.social_icon ul .en_quiry {
    font-size: 15px;
    background: linear-gradient(317deg, #ff771b, #e45d00);
    border-radius: 5px 0px 0px 5px;
    color: #fff;
    display: inherit;
    word-wrap: break-word;
    padding: 5px 10px;
    position: absolute;
    width: 30px;
    bottom: 220px;
    right: 0;
    z-index: 1000;
}
.social_icon ul .en_what {
    font-size: 20px;
    background: linear-gradient(317deg, #1cf743, #116814);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    color: #fff;
    position: absolute;
    bottom: 150px;
    right: 0;
    justify-content: center;
}

/* Circle */

.social_icon a:hover {
    animation: ripple 0.75s infinite;
}

.social_icon .en_what:hover {
    animation: ripples 0.75s infinite;
}

.fot_enq .clse_btn {
    position: absolute;
    top: -9px;
    z-index: 1;
    right: -6px;
    font-size: 20px;
    background: #0067a4;
    width: 33px;
    height: 33px;
    border-radius: 100%;
    text-align: center;
    /* border: 1px dashed #7b2f33; */
    border: 0;
    color: #fff;
}

.en_back {
    background: url(../img/enq.webp) no-repeat;
    height: 100%;
    background-size: cover;
    color: #fff;
    padding: 12px;
}

.en_back .form-control {
    color: #fff;
    background-color: #7d7d7d4f;
    background-clip: padding-box;
    border: 1px solid #7d7d7d;

    border-radius: 0;
}

.en_back ::placeholder {
    color: #ffffffb0 !important;
}

.en_back label {
    text-transform: uppercase;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 21, 45, 0.27),
            0 0 0 0 rgba(165, 23, 23, 0.27);
    }

    80% {
        box-shadow: 0 0 0 20px #fff0, 0 0 0 40px #fff0;
    }

    100% {
        box-shadow: 0 0 0 0 #fff0, 0 0 0 0 #fff0;
    }
}

@keyframes ripples {
    0% {
        box-shadow: 0 0 0 0 rgba(38, 168, 21, 0.27),
            0 0 0 0 rgba(23, 165, 32, 0.27);
    }

    80% {
        box-shadow: 0 0 0 20px #fff0, 0 0 0 40px #fff0;
    }

    100% {
        box-shadow: 0 0 0 0 #fff0, 0 0 0 0 #fff0;
    }
}

#front-load {
        
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: url('assets/img/front-loader.gif') no-repeat center center;
    z-index: 10000;
  }

/* side icon end */

/* cursor pointer starts */

.cursor {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    z-index: 111;
    background: #fed40b;
    /* border: 1px solid #000; */
    transition: all 0.2s ease-out;
    animation: moveCursor1 .5s infinite alternate;
}

.expand {
    background: transparent;
    animation: moveCursor2 .5s forwards;
    border: 1px solid #000;
}

@keyframes moveCursor1 {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(.8);
    }
}

@keyframes moveCursor2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(2);
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}
.form_carer{
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: center;
}
/* cursor pointer ends */
