html{
    overflow-x: hidden;  
      scroll-behavior: smooth;

}

body{
    margin: 0; 
    overflow-x: hidden;
    font-family: "Instrument Sans", sans-serif !important; 
    background-color: #fff;
}

/* width */
::-webkit-scrollbar {
 width:3px;
}

/* Track */
::-webkit-scrollbar-track {
 box-shadow: inset 0 0 0px #255bcc; 
 border-radius:0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
 background: #255bcc;
 border-radius:0px;
}



a{
    text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;

}
a:hover {
       text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;

}
button{
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;

}

.cont50-cl{width:50%; flex:50%; min-width:50%; float: left;}


@keyframes pulsing {

  to {

    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);

  }

}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
  position: fixed;
    bottom: 25px;
    right: 50px;
    z-index: 1111;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.contact_icon img{
    width: 28px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    top: 4px;
    position: relative;
}



/* Load Settings */

.splide__pagination__page{display:none !important;}
.splide__arrow{display:none !important;}

.app {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  gap: 2em;
  font-family: 'Montserrat';
}
.splide {
  max-width:100%;
  float:left;
  width:100%;
  padding-top:5px;
}
.splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.splide__slide__container {
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.4em;
  display: flex;
  align-items: end;
  cursor: pointer;
  transition: background-color 250ms ease-in-out, height 300ms var(--ease-bounce-1);
  width: 100%;
}
.splide__slide__container h1 {
  font-family: "Montserrat";
  margin-left: 1em;
  color: white;
}
ul:has(.splide__slide__container:hover)
.splide__slide__container:not(.splide__slide__container:hover) {
 
}

.splide__slide__container h1{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 250ms ease-in-out, transform 250ms var(--ease-bounce-1);
}
.splide__slide__container:hover h1{
  opacity: 1;
  transform: translateY(0px);
}


.loader {
  height: 3px;
  width: 250px;
  display: block;
    top: 43%;
  --c:no-repeat linear-gradient(#ff032a 0 0);
  background: var(--c),var(--c),#ececec;
  background-size: 60% 100%;
  animation: l16 3s infinite;
    position: relative;
    z-index: 1001;
    margin-left: auto;
    margin-right: auto;
}
@keyframes l16 {
  0%   {background-position:-150% 0,-150% 0}
  66%  {background-position: 250% 0,-150% 0}
  100% {background-position: 250% 0, 250% 0}
}


.loaded .loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}


#content {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 80%;
    max-width: 978px;
}

.entry-header {
  display:block;
  color: white;
  text-align: center;
  margin:0 auto 50px auto;
  width:978px;
  position: relative;
  z-index: 10001;
}

#demo-content {
    padding-top: 100px;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f2f2f2;
  
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
  z-index:1001;   
}

    #loader:before {
    content:"";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f2f2f2;
    
      -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
  }

      #loader:after {
    content:"";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f2f2f2;
    
     -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
               animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
  }
  
      @-webkit-keyframes spin { 
           0%   { 
           -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+  */
           -ms-transform: rotate(0deg);  /* IE 9 */
           transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }

            100% { 
           -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+  */
           -ms-transform: rotate(360deg);  /* IE 9 */
           transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */

         }
        }

        @keyframes spin {
           0%   { 
           -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+  */
           -ms-transform: rotate(0deg);  /* IE 9 */
           transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */

       }

           100% { 
           -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+  */
           -ms-transform: rotate(360deg);  /* IE 9 */
           transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */

       }
    }
  
      #loader-wrapper .loader-section {
        position:fixed;
      top: 0;
      width: 51%;
      height: 100%;
      background: #004795;
      z-index: 1000;
      
    }
    
    #loader-wrapper .loader-section.section-left {
      left:0;
    }
    
    #loader-wrapper .loader-section.section-right {
      right:0;
    }
    
    /* Loaded Styles */
    .loaded #loader-wrapper .loader-section.section-left {
           -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+  */
               -ms-transform: translateX(-100%);  /* IE 9 */
                   transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

            -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045,0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045,0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */        
    }
    
    .loaded #loader-wrapper .loader-section.section-right {
           -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+  */
               -ms-transform: translateX(100%);  /* IE 9 */
                   transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */ 

            -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045,0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045,0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */        
    }   
    .loaded #loader {
      opacity: 0;
      
            -webkit-transition: all 0.3s ease-out;  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                    transition: all 0.3s ease-out;  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */     
    }
    .loaded #loader-wrapper {
      visibility: hidden;
           -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+  */
               -ms-transform: translateY(-100%);  /* IE 9 */
                   transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */      
      
            -webkit-transition: all 0.3s 1s ease-out;  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                    transition: all 0.3s 1s ease-out;  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */        
    }

/* Copy-right by ARiyou2000 in May2020*/


.logo{
  float:left;
}

.logo img{
  width:85px;
}



#section-one{
  float:left;
  width:100%;
  height:100%;
  padding-top:58px;
  padding-bottom:58px;
}

#section-one h1{
  /* float:left; */
  width:100%;
  color:#000000;
  padding-top: 35px;
  font-size: 43px;
  padding-bottom: 13px;
  font-weight:normal;
}

#section-one h1 span{
  color:#ed1c24;
  font-weight:500;
}

#section-one p{
  /* float:left; */
  line-height: 28px;
  width:100%;
  color:#000000;
  font-size:16px;
  padding-bottom: 25px;
}

#section-one img{
  float:right;
  margin-left: 70px;
}

.nav-sec-one{
  float:left;
  width:173px;
  height:58px;
  border-radius:50px;
  border:solid 1px #ff032a;
  font-size:15px;
  color:#ff032a;
  font-weight:500;
  line-height: 55px;
  text-align:center;
}

.nav-sec-one span{
  float:right;
  height:38px;
  margin-right:13px;
  margin-top:9px;
  width:38px;
  border-radius:50px;
  background-color:#ff032a;
  align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.nav-sec-one:hover{
  background-color:#ff032a;
  color:white;
}

.nav-sec-one:hover.nav-sec-one span{
  background-color:white !important;
}

.nav-sec-one img{
  width:30px;
  -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.mrl70{
  margin-left:0px !important;
}

.nav-sec-one:hover.nav-sec-one img{
  -webkit-filter: initial;
    filter: initial;
}

.google-review{
  float:left;
}  

.google-review img{
  margin-left:40px !important;
}


#section-two{
  padding-bottom: 60px;
  float:left;
  width:100%;
  /* background:#f5fafe; */
  padding-top:60px;
  background: #F5FAFE;
  background: linear-gradient(185deg,rgba(245, 250, 254, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

#section-two h2{
  float:left;
  width:100%;
  font-size:44px;
  font-weight: normal; 
}

#section-two h2 span{
  color: #ed1c24;
    font-weight: 500;
}

.owl-srv{
  float:left;
  width:100%;
  background-color:white;
  padding-left:25px;
  color:black;
  border-radius:22px;
  background-image: url(../images/sr1.WEBP);
    background-repeat: no-repeat;
    background-position: right;


}

.owl-srv h3{
  font-size:20px;
  font-weight:600;
}

.owl-srv p{
  font-size: 16px;
    line-height: 26px;
    padding-bottom: 3px;
    padding-top: 3px;
}

.srv-imgs{
  float:left;
  width:75px;
}

.owl-srv:hover .osr img{
-webkit-filter: brightness(0) invert(1);
filter: brightness(0) invert(1);
}

.red-ar{
  float:left;
  width:100%;
  padding-bottom: 15px;
}

.red-ar img{
  float:left;
  width:100%;
  width:37px;
}

.owl-srv:hover .red-ar img{
-webkit-filter: brightness(0) invert(1);
filter: brightness(0) invert(1);
}


.osr{
  float:left;
  width:100%;
  margin-bottom:20px;
  margin-top:23px;
}

.owl-tech{
  float:left;
  width:100%;
  margin-top:40px;
}

.owl-srv:hover{
  background-color:#ff032a;
  color:white;
}

.owl-srv:hover.srv-imgs img{
  -webkit-filter: initial;
    filter: initial;
        -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.pl115{
  padding-left:115px;
  float:left;
  width:100%;
}


#section-three{
  float:left;
  width:100%;
  padding-top: 60px;
  padding-bottom: 75px;
}

#section-three h2{
  float: left;
    width: 100%;
    font-size: 44px;
    font-weight: normal;
    text-align:center;
    color:#000000;
    padding-bottom: 54px;
}

#section-three h2 span{
  color:#ed1c24;
  font-weight: 500;
}

.lg-blue{
  float:left;
  width:100%;
  background-color:#f5fafe;
  padding-top: 40px;
    padding-bottom: 40px;
  padding-left: 20px;
    padding-right: 20px;
  border-radius:15px;
  cursor:pointer;
}

.lg-blue h3{
  float:left;
  width:100%;
  color:#000000;
  font-size:24px;
  line-height: 30px;
}

.blue-imgs{
  float:left;
  width:100%;
  padding-top:35px;
  padding-bottom:35px;
  border-bottom:solid 1px #787b7d;
}

.blue-imgs img{
  width:75px !important;
}

.lg-blue p{
  color: #000000;
    font-size: 16px;
    line-height: 26px;
    float: left;
    width: 100%;
    padding-top: 29px;
}


.lg-bluer h4{
  float: left;
    /* width: 100%; */
    color: black;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    background: white;
    padding: 13px;
    border-radius: 25px;
    padding-left: 23px;
    padding-right: 23px;
}

.lg-bluer p{
  color: #000000;
    font-size: 16px;
    line-height: 26px;
    float: left;
    width: 100%;
    padding-top: 58px;
    padding-right: 60px;
}

.lg-bluer{
  float:left;
  width:100%;
  background: #FFF7F8;
background: linear-gradient(38deg,rgba(255, 247, 248, 1) 0%, rgba(246, 170, 182, 1) 100%);
  padding-top:35px;
  padding-bottom:35px;
  padding-left: 20px;
    padding-right: 20px;
  border-radius:15px;
}

.tab-points{
  float:left;
  width:100%;
  padding-top:20px;
}

.tab-fl{
  float:left;
  background-color:#ff032a;
  color:white;
  font-size: 14px;
  border-radius:50px;
  padding-left: 12px;
  padding-top:10px;
  padding-bottom:10px;
  padding-right: 10px;
  margin-bottom:15px;
  margin-right:11px;
}

.lg-bluer h5{
  height:39px;
  width:39px;
  background-color:#ff032a;
  border-radius:50px;
  align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
    margin-top: 5px;
    float: right;
}

.lg-bluer h5 img{
  width: 27px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    height: auto !important;
    margin-left: 3px;
}

.lg-blue h5{
  height:39px;
  width:39px;
  background-color:white;
  border-radius:50px;
  align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
  margin-top: -64px;
    float: right;
}

.lg-blue h5 img{
  width: 27px;
    height: auto !important;
    margin-left: 3px;
}

#section-four{
  float:left;
  width:100%;
  padding-bottom:90px;
}

#section-four h2{
  float: left;
    width: 100%;
    font-size: 39px;
    color: black;
    text-align: center;
    font-weight: 400;
    line-height: 53px;

}




#section-four h2 span{
  background-color:#fff0f2;
}

.price-list{
  float:left;
  width:100%;
  margin-top: 60px;
}

.price-list img{
  border-radius: 30px;
  height: 428px;
}

.imgtex{
  float:left;
  width:100%;
  position: absolute;
    top: 160px;
    padding-left: 50px;
}

.imgtex h3{
    color: white;
    font-size: 43px;
    font-weight: normal;
    
}

.nav-sec-two{
  float:left;
  width:200px;
  margin-top:25px;
  height:58px;
  border-radius:50px;
  border:solid 1px #ff032a;
  font-size:15px;
  background:#ffffff;
  color:#000000;
  font-weight:500;
  line-height: 55px;
  text-align:center;
}

.nav-sec-two span{
  float:right;
  height:38px;
  margin-right:13px;
  margin-top:9px;
  width:38px;
  border-radius:50px;
  background-color:#ff032a;
  align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.nav-sec-two:hover{
  background-color:#ff032a;
  color:white;
}

.nav-sec-two img {
    width: 30px;
    height: auto;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

#section-five{
  float:left;
  width:100%;
  padding-top:50px;
  padding-bottom:50px;
  background: #2462A5;
background: linear-gradient(38deg, rgba(36, 98, 165, 1) 0%, rgba(0, 71, 149, 1) 100%);
}

#section-five h2{
  float:left;
  width:100%;
  color:white;
  font-size: 44px;
    font-weight: normal;
    padding-bottom:55px;
}

#section-five h2 span{
  font-weight: 500;
}

.probg{
  float:left;
  width:100%;
  background-color:white;
  padding:21px;
  padding-top:24px;
  border-radius:20px;
  color:#000000;
}

.pro-top{
  float:left;
  width:100%;
  border-bottom:solid 1px #d8d4d4;
  padding-bottom:17px;
}

.pro-top h3{
  float:left;
  font-size:25px;
  font-weight:500;
  line-height: 33px;
}

.pro-rd{
  float:right;
  height:63px;
  width:63px;
  border-radius:50px;
  background-color:#ff032a;
      align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
        text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.pro-rd img {
    width: 33px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    height: auto !important;
    margin-left: 3px;
}

.probg p{
  float:left;
  width:100%;
  color:#000000;
  font-size:16px;
  line-height: 25px;
    font-weight: 400;
    padding-top:20px;
}

.imgpro{
  float:left;
  width:100%;
  border-radius:28px;
  margin-top:15px;
  background-color:#ff032a;
     text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.imgpro img{
  border-radius:24px;
}

.probg:hover {
  color:#054b97;
}

.probg:hover .pro-rd{
  background: #1874da;
     text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.probg:hover .imgpro img{
  opacity: 0.4;
   transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}


.cntrnav-one{
  float:left;
  width:100%;
  text-align:center;
  padding-top: 20px;
}



.nav-sec-three{
  /* float:left; */
  width:200px;
  margin-top:25px;
  height:58px;
  border-radius:50px;
  border:solid 1px white;
  font-size:15px;
  color:white;
  font-weight:500;
  line-height: 55px;
  text-align:center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.nav-sec-three span{
  float:right;
  height:38px;
  margin-right:13px;
  margin-top:9px;
  width:38px;
  border-radius:50px;
  background-color:white;
  align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;

}

.nav-sec-three:hover{
  background-color:#ff032a;
  border:solid 1px #ff032a;
  color:white;
}

.nav-sec-three img {
    width: 30px;
    height: auto;
  
}

#section-six{
  float:left;
  width:100%;
  padding-top:45px;
  background-color:white;
  padding-bottom:45px;
}

#section-six h2{
  float: left;
    width: 100%;
    font-size: 44px;
    font-weight: normal;
    text-align: center;
    color: #000000;
    padding-bottom: 54px;
}

#section-six h2 span {
    color: #ed1c24;
    font-weight: 500;
}

.cnt-bg{
  float:left;
  width:100%;
  margin-bottom:23px;
  border-radius: 20px;
  padding-left:29px;
  padding-right:29px;
  padding-top:35px;
  background: #FFEEF0;
  padding-bottom: 25px;
background: linear-gradient(10deg, rgba(255, 238, 240, 1) 0%, rgba(251, 211, 216, 1) 100%);
}

.cnt-bg h3{
  float:left;
  width:100%;
  color:black;
  font-weight:500;
  font-size:24px;
}

.cnt-bg p{
  float:left;
  width:100%;
  color: #000000;
    font-size: 16px;
    padding-right:30px;
    line-height: 25px;
    font-weight: 400;
    padding-top: 5px;
}

.rd{
  float: left;
}

.rd img{
  width: 45px;
    float: left;
    margin-top: 5px;
    margin-bottom: 5px;
}

.favsh{
  width: 180px;
    float: right;
    margin-top: -11px;
}


.cnt-bg:hover .rd img{
animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}

.od-cnts{
  float:left;
  width:100%;
  padding-top:43px;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value{
  background: linear-gradient(180deg, #ff032a, #ff032a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.count-cont h4 {
    font-weight: 600;
    font-size: 60px;
    color: #ff032a;
    display: flex;
    letter-spacing:2px;
    align-items: center;
}

.mapdot{
  float:left;
  width:100%;
}

.mapdot img{
  width: 270px;
    margin-top: -11px;
}

.qlbg{
  float:left;
  width:100%;
  background: url(../images/img12.WEBP);
  
}

.plr{
  padding-right:0px;
  padding-left:0px;
}

.plr29{
  padding-left:29px;
  padding-right:29px;
}

#footer{
  float:left;
  width:100%;
  background:#000000;
  padding-top:45px;
  padding-bottom:40px;
}

#footer h2{
  float:left;
  width:100%;
  color:white;
  font-size:21px;
  padding-bottom:25px;
  font-weight:600;
}

.ftr50{
  float:left;
  width:50%;
}

.ftrnav{
  float:left;
  width:100%;
  color:#e5e5e5;
  font-size:15px;
  padding-bottom:15px;
}

.ftrnav:hover{
  color:#858383;
  text-decoration:none;
}

.rch-out{
  float:left;
  width:80%;
}

.rch-out h3{
  font-size:44px;
  color:white;
  font-weight:400;
  float: left;

}

.rch-out h3 span{
  font-weight:bold;
}

.rch-out img{
  float: left;
  margin-top: -103px;
    margin-right: 40px;
}

.reachout{
  float:left;
  width:210px;
  margin-top: 25px;
  height:63px;
  border:solid 1px #fff;
  border-radius: 50px;
  color:white;
  font-size:15px;
  padding-top:18px;
  letter-spacing:1px;
  margin-left: 65px;
  padding-left:30px;
}

.reachout img{
  float: right;
    margin-right: -5px;
    margin-top: -30px;
}

.reachout:hover{
  background:#ff032a;
  border:solid 1px #ff032a;
}


.circle-logo2{
  width: 120px;
    height: 120px;
    display: flex;
    position: relative;
    float: right;
    top: 0;
    right: 0;
    justify-content: center;
    align-items: center;
}
.circle-logo2 .logoicn{
  width: 61%;
  position: relative;
}
.circle-logo2 .logtext{
width: 100%;
position: absolute;
animation: rotateText2 10s linear infinite;
}
@keyframes rotateText2 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.copyright{
  float:left;
  width:60%;
  font-size:15px;
  color:#b5b5b5;
  font-weight: 400;
  padding-top:62px;
}

.tnm{
  color:#b5b5b5;
}

.tnm:hover{
  color:white;
  text-decoration:none;
}

.social-network{
  float:right;
  padding-top: 50px;
}

.ftr-sc{
  float:left;
  width:37px;
  height:37px;
  align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
  margin-right:12px;
  background:#484c4f;
  border-radius:50px;
}

.ftr-sc:hover{
  background: #1c1f20;
}


#banner-section{
  float:left;
  width:100%;
}




 
 .slider {
      position: relative;
      width: 100%;
      height: 694px;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      width: 100%;
      /* height: 100%; */
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
    }

    .slide img {
      width: 100%;
    /*  height: 694px;
       object-fit: cover; */
      /* filter: brightness(0.6); */
    }

    .content {
      position: absolute;
      top: 55%;
      left: 8%;
      transform: translateY(-50%);
      color: #fff;
      /* max-width: 563px; */
      animation: fadeUp 1s ease;
    }

    .content h2 {
      font-size: 19px;
      color:#004795;
      font-weight:600;
      margin-bottom: 15px;
      text-transform: uppercase;
      /* letter-spacing: 2px; */
    }

    .content p {
      font-size: 60px;
      color:#010101;
      font-weight:400;
      line-height: 70px;
    }

        .content p span{
    font-weight: 500;
        }

    @keyframes fadeUp {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }

    .navigation {
      position: absolute;
      width: 100%;
      bottom: 20px;
      display: flex;
      justify-content: center;
      display:none;
      gap: 10px;
    }

    .nav-btn {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #fff;
      opacity: 0.5;
      cursor: pointer;
      transition: 0.3s;
    }

    .nav-btn.active {
      opacity: 1;
      transform: scale(1.3);
      background: #ff4757;
    }









  

.drop50{
  float:left;
  width:50%;
}

.drop-hvr{
  float:left;
  width:100%;
  font-size:15px;
  color:black;
  padding: 10px;
}

.drop-hvr:hover{
  background-color: #fff0f2;
}



.nav-sec-hd{
  float: right;
  width:173px;
  height:58px;
  border-radius:50px;
  border:solid 1px #ff032a;
  font-size: 15px !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  line-height: 55px !important;
  margin-left: 20px !important;
  text-align:  center !important;
  background: #ff032a;
}

.nav-sec-hd span{
  float:right;
  height:38px;
  margin-right:13px;
  margin-top:9px;
  width:38px;
  border-radius:50px;
  background-color: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
  margin-right: 0px;
  margin-left: 10px;
}

.nav-sec-hd:hover{
     background-color: #0e478e;
    color: white;
    border:solid 1px #0e478e;
}

.nav-sec-hd:hover.nav-sec-hd span{
  background-color:white !important;
}

.nav-sec-hd img{
  width:30px;
  /* -webkit-filter: brightness(0) invert(1); */
  /* filter: brightness(0) invert(1); */
}


.hmb {
    width: 30px;
}

.header .logo img .active{
  width:25px;
}


.d-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mod-new {
    width: 100%;
    float: left;
    padding: 30px;
    padding-top: 0px;
}

.mod-right {
    width: 100%;
    float: left;
    /* padding: 30px 30px; */
    margin-top: 10px;
}

.mod-right img {
    width: 100%;
    max-width: 140px;
    float: left;
    margin: auto;
    display: block;
    text-align: center;
}

.mod-right h6 {
    font-size: 35px;
    color: #ffffff;
    font-weight: 600;
    margin-top: 20px;
    float: left;
    margin-bottom: 10px;
    width: 100%;
    /* letter-spacing: -1px; */
}

.mod-right a {
    width: 100%;
    float: left;
    padding-bottom: 6px;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    /* letter-spacing: -.5px; */
    font-size: 20px;
}

.mod-right a {
    width: 100%;
    float: left;
    padding-bottom: 6px;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    /* letter-spacing: -.5px; */
    font-size: 20px;
}

.log-sec {
    width: 100%;
    float: left;
    background: #fff;
    border-radius:50px;
    padding: 30px 30px;
    /* border-radius: 30px; */
}

.log-field input {
    width: 100%;
    float: left;
    padding: 16px 13px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    border: solid 1px rgb(0 0 0 / 22%);
    margin-bottom: 20px;
    font-size: 15px;
    font-family: "Jost", sans-serif !important;
}

.log-field label {
    margin-bottom: 10px;
    font-size: 15px;
    color: #000000;
    width: 100%;
    font-weight: 500;
}

.modals-bgs {
    background:#b90723;
    padding-bottom: 0px !important;
}

.modals-enqb{
    margin-right: auto !important;
    margin-left: auto !important;
    position: relative !important;
    width: auto !important;
    height: auto !important;
}



.nav-sec-bnr{
  float:left;
  width:173px;
  height:58px;
  border-radius:50px;
  border:solid 1px #ffffff;
  background:#ffffff;
  font-size:15px;
  color:#000;
  font-weight:500;
  line-height: 55px;
  text-align:center;
}

.nav-sec-bnr span{
  float:right;
  height:38px;
  margin-right:13px;
  margin-top:9px;
  width:38px;
  border-radius:50px;
  background-color:#ff032a;
  align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.nav-sec-bnr:hover{
  background-color:#ff032a;
  color:white;
}

.nav-sec-bnr:hover.nav-sec-bnr span{
  background-color:white !important;
}

.nav-sec-bnr img{
  width:30px;
  -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

#pagebnr{
  position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}


.rs-breadcrumb-one {
    padding-top: 170px;
    padding-bottom: 100px;
    position: relative;
    margin-top: 145px;
}

.rs-breadcrumb-one .rs-breadcrumb-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    background-image: url(../images/breadcrumb-bg-01.png);
    height:265px;
}

.rs-breadcrumb-bg h3{
  float:left;
  width:100%;
  color:white;
  font-size: 45px;
    font-weight: 500;
    padding-top:60px;
}

.rs-breadcrumb-bg p{
  float: left;
    width: 40%;
    color: white;
    font-size: 16px;
    line-height: 27px;
}


.rs-contact-nine .rs-contact-item {
    padding: 30px 30px 30px 30px;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #E9E9E9;
}

.rs-contact-nine .rs-contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: var(--rs-bg-primary);
    transition: all 0.5s;
}

.rs-contact-nine .rs-contact-title {
    margin-top: 30px;
    margin-bottom: 20px;
}

.cnt-brd{
    float: left;
    width: 100%;
    border-radius: 10px;
    /* background-color: #fff0f2; */
    /* padding: 20px; */
    margin-bottom: 15px;
}

.cnt-brd h3{
  float:left;
  width:100%;
  font-size:21px;
  color:black;
  font-weight:600;
  padding-bottom: 3px;
}

.cnt-brd p{
  float: left;
  width: 100% !important;
  line-height: 24px !important;
  padding-bottom: 0px !important;
}


.icons-new{
  float: left;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: #ff032a;
    margin-bottom: 18px;
    margin-top: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.icons-new img{
  width: 33px;
    margin-right: 0px !important;
    margin-left: 0px !important;
    float: left !important;
    text-align: center;
     -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.telnav{
  float:left;
  width:100%;
  color:black;
  padding-bottom: 4px;
    padding-top: 4px;
}

.ptb{
  padding-top: 15px !important;
    padding-bottom: 40px !important;  
}

.form-sections{
  float:left;
  width:100%;
  /* padding-top: 30px; */
}

.form-sections h2{
  float:left;
  width:100%;
  text-align: left;
  color: #000000;
  /* padding-top: 35px; */
  font-size: 45px;
  margin-bottom: 40px;
  font-weight: normal;
}

.form-sections h2 span{
  color: #ed1c24;
    font-weight: 500;
}

.career-frmcnt {
    border:1px solid rgb(0 0 0 / 26%) !important;
    color: black;
    display: block;
    padding-left: 15px !important;
    font-weight: 400;
    font-size: 15px;
    height: 55px;
    margin-bottom: 28px !important;
    padding: 0 20px;
    outline: none;
    background: #ffffff;
    width: 100%;
    padding-left: 0px;
    border: none;
    transition: all 500ms ease;
    /* border: solid 1px rgb(255 255 255 / 32%); */
    margin-top: 3px;
    width: 100%;
    border-radius:10px !important;
    float: left;
    padding: 7px 10px;
    margin-top: 3px;
    border-radius: 2px;
}

.tlt-hlp {
    float: left;
    width: 100%;
    color: black;
    font-size: 16px;
    padding-bottom: 6px;
    font-weight: 500;
}

.left-push{
  float:left;
}

.form-sections form{
  width:750px;
  margin-right:auto;
  margin-left:auto;
}



.nav-sec-btn{
  float:left;
  width:200px;
  height:58px;
  border-radius:50px;
  border:solid 1px #ff032a;
  font-size:15px;
  color:#ff032a;
  font-weight:500;
  line-height: 55px;
  text-align:center;
  background: white;
    margin-top: 15px;
    cursor: pointer;
}

.nav-sec-btn span{
  float:right;
  height:38px;
  margin-right:13px;
  margin-top:9px;
  width:38px;
  border-radius:50px;
  background-color:#ff032a;
  align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.nav-sec-btn:hover{
  background-color:#ff032a;
  color:white;
}

.nav-sec-btn:hover.nav-sec-btn span{
  background-color:white !important;
}

.nav-sec-btn img{
  width:30px;
  -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.nav-sec-btn:hover.nav-sec-btn img {
    -webkit-filter: initial;
    filter: initial;
}

.map-sections{
  float:left;
  width:100%;
}

.map-sections h2{
  float: left;
    width: 100%;
    text-align:left;
    color: #000000;
    padding-top:60px;
    font-size: 45px;
    margin-bottom: 40px;
    font-weight: normal;
}

.map-sections h2 span {
    color: #ed1c24;
    font-weight: 500;
}

.map{
  float:left;
  width:100%;
  border-radius:20px;
}

.bgc img {
    width: 100%;
    border-radius: 20px;
    margin-right: 0px;
    margin-left: 0px !important;
    float: left !important;
}

.ins-tab {
    position: relative;
    float: right;
    margin-top: -37px;
    background: rgb(255 3 42 / 86%);
    padding: 10px;
    color: white;
    font-size: 14px;
    border-top-left-radius: 10px;
}

.contc {
    float: left;
    width: 100%;
    padding-top: 25px;
    padding-bottom:45px;
}

.date {
    float: left;
    width: 100%;
    font-size: 16px;
    padding-bottom: 5px;
    color: #004795;
    font-weight: 600;
}

.contc h3 {
    float: left;
    width: 100%;
    font-size: 22px;
    color: #000000;
    font-weight: 600;
    line-height: 31px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-top: 2px;
}

.contc p {
    float: left;
    width: 100%;
    color: #3d3f40;
    font-size: 16px;
    line-height: 26px !important;
    padding-top: 5px;
    padding-bottom: 8px !important;
}

.fs40{
  padding-bottom: 4px !important;
    font-size: 40px !important;
}

.date-dts{
  float: left;
    width: 100%;
    font-size: 18px;
    padding-bottom: 5px;
    color: #004795;
    font-weight: 600;
    margin-bottom: 17px;
    margin-top: 9px;
}

.lh{
  line-height:28px !important;
}

.blg-dtlp {
  float:left;
  width:100%;
  margin-top: 8px;
}

.blg-dtlp p{
  float: left;
  width: 100%;
  color: #3d3f40;
  font-size: 16px;
  line-height: 30px !important;
  padding-top: 10px;
  padding-bottom: 0px !important;
  margin-bottom: 0px;
}

.blog-headt{
  float: left;
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    color: black;
    padding-top: 12px;
}

.related-srv {
    float: left;
    width: 100%;
    color: #cf0524;
    font-size: 19px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
}

.micro-srv{
    float: left;
    width: 100%;
    padding: 25px;
    background-color: #fff0f2;
    margin-bottom:20px;
    border-radius: 13px;
}


.micro-srv h4{
    float: left;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 0px;
    margin-bottom: 0px;
    background: #1767a8;
    padding: 10px;
    /* letter-spacing: 1px; */
    margin-bottom: 10px;
    border-radius: 5px;
    margin-top: 5px;
}

.micro-srv h3{
   float: left;
    width: 100%;
    color: black;
    line-height: 24px;
    font-size: 16px;
    font-weight: 500;
}

.micro-srv p{
    float: left;
    width: 100%;
    font-size: 16px;
    color: #000000;
    line-height: 26px !important;
    margin-top:4px;
    margin-bottom: 2px;
    padding-bottom: 0px !important;
}

.micro-srv h3 img{
      width: 20px;
    float: right;
}

.post-date{
  float: left;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    color: #bc1414;
    padding-top: 3px;
    padding-bottom: 5px;
}

.micro-srv:hover{
      background-color: #f9f9f9;
}

.price-lstd{
  float:left;
  width:100%;
  font-size:25px;
  font-weight:600;
  color:black;
  padding-bottom: 25px;
}

.tab-fnts{
  font-size: 15px !important;
    color: black;
    text-align:center !important;
    padding: 16px !important;
}

.prcb{
  font-weight: 600;
    color: #b90909;
    line-height: 28px;
}

.mb30{
  margin-bottom:30px;
}

.header_menu_area{
  padding-top:15px;
}


.active .logo img {
   width: 60px;
}

.active .header_menu_area{
  padding-top:0px;
}

.active .header{
  padding-top: 10px;
    padding-bottom: 10px;
}

.srv-details{
  float:left;
  width:100%;
}

.srv-details p{
  line-height: 28px;
    width: 100%;
    color: #000000;
    font-size: 16px;
    padding-bottom:0px !important;
}

.srv-details h2{
  width: 100%;
    font-size: 35px;
    color: black;
    font-weight: 600;
    line-height: 37px;
    padding-bottom: 10px;
}

.srv-details img{
  border-radius:20px;
}

.srvhg{
  float:left;
  width:100%;
}

.srvhg h3{
  float:left;
  width:100%;
  font-size: 45px;
  color:black;
  font-weight: normal;
  text-align:center;
  padding-top: 50px;
  padding-bottom:50px;
}

.srvhg h3 span {
    color: #ed1c24;
    font-weight: 500;
}

.swl{
  background: #f5fafe;
  float:left;
  width:100%;
  border-radius:20px;
  padding:25px;
  padding-top: 35px;
}

.swl h4{
  float:left;
  width:100%;
  color:black;
  font-size:20px;
  font-weight:600;
  line-height: 29px;
    padding-bottom: 4px;
}

.swl p{
  float:left;
  width:100%;
  font-size:16px;
  padding-bottom: 0px !important;
    line-height: 27px !important;
}

.bgdark{
  background-color: #426582;
}



#section-foursr{
  float:left;
  width:100%;
  padding-bottom:90px;
}

#section-foursr h2{
  float: left;
    width: 100%;
    font-size: 39px;
    color: black;
    text-align: center;
    font-weight: 400;
    line-height: 53px;




     background: linear-gradient(to right, #000000 10%, #000000 25%, #dba4a4 40%, #424242 55%, /* darker color for contrast */ #8c8c8c 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 300% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}


#section-four h2 span{
  background-color:#fff0f2;
}

.bgabts{
  background:#fff0f2;
  margin-bottom: 30px;
}

.bgabts p{
  line-height: 28px !important;
}

.bgabts h4{
  font-size:22px;
}

.bgabts img{
  width: 65px;
    float: left !important;
    margin-left: 0px !important;
    margin-bottom: 16px;
}

#lgpoints{
  float:left;
  width:100%;
  background: #054b97;
  padding-top:30px;
  padding-bottom:30px;
  margin-bottom:45px;
  background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    background-image: url(../images/scroll.WEBP);
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 70px;
}

#lgpoints h3{
  float:left;
  width:100%;
  font-size: 45px;
  color:white;
  font-weight: normal;
  text-align:center;
  padding-top: 20px;
    padding-bottom: 30px;
}

#lgpoints h3 span {
    color: white;
    font-weight: 500;
}

.rdcount h4{
    float: left;
    border-radius: 10px;
    font-size: 39px;
    /* padding-left: 5px; */
    color: white;
    display: flex;
    letter-spacing: 2px;
    align-items: center;
    font-weight: 600;
}


.titels-od{
  float: left;
    width: 100%;
    font-size: 23px;
    color: white;
    padding-top: 11px;
    font-weight: 600;
}

.titels-details{
  float:left;
  width:100%;
  color:white;
  font-size: 16px;
  padding-top: 7px;
  line-height:27px !important;
}

#why-points{
  float:left;
  width:100%;
  /* padding-top:35px; */
  padding-bottom:35px;
}

#why-points h2{
  float:left;
  width:100%;
  color:#000000;
  padding-top:0px;
  font-size:45px;
  padding-bottom:55px;
  font-weight:normal;
}

#why-points h2 span{
  color:#ed1c24;
  font-weight:500;
}

.pnt-steps{
  float: left;
    width: 100%;
    border-bottom: solid 1px rgb(0 0 0 / 7%);
    padding-bottom: 15px;
    margin-bottom: 29px;
     text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.strp{
  float: left;
    width: 6%;
    padding: 10px;
    background: #ff032a;
    border-radius: 15px;
    text-align: center;
    color: white;
    font-size: 19px;
    font-weight: 600;
}

.strp span{
  float:left;
  width:100%;
}

.strp-h {
  float:left;
  width:30%;
}

.strp-h h3{
      float: left;
    width: 100%;
    font-size: 21px;
    color: black;
    font-weight: 600;
    line-height: 27px;
    padding-left: 30px;
     text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.strp-p{
  float:left;
  width:64%;
}

.strp-p p{
  float:left;
  width:100%;
  line-height: 28px;
      color: #000000;
    font-size: 16px;
}

.pnt-steps:hover .strp{
      background: #004795;
        text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.pnt-steps:hover .strp-h h3{
  color: #004795;
    text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.media-box{
  border-radius: 15px;
    border: solid 1px rgb(0 0 0 / 10%);
    padding: 15px;
    margin-bottom: 40px;
}

.media-box img{
  border-radius: 15px !important;
  float: none !important;
  margin-left: 0px !important;
}

.crtnames{
  float: left;
    width: 100%;
    font-size: 21px;
    color: black;
    font-weight: 500;
    text-align: left;
    padding-top: 16px;
    line-height: 28px;
}

.crtdetails
{
  float: left;
  width:100%;
    line-height: 28px;
    width: 100%;
    color: #000000;
    font-size: 16px;
    padding-top: 9px;
}

.vpl{
  float: left;
    width: 50px;
    height: 50px;
    background: #ff032a;
    border-radius: 50%;
    text-align: center;
    font-size: 44px;
    color: white;
    margin-top: 10px;
    line-height: 50px;
    font-weight: 300;
}

.media-box:hover .vpl{
  background: #004794;
    text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;
}

.prot-name{
  float:left;
  width:100%;
  font-size:23px;
  font-weight:600;
  color:black;


}

.pro-details{
    float: left;
    color: black;
    width: 100%;
    font-size: 16px;
    padding-bottom: 7px !important;
    line-height: 27px !important;
    padding-top: 5px;
}

.pro-lst{
  float:left;
  width:100%;
  padding-bottom: 20px;
}

.pro-lst h3{
    float: left;
    font-size: 16px;
    width: 100%;
    line-height:27px;
    color:black;
    margin-bottom:5px;
    margin-top:5px;
    font-weight: normal;
}

.pro-lst h3 span{
  float:left;
  font-weight:600;
  margin-right: 7px;
    color: #004694;
}



.nav-sec-pro{
  float:left;
  width: 190px;
  height:58px;
  border-radius:50px;
  border:solid 1px #ff032a;
  font-size:15px;
  color:#ff032a;
  font-weight:500;
      margin-bottom: 30px;
  line-height: 55px;
  text-align:center;
}

.nav-sec-pro span{
  float:right;
  height:38px;
  margin-right:13px;
  margin-top:9px;
  width:38px;
  border-radius:50px;
  background-color:#ff032a;
  align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.nav-sec-pro:hover{
  background-color:#ff032a;
  color:white;
}

.nav-sec-pro:hover.nav-sec-pro span{
  background-color:white !important;
}

.nav-sec-pro img{
  width:30px;
  -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.nav-sec-pro:hover.nav-sec-pro img {
    -webkit-filter: initial;
    filter: initial;
}

.pr-imgs{
  float:left;
  width:100%;
  margin-bottom:0px;
}

.pr-imgs img{
  width:100%;
  border-radius:25px;
  margin-left:0px !important;
  margin-right:0px;
}

.owl-pro{
  float:left;
  width:100%;
}

.pr-imgs .owl-stage-outer{
  border-radius: 25px !important;
}


#sect-owls{
  float:left;
  width:100%;
  padding-top:60px;
  padding-bottom:0px;
}

.owl-srtech{
  float:left;
  width:100%;
}

.rd-bg{
  float:left;
  width:100%;
  background: #ff032a;
  padding-left:15px;
  padding-right:15px;
  padding-top:17px;
  padding-bottom:17px;
  border-radius:20px;
}

.rd-bg:hover{
  background: #004795;
}

.rd-bg img{
  border-radius:15px;
  float: left;
  margin-right: 20px;
}

.rd-bg h2{
  /* float:left; */
  /* width:100%; */
  color:white;
  font-weight:600;font-size: 19px;
  padding-top: 15px;
}

.rd-bg h3{
   /* float:left; */
   /* width:100%; */
   color:white;
   font-size:15px;
   line-height: 23px;
   font-weight:400;
   padding-top: 0px;
}

.owl-srtech .owl-nav{
  display:none !important;
}

.bxopl{
 float: left;
    height: 169px;
    /* background: rgb(255 255 255); */
    width: 210px;
    position: relative;
    margin-top: -169px;
    position: relative;
    z-index: 11;
    opacity: 0.9;
    background: #FFF;
    background: linear-gradient(273deg,rgb(255 255 255 / 2%) 0%, rgb(255 255 255) 100%);
}

.bxop2{
  float:right;
  height:210px;
    /* background: rgb(255 255 255); */
    width: 100px;
    position: relative;
    margin-top: -169px;
    position: relative;
    z-index: 11;
     opacity: 0.9;
    background: #FFF;
    background: linear-gradient(90deg,rgb(255 255 255 / 2%) 0%, rgb(255 255 255) 100%);

}





.modal .modal-dialog {
  position: fixed;
  margin: auto;
  width: 320px;
  height: 100%;
  transform: translate3d(0%, 0, 0);
}
.modal .modal-content {
  height: 100%;
  overflow-y: auto;
}
.modal .modal-body {
  padding: 15px 15px 80px;
}
.modal.left.fade .modal-dialog {
  left: -320px;
  transition: opacity 0.1s linear, left 0.1s ease-out;
}
.modal.left.fade.show .modal-dialog {
  left: 0;
}
.modal.right.fade .modal-dialog {
  right: -320px;
  transition: opacity 0.1s linear, right 0.1s ease-out;
}
.modal.right.fade.show .modal-dialog {
  right: 0;
}

/* ----- MODAL STYLE ----- */
.modal-content {
  border-radius: 0;
  border: none;
}
.modal-header {
  border-bottom-color: #eeeeee;
  background-color: #fafafa;
}

/* ----- v CAN BE DELETED v ----- */

.category-filters{
  float:left;
  width:100%;
}

.category-filters span{
  float:left;
  width:100%;
   color:black;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 15px;
}


.form-group{float:left; width:100%; padding-bottom:12px; margin-bottom:0px !important;}
.form-group input { padding: 0;  height: initial;  width: initial;  margin-bottom: 0;  display: none; cursor: pointer; margin-top: 20px;}
.sub-category .form-group label {position: relative;cursor: pointer;font-size: 16px;color: #000;font-weight: normal;width: 100%;}
.form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: white;
    border: 1px solid #b2b2b2;
    width: 18px;
    height: 18px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 11px;
    border-radius: 5px;
    }
.form-group input:checked + label:after { content: '';  display: block; position: absolute; top: 3px; width: 18px; height: 18px;   
background: url(../images/cd-icon-check.svg) no-repeat center center;  left: 0px;  background-color: #121611; 
border-radius: 5px;}
.sub-category .form-group label span{float: right;
    width: auto;
    font-size: 16px;
    color: #a80c0c;
    margin-bottom: 0px;
    font-weight: 400;}


.filter-searchs{
     float: right;
     border: none;
     font-size: 16px;
     background: #0e5098;
     padding: 11px;
     border-radius: 7px;
     font-weight: 500;
     letter-spacing: 0px;
     cursor: pointer;
     text-decoration: none;
     transition: all ease-in-out .5s;
     -webkit-transition: all ease-in-out .5s;
     -o-transition: all ease-in-out .5s;
     -moz-transition: all ease-in-out .5s;
     color: white;
     margin-left: 15px;
}    

.filter-searchs:hover{
  background: #ff032a;
  color:white;
   text-decoration: none;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
-moz-transition: all ease-in-out .5s;

}

.filter-searchs img{
  float: left !important;
    margin-left: 0px !important;
    width: 21px;
    margin-right:6px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    margin-top: 1px;
}



.radio {
    float: left;
    width: 100%;
    margin-bottom: 14px;
}
.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  background: #ffffff;
  border-radius: 100%;
  border: 1px solid #b8b9b8;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: 0;
  margin-right: 10px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
  font-size: 14px;
  color: black;
  /* font-weight: 500; */
  margin-top: 3px;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #3479e4;
  box-shadow: inset 0 0 0 4px #ffffff;
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #3197EE;
}
.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.radio-label{
  font-size: 16px;
    position: relative;
    cursor: pointer;
    /* font-size: 16px; */
    color: #000;
    font-weight: normal;
    width: 100%;
}

.radio-label span{
    float: right;
    width: auto;
    font-size: 16px;
    color: #a80c0c;
    margin-bottom: 0px;
    font-weight: 400;
}

.serach-btns{
    float: left;
    width: 159px;
    height: 54px;
    border-radius: 50px;
    background: #ff032a !important;
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    line-height: 53px;
    text-align: center;
    background: white;
    margin-top: 15px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.serach-btns:hover{
  background:#004795 !important;
}

.close-filter{
  background: #054b97;
    border-radius: 50px;
    padding: 11px;
    display:none;
}

.close-filter img{
  width: 23px;
  -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.close_form {
    border-radius: 30px;
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 5px;
    z-index: 999;
    top: 15px;
    background: #00000000 url(../images/close.svg) no-repeat center center;
    background-size: 20px 20px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: none;
    cursor: pointer;
    filter: brightness(100);
}


.ding {
  padding-bottom: 15px;
    float: right;
    height: 46px;
    width: 215px;
    font-size: 15px;
    color: black;
}
.ding h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.888em;
  color: #888;
} 

.ss-main .ss-single-selected {
    width: 50%;
    height: 50px;
    padding: 10px;
}
.ss-main .ss-content {
  width: 50%;
}
.ss-main .ss-multi-selected {
    width: 80%;
    padding: 10px;
}

  @media (max-width:950px) {
  .content {
    margin: 15px 10px auto;
    padding: 0 10px;
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: left;
    text-align: center;
    flex-direction: column;
  }
}

.ss-search{
  display:none;
}

.electrical-bg{background-image: url(../images/sr2.WEBP);}
.plumbing-bg{background-image: url(../images/sr3.WEBP);}
.painting-bg{background-image: url(../images/sr4.WEBP);}
.carpentry-bg{background-image: url(../images/sr5.WEBP);}
.mvd-bg{background-image: url(../images/sr6.webp);}
.reinstatement-bg{background-image: url(../images/sr7.webp);}
.ssmf-bg{background-image: url(../images/sr8.webp);}
.glassworks-bg{background-image: url(../images/sr9.webp);}
.vfg-bg{background-image: url(../images/sr10.webp);}
.decking-bg{background-image: url(../images/sr11.webp);}
.aircon-bg{background-image: url(../images/sr12.webp);}
.handyman-bg{background-image: url(../images/sr13.webp);}
.bd-bg{background-image: url(../images/sr14.webp);}


.owl-tech .owl-nav {
    float: right;
    margin-top: -450px;
    position: relative;
    right: 112px;
}

.owl-tech  .owl-prev img{
  width:50px;
  margin-right: 10px;
}

.owl-tech  .owl-next img{
  width:50px;
}






@media only screen and (max-width:991px) {
#section-one img{float:left; margin-left:0px;}
#section-one h1{float:left; width:100%;}
#section-one p{float:left; width:100%;}
.owl-srv{background-image: none !important;}
.pl115{padding-left:0px;}
.price-list img{display:none;}
.price-list{background: #ff032a; border-radius: 30px; padding-top:30px; padding-bottom: 36px; text-align: center;}
.imgtex{position:relative; top:0px; padding-left: 0px;}
.nav-sec-two img{ display: inline !important;}
.nav-sec-two{display: block; text-align: center; margin-left: auto; margin-right: auto; float:none;}
.srv-details h2{float:left; width:100%; padding-top: 20px;}

.cont50{width:100%; flex:100%; min-width:100%; margin-bottom:20px;}
}


@media only screen and (max-width:500px) {
#section-one h1{font-size:35px;}
#section-two h2{font-size:35px;}
#section-three h2{font-size:35px;}
#section-five h2{font-size:35px;}
#section-six h2{font-size:35px;}
#why-points h2{font-size:35px;}
.form-sections h2{font-size:35px;}
.map-sections h2{font-size:35px;}
#section-four h2{font-size: 35px; line-height:44px;}
.srvhg h3{font-size:35px;}
#lgpoints h3{font-size:35px; padding-bottom: 10px;}
#lgpoints{text-align:center;}
.rdcount h4{display:inline; width:100%; text-align:center;}
.od-cnts{padding-top:28px;}
}


@media only screen and (max-width:392px) {
#section-one h1{font-size:29px;}
#section-two h2{font-size:29px;}
#section-three h2{font-size:29px;}
#section-five h2{font-size:29px;}
#section-six h2{font-size:29px;}
#why-points h2{font-size:29px;}
.srvhg h3{font-size:29px;}
#lgpoints h3{font-size:29px;}
.form-sections h2{font-size:29px;}
.map-sections h2{font-size:29px;}
.probg{margin-bottom:30px;}
#section-four h2{font-size:27px; line-height:36px;}
#section-three{padding-bottom:30px;}
}


@media only screen and (max-width:425px) {
.imgtex h3{font-size:31px;}
}



@media only screen and (max-width:390px) {
.pro-rd{width:40px; height:40px;}
.pro-rd img{width:24px;}
}

@media only screen and (max-width:330px) {
.pro-top h3{width:100%;}
.pro-rd{float:left;}
}

@media only screen and (max-width:1199px) {
.lg-bluer h5{display:none;}
.lg-bluer p{padding-top:10px !important; padding-right: 0px !important;}
}

@media only screen and (max-width:367px) {
.lg-bluer{padding-top:20px;}
.lg-bluer h4{font-size:16px;}
.lg-bluer p{padding-top:5px !important;}
.tab-points{padding-top:0px;}
.lg-blue h5{display:none;}
}

@media only screen and (max-width:767px) {
.lg-blue{margin-bottom:25px;}
.strp-h{width:100%; float:left;}
.strp-p{width:100%; float:left;}
.strp-h h3{padding-left:0px;}
.strp{width:auto; margin-bottom:10px;}
.swl{margin-bottom:30px;}
.tab-fnts{text-align:left !important; padding-left: 37px !important;}
.dtr-data{font-weight: 600;
    color: #b90909;
    line-height: 28px;}
.form-sections form{width:100%;}

.rch-out{display:none;}
.copyright{width:100%;}
.social-network{width:100%; float:left; padding-top: 25px;}
.circle-logo2{display:none;}
.copyright{padding-top:30px;}
}

@media only screen and (max-width:560px) {
.rs-breadcrumb-one .rs-breadcrumb-bg{ background: #014693; position: relative; float: left;}
.rs-breadcrumb-bg p{width:100%;}
.rs-breadcrumb-one{padding-top:0px; padding-bottom:0px; float:left; width:100%;}
.rs-breadcrumb-bg h3{padding-top:45px;}
.rs-breadcrumb-bg p{padding-bottom:45px;}
}

@media only screen and (max-width:452px) {
.filter-searchs{float:left; margin-left:0px;}
}

@media only screen and (max-width:439px) {
.filter-searchs{float:left; width:50%; margin-bottom:20px; text-align:left; border-radius: 5px;}
.ding{float:left; width:50%; text-align:left;}
.filter-searchs img{display:none;}
}

@media only screen and (max-width:400px) {
.fs40{font-size:32px !important;}
}


@media only screen and (max-width:980px) {
#section-two{ background: #f5fafe;}
}


@media only screen and (max-width:768px) {
.owl-tech .owl-prev img{width:40px;}
.owl-tech .owl-next img{width:40px;}
.owl-tech .owl-nav{margin-top:25px; margin-left:13px; float:left; right:0px;}
}

@media only screen and (max-width:408px) {
.google-review {display:none;}
}


@media only screen and (max-width:460px) {
.cont50{width:100%; flex:100%; min-width:100%; margin-bottom:20px;}
.cnt-brd{height:auto;}
.ftrnav{font-size:13px;}
}

@media only screen and (max-width:1000px) {
.header_menu_area{display:none;}
}

@media only screen and (min-width: 1001px) and (max-width: 2999px) {
.hide-desk{display:none;}
}

@media only screen and (min-width: 230px) and (max-width: 950px) {
.content p{font-size:48px; line-height:55px; text-align:left;}
.content h2{text-align:left;}
}

@media only screen and (min-width: 230px) and (max-width: 768px) {
.hide-slimg{display:none;}
.slide img{height:auto !important; filter: brightness(0.6) !important;}
.content p{color:white;}
.content h2{color:white;}
.content p{font-size:30px; line-height:34px;}
.content h2{font-size:15px; margin-bottom:7px;}
.content{top:40%;}
.content{margin-left:0px; padding-left:0px; left:6%;}
.splide{display:none;}
.navigation{display:none;}
}

@media only screen and (min-width: 769px) and (max-width: 1900px) {
.hide-slimg-desk{display:none;}
}

@media only screen and (min-width: 230px) and (max-width:634px) {
.logo img{width:60px;}
.content{top:45%;}
}

@media only screen and (min-width: 230px) and (max-width:490px) {
.content{top:53%;}
}

@media only screen and (min-width: 230px) and (max-width:370px) {
.content p{font-size:22px; line-height: 29px;}
.content h2{font-size:13px;}
.nav-sec-bnr{width:160px; height:50px; line-height: 50px; font-size:14px;}
.nav-sec-bnr span{width:30px; height:30px;}
.nav-sec-bnr img{width:24px;}
}


@media only screen and (min-width: 491px) and (max-width:570px) {
.sec-pdn{padding-top:0px !important;}
}

@media only screen and (min-width: 230px) and (max-width:490px) {
.sec-pdn{margin-top:-105px; padding-top:0px !important;}
}

@media only screen and (min-width: 230px) and (max-width:400px) {
.sec-pdn{margin-top:-150px; padding-top:0px !important;}
}

@media only screen and (min-width: 230px) and (max-width:360px) {
.sec-pdn{margin-top:-220px; padding-top:0px !important;}
}


@media only screen and (min-width:230px) and (max-width:1199px) {
.nav a{padding: 0 8px !important; font-size: 14px !important;}
.nav-sec-hd{margin-left:5px !important;}
}

@media only screen and (min-width:230px) and (max-width:634px) {
.rs-breadcrumb-one{margin-top: 110px;}
}

@media only screen and (min-width:1530px) and (max-width:1536px) {
.pl115{padding-left: 193px;}
}

@media only screen and (min-width:1400px) and (max-width:1440px) {
.pl115{padding-left: 153px;}
}



@media only screen and (min-width:1900px) and (max-width:2300px) {
.content{margin-top:390px; transition:none; top:0px;}
}



@media only screen and (min-width:230px) and (max-width:768px) {
.contact_icon{bottom: 14px;
    right: 13px;}
}




.ftr-hand{
    width:50px !important;
}

.app_chat_block {
   /* width: 170px; */
    /* height: 51px; */
    position: fixed;
    bottom: 25px;
    right: 80px;
    /* background: #fff no-repeat center center; */
    /* background-size: 20px 20px; */
    box-shadow: 0 0 28px rgb(0 0 0 / 10%);
    z-index: 999;
    text-align: center;
    font-size: 17px;
    line-height: 42px;
    color: black;
    font-weight: 400;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    border-radius: 50px;
    /* letter-spacing: 1px; */
}

.app_chat_block:hover{
        background: #e24a30 no-repeat center center;
        color:white !important;
}

.app_chat_block strong img {
    width: 22px;
    float: right;
    position: relative;
    top: 10px;
    left: -19px;
}

.app_chat_block span {
    /* font-size: 15px; */
    /* position: relative; */
    /* top: 4px; */
}




.project-radius{
    border-radius: 25px;
    margin-left: 0px !important;
    margin-right: 0px;
    float: left !important;
    margin-bottom:15px;
}

.project-names{
    float: left;
    width: 100%;
    text-align: center;
    color: black;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.prodt-brds{
  border: solid 1px rgb(0 0 0 / 12%);
  padding-bottom: 25px;
  margin-bottom:25px;
}

.pb15{
  margin-bottom: 0px;
    padding-bottom: 15px !important;
}.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}
.blg-dtlp div{
    width:100% !important;margin:0 !important;
}