ab@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Exo 2';
    src: url('../font/Exo2-Regular.woff2') format('woff2'),
        url('../font/Exo2-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2';
    src: url('../font/Roboto-Italic.woff2') format('woff2'),
        url('../font/Exo2-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Italic.woff2') format('woff2'),
        url('../font/Roboto-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Regular.woff2') format('woff2'),
        url('../font/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #00b6b1;
    --bg1: #005483;
    --bg1: #03466e;
    --bg2: #649fc8;
    --dark: #00283a;
    --light: #fefefe;
    --theme-color: #f5f7fa;
    --secondary: #757f95;
    --font1:  'Roboto';
    --font2:  'Exo 2';
    --transition: all 0.5s ease-in-out;
    --box-shadow: 1px 10px 40px 5px rgba(24, 58, 59, 0.05);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
}

body {
    scroll-behavior: smooth;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
    font-family: var(--font2);
    color: var(--secondary);
}

::selection {
    color: var(--light);
    background-color: var(--bg1);
}

a {
    text-decoration: none;
    color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
    margin: 0px;
    font-weight: 600;
    font-family: var(--font2);
    line-height: 1.2;
}

.container {
    max-width: 1240px;
}

ul,
li,
a {
    margin: 0;
    padding: 0;
    list-style: none;   
}

p {
    font-size: 16px;
    font-family: var(--font1), sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

section {
    padding: 100px 0;
    overflow: hidden;
}

/*-------------*/
.title-sec {
    font-family: var(--font1), sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    word-spacing: 5.8px;
    position: relative;
    color: var(--bg);
}

.title-sec img {
    width: 20px;
}

.sub-title {
    color: var(--dark);
    font-family: var(--font2), sans-serif;
    text-transform: capitalize;
    font-size: 45px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.sub-title span {
    color: var(--bg);
}

.white-sub-title {
    color: var(--light) !important;
}

.heading-sec {
    font-size: 20px;
    text-transform: capitalize;
    font-family: var(--font1), sans-serif;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark);
}

.content-sec {
    font-size: 16px;
    font-family: var(--font2);
    color: var(--dark);
    line-height: 1.5;
}

.btn-sec {
    font-size: 16px;
    color: var(--light);
    padding: 12px 20px;
    transition: var(--transition);
    text-transform: capitalize;
    position: relative;
    border-radius: 15px;
    vertical-align: middle;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--bg);
    z-index: 1;
    display: inline-block;
}

.btn-sec:hover {
    color: var(--light);
}

.btn-sec::after {
    content: "";
    height: 400px;
    width: 400px;
    background: var(--bg1);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-sec:hover::after {
    transform: translateY(-50%) translateX(-50%) scale(1);
    color: var(--light);
}
.btn-sec span{
    padding-left: 10px;
}

.learn-more {
    font-size: 18px;
    color: var(--bg1);
    font-family: var(--font1);
    padding: 10px 20px 10px 0;
    text-transform: capitalize;
    font-weight: 800;
}

.learn-more span {
    color: var(--bg1);
    transition: all 0.5s ease;
}

.learn-more:hover.learn-more span {
    color: var(--bg1);
    padding-left: 5px;
}


.header-part {
    display: block;
    text-align: left;
    margin-bottom: 30px;
}

/*****====================******/

.top-header {
    background-color: var(--bg1);
    position: relative;
    transition: all 0.4s ease-in-out 0.5s;
}

.top-header::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: -1px;
    width: 35%;
    background: var(--bg);
    border-top-right-radius: 50px;
    z-index: 9;
}

.th-wrap {
    line-height: 40px;
    display: flex;
    justify-content: space-between;
}

.th-contact ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.th-element {
    display: flex;
    color: var(--light);
    align-items: center;
    text-align: center;
    z-index: 99;
    position: relative;
}

.th-left {
    position: relative;
    z-index: 99;
}

.social-links span {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--light);
}

.social-links a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: var(--light);
    font-size: 14px;
    text-align: center;
    border-radius: 50px;
    margin-left: 10px;
    background: var(--bg1);
    transition: var(--transition);
    display: inline-block;
}

.footer-social-links a {
    background-color: var(--light);
    color: var(--bg);
    transition: var(--transition);
}

.footer-social-links a:hover {
    background-color: var(--bg);
    color: var(--light);
}

/* ------===============------- */
.th-info a {
    color: var(--light);
    font-family: var(--font1);
    font-weight: 400;
}

.th-icon {
    color: var(--bg);
    margin-right: 5px;
}


/* navbar-header */

header {
    position: relative;
    width: 100%;
    left: 0;
    background-color: transparent;
    z-index: 999;
    transition: all 0.5s ease-in-out;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    vertical-align: middle;
    font-family: var(--font2);
    background-color: transparent;
}

.c-logo img {
    object-fit: contain;
    width: 90px;
}

.logo-sec {
    display: inline-block;
    position: relative;
    z-index: 999;
    padding-right: 50px;
}

/* .logo-sec .bg-color {
    position: absolute;
    z-index: -1;
    top: -1rem;
    right: 0px;
    width: 5000px;
    height: calc(100% + 3rem);
    background: var(--light);
    margin-top: -38px;
    clip-path: polygon(0% 0%, 100% 0%, 98% 100%, 0% 100%, 0px 0px);
} */

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    display: block;
    position: relative;
}

.nav-menu li a {
    font-family: var(--font1);
    text-transform: capitalize;
    display: block;
    padding: 36px 16px;
    font-weight: 500;
    line-height: 1;
    font-size: 17px;
    color: var(--dark);
    letter-spacing: 0.5px;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--bg);
}

.nav-menu li a :nth-child(last) {
    padding-right: 0px !important;
}

.nav-menu li a.active {
    color: var(--bg);
}

.nav-menu li.drop-menu a {
    padding-right: 1.5rem;
}

.nav-menu li.drop-menu {
    position: relative;
    display: block;
    transition-delay: 0.6s;
}

.drop-content {
    position: absolute;
    top: 100%;
    width: 260px;
    height: 350px;
    display: none;
    background-color: var(--light);
    z-index: 999;
    box-shadow: rgba(9, 9, 9, 0.2) 0px 2px 2px 0px;
    overflow: auto;
    border-top: 3px solid var(--bg1);
    transition: all 0.6s ease-in-out 0.4s;
    z-index: 999;

}

.drop-menu:hover .drop-content {
    display: block;
    top: 100%;
}

.drop-content li {
    line-height: 50px;
    display: block;
    transition: all 0.8s ease;
}

.drop-content li a {
    color: var(--dark);
    display: block;
    width: 100%;
    font-family: var(--font1);
    font-weight: 400;
    padding: 16px;
    transition: all 0.4s ease;
    position: relative;
}

.drop-content li a:after {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    height: 6px;
    width: 6px;
    border: 1px solid var(--light);
    outline: 2px solid var(--bg);
    border-radius: 50%;
    background-color: var(--bg);
    transition: var(--transition);
    z-index: 999;
    transform: scale(0, 0);
    opacity: 0;
}

.drop-content li a:hover {
    background: transparent;
    color: var(--bg);
    padding-left: 22px;
}

.drop-content li a:hover::after {
    transform: scale(1, 1);
    opacity: 1;
}

.drop-content::-webkit-scrollbar {
    width: 7px;
    background-color: var(--bg);
    box-shadow: 1px solid var(--dark);
}

.drop-content::-webkit-scrollbar-thumb {
    color: var(--dark);
    background-color: var(--bg1);
    border-radius: 5px;
}

ul.drop-content li:after {
    display: none;
}

.click-btn {
    position: absolute;
    right: 1px;
    top: 36px;
    color: var(--dark);
    cursor: pointer;
}

/*----sticky-header----------*/
#my-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    animation: slide-down 1s ease-in-out;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
    background-color: var(--light);
}

#my-header.sticky .top-header {
    display: none;
}

#my-header.sticky .nav-sec>li>a {
    color: var(--dark);
}

@keyframes slide-down {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#my-header.sticky .nav-sec>li>a:hover {
    color: var(--bg1);
}

#my-header.sticky .logo img {
    margin-top: 0;
}

/****bannner_start****/
.banner {
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -0.5px;
    top: 0;
    background: linear-gradient(to bottom right, rgba(0, 39, 57, .95) 0%, rgba(0, 0, 0, .1) 100%);
    z-index: -1;
}

.banner-b1 {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(11, 18, 40);
    background: linear-gradient(112deg, rgba(11, 18, 40, 0.7009803921569) 0%, rgba(255, 255, 255, 0) 86%);
    z-index: 9;
}

.banner-bg {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -0.5px;
    top: 0;
    background: linear-gradient(to bottom right, rgba(0, 39, 57, .95) 0%, rgba(0, 0, 0, .1) 100%);
    z-index: 9;
    opacity:0;
}

.banner-content {
    position: absolute;
    top: 20%;
    left: 60px;
    color: var(--light);
    width: 50%;
    text-align: left;
    z-index: 99;
    box-sizing: border-box;
}

.ban-heading {
    color: var(--bg2);
    font-size: 22px;
    letter-spacing: 5px;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out 0.8s;
    opacity: 0;
    transform: translate(0px, 10px);
}

.ban-content1 {
    text-transform: capitalize;
    display: block;
    font-family: var(--font2), sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 0.5s ease 0.7s;
    font-size: 70px;
    color: var(--light);
    margin-bottom: 30px;
    opacity: 0;
    transform: translate(0px, 100px);
    display: inline-block;
    line-height: 1;
}

.ban-content1 span {
    color: var(--bg2);
}

.ban-content2 {
    transition: all 0.9s ease 0.7s;
    color: var(--light);
    margin-bottom: 30px;
    opacity: 0;
    transform: translate(0px, 100px);
    top: 50%;
}

.ban-content2 p {
    letter-spacing: 1.1px;
    line-height: 1.5;
    font-size: 18px;
    color: var(--light);
    color: var(--light);
    text-transform: capitalize;
    display: block;
    font-family: var(--font1), sans-serif;
    font-weight: 400;
    text-transform: capitalize;
}

.ban-btn {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: all 1s ease 0.8s;
    transform: translate(0px, 100px);
}

.ban-img img {
    width: 100%;
    max-height: 800px;
    object-fit: cover;
    transition: all 5s ease-in-out;
    transform: scale(1);
    z-index: 9;
    position: relative;
    border-radius: 2rem;
}

.ban-img {
    position: relative;
    z-index: 9;
}

.ban-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -0.5px;
    top: 0;
    background: linear-gradient(to bottom right, rgba(0, 39, 57, .95) 0%, rgba(0, 0, 0, .1) 100%);
    z-index: -9;
}

.swiper-slide-active .ban-img img {
    transform: scale(1);
}

.swiper-slide-active .ban-heading,
.swiper-slide-active .ban-content1,
.swiper-slide-active .ban-content2,
.swiper-slide-active .ban-btn {
    transform: scale(1.0);
    opacity: 1;
    visibility: visible;
}

.next-btn,
.back-btn {
    position: absolute;
    top: 40%;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    padding: 1rem;
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    color: var(--bg1);
    font-weight: 100;
    font-family: var(--font2);
    font-size: 25px;
    opacity: 0.9;
    background-color: var(--light);
    padding: 20px;
}

.next-btn {
    right: 10px;
}

.back-btn {
    left: 10px;
}

.next-btn:hover,
.back-btn:hover {
    color: var(--light);
    background-color: var(--bg);
    box-shadow: 0px 0px 2px var(--light);
    opacity: 1;
}

/******slick banner******/
.ban-item {
    position: relative;
}

.slider-bg {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.8);
    background: linear-gradient(90deg, rgba(30, 0, 0, 0.4), rgba(238, 226, 226, 0.1));
    z-index: 0;
}

.slider-content {
    position: absolute;
    content: '';
    top: 30vh;
    left: 5vw;
    padding: 40px;
    z-index: 9;
}

.slider-content1,
.slider-content2 {
    color: var(--light);
    text-transform: capitalize;
    display: block;
    font-family: var(--font1), sans-serif;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    transition: all 0.8s ease-in 0.6s;
    font-size: 66px;
    color: var(--light);
    padding-right: 300px;
    margin-bottom: 30px;
    letter-spacing: 1.3px;
    opacity: 0;
    transform: translate(0px, -150px);
    text-shadow: 0 0 2px var(--light);
}

.slider-content2 {
    font-size: 16px;
    transform: translate(0px, 250px);
    font-family: var(--font2);
    line-height: 1.5;
}

.slider-btn {
    margin: 40px;
}

.ban-item.slick-slide.slick-current.slick-active .slider-content1,
.ban-item.slick-slide.slick-current.slick-active .slider-content2 {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.b-next.slick-arrow {
    position: absolute;
    right: 1vw;
    top: 50%;
    content: '';
    background-color: var(--dark);
    color: var(--light);
    display: inline-block;
    padding: 10px 15px;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
    z-index: 99;
    cursor: pointer;
}

.b-back.slick-arrow {
    position: absolute;
    left: 1vw;
    top: 50%;
    content: '';
    background-color: var(--dark);
    color: var(--light);
    display: inline-block;
    padding: 10px 15px;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
    z-index: 99;
    cursor: pointer;
}

/*--------feature-section---------*/

/* .feature-sec {
    background: #fff;
    background: -webkit-linear-gradient(to right, var(--bg), var(--secondary));
    background: linear-gradient(to right, var(--bg), var(--secondary));
} */

.feature-box {
    background-color: var(--bg1);
    color: var(--light);
    padding: 20px;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.feature-icon {
    color: var(--light);
    font-size: 40px;
    text-align: center;
    height: 80px;
    width: 80px;
    line-height: 60px;
    background: var(--theme-color);
    border-radius: 50px;
    margin: 0 0 25px;
    position: relative;
    display: inline-block;
}

.feature-icon img {
    width: 50px;
}

.feature-icon::after {
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    top: -5px;
    bottom: -5px;
    border: 2px dashed var(--theme-color);
    border-radius: 50px;
    animation: f-move 15s linear infinite;
}

@keyframes f-move {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.feature-content {
    text-align: left;
}

.feature-item {
    display: flex;
    justify-content: space-evenly;
    color: var(--light);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.feature-box p {
     color: var(--light);
    font-family: var(--font1);
    font-size: 1rem;
}

.feature-heading {
    color: var(--light);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--font1);
    letter-spacing: 1.2px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.feature-box .count {
    position: absolute;
    left: 20px;
    bottom: 10px;
    font-size: 60px;
    line-height: 60px;
    font-weight: 800;
    color: var(--bg2);
    font-family: var(--font2);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--bg2);
    z-index: -1;
    opacity: 0.4;

}


/* ======================== */
/*--------welcome-area---------*/
.welcome-area {
    background-color: var(--bg1);
}

.welcome-area p.welcome-title {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: var(--bg1);
    font-weight: 600;
    text-transform: uppercase;
    text-align: right;
    padding: 5px 20px;
}

.welcome-content {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 24px;
    color: var(--dark);
    font-weight: 400;
    padding-left: 35px;
    border-left: 1px solid #222222;
}

/******about-us**********/
.about-us {
    position: relative;
    z-index: 9;
    background-color: var(--theme-color);
}

.about-img {
    width: 50%;
    float: left;
    padding-right: 1rem;
    padding-bottom: 1rem;
}

.about-img img {
    object-fit: cover;
}

.about-btn {
    display: flex;
    justify-content: space-between;
}

.about-number img {
    width: 40px;
    object-fit: contain;
}

.about-number span {
    font-size: 20px;
    font-family: var(--font2);
    font-weight: 700;
    color: var(--bg1);
}
.about-content{
    margin-bottom: 2rem;
}
.about-content ul{
    margin-bottom:2rem;
}
.about-content li{
    list-style:disc;
    color:var(--dark);
    font-weight:500;
    font-family:var(--font1);
}
/*---------service-section------*/
.service-sec {
    background-color: var(--dark);
}

.service-item {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    background: var(--light);
    text-align: center;
    transition: var(--transition);
    margin-bottom: 50px;
    z-index: 1;
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 30px;
    transform: rotate(45deg);
    border: 3px solid var(--bg);
    background: var(--bg);
    position: relative;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-icon img {
    width: 60px;
    filter: brightness(0) invert();
    transform: rotate(-45deg);
}

.service-content {
    position: relative;
}

.service-title a {
    font-size: 22px;
    margin-top: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    display: block;
}

.service-text {
    padding-bottom: 30px;
}

.service-arrow {
    position: absolute;
    left: 50%;
    bottom: -55px;
    transform: translateX(-50%);
    border: 10px solid var(--dark);
    border-radius: 50px;
}

.service-arrow .service-btn {
    width: 55px;
    height: 55px;
    line-height: 50px;
    border-radius: 50%;
    border: 3px solid var(--bg);
    background: var(--bg);
    color: var(--light);
    font-size: 25px;
    text-align: center;
    transition: var(--transition);
    z-index: 1;
    display: inline-block;
}

.service-arrow .service-btn:hover {
    transform: rotate(360deg);
}

/* ========================== */

/* --tab */
.nav-pills {
    padding: 1rem;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    margin: 2rem 0;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--bg1);
    color: var(--light);
    text-transform: capitalize;
}

.nav-pills .nav-link {
    color: var(--dark);
    border: 1px solid var(--dark);
}

button.nav-link {
    font-size: 20px;
    color: var(--secondary);
    text-transform: capitalize;
    background-color: #fff;
    font-size: 15px;
}

button.nav-link:hover {

    color: var(--light);
    background-color: var(--bg1);
}

/* ------------- */
/*----product-------*/

.pro-box {
    background-color: var(--theme-color);
    margin-bottom: 5%;
    display: block;
    box-shadow: var(--box-shadow2);
}

.pro-content {
    overflow: hidden;
    padding-bottom: 1rem;
}

.pro-img img {
    padding: 15px 0;
    max-width: 100%;
    height: auto;
    transition: var(--transition);
}

.pro-img {
    padding: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.pro-img img:hover {
    transform: scale(1.1);
}

.pro-content span {
    color: var(--bg1);
    font-weight: 500;
    text-transform: capitalize;
    font-size: 24px;
    font-family: var(--font2);
}

.pt-content {
    color: var(--light);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border: 1px solid var(--bg);
    background: var(--bg);
    position: absolute;
    transition: all 0.2s ease-in-out;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    outline: 4px solid var(--theme-color);
    display: none;
}

.pro-box:hover .pt-content {
    background-color: var(--bg1);
    color: var(--light);
}

.pt-arrow {
    right: 45%;
    bottom: 10px;
}

.pb-arrow {
    left: 0px;
    bottom: 30px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    width: 120px;
    text-align: center;
    transform: skewX(-25deg);
    padding: 4px 0;
    line-height: 30px;
    display: none;

}

/* ========================== */



/*---------product-section------*
.product-sec {
    background: #fff;
    background: -webkit-linear-gradient(to right, #fff, var(--secondary));
    background: linear-gradient(to right, #fff, var(--secondary));
    padding-bottom: 180px;
}

.product-box {
    display: flex;
    flex-direction: column;
    background-color: var(--light);
    padding: 10px 10px 20px 10px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.product-box {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.product-box img {
    height: 250px;
    object-fit: contain;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.84) 0px 3px 8px;
}

.product-box:hover .product-box img {
    transform: scale(1.1);
}

.product-box:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.title-sec.service-title {
    color: var(--dark);
    font-weight: 600;
}

.product-slider {
    padding-bottom: 80px;
}

.serv-next.slick-arrow {
    position: absolute;
    bottom: 10px;
    right: 45%;
    padding: 8px 18px;
    font-size: 18px;
    background-color: var(--bg1);
    color: var(--bg1);
    z-index: 9;
    border-radius: 5%;
    width: 50px;
    cursor: pointer;
}

.serv-back.slick-arrow {
    position: absolute;
    bottom: 10px;
    right: 50%;
    background-color: var(--bg1);
    border-radius: 5%;
    padding: 8px 18px;
    font-size: 18px;
    z-index: 9;
    cursor: pointer;
    color: var(--bg1);
    width: 50px;
    cursor: pointer
}

/*------md-banner----------*/
.cta-area {
    padding-top: 80px;
    padding-bottom: 180px;
    background-image: url("../image/img/bg/md-banner.jpg");
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    background-position: center center;
}

.cta-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    background: rgba(0, 40, 58, 0.9);
}

.cta-text h1 {
    color: var(--light);
    font-size: 50px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.cta-text p {
    color: var(--light);
}

.cta-border-btn {
    font-size: 32px;
    font-weight: 700;
    color: var(--light) !important;
}

.cta-border-btn i {
    margin-right: 15px;
    color: var(--theme-color) !important;
}

/*------counter-area----------*/
.counter-area {
    margin-top: -100px;
    position: relative;
    z-index: 99;
}

.counter-wrap {
    padding: 50px 15px 50px 30px;
    background: var(--bg);
    border-radius: 100px;
    position: relative;
    border: 10px solid var(--light);
    z-index: 1;
}

.counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.counter-box .icon {
    position: relative;
    font-size: 45px;
    width: 90px;
    height: 90px;
    line-height: 80px;
    text-align: center;
    color: var(--bg);
    z-index: 1;
}

.counter-box .icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: var(--light);
    transform: rotate(45deg);
    width: 100%;
    height: 100%;
    border-radius: 30px;
    z-index: -1;
}

.counter-box .icon img {
    width: 55px;
}

.counter-box .counter {
    display: block;
    line-height: 1;
    color: var(--light);
    font-size: 50px;
    font-weight: 600;
}

.counter-box .count-digit {
    display: block;
    line-height: 1;
    color: var(--light);
    font-size: 50px;
    font-weight: 600;
}

.counter-box .title {
    color: var(--light);
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}
/* -------------------- */
/* -------------------- */
/********** testi-monial ************/
.testimonial-sec{
    background-image:url(../image/img/bg/testimonial-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 9;
}
.testimonial-sec::after{
    position: absolute;
    z-index: -1;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--dark);
    opacity: 0.9;
}
.testi-layer:after{
    position: absolute;
    content: '';
    z-index: 0;
    height: 100%;
    width: 100%;
    top:0;
    left:0;
    background-color:rgb(0, 0, 0);
    opacity: 0.4;
}
.testi-box{
    margin-top: 10px;
    background: var(--light);
    padding: 25px;
    margin: 0 6px 20px;
    position: relative;
    border-radius: 20px;
    box-shadow: 0px  0px 5px var(--dark);
    transition: all 0.5s ease-in-out;
}
.t-rate{
    color: var(--dark);
}
.t-item{
    display: flex;
    align-items: center;
    gap: 15px;
}
.t-img{
      width: 70px;
    height: 70px;
    padding: 4px;
    border-radius: 50px;
    border: 10px solid var(--bg);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
.t-img img{
    border-radius: 50%;
    width: 60px;
}
.t-content p{
    color: var(--bg);
    font-family: var(--font1);
    font-weight: 600;
    font-size: 22px;
    text-transform: capitalize;
    display: block;
}

.testi-slider .slick-dots {
    text-align: center;
    padding-top: 20px;
}

.testi-slider .slick-dots button {
    width: 8px;
    height: 8px;
    background-color: var(--light);
    border-radius: 10%;
    text-indent: -9999px;
    padding: 0;
    border: none;
    border-radius: 5px;
}
.quote-img{
        position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 60px;
    opacity: 0.1;

}
.slick-dots {
    text-align: center;
    padding-top: 20px;
}

.slick-dots>li {
    display: inline-block;
    margin: 7px;
}

.slick-dots .slick-active button {
    background-color: var(--light);
    width: 20px;
}


    
  /* >>> FAQ STYLES */

.faq-sec {
  display: block;
}

.accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem;  
  box-shadow: var(--box-shadow2);
  margin-bottom: 1.5rem;

}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid var(--bg1);
  padding-bottom: 1rem;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  color: #222;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  font-family: var(--font1);
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: var(--bg1);
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: var(--blue);
  border: 1px solid var(--blue);
}

.accordion button .accordion-title {
    padding: 1em 2.5em 1em 0;
    font-family: var(--font2);
    font-weight: 600;
    color: var(--bg1);
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 14px;
  width: 22px;
  height: 22px;
  border: 1px solid var(--dark);
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: var(--dark);
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: var(--dark);
}

.accordion button[aria-expanded='true'] {
  color: var(--dark);
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font1);
  margin: 1em 0;
}
/* ================== */

/******clients*******/
.our-client {
    position: relative;
}

.client-img {
    padding: 10px;
}

.client-img img {
    object-fit: contain;
    height: 150px;
    width: 100%;
    margin: 10px;
    border-radius: 10px;
    box-shadow: var(--box-shadow2);
}

.client-box {
    height: 120px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 22px;
    border-radius: 3px;
}

.client-heading {
    color: var(--bg1);
    font-family: var(--font2), sans-serif;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 900;
    padding-bottom: 10px;
    display: inline-block;
    line-height: 1.5;
    letter-spacing: 1.3px;
    position: relative;
}

/*---------contact-----------*/
.contact-us {
    position: relative;
    z-index: 9;
}

.contact-content {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    margin-bottom: 50px;
}

/* 
.c-social-links {
    background-color: var(--light);
    display: block;
    padding: 10px;
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.10);
}

.c-social-item {
    background-color: var(--secondary);
    padding: 10px;
    font-size: 30px;
    margin: 20px auto;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c-social-item a {
    transition: all 0.3s ease-in-out;
}

.c-social-item:hover.c-social-item a {
    transform: scale(1.1);
} */

.contact-form {
    border-radius: 5px;
    z-index: 1;
    border-radius: 5px;
    position: relative;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-title {
    font-size: 30px;
    text-transform: capitalize;
    font-family: var(--font2), sans-serif;
    color: var(--bg1);
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-form .input-text {
    display: block;
    outline: none;
    border: none;
    width: 100%;
    padding: 0px 20px;
    font-size: 17px;
    font-weight: 400;
    color: var(--dark);
    height: 50px;
    border-radius: 8px;
    margin: 0 0 20px 0;
    font-family: var(--font1);
    box-shadow: none;
    border: 1px solid #00000014;
    transition: all 0.5s linear;
}

.contact-form .input-select {
    color: rgba(34, 37, 36, 0.629);
}

.contact-address {
    font-family: sans-serif;
}

.contact-sec a {
    color: var(--white);
}

.contact-form textarea.input-text {
    height: 170px;
    padding-top: 30px;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.contact-email,
.contact-number {
    margin: 5px 0 15px 0;
    font-weight: 500;
}

.contact-btn {
    color: #fff;
    font-size: 14px;
    display: inline-block;
    margin: 50px o;
}

.c-content-box {
    padding: 30px 20px;
    margin-top: 20px;
    border-top: 1px solid #00000014;
    position: relative;
    display: block;
}

.c-contact-box::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
    background: var(--bg);
    border-radius: 0 10px 0 0;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.c-contact-box {
    display: flex;
    gap: 20px;
}

.c-icon {
    padding: 20px;
    font-size: 20px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--bg);
    text-align: center;
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-social-links .fb a {
    color: #3b5999;
}

.c-social-links .twit a {
    color: var(--dark);
}

.c-social-links .link a {
    color: #0077b5;
}

.c-social-links .insta a {
    color: #e4405f;
}

.c-social-links .pin a {
    color: #bd081c;
}


/******footer*******/
footer {
    padding: 50px 0 30px 0;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 9;
    background-color: var(--dark);
}


.footer-element {
    margin-top: 20px;
}

.footer-element p {
    font-weight: 400;
    color:var(--light);
    font-size:15px;
}

.f-logo img {
    background-color: var(--dark);
    width: 120px;
    object-fit: cover;
}

.f-heading {
    color: var(--light);
    text-transform: capitalize;
    font-size: 24px;
    font-family: var(--font1), sans-serif;
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.f-heading::before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -3px;
    width: 100px;
    height: 3px;
    background-color: var(--light);
    z-index: 1;
}
.f-heading:after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: -3px;
    width: 18px;
    height: 3px;
    background-color: var(--bg);
    z-index: 1;
}

.product-content {
    height: 240px;
    overflow-x: hidden;
    overflow-y: scroll;
}

ul.product-content li {
    width: 95%;
}

.product-content::-webkit-scrollbar {
    width: 7px;
    background-color: var(--light);
    box-shadow: 0px 1px solid var(--dark);
}

.product-content::-webkit-scrollbar-thumb {
    color: var(-- --bg);
    background-color: var(--bg2);
    border-radius: 5px;
    cursor: pointer;
}

.f-content {
    margin-top: 20px;
    font-family: var(--font1), sans-serif;
    color: var(--light);
    line-height: 1.5;
}

.f-content li {
    padding: 4px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--dark);
    margin-bottom: 14px;
}

.f-content li a {
    color: var(--light);
    transition: all 0.3s ease-in-out;
    font-size: 15px;
    font-weight: 400;
    font-family: var(--font1);
}

.f-content li a:hover {
    color: var(--bg);
    padding-left: 10px;
}

.f-content>li>a>span {
    margin-right: 10px;
    color: var(--bg);

}

.f-content>li>span {
    margin-right: 15px;
    color: var(--bg);
    font-size: 22px;
}

/*****copyright********/
.copyright {
    display: flex;
    justify-content: space-between;
    font-family: var(--font1);
    text-transform: capitalize;
    color: var(--light);
    padding-top: 20px;
    border-top: 1px solid var(--bg2);
    margin-top: 4rem;
    font-size:13px;
}

.copyright span {
    font-weight: 700;
    padding: 0 5px;
}

.copyright a {
    color: var(--bg);
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--font2);
}

.footer-bottom p {
    color: var(--light);
    margin: 0;
}

/********scroll-btn**************/
#scroll-top {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 10px;
    position: fixed;
    bottom: 50px;
    right: 10px;
    visibility: hidden;
    z-index: 1000;
    transition: all 0.6s ease;
    box-shadow: var(--box-shadow2);
}

#scroll-top::after {
    content: "\f8cc";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2rem;
    line-height: 40px;
    color: var(--bg);
}

#scroll-top:hover {
    cursor: pointer;
    color: var(--bg);
    transform: translateY(-5px);
}

#scroll-top:active {
    background-color: var(--bg1);
    color: var(--light);
}

#scroll-top.show {
    opacity: 1;
    visibility: visible;
}

#scroll-top .tooltiptext {
    visibility: hidden;
    width: auto;
    color: var(--bg);
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    bottom: 50px;
    right: 5px;
    position: absolute;
    z-index: 1;
}

#scroll-top:hover .tooltiptext {
    visibility: visible;
}

.fixed-wtsp {
    position: fixed;
    bottom: 60px;
    left: 10px;
    text-align: start;
    z-index: 9;
    transition: all 2s ease-in-out;
    transform: translateX(-500px);
    display: none;
}

#slide.active {
    transform: translateX(0px);
    display: block;
}

.fixed-wtsp a.phone {
    background-color: var(--bg1);
    padding: 8px 20px;
    border-radius: 20px 0px 20px 0px;
    color: var(--light);
    font-size: 14px;
    transition: 0.2s;
    margin: 0.5rem 0;
    display: inline-block;
}

.fixed-wtsp a {
    background-color: #075e54;
    padding: 8px 20px;
    border-radius: 20px 0px 20px 0px;
    color: #fff;
    font-size: 14px;
    transition: 0.2s;
    display: block;
}

.fixed-wtsp span {
    padding-right: 0.2rem;
}



/***inner-page*****/

/******breadcrump*******/
.breadcrump-sec {
    background: url('../image/img/bg/motherboard-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background-color: var(--dark);
}

.breadcrump-sec::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    content: '';
    opacity: 0.8;
    z-index: -1;

}

.breadcrump {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.breadcrump .title-sec::after {
    width: 0;
}

.bread-title {
    font-family: var(--font2);
    font-size: 35px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
    text-align: left;
    text-shadow: 0px 1px var(--light);
    display: block;
}

.b-links {
    position: relative;
    display: inline-block;
    background-color: var(--bg1);
    padding: 14px 30px;
    color: var(--light);
    font-family: var(--font1);
    font-weight: 800;
    text-transform: capitalize;
}

.b-links a {
    font-size: 18px;
    letter-spacing: 1.1px;
    padding: 0 5px;
    text-transform: capitalize;
    font-weight: 800;
    text-decoration: none;
    color: var(--light);
    margin-bottom: 50px;
}

.b-item.active {
    color: var(--bg);
    text-transform: capitalize;
    font-family: var(--font1), sans-serif;
    letter-spacing: 1.2px;
    font-size: 18px;
    font-weight: 900;
    padding-left: 5PX;
}

.b-links span.fa-solid {
    color: var(--light);
}

span.fa-solid {
    color: var(--light);
}

/****marketing-butoon***/
.market-place {
    background-color: var(--light);
    padding: 40px 0;
    position: relative;
}

a.market-btn {
    display: block;
}

.market-title {
    color: var(--bg1);
}

.marketing-title {
    font-size: 32px;
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 600;
    margin: 20px auto;
    line-height: 1.1;
}

a.market-btn {
    padding: 18px 30px;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light);
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 600;
    line-height: 1.2;
    margin-top: 40px;
    text-align: center;
    width: 100%;
    flex-wrap: wrap;

}

/********** media-queries ************/
@media (max-width:992px) {
    section {
        padding: 50px 0;
        overflow: hidden;
    }

    .title-sec {
        font-family: var(--font), sans-serif;
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 15px;
        letter-spacing: 1.3px;
    }

    .sub-title {
        color: var(--dark);
        font-size: 20px;
        line-height: 1.4;
        font-weight: 500;
        margin-bottom: 10px;
        word-spacing: 1.3px;
        letter-spacing: 0.3px;
    }

    .heading-sec {
        font-size: 18px;
        text-transform: uppercase;
        font-family: var(--font1), sans-serif;
        line-height: 1.1;
        font-weight: 500;
    }

    .content-sec {
        font-size: 15px;
        word-spacing: 1.1px;
        line-height: 1.5;
        font-family: var(--font2), sans-serif;
        text-align: left;
    }

    .btn-sec {
        font-size: 15px;
    }

    .header-part {
        justify-content: center;
        display: block;
        text-align: left;
        margin-bottom: 25px;
    }

    header {
        position: absolute;
        top: 0px;
        width: 100%;
        left: 0;
        background-color: var(--light);
        z-index: 999;
    }

    .header-btn {
        display: none;
    }

    /* ---------------- */
    .top-header::after {
        width: 0;
    }

    .th-email,
    .th-number {
        display: none;
    }

    .th-element .th-icon {
        font-size: 16px;
    }

    .th-element a {
        font-size: 14px;
    }

    /* ========== */
    .c-logo img {
        width: 100px;
    }

    .nav-menu {
        display: none;
    }

    header {
        position: relative;
        width: 100%;
        z-index: 999;
        overflow: visible;
    }

    .header {
        display: flex;
        justify-content: space-between;
    }

    .comp-logo img {
        width: 80px;
        margin-top: 0;
    }

    .enq-icon {
        display: none;
        align-items: center;
    }

    .enq-icon img {
        width: 30px;
    }

    .enq-number {
        font-size: 13px;
        font-family: var(--font1);
    }

    .toggle-btn {
        margin: 10px 0;
        cursor: pointer;
        height: 30px;
        width: 30px;
        order: 3;
    }

    .toggle-btn>* {
        background-color: var(--dark);
        display: block;
        height: 3px;
        width: 25px;
        margin: 5px 0;
        transition: all 0.5s ease-in-out;
    }

    .toggle-btn.active .span1 {
        transform: rotate(45deg) translate(3px, 10px);
    }

    .toggle-btn.active .span2 {
        opacity: 0;
    }

    .toggle-btn.active .span3 {
        transform: rotate(-45deg) translate(1px, -8px);
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        z-index: 999;
        background-color: var(--light);
        flex-direction: column;
        width: 100%;
        left: 0;
        height: 100vh;
        background-color: var(--bg1);
    }

    .nav-menu>li {
        display: block;
        line-height: 35px;
        background-color: var(--light);
    }

    .nav-menu>li>a {
        font-family: var(--font1);
        text-transform: capitalize;
        display: block;
        padding: 10px 30px;
        font-weight: 600;
        line-height: 30px;
        box-shadow: rgba(99, 99, 99, 0.8) 0px 1px 1px 0px;
        color: var(--light);
        background-color: var(--bg1);
        border-bottom: 1px solid var(--bg2);
    }

    .nav-menu>li>a:hover {
        color: var(--bg1);
    }

    .click-btn {
        position: absolute;
        right: 0px;
        top: 1px;
        display: inline-block;
        color: var(--light);
        background-color: var(--dark);
        padding: 9px 30px;
        line-height: 30px;
    }

    .drop-content {
        position: absolute;
        top: 100%;
        width: 100%;
        height: 400px;
        display: none;
        background-color: var(--light);
        z-index: 999;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        overflow: auto;
        border: none;
    }

    .drop-content li a {
        color: var(--dark);
    }

    .enquiry-sec {
        display: none;
    }

    .nav-menu li::after {
        display: none;
        height: 0;
        color: var(--dark);
    }

    .drop-content li a:hover {
        color: var(--light);
        background-color: var(--dark);
    }

    .nav-menu li a:hover::after {
        width: 0;
        height: 0;
    }

    /******banner******/
    .banner-content {
        position: absolute;
        top: 10%;
        left: 10%;
        color: var(--light);
        width: 92%;
        text-align: left;
        z-index: 99;
        box-sizing: border-box;
        padding-right: 10vw;
    }
.ban-heading{
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 1rem;
}
    .ban-content1 {
        font-weight: 600;
        line-height: 1.2;
        font-size: 22px;
        margin-bottom: 20px;
        letter-spacing: 1.1px;
    }

    .ban-content2 p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 15px;
        letter-spacing: 1px;
        word-spacing: 1px;
        line-height: 1.5;
    }

    .ban-btn {
        font-weight: 200;
        padding: 5px 12px;
        font-size: 14px;
        margin-top: 20px;
    }

    .next-btn,
    .back-btn {
        position: absolute;
        top: 50%;
        width: 2rem;
        height: 2rem;
        padding: 0.7rem;
        z-index: 999;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        color: var(--bg);
        font-weight: 100;
        font-family: var(--font2);
        font-size: 14px;
        padding: 16px 10px;
    }

    .next-btn {
        right: 0;
        background-size: 1.5rem 1.5rem;
        background-repeat: no-repeat;
    }

    .next-btn:hover,
    .back-btn:hover {
        width: 2rem;
        color: var(--light);
        box-shadow: 0px 0px 2px var(--light);
        opacity: 1;
    }


    .back-btn {
        left: 0;
        background-size: 1.5rem 1.5rem;
        background-repeat: no-repeat;
    }

    .ban-img img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: all 5s ease-in-out;
        transform: scale(1);
        z-index: 199;
    }

    .serv-back.slick-arrow {
        right: 60%;
    }


    /******about-us**********/
    .feature-box{
        margin-bottom: 2rem;
    }
    /******about-us**********/
    .about-us {
        position: relative;
        z-index: 9;
    }

    .about-number span {
        font-size: 16px;
        font-family: var(--font2), sans-serif;
        font-weight: 700;
    }

    .about-img {
        margin-bottom: 40px;
        width: 100%;
    }

    /*-----counter-------- */
    .counter-box{
        margin-bottom: 3rem;
    }
    .copyright{
        display: block;
    }
    .social-links.footer-social-links{
        margin-top: 1rem;
    }
    /*------inner-page--------- */
    .breadcrump-sec {
        padding: 50px 0;
    }

    .bread-title {
        color: var(--light) !important;
        font-weight: 600;
        margin-bottom: 30px !important;
        font-size: 20px;
    }

    .b-links {
        width: 100%;
        font-weight: 700;
    }

    .b-links a {
        font-size: 16px;
    }

    .b-item.active {
        color: var(--light);
        text-transform: capitalize;
        font-family: var(--font2), sans-serif;
        letter-spacing: 0.2px;
        font-size: 16px;
        font-weight: 700;
        padding-left: 5PX;
        flex-wrap: wrap;
    }
/* --------client------------- */

   
    /*-------- why-us-------*/
    .why-us {
        padding-top: 0;
    }

    /*------contact-us------- */
    .contact-us {
        padding-bottom: 0;
    }

    .contact-header p {
        font-weight: 200;
    }

    .c-content>.heading-sec {
        font-weight: 700;
    }

    .contact-form {
        margin-top: 40px;
        border-radius: 0px;
        padding: 16px;
    }

    .c-social-links {
        display: flex;
        background-color: #f7f7f7;
        padding: 10px;
        margin-top: 0px;
        padding-top: 5px;
        padding-bottom: 5px;
        box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.10);
    }

    .c-social-item {
        background-color: var(--light);
    }

    footer {
        padding: 20px 0 20px 0;
    }

    .f-heading {
        padding-bottom: 0;
        font-weight: 800;
    }

    .f-heading:webkit-text .f-content {
        margin-top: 5px;
    }

    .footer-element p {
        font-weight: 800;
        margin-bottom: 5px;
    }

    .f-content li {
        font-weight: 700;
    }

    .footer-element {
        margin-top: 40px;
        padding-right: 0%;
    }

    /* -------- */
    /* ------------- */
    .fixed-wtsp span {
        display: none;
    }

    .fixed-wtsp {
        left: 5px;
    }

    .fixed-wtsp a.phone,
    .fixed-wtsp a {
        padding: 6px 10px;
        border-radius: 5px 5px;
        animation: all 0.5s ease-in-out;
    }

    .fixed-wtsp a i {
        animation: pop-up 1s ease infinite;
    }

    @keyframes pop-up {
        0% {
            transform: scale(0.8);
            box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
        }

        50% {
            transform: scale(1);
            box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
        }

        100% {
            transform: scale(1.1);
            box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
        }
    }
}