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

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

:root {
   --body-font: "SN Pro", sans-serif;
  --heading-font: "Fleur De Leah", serif;
  --theme-color: #017ad7;
  --theme-color2: #f52934;
  --theme-color3: #f52934;
  --theme-color4: #008038;
  --theme-color5: #fef4f4;
  --theme-color6: #f68541;
  --theme-color7: #f68d60;
  --theme-bg-light: #F6F6F6;
  --theme-color-light: rgba(245, 182, 81, .1);
  --theme-color-light2: rgba(245, 182, 81, .25);
  --body-text-color: #757F95;
  --color-white: #ffffff;
  --color-dark: #1E232A;
  --color-yellow: #FBA707;
  --color-gray: #ECECEC;
  --color-red: #F05454;
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-colo--color-white: rgba(255, 255, 255, 0.15);
  --border-colo--color-white2: rgba(255, 255, 255, 0.3);
  --footer-bg: #141414;
  --footer-text-color: #F5FAFF;
}




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;

}

/* btn css start */

.theme-btn,
.theme-btn2 {
  font-size: 16px;
  color: var(--color-white);
  padding: 10px 20px;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  border-radius: 10px 10px 10px 10px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  border: none;
  background: var(--theme-color2);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.theme-btn::before,
.theme-btn2::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--theme-color3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover{
  color: var(--color-white);
}

.theme-btn:hover::before,
.theme-btn2:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i,
.theme-btn2 i{
  margin-left: 8px;
  transform: rotate(-40deg);
  transition: var(--transition2);
}

.theme-btn:hover i,
.theme-btn2:hover i{
  transform: rotate(0deg);
}

.theme-btn span,
.theme-btn2 span {
  margin-right: 5px;
}

.theme-btn2{
  background: var(--theme-color3);
  color: var(--color-white);
}

.theme-btn2::before {
  background: var(--theme-color);
}

.theme-btn2:hover{
  color: var(--color-white);
}

/* btn css end */

/*  */

.slider_section2{
    display: none;
}


.hero-section{
  margin-top: -9.5rem;
}

.hero-single {
  padding-top: 200px;
  padding-bottom: 80px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-single::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -0.5px;
  background: rgba(0, 0, 0, .8);
  z-index: -1;
}

.hero-single .hero-content {
  height: 100%;
  margin-bottom: 20px;
}

.hero-single .hero-content .hero-sub-title {
  color: var(--color-gray);
  font-size: 50px;
  letter-spacing: 3px;
  text-transform: capitalize;
  font-family: var(--heading-font);
  font-weight: 800;
  border-bottom: 5px double var(--color-white);
  padding-bottom: 10px;
}

.hero-single .hero-content .hero-title {
  color: var(--theme-color7);
  font-size: 38px;
  margin: 20px 0;
  text-transform: capitalize;
  letter-spacing: 2px;
}

.hero-single .hero-content p {
  color: var(--color-white);
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 10px;
}

.hero-single .hero-content .hero-btn {
  display: flex;
  justify-content: start;
  gap: 1rem;
  margin-top: 35px;
}

.hero-right_side_image{
    height: 400px;
    width: 400px;
    border-radius: 100%;
    margin: auto;
    border: 3px solid var(--color-gray);
 animation: blob 4s infinite ease-in-out;
}

@keyframes blob {
  0%   { border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%; }
  50%  { border-radius: 30% 70% 40% 60% / 65% 35% 65% 35%; }
  100% { border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%; }
}


.hero-right_side_image > img{
    height: 400px;
    width: 400px;
    border-radius: 100%;
 animation: blob 3s infinite ease-in-out;
}

@keyframes blob {
  0%   { border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%; }
  50%  { border-radius: 30% 70% 40% 60% / 65% 35% 65% 35%; }
  100% { border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%; }
}

/* welcome */

.welcome_main_image_div{
    margin-top: 35px;
    text-align: center;
}

.hero-right_side_image_welcome{
    height: 300px;
    width: 300px;
    border-radius: 100%;
    margin: auto;
    border: 3px solid var(--color-white);
 animation: blob 4s infinite ease-in-out;
 background-color: var(--theme-color);
 position: relative;
}

@keyframes blob {
  0%   { border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%; }
  50%  { border-radius: 30% 70% 40% 60% / 65% 35% 65% 35%; }
  100% { border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%; }
}


.hero-right_side_image_welcome > img{
    height: 300px;
    width: 300px;
    border-radius: 100%;
 animation: blob 3s infinite ease-in-out;
}

@keyframes blob {
  0%   { border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%; }
  50%  { border-radius: 30% 70% 40% 60% / 65% 35% 65% 35%; }
  100% { border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%; }
}

/*  */

.overlay_one_image{
    height: 100px;
    width: 100px;
    border-radius: 100%;
    margin: auto;
    border: 3px solid var(--color-white);
 background-color: var(--theme-color6);
 position: absolute;
 top: 0px;
 left: 190px;
  animation: blob 4s infinite ease-in-out;
}



.overlay_one_image > img{
    height: 100px;
    width: 100px;
    border-radius: 100%;
     animation: blob 4s infinite ease-in-out;
}



/*  */

.overlay_one_image2{
    height: 100px;
    width: 100px;
    border-radius: 100%;
    margin: auto;
    border: 3px solid var(--color-white);
 background-color: var(--color-white);
 position: absolute;
 top: 120px;
 left: 230px;
  animation: blob 4s infinite ease-in-out;
}


.overlay_one_image2 > img{
    height: 100px;
    width: 100px;
    border-radius: 100%;
     animation: blob 4s infinite ease-in-out;
}


/*  */

.overlay_one_image3{
    height: 100px;
    width: 100px;
    border-radius: 100%;
    margin: auto;
    border: 3px solid var(--color-white);
 background-color: var(--theme-color7);
 position: absolute;
top: 225px;
 left: 170px;
  animation: blob 4s infinite ease-in-out;
}


.overlay_one_image3 > img{
    height: 100px;
    width: 100px;
    border-radius: 100%;
     animation: blob 4s infinite ease-in-out;
}

/* welcome end */


@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }
}

@media all and (max-width: 991px) {
  .hero-single .hero-content .hero-title {
    font-size: 50px;
  }
}

@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-sub-title {
    font-size: 50px;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }
}


/* hero-slider */
.hero-slider .owl-nav {
  margin-top: 0px;
}

.hero-slider .owl-nav button i{
  display: inline-block;
  height: 55px;
  width: 55px;
  line-height: 55px;
  color: var(--color-white);
  font-size: 25px;
  text-align: center;
  background: var(--theme-color3);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.hero-slider .owl-nav button:hover i{
  background: var(--theme-color);
  color: var(--color-white);
}

.hero-slider .owl-nav .owl-prev {
  left: 40px;
}

.hero-slider .owl-nav .owl-next {
  right: 40px;
}

.hero-slider .owl-nav .owl-prev,
.hero-slider .owl-nav .owl-next {
  position: absolute;
  top: 60%;
  transform: translate(0, -50%);
}

.hero-slider .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: none;
}

.hero-slider .owl-dots .owl-dot span {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: var(--color-white);
  border-radius: 0px;
  border: 3px solid var(--theme-color);
  margin: 5px;
  transition: var(--transition);
}

.hero-slider .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
}


@media all and (max-width: 1199px) {
  .hero-slider .owl-nav .owl-prev,
  .hero-slider .owl-nav .owl-next {
    top: unset;
    bottom: 55px;
  }

  .hero-slider .owl-nav .owl-prev {
    left: unset;
    right: 120px;
  }

  .hero-slider .owl-nav .owl-next {
    right: 40px;
  }
}


/*  */




.about_us_section{
    padding: 70px 0px 30px 0px;
    position: relative;
}

.about_us_section .right-shape {
    position: absolute;
    bottom: 10px;
    right: -4%;
    z-index: -1;
}

.about_us_section .right-shape{
    width: 600px;
}

/* ================= TAGLINE BOX ================= */
.section-title__tagline-box{
    display:inline-flex;
    align-items:center;
    gap:15px;
    margin-bottom: 10px;

}

/* ================= LINE ================= */
.section-title__tagline-border{
    width:70px;
    height:3px;
    border-radius:10px;
    background:linear-gradient(90deg,var(--theme-color2),var(--theme-color));
    position:relative;
    overflow:hidden;
}

.section-title__tagline-border:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,transparent,#fff,transparent);
    animation:shine 2s infinite;
}

/* ================= DOTS ================= */
.section-title__shape-1,
.section-title__shape-2{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
}

.section-title__shape-1{right:-12px;}
.section-title__shape-2{left:-12px;}

.section-title__circle{
    width:12px;
    height:12px;
    border-radius:50%;
    background:radial-gradient(circle,#fff,var(--theme-color));
    box-shadow:0 0 15px var(--theme-color2);
    animation:float 2s infinite ease-in-out;
}

/* ================= TEXT ================= */
.section-title__tagline{
    font-size:13px;
    font-weight:800;
    letter-spacing:4px;
    text-transform:uppercase;
    background:linear-gradient(90deg,var(--theme-color2),var(--theme-color));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin:0;
}

/* ================= ANIMATIONS ================= */
@keyframes shine{
    from{transform:translateX(-100%)}
    to{transform:translateX(100%)}
}

@keyframes float{
    0%,100%{transform:scale(1)}
    50%{transform:scale(1.5)}
}


.about_us_image_div_main{
    margin-bottom: 20px;
    border-radius: 4px;
    position: relative;
}


.about_us_image_div_main > .about_us_img_box{
    border-radius: 5px;
    position: relative;
}

.about_us_image_div_main > .about_us_img_box >  img{

object-fit: cover;

}

.about_us_content_div > h1{
    color: var(--color-dark);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 30px;
    margin-bottom: 10px;
}

.about_us_content_div > h1 > span{
    color: var(--theme-color);
}

.about_us_content_div > p{
    font-size: 14px;
    line-height: 25px;
    color: var(--color-dark);
    font-weight: 400;
    margin-bottom: 15px;
}

.flex_div_about_ser{
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 20px 10px;
    background-color: var(--color-white);
}

.about_service_image_div > span{
    background-color:#f685414d;
     border-radius: 100%;
    text-align: center;
    height: 60px;
    width: 60px;
    display: block;

}



.about_service_image_div > span > img{
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: auto;
    /* filter: brightness(0%) invert(1); */
    transition: transform .4s ease;
}


.about_service_content > h3{
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2px !important;
}

.about_service_content > p{
    font-size: 14px;
    line-height: 22px;
    color: var(--color-dark);
    font-weight: 400;
    margin-bottom: 0px !important;
}

.about_us_content_div > strong{
    color: var(--theme-color);
    display: inline-block;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
}

.about_us_content_div > strong > span{
    color: var(--theme-color2);
}


.read_more_btn{
  font-size: 16px;
  color: var(--color-white);
  padding: 10px 20px;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  border-radius: 10px 10px 10px 10px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  border: none;
  background: var(--theme-color2);
  box-shadow: var(--box-shadow);
  z-index: 1;
  display: inline-block;
  color: var(--color-white);
}



.read_more_btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--theme-color3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.read_more_btn:hover{
  color: var(--color-white);
}

.read_more_btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.read_more_btn i{
  margin-left: 8px;
  transform: rotate(-40deg);
  transition: var(--transition2);
}

.read_more_btn:hover i{
  transform: rotate(0deg);
}

.read_more_btn span {
  margin-right: 5px;
}

.read_more_btn > a{
    color: var(--color-white);
}

.read_more_btn{
  background: var(--theme-color3);
  color: var(--color-white);
}

.read_more_btn::before {
  background: var(--theme-color);
}

.read_more_btn:hover{
  color: var(--color-white);
}


/*  */


/*  */


.number_count_section{
    position: relative;
    padding: 30px 0px 40px 0px;
}



/* ================= TAGLINE BOX ================= */

.main_div_heading_counter{
    margin: auto;
    text-align: center;
}

.counter_section-title__tagline-box{
    display:inline-flex;
    align-items:center;
    gap:15px;
    margin-bottom: 30px;
    text-align: center;
    justify-content: center;

}

/* ================= LINE ================= */
.counter_section-title__tagline-border{
    width:70px;
    height:3px;
    border-radius:10px;
    background:linear-gradient(90deg,var(--theme-color2),var(--theme-color));
    position:relative;
    overflow:hidden;
}

.counter_section-title__tagline-border:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,transparent,#fff,transparent);
    animation:shine 2s infinite;
}

/* ================= DOTS ================= */
.counter_section-title__shape-1,
.counter_section-title__shape-2{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
}

.counter_section-title__shape-1{right:-12px;}
.counter_section-title__shape-2{left:-12px;}

.counter_section-title__circle{
    width:12px;
    height:12px;
    border-radius:50%;
    background:radial-gradient(circle,#fff,var(--theme-color));
    box-shadow:0 0 15px var(--theme-color2);
    animation:float 2s infinite ease-in-out;
}

/* ================= TEXT ================= */
.counter_section-title__tagline{
    font-size:25px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:capitalize;
  color: var(--color-dark);
    margin:0;
}

/* ================= ANIMATIONS ================= */
@keyframes shine{
    from{transform:translateX(-100%)}
    to{transform:translateX(100%)}
}

@keyframes float{
    0%,100%{transform:scale(1)}
    50%{transform:scale(1.5)}
}

.counter_main_div {
    text-align: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--color-gray);
    padding: 5px 10px 7px 10px;
    background-color: var(--color-white);
    margin-bottom: 20px;
}

.counter_icon_div {
    background-color: var(--color-white);
    display: inline-block;
    border-radius: 100px 10px 100px 100px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    flex-shrink: 0;
}



.counter_icon_div>img {
    width: 50px;
    height: 85px;
    object-fit: contain;
    margin: auto;
    display: block;
}

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

.counter_number_div>h3 {
    font-size: 35px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 1px !important;
    color: var(--theme-color);


}

.counter_number_div>span {
    color: var(--theme-color);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 30px;
    margin: 0px 0px 0px 8px ;
}

.counter_number_name_div>h4 {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0px !important;
    text-align: left !important;


}


.number_count_section{
  counter-reset: strength;
}

.counter_main_div{
  position: relative;
  overflow: hidden;
}

.counter_main_div::after{
  counter-increment: strength;
  content: "0" counter(strength);
  position: absolute;
  inset: 0;
  margin: auto;
  font-size: 100px;
  font-weight: 800;
 color: rgb(246 141 96 / 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}


/* counter css end */


/* services css */

.service_section{
    position: relative;
    padding: 40px 0px 40px 0px;
    background-color: #f6f6f6;
}



/* ================= TAGLINE BOX ================= */

.main_div_heading_services{
    margin: auto;
    text-align: center;
}

.services_section-title__tagline-box{
    display:inline-flex;
    align-items:center;
    gap:15px;
    margin-bottom: 30px;
    text-align: center;
    justify-content: center;

}

/* ================= LINE ================= */
.services_section-title__tagline-border{
    width:70px;
    height:3px;
    border-radius:10px;
    background:linear-gradient(90deg,var(--theme-color2),var(--theme-color));
    position:relative;
    overflow:hidden;
}

.services_section-title__tagline-border:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,transparent,#fff,transparent);
    animation:shine 2s infinite;
}

/* ================= DOTS ================= */
.services_section-title__shape-1,
.services_section-title__shape-2{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
}

.services_section-title__shape-1{right:-12px;}
.services_section-title__shape-2{left:-12px;}

.services_section-title__circle{
    width:12px;
    height:12px;
    border-radius:50%;
    background:radial-gradient(circle,#fff,var(--theme-color));
    box-shadow:0 0 15px var(--theme-color2);
    animation:float 2s infinite ease-in-out;
}

/* ================= TEXT ================= */
.services_section-title__tagline{
    font-size:28px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:capitalize;
  color: var(--color-dark);
    margin:0;
}

/* ================= ANIMATIONS ================= */
@keyframes shine{
    from{transform:translateX(-100%)}
    to{transform:translateX(100%)}
}

@keyframes float{
    0%,100%{transform:scale(1)}
    50%{transform:scale(1.5)}
}

.services_main_div_box{
    position: relative;
    margin-bottom: 20px;
    border: 2px solid var(--color-white);
    border-radius: 25px;
}

.service_image_div{
    position: relative;
    margin-bottom: 7px;
}

.overlay_arrow_icon_div{
    position: absolute;
    top: 10px;
    left: 20px;
}

.overlay_arrow_icon_div > i{
    background-color: var(--theme-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100px;
    color: var(--color-white);
    font-size: 17px;
    clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);


}

.services_main_div_box:hover .overlay_arrow_icon_div i{
    background-color: var(--theme-color2);
}

.service_content_div{
    padding: 0px 8px 10px 7px;
}

.service_content_div > h3{
    color: var(--theme-color3);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.services_main_div_box:hover .service_content_div > h3{
    color: var(--theme-color);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.service_content_div > p{
    color: var(--color-dark);
    font-size: 15px;
    line-height: 24px;
}

.service_content_div > p > span{
    display: block;
    font-weight: 600;
    color: var(--theme-color2);
    font-size: 15px;
}

/* end */

/*  */
.why_choose_us_section{
    padding: 50px 0px 40px 0px;
}

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


.why_choose_us_content_main_div > h4 > span{
    color: var(--theme-color2);
}

.why_choose_us_content_main_div > p{
   color: var(--color-dark);
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 10px;

}

.why_choose_us_content_main_div > ul{
    padding: 0px 0px !important;
}



.why_choose_us_content_main_div > ul > li{
      color: var(--color-dark);
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 10px;
}

.why_choose_us_content_main_div > p > strong{
    color: var(--theme-color);
    font-size: 17px;
}
/*  */

/*  */

.products_section{
     position: relative;
    padding: 40px 0px 40px 0px;
    background-color: #f6f6f6;
    /* background-image: linear-gradient(#ffffff, #ffffffc8), url(../images/probg02.jpg); */
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* ================= TAGLINE BOX ================= */

.main_div_heading_products{
    margin: auto;
    text-align: center;
}

.products_section-title__tagline-box{
    display:inline-flex;
    align-items:center;
    gap:15px;
    margin-bottom: 30px;
    text-align: center;
    justify-content: center;

}

/* ================= LINE ================= */
.products_section-title__tagline-border{
    width:70px;
    height:3px;
    border-radius:10px;
    background:linear-gradient(90deg,var(--theme-color2),var(--theme-color));
    position:relative;
    overflow:hidden;
}

.products_section-title__tagline-border:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,transparent,#fff,transparent);
    animation:shine 2s infinite;
}

/* ================= DOTS ================= */
.products_section-title__shape-1,
.products_section-title__shape-2{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
}

.products_section-title__shape-1{right:-12px;}
.products_section-title__shape-2{left:-12px;}

.products_section-title__circle{
    width:12px;
    height:12px;
    border-radius:50%;
    background:radial-gradient(circle,#fff,var(--theme-color));
    box-shadow:0 0 15px var(--theme-color2);
    animation:float 2s infinite ease-in-out;
}

/* ================= TEXT ================= */
.products_section-title__tagline{
    font-size:28px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:capitalize;
  color: var(--color-dark);
    margin:0;
}

/* ================= ANIMATIONS ================= */
@keyframes shine{
    from{transform:translateX(-100%)}
    to{transform:translateX(100%)}
}

@keyframes float{
    0%,100%{transform:scale(1)}
    50%{transform:scale(1.5)}
}


.products_main_div_box{
    position: relative;
    margin-bottom: 20px;
    border: 2px solid var(--color-white);
    border-radius: 25px;
}

.products_image_div{
    position: relative;
    margin-bottom: 7px;
}

.products_overlay_arrow_icon_div{
    position: absolute;
    top: 10px;
    left: 20px;
}

.products_overlay_arrow_icon_div > i{
    background-color: var(--theme-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100px;
    color: var(--color-white);
    font-size: 17px;
    clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);


}

.products_main_div_box:hover .products_overlay_arrow_icon_div i{
    background-color: var(--theme-color2);
}

.products_content_div{
    padding: 0px 8px 10px 7px;
}

.products_content_div > h3{
    color: var(--theme-color);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.products_main_div_box:hover .products_content_div > h3{
    color: var(--theme-color2);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.products_content_div > p{
    color: var(--color-dark);
    font-size: 15px;
    line-height: 24px;
}

.products_content_div > p > span{
    display: block;
    font-weight: 600;
    color: var(--theme-color3);
    font-size: 15px;
}

/*  */

/*  */
.blogs_section{
    padding: 40px 0px 30px 0px;
}

.blogs_title_div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 27px;
}


.blogs_title_div > h5{
    margin-bottom: 0px !important;
    color: var(--color-dark);
    font-size: 35px;
    text-transform: capitalize;
    font-weight: 700;
}

.blogs_title_div > a{
    background-color: var(--theme-color);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 5px 20px;
    border-radius: 5px;
}

.blogs_title_div > a:hover{
    color: var(--color-white) !important;
    background-color: var(--theme-color2);
}

.blogs_main_div{
    margin-bottom: 15px;
    border: 1px solid var(--color-gray);
    padding: 5px 6px;
    border-radius: 10px;
}

.blogs_image_div{
    margin-bottom: 10px;
}

.blogs_image_div > img{
    border-radius: 5px;
    height: 330px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.blogs_content_div > h3{
    font-size: 23px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.blogs_content_div > h3 > a{
    color: var(--theme-color3);

}

.blogs_content_div > h3 > a:hover{
    color: var(--theme-color);
}

.blogs_content_div > p{
    color: var(--color-dark);
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 5px;
}

.blogs_content_div > a{
    display: block;
    font-weight: 600;
    color: var(--theme-color);
    font-size: 15px;
}

.blogs_content_div > a:hover{
    color: var(--theme-color2) !important;
}


.blogs_scroll_div{
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}


/* width */
 .blogs_scroll_div::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.blogs_scroll_div::-webkit-scrollbar-track {
  background: var(--color-white);
}

/* Handle */
.blogs_scroll_div::-webkit-scrollbar-thumb {
  background: var(--color-gray);
}



.flex_blogs_main_div{
    margin-bottom: 15px;
    border: 1px solid var(--color-gray);
    padding: 5px 6px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.flex_blogs_image_div{
    margin-bottom: 0px;
    flex-shrink: 0;
}

.flex_blogs_image_div > img{
    border-radius: 5px;
    height: 150px;
    width: 150px;
    object-fit: cover;
    object-position: top;
}

.flex_blogs_content_div > h3{
    font-size: 23px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.flex_blogs_content_div > h3 > a{
    color: var(--theme-color3);

}

.flex_blogs_content_div > h3 > a:hover{
    color: var(--theme-color);
}

.flex_blogs_content_div > p{
    color: var(--color-dark);
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 5px;
}

.flex_blogs_content_div > a{
    display: block;
    font-weight: 600;
    color: var(--theme-color);
    font-size: 15px;
}

.flex_blogs_content_div > a:hover{
    color: var(--theme-color2);
}
/*  */


.cta_section{
    background-color: var(--color-dark);
    padding: 20px 10px 20px 10px;
    margin-top: 10px;
    border-bottom: 1px solid var(--color-white);
}

.cta_content > h4{
    color: var(--color-white);
    font-size: 30px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.cta_content > p{
    color: var(--color-white);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0px !important;
}


.cta_btn_div{
    text-align: right;
}

.cta_btn_div > a{
    background-color: var(--color-dark);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.cta_btn_div > a:hover{
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: var(--color-white);

}



/* footer css */
.footer{
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    background: linear-gradient(90deg,rgba(30, 35, 42, 1) 25%, rgba(1, 122, 215, 1) 12%);
    padding: 0px 0px 0px 0px;
    background-attachment: fixed;

}


.footer_contact_bg_div{
    background-color: var(--color-dark);
    padding: 20px 10px;
}


.main_div_footer {
    margin-bottom: 4px;
}

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

.main_div_footer .fa {
    background-color:#2d333c;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
   color: var(--color-white);
        border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
    margin-right: 10px;
    font-size: 18px;
}

.main_div_footer2 .fa {
    background-color:#0271c7;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
   color: var(--color-white);
        border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
    margin-right: 10px;
    font-size: 18px;
}

.footer_num_div > h6{
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
    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-white);
    display: block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;

}


.footer_num_div a:hover {
    color: var(--color-gray);
    display: block;
}

.footer_num_div p {
    color: var(--color-white);
   font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 0px !important;

}

.main_div_footer h5 {
    color: var(--color-white);
    text-transform: capitalize;
    padding-bottom: 20px;
    font-size: 22px;
    font-weight: 800;


}

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

.footer_usefull_link h5 {
    color: var(--color-white);
    text-transform: capitalize;
    padding-bottom: 13px;
    font-size: 20px;
    font-weight: 800;


}

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

.footer_usefull_link li {
    line-height: 45px;
    border-bottom: 1px dotted var(--third-color);
}

.footer_usefull_link li a {
    color: var(--color-white);
    font-size: 14px;
    letter-spacing: .3px;
    text-transform: capitalize;
    font-weight: 400;

}


.footer_usefull_link li a:hover {
    color: var(--color-gray);
    letter-spacing: .3px;
}



.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: 4px !important;
}

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

.footer_social_icon{
    text-align: left;
}

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

}

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


/*  */

 .copy_right_section{
    background-color: var(--color-dark);
    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-white);
    text-decoration: underline !important;
  }

/**/

.button_call_and_whatsapp_desktop{
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9;
}


.button_call_and_whatsapp_desktop > a{
     display: block;
     padding: 6px 10px;
     border-radius: 3px;
     font-weight: 700;

     font-size: 13px;
     margin: 0px 2px 15px 10px;

}

.button_call_and_whatsapp_desktop > a > i{
    font-size: 18px;
}

.button_call_and_whatsapp_desktop > a:nth-child(1){
    background-color: var(--theme-color2);
    color: var(--color-white);
}

.button_call_and_whatsapp_desktop > a:nth-child(2){
    background-color: var(--theme-color4);
    color: var(--color-white);
}


.button_call_and_whatsapp_desktop > a:nth-child(3){
    background-color: var(--theme-color3);
    display: none;
     background-color: var(--theme-color4);
    color: var(--color-white);
}
/*  */



.button_enquiry_desktop{
    position: fixed;
    bottom: 2px;
    left: 10px;
    z-index: 9;
}


.button_enquiry_desktop > a{
     display: block;
     padding: 6px 10px;
     border-radius: 3px;
     font-weight: 700;

     font-size: 13px;
     margin: 0px 2px 15px 10px;
     background-color: var(--theme-color7);
     color: var(--color-white) !important;

}

.button_enquiry_desktop > a > i{
    font-size: 18px;
}
/*  */


