* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    box-sizing: border-box;
}

:root {
    --brand-color: #3E4095;
    --black-color: #101010;
    --body-text-color: #535353;
    --body-text-color-two: #202020;
}

h1,
.h1 {
    font-size: 100px;
    margin: 0;
    font-weight: 700;
    font-family: "Tajawal", sans-serif;
}

h2,
.h2 {
    font-size: 52px;
    margin: 0;
    font-weight: 700;
    font-family: "Tajawal", sans-serif;
}

h3,
.h3 {
    font-size: 42px;
    margin: 0;
    font-family: "Tajawal", sans-serif;
}

h4,
.h4 {
    font-size: 28px;
    margin: 0;
    font-family: "Tajawal", sans-serif;
}

h5,
.h5 {
    font-size: 26px;
    margin: 0;
    font-family: "Tajawal", sans-serif;
}

h6,
.h6 {
    font-size: 22px;
    margin: 0;
    font-family: "Tajawal", sans-serif;
}

p,
.p {
    font-size: 18px;
    margin: 0;
    font-family: "Tajawal", sans-serif;
}

a {
    color: var(--black-color);
    font-family: "Tajawal", sans-serif;
    text-decoration: none;
    margin: 0;
    font-size: 16px;
}

a:focus {
    outline: 0px solid;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--brand-color) !important;
}

a.dark-btn:hover,
a.brand-btn:hover,
a.light-btn:hover,
a.small-light-btn:hover {
    color: #fff !important;
}


.inner-box.pdf-content {
    position: relative;
    overflow: hidden;
}






.content-box {
    position: relative;
    bottom: 52px;
    margin-left: 0;
    background-color: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .08);
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.inner-box.pdf-content h6 {
    padding: 0 5px;
    font-size: 17px;
    font-weight: 600;
}


.hover-img-container {
    overflow: hidden;
    position: relative;
    width: fit-content;
    transition: all 0.3s;
}

.client-hover-img-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hover-img-container img,
.client-hover-img-container img {
    transition: all 2s;
    position: relative;
    display: inline-block;
}

.hover-img-container:hover img,
.client-hover-img-container:hover img {
    transform: scale3d(1.2, 1.2, 1.2);
    z-index: 1;
}

.hover-img-container:hover::after {
    top: 20px;
    left: 20px;
}

.hover-img-container:hover::before {
    bottom: 20px;
    right: 20px;
}

.img-no-hover-effect:hover {
    transform: scale3d(1, 1, 1);
}

button {
    outline: 0px solid;
    text-decoration: none;
}

button:focus {
    outline: 0px solid;
    text-decoration: none;
}

.outline-0 {
    outline: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.brand-text {
    color: var(--brand-color);
}

.dark-text {
    color: var(--black-color);
}

.body-text {
    color: var(--body-text-color);
}

.body-text-two {
    color: var(--body-text-color-two);
}

.section-padding-top {
    padding-top: 80px;
}

.section-padding-top-xl {
    padding-top: 50px;
}

.section-padding-bottom {
    padding-bottom: 80px !;
}

.section-padding-bottom-xl {
    padding-bottom: 100px;
}


/* scrollbar design */


/* width */

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


/* Track */

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


/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--brand-color);
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-color);
}


/* font-weight */

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}


/* z-index */

.z-index-5 {
    z-index: 5;
}

.z-index-10 {
    z-index: 10;
}

.z-index-15 {
    z-index: 15;
}

.z-index-20 {
    z-index: 20;
}

.z-index-25 {
    z-index: 25;
}


/* line height */

.line-height-primary {
    line-height: 1em;
}

.line-height-1 {
    line-height: 1.1em;
}

.line-height-2 {
    line-height: 1.2em;
}

.line-height-3 {
    line-height: 1.3em;
}

.line-height-4 {
    line-height: 1.4em;
}

.line-height-5 {
    line-height: 1.5em;
}

.line-height-6 {
    line-height: 1.6em;
}

.line-height-7 {
    line-height: 1.7em;
}

.line-height-8 {
    line-height: 1.8em;
}

.line-height-9 {
    line-height: 1.9em;
}

.line-height-10 {
    line-height: 2em;
}


/* Buttons */

.brand-btn {
    background-color: var(--brand-color);
    border: 1px solid var(--brand-color);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    padding: 10px 30px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.dark-btn {
    background-color: var(--black-color);
    border: 1px solid var(--body-text-color);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    padding: 15px 45px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}

.light-btn {
    background-color: #fff;
    border: 1px solid var(--brand-color);
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    padding: 15px 45px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}






header.header.dark-header.new-sticky {
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff !important;
    transition: all 0.5s;
    z-index: 999;
}




.header .container {
    max-width: 1500px;
}




.small-light-btn {
    background-color: #fff;
    border: 1px solid var(--body-text-color);
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    padding: 15px 16px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}

.brand-btn:hover {
    border: 1px solid var(--body-text-color);
    color: #fff;
    background-color: var(--brand-color);
}

.dark-btn:hover {
    border: 1px solid var(--black-color);
    color: #fff;
    background-color: var(--black-color);
}

.light-btn:hover {
    border: 1px solid var(--brand-color);
    color: #fff;
    background-color: #fff;
}

.small-light-btn:hover {
    border: 1px solid var(--brand-color);
    color: #fff;
    background-color: #fff;
}

.dark-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--brand-color);
    right: 100%;
    visibility: hidden;
    transition: all 0.4s;
}

.light-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--brand-color);
    right: 100%;
    visibility: hidden;
    transition: all 0.4s;
}

.small-light-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--brand-color);
    right: 100%;
    visibility: hidden;
    transition: all 0.4s;
}

.brand-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--black-color);
    right: 100%;
    visibility: hidden;
    transition: all 0.4s;
}

.dark-btn:hover::before {
    right: 0;
    visibility: visible;
}

.light-btn:hover::before {
    right: 0;
    visibility: visible;
}

.small-light-btn:hover::before {
    right: 0;
    visibility: visible;
}

.brand-btn:hover::before {
    right: 0;
    visibility: visible;
}


/* slider nav buttons */

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    transition: all 0.3s;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: var(--brand-color);
}

.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
    transition: all 0.3s;
}

.owl-carousel .owl-nav button.owl-prev:hover span,
.owl-carousel .owl-nav button.owl-next:hover span {
    color: #fff !important;
}


/* Cursor */

.cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.1s;
}

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--brand-color);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.15s;
}


/* Basic margin padding */

.m-0 {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}

.p-0 {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}


/* Margin top */

.mt-0 {
    margin-top: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-150 {
    margin-top: 150px;
}


/* Margin right */

.mr-0 {
    margin-right: 0px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-55 {
    margin-right: 50px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-110 {
    margin-right: 110px;
}

.mr-120 {
    margin-right: 120px;
}

.mr-130 {
    margin-right: 130px;
}

.mr-140 {
    margin-right: 140px;
}

.mr-150 {
    margin-right: 150px;
}


/* Margin bottom */

.mb-0 {
    margin-bottom: 0;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-150 {
    margin-bottom: 150px;
}


/* Margin left */

.ml-0 {
    margin-left: 0;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-100 {
    margin-left: 100px;
}

.ml-110 {
    margin-left: 110px;
}

.ml-120 {
    margin-left: 120px;
}

.ml-130 {
    margin-left: 130px;
}

.ml-140 {
    margin-left: 140px;
}

.ml-150 {
    margin-left: 150px;
}


/* Padding top */

.pt-0 {
    padding-top: 0;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

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

.pt-110 {
    padding-top: 110px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-175 {
    padding-top: 175px;
}


/* Padding right */

.pr-0 {
    padding-right: 0;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-100 {
    padding-right: 100px;
}

.pr-110 {
    padding-right: 110px;
}

.pr-120 {
    padding-right: 120px;
}

.pr-130 {
    padding-right: 130px;
}

.pr-140 {
    padding-right: 140px;
}

.pr-150 {
    padding-right: 150px;
}

.pr-200 {
    padding-right: 200px;
}


/* Padding bottom */

.pb-0 {
    padding-bottom: 0;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

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

.pb-105 {
    padding-bottom: 105px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-150 {
    padding-bottom: 150px;
}


/* Padding left */

.pl-0 {
    padding-left: 0;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-100 {
    padding-left: 100px;
}

.pl-110 {
    padding-left: 110px;
}

.pl-120 {
    padding-left: 120px;
}

.pl-130 {
    padding-left: 130px;
}

.pl-140 {
    padding-left: 140px;
}

.pl-150 {
    padding-left: 150px;
}

.pl-200 {
    padding-left: 200px;
}


/* 2. Header css */

.logo-container .header-logo {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 999;
    padding-left: 30px;
}



.offcanvas-body {
    padding: 30px 20px;
}

.offcanvas-header {
    padding: 30px 30px 30px 50px;
    background-color: #000;
}

.desktop-menu-offcanvas .off-canvas-icon {
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.btn-close {

    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
}


.counter-container h1 {
    font-size: 51px;
}


.floating-social-box .text-white {
    --bs-text-opacity: 1;
    color: rgb(255 0 0) !important;
}


.offcanvas-header img {
    max-width: 170px;
}


.nav-menu ul {
    column-gap: 35px;
    margin-right: auto;
}

.request-btn {
    margin-left: 30px;
}

.request-btn a {
    background-color: #3f51b6;
    color: #fff !important;
    padding: 8px 10px;
    border-radius: 3px;
}




.nav-secondary .nav-menu ul li a {
    font-size: 16px;
    transition: all 0.3s;
    color: var(--black-color);
}

.nav-menu ul li a {
    font-size: 16px;
    transition: all 0.3s;
    color: #4b3991;
    font-weight: 600;
}

.nav-menu ul li ul li a {
    font-size: 16px;
    transition: all 0.3s;
    color: var(--black-color);
    font-weight: normal;
}

.desktop-menu-offcanvas ul li a {
    color: var(--black-color);
}

.nav-menu ul li a:hover {
    color: var(--brand-color);
}

.nav-menu ul li a {
    position: relative;
}

/* .nav-menu > ul > li > a::before {
    font-family: 'FontAwesome';
    content: "\f105";
    position: absolute;
    right: 5px;
    top: 11px;
    display: block;
    line-height: 24px;
    font-size: 14px;
    font-weight: 900;
    z-index: 5;
} */
.nav-menu>ul>li>a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--brand-color);
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.nav-menu ul li a:hover::after {
    width: 75%;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li>ul {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.176);
    opacity: 0;
    text-align: left;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 300px;
    z-index: 999;
    padding: 0 15px;
    cursor: pointer;
}

.submenu-container {
    background-color: var(--orange-color);
    position: absolute;
    top: 125%;
    left: 0px;
    width: fit-content;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.nav-menu ul li ul li:first-child {
    border-top: none;
}

.navigation {
    list-style: none;
}

.dropdown-group .dropdown-items {
    margin-left: 19px;
}

.dropdown-group .dropdown-items li {
    list-style: disc !important;
}

.dropdown-group .dropdown-items li {
    padding: 6px 0px;
}

.dropdown-group .dropdown-items li a {
    font-size: 17px;
    font-weight: 600;
    color: #6a6a6a;
}

.nav-menu ul>li>ul>li {
    display: block;
    margin: 0;
    padding: 12px 15px;
    border-top: 1px solid rgba(246, 138, 10, 0.3);
    transition: all 0.3s ease 0s;
}

.nav-menu li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.dark-sticky {
    background-color: var(--black-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.light-sticky {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding-bottom: 35px;
    box-shadow: 0px 0px 4px 0px #e1d7d7;
}

.nav-menu ul li ul li ul {
    position: absolute;
    left: 100%;
    top: 0;
    transform: translateY(-30px);
    width: 325px;
    margin-top: 10px;
    z-index: 100;
    display: none;
    opacity: 0;
}


li.dropdown {
    position: relative;
}

.nav-menu ul>li>ul>li ul {
    display: block;
    opacity: 0;
    top: 0;
    transform: translateY(0px);
    margin: 0;
}


.nav-menu ul li ul li.dropdown::after {
    font-family: 'FontAwesome';
    content: "\f105";
    position: absolute;
    right: 5px;
    top: 11px;
    display: block;
    line-height: 24px;
    font-size: 14px;
    font-weight: 900;
    z-index: 5;
}




.accordion-menu {
    width: 100%;
    max-width: 450px;
    margin: 0px auto 20px;
    background: #fff;
    border-radius: 4px;
}

.accordion-menu li.open .dropdownlink {
    color: var(--brand-color);
}

.accordion-menu li.open .dropdownlink .fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-menu li:last-child .dropdownlink {
    border-bottom: 0;
}

.dropdownlink {
    cursor: pointer;
    display: block;
    font-size: 16px;
    color: var(--black-color);
    position: relative;
    transition: all 0.4s ease-out;
    font-family: "Tajawal", sans-serif;
    font-weight: 500;
    padding: 12px 0px;
}

.dropdownlink i {
    position: absolute;
    top: 17px;
    left: 16px;
}

.dropdownlink .fa-chevron-down {
    right: 12px;
    left: auto;
}

.submenuItems {
    display: none;
    width: 100% !important;
}

.submenuItems li {
    border-bottom: 2px solid #f68c0a4d;
}

.submenuItems li:last-child {
    border-bottom: none;
}

.submenuItems a {
    display: block;
    color: var(--black-color);
    padding: 12px 12px 12px 10px;
    transition: all 0.4s ease-out;
}

.submenuItems a:hover {
    background: var(--black-color);
    color: #fff;
}

.dropdownlink {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-menu li a::after {
    content: "" !important;
    position: absolute !important;
    width: 0% !important;
    height: 0px !important;
    transition: all 0.3s;
}

.accordion-menu li a:hover {
    background-color: transparent !important;
}

.accordion-menu li ul {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
    left: 0;
    opacity: 1 !important;
    position: relative;
    text-align: left;
    top: 130%;
    transition: all 0.3s ease 0s;
    visibility: visible !important;
    width: 190px;
    z-index: 999;
}


/* 3. Banner css */

.banner {
    z-index: 0;
}

.banner-one {
    height: fit-content;
    background-image: url(../img/bannerOneBg.jpg);
    background-blend-mode: overlay;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.banner-three {
    height: fit-content;
    background-image: url(../img/bannerThreeBg.jpg);
    background-blend-mode: overlay;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: max-content;
}

.banner-four {
    height: fit-content;
    background-image: url(../img/homeThreeBannerTwo.html);
    background-blend-mode: overlay;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.banner-two {
    background-image: url(../img/bannerTwoBg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100vh;
}

.banner-two-counter {
    bottom: 0px;
    right: 0px;
    width: 750px;
    padding: 45px 0px 45px 45px;
    margin: 0;
    background-color: #ffffffe6;
}

.banner-two-second-counter {
    padding-left: 45px;
}

.banner-two-border-responsive::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0px;
    width: 2px;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #f68a0a 0%, rgba(246, 138, 10, 0) 100%);
}

.banner-two-paragraph {
    padding-right: 50%;
}

.banner-onecontents {
    padding: 77px 0px 0px 0px;
}

.banner-three-contents {
    padding: 142px 0px 142px 0px;
}

.banner-three-subheading {
    padding-left: 100px;
    margin-bottom: 15px;
}

.banner-three-subheading::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0px;
    height: 1px;
    width: 85px;
    background-color: var(--brand-color);
}

.banner-onecontent-left p {
    padding-right: 25%;
}

.banner-scroll-bottom {
    left: 50%;
    transform: translateX(-50%);
    bottom: 5%;
    height: 100px;
    width: 27px;
    position: absolute;
    z-index: 99;
}

.banner-scroll-bottom a {
    width: 27px;
}

.banner-scroll-bottom a p {
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
}

.banner-twocontents {
    padding: 75px 0px 0px 0px;
}

.floating-contact-box {
    top: 50%;
    left: 12px;
    width: 47px;
    transform: translateY(-50%);
    z-index: 999;
}

.floating-contact-box ul {
    row-gap: 65px;
    flex-direction: column;
}

.floating-contact-box ul li {
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    font-size: 20px;
}

.floating-contact-box ul .contact-info-one::before {
    content: "";
    width: 15px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: -32px;
    right: 10px;
    opacity: 0.2;
}

.floating-contact-box ul .contact-info-one-dark::before {
    content: "";
    width: 15px;
    height: 2px;
    background-color: var(--black-color);
    position: absolute;
    top: -32px;
    right: 4px;
    opacity: 0.2;
}

.floating-line {
    top: 0;
    left: 59px;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0.5;
    backdrop-filter: blur(15px);
}

.floating-social-box {
    right: 0px;
    background: rgba(255, 255, 255, 0.05);
    /* backdrop-filter: blur(15px); */
    padding: 20px 30px;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 9;
}

.floating-social-box ul {
    display: flex;
    list-style-type: none;
    flex-direction: column;
    width: 20px;
}

.floating-social-box ul li {
    color: #fff;
    writing-mode: vertical-rl;
    transform: rotate(-90deg);
    margin-bottom: 20px;
}

.floating-social-box ul .social-follow-text {
    transform: rotate(-180deg);
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 85px;
}

.floating-social-box ul .social-follow-text::after {
    content: "";
    width: 1px;
    height: 85px;
    background-color: var(--brand-color);
    position: absolute;
    top: 95px;
    right: 10px;
}

.floating-social-icon i {
    width: 16px;
    height: 16px;
}

.floating-social-icon a {
    color: #fff;
}

.floating-social-icon a:hover {
    color: var(--brand-color);
}

.banner-three-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    bottom: 100px;
    left: calc((100% - 1296px) / 2);
    color: #fff;
}

.banner-three-carousel .owl-nav button.owl-next,
.banner-three-carousel .owl-nav button.owl-prev {
    width: 60px;
    height: 60px;
    padding: 0;
    line-height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    line-height: 55px;
    font-size: 42px;
    color: #fff;
}





.banner-three {
    height: fit-content;
    background-image: url(../img/bannerThreeBg.jpg);
    background-blend-mode: overlay;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: max-content;
}





.banner-three .owl-nav-three button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.banner-three .owl-nav-three button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.banner-three .owl-nav-three button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.banner-three-carousel .owl-carousel .owl-item {
    width: 100%;
    margin-right: 0;
}

.banner-three-carousel .owl-carousel .owl-stage-outer {
    margin: 0;
}

.ah-headline.clip span {
    padding: 0;
}

.ah-words-wrapper b {
    padding: 0;
    font-weight: 700;
}




.bg-gray {
    background-color: #f6f6f6;

}

.service-item:hover .service-thumb img {
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
}



.service-item .service-thumb img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.service-item .service-content {
    text-align: center;
    padding: 50px 40px;
    border: 1px solid #e9e9e9;
    background-color: #fff;
}

.service-item .service-thumb {
    height: 250px;
    overflow: hidden;
}

.service-item .service-content p {
    margin-bottom: 25px;
}

.service-item .service-content .title {
    font-weight: 700;
    margin-bottom: 20px;
}



.service-item .service-content .read-more {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    line-height: 1;
}


/* 4. About css */

.about-one {
    position: relative;
}

.about-one::after {
    content: "";
    position: absolute;
    top: 60px;
    right: -115px;
    width: 580px;
    height: 640px;
    background-image: url(../img/aboutOneShape.png);
    background-repeat: no-repeat;
    background-size: contain;
    animation-name: fadeInOutMove;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.image-cont {
    position: relative;
    overflow: hidden;
    height: 80vh;
    max-height: 502px;
}

.image-cont img {
    width: 438px;
    height: 115%;
    object-fit: cover;
    bottom: 0;
}

.image-cont-two {
    position: relative;
    overflow: hidden;
    height: 80vh;
    max-height: 316.8px;
    width: 330px;
    right: 45px;
    bottom: -30px;
}

.image-cont-two img {
    width: 330px;
    height: 110%;
    object-fit: cover;
    bottom: 0;
}

.image-cont-three {
    position: relative;
    overflow: hidden;
    height: 80vh;
    width: 573px;
    max-height: 625px;
}

.image-cont-three img {
    width: 573px;
    height: 120%;
    object-fit: cover;
    bottom: 0;
}

.image-cont-four {
    position: relative;
    overflow: hidden;
    height: 80vh;
    width: 1320px;
    max-height: 555px;
    margin-bottom: 100px;
}

.image-cont-four img {
    width: 1320px;
    height: 120%;
    object-fit: cover;
    bottom: 0;
}

.image-cont-five {
    position: relative;
    overflow: hidden;
    height: 80vh;
    width: 1320px;
    max-height: 500px;
    margin-bottom: 50px;
}

.image-cont-five img {
    width: 1320px;
    height: 120%;
    object-fit: cover;
    bottom: 0;
}

.image-cont-six {
    position: relative;
    overflow: hidden;
    height: 80vh;
    width: 640px;
    max-height: 530px;
    margin-bottom: 50px;
}

.image-cont-six img {
    width: 640px;
    height: 120%;
    object-fit: cover;
    bottom: 0;
}

.image-cont-seven {
    position: relative;
    overflow: hidden;
    height: 80vh;
    width: 640px;
    max-height: 530px;
    margin-bottom: 50px;
}

.image-cont-seven img {
    width: 640px;
    height: 120%;
    object-fit: cover;
    bottom: 0;
}

.about-one-img {
    width: 440px;
    height: auto;
}

.about-one-img-small {
    width: 330px;
    height: auto;
    right: 45px;
    bottom: -30px;
}

.about-one-subheading {
    margin-left: -90px;
    padding-right: 30%;
}

.about-one-first-text-box {
    padding-left: 90px;
}


/* 5. Count css */

.count-one-border::after {
    content: "";
    position: absolute;
    top: 0;
    right: 30px;
    width: 2px;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #f68a0a 0%, rgba(246, 138, 10, 0) 100%);
}


/* 6. Services css */

.service-one-card {
    height: 338px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-icon img {
    width: auto !important;
    height: auto !important;
    margin: 0 auto;
}

.banner-three-carousel .owl-nav span {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 44%;
}





.service-one-contents {
    top: 0;
    left: 0;
    padding: 25px 40px;
}

.service-four-card {
    padding: 46px 47px;
}

.service-one-card-container .owl-carousel .owl-item {
    min-height: 360px;
}

.service-one-card::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    border: 1px solid var(--brand-color);
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: 1s;
}

.service-one-card:hover::after {
    z-index: 0;
    background: rgb(0, 0, 0, 0.2);
    top: 0px;
    left: 0px;
    border: 1px solid rgb(146, 138, 10, 0.5);
}

.services-archieve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}

.service-one-card-archieve::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 25px;
    border: 1px solid var(--brand-color);
    height: 100%;
    width: 97%;
    z-index: -1;
    transition: all 0.7s;
}

.service-one-card-archieve:hover::after {
    background: rgb(0, 0, 0, 0.2);
    top: 0px;
    left: 0px;
    border: 1px solid rgb(146, 138, 10, 0.5);
}

.services-two {
    background-color: var(--body-text-color-two);
}

.services-three {
    background-color: var(--body-text-color-two);
}

.service-imag {
    overflow: hidden;
}

.service-imag img {
    transition: all 1s;
}

.service-one-card-archieve:hover .service-imag img {
    transform: scale(1.2);
}

.service-three-cards-container .owl-stage {
    left: 20px;
}

.service-two-cards-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: 74%;
    right: 100%;
    width: 51%;
    transform: translateY(-74%);
}

.service-two-cards-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-two-cards-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-two-cards-container .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-two-cards-container .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-three-cards-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: -200px;
    right: 0px;
}

.service-three-cards-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-three-cards-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-three-cards-container .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-three-cards-container .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-two-container {
    padding-left: 100px;
}

.service-one-card-one:hover,
.service-one-card-two:hover,
.service-one-card-three:hover,
.service-one-card-four:hover,
.service-one-card-five:hover,
.service-one-card-six:hover {
    background: #000;
    border: 2px solid var(--brand-color);
}

.about-one-subheading {
    font-size: 29px;
    text-transform: capitalize;
}

.service-one-card-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: -180px;
    right: 0;
}

.service-one-card-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-one-card-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-one-card-container .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-one-card-container .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-two-card {
    padding: 70px 45px;
    background-color: var(--black-color);
    position: relative;
    overflow: hidden;
}

.service-two-cards-container .owl-stage {
    left: 50px;
}

.service-three-cards-container .service-two-card {
    overflow: inherit;
}

.service-two-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #252525;
    transition: all 0.7s;
    transform: scale(0);
}

.service-three-cards-container .service-two-card .serivice-three-contents {
    position: relative;
    z-index: 2;
}

.service-three-cards-container .service-two-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--body-text-color);
    transition: all 0.7s;
    transform: scale(0);
}

.floating-contact-box ul li a {
    color: #000;
    font-size: 19px;
    font-weight: 500;
}




.service-two-card:hover::after {
    transform: scale(1);
}

.service-two-card a {
    transition: all 0.7s;
}

.service-two-card p {
    transition: all 0.7s;
}

.service-two-card:hover p {
    transform: scale(0);
}

.service-two-card:hover a {
    transform: translateY(-100px);
}

.services-two .owl-carousel .owl-item img {
    width: 80px;
    height: 80px;
}

.service-two-stroke-text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #f68c0a84;
}

.service-two-stroke-absolute {
    top: -20px;
    left: -20px;
    z-index: 10;
}

.service-details-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(180deg, #f68a0a 0%, rgba(246, 138, 10, 0) 100%);
    opacity: 0.5;
}

.service-two-number {
    font-size: 100px;
}

.service-two-top-paragraph {
    padding-right: 10%;
}


/* 7. Features css */

.features-one {
    background-color: var(--body-text-color-two);
}

.feature-one-box {
    position: relative;
    padding-left: 10px;
}

.feature-one-box::before {
    content: "";
    width: 1px;
    height: 60%;
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    background-color: var(--brand-color);
}

.feature-one-number-top {
    margin-left: -20px;
}

.features-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.features-play-icon:hover {
    transform: translateX(-50%) translateY(-50%) scale(1);
}

.feature-items {
    margin-top: 80px;
}


/* 8. Testimonial css */

.testimonial-one-slider-wrapper .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -70px;
    flex-direction: column;
}

.testimonial-one-slider-wrapper .owl-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    padding: 0;
    line-height: 30px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
    transform: rotate(90deg);
}

.testimonial-one-slider-wrapper .owl-carousel .owl-nav button.owl-prev {
    width: 45px;
    height: 45px;
    padding: 0;
    line-height: 30px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
    transform: rotate(90deg);
}

.testimonial-one-slider-wrapper .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.testimonial-one-slider-wrapper .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.testimonial-one-slider-wrapper .owl-carousel .owl-item img {
    width: 190px;
    height: 190px;
}

.testimonial-one-icon {
    max-width: 100%;
    height: 100px;
}

.testimonial-one-icon-heading {
    font-size: 20px;
    margin-top: 22px;
}

.testimonial-item-content {
    padding-left: 40px;
    padding-right: 0px;
}


/* 9. Team css */

.team-one-card-container {
    overflow: hidden;
}

.team-img img {
    width: 100% !important;
}

.team-one-card-carousel .owl-stage-outer {
    padding-bottom: 20px;
}

.team-one-card-carousel .owl-stage {
    padding-left: 0 !important;
}

.team-one-card-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.team-two-card-info {
    padding-top: 150px;
}

.team-two-card-info p {
    color: #c1c1c1;
}

.team-one-item {
    transform: translate3d(0, 0, 0);
}

.team-one-card-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.team-one-card-info p {
    color: #c1c1c1;
    margin-top: 5px;
}

.team-member-details .member-details-social a {
    transition: all 0.3s;
    color: #fff;
}

.team-member-details .member-details-social a:hover {
    transform: scale(1.6);
}

.team-member-details {
    width: 100%;
    height: 100%;
    background-color: #10101089;
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.8s;
}

.team-member-details-second {
    width: 90%;
    height: 85%;
    background-color: #10101089;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 30px;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.8s;
}

.team-one-item:hover .team-member-details {
    visibility: visible;
    opacity: 1;
}


.team-details-wrapper {
    margin-top: 77px;
}


/* 10. Video css */

.intro-video-one-container {
    padding-left: 300px;
}

.video-thumbnail-container {
    padding: 300px 0px;
    background-image: url(../img/corporate-video/corporate-video.webp);
    position: relative;
}

.video-thumbnail-container::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: #1614146b;
    top: 0;
    left: 0;
    right: 0;
}





.video-thumbnail-container img {
    filter: brightness(0) invert(1);
}


.video-thumbnail-two-container {
    padding: 220px 0px;
    background-image: url(../img/introVideoBg.jpg);
}

.intro-video-animation {
    position: relative;
    display: inline-block;
    font-size: 24px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
}

.features-video-animation {
    display: inline-block;
    font-size: 24px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
}

.intro-video-animation:before {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    box-shadow: 0 0 0 0 hsl(0deg 0% 99.05% / 60%);
    -webkit-animation: ripple-data-v-4f288fb2 3s infinite;
    animation: ripple-data-v-4f288fb2 3s infinite;
    transition: all 0.4s ease;
}

.features-video-animation:before {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    box-shadow: 0 0 0 0 hsla(32, 100%, 68%, 0.6);
    -webkit-animation: ripple-data-v-4f288fb2 3s infinite;
    animation: ripple-data-v-4f288fb2 3s infinite;
    transition: all 0.4s ease;
}

.intro-video-animation:after {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    box-shadow: 0 0 0 0 hsl(32deg 25.49% 98.31% / 60%);
    -webkit-animation: ripple-data-v-4f288fb2 3s infinite;
    animation: ripple-data-v-4f288fb2 3s infinite;
    transition: all 0.4s ease;
    animation-delay: 0.6s;
}

.features-video-animation:after {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    box-shadow: 0 0 0 0 hsla(32, 100%, 68%, 0.6);
    -webkit-animation: ripple-data-v-4f288fb2 3s infinite;
    animation: ripple-data-v-4f288fb2 3s infinite;
    transition: all 0.4s ease;
    animation-delay: 0.6s;
}

.intro-video-title {
    padding-right: 8%;
}


/* 11. Blog css */

.blogs-one {
    margin-right: 0;
    width: 100%;
}


.blogs-one-cards-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: 50%;
    right: 84%;
    width: 52%;
    transform: translateY(-50%);
}

.blogs-one-cards-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.blogs-one-cards-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.blogs-one-cards-container .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.blogs-one-cards-container .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.blogs-two-cards-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: -180px;
    right: 0px;
}

.blogs-two-cards-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.blogs-two-cards-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.blogs-two-cards-container .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.blogs-two-cards-container .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.blog-archieve-card-title {
    font-size: 32px;
    transition: all 0.5s;
}

.blog-sidebar-search-input {
    padding: 12px 30px;
    border-radius: 0;
    border-right: 0;
}

.blog-sidebar-search-icon {
    border-radius: 0;
    border-width: 0.8px 0.8px 0.8px 0px;
    border-color: #dee2e6;
    background-color: transparent;
    color: var(--black-color);
}

.blog-sidebar-search-icon:hover {
    background-color: transparent;
    border-color: #dee2e6;
    color: var(--black-color);
}

.blog-author-social i {
    font-size: 24px;
    color: var(--black-color);
}

.author-details {
    padding: 70px 55px;
    background: #f4f3f1;
}

.sidebar-category-item {
    transition: all 0.3s;
}

.sidebar-category-item a:hover {
    text-decoration: underline;
    color: var(--brand-color);
}

.popular-tags p {
    transition: all 0.3s;
    cursor: pointer;
}

.popular-tags p:hover {
    color: var(--brand-color);
}

.blockquote-container {
    padding: 40px;
    margin: 75px 90px 75px 90px;
    border-width: 1px 0px 1px 0px;
    border-color: var(--body-text-color);
    border-style: solid;
}

.blog-comment-heading {
    font-size: 32px;
    color: var(--black-color);
    font-weight: 700;
    line-height: 1.3em;
}

.blog-thanks-text p {
    position: relative;
    display: flex;
}

.blog-thanks-text p::after {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #f68a0a33;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 50px;
}

.bottom-gradient-divider {
    position: relative;
}

.bottom-gradient-divider::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 15px;
    width: 94%;
    height: 1px;
    background: linear-gradient(90deg, #f68a0a 0%, rgba(246, 138, 10, 0) 100%);
    opacity: 0.5;
}

.blog-details-page-banner-wrapper {
    margin-top: 37px;
}


/* 12. Projects css */

.projects-text-stroke {
    writing-mode: vertical-rl;
    white-space: nowrap;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #53535366;
    transition: all 0.4s;
    position: absolute;
    top: 50%;
    left: -80px;
    transform: translateY(-50%) rotate(-180deg);
}

.projects-one-item .projects-one-contents>h6>a {
    transition: all 0.4s;
}

.projects-one-item {
    position: relative;
}

.project-btn {
    position: absolute;
    right: -50px;
    width: 150px;
    height: 0px;
    bottom: 0px;
    z-index: 1;
    opacity: 0;
    transition: all 1s;
    background: transparent;
    color: #fff;
    transition: all 0.4s;
    border: 0;
    z-index: 3;
}

.project-img-ontainer {
    position: relative;
    transition: all 0.5s;
    width: fit-content;
}

.project-img-ontainer img:hover {
    transform: scale(1);
}

.under-line-hover::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -10px;
    opacity: 0;
    background-color: #3f51b6;
    transition: all 0.8s;
}

.under-line-hover:hover::after {
    opacity: 1;
    width: 100%;
}

/* .project-img-ontainer::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 0%;
    bottom: 0;
    right: 0;
    background-color: var(--brand-color);
    transition: all 0.5s;
    border-top-left-radius: 90%;
    z-index: 2;
} */

/* .project-img-ontainer:hover::after {
    height: 200px;
    width: 200px;
} */

.project-img-ontainer:hover .project-btn {
    bottom: 100px;
    right: 9px;
    width: 160px;
    color: #fff !important;
    opacity: 1;
}

.project-img-ontainer {
    position: relative;
}

/* .project-img-ontainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1;
    transition: all 0.7s;
} */

.project-img-ontainer:hover::before {
    background-color: #10101075;
}

.home-one-portfolio-first-img {
    height: 770px;
    width: 520px;
}

.home-one-portfolio-second-img {
    width: 565px;
    height: 690px;
}

.home-one-portfolio-third-img {
    width: 655px;
    height: 440px;
}

.home-one-portfolio-fourth-img {
    width: 520px;
    height: 770px;
}

.home-one-portfolio-fifth-img {
    width: 605px;
    height: 440px;
}

.home-one-portfolio-sixth-img {
    width: 565px;
    height: 695px;
}

.portfolio-cta-btn {
    margin-top: 100px;
}


/* 13. Experience css */

.experience-contact-number {
    font-size: 32px;
}

.footer-two {
    padding: 60px 0 50px;
}

.footer-copy {
    padding: 25px 0px;
    border-top: 1px solid #e2dbdb;
}

.footer-ul li {
    margin-bottom: 10px;
}



/* 14. Footer css */

.footer-one {

    background-color: #fff;
}

.footer-one ul li a {
    transition: all 0.3s;
    color: #fff;
}

.footer-one ul li a:hover {
    color: var(--brand-color);
}

.footer-address {
    color: #000;

}

/* .dark-header{position: absolute;width: 100%;z-index: 1;} */

.text-justify {
    text-align: justify;
}




.contact-footer a {
    color: #fff;
}


.contact-footer i {
    position: absolute;
    left: 0;
    color: #FFF;
    top: 5px;
    background: var(--brand-color) !important;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}

.social li a {
    width: 35px;
    display: inline-block;
    text-align: center;
    font-size: 13px;
    margin-right: 5px;
    border-radius: 2px;
    margin-top: 20px;
}

.social li a i {
    color: #000;
}

.footer-one p {
    text-align: justify;
}


.footer-copyright-text {
    color: #000;
}

.footer-email {
    font-size: 55px;
}


/* 15. Why Choose Us css */

.why-choose-right-col {
    background-color: var(--body-text-color-two);
    padding-left: 100px;
    padding-right: 5%;
}

.why-choose-us-two {
    background-color: #fff;
    position: relative;
}

.certificat-box {
    border: 6px solid #e9e9e9c4;
    padding: 0px 30px 30px 30px;
    margin-left: 70px;
    position: relative;
    background-color: #fff;
    z-index: 1;
}

.certificat-inner {
    margin-top: 30px;
    margin-left: -100px;
}



.why-choose-item-first {
    width: 80%;
}

.why-choose-left-col {
    background-image: url(../img/whyChooseImg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.why-choose-subheading {
    padding-left: 115px;
}

.why-choose-subheading::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 2px;
    width: 100px;
    background-color: var(--brand-color);
}


/* 16. Page title carousel css */

.page-title-stroke {
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--body-text-color);
}

.title-carousel .owl-carousel.owl-theme .owl-item {
    width: fit-content !important;
}


/* 17. Work together css */

.work-together {
    padding: 220px 0px;
    background: url(../img/workTogetherBg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.work-together-content-wrapper {
    padding: 0% 25%;
}


/* 18. Purposes css */

.purposes-paragraph {
    color: var(--body-text-color-two);
    padding-right: 10%;
}


/* 19. FAQ css */

.accordion-item-heading {
    font-size: 20px;
}

.services-faq .accordion-item,
.service-details-faq .accordion-item {
    border: 1px solid rgba(83, 83, 83, 0.1);
    border-radius: 0px;
}

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

.service-details-faq .accordion-item .accordion-button {
    justify-content: space-between;
}

.services-faq .accordion-item .accordion-button {
    display: flex;
    justify-content: space-between;
}

.services-faq .accordion-item .accordion-button::after {
    margin-left: 5%;
}

.services-details-info-top-paragraph {
    padding-right: 10%;
}


/* 20. Inner Page Banner css */

.inner-page-banner {
    /* background-image: url("../img/innerPageBannerBg.jpg"), linear-gradient(rgba(256, 256, 256, 0.9), rgba(256, 256, 256, 0.9)); */
    background-blend-mode: overlay !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}

.inner-page-banner-wrapper {
    margin-top: 70px;
}


/* 21. Portfolio css */

.portfolio-text-stroke {
    white-space: nowrap;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--body-text-color);
}

.portfolio-details-contnts-right {
    padding-left: 8%;
}


/* 22. Contact css */

.contact-container {
    padding-left: calc((100% - 1320px) / 2);
    margin-left: 25px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--black-color);
}

.contact-info-icon i {
    font-size: 20px;
}

.contact-info-wrapper h4 {
    font-size: 20px;
}

.icon-contact {
    display: flex;
    grid-gap: 20px;
    align-items: center;
    margin-bottom: 15px;

}





.contact-form-heading {
    font-size: 32px;
}

.contact-page-form input,
.contact-page-form textarea {
    padding: 12px 20px;
    border-width: 0px 0px 1px 0px;
    border-color: var(--black-color);
    border-style: solid;
    border-radius: 0;
}

.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-close:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-location-map iframe {
    width: 100%;
    margin-bottom: -5px;
}


/* 23. Animations */

@keyframes upDownSlow {
    0% {
        transform: translateY(10%);
    }

    50% {
        transform: translateY(-10%);
    }

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

.upDown-animation-slow {
    animation-name: upDownSlow;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes upDownFast {
    0% {
        transform: translateY(30%);
    }

    50% {
        transform: translateY(-30%);
    }

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

.upDown-animation-fast {
    animation-name: upDownFast;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes spinAnimate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spin-animation-slow {
    animation-name: spinAnimate;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes upDownLeft {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }

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

.up-down-left-fast {
    animation-name: upDownLeft;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes zoomBG {
    0% {
        background-size: 100% 100%;
    }

    100% {
        background-size: 150% 150%;
    }
}

.bg-img-zoom {
    animation-name: zoomBG;
    animation-duration: 20s;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
}

@keyframes PlayScaleAnimate {
    0% {
        transform: scale(1) translateX(-50%) translateY(-50%);
    }

    50% {
        transform: scale(1.1) translateX(-50%) translateY(-50%);
    }

    100% {
        transform: scale(1) translateX(-50%) translateY(-50%);
    }
}

.icon-scale {
    animation-name: PlayScaleAnimate;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes BgZoomInOut {
    0% {
        background-size: 100% 100%;
    }

    50% {
        background-size: 110% 110%;
    }

    100% {
        background-size: 100% 100%;
    }
}

.bg-zoom-in-out {
    animation-name: BgZoomInOut;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes ripple-data-v-60784e0a {
    70% {
        box-shadow: 0 0 0 40px hsla(0, 0%, 100%, 0);
    }

    to {
        box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0);
    }
}

@keyframes ripple-data-v-4f288fb2 {
    70% {
        box-shadow: 0 0 0 40px hsla(0, 0%, 100%, 0);
    }

    to {
        box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0);
    }
}

@keyframes fadeInOutMove {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    50% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.element-fade-in-out-move {
    animation-name: fadeInOutMove;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


/* Scroll up to bottom button */

.cs_scrollup {
    position: fixed;
    bottom: -60px;
    right: 40px;
    color: #fff;
    padding: 5px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
    background-color: var(--brand-color) !important;
    box-shadow: 0px 1px 5px 1px rgba(var(--brand-color), 0.2);
    border-radius: 50%;

    &:hover {
        background-color: #f68a0a;
        color: #ffffff;
    }
}

.cs_scrollup.cs_scrollup_show {
    bottom: 50px;
}


/* 24. Preloader css */

.placeholder-cs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #ffffff;
}

.preloader {
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-top: 2px solid #101010;
    border-bottom: 2px solid #101010;
    animation: anim9 1s linear infinite;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .preloader {
        left: 35%;
    }
}

.preloader .preloader-inner {
    width: 20px;
    height: 20px;
    background-color: #f68a0a;
    position: absolute;
    border-radius: 50%;
    animation: scaleUp 1s linear infinite forwards;
}

@keyframes anim9 {
    to {
        transform: rotate(360deg);
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.moving-section {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: 5px 0;
    animation: 4s linear infinite slide-left
}

.moving-section-in {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 100%
}

@keyframes slide-left {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-100%)
    }
}



.banner-three .owl-nav-three {
    display: flex;
    gap: 16px;
    position: absolute;
    bottom: 35px;
    left: calc((100% - 1296px) / 2);
}


.banner-three .owl-nav-three button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.banner-three .owl-nav-three button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.banner-three .owl-nav-three button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.banner-three .owl-nav-three button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.banner {
    position: relative;
}

.blogs-one .inner-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all .3s ease;
    padding-bottom: 20px;
}

.blogs-one .image {
    position: relative;
    margin-bottom: 20px;
}

.blogs-one .image img {
    position: relative;
    width: 100%;
}




.blogs-one .content-box {
    position: relative;
    bottom: 52px;
    margin-left: 27px;
    background-color: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .08);
    display: flex;
    width: 84%;
    height: 100%;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.content-box .icon:after {
    position: absolute;
    left: 0;
    bottom: -14px;
    border-left: 27px solid transparent;
    border-top: 14px solid #a81017;
    content: "";
    transition: all .3s ease;
}

.inner-box .icon-box {
    background-color: #3f51b6;
    margin-right: 10px;
}


.blogs-one .title {
    position: relative;
    font-weight: 800;
    z-index: 2;
    bottom: 60px;
    background: #fff;
    padding: 10px 10px;
    width: 70%;
    left: 16px;
    border-radius: 3px;
    text-align: left;
}



.contact-footer {
    position: relative;
    padding-left: 50px;
    padding-right: 0px;
    color: #fff;
}

.footer-copyright-text a {
    color: #000;
}

.widget {
    padding-right: 25px;
}

.client .item {
    border: 1px solid gray;
    /* padding: 10px 9px; */
}


.team-one-card-container .owl-stage-outer {


    transition-timing-function: linear;

}

.blogs-one .title a {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.icon-box img.icon {
    width: 70px;
    padding: 10px;
}


.team-one-card-container .owl-stage {

    transition-timing-function: linear !important;
}


.map-sec {
    border-top: 1px solid #eaeaea;

}

.service-one-card-container .owl-theme .owl-dots {
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
}

.service-one-card-container .owl-theme .owl-dots .owl-dot span {

    width: 8px;
    height: 8px;

}

.footer-top {
    position: relative;
    background-color: var(--black-color);
    padding: 28px 0px;
}

.feature-item {
    display: flex;
    color: #fff;
    align-items: flex-start;
    gap: 17px;
    justify-content: center;
}

.feature-content h5 {
    font-size: 18px;
    font-weight: normal;
}

.feature-content a {
    color: #fff;
    font-size: 18px;
}

.feature-icon i {
    font-size: 29px;
}




.service-one-card-container .owl-theme .owl-dots .owl-dot span::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: transparent;
    position: absolute;
    border: 2px solid #ff0000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -6px -6px;
    opacity: 0;
}


.service-one-card-container .owl-theme .owl-dot.active span::before {

    opacity: 1;
}

.widget-footer h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}


.footer-one h6 {
    font-size: 18px;
    margin-top: 20px;
}

.career-style {
    position: relative;
    display: block;

}


.Why-choose-sec,
.why-choose-us-one {
    padding: 60px 0px;
}

.Why-choose-sec h2 {
    font-size: 30px;
}

.why-choose-us-one .why-choose-item-first {
    width: 100%;
}

.about-us h2 {
    font-size: 30px;
    text-transform: uppercase;
}

.project-container-three h6 {
    padding: 15px 0px 15px;
    text-align: center;
}

.slider.slider-nav .slick-track {

    display: flex;
    gap: 1rem;
}




.space-same {
    padding: 60px 0px;
}

.faq-image {
    position: relative;
    margin-bottom: 50px;
}

.faq-image::before {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 13px;
    width: 570px;
    height: 480px;
    background-color: #3f51b6;
    z-index: -11;
}

.faq-image .item img {
    width: auto !important;
}

.product-section h2 {
    font-size: 30px;
    font-weight: 700;
}

.faq-image .owl-nav {
    position: absolute;
    top: 0;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    right: 83px;
    top: 8px;

}

.faq-image .owl-theme .owl-nav [class*=owl-]:hover {

    color: #f00 !important;
}

.faq-image .owl-carousel .owl-nav button.owl-prev:hover span,
.owl-carousel .owl-nav button.owl-next:hover span {

    color: #fff !important;
}

.client-box {
    text-align: center;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}

.box-img img {
    max-width: 200px;
}


.faq-image .owl-nav .owl-prev {
    background-color: #fff !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 26px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-image .owl-nav .owl-next {
    background-color: #fff !important;
    width: 50px !important;
    font-size: 26px !important;
    height: 50px !important;
    display: flex;
    justify-content: center;
    align-items: center;

}

.faq-image .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #fff !important;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    position: relative;

}

.faq-image .owl-theme .owl-dots .owl-dot span::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 2px solid #f1f1f1;
    position: absolute;
    margin: -5px auto;
    left: 0;
    right: 0;
    border-radius: 50px;
    opacity: 0;
    margin: -5px -5px;
}

.faq-image .owl-theme .owl-dots .owl-dot.active span::before {

    opacity: 1;
}

.faq-image .owl-dots {
    position: absolute;
    left: 50%;
    bottom: -40px;
}

.list-arrow li {
    position: relative;
    padding-left: 15px;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
}

.list-arrow li::before {
    content: "";
    list-style: circle;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    background-color: #3f51b6;
    top: 12px;
}





.list-arrow1 li {
    position: relative;
    padding-left: 15px;
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 10px;
}

.list-arrow1 li::before {
    content: "";
    list-style: circle;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    background-color: #3f51b6;
    top: 12px;
}


.project-block {
    position: relative;
}



.project-block .inner-box .content {
    position: relative;
    margin-top: -40px;
    margin-left: 40px;
    margin-bottom: 5px;
    padding: 26px 30px;
    -webkit-box-shadow: 0 8px 40px rgba(0, 8, 40, .07);
    box-shadow: 0 8px 40px rgba(0, 8, 40, .07);
    background-color: #fff;
    z-index: 9;
}

.project-block .inner-box .image {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}


.project-block .inner-box .image img {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.application-sect .content .title {
    text-transform: capitalize;
}

.progress-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    max-width: 100%;
    width: 100%;
}


.progress-container::before {
    content: " ";
    background-color: #0e0d0d;
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    height: 92%;
    width: 2px;
    z-index: 1;
}

.step-progress {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.step-progress li {
    display: grid;
    grid-template-columns: fit-content(28px) auto;
    margin-bottom: 25px;
}

.circle,
.circle2 {
    background-color: #fff;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 2px solid #0e0d0d;
    font-size: 12px;
    font-weight: 700;
    height: 28px;
    width: 28px;
    transition: 0.4s ease;
    z-index: 1;
}

.text {
    color: #707070;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    line-height: 28px;
    margin-left: 35px;
    font-size: 12px;
    font-weight: 500;
}

.step-progress h2 {
    background-color: #0e0d0d;
    color: #fff;
    padding: 10px 12px;
    font-size: 16px;
    position: relative;
    margin-bottom: 22px;

}

.step-progress h2::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    left: -10px;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #0e0d0d;

}

.certificat-sec h2 {
    font-size: 30px;
    margin-bottom: 32px;

}

.certificat-sec {
    position: relative;
    padding: 60px 0px;
    overflow: hidden;
    background-color: #f5f5f5;
    text-align: center;
}

.main-container {
    display: flex;
    position: relative;
    gap: 30px;
    cursor: pointer;
    align-items: center;
}

.slider.slider-main {
    max-width: 84%;

}

.slider.slider-main .slick-list.draggable {
    padding: 0 !important;
}



/*read mores arroow  */



/*mega menu*/
.menu-item {
    display: flex;
    cursor: pointer;
    padding: 0px 0px;
}

.menu-item.dropdown.megamenu {
    position: static;
    display: block;
    padding: 10px 0px;
}


.dropdown-content {
    position: absolute;
    left: 25%;
    top: 6rem;
    opacity: 0;
    height: 180px;
    pointer-events: none;
    background-color: #ffffff;
    border-top: 1px solid #4b3991;
    transition: top 0.4s, opacity 0.3s ease;
    width: fit-content;
    margin: 0 auto;
    transform: translateX(-50%);
    padding: 12px 30px;
    cursor: pointer;
    z-index: 9999;
}

.dropdown:hover>.dropdown-content {
    cursor: initial;
    top: 2.25rem;
    opacity: 1;
    pointer-events: initial;
}

.dropdown-column {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    margin-inline: auto;
    width: 100%;
    display: grid;
    margin-inline: auto;

}

.nav-menu ul li a i {
    margin-left: 7px;
}

.menu-item.dropdown.megamenu:hover i.fa.fa-angle-down {
    rotate: 180deg;
    transition: all 0.5s;
}

.dropdown-group .dropdown-items li {
    padding-left: 0;
    padding-right: 0;
}

.dropdown-title {
    background-color: #f00;
    color: #fff;
    padding: 10px;
    font-size: 18px;
    font-weight: 700;
}

.dropdown-title a {
    color: #fff !important;
}

.bold {
    font-weight: bold;
}

.mt-color {
    color: #3f51b6;
}

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

.top-bar-area .social li {
    display: inline-block;
    margin-right: 30px;
}

.top-bar-area .text-end .social li {
    margin-right: 0;
    margin-left: 0px;
}

.item-flex li i {
    margin-right: 5px;
    font-size: 17px;
    color: #4b3991;
}

.item-flex li:last-child {
    margin-left: 30px;

}

.top-bar-area {
    border-bottom: 1px solid #dfdfdf;
    padding: 10px 0px;

}

.contact-info-wrapper {
    background-color: #f4f4f5;
    padding: 10px 12px;
}

.slider-nav .slick-slide img {
    border: 1px solid lightgrey !important;
}

.slider-nav .slick-slide.slick-active.slick-center img {
    border: 1px solid #3f51b6 !important;
}




.slider-nav img {
    margin-bottom: 15px;
}

.slider-double .slider-nav {
    padding: 0 0px;
    cursor: pointer;
}

.slider-double .slider-nav img {
    margin-bottom: 0px;
}


.slider-double .slick-prev {
    left: -5px;
}

.slider-double .slick-next {
    right: -5px;
}

.slider-double .slick-prev,
.slider-double .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 0 !important;
    display: block;
    margin-top: 0px;
    width: 30px !important;
    height: 100% !important;
    padding: 0;
    transform: inherit;
    outline: none;
    background: #ff0000 !important
}

.according-box h5 {
    font-size: 22px;
    font-weight: 700;
}

ul.nested-ul {
    list-style: disc;
    padding: 10px 0px 10px 31px;
}

.content .list-group-item {
    padding-left: 19px;
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 10px;
}

.content .list-group-numbe#3f51b6>.list-group-item::before {
    content: counters(section, ".") ". ";
    counter-increment: section;
    position: absolute;
    left: 0;
}

.product-section .container>.row {
    flex-direction: row-reverse;
}

.product-section .container .row {
    flex-direction: row-reverse;
}

.pagination a {
    padding: 0 15px;
    background-color: #fff;
    box-shadow: 2px 1px 1px #808080cc;
    margin-top: 22px;
}

.custom-file-upload {
    border-color: #e1e6eb;
    background: #fff;
    border-radius: 0px;
    padding: 15px;
    color: rgb(33 37 41) !important;
    letter-spacing: 0.5px;
    font-size: 13px !important;
    margin-bottom: 10px;
    border: 1px solid #e1e6eb;
    font-weight: 400 !important;
}

.custom-file-upload {
    width: 100%;
    display: block;
    margin-top: 0px;
    cursor: pointer;
    height: 50px;
    color: #2a2a2a !important;
    font-weight: normal !important;
}



i.fa.fa-cloud-upload.iclass {
    margin-right: 5px;
}













.ind_box2.index .item a img {
    border: 0 none;
    max-width: 100%;
    display: block;
    transition: all 1.5s;
    -webkit-transition: all 1.5s;
}

.more_btn1 {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 43px;
    text-align: center;
    border: 2px solid #f0f0f0;
    color: #333;
    font-weight: bold;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.tt {
    padding: 30px 0 10px;
}

.tt:hover {
    color: #000;
}

.ind_box2.index .item {
    width: calc((100% - 20px) / 2);
    margin: 0 20px 20px 0;
    float: left;
    padding: 20px;
    background: #fff;
}

.ind_box2.index .item:nth-child(2n) {
    margin-right: 0;
}

.ind_box2.index .item a {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ind_box2.index .item .pic {
    float: left;
    width: 50%;
    overflow: hidden;
}

.ind_box2.index .item .con {
    float: left;
    width: 50%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    padding: 0 30px;
}

.ind_box2.index .item .con .tt {
    font-size: 18px;
    font-weight: 700;
}

.ind_box2.index .item:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.ind_box2.index .item:hover .more_btn1 {
    color: #00509e;
    border-color: #00509e;
}

.ind_box2.pro_list .item {
    border: 1px solid #eee;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .ind_box2.index .item .con {
        padding-right: 0;
        padding-left: 15px;
    }

    .ind_box2.index .item .con .tt {
        font-size: 18px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .ind_box2.index .item a {
        display: block;
    }

    .ind_box2.index .item .pic {
        width: 100%;
        float: none;
        margin: 0 auto 20px;
    }

    .ind_box2.index .item .con {
        width: 100%;
        float: none;
        padding: 0;
    }
}

@media screen and (max-width:767px) {
    .ind_box2.index .item {
        width: 100%;
    }

    .ind_box2.index .item a {
        display: block;
    }

    .ind_box2.index .item .pic {
        width: 320px;
        max-width: 100%;
        float: none;
        margin: auto;
    }

    .ind_box2.index .item .con {
        width: 100%;
        padding: 20px 0 0;
    }
}








.odometer.odometer-auto-theme {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.odometer.odometer-auto-theme .odometer-digit {
    vertical-align: middle;
    position: relative;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer {
    display: inline-block;
    vertical-align: middle;
    visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner {
    text-align: left;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon {
    display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner {
    display: block;
    -webkit-backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value {
    display: block;
    -webkit-transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-value {
    text-align: center;
}

.p_relative {
    position: relative;
}

.mt_60 {
    margin-top: 60px;
}

.mr_90 {
    margin-right: 90px;
}

.mb_30 {
    margin-bottom: 30px;
}

.mb_40 {
    margin-bottom: 40px;
}

.mb_100 {
    margin-bottom: 100px;
}

.mb_130 {
    margin-bottom: 130px;
}

.pt_120 {
    padding-top: 120px;
}

.pb_120 {
    padding-bottom: 120px;
}

.l_60 {
    left: 60px;
}

.list-style-one li:before,
.sec-title h2 span {
    color: var(--brand-color);
}

.sec-title .sub-title:before,
.content_block_two .content-box .funfact-content .line-box:before {
    background: var(--brand-color);
}

.auto-container {
    position: static;
    max-width: 1230px;
    padding: 0px 15px;
    margin: 0 auto;
}

figure {
    margin: 0px;
}

p {
    text-align: justify;
    font-weight: 500;
    color: #000;
}

.sec-title {
    position: relative;
    display: block;
}

.sec-title .sub-title {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
    padding-left: 16px;
    color: #5049b1;
    font-weight: 600;
}

.sec-title .sub-title:before {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    left: 0px;
    top: 10px;
    border-radius: 50%;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 45px;
    line-height: 25px;
    text-transform: capitalize;
    color: var(--brand-color) !important;
}

.about-section {
    position: relative;
    padding: 90px 0px 50px 0px !important;
}

.content_block_one .content-box1 {
    position: relative;
    display: block;
}

.content_block_one .content-box1 .image-box {
    position: relative;
    display: block;
}

.content_block_one .content-box1 .image-box img {
    max-width: none;
    float: right;
    border-radius: 8px;
}

.funfact-block-one .inner-box {
    position: relative;
    display: block;
}

.funfact-block-one .inner-box .count-outer {
    position: relative;
    display: flex;
    font-size: 110px;
    line-height: 120px;
    font-weight: 700;
    color: rgb(75 57 145 / 9%);
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #4b3991;
    overflow: hidden;
    max-height: 120px;
    justify-content: center;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner {
    overflow: visible;
}

.funfact-block-one .inner-box p {
    line-height: 26px;
    color: #4b3991;
    font-weight: bold;
    text-align: center;
    font-size: 22px;
}

.funfact-block .funfact-block-one .inner-box {
    margin-bottom: 40px;
}

.content_block_two .content-box1 {
    position: relative;
    display: block;
}

.content_block_two .content-box1 .funfact-content .line-box .line-one {
    position: absolute;
    left: 50%;
    top: 90px;
    width: 1px;
    height: 200px;
    background: #D9D9D9;
}

.content_block_two .content-box1 .funfact-content .line-box .line-two {
    position: absolute;
    left: 0px;
    top: 52%;
    width: 100%;
    height: 1px;
    background: #D9D9D9;
}

.content_block_two .content-box1 .funfact-content .line-box:before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 10px solid #fff;
    left: 50%;
    top: 52%;
    margin-left: -15px;
    margin-top: -15px;
    z-index: 1;
}

.about-section .pattern-layer {
    position: absolute;
    right: 30px;
    top: -180px;
    width: 341px;
    height: 478px;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 1200px) {
    .content_block_one .content-box1 {
        margin-right: 0px;
    }
}

@media only screen and (max-width: 991px) {
    .about-section .pattern-layer {
        display: none;
    }

    .content_block_one .content-box1 .image-box img {
        float: none;
        max-width: 100%;
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .sec-title h2 {
        font-size: 25px;
        line-height: 44px;
    }

    .mb_100 {
        margin-bottom: 0px;
    }

    .about-section {
        padding: 50px 0px;
    }

    .content_block_two .content-box1 .funfact-content .line-box {
        display: none;
    }

    .funfact-block-one {
        left: 0px;
        right: 0px;
    }

    .funfact-block-one .inner-box {
        margin-bottom: 30px !important;
    }

    .content_block_two .content-box1 .text-box {
        margin-bottom: 30px;
    }
}







.single-case-wrapper {
    position: relative;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    transform: scale(0.97);
}

.single-case-wrapper a {
    display: block;
    overflow: hidden;
}

.single-case-wrapper a img {
    width: 100%;
    transition: 1.3s;
}

.single-case-wrapper a:hover img {
    transform: scale(1.15);
}

.single-case-wrapper .content {
    position: absolute;
    background: #fff;
    bottom: 0px;
    left: 30px;
    right: 30px;
    display: block;
    width: 90%;
    padding: 16px;
    opacity: 1;
    transition: 1s;
    text-align: center;
}

@media only screen and (max-width: 1199px) {
    .single-case-wrapper .content {
        padding: 10px;
        font-size: 18px;
        left: 15px;
        right: 15px;
    }
}

.single-case-wrapper .content a .title {
    margin-bottom: 5px;
    font-size: 20px;
}

@media only screen and (max-width: 1199px) {
    .single-case-wrapper .content a .title {
        font-size: 18px;
    }
}










.rts-section-gap {
    padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gap {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .rts-section-gap {
        padding: 60px 0;
    }
}




.rts-btn {
    padding: 20px 33px;
    line-height: 10px;
    max-width: max-content;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
    min-width: max-content;
}

.rts-btn.btn-primary {
    background: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.rts-btn.btn-primary::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--color-secondary);
    transform: translateY(110%);
    transition: 0.3s;
    transition-delay: 0.1s;
    z-index: -1;
}

.rts-btn.btn-primary:hover {
    color: #ffff;
}

.rts-btn.btn-primary:hover::after {
    transform: translateY(0);
}

.rts-testimonials-area-4 {
    background-image: url(../img/home-page/get-in-touch-with/get-in-touch-with.webp);
    background-position: center center;
    background-attachment: fixed;
}

.cta-main-wrapper-4 {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
}

@media only screen and (max-width: 575px) {
    .cta-main-wrapper-4 {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: center;
    }

}

.cta-main-wrapper-4 .left span {
    color: #fff;
}

.cta-main-wrapper-4 .left .title {
    margin-top: 10px;
    font-weight: 600;
    font-size: 60px;
    line-height: 58px;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .cta-main-wrapper-4 .left .title {
        font-size: 22px;
        line-height: 34px;
    }
}








.centred {
    text-align: center;
}

.parallax-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}

.video-section {
    position: relative;
    padding: 230px 0;
    overflow: hidden;
}

.video-section .bg-layer {
    background-attachment: fixed;
}

.video-section .bg-layer:before {
    position: absolute;
    content: "";
    background: #121212;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: .5;
}

.video-section .video-btn a {
    position: relative;
    display: inline-block;
    width: 142px;
    height: 142px;
    line-height: 146px;
    background: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 36px;
    color: var(--title-color);
}

.video-section .video-btn a:after,
.video-section .video-btn a:before {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: .9s;
    content: "";
    position: absolute;
    box-shadow: 0 0 0 0 hsla(0, 0%, 100%, .9);
    animation: ripple 3s infinite;
    transition: all .4s ease;
}

.video-section .video-btn a:after {
    animation-delay: .6s;
}

@media only screen and (max-width:767px) {
    .video-section {
        padding: 150px 0;
    }
}

/*! CSS Used keyframes */
@keyframes ripple {
    70% {
        box-shadow: 0 0 0 30px hsla(0, 0%, 100%, 0);
    }

    to {
        box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0);
    }
}


.nav-menu {
    display: inline-block !important;
}

.header .cstm-nav-menu {
    padding: 10px 40px 10px 40px !important;
}

.request-btn {
    margin-left: 0px;
}

.nav-menu ul {
    column-gap: 26px;
}

.services-one .prod-title {
    padding: 8px 40px;
}

.services-one .prod-title h2 {
    font-size: 35px !important;
}

.services-one .prod-title p {
    text-align: justify;
}

.client .clients-div {
    padding: 8px 8px;
}

.footer-two {
    padding: 60px 0 50px;
    background: #000;
    background: url(../img/home-page/footer/bg.webp);
    background-position: center center;
    background-size: contain;
}

.footer-copy {
    padding: 12px 90px;
    border-top: none;
    background: var(--brand-color) !important;
    color: #fff;
}

.footer-one p {
    text-align: justify;
    color: #fff;
}

.footer-copyright-text a {
    color: #fff;
}

.client-footer-logo {
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
}

.widget-footer {
    margin-left: 20px !important;
}

.widget-footer h2 {
    margin-left: 20px !important;
}

.footer-one ul li a {
    font-size: 17px;
}

.contact-footer {
    font-size: 18px;
}

.contact-footer a {
    font-size: 20px;
}

.footer-one h6 {
    font-size: 21px;
    margin-top: 20px;
    font-weight: 500;
}

.footer-copyright-text a, .footer-one p {
    font-size: 18px;
}

.footer-copyright-text a:hover {
    color: #fff !important;
}

.social li a {
    background-color: #fff !important;
    padding: 5px 8px;
    margin-top: 0px;
}

.inner-box:hover .count-outer, .inner-box:hover p {
    color: #f92d3b;
    /* -webkit-text-stroke-color: #f92d3b; */
}

.services-one .home-prod-sec {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 30px 0px;
}

.services-one .home-prod-sec:first-of-type {
    border-top: none !important;
}

.services-one .home-prod-sec:last-child {
    border-bottom: none !important;
}

.counter-sec .funfact-block-one {
    /* background-color: #4b399112; */
    padding: 10px 0px 5px 0px;
    border-radius: 3px;
}

.about-us-page .counter-sec {
    padding-bottom: 80px !important;
}

.funfact-block .funfact-block-one .inner-box {
    margin-bottom: 25px;
}

.why-choose-us-sec {
    padding-bottom: 80px !important;
}

.page-header {
	position: relative;
	background-color: #18479D;
	padding: 50px 0;
    z-index: 0;
}

.page-header::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgb(255 255 255 / 28%) 43.57%, rgb(1 5 53 / 59%) 100%);
	width: 100%;
	height: 100%;
	z-index: 0;
}

.page-header-box {
	position: relative;
	z-index: 1;
    text-align: center;
}

.page-header-box h1 {
	display: inline-block;
	color: #fff;
	font-size: 50px;
	font-weight: 800;
	line-height: 1.2em;
	margin-bottom: 10px;
	cursor: text;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
    display: flex;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-weight: 500;
	line-height: normal;
	color: #fff;
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol li.breadcrumb-item.active {
	color: #fff;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: #fff;
    content: "/";
}

.application-page .industries-we-serve-sec {
    padding: 40px !important;
}

.clients-page .team-one-card-container {
    padding: 40px !important;
}

.product-block-two {
  position: relative;
  margin-bottom: 30px;
}

.product-block-two .inner-box {
  position: relative;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #ffffff;
  padding: 20px 20px;
  padding-left: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 150px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block-two .inner-box:hover {
  border: 2px solid var(--brand-color);
}

.product-block-two .image {
  position: absolute;
  left: 20px;
  top: 20px;
  border-radius: 50%;
  overflow: hidden;
  height: 110px;
  width: 110px;
  border: 1px solid #e4e1d6;
  margin-bottom: 0px;
}

.product-block-two .image img {
  width: auto;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block-two .inner-box:hover .image img {
  -webkit-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}

.product-block-two h4 {
  display: block;
  font-size: 22px;
  color: var(--theme-color3);
  font-weight: 700;
  margin-bottom: 5px;
}

.product-block-two h4 a {
  color: var(--theme-color3);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block-two .price {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--brand-color);
  font-weight: 600;
}

.product-block-two .price del {
  display: inline-block;
  margin-left: 15px;
  font-size: 16px;
  color: #ff0000;
  line-height: 27px;
  opacity: 0.3;
}

.product-block-two .rating {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #ffc737;
}

.product-block {
  position: relative;
  margin-bottom: 30px;
}

.product-block.mix {
  display: none;
}

.product-block .inner-box {
  position: relative;
  border: 2px solid #e4e1d5;
  border-radius: 10px;
  text-align: center;
  background: #ffffff;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  padding: 15px 20px;
}

.product-block .inner-box:hover {
  border: 2px solid var(--brand-color);
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.product-block .image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0px;
}

.product-block .image:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 );
  content: "";
  opacity: 0.3;
  left: -100%;
  pointer-events: none;
  z-index: 1;
}

.product-block .inner-box:hover .image:before {
  left: 100%;
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.product-block .image img {
  width: auto;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block .inner-box:hover .image img {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.product-block .content {
  position: relative;
  padding: 10px 20px;
}

.product-block h4 {
  display: block;
  font-size: 22px;
  color: var(--theme-color2);
  font-weight: 700;
  margin-bottom: 5px;
}

.product-block h4 a {
  color: var(--theme-color3);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block h4 a:hover {
  color: var(--brand-color);
}

.product-block .price {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-gray-silver);
  font-weight: 600;
}

.product-block .price del {
  display: inline-block;
  margin-left: 15px;
  font-size: 16px;
  color: #ff0000;
  line-height: 27px;
  opacity: 0.3;
}

.product-block .rating {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  color: #ffc737;
}

.product-block .tag {
  position: absolute;
  top: 30px;
  left: 20px;
  font-size: 14px;
  line-height: 23px;
  color: #ffffff;
  background: #FD5F5C;
  font-weight: 400;
  padding: 0 12px;
  border-radius: 3px;
  z-index: 9;
  font-style: italic;
  text-transform: uppercase;
}

.product-block .icon-box {
  position: absolute;
  right: 20px;
  top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block .inner-box:hover .icon-box {
  top: 20px;
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.product-block .ui-btn {
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  z-index: 9;
  background-color: var(--brand-color);
  color: var(--text-color-bg-theme-color1);
  cursor: pointer;
  border-radius: 50px;
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-block .ui-btn:hover {
  background-color: var(--theme-color2);
  color: var(--headings-color);
}

.product-block .cat {
  display: block;
  font-size: 18px;
  color: #707070;
  font-style: italic;
  margin-bottom: 5px;
}

.product-block h4 a {
    font-size: 20px;
}

@media only screen and (max-width:767px) {
    .nav-menu {
        display: unset !important;
    }

    .services-one .prod-title {
        padding: 0px;
        margin: 20px 0px;
    }

    .widget-footer {
        margin-left: 0px !important;
    }

    .page-header {
		padding: 80px 0;
	}

	.page-header-box h1 {
		font-size: 30px;
	}

    .offcanvas.offcanvas-end {
        border-left: none !important;
    }

    .offcanvas-header {
        background-color: #3f51b6;
    }

    nav .breadcrumb {
        display: none !important;
    }

    .page-header {
        padding: 40px 0;
    }

    .about-section {
        padding: 40px 0px 50px 0px !important;
    }

    .sec-title {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .sec-title .sub-title {
        margin-bottom: 0px;
    }

    .about-us-page .counter-sec {
        padding: 0px 0px !important;
    }

    .counter-sec .funfact-block-one {
        margin: 10px 0px;
    }

    .funfact-block-one .inner-box p {
        font-size: 17px;
    }

    .client-footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-one img.header-logo {
        width: 100%;
    }

    .widget-footer {
        margin-top: 10px !important;
    }

    .widget-footer h2 {
        font-size: 25px;
        margin-left: 0px !important;
        margin-bottom: 3px !important;
    }

    .footer-copy {
        padding: 5px 20px !important;
        text-align: center;
    }

    .footer-copy .footer__bottom-two div {
        display: flex;
        justify-content: center;
        margin: 5px 0px !important;
    }

    .footer-copy .footer__bottom-two div p {
        padding-top: 8px !important;
        text-align: center;
    }

    .cs_scrollup {
        right: 20px !important;
    }

    .application-page .industries-we-serve-sec {
        padding: 20px 0px 0px 0px !important;
    }
}

@media only screen and (max-width: 991px) {
    .clients-page .team-one-card-container {
        margin-top: 0px !important;
        padding: 20px !important;
    }
}

.info-block-one .inner-box:hover .icon-box{background:var(--brand-color) !important;}
.info-block-one .inner-box:hover .icon-box:before{background:var(--brand-color) !important;}
.info-block-one .inner-box p a:hover{color:var(--brand-color) !important;}
.centred{text-align:center;}
.contact-info-section .title-box{position:relative;display:block;margin-bottom:50px;}
.contact-info-section .title-box .icon-box{position:relative;display:inline-block;width:80px;height:80px;line-height:80px;background:#f3f1f1;font-size:38px;text-align:center;border-radius:50%;margin-bottom:30px;}
.contact-info-section .title-box h2{display:block;font-size:48px;line-height:58px;font-weight:700;margin-bottom:21px;}
.info-block-one .inner-box{position:relative;display:block;}
.info-block-one .inner-box .icon-box{position:relative;display:inline-block;width:100px;height:100px;line-height:118px;text-align:center;background:#e2e2e2;font-size:32px;color:#000;margin-bottom:22px;clip-path:polygon(0% 50%, 50% 0%, 150% 100%, 0% 100%, 0% 0%);z-index:1;transition:all 500ms ease;}
.info-block-one .inner-box .icon-box:before{position:absolute;content:'';background:#fff;width:calc(100% - 2px);height:calc(100% - 2px);left:1px;top:1px;clip-path:polygon(0% 50%, 50% 0%, 150% 100%, 0% 100%, 0% 0%);z-index:-1;transition:all 500ms ease;}
.info-block-one .inner-box:hover .icon-box{color:#fff;}
.info-block-one .inner-box h3{position:relative;display:block;font-size:24px;line-height:34px;font-weight:700;margin-bottom:10px;}
.info-block-one .inner-box p{display:block;margin-bottom:19px;color:#000;font-weight: 500; text-align: center;}
.info-block-one .inner-box p a{display:inline-block;color:#000;}
.contact-info-section .info-column{border-right:1px solid #e2e2e2;}
.contact-info-section .info-column:last-child{border:none;}
@media only screen and (max-width: 991px){
.info-block-one .inner-box{margin-bottom:30px;}
.contact-info-section{padding-bottom:90px;}
.contact-info-section .info-column{border:none;}
}
@media only screen and (max-width: 767px){
.info-block-one .inner-box h3{margin-bottom:15px;}
.contact-info-section .title-box h2{font-size:36px;line-height:46px;}
}
.section-padding {
    padding: 80px 0;
}
.sec-title h2 {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    margin: 0px;
}

.services__icon-two {
    font-size: 60px;
    line-height: 0;
    color: var(--tg-theme-primary);
    display: inline-block;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    margin-bottom: 20px;
}
.services__content-two .title {
    color:#000;
    font-size: 25px;
    font-weight: 600;
}
.services__item-two:hover .services__icon-two {
    
    transform: rotateY(180deg);
}

.services__item-two:hover {
    border-color: var(--brand-color) !important;
}
.what-we-do {
    position: relative;
    padding: 20px 0px;
    background-color: #fff;
}
.services__item-two .sl-no {
    position: absolute;
    top: 30px;
    right: 25px;
    line-height: 1;
}

.services__item-two .sl-no h3 {
    line-height: 1;
    color: #dfebf7;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 0;
}
.services__item-two p {
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
    color: #000;
    font-weight: 500;
}
.services__item-two {
    border: 2px solid #eee;
    height: 100%;
    padding: 35px;
    margin-bottom: 30px;
    transition: .35s;
}

.row.rows-div {
  position: relative;
  background-color: #fff;
  margin-top: 50px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  padding: 10px 0px;
}

.why-img {
  position: relative;
  height: 100%;
}

.why-content {
  padding: 10px 15px;
}

.section-title h3 {
  font-size: 28px;
  color: var(--brand-color) !important;
  font-weight: 700;
  letter-spacing: 1px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}

.mission-vision-sec p {
    font-size: 17px;
}

.section-title h3:after {
  position: absolute;
  left: 0;
  bottom: 0;
  background: url('../img/inner-pages/about-us/title.webp');
  width: 100px;
  height: 5px;
  content: "";
}

.why-content li {
  font-size: 15px;
    color: #000;
    line-height: 30px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
    font-weight: 500;
}

.why-content li::before {
  content: "";
  position: absolute;
  background-color: var(--brand-color) !important;
  height: 7px;
  width: 7px;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(226deg);
}

@media screen{
.carousel{position:relative;}
.carousel-inner{position:relative;width:100%;overflow:hidden;}
.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left;}
.carousel-inner>.item>img{line-height:1;}
.carousel-inner>.active{display:block;}
.carousel-inner>.active{left:0;}
.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5;}
.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x;}
.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x;}
.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9;}
.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none;}
.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px;}
.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff;}
@media screen and (min-width:768px){
.carousel-indicators{bottom:20px;}
}
}
#carousel-custom .carousel-indicators{margin:10px 0 0;overflow:auto;position:static;text-align:left;white-space:nowrap;width:100%;}
#carousel-custom .carousel-indicators li{background-color:transparent;-webkit-border-radius:0;border-radius:0;display:inline-block;height:auto;margin:0!important;width:auto;}
#carousel-custom .carousel-indicators li img{display:block;opacity:0.5;border:1px solid #aaaaaa;}
#carousel-custom .carousel-indicators li.active img{opacity:1;}
#carousel-custom .carousel-indicators li:hover img{opacity:0.75;}
#carousel-custom .carousel-outer{position:relative;}
.carousel-indicators li img{width:80px;}
.carousel-control.left{background-image:none!important;z-index:999999;}
.carousel-control.right{background-image:none!important;z-index:999999;}
.fa-arrow-left{color:#000;top:50%;position:absolute;}
.fa-arrow-right{color:#000;top:50%;position:absolute;} 

.carousel .fa-arrow-left {
    left: 0px;
}

.prod-details {
    padding: 50px 0px;
}

.cstm-table-cls tr td:first-child {
    width: 250px;
    background-color: var(--brand-color);
    color: #fff;
}

.cstm-table-cls tr td {
    border: 1px solid #eee;
}

.product-inquiry-button {
    background-color: #3f51b6;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 3px;
    font-size: 18px;
}

.product-inquiry-button:hover {
    color: #fff !important;
}

.sec-title p {
    padding: 5px 0px;
}

.prod-content h4 {
    color: #3f51b6;
    font-weight: 600;
}

.prod-content .cstm-ul {
    list-style-type: disc;
    padding: 5px 0px;
    color: #000;
}
#sync1 .item {
  margin: 5px;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}

#sync2 .item {
  border: 1px solid #ddd;
background: #fff;
/* padding: 10px 0px; */
margin: 5px;
color: #fff;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
text-align: center;
cursor: pointer;
}

#sync2 .item h1 {
  font-size: 18px;
}

#sync2 .current .item {
  border-color: #0c83e7;
}

.owl-theme .owl-nav [class*="owl-"] {
  transition: all 0.3s ease;
}

.owl-theme .owl-nav [class*="owl-"].disabled:hover {
  background-color: #d6d6d6;
}

#sync1.owl-theme {
  position: relative;

    background-color: #fff;
    padding: 8px 20px;
}

#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev {
  width: 22px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
}

#sync1.owl-theme .owl-prev {
  left: -10px;
}

#sync1.owl-theme .owl-next {
  right: -10px;
}
/* animate fadin duration 1.5s */
.owl-carousel .animated {
  animation-duration: 1.5s !important;
}
#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev {
  width: 35px !important;
  height: 55px !important;
      background-color: #3f51b6;
}
#sync1 svg {
  width: 15px !important;
}

.banner .owl-carousel .owl-item img {
    width: unset;
}

@media screen and (max-width:1440px) {
    
    .banner .owl-carousel .owl-item img {
        width: 100% !important;
    }
}

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

    .banner .owl-carousel .owl-item img {
        width: 100% !important;
    }

    .prod-details {
        padding: 30px 0px 10px 0px;
    }

    .product-inquiry-button {
        justify-content: center;
        display: flex;
        line-height: 18px;
        padding: 12px 20px;
    }

    .sec-title h2 {
        font-size: 25px;
    }

    .about-section {
        padding: 40px 0px 20px 0px !important;
    }

    .row.rows-div {
        margin-top: 10px;
    }

    .banner-three-carousel .owl-nav {
        display: none;
    }

    .counter-sec {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .why-choose-us-sec {
        padding: 10px 10px 60px 10px !important;
    }

    .sec-title h2 {
        font-size: 22px;
        line-height: 28px;
    }

    .blogs-one .row.pe-5.ps-5 {
        padding: 10px 10px !important;
        justify-content: center !important;
    }

    .logo-container .header-logo {
        padding-left: 0px !important;
    }

    .menu-item.dropdown.megamenu {
        padding: 10px 12px;
    }
}

@media screen and (max-width: 1366px) {
    .logo-container .header-logo {
        width: 80%;
    }

    .nav-menu ul li a {
        font-size: 14px;
    }

    .header .cstm-nav-menu {
        padding: 3px 40px 6px 40px !important;
    }

    .cstm-cls {
        padding-bottom: 5px !important;
    }

    .request-btn a {
        padding: 3px 10px !important;
    }
}

.about-cstm-ul {
    list-style-type: disclosure-closed;
    padding: 5px 0px;
    color: #000;
    padding-left: 20px;
}

@media only screen and (max-width: 1199px) {
    .about-cstm-ul li {
        list-style-type: disclosure-closed !important;
    }
}