/*!
 * Author Noorudheen */

:root {
    --white: #ffffff;
    --muted: #666666;
    --red: #C80428;
    --green:#2B9348;
    --yellow:#FB8B24;
    --primary:#123452;
    --primary-light:#59C0CE;
    --secondary: #089CD5;
    --specialgreen: #149E99;


    --nutral-light-1 : #F2F3F3;
    --nutral-light-2 : #E6E6E7;
    --nutral-light-3 : #CCCECE;
    --nutral-light-4 : #B3B5B6;
    --nutral-light-5 : #999C9D;

    --nutral-dark-1: #676B6C;
    --nutral-dark-2: #4D5254;
    --nutral-dark-3: #34393B;
    --nutral-dark-4: #1A2122;
    --nutral-dark-5: #010709;

    --primary-dark-1 : #D0D6DC;
    --primary-dark-2 : #A0AEBA;
    --primary-dark-3 : #718597;
    --primary-dark-4 : #415D75;
    --primary-dark-5 : #123452;
    --primary-dark-6 : #0E2A42;
    --primary-dark-7 : #0B1F31;
    --primary-dark-8 : #071521;
    --primary-dark-9 : #040A10;

    --primary-light-1 : #DEF2F5;

 
}

* {
    box-sizing: border-box;
    font-weight: 400;
    /* font-size: 14px; */
}

@font-face {
  font-family: 'Poppins', sans-serif;
  src: url("../fonts/Poppins-Regular.ttf");
  /* src: url("CustomFont.woff") format("woff"),
  url("CustomFont.otf") format("opentype"),
  url("CustomFont.svg#filename") format("svg"); */
  }
html {
    height: 100%;
    background-color: #f7f7f7;
    scroll-behavior: smooth;
}


body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    font-size: 16px;
    background-color: #f7f7f7;
    transition: all ease-in-out .5s;;
}


ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
p{ color: var(--primary-dark-9); }
._list_style_circle{ list-style-type: circle;}

.text_sm{ font-size: 12px;}
.text_md{ font-size: 14px;}
.text__underline{ text-decoration: underline;}


._bg_white{ background: var(--white);}
/* --- COLOR  --- */ 
.text_white{ color: var(--white);}
.text_primary { color: var(--primary);}
.text_primary_2 { color: var(--primary-2);}
.text_secondary{ color: var(--secondary) !important;}

.text_muted{ color: var(--primary-dark-3);}


.text_nutral_dark_1 { color: var(--nutral-dark-1);}
.text_nutral_dark_2 { color: var(--nutral-dark-2);}
.text_nutral_dark_3 { color: var(--nutral-dark-3);}
.text_nutral_dark_4 { color: var(--nutral-dark-4);}
.text_nutral_dark_5 { color: var(--nutral-dark-5);}

.text_nutral_light_1 { color: var(--nutral-light-1);}
.text_nutral_light_2 { color: var(--nutral-light-2);}
.text_nutral_light_3 { color: var(--nutral-light-3);}
.text_nutral_light_4 { color: var(--nutral-light-4);}
.text_nutral_light_5 { color: var(--nutral-light-5);}

.text_style_underline{ color: var(--primary); position: relative; }
.text_style_underline::after{ position: absolute; height: 50%;  z-index: 0;
    left:0;
    bottom: 0; width: 100%;
    content: "";
     background: rgba(73, 146, 210, 0.2)}

.height_100{ height: 100%;}
.width_50{ width:50%}
.width_100{ width: 100%;}

.bold{ font-weight: bold;}
.border_bottom_light{ border-bottom: 1px solid var(--nutral-dark-4);}

.header{
  position: absolute;
  width: 100%;
  top: 24px;
  z-index: 9999;
  transition: all .3s ease;
}


.btn_major_outline{ background: none; color: var(--primary); border-color: var(--primary);}
.btn_major_outline:hover, .btn_major:hover{ background: var(--primary-2); color: var(--white); border-color: var(--primary);}
.container{ max-width: 85% !important;}

.header .container {
    background: var(--white);
    padding: 1rem;
    padding-right: 0;
    width: 100%;
    border-radius: .5rem;
    position: relative

}
.header .container::after{
  width: 96%;
  left: 2%;
  height: 10px;
  border-radius: 0 0 10px 10px;
  content: "";
  background: #ffffff3d;
  position: absolute;
  bottom: -8px;

}
.contact-head{  display: flex;}
.contact-head ul{ display: inline-block;
  background: var(--primary); 
  border-radius: 100px 0 0 100px;
  overflow: hidden;
  padding-left: 10px;
}
.contact-head ul li{
  display: inline-block;
  padding: 8px;
  font-size: 12px;
  text-transform: lowercase;

}
.contact-head ul li::after{ 
  position: absolute; 
  background: var(--primary-light); 
  content: ""; 
  width: 1px;
height: 20px;
background: rgba(224, 224, 224, 0.2);
margin-left: 8px;
}
.contact-head ul li:last-child::after{ 
  display: none;
}
.contact-head ul li a {
  color: var(--white);
  font-weight: 500;
}
.contact-head ul li img{ margin-right: 4px;}
._affix {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0px 2px 4px rgba(48, 48, 48, 0.04), 0px 8px 16px rgba(96, 96, 96, 0.16);
    border-radius: 0;
    background:var(--white);
    z-index: 9999;
    transform: translate(10s);
}
._affix .container{
  /* max-width: 100% !important; */
}
._affix .container::after{
  display: none;
}
.quick_connect{ display: none;}
._affix .contact-head ul{ border-radius: 10rem; padding-right: 10px;}

.navbar {
    padding: 0;
  }
.navbar-nav .nav-item .nav-link{  
  padding-top: 1rem; 
  padding-bottom: 1rem; 
  color: var(--primary-dark-4); 
  border-bottom: 2px solid var(--white);
  padding: 1rem 0;
}

 .navbar-nav .nav-item.active .nav-link { 
    border-bottom: 2px solid var(--primary-light); 
    color: var(--primary-light);
    font-weight: 600; 
  }
  /* .navbar-nav .nav-item .nav-link:hover{ 
    color: var(--primary-2);
  } */
/* .navbar-nav .nav-item.active .nav-link{ font-weight: bold;} */
.navbar-nav .nav-item { 
  margin-right: 1rem; padding: 0 1rem;
}
.navbar-brand{
  padding: 0  !important;
}
.navbar-brand .logo {
    /* height: 44px; */
    margin-right: 2rem;
    
}

.navbar-toggler {
    border-color: var(--primary);
    padding: 10px;
}

.navbar-toggler-icon {
    width: 24px;
    height: 3px;
    background: var(--primary);
    position: relative;
    margin-bottom: 5px;
    display: block;
    border-radius: 10px;
}

.navbar-toggler-icon:last-child {
    margin: 0;
}


/* --- TITLES --- */ 
.title_2x{ font-size: 36px; font-weight: 600; color: var(--primary-dark-9);}
.title_md{ font-size: 18px;}
.title_support{ 
  font-size: 1rem; 
  position: relative; 
  margin-right: .5rem;
  color: var(--primary-dark-4);
}
.title_support::after{ 
  position: absolute; 
  content: "";
  width: 32px;
  height: 1px; 
  background: var(--primary-dark-4); 
  display: inline-block; 
  align-items: center; 
  top: 12px;
  margin-left: 5px;
}

/* -- BUTTON -- */

.button_major{ 
  background: transparent; 
  border: 1px solid var(--secondary);
  border-radius: .5rem; 
  padding: .8rem 1.5rem; 
  font-weight: 600; 
  color: var(--secondary);
}
.button_major_filled{
  background: var(--secondary);
  padding: .8rem 1.5rem; 
  font-weight: 600; 
  color: var(--white);
  border: 1px solid var(--secondary);
  border-radius: .5rem; 
  width: 166px;
}
.button_major_filled:hover, .button_major:hover{ 
  background: var(--primary-dark-8); 
  border-color: var(--primary-dark-8); 
  color: var(--secondary);
}
.button_major img{ margin: 0 !important;}

/*   ---BOF BANNER IMAGE SECTION */
.home_page{ background-color: var(--white); 
  /* height: 100%;  */
  overflow: hidden;
}
.banner_img{ width: 100%; margin: auto 0 auto;}
.banner_title{ padding: 2rem 3rem 2rem 0; font-weight: bold; width: 90%; line-height: 1.5; font-size: 44px;}
.homepage_carousel{ 
  position: absolute;
  bottom: 10%;
  z-index: 999;
  left: calc(50% - 50px);
  text-align: center;
  display: flex;
  margin: 0;
  padding: 0;

  border-radius: 100px;
}
.homepage_carousel li{ 
  justify-content: space-between;
  color: var(--white); 
  list-style-type: none; 
  border-radius: 100%;
  width: 30px; 
  height: 30px;
  cursor: pointer;
  display: flex;
  margin-right: 5px;
}
.homepage_carousel li:last-child{ margin: 0;} 
.homepage_carousel li span{
  display: block;
  align-items: center;
  align-self: center;
  width: 100%;
  font-weight: bold;

} 
.arrows_icon{ 
  background: var(--primary-light);
  background: rgba(48, 48, 48, 0.6);
   color: #fff; 
   padding: .5rem;
  }
/* about-us */ 
.about_us{ padding: 4rem 0; 
  /* background: var(--primary-light-1); */
}
.about_us .about_img{ width: 90%; margin-right: 10%;}
.about_us .title_2x{ margin-bottom: 1.5rem; }
.about_us p { margin-bottom: 1.5rem; 
  width: 90%;
  text-align: justify;
}
.about_banner_image{ width: 100%; 
  /* border-radius: 100%; */
}


.why_choose_us{
padding: 50px ;
color: var(--white);
}
.why_choose_us ._content_holder{ width: 100%; 
  background: var(--primary-dark-7);
  background-image: url(../images/whychoosebg.svg);
  background-size: cover;
  border-radius: 1.5rem; padding: 4rem; }
.why_choose_us ._content_holder .text{ width: 80%;}
.why_choose_us ._content_holder img{
  width: 120px; height: 120px; border-radius: 100px;
}

.why_choose_us .title_2x{ color: var(--white);}
.why_choose_us .title_support { color: var(--primary-dark-2);}
.why_choose_us .title_support::after{ background: var(--primary-dark-2);}
.why_choose_content_wrapper{ margin-top: 2rem;}
.why_choose_icon{ margin-bottom: 1rem; background: var(--white); padding: .5rem;}

.our_services{
  padding: 2rem 0 ;
  position: relative;

}
.our_services .container{ 
  z-index: 999;
  position: relative;
}
.our_services::before{
  position: absolute;
  content: "";
  background-image: url(../images/dots.svg);
  background-repeat: repeat;
  height: 290px;
  width: 380px; 
  top: 0;
}
.our_services::after{
  position: absolute;
  content: "";
  background-image: url(../images/dots.svg);
  background-repeat: repeat;
  height: 290px;
  width: 380px; 
  bottom: 80px;
  right: 0;
}
.our_services img{ margin-bottom: 1rem;}
.serv_title{ font-size: 1.2rem;}
.serv_sec { padding-top: 1rem;}
.serv_sec:hover{ background: #eee; border-radius: .1rem; box-shadow: 5px 5px 40px #ccc;}

.testimonials{
  padding: 2rem 0 0;
  background: var(--primary-light-1);
}
.testimonial_holder{ display:flex; flex-direction: column; align-self: center;}
.testimonialslider{
  /* padding: 1.5rem;
  background: var(--white);
  border-radius: .5rem; */
  margin-top: 2rem;
}
.testimonial_wrapper{ display: flex; align-items: flex-start; padding: 1.5rem;
  background: var(--white);
  border-radius: .5rem; 
}
.testimonial_wrapper img{ margin-right: 1rem; width: 64px; height: 64px;  border-radius: 100px;}
.testimonial_wrapper .testimonial_content{  display: inline-block; font-size: 14px;}

#carouselIndicators_testimonials .carousel-indicators{ position: relative; margin-top: 2rem;}
#carouselIndicators_testimonials .carousel-indicators li{ 
  background: var(--primary-light); 
  border: transparent; 
  border-radius: 10px; 
  opacity: 20%;
  height: 4px !important;
}
#carouselIndicators_testimonials .carousel-indicators li.active{ opacity: 100%;}
/* .carousel-indicators{ margin-left: 0; float: left;} */

/* CONTACT-US */
.contact_us{
  margin: 5rem 0;

}
.contact_us .container{ 
  padding: 3rem;
  background: var(--primary-dark-9);
  color: var(--white);
  border-radius: 1.5rem;
  width: 70%;
  position: relative;
}
.contact_us .container::after{
  position: absolute;
  content: "";
  background-image: url(../images/dots.svg);
  background-repeat: repeat;
  height: 200px;
  width: 200px; 
  bottom: 10px;
  right: 10px;
  z-index: 0;
}
.contact_us .title_2x{ color: var(--white);}
.contact_us p { }
.contact_holder{
  margin-top: 1.5rem;

}
.contact_holder .contact_list{ }
.contact_holder .contact_list li{margin-bottom: 1rem; }
.contact_holder .contact_list p{ margin-bottom: 0;}
.contact_holder img{ margin-right: 1rem;}
.contact_holder .social_list{ }
.contact_holder a:hover{ color: var(--primary-light); text-decoration: none; }

/* FOOTER */ 

.contact_form{
  background: var(--white);
  padding: 2rem;
  border-radius: .5rem;
  z-index: 99;
  position: relative;
}
.text_area{ 
  height: auto  !important;

}

footer{ background: var(--nutral-light-2); padding: 50px 50px 0; 
  /* background: url(../images/Footer.svg); */
   background-repeat: no-repeat;
   background-size: cover;
   display: flex;
   width: 100%;
  }
.quicklinks{ margin: 1rem 1rem;}
.quicklinks li{ display: inline-block; margin: .5rem 1rem;}
.quicklinks li a{ color: var(--primary-dark-6) } 
.quicklinks li a:hover{ color: var(--secondary); text-decoration: none;}

.copy_right{ text-align: center; padding: 1rem; display: block; width: 100%; color: var(--primary-dark-3); font-size: 14px; }
.copy_right a { color: var(--primary-dark-3);}
.copy_right a:hover { color: var(--primary-light); text-decoration: none;}

      /* floating label */ 

      :root {
        --input-padding-x: .75rem;
        --input-padding-y: .75rem;
      }
      .form-label-group {
        position: relative;
        margin-bottom: 1rem;
      }
      
      .form-label-group > input,
      .form-label-group > label {
        padding: var(--input-padding-y) var(--input-padding-x);
      }
      
      .form-label-group > label {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        margin-bottom: 0; /* Override default `<label>` margin */
        line-height: 1.5;
        color: #495057;
        border: 1px solid transparent;
        border-radius: .25rem;
        transition: all .1s ease-in-out;
      }
      
      .form-label-group input::-webkit-input-placeholder {
        color: transparent;
      }
      
      .form-label-group input:-ms-input-placeholder {
        color: transparent;
      }
      
      .form-label-group input::-ms-input-placeholder {
        color: transparent;
      }
      
      .form-label-group input::-moz-placeholder {
        color: transparent;
      }
      
      .form-label-group input::placeholder {
        color: transparent;
      }
      
      .form-label-group input:not(:placeholder-shown) {
        padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
        padding-bottom: calc(var(--input-padding-y) / 3);
      }
      
      .form-label-group input:not(:placeholder-shown) ~ label {
        padding-top: calc(var(--input-padding-y) / 3);
        padding-bottom: calc(var(--input-padding-y) / 3);
        font-size: 12px;
        color: #777;
      }
      .contact_form .form-control {
        display: block;
        width: 100%;
        height: 50px;
        padding: .375rem .75rem;
        font-size: 1rem;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        border-radius: .25rem;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
      }
._contact_holder{ background: var(--white);}
._contact_holder .btn_major{ margin: auto; width: 50%;}

.contact-form{ box-shadow: 5px 5px 40px #ccc;
    border-radius: 5px;
    padding: 50px;
}
      .contact_banner{ width: 80%; padding: 10% 0; margin: auto;}

      #site-header.hide {
        top: -90px !important;
    }




/*=============================================*/

.Service_page_container{ 
  background: var(--primary-dark-8);
  padding: 160px 0 60px;
  margin-bottom: 3rem;
}

.title_xl{ 
  font-size: 44px;
  color: white;
  font-weight: bold;
}
.serv_text_support{ color: var(--primary-dark-2);
width: 70%;
font-size: 20px;
font-weight: lighter;
}

.all_services{ }
.service_row{ margin-bottom: 2rem;}
.service_row h2{ font-size: 24px; font-weight: 600; color: var(--primary-dark-8);}
.service_row p{ font-size: 16px; color: var(--primary-dark-4);}
.service_row:nth-child(even){ flex-direction: row-reverse;}
.service_image{ width: 100%; border-radius: .5rem;}
  .breadcrumbs{ display: flex; width: 100%; margin-bottom: 1.5rem ; }
  .breadcrumbs li{ margin-right: 4px; display: inline-flex; color: var(--primary-dark-3);}
  .breadcrumbs li a {color: var(--primary-dark-3);}
  .breadcrumbs li a:hover{ color: var(--primary-light);}
  .breadcrumbs .active { color: var(--primary-light);}


  .floating_widget{ position: fixed;
    bottom: 50px;
    right: 3%;
    padding: 1.2rem;
    background: #0B8F21;
    border-radius: 100px;
    box-shadow: 2px 4px 20px 5px #0000004f;
    z-index: 1024;
  }
  
  
   #carouselMob{ display: none;}
  .slider_mob img{ width: 100%;}

  .loader{ 
    width: 100%; 
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    vertical-align: middle;
    text-align: center;
    background: rgb(0 0 0 / 80%);
    z-index: 9999;
    justify-content: center;
    display: none;

  }
  .spinner_sec{ width: 50px; height: 50px; background: #fff; align-self: center;}
  
  .home_indicator {
    background: rgb(0 0 0 / 80%);
    margin: auto;
    width: 90px;
    bottom: 20px;
    border-radius: 100px;
}

