* {
    margin: 0;
    padding: 0;
    font-family: "Josefin Sans", serif;
    box-sizing: border-box;
}

:root {
    --bg_color: #e31e24;
    --bg_color_2: #ff6600;
    --white: #fff;
    --black: #000;
    --width: 220px;
    --gap: 1rem;
    --speed: 500ms;
}

body {
    overflow-x: hidden;
    font-family: "Nunito", serif;
    position: relative;
    overflow-x: hidden;
}

img {
    width: 100%;
    transition: ease-in-out .3s;
}

.img {
    position: relative;
    overflow: hidden;
}

p {
    font-size: 16px;
    line-height: 28px;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}

span {
    display: block;
}

.container-fluid {
    padding: 0 3%;
}

.discount {
    background-color: var(--bg_color);
    color: var(--white);
    font-size: 15px;
}

.margin {
    margin: 60px 0;
}

.top_call a {
    color: var(--white);
    font-weight: bold;
}

.head_text {
    top: 15%;
    left: 5%;
}

.cleaner {
    color: var(--bg_color);
}

.main_banner {
    width: 65%;
}

.logo img {
    width: 230px;
    position: relative;
    z-index: 9;
}


.search i {
    margin-right: 5px;
}

.search a {
    color: var(--black);
}

.nab_bar {
    display: flex;
    justify-content: center;
}
.navbar_n{
    background-color: var(--white);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    gap: 0 25px;
    z-index: 5;
    padding: 13px 0;
    justify-content: space-between;
}

#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: var(--white);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 10px;
    color: var(--black);
    cursor: pointer;
}

.nab_bar li a {
    color: var(--black);
    padding: 15px 20px;
    display: inline-block;
}

.nab_bar li {
    position: relative;
}

.droupdown {
    position: absolute;
    background-color: var(--white);
    left: 0;
    top: 60px;
    width: 290px;
    display: none;
    max-height: 300px;
    overflow: auto;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.droupdown li {
    padding: 0;
}

.droupdown li a {
    display: block;
}

.droupdown li a:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.head_item {
    position: relative;
}

header img {
    border-radius: 8px;
}

.head_text {
    position: absolute;
}

.banner_bid_head {
    font-size: 45px;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 10px;
}

.banner_small_head {
    color: var(--white);
    font-size: 20px;
}

header .slick-slide.slick-current.slick-active .banner_small_head {
    animation: 1.5s linear 0s alternate headerline;
}

header .slick-slide.slick-current.slick-active .banner_bid_head {
    animation: 2s linear 0s alternate headerline;
}

header .slick-slide.slick-current.slick-active p {
    animation: 3s linear 0s alternate headerline;
    transition-delay: .2s;
}

header .slick-slide.slick-current.slick-active .banner_btn {
    animation: 4s linear 0s alternate headerline;
    transition-delay: .2s;
}

header .slick-slide.slick-current.slick-active img {
    animation: 4s linear 0s alternate headerimg;
    transition-delay: .2s;
}

@keyframes headerline {

    0%,
    25% {
        transform: translateY(-20%);
        opacity: 0;
    }

    75%,
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.head_text {
    width: 55%;
}

.banner_btn .all_btn {
    background-color: var(--white);
    color: var(--black);
}

.all_btn {
    background-color: var(--bg_color);
    padding: 10px 30px;
    border-radius: 4px;
    display: inline-block;
    color: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: none;
}
.all_btn:hover{
    background-color: var(--bg_color_2);
}

.all_btn i {
    margin-left: 5px;
    transform: rotate(-30deg);
    transition: ease-in-out .3s;
}

.all_btn:hover i {
    transform: rotate(0deg);
}

.cleaner {
    font-size: 25px;
    font-weight: bold;
    margin: 10px 0;
}

.discover {
    color: var(--black);
    font-weight: 600;
    text-decoration: underline;
}

.nab_bar_nab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.head_bg{
    width: 70%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0%);
    background-color: var(--black);
    z-index: -1;
    border-radius: 30px;
}



/* 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: var(--black);
    cursor: pointer;
    background-color: var(--white);
    padding: 5px 15px;
    border-radius: 3px;
}


.head_banner .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    left: 40%;
    position: absolute;
    bottom: 20px;
    gap: 8px;
}

.head_banner .slick-dots li button {
    border-radius: 7px;
    background-color: var(--white);
    font-size: 0;
    padding: 4px 10px;
    margin: 2px 0;
    border: none;
}

.head_banner .slick-dots li.slick-active button {
    background-color: var(--white);
    border-radius: 7px;
    padding: 4px 20px;
}

/* Search Style */
.logo_head{
    position: relative;
    z-index: 99;
}
.logo_head::after{
    content: "";
    width: 30%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ff6600;
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
    border-radius: 0 0 20px 0;
}
.logo_head::before{
    content: "";
    width: 30%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color:#ff6600;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    border-radius: 0 0 0 20px;
}
.socal_media a{
    background-color: #ff6600;
    padding: 11px;
    color: #fff;
    border-radius: 5px;
    font-size: 13px;
}

.navbar_n::after{
    content: "";
    width: 4%;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    background-color:var(--white);
}

.navbar_n .nav_img_nav {
    position: absolute;
    width: auto;
    height: 100%;
    left: -52px;
    top: 0px;
}
.logo {
    width: 20%;
}
.navbar_n{
    width: 80%;
}

.slideshow .slick-nav.next-arrow.slick-arrow{
    left: 0;
    right: auto;
}
.slideshow .slick-nav.prev-arrow.slick-arrow{
    right: 0;
    left: auto;
}



.card_item{
    position: relative;
    color: var(--white);
    padding: 30px;
    height: 449px;
    overflow: hidden;
    transition: ease-in-out .5s;
}
.card_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    filter: blur(8px);
}
.card_box img{
    width: 100px;
}

.card_box span{
    font-size: 25px;
    margin: 10px 0;
}
.card_item:hover{
    overflow: visible;
}
.margin{
    margin: 60px 0;
}
.small_head{
    font-size: 20px;
    color: var(--bg_color);
    font-weight: bold;
}
.big_head{
    font-size: 40px;
    font-weight: bold;
}

.hot_item{
    position: relative;
    background-position: center;
    height: 350px;
    border-radius: 8px;
}
.hot_text{
    /* position: absolute; */
    top: 15%;
    left: 8%;
    color: var(--white);
    width: 65%;
    padding: 68px 30px;
 
}
.hot_head{
    font-size: 20px;
    color: var(--bg_color);
}

.hot_text p{
    font-size: 39px;
    line-height: normal;
    margin: 8px 0;
}
.hot_text a{
    background-color: var(--white);
    color: var(--black);
    padding: 10px 15px;
    border-radius: 5px;
}
.products{
    background-color: #f5f5f5;
    padding: 80px 0;
}

.pro_head a{
    color: var(--bg_color);
    font-size: 30px;
    font-weight: 600;
}
.products {
    position: relative;
}
.pro_main_head{
    position: absolute;
    top: -20px;
    left: 5%;
    font-size: 150px;
    font-weight: bold;
    color: #dedede;
}
.pro_btn{
    font-size: 18px;
    font-weight: 900;
    color: #000;
}
.pera{
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}
.pro_item{
    margin: 8px;
}
.slick-nav.prev-arrow.slick-arrow{
    position: absolute;
    left: 100%;
    top: 50%;
    background-color: #e31e24;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    padding: 13px 20px;
    color: var(--white);
    z-index: 99;
    cursor: pointer;
}

.slick-nav.next-arrow.slick-arrow{
    position: absolute;
    right: 100%;
    top: 50%;
    background-color: #e31e24;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
    padding: 13px 20px;
    color: var(--white);
    z-index: 9;
    cursor: pointer;
}

.num_box span{
    font-size: 45px;
    font-weight: bold;
}

.num_box{
    padding: 30px 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
    margin-top: 20px;
    margin: 30px;
}
.num_box:hover{
    background-color: var(--bg_color);
}
.num_box:hover p, .num_box:hover span{
    color: var(--white);
}
.num_box p{
    font-size: 14px;
    font-weight: 600;
}
.pro_2_item{
    position: relative;
    margin: 8px;
}
.pro_2_item::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.501) 17%, rgba(0,0,0,0) 100%);
}
.pro_2_head{
    position: absolute;
    bottom: 0;
    font-size: 25px;
    color: var(--white);
    padding: 10px 15px;
    z-index: 9;
}


.process_bg_1 {
    position: absolute;
    width: auto;
    left: 0;
    top: 0;
    opacity: .5;
  }

  .process_bg_2 {
    position: absolute;
    width: auto;
    right: 0;
    bottom: 0;
    opacity: .5;
  }

  .choose_text p {
    font-size: 14px;
  }




  .percentage {
    padding: 15px 0;
    opacity: 0;
  }

  .animation {
    height: 6px;
    background: #eeeeee;
    border-radius: 8px;
    overflow: hidden;
  }

  .animation-bar {
    height: 6px;
    width: 0;
    background: var(--bg_color);
    position: relative;
    -webkit-transition: all 0.9s ease-out;
    transition: all 0.9s ease-out;
  }

  .show {
    opacity: 1;
    animation: come-in 0.8s ease forwards;
  }


  @keyframes come-in {
    to {
      transform: translateY(0px);
    }
  }

  .p98 {
    width: 98%;
  }

  .p80 {
    width: 80%;
  }

  .p90 {
    width: 90%;
  }

  .p70 {
    width: 70%;
  }

  .p68 {
    width: 68%;
  }

  .p73 {
    width: 73%;
  }

  .p62 {
    width: 62%;
  }

  .percentage .label {
    text-align: right;
    color: var(--black);
    float: inline-end;
  }

  .expert {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 5px;
  }

.progess_box{
    position: relative;
}
  .wrapper{
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 60%;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 20px;
  }


  .why_text ul li span{
    font-size: 20px;
    font-weight: bold;
    color: var(--bg_color);
  }

  .why_text ul li p{
    font-size: 15px;
  }
.testmonial{
    background-color: var(--black);
    padding: 60px 0;
    color: var(--white);
}
.test_img{
    display: flex;
    gap: 30px;
}
.test_img img{
    width: 80px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--white);
}
.name{
    font-size: 20px;
}
.degination{
    font-size: 14px;
}
.text_pera{
    background-color: var(--white);
    border-radius: 10px;
    color: var(--black);
    padding: 30px;
    margin-left: 15px;
    margin-top: -15px;
    position: relative;
    z-index: 9;
    box-shadow: inset 0 0 10px #000;
    border: 1px solid var(--white);
}

.test_item{
    margin: 8px;
}
.test_item:hover .text_pera{
    background-color: #2a2c38;
    color: var(--white);
    border: 1px solid var(--bg_color);
}
.test_item:hover img{
    border: 1px solid var(--bg_color);
}

.client_item{
    padding: 20px;
}
.contact{
    background-repeat: no-repeat;
    background-size: cover;
}
.contact form{
    background-color: var(--white);
    padding:40px 30px;
}
.contact input, textarea, select{
    width: 100%;
    padding: 10px;
    border: none;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #838383;
}
.contact_items{
    color: var(--white);
    padding: 20px;
}
.contact_items ul li a {
    color: var(--white);
}
.contact_items ul li i{
    margin-right: 8px;
}
.contact_items ul li{
    margin: 15px 0;
    font-size: 18px;
}





  
footer {
    background-color: #000;
    padding-top: 60px;
  }
  
  footer .row {
    align-items: center;
  }
  
  .foot_logo img {
    width: 200px;
  }
  
  .foot_logo {
    border-right: 1px solid #494949;
  }
  
  .foot_nav ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
  }
  
  .foot_nav ul li a {
    color: #fff;
    padding: 0 13px;
  }
  
  .foot_nav ul li a:hover {
    color: var(--bg_color);
  }
  
  .foot_cont ul li a {
    color: #fff;
    font-size: 14px;
  }
  
  .foot_cont ul li a:hover {
    color: var(--bg_color);
  }
  
  .foot_cont ul li {
    margin: 15px 0;
  }
  
  .foot_cont ul li i {
    margin-right: 8px;
  }
  
  .copyright_area {
    margin-top: 60px;
    background-color: #242424;
  }
  
  .copyright_area p {
    margin-bottom: 0;
    color: #fff;
    padding: 10px;
  }
  
  .copyright_area p a {
    color: #fff;
    text-decoration: underline !important;
  }
  
  .foot_text {
    margin: 30px 0;
    padding: 30px 0;
    border-top: 1px solid #494949;
  }
  
  .foot_text p {
    color: #fff;
  }

  footer .socal_icon {
    justify-content: right;
    display: flex;
  }
  footer .socal_icon a {
    color: #000;
    font-size: 16px;
    margin: 0 3px;
    background-color: var(--primary);
    padding: 3px 8px;
    border-radius: 3px;
  }












.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;
}

.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: 45%;
    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;
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.what-app i {
    font-size: 38px;
    color: #fff;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.ab_item{
    float: left;
    width: 50%;
    padding-right: 20px;
}


.search_box a{
    color:#fff;
}


.search_box {
    height: 450px;
    overflow: auto;
    padding: 4% 5%;
    background: black;
}
.ab_text ul li a{
    color:#fff;
      font-size:18px;
}
.ab_text ul li span{
    color:#fff;
      font-size:18px;
}
.ab_text ul{
    border: 1px solid;
    padding: 20px;
    display: inline-block;
    background: #ff6600;
    border-radius: 13px;
}
.ab_text ul li{
    font-size:18px;
}
.pro_btn_new {
    float: right;
}
.ab_home p span{
    display:contents;
}

@media only screen and (max-width: 991px) {
    .nab_bar li a {
        padding: 15px 13px;
    }
}


@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: var(--black);
        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: var(--white);
        z-index: 9999;
        display: none;
    }


    .nab_bar li {
        border-bottom: 1px solid #818181;
    }

    .nab_bar li a {
        color: #000;
    }

    .droupdown {
        position: revert;
        width: 100%;
    }

    .clk_btn {
        position: absolute;
        right: 0;
        top: 0;
        color: var(--white);
        cursor: pointer;
        width: 47px;
        height: 46px;
        line-height: 37px;
        background: #000;
        text-align: center;
    }

    .droupdown li {
        padding: 0 !important;
    }

    .droupdown li a {
        color: #000;
    }

    .navbar_n {
        order: 3;
    }
}

@media only screen and (max-width: 767px) {
    .records .col-lg-3.col-md-6.mt-5{
        margin-top: 10px !important;
    }
    .num_box{
        margin: 8px;
    }
    .inner_header img {
        height: 250px;
        object-fit: cover;
    }
    .inner_hrad {
        font-size: 25px;
    }
    .ab_item {
        width: 100%;
        padding-right: 0;
    }
    .pro_btn_new {
    float: none;
}
}

@media only screen and (max-width: 700px) {
    .slideshow .slider .item img{
        min-height: auto;
    }

    .slideshow .slider .item img{
        top: 27%;
    }
    .big_head {
        font-size: 26px;
    }
    .small_head {
        font-size: 17px;
    }
}
@media only screen and (max-width: 600px) {
    .pro_main_head{
        font-size: 59px;
        top: 0;
    }
    .slick-nav.prev-arrow.slick-arrow{
        display: none !important;
    }
    .slick-nav.next-arrow.slick-arrow{
        display: none !important;
    }
    .margin{
        margin: 30px 0;
    }
}

@media only screen and (max-width: 520px) {
    .logo img {
        width: 175px;
    }
    .pro_head a{
        font-size: 20px;
    }
    .wrapper{
        width: 84%;
    }
    .copyright_area{
        margin-top: 15px;
    }
}

@media only screen and (max-width: 450px) {
    .navbar_n .socal_media{
        display: none;
    }
    .hot_text p {
        font-size: 35px;
    }
    .hot_text{
        width: 80%;
        padding: 44px 30px;
    }
    .hot_item{
        height: 278px;
    }
    .num_box span {
        font-size: 34px;
    }
}
