* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;c
}

:root {
    --light: #fff;
    --dark: #000;
    --bg1: #c7d536;
    --bg2: #182657;
    --secondary: #f2f2f2;
    --font1: "Varela Round", sans-serif;
    --font2: "Nunito", sans-serif;
}

body {
    overflow-x: hidden;
    font-family: var(--font1);
    position: relative;
}

section {
    padding: 100px 0;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    position: relative;
    overflow: hidden;
}

.img:hover img {
    transform: scale(1.1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
    font-family: var(--font1);
    color: var(--bg2);
    font-weight: bold;
}

p {
    font-size: 15px;
    line-height: 28px;
    font-family: "Nunito", sans-serif;
    color:var(--dark);
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}


.top_call a {
    color: #fff;
    font-weight: bold;
}

.logo img {
    width: 150px;
    position: relative;
    z-index: 9;
}


.search i {
    margin-right: 5px;
}

.search a {
    color: #fff;
}

.nab_bar {
    display: flex;
    justify-content: center;
}

.ab_text li {
    list-style: disc;
    margin-left:1rem;
    color:#000;
}

.navbar_n {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    z-index: 5;
    padding: 7px 10px;
    border-radius: 8px;
    justify-content: space-between;
    z-index: 99;
}

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background-color: #fff;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#myHeader.sticky .head_bg {
    display: none;
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 19px;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
}

.nab_bar li a {
    color: #fff;
    padding: 15px 25px;
    display: inline-block;
    font-size:20px;
}

.nab_bar li a:hover {
    color: var(--bg1);
}

.nab_bar li {
    position: relative;
}

.dropdown {
    position: absolute;
    background-color: #fff;
    left: 0;
    top: 100%;
    width: 290px;
    display: none;
    z-index: 999;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.dropdown .dropdown {
    left: 100%;
    top: 10px;
    max-height: 500px;
    overflow: auto;
}

.dropdown li {
    padding: 0;
}

.dropdown li a {
    display: block;
    color: #000;
    padding: 12px 15px;
    font-size: 14px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--bg2);
}

.dropdown li a:hover {
    background-color: var(--bg2);
    color: #fff;
}

.nab_bar_nab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 15px;
}

/* Search Style */
#search {
    position: fixed;
    top: -100%;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 106;
    display: block;
    top: 0
}

.form_box {
    margin: auto;
    width: 60%;
    display: flex;
    padding-top: 10%;
    justify-content: center;
}

.form_box input {
    width: 100%;
    padding: 12px;
    border-radius: 5px 0px 0px 5px;
    border: none;
    outline: none;
}

.form_box button {
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    background-color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
}


.split_slideshow .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    left: 40%;
    position: absolute;
    bottom: 20px;
    gap: 8px;
}

.split_slideshow .slick-dots li button {
    border-radius: 7px;
    background-color: #fff;
    font-size: 0;
    padding: 4px 10px;
    margin: 2px 0;
    border: none;
}

.split_slideshow .slick-dots li.slick-active button {
    background-color: #fff;
    border-radius: 7px;
    padding: 4px 20px;
}

.bg_right ul li a {
    display: flex;
    color: #000;
    gap: 16px;
    font-size: 15px;
}

.bg_right ul li a img {
    width: 60px;
    object-fit: cover;
}

/* Search Style */


.all_nav {
    position: relative;
    background-color: var(--bg2);
}

.banner_item img {
    width: 100%;
}

.all_nav::before,
.all_nav::after {
    content: '';
    background-color: #fff;
    height: 100%;
    width: 15%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 999px 999px 0;
}

.all_nav::after {
    left: 11.5%;
    width: 72px;
    background-color: transparent;
    border-right: 10px solid #fff;
}

.socal_media a {
    padding: 0px 12px;
    color: #fff;
    font-size: 13px;
    border-right: 1px solid #e4e4e4;
}

.socal_media a:last-child {
    border: none;
}

.socal_media a:hover {
    color: var(--bg2);
}

.slideshow .slick-nav.next-arrow.slick-arrow {
    left: 0;
    right: auto;
}

.slideshow .slick-nav.prev-arrow.slick-arrow {
    right: 0;
    left: auto;
}

.head_bg {
    position: relative;
    background-color: var(--bg1);
    padding: 8px;
}


.head_con {
    display: flex;
    justify-content: space-between;
    color: #fff;
    flex-wrap: wrap;
    gap: 0 50px;

}

.top_email {
    position: relative;
    z-index: 9;
    font-size: 18px;
}

.top_email img {
    width: 35px;
}

.top_email i {
    margin-right: 5px;
    color: var(--light);
}

.top_email a {
    color: #fff;
    margin-right: 15px;
}

.top_email a:hover {
    color: var(--bg2);
}

.head_num span {
    color: #fff;
    font-size: 13px;
    display: block;
}

.head_num i {
    margin-right: 5px;
    color: var(--black);
}

.main_head {
    position: relative;
    display: inline-block;
    padding: 12px 23px;
    text-decoration: none;
    transition: 0.5s;
    letter-spacing: 2px;
    overflow: hidden;
    background: #ffffff;
    color: #000000;
    border-radius: 5px;
}

.main_head:hover {
    box-shadow: 0 0 5px #fff, 0 0 20px #fff, 0 0 20px #fff, 0 0 0px #fff;
    background: var(--bg1);
}

.card_box {
    background-color: #efefef;
    padding: 60px 0;
}

.cart_item {
    padding: 40px 30px 30px;
    border-radius: 20px;
}

.cart_item p {
    font-size: 18px;
}

.cart_item .img img {
    width: 80px;
}

.cart_item .img {
    text-align: right;
    margin-bottom: 50px;
}

.cart_item span {
      font-size: 27px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    color: var(--bg2);
    font-family: var(--font1);
    text-transform: capitalize;
    line-height: 1.2;
}

.cart_item {
    background-image: url(../image/img/feature-bg.png);
    transition: ease-in-out .5s;
    background-size:cover;
}

.cart_item:hover {
    background-image: url(../image/img/feature-hover-bg.png);
    color: #fff;
}

.cart_item:hover p,
.cart_item:hover span {
    color: #fff;
}

.main_ab {
    float: left;
    display: flex;
    width: 50%;
    gap: 0px;
    align-items: end;
    position: relative;
    padding-right: 0px;
}
.about-us{
    padding-top: 120px;
}
.main_ab .img {
    border-radius: 20px;
}

.main_ab img {
    border-radius: 20px;
}

.main_ab .img-1 {
    width: 90%;
    padding-bottom: 2rem;
}

.main_ab .img-2 {
    width: 40%;
}

.main_ab .img-1 img {
    height: 450px;
}

.main_ab .img-2 img {
    height: 500px;
}

.experience {
    display: flex;
    position: absolute;
    top: -78px;
    right: 50px;
    background-color: var(--bg2);
    color: #fff;
    border-radius: 150px;
    padding: 14px 35px 14px 35px;
    align-items: center;
    z-index: 99;
    gap: 10px;
    animation: bounce-x 10s infinite linear;
}

.experience span {
    font-size: 50px;
    font-weight: 600;
}

.experience p {
    margin-bottom: 0;
    font-size: 15px;
}


@keyframes bounce-x {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(30px);
    }

    100% {
        transform: translateX(0);
    }
}
.cer-item{
    display:flex;
    gap:2rem;
    padding:3rem 0;
}
.cer-img img{
    display:block;    
}
.cer-img{
    text-align:center;
    padding:10px 0;
    font-family:var(--font1);
    color:#000;
}
.header-part {
    margin-bottom: 2rem;
}

.small_head {
    display: block;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--bg1);
}

.small_head i {
    margin-right: 8px;
    font-size: 25px;
}

.big_head {
    display: block;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--bg2);
    padding-top: 2rem;
}

.ab_text h2,
h3 {
    font-size: 25px;
    font-weight: 600;
}

.services {
    background-image: url(../image/img/service_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.services .shadow-title {
    -webkit-text-stroke: 1px #fff;
}

.services .big_head {
    color: #fff;
}

.pro_item {
    position: relative;
    margin: 8px;
}

.pro_item img {
    width: 100%;
    height: 250px;
}

.slick-nav.prev-arrow.slick-arrow {
    position: absolute;
    top: 45%;
    right: 3%;
    z-index: 9;
    padding: 10px;
    color: #fff;
    cursor: pointer;
    border: 2px solid #fff;
}

.slick-nav.next-arrow.slick-arrow {
    position: absolute;
    top: 45%;
    left: 3%;
    z-index: 9;
    padding: 10px;
    color: #fff;
    cursor: pointer;
    border: 2px solid #fff;
}


.pro_item a i {
    transform: rotate(-30deg);
}

.pro_item::after {
    content: "";
    box-shadow: inset 25px 25px 0 0 #101943;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 16px;
    z-index: 2;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    z-index: 3;
    top: -25px;
    right: 38px;
}

.pro_item::before {
    content: "";
    box-shadow: inset 25px 25px 0 0 #101943;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 16px;
    top: 38px;
    right: -25px;
    z-index: 2;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    z-index: 3;
}

.pro_item .img {
    border-radius: 24px;
}

.pro_item .icon-btn {
    --btn-size: 56px;
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    display: inline-block;
    width: var(--btn-size, 56px);
    height: var(--btn-size, 56px);
    line-height: var(--btn-size, 54px);
    font-size: var(--btn-font-size, 20px);
    background-color: #f7f7f7;
    color: #101840;
    text-align: center;
    border-radius: 99px;
    border: 1px solid #e1e4e5;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.pro_item .icon-btn:after {
    content: '';
    position: absolute;
    inset: -8px;
    background-color: #e1e4e5;
    border: 8px solid #101943;
    border-radius: 99px;
    z-index: -1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.pro_item:hover .pro_text {
    background-color: var(--bg1);
}

.pro_text {
    background-color: #fff;
    padding: 30px 10px;
    border-radius: 20px;
    margin: -50px 16px 0 16px;
    position: relative;
    text-align: center;
    height: auto;
}

.pro_text a {
    font-size: 20px;
    color: var(--bg2);
    font-weight: 600;
    text-transform: capitalize;
}

.shadow-title {
    font-size: 130px;
    font-weight: 900;
    color: transparent;
    line-height: 1;
    -webkit-text-stroke: 1px #182657;
    opacity: 0.25;
    margin-top: -0.08em;
    margin-bottom: -80px;
    width: 100%;
    z-index: -1;
    text-transform: uppercase;
}

.featur_item {
    display: flex;
    gap: 30px;
    background-color: #f5f5f5;
    padding: 35px 40px;
    padding-right: 80px;
    position: relative;
    transition: ease-in-out .5s;
    margin-bottom: 15px;
}

.featur_item:hover {
    background-color: var(--bg2);
    color: #fff;
}

.featur_item:hover .icon-seven {
    opacity: 0;
}

.featur_item:hover p {
    color:#fff;
}
.featur_item:hover .icon-eight {
    opacity: 1;
}

.featur_item:hover .content .title {
    color: #fff;
}

.featur_item:hover a {
    color: #fff;
}

.icon-box img {
    width: 60px;
}

.icon-box {
    position: relative;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 3;
    background-color: var(--light);
}

.icon-seven {
    width: 119px;
    height: 124px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -62px;
    margin-left: -59.5px;
    animation: fa-spin 15s linear infinite;
    transition: all 300ms ease;
    opacity: 1;
}

.icon-eight {
    width: 119px;
    height: 124px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -62px;
    margin-left: -59.5px;
    animation: fa-spin 15s linear infinite;
    opacity: 0;
    transition: all 300ms ease;
}

.feature_shape {
    position: absolute;
    right: 0;
    top: 0;
}

.content {
    position: relative;
    z-index: 9;
}

.content .title {
    font-size: 20px;
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--bg2);
}

.content a {
    color: #000;
    font-weight: 600;
}

.repairs_bg {
    background-color: #0000007e;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.rep_box {
    padding: 0 13%;
}

.rep_box p{
color:#fff;    
}
.rep_box .big_head {
    color: var(--bg1);
    text-transform: capitalize;
}

.repairs {
    background-image: url(../image/img/bg1.jpg);
    background-size: cover;
    padding: 0;
}

.count-area {
    background-color: var(--bg1);
    padding: 42px 60px;
    margin-top: 100px;
    border-radius: 40px 40px 0 0;
}

.count-area-content {
    display: flex;
    text-align: left;
    gap: 10px;
    align-items: center;
    border-right: 1px solid var(--bg2);
}

.count_img {
    width: 70px;
    height: 70px;
    background-color: var(--bg2);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.count_img img {
    width: 50px;
    height: 50px;
}

.num_item {
    font-size: 35px;
    font-weight: 600;
}

.count-digit {
    font-size: 40px;
}

.repairs .col-sm-6.col-md-3:last-child .count-area-content {
    border-right: none;
}

.contact {
    background-color: #e1e4e5;
    padding-top: 0px;
}

.contact_bg {
    background-color: #fff;
    padding: 50px;
    border-radius: 0 0 20px 20px;
}

.contact_bg input,
textarea,
select {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #e1e4e5;
    font-size: 16px;
    padding: 15px;
    margin: 8px 0;
    outline: none;
    color: #8e8179;
}

.de_head {
       font-size: 20px;
    margin-bottom: 15px;
    display: block;
    color: #cbd85d;
}

.contact-media {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: self-start;
    gap: 16px;
    margin-bottom: 12px;
}

.contact_details .socal_media a:hover {
    color: #5fcde0;
}

.contact-media .icon-btn {
    min-width: 43px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    font-size: 16px;
}

.media-body p {
    font-size: 17px;
    color:var(--light);
}

.box-label {
    font-size: 16px;
}

.box-text a {
    color: #fff;
}

.contact_details {
    background-color: var(--bg2);
    color: #fff;
    padding: 35px 40px;
    border-radius: 20px;
}

.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}


.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.play-btn.style3:before,
.play-btn.style3:after {
    background-color: #fff;
}

.ripple-animation,
.play-btn:after,
.play-btn:before {
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}

.play-btn:after,
.play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg2);
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: allease 0.4s;
    transition: allease 0.4s;
}

.play-btn>i {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: var(--icon-size, 78px);
    text-align: center;
    background-color: var(--bg1);
    color: var(--white);
    font-size: var(--icon-font-size, 1.4em);
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: allease 0.4s;
    transition: allease 0.4s;
}

.play-btn.style3>i {
    background-color: var(--bg2);
    color: #fff;
}


@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    30% {
        opacity: 0.4
    }

    100% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0
    }
}

@keyframes ripple2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    30% {
        opacity: 0.4
    }

    100% {
        -webkit-transform: scale(2.8);
        transform: scale(2.8);
        opacity: 0
    }
}

.all_btn {
    position: relative;
    display: inline-block;
    padding: 18px 30px;
    text-decoration: none;
    transition: 0.5s;
    letter-spacing: 2px;
    overflow: hidden;
    background: var(--bg1);
    color: #fff;
    /*box-shadow: 0 0 5px #182657, 0 0 25px #182657, 0 0 20px #182657, 0 0 200px #182657;*/
    /*-webkit-box-reflect: below 1px linear-gradient(transparent, #0005);*/
    border-radius: 5px;
    border: none;
}

.all_btn:hover {
    background: #182657;
    color: #fff;
}

.test_item {
    background-color: #eeeeee;
    padding: 80px 90px 100px 65px;
    text-align: left;
    margin: 30px;
    margin-bottom: 90px;
    border-radius: 15px;
    color:#000;
    position: relative;
    transition: ease-in-out .3s;
}

.test_item:hover{
    color:#fff;
}
.test_item:hover p{
    color:var(--light);
}

.test_item .name {
    display: block;
    font-size: 22px;
    font-weight: 600;
}

.degination {
    font-size: 18px;
    margin-bottom: 20px;
    display: block;
}

.test_slider p {
    font-size: 15px;
}

.test_shape {
    position: absolute;
    left: 0;
    top: 0px;
}

.quote {
    position: absolute;
    width: 63px;
    left: 15px;
    padding: 7px;
    top: -13px;
    background-color: #eeeeee;
    border-radius: 50%;
}

.test_item .img {
    border-radius: 50%;
    position: absolute;
    bottom: -90px;
    left: -30px;

}

.star {
    position: absolute;
    right: 10%;
    bottom: 10%;
    width: 138px;
}

.test_item:hover {
    background-color: var(--bg2);
    color: #fff;
}

.test_item:hover .quote {
    background-color: var(--bg2);
}

/******____clients____*******/
.our-client {
    background-color: var(--light);
}

.c-box {
    background-color: var(--light);
}

.client-img {
    padding: 10px;
    margin: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.client-img img {
    object-fit: cover;
    height: 150px;
    width: 100%;
    border-radius: 10px;
}

.client-box {
    margin: 30px;
    height: 120px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 38px;
    border-radius: 3px;
}

.client-heading {
    color: var(--light);
    font-family: var(--font2), sans-serif;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 900;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: inline-block;
    line-height: 1.9;
    letter-spacing: 1.3px;
    position: relative;
}

.client-slider {
    padding-bottom: 20px;

}

/*----------------------------  */
footer {
    background-color: var(--bg2);
    padding-top: 80px;
    color: #fff;
    background-size: cover;
}

.foot_head {
    font-size: 40px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.foot_nav ul {
    display: flex;
    gap: 20px 30px;
    flex-wrap: wrap;
    justify-content:center;
}

.foot_img{
    text-align:right;
}

.footer-item{
    display:flex;
    justify-content:space-between;
}


.foot_nav ul li a {
    color: #fff;
}

.foot_nav ul li a:hover {
    color: var(--bg1)
}

.foot_de_head {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    font-family: var(--font2);
    text-transform: uppercase;
}

.foot_details ul li span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.foot_details i {
    margin-right: 10px;
    color: var(--bg1);
}

.foot_details a {
    color: #fff;
    /*margin-right: 8px;*/
}

.foot_details ul li {
    margin: 24px 0;
    font-size: 15px;
}
.foot_details ul li p{
    color:#fff;
    display:inline-block;
}
.foot_details ul li ~ p{
        display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.foot_line {
    border-bottom: 1px solid #6f6f6f;
    margin-bottom: 40px;
}

.foot_logo img {
    background-color: #fff;
    padding: 5px;
    border-radius: 5px 5px 0 0;
    width: 150px;
}

.foot_ab p {
    line-height: 40px;
    font-size: 15px;
    color:#fff;
}

footer .socal_media {
    text-align: center;
    padding: 30px 0;
}

footer .socal_media a {
    font-size: 18px;
    padding: 0 20px;
}

footer .socal_media a:hover {
    color: var(--bg1);
}

.footer-products li {
    padding-bottom: 0.5rem;
}

.footer-products li a {
    font-size: 15px;
    padding-bottom: 0.5rem;
    color: var(--light);
    font-family: var(--font1);
    text-transform: capitalize;
}
.
.copyright p {
    margin-bottom: 0;
}

.copyright {
    border-top: 1px solid #6f6f6f;
    text-align: center;
    padding: 10px 0;
    margin-top: 60px;
}

.copyright p {
    color:#fff;
}
.copyright a {
    color: var(--bg1);
}

.widget-title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ab_item {
    width: 50%;
    float: left;
    padding-right: 30px;
}

.social-share ul {
    display: flex;
    margin-top: 10px;
    position: relative;
    z-index: 99;
}

.social-share button {
    border: none;
    background-color: #023153;
    color: #fff;
    padding: 6px 10px;
    margin-right: 8px;
    font-size: 16px;
    border-radius: 5px;
}

.social-share button:hover {
    background-color: #000;
}

.share-btn-box {
    margin-top: 20px;
}

.share-btn {
    font-weight: bold;

}

.inner_header {
    position: relative;
}

.inner_header img {
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.inner_header::after {
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.719) 32%, rgb(0 0 0 / 4%) 59%);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header .inner_text {
    position: absolute;
    top: 50%;
    z-index: 9;
    left: 5%;
    text-align: left;
    width: auto;
}

.inner_hrad {
    font-size: 40px;
    color: #fff;
    font-weight: bolder;
    text-transform: uppercase;
}

.brade_crom {
    display: flex;
}

.brade_crom a {
    color: #fff;
}

.brade_crom span {
    color: #fff;
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
    background-color: var(--bg2);
    color: #fff;
}

.marcket-plase a:hover {
    background-color: var(--bg1);
}


/********scroll-btn**************/
#scroll-top {
    display: inline-block;
    background-color: var(--dark);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    visibility: hidden;
    z-index: 1000;
}

#scroll-top::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 40px;
    color: var(--bg1);
}

#scroll-top:hover {
    cursor: pointer;
    background-color: var(--dark);
    box-shadow: 0px 0px 2px var(--secondary);
    color: var(--bg1);
}

#scroll-top:active {
    background-color: var(--bg2);
    color: var(--light);
}

#scroll-top.show {
    opacity: 1;
    visibility: visible;
}


/* ================== */
.fixed-social-number {
    position: fixed;
    bottom: 5%;
    left: -0px;
    width: auto;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

.fixed-social-number a {
    transform: translate(-110px, 0px);
    border-radius: 0px 50px 50px 0px;
    text-align: right;
    margin: 1px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 6px;
    margin-bottom: 5px;
    font-size: 15px;
    font-family: var(--font1);
    transition: all 0.8s;
    box-shadow: rgb(175 146 146 / 94%) 1px 0px 2px;
}

.fixed-social-number a:hover {
    transform: translate(-10px, 0px);
}

/*.fixed-social-number a:hover i  {*/
/*	transform:rotate(360deg);*/
/*}*/
.call-number {
    background-color: var(--bg2);
    color: #fff;
}

.wtsp-fixed {
    background-color: #075e54;
    color: #fff;
}

.fixed-social-number a i {
    background-color: var(--bg1);
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.5s;
}

.fixed-social-number a i.fa-phone {
    background-color: #FFF;
    color: #2C80D3;
}

.fixed-social-number a i.fa-whatsapp {
    background-color: #FFF;
    color: #2C80D3;
}


/***inner-page*****/

/******breadcrump*******/
.breadcrump-sec {
     background: url('../image/img/b3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.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(--blue);
    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(--bg1);
    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(--secondary);
    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;
    background-color: var(--bg2);
}
a.market-btn:hover{
    background-color: var(--bg1);
    color: var(--bg2);
}
/* ------------------ */
@media only screen and (max-width: 991px) {
    section{
        padding: 50px 0;
    }
    .shadow-title {
        display: none;
    }

    .nab_bar li a {
        padding: 15px 12px;
    }

    .all_nav::before,
    .all_nav::after {
        width: 17%;
    }

    .all_nav::after {
        left: 1.5%;
    }

    .main_ab {
        width: 60%;
    }

    .count-area-content {
        margin-bottom: 30px;
        border: none;
    }

    .cart_item {
        background-size: cover;
        margin-bottom: 2rem;
    }

    form {
        margin-top: 20px;
    }

    .fixed-wtsp {
        bottom: 5vh;
        left: 1px;
        z-index: 999;
        transition: all 1s ease;
    }

    .fixed-wtsp span {
        display: none;
    }

    #slide.active {
        transform: translateX(0px);
        display: block;
    }

    .fixed-wtsp:hover {
        transform: scale(1.1);
    }

    .logo img {
        width: 110px;
    }

    .head_bg {
        display: none;
    }

    .cart_item .img {
        margin-bottom: 30px;
    }

    .cart_item p {
        line-height: 24px;
    }
    
    /*------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(--bg1);
        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;
    }
    .footer-item {
    flex-wrap: wrap;
}
    .foot_nav{
        order:3;
        width:100%;
    }
    .contact_details {
    padding: 25px 10px;
}
}


@media only screen and (max-width: 991px) {
    .toggle {
        visibility: visible;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 3;
    }

    .toggle>* {
        width: 80%;
        height: 3px;
        background: #fff;
        margin: 3px 0;
    }

    .toggle.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle.active .line2 {
        opacity: 0;
    }

    .toggle.active .line3 {
        transform: rotate(45deg) translate(-7px, -8px);
    }

    .nab_bar {
        position: absolute;
        flex-direction: column;
        width: 100%;
        top: 100%;
        left: 0;
        background-color: #fff;
        z-index: 9999;
        display: none;

    }

.foot_img{
    text-align:center;
    
}
    .nab_bar li {
        border-bottom: 1px solid #818181;
    }

    .nab_bar li a {
        color: #000;
    }

    .dropdown {
        position: revert;
        width: 100%;
        background-color: var(--bg2);
    }

    .clk_btn {
        position: absolute;
        right: 0;
        top: 0;
        color: #fff;
        cursor: pointer;
        width: 47px;
        height: 46px;
        line-height: 37px;
        background: #000;
        text-align: center;
    }

    .dropdown li {
        padding: 0 !important;
    }

    .dropdown li a {
        color: #fff;
    }

    .navbar_n {
        order: 3;
    }

    .nab_bar li a {
        padding: 11px 15px;
        display: block;
        font-family: var(--font1);
        text-transform: capitalize;
    }
}




@media only screen and (max-width: 991px) {
    .rep_box {
        padding: 0 0%;
    }

    .all_nav::before,
    .all_nav::after {
        width: 23%;
    }

    .main_ab {
        width: 100%;
        margin-bottom: 20px;
        float: none;
        display: block;
        height: auto;
        padding-right: 0;
    }

    .main_ab .img-1 {
        width: 100%;
        padding-bottom: 1rem;
    }

    .slick-nav.prev-arrow.slick-arrow,
    .slick-nav.next-arrow.slick-arrow {
        padding: 4px;
    }

    /* ---------------------- */
    .foot_logo {
        margin-bottom: 30px;
    }

    footer {
        background-size: cover;
    }

    .ab_item {
        width: 100%;
        padding-right: 0;
    }

    .inner_header img {
        height: 250px;
    }

    .inner_hrad {
        font-size: 25px;
    }
}

@media only screen and (max-width: 991px) {

    .all_nav::before,
    .all_nav::after {
        width: 28%;
    }

    .head_num {
        display: none;
    }

    .all_nav::after {
        left: 2.5%;
    }

    .head_con {
        justify-content: center;
    }

    .top_email {
        margin-bottom: 10px;
        text-align: center;
    }

    .big_head {
        font-size: 25px;
    }

    .small_head {
        font-size: 18px;
    }
}

@media only screen and (max-width: 991px) {
    .card_box {
        padding: 25px 0;
    }

    .experience {
        z-index: 9;
        padding: 15px 30px 15px 30px;
    }

    .main_ab .img-1 img {
        height: auto;
    }

    .main_ab .img-2 img {
        height: 400px;
    }

    .experience span {
        font-size: 45px;
    }

    .test_slider p {
        font-size: 18px;
    }

    .ab_text h2,
    h3 {
        font-size: 19px;
        font-weight: 600;
        LINE-HEIGHT: 1.5;
    }
}

@media only screen and (max-width: 991px) {

    .all_nav::before,
    .all_nav::after {
        width: 35%;
    }
}

@media only screen and (max-width: 991px) {
    .featur_item {
        flex-wrap: wrap;
        display: flex;
        gap: 30px;
        background-color: #f5f5f5;
        padding: 20px 25px;
        padding-right: 39px;
        position: relative;
        transition: ease-in-out .5s;
        margin-bottom: 15px;
    }

    .contact_bg {
        padding: 24px 10px;
    }

    .test_item {
        margin: 30px 5px;
        padding: 75px 40px 140px 44px;
    }

    .cart_item span {
        font-size: 20px;
    }

    .top_email a {
        display: block;
    }
    
    footer .socal_media a {
    font-size: 16px;
    padding: 0 10px;
}

.foot_nav ul {
    
    gap: 20px 10px;
   
}

.foot_nav ul li a {
   font-size:14px;
}

}

@media only screen and (max-width: 400px) {

    .all_nav::before,
    .all_nav::after {
        width: 44%;
    }
}

@media only screen and (max-width: 380px) {

    .all_nav::before,
    .all_nav::after {
        width: 46%;
    }
}
*{
    transition: all 0.6s;
}

html {
    height: 100%;
}

body{
    font-family: 'Lato', sans-serif;
    color: #888;
    margin: 0;
}

#main{
    display: table;
    width: 100%;
    height: 100vh;
    text-align: center;
}

.fof{
	  display: table-cell;
	  vertical-align: middle;
}

.fof h1{
	  font-size: 50px;
	  display: inline-block;
	  padding-right: 12px;
	  animation: type .5s alternate infinite;
}

@keyframes type{
	  from{box-shadow: inset -3px 0px 0px #888;}
	  to{box-shadow: inset -3px 0px 0px transparent;}
}