* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color:#0000ff;
    --bg_color_2: #ff00ff;
    --white: #fff;
    --black: #000;
}

body {
    overflow-x: hidden;
    position: relative;
    overflow-x: hidden;
    font-family: "Figtree", sans-serif;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    position: relative;
    overflow: hidden;
}

p {
    font-size: 15px;
    line-height: 28px;
    font-family: "Figtree", sans-serif;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}

.container {
    max-width: 1300px;
}


.discount {
    background-color: var(--black);
    color: var(--white);
    font-size: 15px;
    position: relative;
}
.discount::after {
    content: "";
    width: 10%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--bg_color);
    clip-path: polygon(17% 0, 100% 0%, 100% 100%, 0% 100%);
}
.socal_media{
    position: relative;
    z-index: 9;
}

.margin {
    margin: 80px 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: 80px;
    position: relative;
    z-index: 9;
}

.logo_head {
    position: relative;
    padding-bottom: 10px;
}
.logo_head::after{
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color);
    clip-path: polygon(0 0, 100% 0%, 69% 100%, 0% 100%);
}
.logo_head::before{
    content: "";
    width: 4%;
    height: 30%;
    position: absolute;
    left: 18%;
    top: 0;
    background-color: var(--white);
    z-index: 1;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.search a {
    color: var(--black);
    background-color: #e5e5e5;
    border-radius: 50%;
    padding: 10px 14px;
}

.nab_bar {
    display: flex;
    justify-content: center;
}

#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);
}

#myHeader.sticky .discount {
    display: none;
}

#myHeader.sticky .logo img {
    margin-top: 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 30%;
    color: var(--black);
    cursor: pointer;
}

.nab_bar li a {
    color: var(--black);
    padding: 30px 25px;
    display: inline-block;
}

.nab_bar li {
    position: relative;
}

.socal_media a {
    padding: 0px 12px;
    color: #fff;
    font-size: 13px;
    border-right: 1px solid #5b5b5b;
}

.socal_media a:last-child {
    border: none;
}

.droupdown {
    position: absolute;
    background-color: var(--white);
    left: 0;
    top: 100%;
    width: 290px;
    display: none;
    max-height: 450px;
    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;
    padding: 15px 15px;
}

.droupdown li a:hover {
    background-color: var(--bg_color);
    color: var(--white);
}



.head_item img {
    width: 100%;
}


/* 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;
}
.all_nab_bar{
    background-color: var(--white);
    border-radius: 50px 0 0px 50px;
    padding-left:42px;
    position: relative;
    z-index: 9;
}

.all_btn{
    background-color: var(--bg_color);
    color: var(--white);
    padding: 13px 30px;
    font-size: 18px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}
.all_btn span{
    position: relative;
    z-index: 9;
}
.all_btn::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    border-radius: 40px;
    top: 0;
    background-color: var(--bg_color_2);
    transform: scale(0);
    transition: ease-in-out .5s;
}
.all_btn:hover::after{
    transform: scale(1);
}
.slick-dots{
    position: absolute;
    top: 40%;
    right: 5%;
}
.slick-dots li button{
    border: none;
    border-radius: 50%;
    background-color: var(--bg_color);
    padding: 4px;
}
.slick-dots li{
    border: 2px solid var(--bg_color_2);
    border-radius: 50%;
    font-size: 0;
    padding: 5px;
    margin: 10px;
}
.slick-dots .slick-active{
    border: none;
    border: 1px solid var(--bg_color);
    border-radius: 50%;

    padding: 6px 6px
}
.slick-dots .slick-active button{
    border: none;
    background-color: var(--bg_color_2);
}



.margin{
    margin: 80px 0;
}





.ab_img{
    width: 50%;
    float: left;
    margin-right: 40px;
    position: relative;
}
.img_2{
    position: absolute;
    bottom: 0;
    right: 0;
}
.ab_home{
    display: flex;
}
.experience{
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    color: var(--white);
    padding: 20px 40px;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}
.experience span{
    font-size: 60px;
    font-weight: 800;
}
.small_head{
    display: inline-block;
    color: var(--bg_color_2);
    border:1px solid var(--bg_color_2);
    padding: 3px 20px;
    font-weight: 700;
    border-radius: 50px;
    font-family: "DM Serif Display", serif;
    letter-spacing: 2px;
}
.big_head{
    display: block;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: "DM Serif Display", serif;
    letter-spacing: 2px;
}

.product{
    padding: 80px 0;
    background:#ecf1f2;
}
.pro_text{
    padding: 40px;
}
.pro_item{
    text-align: left;
    position: relative;
    background-color: var(--white);
    overflow: hidden;
    margin: 10px;
}
.pro_item::after{
    content: "";
    width: 80px;
    height: 80px;
    position: absolute;
    right: -30px;
    top: -30px;
    border-radius: 50%;
    background-color: var(--bg_color);
}
.pro_item span{
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
    display: block;
}
.pro_item i{
    background-color: var(--bg_color);
    padding:20px 17px;
    font-size: 23px;
    border-radius: 50%;
    color: var(--white);
    margin-bottom: 15px;
}
.pro_item a{
    position: relative;
    z-index: 9;
}
.pro_item::before{
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color);
    transition: ease-in-out .5s;
}
.pro_item:hover::before{
    height: 100%;
}
.pro_item:hover span{
    color: var(--white);
}
.pro_item:hover i{
    background-color: var(--white);
    color: var(--bg_color_2);
}
.pro_item:hover::after{
    background-color: var(--bg_color_2);
}
.pro_item img {
    background-image: url(../image/img/pro_bg.svg);
    -webkit-mask-image: url(../image/img/pro_bg.svg);
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    position: relative;
    z-index: 9;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.convenience{
    position: relative;
    background-color: var(--bg_color_2);
    padding: 30px 0;

}
.con_img{
    position: absolute;
    left: 0;
    top: 0;
}
.convenience .big_head{
    color: var(--white);
}
.ins_text ul li img{
    width: 70px;
    background-color: var(--bg_color_2);
    border-radius: 50%;
    padding: 10px;
    margin-right: 10px;
}
.ins_text ul li{
    font-size: 20px;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid #cacaca;
    display: flex;
        align-items: center;
}
.ins_img{
    position: relative;
    padding: 25px;
}
.ins_img .img_1_1 img{
    border-radius: 50%;
}
.img_2_2 img{
    position: absolute;
    top: 22px;
    left: -28px;
}
.img_3_3 img{
    position: absolute;
    top: 98px;
    left: 13px;
}
.img_4_4{
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #fff;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
} 

.ins_box{
    position: relative;
    padding-right: 170px;
}
.ins_box_img{
    position: absolute;
    right: 0;
    top: 10%;
    padding: 12px;
    z-index: 9;
}

.ins_box_img img{
    border: 2px solid #fff;
}
.ins_box_img::after{
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color);
    z-index: -1;
}


@keyframes alltuchtopdown {
    0% {
        transform: rotateX(0deg) translateY(0)
    }
  
    50% {
        transform: rotateX(0deg) translateY(-20px)
    }
  
    to {
        transform: rotateX(0deg) translateY(0)
    }
  }
  

.proces_item .img img{
    padding: 15px;
    border: 1px dashed var(--bg_color_2);
    border-radius: 50%;
}
.proces_item span{
    display: block;
    font-size: 25px;
    font-weight: 600;
    margin: 10px 0;
}

.proces{
    position: relative;
}
.process-line{
    position: absolute;
    z-index: -1;
    left: 0;
    top: 25%;
}


.contact{
    background-color: var(--bg_color);
    margin-top: 150px;
}
.contact form{
    background-color: #f3f3f3;
    padding: 40px;
    margin-top: -70px;
    margin-bottom: 70px;
}
.contact form input, select, textarea{
    width: 100%;
    padding: 15px;
    border: none;
    background-color: var(--white);
    outline: none;
    margin-bottom: 10px;
}
.contact_img img{
    object-fit: cover;
    width: 100%;
}


.star{
    width: 80px;
    margin-bottom: 8px;
}
.test_item{
    margin: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
}
.test_item .img{
    width: 18%;
}
.testi-box_content{
    width: 78%;
}
.test_item .img img{
    width: 100px;
    border-radius: 50%;
    border: 2px solid #ff00ff;
}

.name{
    display: block;
    font-size: 20px;
    margin: 10px 0;
}
.test_box{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}





.foot_bg {
    background-color: #000000;
    padding-top: 40px;
    text-align: left;
  }
  
  
  .foot_head {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--bg_color_2);
  }
  
  .foot_con li {
    margin: 20px 0;
    display: flex;
    color: #848e9f;
  }
  
  .foot_con li a {
    color: #848e9f;
  }
  
  .foot_con li i {
    margin-right: 10px;
    color: #fff;
  }
  
  .foot_nav2 ul li {
    margin: 10px 0;
    font-size: 15px;
  }
  
  .foot_nav2 ul {
    height: 220px;
    overflow: auto;
  }
  
  .foot_nav2 ul li a {
    color: #848e9f;
  }
  
  .foot_nav2 ul li a:hover {
    color: #ff00ff;
  }
  
  .foot_nav ul li a:hover {
    color: #ff00ff;
  }
  
  .foot_nav2 {
    padding-left: 80px;
  }
  
  .foot_logo img {
    width: 120px;
  }
  
  .foot_ab p {
    font-size: 15px;
  }
  
  .foot_nav ul li {
    margin: 8px 0;
    font-size: 15px;
  }
  
  .foot_nav ul li a {
    color: #848e9f;
  }
  
  .foot_ab {
    padding: 30px 0;
    border-bottom: 1px solid #383838;
    margin-bottom: 50px;
  }
  .foot_bg p{
    color: var(--white);
  }
  
  .copyright p {
    margin-bottom: 0;
    padding: 10px;
    color: #fff;
  }
  
  .copyright {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #383838;
  }
  .copyright p a{
    color: var(--white);
    text-decoration: underline !important;
  }
  











.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;
}
.ab_item{
    width: 50%;
    float: left;
    margin-right: 20px;
}

.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;
    width: 100%;
    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: 99;
    left: 5%;
    text-align: left;
    width: auto;
}

.inner_hrad {
    font-size: 35px;
    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;
    }
}




@media only screen and (max-width: 991px) {
    .foot_nav2{
        padding-left: 0;
    }
    .testi-box_content{
        width: 100%;
    }
    .test_item .img{
        width: 25%;
    }
    .head_btn{
        display: none;
    }
    .nab_bar li a{
        padding: 17px 15px;
    }
    .top_call {
        position: relative;
        z-index: 9;
    }
}



@media only screen and (max-width: 767px) {
    .toggle {
        visibility: visible;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 3;
        margin: 0 0 0 auto;
    }

    .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 #e2e2e2;
    }

    .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;
    }

    .top_btn {
        display: none;
    }

    .col-md-4.top_call.text-center {
        display: none;
    }

    .progress_box {
        margin-top: 0;
    }



    .inner_hrad {
        font-size: 25px;
    }

    .inner_header img {
        height: 225px;
    }

    .navbar_n {
        order: 3;
    }

}



@media only screen and (max-width: 767px) {
    .ab_img {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .convenience .big_head{
        position: relative;
        z-index: 9;
    }
    .ab_item {
        width: 100%;
        margin-right: 0px;
    }
}
@media only screen and (max-width: 600px) {
    .top_call_1{
        display: none;
    }
    .big_head {
        font-size: 24px;
    } 
    .small_head{
        font-size: 15px;
    }   
    .pro_text {
        padding: 15px;
    }
    .pro_item span{
        font-size: 16px;
    }
    .process-line{
        display: none;
    }
}

@media only screen and (max-width: 550px) {
    .logo img{
        width: 60px;
    }
    .logo_head::before {
        content: "";
        width: 6%;
        height: 36%;
        left: 17%;
    }
    .margin{
        margin: 40px 0;
    }
    .experience span{
        font-size: 40px;
    }
    .experience{
        padding: 20px 16px;
    }
    .img_2{
        width: 55%;
    }
    .ins_box_img{
        display: none;
    }
    .ins_box{
        padding-right: 0;
    }
    .img_4_4{
        width: 40%;
    }
}