@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-shadow: none;
  box-sizing: border-box;
}

:root {
  /* Fonts */
  --body-font: "Inter Tight", sans-serif;
  --heading-font: "Poppins", sans-serif;
  /* Theme Colors */
  --primary-color: #007584;
   --secondary-color: #e31e24;
  /* --secondary-color: #fd793d; */
  /* Base Colors */
  --color-white: #ffffff;
  --color-dark: #1E232A;
  --color-text: #484c54;
  --light-bg: #F6F6F6;
  /* Accent */
  --color-yellow: #FBA707;
  --color-red: #F05454;
  /* UI */
  --box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  --transition: all .3s ease-in-out;
  --border-radius:10px;
}


html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}


img {
  max-width: 100% !important;
}


body {
  font-family: 'Montserrat', sans-serif;
   overflow-x: hidden !important
}

body,
html {
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none !important;
}

a:focus {
  outline: none;
  text-decoration: none;
}


textarea{
    resize: none !important;
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Bai Jamjuree', sans-serif;
}

.split-heading,
.split-heading *,
.split-heading .char {
    text-transform: none !important;
    display: inline-block !important;

}

.slider_section2{
  display: none;
}

/* =======================
category css
*/

.category_section{
  padding: 50px 0px 20px 0px;
  background-color: var(--light-bg);
}

.category_title_div{
  text-align: center;
  margin-bottom: 30px;
}

.category_title_div > h1{
  color: var(--color-dark);
    font-size: 30px;
    font-weight: 700;
    line-height: 43px;
    margin: 5px 0px 25px 0px;
    position: relative;
}

.category_title_div > h1 > span{
  color: var(--primary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.category_title_div > h1 > span:before{
  position: absolute;
  content: '';
  bottom: -6px;
  width: 200px;
  height: 3px;
  background-color: var(--color-yellow);
  border-radius: var(--border-radius);
}



.category_title_div > p{
  color: var(--color-dark);
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
    /* max-width: 800px; */
    margin: auto;
}

.category_title_div > p > i{
  font-size: 20px;
  color: var(--color-dark);
  margin: 0px 4px 0px 4px;
}

.products_slider{
  background-image:
        linear-gradient(rgba(255, 255, 255, 0.929), rgba(255, 255, 255, 0.92)),
        url('../images/catebg01.png');
  padding: 20px 0px 10px 0px;
  background-position: bottom center;
  background-size: cover;

}

.category_main_div{
  text-align: center;
}

.category_image_div{
height: 200px;
 object-fit: cover;
  width: 100%;
  border-radius: var(--border-radius);
  margin: auto;
  border: 4px solid var(--color-white);
  box-shadow: var(--box-shadow);
   transition: var(--transition);
   position: relative;
   overflow: hidden;
clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);


}


.category_image_div > img{
height: 200px;
 object-fit: cover;
  width: 100%;
   border-radius: var(--border-radius);
   transition: var(--transition);
    filter: brightness(75%);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);



  }
  
  .category_main_div:hover > .category_image_div > img{
    transform: scale(1.1,1.1);
    transition: var(--transition);
    filter: brightness(100%);
}

.category_main_div > .category_name {
  margin-top: 10px;
   transition: var(--transition);
}

.category_main_div > .category_name > span{
   color: var(--color-dark);
    font-size: 16px;
    font-weight: 700;
     text-align: center;
     text-transform: capitalize;
    margin: 7px 0px 5px 0px;
   transition: var(--transition);

}

  .category_main_div:hover > .category_name > span{
  color: var(--primary-color);
}



/* =======================
category end
*/

/*--------------------------------------------------------------
# About us
--------------------------------------------------------------*/
.about_us {
  position: relative;
  display: block;
  padding: 60px 0 60px;
  z-index: 1;
}

.about_us_left {
  position: relative;
  display: block;
  margin-right: 180px;
  margin-bottom: 20px;
}

.about_us_img-box {
  position: relative;
  display: block;
}

.about_us_img {
  position: relative;
  display: block;
}

.about_us_img img {
  width: 100%;
  border-radius: var(--border-radius);
}

.about_us_img-2 {
  position: absolute;
  bottom: -215px;
  right: -120px;
  z-index: -1;
  clip-path: polygon(78% 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 0 63%);
}

.about_us_img-2 img {
  width: auto;
  border-radius: var(--border-radius);
}

.about_us_experience-box {
  position: absolute;
  top: 30px;
  right: -60px;
  background-color: var(--light-bg);
  border-radius: var(--primary-color);
  padding: 30px 30px 30px;
  max-width: 150px;
  width: 100%;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);

}

.about_us_experience-box:before {
  content: "";
  position: absolute;
  bottom: -58px;
  right: 0px;
  border-left: 28px solid var(--primary-color);
  border-bottom: 28px solid transparent;
  border-top: 30px solid var(--primary-color);
  border-right: 30px solid transparent;
}

.about_us_experience-count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_us_experience-count > h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px !important;
  font-family: var(--cleanon-font-two) !important;
}

.about_us_experience-count span {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px !important;
  font-family: var(--cleanon-font-two) !important;
  color: var(--cleanon-black);
}

.about_us_experience-count-text {
  margin-top: 6px;
  text-align: center;
  font-weight: 600;
  line-height: 25px;
}

.about_us_cleaning-gurante {
  position: relative;
  display: block;
  max-width: 165px;
  padding: 10px 10px 10px;
  text-align: center;
  background-color: var(--primary-color);
  border-radius: var(--light-bg);
  clip-path: polygon(0 0, 73% 0, 100% 21%, 100% 100%, 0 100%, 0% 50%);
  margin-top: 20px;
  z-index: 1;
}

.about_us_cleaning-gurante-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .60;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--primary-color);
  z-index: -1;
}

.about_us_cleaning-gurante-icon {
  position: relative;
  display: block;
}

.about_us_cleaning-gurante-icon img {
  width: auto;
  height: 60px;
  object-fit: contain;
  filter: invert(1);
}

.about_us_cleaning-gurante h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  color: var(--color-white);
  margin: 17px 0 10px;
}

.about_us_cleaning-gurante p {
  color: var(--color-white);
  font-weight: 600;
  line-height: 26px;
}

.about_us_right {
  position: relative;
  display: block;
  margin-left: -20px;
}

.about_us_right > span{
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.about_us_right > h3{
  color: var(--color-dark);
  font-size: 30px;
  font-weight: 700;
  line-height: 43px;
  margin: 10px 0px;
}

.about_us_right > h3 > span{
  color: var(--primary-color);
  font-weight: 800;
}


.about_us_right > p{
  color: var(--color-text);
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
}

.about_pont_main_div{
  background-color: var(--light-bg);
  padding: 15px 5px;
  margin: 20px 0px;
  border-radius: var(--border-radius);
}

.about_us_point_list > .d-flex > .flex-shrink-0 > img{
  width: 100%;
  height: 70px;
  object-fit: contain;
}

.about_us_point_media_content > h2{
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.about_us_point_media_content > p{
   color: var(--color-text);
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 0px !important;
}

.about_list_div{
  margin-bottom: 20px;
}

.about_list_div > ul{
  list-style: none !important;
}

.about_list_div > ul > li{
    color: var(--color-text);
  font-size: 15px;
  line-height: 35px;
  font-weight: 500;
  margin-bottom: 0px !important;
}

.about_list_div > ul > li > i{
  margin-right: 5px;

}

.about_review_box{
  margin-bottom: 20px;
}

.about_review_box > p{
   color: var(--color-text);
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 0px !important;
}

.about_us_review_star > span{
  color: var(--color-yellow);
  font-size: 15px;
  margin: 0px 0px 0px 4px;
}

.about_us_read_more_btn > a{
  background-color: var(--primary-color);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  color: var(--color-white) !important;
  font-weight: 600;
  font-size: 15px;
}

.about_us_read_more_btn > a:hover{
  background-color: var(--color-dark);
}

/* css end */
/* =========================
COUNTER SECTION
========================= */

.number_count_section{
    position:relative;
    padding:90px 0px;
    overflow:hidden;

    background:
    linear-gradient(
        115deg,
        rgba(255,255,255,0.96) 0%,
        rgba(255,255,255,0.92) 32%,
        rgba(255,255,255,0.72) 62%,
        rgba(255,255,255,0.45) 100%
    ),
    url(../images/counterbg01.jpg);

    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;
    background-attachment:fixed;

    counter-reset:strength;
}

/* soft glow */

.number_count_section::before{
    content:"";
    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(0,117,132,0.08);

    top:-200px;
    left:-150px;

    filter:blur(90px);
}

.number_count_section::after{
    content:"";
    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(0,180,216,0.08);

    bottom:-200px;
    right:-150px;

    filter:blur(90px);
}

/* =========================
HEADING
========================= */

.main_div_heading_counter{
    text-align:center;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.counter_section-title__tagline-box{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    position:relative;
}

/* side line */

.counter_section-title__tagline-border{
    width:80px;
    height:20px;
    position:relative;
}

.counter_section-title__tagline-border::before{
    content:"";
    position:absolute;

    left:0;
    top:50%;

    transform:translateY(-50%);

    width:100%;
    height:2px;

    background:linear-gradient(
        to right,
        transparent,
        #06131f,
        transparent
    );
}

.counter_section-title__tagline-border::after{
    content:"";

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:10px;
    height:10px;

    border-radius:50%;

    background:#007584;

    box-shadow:
    0 0 10px rgba(0,117,132,0.25),
    0 0 25px rgba(0,117,132,0.18);
}

/* remove old */

.counter_section-title__shape-1,
.counter_section-title__shape-2{
    display:none;
}

/* title */

.counter_section-title__tagline{
    position:relative;
    margin:0;

    font-size:40px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:capitalize;

    color:#06131f;

    padding:0px 1px;
}

/* top line */

.counter_section-title__tagline::before{
    content:"";
    position:absolute;

    top:-14px;
    left:50%;

    transform:translateX(-50%);

    width:120px;
    height:3px;

    border-radius:20px;

    background:linear-gradient(
        to right,
        transparent,
        #007584,
        transparent
    );
}

/* bottom line */

.counter_section-title__tagline::after{
    content:"";
    position:absolute;

    bottom:-14px;
    left:50%;

    transform:translateX(-50%);

    width:150px;
    height:3px;

    border-radius:20px;

    background:linear-gradient(
        to right,
        transparent,
        #007584,
        transparent
    );
}

/* =========================
COUNTER CARD
========================= */

.counter_main_box{
    margin-bottom:30px;
}

.counter_main_div{
    position:relative;

    padding:45px 25px;
    min-height:290px;

    overflow:hidden;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    background:rgba(255,255,255,0.78);

    backdrop-filter:blur(14px);

    border:1px solid rgba(0,117,132,0.10);

    transition:0.5s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

    clip-path: polygon(
        8% 0%,
        92% 0%,
        100% 8%,
        100% 92%,
        92% 100%,
        8% 100%,
        0% 92%,
        0% 8%
    );

    counter-increment:strength;
}

/* border */

.counter_main_div::before{
    content:"";
    position:absolute;
    inset:0;

    border:1px solid rgba(0,117,132,0.12);

    clip-path: polygon(
        8% 0%,
        92% 0%,
        100% 8%,
        100% 92%,
        92% 100%,
        8% 100%,
        0% 92%,
        0% 8%
    );
}

/* bg number */

.counter_main_div::after{
    content:counter(strength, decimal-leading-zero);

    position:absolute;

    top:15px;
    right:20px;

    font-size:70px;
    font-weight:900;

    color:rgba(6,19,31,0.05);

    line-height:1;
}

/* hover */

.counter_main_div:hover{

    transform:translateY(-12px);

    background:linear-gradient(
        135deg,
        #06131f,
        #007584
    );

    border-color:rgba(0,117,132,0.22);

    box-shadow:
    0 25px 50px rgba(0,0,0,0.18);
}

/* =========================
ICON
========================= */

.counter_icon_div{
    position:relative;

    width:95px;
    height:95px;

    border-radius:50%;

    background:#eefbfd;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:24px;

    transition:0.5s;
}

/* rotating ring */

.counter_icon_div::before{
    content:"";
    position:absolute;

    inset:-5px;

    border-radius:50%;

    border:1px dashed rgba(0,117,132,0.22);

    animation:rotatecircle 12s linear infinite;
}

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

.counter_icon_div img{
    width:50px;

    transition:0.5s;
}

.counter_main_div:hover .counter_icon_div{
    transform:scale(1.08);

    background:rgba(255,255,255,0.12);

    box-shadow:
    0 0 20px rgba(255,255,255,0.15);
}

.counter_main_div:hover .counter_icon_div img{
    transform:rotateY(180deg);
    filter:brightness(0) invert(1);
}

/* =========================
NUMBER
========================= */

.counter_number_div{
    display:flex;
    align-items:flex-start;
    justify-content:center;
}

.counter_number_div h3{
    margin:0;

    font-size:50px;
    font-weight:900;
    line-height:1;

    color:#06131f;

    transition:0.4s;
}

.counter_number_div span{
    font-size:24px;
    font-weight:700;

    margin-left:5px;

    color:#007584;

    transition:0.4s;
}

/* =========================
TEXT
========================= */

.counter_number_name_div h4{
    margin-top:14px;

    font-size:17px;
    font-weight:500;
    line-height:28px;

    color:#444;

    transition:0.4s;
}

/* hover text */

.counter_main_div:hover .counter_number_div h3,
.counter_main_div:hover .counter_number_div span,
.counter_main_div:hover .counter_number_name_div h4{
    color:#fff;
}


/* products css start */

.products_section{
  padding: 70px 0px 50px 0px;
  background-color: var(--light-bg);
}


.main_div_heading_products{
    text-align:center;
    margin-bottom:50px;
    position:relative;
    z-index:2;
}

.products_section-title__tagline-box{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    position:relative;
    margin-bottom: 40px;
}

/* side line */

.products_section-title__tagline-border{
    width:80px;
    height:20px;
    position:relative;
}

.products_section-title__tagline-border::before{
    content:"";
    position:absolute;

    left:0;
    top:50%;

    transform:translateY(-50%);

    width:100%;
    height:2px;

    background:linear-gradient(
        to right,
        transparent,
        #06131f,
        transparent
    );
}

.products_section-title__tagline-border::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:10px;
    height:10px;
    border-radius:50%;
    background:#007584;
    box-shadow:
    0 0 10px rgba(0,117,132,0.25),
    0 0 25px rgba(0,117,132,0.18);
}

/* remove old */

.products_section-title__shape-1,
.products_section-title__shape-2{
    display:none;
}

/* title */

.products_section-title__tagline{
    position:relative;
    margin:0;
    font-size:40px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:capitalize;

    color:#06131f;

    padding:0px 1px;
}

/* top line */

.products_section-title__tagline::before{
    content:"";
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:3px;
    border-radius:20px;
    background:linear-gradient(
        to right,
        transparent,
        #007584,
        transparent
    );
}

/* bottom line */

.products_section-title__tagline::after{
    content:"";
    position:absolute;
    bottom:-14px;
    left:50%;
    transform:translateX(-50%);
    width:150px;
    height:3px;
    border-radius:20px;
    background:linear-gradient(
        to right,
        transparent,
        #007584,
        transparent
    );
}

.main_div_heading_products > p{
  color: var(--color-text);
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}

.products_main_div_box{
    position: relative;
    background: var(--color-white);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s ease;
    margin-bottom: 20px;
    border: 1px solid var(--light-bg);
}

.products_main_div_box:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* image */
.products_image_div{
    position: relative;
    overflow: hidden;
    height: 280px;
}

.products_image_div > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.products_main_div_box:hover .products_image_div img{
    transform: scale(1.08);
     transition: 0.8s ease;

}

/* top badge */
.products_badge{
    position: absolute;
    top: 18px;
    left: 18px;
    background: #fff;
    color: #111;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

/* content */
.products_content_div_box{
    padding: 13px 10px 15px 10px;
    position: relative;
}

.products_content_div_box > h4{
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.products_content_div_box p{
   font-size: clamp(15px, 1vw, 15px);
    color: var(--color-text);
    line-height: clamp(24px, 2vw, 28px);
    margin-bottom: 12px;
    font-weight: 500;
     display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* bottom section */
.products_bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* button */
.products_btn_div span{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 700;
    transition: 0.4s ease;
}

.products_btn_div i{
    width: 38px;
    height: 38px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.products_main_div_box:hover .products_btn_div{
    color: var(--primary-color);
}

.products_main_div_box:hover .products_btn_div i{
    background: var(--primary-color);
    color: var(--color-white);
    transform: rotate(45deg);
}

/* products css end */



/* testimonilas css start */
.testimonials_section{
  padding: 70px 0px 50px 0px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}


.main_div_heading_testimonials{
    text-align:center;
    margin-bottom:50px;
    position:relative;
    z-index:2;
}

.testimonials_section-title__tagline-box{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    position:relative;
    margin-bottom: 30px;
}

/* side line */

.testimonials_section-title__tagline-border{
    width:80px;
    height:20px;
    position:relative;
}

.testimonials_section-title__tagline-border::before{
    content:"";
    position:absolute;

    left:0;
    top:50%;

    transform:translateY(-50%);

    width:100%;
    height:2px;

    background:linear-gradient(
        to right,
        transparent,
        #06131f,
        transparent
    );
}

.testimonials_section-title__tagline-border::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:10px;
    height:10px;
    border-radius:50%;
    background:#007584;
    box-shadow:
    0 0 10px rgba(0,117,132,0.25),
    0 0 25px rgba(0,117,132,0.18);
}

/* remove old */

.testimonials_section-title__shape-1,
.testimonials_section-title__shape-2{
    display:none;
}

/* title */

.testimonials_section-title__tagline{
    position:relative;
    margin:0;
    font-size:40px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:capitalize;

    color:#06131f;

    padding:0px 1px;
}

/* top line */

.testimonials_section-title__tagline::before{
    content:"";
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:3px;
    border-radius:20px;
    background:linear-gradient(
        to right,
        transparent,
        #007584,
        transparent
    );
}

/* bottom line */

.testimonials_section-title__tagline::after{
    content:"";
    position:absolute;
    bottom:-14px;
    left:50%;
    transform:translateX(-50%);
    width:150px;
    height:3px;
    border-radius:20px;
    background:linear-gradient(
        to right,
        transparent,
        #007584,
        transparent
    );
}

.testimonials_swiper_slider  .swiper-slide{
  background-color: var(--light-bg);
  border-radius: 10px;
  padding: 30px 24px;
  position: relative;
}

.testimonials_swiper_slider  .swiper-slide-active{
    background-image:linear-gradient(rgba(255, 255, 255, 0.587), rgba(255, 255, 255, 0.74)),  url('../images/testibg01.png');
   background-position: center;
   background-repeat: no-repeat;
    background-size: cover;
}

.testimonials_contnet_main_div > h4{
  color: var(--primary-color);
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 10px;
}

.rataing_div {
  margin-bottom: 10px;
}

.rataing_div > i{
  color: var(--color-yellow);
  font-size: 15px;
  margin: 0px 2px 0px 0px;
}

.testimonials_contnet_main_div > p{
      color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 0px !important;
}

.quote_div{
  position: absolute;
  top: 20px;
  right: 20px;
}

.quote_div > i{
  font-size: 30px;
  color: var(--color-text);
}




/* testimonilas css en */


/*  */

.blog-area{
    padding: 10px 0px 50px 0px;
}

.blogs_title_div{
    margin-bottom: 30px;
}

.blogs_title_div > span{
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    
    margin-bottom: 10px;
    display: inline-block;
    margin-bottom: 7px;
}

.blogs_title_div > h4{
    font-size: 30px;
    color: var(--color-dark);
    text-transform: capitalize;
    
    font-weight: 800;

}

.blogs_title_div > p{
    font-size: 15px;
    line-height: 27px;
}

.blog-item {
  padding: 20px;
  background: var(--color-white);
  border-radius: 30px;
  transition: .5s ease-in-out;
  position: relative;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.blog-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: .5s ease-in-out;
  height: 280px;
}
.blog-img img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease-in-out;
}
.blog-item:hover .blog-img img {
  transform: scale(1.1);
  transition: .5s ease-in-out;
}
.blog-date {
  position: absolute;
  right: 70px;
  top: 2px;
  background: var(--color-white);
  color: var(--primary-color);
  font-weight: 500;
  text-align: center;
  padding: 0px 15px;
  border-radius: 50px;
  border: 3px solid var(--color-white);
  z-index: 1;
}
.blog-meta {
  padding: 14px 0 2px 0;
  margin-bottom: 7px;
  border-bottom: 1px solid var(--light-bg);
}

.blog-meta ul{
    padding: 0px 2px !important;
}

.blog-meta ul li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
}
.blog-meta ul li a {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 15px;
}
.blog-meta ul li a:hover {
  color: var(--primary-color);
}
.blog-meta ul li i {
  margin-right: 5px;
  color: var(--primary-color);
}
.blog-title a {
  color: var(--color-dark);
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 32px;
  
}
.blog-title a:hover {
  color: var(--primary-color);
}
.blog-info p {
 font-size: clamp(15px, 1vw, 15px);
    color: var(--color-text);
    line-height: clamp(24px, 2vw, 28px);
    margin-bottom: 12px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-area.blog-border .blog-item {
  border: 1.5px solid var(--primary-color);
  border-radius: 35px;
  box-shadow: none;
}
.blog-area.blog-border .blog-item:hover {
  border-color: var(--primary-color2);
}
.blog-area.blog-border .blog-img {
  border-radius: 20px;
}
.blog-area.blog-border .blog-img img {
  border-radius: 20px;
}
.blog-area.blog-border .blog-title a {
  margin-bottom: 20px;
}

.blogs_btn_div{
    margin-top: 20px;
}

.blogs_btn_div a{
    background-color: var(--primary-color);
    color: var(--color-white) !important;
    padding: 7px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600
}

.blogs_btn_div a:hover{
    background-color: var(--secondary-color);
}
/*  */

/* css start */

.faq-area{
    padding: 40px 0px 40px 0px;
    background-color: var(--backgorund-color);
}

.faq_title_div > span{
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    
    margin-bottom: 10px;
    display: inline-block;
    margin-bottom: 7px;
}

.faq_title_div > h4{
    font-size: 30px;
    color: var(--color-dark);
    text-transform: capitalize;
    margin-bottom: 12px;
    font-weight: 800;

}

.faq_title_div > p{
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    color: var(--color-text);
}

.faq-area .accordion-body{
    padding: 8px 15px !important;
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
}

.faq-area .accordion-item button{
    padding: 20px 15px !important;
    font-size: 18px;
    line-height: 30px;
    
}

.faq-area .accordion-item {
  border: none;
  background: var(--color-white);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
}
.faq-area .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-area .accordion-button {
  border-radius: 0px;
  background: transparent;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-dark);
  box-shadow: none;
}
.faq-area .accordion-button::after {
  content: "\f107";
  background: none;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 500;
  font-family: "Font Awesome 6 pro";
  width: unset;
  height: unset;
  margin-right: 3px;
}
.faq-area .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: transparent;
  border-bottom: 1px dashed var(--primary-color);
  box-shadow: none;
}
.faq-area .accordion-button:not(.collapsed)::after {
  content: "\f107";
  transform: rotate(-180deg);
}
.faq-area .accordion-button span {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}
.faq-area .accordion-button span i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  background: var(--primary-color);
  text-align: center;
  color: var(--color-white);
}
.faq-area .accordion-body {
  color: var(--color-text);
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
}
.faq-area .faq-img img {
  border-radius: 20px;
  mix-blend-mode: multiply;
  height: 250px;
  width: 100%;
  object-fit: contain;
}

/*  */





/* footer css */
.footer {
 position: relative;
   background-image:linear-gradient(rgba(255, 255, 255, 0.418), rgba(255, 255, 255, 0.683)),  url('../images/footerbg01.png');
   background-position: center;
   background-repeat: no-repeat;
    background-size: cover;
  padding: 30px 0px 0px;
  position: relative;
  background-attachment: fixed;
  z-index: 1;
}


.footer_contact_bg_div {
  padding-top: 20px;
}


.footer_contact_bg_div h5 {
  color: var(--primary-color);
  text-transform: capitalize;
  padding-bottom: 40px;
  font-size: 22px;
  font-weight: 700;


}

.main_div_footer {
  margin-bottom: 24px;
}

.main_div_footer img {
  width: 200px;
  margin-bottom: 8px;
}

.main_div_footer span {
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--color-white);
  border-radius: 5px;
  margin-right: 10px;
  font-size: 18px;

}

.main_div_footer2 span {
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--color-white);
  border-radius: 5px;
  margin-right: 10px;
  font-size: 18px;
}

.footer_num_div>h6 {
  color: var(--color-gray);
  font-size: 18px;
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: 6px !important;

}

.main_div_footer2 .footer_num_div>h6 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 6px !important;

}


.footer_num_div a {
  color: var(--color-text);
  display: block;
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  transition: .4s ease-out;
  
}


.footer_num_div a:hover {
  color: var(--color-gray);
  display: block;
  letter-spacing: .2px;
  transition: .4s ease-out;
}

.footer_num_div p {
  color: var(--color-text);
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 0px !important;

}


.footer_usefull_link {
  margin-bottom: 20px;
  padding-top: 20px;
 
}

.footer_usefull_link h5 {
  color: var(--primary-color);
  text-transform: capitalize;
  padding-bottom: 30px;
  font-size: 20px;
  font-weight: 700;


}

.footer_usefull_link ul {
  list-style: none;
  padding: 0px;
}

.footer_usefull_link li {
  line-height: 40px;
  border-bottom: 1px dashed var(--light-bg);
  padding: 4px 0px;
 position: relative;
}

.footer_usefull_link li a {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
   transition: .5s ease-in-out;
}


.footer_usefull_link li a:hover {
  color: var(--primary-color);
  letter-spacing: .2px;
  transition: .5s ease-in-out;

}


.footer_usefull_link b {
  letter-spacing: 1px;
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
}

.footer_usefull_link p {
  margin-bottom: 0px !important;
}

.footer_usefull_link p iframe {
  border-radius: 10px;
  margin-bottom: 0px;
}

.footer_social_icon {
  text-align: left;
}

.footer_social_icon>b {
  color: var(--color-gray);
  font-size: 16px;
  margin-right: 6px;
  display: block;
  margin-bottom: 5px;
  font-weight: 800;

}

.footer_social_icon>a {
  color: var(--color-white) !important;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  display: inline-block;
  font-size: 15px;
  border-radius: 4px;
  background-color: var(--primary-color);
  transition: .4s ease-in-out;
  font-weight: 700;
}


/*  */

.copy_right_section {
  background-color: var(--primary-color);
  text-align: center;
  padding: 7px 1px;
  /* border-top: 1px solid var(--color-white); */
}

.copyright_content_div>p {
  margin-bottom: 0px !important;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;

}


.copyright_content_div>p>a {
  color: var(--color-gray2);
  text-decoration: underline !important;
}

.copyright_content_div>p>a>img {
  width: 45px;
  object-fit: contain;
  margin-left: 3px;
  filter: brightness(0%) invert(1);
}

/**/