html{
    overflow-x:hidden;
}
body{
    margin: 0;   overflow-x:hidden;
    font-family: 'DM Sans', sans-serif !important;
}
a{
    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;

}





.btn-download{
float: left;

display: inline-block;

font-weight: 600;

font-size: 15px;

height: 45px;

color: white;

margin-top: 10px;

text-align: left;

border-radius: 5px;

width: auto;

padding: 11px 15px;

background-color: #0d7abe;
margin:15px 15px;

transition: all ease-in-out 0.5s;

-o-transition: all ease-in-out 0.5s;

-ms-transition: all ease-in-out 0.5s;

-moz-transition: all ease-in-out 0.5s;

-webkit-transition: all ease-in-out;
}

.btn-download:hover{

text-decoration: none;

background: #51b847;

color: #fff;
}




.detail-right.pack ul li a {
    font-size: 15px;
    color: #000;
    border-bottom: 1px solid #bbbbbb;
    width: 100%;
    float: left;
    padding: 10px 30px !important;
    font-weight: 600;
}
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  overflow: hidden;
}
.no-js #loader-wrapper {
  display: none;
}

#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: #ffffff;
  -webkit-animation: spin 1.7s linear infinite;
  animation: spin 1.7s linear infinite;
  z-index: 11;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #0d7abe;
  -webkit-animation: spin-reverse 0.6s linear infinite;
  animation: spin-reverse 0.6s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #51b847;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes spin-reverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #fff;
  z-index: 10;
}

#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 {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}


.hamburger-init {
  width: 30px;
  height: 26px;
  position: absolute;
  top: 31px;
  right: 0;
  cursor: pointer;
  z-index: 99;
}

.bar {
  position: absolute;
  height: 2px;
  width: 100%;
  background: #000;
  transition: all .3s;
  /* border-radius: 100%; */
}

.bar.middle-bar {
  top: 44%;
  margin-top: -2px;
}

.bar.bottom-bar {
  bottom: 5px;
}

.hamburger-init.active {
  z-index: 99999999;
  animation: rotateHamburger .5s linear 0s forwards;
  right: 50px;
  top: 30px;
  /* background: #000; */
  position: fixed;
}

.hamburger-init.active .bar {
  background: #000;
}

.hamburger-init.active .bar.top-bar {
  transform: translateY(12px) rotate(45deg);
  z-index: 999;
  background: #fff;
  height: 2px;
}

.hamburger-init.active .bar.middle-bar {
  width: 0;
}

.hamburger-init.active .bar.bottom-bar {
  transform: translateY(-13px) rotate(-45deg);
  background: #fff;
  bottom: 0;
  height: 2px;
}

.menu-wrapper {
  background: #0d7abe;
  transition: all .3s;
  transform: scale(0);
  border-radius: 50%;
  position: absolute;
  padding: 40px 0;
}

.menu-wrapper.visible {
  transform: scale(1);
  border-radius: 0;
  height: 100%;
  z-index: 999;
  position: relative;
  overflow-y: scroll;
  max-height: 100vh;
  position: fixed;
}

.menu {
  /* position: absolute; */
  /* max-width: 400px; */
  /* width: 100%; */
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%,-50%); */
  /* text-align: center; */
}

.menu-wrapper li {
  opacity: 0;
  cursor: pointer;
  transition: all .3s;
}

.menu.menu-active li:nth-child(1) {
  animation:  moveItems 1s linear 0s forwards;
}

.menu.menu-active li:nth-child(2) {
  animation: moveItems 1s linear .5s forwards;
}

.menu.menu-active li:nth-child(3) {
  animation: moveItems 1s linear 1s forwards;
}

.menu.menu-active li:nth-child(4) {
  animation: moveItems 1s linear 1.5s forwards;
}

.menu.menu-active li:nth-child(5) {
  animation: moveItems 1s linear 2s forwards;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid transparent;
  border-right-color: #fff;
  border-bottom-color: #fff;
  top: 22px;
  right: 110px;
  transform: rotate(45deg);
  transition: all .3s;
}

.menu-item-has-children.sub-menu-active::after {
  transform: rotate(224deg);
}

.menu-item-has-children > .menu {
  display: none;
  position: static;
  transform: initial;
}

.guide-text {
  color: crimson;
  font-size: 25px;
  position: absolute;
  right: 80px;
  top: 20px;
  opacity: 0;
}

.container.hamburger-guide .guide-text {
  animation: showClickGuide 1s linear infinite;
}


/* Animations */

@keyframes rotateHamburger {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(180deg);
  }
}

@keyframes moveItems {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  30% {
    transform: translateY(-15px);
    opacity: .2;
  }
  50% {
    transform: translateY(-10px);
    opacity: .3;
  }
  80% {
    transform: translateY(-5px);
    opacity: .4;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes showClickGuide {
  0% {
    opacity: 0;
    transform: scale(.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #000;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #000;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000;
}
.logo {
    float: left;

    width: 20%;
    position: relative;
    z-index: 11;
    
}

.logo a img{
    float: left;
    /* width: 170px; */
    margin-top: 27px;
    width: 320px;
}
.header2 {
    float: right;
    width: 80%;
    /* margin-top: 25px; */
}
.in-about-txt h6{

color: #7891aa;

font-size: 15px;

text-transform: uppercase;

margin-bottom: 20px;

/* padding-top: 10px; */
}
.in-about-txt .img-abt{

}
.business-full h1{

font-size: 51px;

color: #000;

margin: 0;
}
.business-full p{
    
font-size: 14px;
    
line-height: 28px;
    
color: #000;
    
padding-top: 15px;
}
.header{
}.vision img {
    float: left;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 70px;
    margin-bottom: 20px;
    filter: brightness(0);
}.contact3-info {
    /* margin-top: -108px; */
    /* margin-bottom: 72px; */
    padding: 48px 0px 48px 0px;
    color: #ffffff;
    /* background-color: #000; */
    float: left;
    width: 100%;
}.alignc {
    text-align: center;
}
.innerban h1{
    
}
.innerban .a-last:after{
    display:none;
}
.innerban a{
    position:relative;
    font-size: 15px;
    color: #fff;
    padding-left: 30px;
    float: right;
}
.innerban a:after{
    position:absolute;
    content:'';
    background-image: url('../images/right.png');
    width: 28px;
    height: 28px;
    left: 6px;
    filter: invert(1);
    z-index: 999;
    top: 2px;
    background-size: 20px;
    background-repeat: no-repeat;
}
.right-ban{
    float: right;
    width: 100%;
    text-align: right;
    padding: 30px 0;
}
.about-full h1{
    font-size: 55px;
    color: #000;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}
.about_panel1_area {
    width: 100%;
    display: table;
    vertical-align: middle;
    max-width: 920px;
    margin: 60px auto;
}.about_panel1_box {
    background: #0d7abe;
    padding: 50px 40px!important;
    text-align: left;
    box-shadow: -1px 0 4px rgb(0 0 0 / 15%);
    -moz-box-shadow: -1px 0 4px rgba(0,0,0,.15);
    -webkit-box-shadow: -1px 0 4px rgb(0 0 0 / 15%);
    margin-top: 70px;
}.about_panel1_box>h3 {
    width: 100%;
    float: left;
    position: relative;
    font-size: 22px;
    line-height: 32px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px!important;
}.about_panel1_box>p {
    width: 100%;
    float: left;
    position: relative;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    color: #fff;
    text-align: justify;
    margin: 0;
}.about_panel1_box2 {
    background: #51b847;
    padding: 50px 40px!important;
    text-align: left;
    box-shadow: 1px 0 4px rgb(0 0 0 / 15%);
    -moz-box-shadow: 1px 0 4px rgba(0,0,0,.15);
    -webkit-box-shadow: 1px 0 4px rgb(0 0 0 / 15%);
    margin-top: 70px;
}.about_panel1_box2>h3 {
    width: 100%;
    float: left;
    position: relative;
    font-size: 22px;
    line-height: 32px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px!important;
}.about_panel1_box2>p {
    width: 100%;
    float: left;
    position: relative;
    font-size: 14px;
    color: #fff;
    line-height: 25px;
    font-weight: 400;
    text-align: justify;
}
.about-full{
    width: 100%;
    float: left;
    padding: 70px 0;
}
.about-full h6{position:relative;position: relative;font-size: 22px;color: #0d7abe;padding-left: 45px;font-weight: 700;}
.about-full h6:after{
    position:absolute;
    content:'';
    left: 0;
    background: #0d7abe;
    height: 3px;
    width: 35px;
    top: 10px;
}
.about-full p{
    font-size: 15px;
    color: #000;
    line-height: 30px;
}
.about-full img{
    width: 100%;
}

.detail-full{

width: 100%;

float: left;

padding: 70px 0;
}
.detail-left{

width: 95%;

float: left;
}
.detail-left .img-dt{
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 70px;
}.detail-left .img-dt img{
    position: relative;
    width: 100%;
    padding-left: 30px;
    height: 345px;
}
.detail-left .img-dt:after{position: absolute;content: '';background: #0d7abe;width: 93%;height: 355px;left: 0;z-index: -1;top: 29px;}
.detail-left p{

width: 100%;

float: left;

font-size: 15px;

color: #000;

font-weight: 400;

line-height: 28px;
}
.detail-right{

width: 100%;

float: left;

background: #f9f9f9;
}
.detail-right h1{

text-transform: capitalize;

background: #0d7abe;

font-size: 25px;

color: #fff;

padding: 10px 30px;

font-weight: 400;

margin: 0;
}
.detail-right ul{

width: 100%;

float: left;

padding: 0;
}
.detail-right ul li{

list-style: none;
}
.detail-gal{

width: 100%;

float: left;

padding: 0 0 70px;
}
.detail-gal .col-lg-5 img{}
.detail-gal .col-lg-7 img{
    
width: 100%;
    
float: left;
    
height: 254px;
    
margin-bottom: 30px;
}
.detail-right ul li a{

font-size: 15px;

color: #000;

border-bottom: 1px solid #bbbbbb;

width: 100%;

float: left;

padding: 25px 30px;

font-weight: 600;
}
.detail-right ul li a:hover{

text-decoration: none;

color: #0d7abe;
}
.detail-right .active{

color: #0d7abe!important;
}
.date {
    color: #f3fdf3;
    position: absolute;
    background: #51b847;
    height: 33px;
    font-size: 14px;
    top: 39.4%;
    font-weight: 700;
    /* width: 200px; */
    z-index: 999;
    padding: 5px 10px;
    right: 0;
}
.contact-full {
    width: 100%;
    float: left;
    padding: 60px 5%;
}.contact-full h2 {
    font-size: 35px;
    /* text-align: center; */
    padding: 0;
    /* line-height: 60px; */
    font-weight: 700;
    width: 100%;
    float: left;
    margin-bottom: 10px;
}.contact-full p {
    font-size: 15px;
    /* text-align: center; */
    /* padding: 20px 356px; */
    line-height: 30px;
    width: 100%;
    float: left;
    margin-bottom: 0;
}
.contact-full h4 {
}.ct-full {
    width: 100%;
    float: left;
    background: #0d7abe;
    padding: 80px 0;
    position: relative;
    z-index: 9;
}.form-sec {
    width: 100%;
    /* float: left; */
    /* padding-left: 30px; */
    display: block;
    max-width: 700px;
    margin: auto;
}.form-sec h2 {
    font-size: 45px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    margin: 0;
}.form-sec p {
}.log_set {
    width: 100%;
    float: left;
    position: relative;
    padding: 0 0 17px;
    margin-bottom: 15px;
}.log_set label {
    width: 100%;
    float: left;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 25px;
    margin: 0 0 10px;
    text-align: left;
}.log_set input[type="text"], .log_set input[type="password"], .log_set input[type="mail"], .log_set input[type="email"], .log_set input[type="tel"], .log_set textarea, .log_set select {
    width: 100%;
    float: left;
    background: white;
    position: relative;
    height: 46px !important;
    border-bottom: 0;
    padding: 10px 6px;
    font-size: 13px;
    line-height: 30px;
    color: #000;
    font-weight: 600;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    outline: none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}.ct-full button {
    background: #fff;
    border: 0;
    font-weight: 700;
    display: block;
    cursor: pointer;
    margin: auto;
    font-size: 15px;
    color: #0d7abe;
    padding: 14px 60px;
    border-radius: 30px;
}.ct-full button:hover {
    background: #51b847;
    color: #fff;
}
.panel7{

width: 100%;

float: left;

background: #51b847;

padding: 130px 0;
}
.panel7 h1{

font-size: 55px;

color: #fff;

line-height: 65px;

font-weight: 700;

margin-top: 20px;

padding-left: 30px;
}
.panel7 p{

font-size: 15px;

line-height: 30px;

color: #fff;

font-weight: 400;

padding-top: 10px;

padding-left: 30px;
}
.panel7 a{

float: left;

display: inline-block;

font-weight: 600;

margin-left: 30px;

font-size: 15px;

height: 45px;

color: #51b847;

margin-top: 10px;

text-align: left;

border-radius: 5px;

width: 143px;

padding: 12px 15px;

background-color: #fff;

transition: all ease-in-out 0.5s;

-o-transition: all ease-in-out 0.5s;

-ms-transition: all ease-in-out 0.5s;

-moz-transition: all ease-in-out 0.5s;

-webkit-transition: all ease-in-out;
}
.panel7 a img{

width: 17px !important;

height: 20px;

float: right;

margin-top: 1px;
}
.panel7 a:hover{

text-decoration: none;

color: #fff;

background: #0d7abe;
}
.panel7 a:hover img{

filter: brightness(111);
}
.p7-img{
    
width: 100%;
}
.panel6{

width: 100%;

float: left;

padding: 130px 0;
}
.panel6 h6{

position: relative;

font-size: 22px;

color: #0d7abe;

font-weight: 700;

/* text-align: center; */

margin: auto;

display: table;
}
.panel6 h6:after{position: absolute;content: '';width: 33px;height: 2px;background: #0d7abe;right: -50px;top: 12px;}
.panel6 h6:before{/* position: absolute; *//* content: ''; */position: absolute;content: '';width: 33px;height: 2px;background: #0d7abe;left: -50px;top: 12px;}
.p6-box{

}
.testi-img{

/*height: 75px;*/

width: 75px !important;

/*border-radius: 100%;*/

float: left;

margin-right: 20px;
}
.p6-box h5{


}
.p6-box h4{


}
.p6-box p{

}
.quote-img{
    
width: 45px !important;
    
position: absolute;
    
right: 40px;
}
.panel6 h1{

text-align: center;

font-size: 55px;

color: #191919;

font-weight: 700;

margin-bottom: 50px;

margin-top: 30px;
}
.p6-box{

width: 100%;

float: left;

background: #fff;

padding: 30px 40px;

position: relative;

box-shadow: -8px 3px 21px 3px rgba(0,0,0,0.05);

margin-top: 20px;

margin-bottom: 10px;
}
.p6-img{

}
.p6-box h4{

font-size: 20px;

font-weight: 700;

color: #000;

padding-top: 15px;
}
.p6-box h5{

color: #9fa1a3;

font-size: 15px;

font-weight: 300;
}
.p6-box p{

width: 100%;

float: left;

font-size: 15px;

line-height: 30px;

margin-top: 20px;

color: #000;

border-top: 2px solid #e8e9f0;

padding-top: 15px;
}
.p6-img2{

}
.panel5{

width: 100%;

float: left;

background: #0d7abe;

padding: 70px 0;
}
.panel5 img{

float: left;

margin-right: 10px;
}
.panel5 h6{}
.panel5 h5{
    
}
.panel4{}
.panel4 h1{
        text-align: center;
        font-size: 55px;
        color: #191919;
        font-weight: 700;
        margin-bottom: 20px;
        margin-top: 30px;
}
.panel4 h6{position: relative;font-size: 22px;color: #0d7abe;font-weight: 700;/* text-align: center; */margin: auto;display: table;}
.panel4 h6:after{
    position: absolute;
    content: '';
    width: 33px;
    height: 3px;
    background: #0f7bbf;
    left: -45px;
    top: 12px;
}
.p4-box{width: 100%;float: left;margin-top: 50px;}
.p4-box img{width: 63px !important;float: left;}
.p4-box h5{
    font-size: 20px;
    font-weight: 700;
    color: #000;
    padding-left: 10px;
    float: left;
    padding-top: 6px;
    line-height: 25px;
}

.panel3{

width: 100%;

float: left;

background: url('../images/cta.png');

text-align: center;

padding: 65px 0;
}
.panel3 h1{

font-size: 50px;

color: #fff;

font-weight: 700;

margin-bottom: 30px;
}
.panel3 a{

display: inline-block;

font-weight: 600;

font-size: 15px;

height: 45px;

color: #51b847;

margin-top: 10px;

text-align: left;

border-radius: 5px;

width: 143px;

padding: 11px 15px;

background-color: #fff;

transition: all ease-in-out 0.5s;

-o-transition: all ease-in-out 0.5s;

-ms-transition: all ease-in-out 0.5s;

-moz-transition: all ease-in-out 0.5s;

-webkit-transition: all ease-in-out;
}
.panel3 a img{

width: 17px !important;

height: 20px;

float: right;

margin-top: 1px;

/* filter: invert(1); */
}
.panel3 a:hover{

text-decoration: none;

color: #fff;

background: #0d7abe;
}
.panel3 a:hover img{
    
filter: brightness(111);
}
.p2-text{
    
width: 100%;
    
float: left;
    
padding: 30px;
}
.panel2{

width: 100%;

float: left;

padding: 100px 0;
}
.panel2 h6{position: relative;font-size: 22px;color: #191919;font-weight: 700;/* text-align: center; */margin: auto;display: table;}
.panel2 h6:after{position: absolute;content: '';position: absolute;content: '';width: 33px;height: 2px;background: #000;right: -50px;top: 12px;}
.panel2 h6:before{position: absolute;content: '';width: 33px;height: 2px;background: #000;left: -50px;top: 12px;}
.panel2-box{

width: 100%;

float: left;

border: 1px solid #eaeaea;

position: relative;
}
.panel2-box h2{

font-size: 26px;

font-weight: 700;

color: #191919;

border-bottom: 2px solid #eaeaea;

padding-bottom: 10px;
}
.panel2-box p{

font-size: 15px;

color: #000;

line-height: 28px;

padding-top: 10px;
}
.panel2-box a{

float: left;

display: inline-block;

font-weight: 600;

font-size: 15px;

height: 45px;

color: white;

margin-top: 10px;

text-align: left;

border-radius: 5px;

width: 143px;

padding: 11px 15px;

background-color: #0d7abe;

transition: all ease-in-out 0.5s;

-o-transition: all ease-in-out 0.5s;

-ms-transition: all ease-in-out 0.5s;

-moz-transition: all ease-in-out 0.5s;

-webkit-transition: all ease-in-out;
}
.panel2-box a img{

width: 17px !important;

height: 20px;

float: right;

margin-top: 1px;

filter: invert(1);
}
.panel2-box a:hover{

text-decoration: none;

background: #51b847;

color: #fff;
}
.panel2-box a:hover img{

}
.p2-img{

height: 235px;

object-fit: cover;

border-radius: 0;

width: 100%;
}
.panel2 h1{

text-align: center;

font-size: 55px;

color: #191919;

font-weight: 700;

margin-bottom: 50px;

margin-top: 30px;
}
.panel1{

background: #0d7abe;

width: 100%;

float: left;

margin-top: 70px;
}

.panel1 h6{position: relative;font-size: 22px;color: #fff;padding-left: 45px;font-weight: 700;}
.panel1 h6:after{position: absolute;content: '';width: 30px;height: 2px;background: #fff;left: 0;top: 12px;}
.panel1 h1{

font-size: 55px;

color: #fff;

font-weight: 700;

margin-top: 20px;

margin-bottom: 20px;
}
.panel1 p{

color: #fff;

font-size: 18px;

line-height: 30px;

width: 88%;

margin-bottom: 30px;
}
.panel1 a{

float: left;

display: inline-block;

font-weight: 600;

font-size: 15px;

height: 45px;

color: #0d7abe;

text-align: left;

border-radius: 5px;

width: 143px;

padding: 11px 15px;

background-color: #fff;

transition: all ease-in-out 0.5s;

-o-transition: all ease-in-out 0.5s;

-ms-transition: all ease-in-out 0.5s;

-moz-transition: all ease-in-out 0.5s;

-webkit-transition: all ease-in-out 0.5s;
}
.panel1 a img{

width: 17px !important;

height: 20px;

float: right;

margin-top: 3px;
}
.panel1 a:hover{

text-decoration: none;

background: #51b847;

color: #fff;
}
.panel1 a:hover img{

filter: brightness(111);
}
.p1-img{

width: 85%;

float: right;

max-height: 570px;
}
.panel1-text{

width: 100%;

float: left;

padding: 85px 0 85px 18%;
}
.ban-butn1 img{

width: 17px !important;

height: 20px;

float: right;

filter: invert(1);

margin-top: 2px;
}
.hd-top:after{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 55px solid transparent;
    border-right: 55px solid transparent;
    border-bottom: 105px solid #0d7abe;
    left: -34px;
    bottom: 0;
}

.hd-top{background: #0d7abe;width: 58%;float: right;position: relative;z-index: 999;height: 54px;padding: 18px 7%;}
.hd-top h6{
    
font-size: 14px;
    
color: #fff;
    
float: right;
    
margin: 0 0 0 20px;
}


.contact-icon {
    font-size: 24px;
    padding: 32px;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 1;
}.contact-icon img {
    width: 90px;
    height: 90px;
    /* filter: invert(1); */
    border: 2px solid #000;
    padding: 21px;
    border-radius: 100%;
    transition: all ease-in-out .5s;
}.contact-icon img:hover {
    transform: rotate(360deg);
    background: #31d6cc;
    filter: invert(1);
}.contact3-info .widgettitle {
    color: #ce2933;
}
.widgettitle, .smalltitle, .comment-reply-title {
    color: var(--headings-color);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.margin-b16 {
    margin-bottom: 16px;
}.contact3-info p {
    color: #000;
}.contact-sec2 {
    width: 100%;
    float: left;
    background-color: #0f3860;
    padding: 70px 0 30px;
    position: relative;
    z-index: 99;
    background-image: url(../images/footer-pattern.png);
}.contact-sec2 h1 {
    font-size: 50px;
    text-align: center;
    font-weight: 300;
    color: #fff;
}.contact-sec2 p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    padding: 10px 225px 50px;
    text-align: center;
    color: #fff;
}.contact-sec2 form {
    max-width: 900px;
    display: block;
    margin: auto;
}.contact-sec2 input {
    width: 100%;
    float: left;
    border: 0;
    background: #fff;
    padding: 12px;
    margin-bottom: 30px;
    font-size: 15px;
    border-radius: 5px;
}.contact-sec2 textarea {
    width: 100%;
    float: left;
    border: 0;
    background: #fff;
    padding: 11px;
    margin-bottom: 30px;
    font-size: 15px;
    border-radius: 5px;
}.contact-sec2 button {
    font-size: 16px;
    color: #fff;
    background: #ce2933;
    border: 0;
    padding: 13px 87px;
    border-radius: 30px;
    cursor: pointer;
    /* float: right; */
    margin: 60px auto;
    display: block;
}.contact-sec2 button:hover {
    background: #fff;
    color: #000;
}html{
    overflow-x:hidden;
}
body{
    margin: 0;   overflow-x:hidden;
    font-family: 'DM Sans', sans-serif !important;
}
a{
    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;

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

/* Track */
::-webkit-scrollbar-track {
  background: #000;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #000;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000;
}


.in-about-txt h6{

color: #7891aa;

font-size: 15px;

text-transform: uppercase;

margin-bottom: 20px;

/* padding-top: 10px; */
}
.in-about-txt .img-abt{

}
.business-full h1{

font-size: 51px;

color: #000;

margin: 0;
}
.business-full p{
    
font-size: 14px;
    
line-height: 28px;
    
color: #000;
    
padding-top: 15px;
}
.header{
}.vision img {
    float: left;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 70px;
    margin-bottom: 20px;
    filter: brightness(0);
}.contact3-info {
    /* margin-top: -108px; */
    /* margin-bottom: 72px; */
    padding: 48px 0px 48px 0px;
    color: #ffffff;
    /* background-color: #000; */
    float: left;
    width: 100%;
}.alignc {
    text-align: center;
}
.innerban h1{
    
}
.innerban .a-last:after{
    display:none;
}
.innerban a{
    position:relative;
    font-size: 15px;
    color: #fff;
    padding-left: 30px;
    float: right;
}
.innerban a:after{
    position:absolute;
    content:'';
    background-image: url('../images/right.png');
    width: 28px;
    height: 28px;
    left: 6px;
    filter: invert(1);
    z-index: 999;
    top: 2px;
    background-size: 20px;
    background-repeat: no-repeat;
}
.right-ban{
    float: right;
    width: 100%;
    text-align: right;
    padding: 30px 0;
}
.about-full h1{
    font-size: 55px;
    color: #000;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}
.about_panel1_area {
    width: 100%;
    display: table;
    vertical-align: middle;
    max-width: 920px;
    margin: 60px auto;
}.about_panel1_box {
    background: #0d7abe;
    padding: 50px 40px!important;
    text-align: left;
    box-shadow: -1px 0 4px rgb(0 0 0 / 15%);
    -moz-box-shadow: -1px 0 4px rgba(0,0,0,.15);
    -webkit-box-shadow: -1px 0 4px rgb(0 0 0 / 15%);
    margin-top: 70px;
}.about_panel1_box>h3 {
    width: 100%;
    float: left;
    position: relative;
    font-size: 45px;
    line-height: 50px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px!important;
}.about_panel1_box>p {
    width: 100%;
    float: left;
    position: relative;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    color: #fff;
    text-align: justify;
    margin: 0;
}.about_panel1_box2 {
    background: #51b847;
    padding: 50px 40px!important;
    text-align: left;
    box-shadow: 1px 0 4px rgb(0 0 0 / 15%);
    -moz-box-shadow: 1px 0 4px rgba(0,0,0,.15);
    -webkit-box-shadow: 1px 0 4px rgb(0 0 0 / 15%);
    margin-top: 70px;
}.about_panel1_box2>h3 {
    width: 100%;
    float: left;
    position: relative;
    font-size: 45px;
    line-height: 50px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px!important;
}.about_panel1_box2>p {
    width: 100%;
    float: left;
    position: relative;
    font-size: 14px;
    color: #fff;
    line-height: 25px;
    font-weight: 400;
    text-align: justify;
}
.about-full{
    width: 100%;
    float: left;
    padding: 70px 0;
}
.about-full h6{position:relative;position: relative;font-size: 22px;color: #0d7abe;padding-left: 45px;font-weight: 700;}
.about-full h6:after{
    position:absolute;
    content:'';
    left: 0;
    background: #0d7abe;
    height: 3px;
    width: 35px;
    top: 10px;
}
.about-full p{
    font-size: 15px;
    color: #000;
    line-height: 30px;
}
.about-full img{
    width: 100%;
}

.detail-full{

width: 100%;

float: left;

padding: 70px 0;
}
.detail-left{

width: 95%;

float: left;
}
.detail-left .img-dt{
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 70px;
}.detail-left .img-dt img{
    position: relative;
    width: 100%;
    padding-left: 30px;
    height: 345px;
}
.detail-left .img-dt:after{position: absolute;content: '';background: #0d7abe;width: 93%;height: 355px;left: 0;z-index: -1;top: 29px;}
.detail-left p{

width: 100%;

float: left;

font-size: 15px;

color: #000;

font-weight: 400;

line-height: 28px;
}
.detail-right{

width: 100%;

float: left;

background: #f9f9f9;
}
.detail-right h1{

text-transform: capitalize;

background: #0d7abe;

font-size: 25px;

color: #fff;

padding: 10px 30px;

font-weight: 400;

margin: 0;
}
.detail-right ul{

width: 100%;

float: left;

padding: 0;
}
.detail-right ul li{

list-style: none;
}
.detail-gal{

width: 100%;

float: left;

padding: 0 0 70px;
}
.detail-gal .col-lg-5 img{width: 100%;float: left;height: 540px;object-fit: cover;}
.detail-gal .col-lg-7 img{
    width: 100%;
    float: left;
    height: 254px;
    margin-bottom: 30px;
    object-fit: cover;
}
.detail-right ul li a{

font-size: 15px;

color: #000;

border-bottom: 1px solid #bbbbbb;

width: 100%;

float: left;

padding: 25px 30px;

font-weight: 600;
}
.detail-right ul li a:hover{

text-decoration: none;

color: #0d7abe;
}
.detail-right .active{

color: #0d7abe;
}
.date {
    color: #f3fdf3;
    position: absolute;
    background: #51b847;
    height: 33px;
    font-size: 14px;
    top: 39.4%;
    font-weight: 700;
    /* width: 200px; */
    z-index: 999;
    padding: 5px 10px;
    right: 0;
}
.contact-full {
    width: 100%;
    float: left;
    padding: 60px 5%;
}.contact-full h2 {
    font-size: 35px;
    /* text-align: center; */
    padding: 0;
    /* line-height: 60px; */
    font-weight: 700;
    width: 100%;
    float: left;
    margin-bottom: 10px;
}.contact-full p {
    font-size: 15px;
    /* text-align: center; */
    /* padding: 20px 356px; */
    line-height: 30px;
    width: 100%;
    float: left;
    margin-bottom: 0;
}
.contact-full h4 {
}.ct-full {
    width: 100%;
    float: left;
    background: #0d7abe;
    padding: 80px 0;
    position: relative;
    z-index: 9;
}.form-sec {
    width: 100%;
    /* float: left; */
    /* padding-left: 30px; */
    display: block;
    max-width: 700px;
    margin: auto;
}.form-sec h2 {
    font-size: 45px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    margin: 0;
}.form-sec p {
}.log_set {
    width: 100%;
    float: left;
    position: relative;
    padding: 0 0 17px;
    margin-bottom: 15px;
}.log_set label {
    width: 100%;
    float: left;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 25px;
    margin: 0 0 10px;
    text-align: left;
}.log_set input[type="text"], .log_set input[type="password"], .log_set input[type="mail"], .log_set input[type="email"], .log_set input[type="tel"], .log_set textarea, .log_set select {
    width: 100%;
    float: left;
    background: white;
    position: relative;
    height: 46px !important;
    border-bottom: 0;
    padding: 10px 6px;
    font-size: 13px;
    line-height: 30px;
    color: #000;
    font-weight: 600;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    outline: none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}.ct-full button {
    background: #fff;
    border: 0;
    font-weight: 700;
    display: block;
    cursor: pointer;
    margin: auto;
    font-size: 15px;
    color: #0d7abe;
    padding: 14px 60px;
    border-radius: 30px;
}.ct-full button:hover {
    background: #51b847;
    color: #fff;
}
.panel7{

width: 100%;

float: left;

background: #51b847;

padding: 130px 0;
}
.panel7 h1{

font-size: 55px;

color: #fff;

line-height: 65px;

font-weight: 700;

margin-top: 20px;

padding-left: 30px;
}
.panel7 p{

font-size: 15px;

line-height: 30px;

color: #fff;

font-weight: 400;

padding-top: 10px;

padding-left: 30px;
}
.panel7 a{

float: left;

display: inline-block;

font-weight: 600;

margin-left: 30px;

font-size: 15px;

height: 45px;

color: #51b847;

margin-top: 10px;

text-align: left;

border-radius: 5px;

width: 143px;

padding: 12px 15px;

background-color: #fff;

transition: all ease-in-out 0.5s;

-o-transition: all ease-in-out 0.5s;

-ms-transition: all ease-in-out 0.5s;

-moz-transition: all ease-in-out 0.5s;

-webkit-transition: all ease-in-out;
}
.panel7 a img{

width: 17px !important;

height: 20px;

float: right;

margin-top: 1px;
}
.panel7 a:hover{

text-decoration: none;

color: #fff;

background: #0d7abe;
}
.panel7 a:hover img{

filter: brightness(111);
}
.p7-img{
    
width: 100%;
}
.panel6{

width: 100%;

float: left;

padding: 130px 0;
}
.panel6 h6{

position: relative;

font-size: 22px;

color: #0d7abe;

font-weight: 700;

/* text-align: center; */

margin: auto;

display: table;
}
.panel6 h6:after{position: absolute;content: '';width: 33px;height: 2px;background: #0d7abe;right: -50px;top: 12px;}
.panel6 h6:before{/* position: absolute; *//* content: ''; */position: absolute;content: '';width: 33px;height: 2px;background: #0d7abe;left: -50px;top: 12px;}
.p6-box{

}
.testi-img{

/*height: 75px;*/

width: 75px !important;

/*border-radius: 100%;*/

float: left;

margin-right: 20px;
}
.p6-box h5{


}
.p6-box h4{


}
.p6-box p{

}
.quote-img{
    
width: 45px !important;
    
position: absolute;
    
right: 40px;
}
.panel6 h1{

text-align: center;

font-size: 55px;

color: #191919;

font-weight: 700;

margin-bottom: 50px;

margin-top: 30px;
}
.p6-box{

width: 100%;

float: left;

background: #fff;

padding: 30px 40px;

position: relative;

box-shadow: -8px 3px 21px 3px rgba(0,0,0,0.05);

margin-top: 20px;

margin-bottom: 10px;
}
.p6-img{

}
.p6-box h4{

font-size: 20px;

font-weight: 700;

color: #000;

padding-top: 15px;
}
.p6-box h5{

color: #9fa1a3;

font-size: 15px;

font-weight: 300;
}
.p6-box p{

width: 100%;

float: left;

font-size: 15px;

line-height: 30px;

margin-top: 20px;

color: #000;

border-top: 2px solid #e8e9f0;

padding-top: 15px;
}
.p6-img2{

}
.panel5{

width: 100%;

float: left;

background: #0d7abe;

padding: 70px 0;
}
.panel5 img{

float: left;

margin-right: 10px;
}
.panel5 h6{}
.panel5 h5{
    
}
.panel4{

width: 100%;

float: left;

padding: 90px 0;
}
.panel4 h1{
        text-align: center;
        font-size: 55px;
        color: #191919;
        font-weight: 700;
        margin-bottom: 20px;
        margin-top: 30px;
}
.panel4 h6{position: relative;font-size: 22px;color: #0d7abe;font-weight: 700;/* text-align: center; */margin: auto;display: table;}
.panel4 h6:after{
    position: absolute;
    content: '';
    width: 33px;
    height: 3px;
    background: #0f7bbf;
    left: -45px;
    top: 12px;
}
.p4-box{width: 100%;float: left;margin-top: 50px;}
.p4-box img{width: 63px !important;float: left;}
.p4-box h5{
    font-size: 20px;
    font-weight: 700;
    color: #000;
    padding-left: 10px;
    float: left;
    padding-top: 6px;
    line-height: 25px;
}

.panel3{

width: 100%;

float: left;

background: url('../images/cta.png');

text-align: center;

padding: 65px 0;
}
.panel3 h1{

font-size: 50px;

color: #fff;

font-weight: 700;

margin-bottom: 30px;
}
.panel3 a{

display: inline-block;

font-weight: 600;

font-size: 15px;

height: 45px;

color: #51b847;

margin-top: 10px;

text-align: left;

border-radius: 5px;

width: 143px;

padding: 11px 15px;

background-color: #fff;

transition: all ease-in-out 0.5s;

-o-transition: all ease-in-out 0.5s;

-ms-transition: all ease-in-out 0.5s;

-moz-transition: all ease-in-out 0.5s;

-webkit-transition: all ease-in-out;
}
.panel3 a img{

width: 17px !important;

height: 20px;

float: right;

margin-top: 1px;

/* filter: invert(1); */
}
.panel3 a:hover{

text-decoration: none;

color: #fff;

background: #0d7abe;
}
.panel3 a:hover img{
    
filter: brightness(111);
}
.p2-text{
    
width: 100%;
    
float: left;
    
padding: 30px;
}
.panel2{

width: 100%;

float: left;

padding: 100px 0;
}
.panel2 h6{position: relative;font-size: 22px;color: #191919;font-weight: 700;/* text-align: center; */margin: auto;display: table;}
.panel2 h6:after{position: absolute;content: '';position: absolute;content: '';width: 33px;height: 2px;background: #000;right: -50px;top: 12px;}
.panel2 h6:before{position: absolute;content: '';width: 33px;height: 2px;background: #000;left: -50px;top: 12px;}
.panel2-box{

width: 100%;

float: left;

border: 1px solid #eaeaea;

position: relative;
}
.panel2-box h2{

font-size: 26px;

font-weight: 700;

color: #191919;

border-bottom: 2px solid #eaeaea;

padding-bottom: 10px;

.panel2-box p{

font-size: 15px;

color: #000;

line-height: 28px;

padding-top: 10px;
}
.panel2-box a{

float: left;

display: inline-block;

font-weight: 600;

font-size: 15px;

height: 45px;

color: white;

margin-top: 10px;

text-align: left;

border-radius: 5px;

width: 143px;

padding: 11px 15px;

background-color: #0d7abe;

transition: all ease-in-out 0.5s;

-o-transition: all ease-in-out 0.5s;

-ms-transition: all ease-in-out 0.5s;

-moz-transition: all ease-in-out 0.5s;

-webkit-transition: all ease-in-out;
}
.panel2-box a img{

width: 17px !important;

height: 20px;

float: right;

margin-top: 1px;

filter: invert(1);
}
.panel2-box a:hover{

text-decoration: none;

background: #51b847;

color: #fff;
}
.panel2-box a:hover img{

}
.p2-img{

height: 235px;

object-fit: cover;

border-radius: 0;

width: 100%;
}
.panel2 h1{

text-align: center;

font-size: 55px;

color: #191919;

font-weight: 700;

margin-bottom: 50px;

margin-top: 30px;
}
.panel1{

background: #0d7abe;

width: 100%;

float: left;

margin-top: 70px;
}

.panel1 h6{position: relative;font-size: 22px;color: #fff;padding-left: 45px;font-weight: 700;}
.panel1 h6:after{position: absolute;content: '';width: 30px;height: 2px;background: #fff;left: 0;top: 12px;}
.panel1 h1{

font-size: 55px;

color: #fff;

font-weight: 700;

margin-top: 20px;

margin-bottom: 20px;

.panel1 p{

color: #fff;

font-size: 18px;

line-height: 30px;

width: 88%;

margin-bottom: 30px;
}
.panel1 a{

float: left;

display: inline-block;

font-weight: 600;

font-size: 15px;

height: 45px;

color: #0d7abe;

text-align: left;

border-radius: 5px;

width: 143px;

padding: 11px 15px;

background-color: #fff;

transition: all ease-in-out 0.5s;

-o-transition: all ease-in-out 0.5s;

-ms-transition: all ease-in-out 0.5s;

-moz-transition: all ease-in-out 0.5s;

-webkit-transition: all ease-in-out 0.5s;
}
.panel1 a img{

width: 17px !important;

height: 20px;

float: right;

margin-top: 3px;
}
.panel1 a:hover{

text-decoration: none;

background: #51b847;

color: #fff;
}
.panel1 a:hover img{

filter: brightness(111);
}
.p1-img{

width: 85%;

float: right;

max-height: 570px;
.panel1-text{

width: 100%;

float: left;

padding: 85px 0 85px 18%;
}
.ban-butn1 img{

width: 17px !important;

height: 20px;

float: right;

filter: invert(1);

margin-top: 2px;
}
.hd-top:after{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 55px solid transparent;
    border-right: 55px solid transparent;
    border-bottom: 105px solid #0d7abe;
    left: -34px;
    bottom: 0;
}

.hd-top{background: #0d7abe;width: 58%;float: right;position: relative;z-index: 999;height: 54px;padding: 15px 7%;}
.hd-top h6{
    
font-size: 14px;
    
color: #fff;
    
float: right;
    
margin: 0 0 0 20px;
}


.contact-icon {
    font-size: 24px;
    padding: 32px;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 1;
}.contact-icon img {
    width: 90px;
    height: 90px;
    /* filter: invert(1); */
    border: 2px solid #000;
    padding: 21px;
    border-radius: 100%;
    transition: all ease-in-out .5s;
}.contact-icon img:hover {
    transform: rotate(360deg);
    background: #31d6cc;
    filter: invert(1);
}.contact3-info .widgettitle {
    color: #ce2933;
}
.widgettitle, .smalltitle, .comment-reply-title {
    color: var(--headings-color);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.margin-b16 {
    margin-bottom: 16px;
}.contact3-info p {
    color: #000;
}.contact-sec2 {
    width: 100%;
    float: left;
    background-color: #0f3860;
    padding: 70px 0 30px;
    position: relative;
    z-index: 99;
    background-image: url(../images/footer-pattern.png);
}.contact-sec2 h1 {
    font-size: 50px;
    text-align: center;
    font-weight: 300;
    color: #fff;
}.contact-sec2 p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    padding: 10px 225px 50px;
    text-align: center;
    color: #fff;
}.contact-sec2 form {
    max-width: 900px;
    display: block;
    margin: auto;
}.contact-sec2 input {
    width: 100%;
    float: left;
    border: 0;
    background: #fff;
    padding: 12px;
    margin-bottom: 30px;
    font-size: 15px;
    border-radius: 5px;
}.contact-sec2 textarea {
    width: 100%;
    float: left;
    border: 0;
    background: #fff;
    padding: 11px;
    margin-bottom: 30px;
    font-size: 15px;
    border-radius: 5px;
}.contact-sec2 button {
    font-size: 16px;
    color: #fff;
    background: #ce2933;
    border: 0;
    padding: 13px 87px;
    border-radius: 30px;
    cursor: pointer;
    /* float: right; */
    margin: 60px auto;
    display: block;
}.contact-sec2 button:hover {
    background: #fff;
    color: #000;
}
.innerban h1{margin: 0;font-size: 45px;color: #fff;font-weight: 700;padding-top: 15px;}
.business-full{

width: 100%;

float: left;

padding: 70px 0;
}
.business-box{

width: 100%;

float: left;

border-radius: 40px;

/* border: 1px solid #cccccc4f; */

transition: all ease-in-out .5s;

-webkit-transition: all ease-in-out .5s;

-moz-transition: all ease-in-out .5s;

background-color: #0f3860;

background-image: url('../images/specialities-pattern-blue.png');

background-position: 100% 69%;

background-size: 30%;

background-repeat: no-repeat;

padding-bottom: 20px;

height: 500px;

margin-top: 30px;
}
.business-box h6{

font-size: 20px;

padding: 25px 20px 0;

color: #fff;

font-weight: 400;

margin: 0;
}
.business-box p{

font-size: 14px;

padding: 10px 20px 20px;

font-weight: 400;

color: #fff;

line-height: 26px;

margin: 0;
}
.business-box:hover{

background-color: #ce2933;

background-image: url(../images/specialities-pattern-blue.png);
}
.business-box:hover h6{

color: #fff;
}
.business-box:hover p
{

color: #fff;
}
.business-box img{
    
width: 100%;
    
height: 300px;
    
object-fit: cover;
    
border-top-left-radius: 30px;
    
border-top-right-radius: 20px;
}
.innerban img{
    
position: absolute;
    
right: 0;
    
top: -2px;
    
width: 241px;
}
.innerban{
    width: 100%;
    float: left;
    background-color: #0f3860;
    padding: 50px 0;
    margin-top: 140px;
    background-image: url('../images/cta.png');
    background-size: cover;
    position: relative;
}
.logo {
    float: left;

    width: 20%;
    position: relative;
    z-index: 11;
    
}.in-about {
    float: left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 70px;
    /* background-image: url(../images/specialities-pattern-white.png); */
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 330px;
    /* z-index: 999; */
    position: relative;
}.in-about-img {
    float: left;
    width: 100%;
}.in-about-img img {
    float: left;
    width: 100%;
    margin-top: 30px;
}.in-about-txt {
    float: left;
    width: 100%;
    padding-top: 20px;
}.in-about-txt h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 52px;
    color: black;
    }
    .in-about-txt p {
    float: left;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: black;
    line-height: 26px;
    margin-top: 13px;
    margin-bottom: 0px;
}.vision:hover h2{
        color:#fff;
}
.vision:hover p{
    color:#fff;
}
.vision:hover img{
    filter: brightness(111);
}
.vision:hover{
    background-color: #ce2933;
}
.vision {
    float: left;
    width: 100%;
    /* border: 1px solid #d3d3d3; */
    padding: 50px 40px;
    border-radius: 20px;
    background-image: url('../images/specialities-pattern-white.png');
    background-size: 100px;
    background-repeat: no-repeat;
    background-position: top right;
    background-color: #fff;
}.vision h2 {
    float: left;
    width: 100%;
    color: black;
    font-weight: 500;
    font-size: 30px;
    text-align: left;
}.vision p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    color: black;
    line-height: 25px;
    margin-bottom: 0px;
    text-align: left;
}.all-vision {
    float: left;
    width: 100%;
    padding-top: 75px;
    padding-bottom: 80px;
    background: #0f3860;
    background-image: url('../images/man-bg-pattern.png');
}
.s-pattern{
    
height: 138px;
    
position: absolute;
    
right: 0;
    
top: 0;
}


.logo a img{
    float: left;
    /* width: 170px; */
    margin-top: 27px;
    width: 320px;
}
.header2 {
    float: right;
    width: 80%;
    /* margin-top: 25px; */
}
.p1-carousel{
    
}
.slide {
    float: left;
    width: 100%;
    top: 0px;
    background: #fff;
    background-size: cover;
    /* background-position: center; */
    position: relative;
    z-index: 1;
    /* min-height: 850px; */
    /* max-height: 1000px; */
    /* margin-bottom: 80px; */
}
.slide .item {
    height: 690px;
    width: 100%;
    float: left;
    position: relative;
    background: #fff;
    /* background: url(../images/slider_bg.png); */
    /* background-size: cover; */
    background-position: center;
    /* max-height: 800px; */
}
.slider-ban .owl-dots button span {
    background: #d2a055;
    width: 5px;
    height: 22px;
    float: right;
    border-radius: 6px;
    margin-right: 8px;
    margin-bottom: 4px;
    border: 1px solid #d2a055;
    margin-top: 0px;
    position: relative;
    z-index: 999;
}
.slider-ban .owl-dot.active span {
    background: #f5b763;
    border-color: #f5b763;
    height: 49px;
}
.slide .item .cover {
    padding: 0px 0px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
    background: rgb(255 255 255 / 60%);
    display: flex;
    align-items: center;
}

.slide .item .cover .header-content {
    padding: 15px 0px;
    position: absolute;
    width: auto;
    text-align: left;
    width: 100%;
    /* margin-left: 65px; */
    padding-top: 125px;
    /* overflow: hidden; */
    background: #fff;
    z-index: 9999;
}

.slide .item .slide-image {
    height: 512px;
    float: right;
    margin-left: 0px;
    position: absolute;
    /* width: auto !important; */
    /* z-index: 9999; */
    width: 606px;
    right: 7%;
    object-fit: cover;
    top: 25%;
    /* max-height: 1000px; */
    /* border-top-left-radius: 5px; */
    /* border-bottom-left-radius: 7px; */
    z-index: 9999;
}
.header-content h6 {
    float: left;
    margin-top: 20px;
    font-size: 55px;
    color: #191919;
    font-weight: 700;
    text-align: left;
    /* padding-left: 30px; */
    line-height: 65px;
    width: 100%;
}
.header-content p {
    line-height: initial;
    float: left;
    margin-top: 15px;
    font-size: 15px;
    color: #000;
    font-weight: 400;
    line-height: 28px;
    width: 42%;
    text-align: left;
    margin-bottom: 30px;
    /* padding-left: 34px; */
}

.ban-butn1{
    float: left;
    /* width: 100%; */
    /* text-align: right; */
}
.ban-butn1 a{
    float: none;
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    height: 45px;
    color: white;
    text-align: left;
    border-radius: 5px;
    width: 143px;
    padding: 11px 15px;
    background-color: #0d7abe;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.ban-butn1 a:hover{
    text-decoration: none;
    color: #fff;
    background-color: #51b847;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.ban-butn2{
    float: left;
    /* width: 100%; */
    text-align: left;
    margin-left: 15px;
}
.ban-butn2 a{
    float: left;
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    width: 161px;
    height: 50px;
    text-align: center;
    color: #000;
    padding: 13px 30px;
    border-radius: 30px;
    border: 1px solid #000;
    background-color: transparent;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.ban-butn2 a:hover{
    text-decoration: none;
    color: #fff;
    background-color: #000;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.body1{
    float: left;
    width: 100%;
    background-image: url(../images/body1.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 100px;
}
.b1-bx1{
    float: left;
    width: 100%;
    background-image: url(../images/b1-bx1.png);
    padding: 32px 0px 31px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    border-right: 4px solid #0D7BBE;
    margin-top: -60px;
    position: relative;
    z-index: 111;
}
.b1-bx1 h2{
    float: left;
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: white;
}
.b1-bx1 p{
    float: left;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin-bottom: 0px;
    margin-top: 4px;
}
.b1-bx2{
    float: left;
    width: 100%;
    background-image: url(../images/b1-bx2.png);
    padding: 32px 0px 31px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    border-right: 4px solid #0D7BBE;
    margin-top: -60px;
    position: relative;
    z-index: 111;
}
.b1-bx2 h2{
    float: left;
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: white;
}
.b1-bx2 p{
    float: left;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin-bottom: 0px;
    margin-top: 4px;
}.b1-bx3{
    float: left;
    width: 100%;
    background-image: url(../images/b1-bx3.png);
    padding: 32px 0px 31px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    border-right: 4px solid #0D7BBE;
    margin-top: -60px;
    position: relative;
    z-index: 111;
}
.b1-bx3 h2{
    float: left;
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: white;
}
.b1-bx3 p{
    float: left;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin-bottom: 0px;
    margin-top: 4px;
    line-height: 25px;
}

.b1-img{
    float: left;
    width: 100%;
    margin-top: 100px;
}
.b1-img img{
    float: left;
    max-width: 100%;
}
.b1-hed{
    float: left;
    width: 100%;
    margin-top: 100px;
}
.b1-hed h2{
    float: left;
    width: 100%;
    font-size: 49px;
    font-weight: 600;
    color: black;
    line-height: 59px;
}
.b1-hed p{
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: black;
    line-height: 25px;
    margin-top: 13px;
    margin-bottom: 39px;
}

.b1-quality{
    float: left;
    width: 100%;
    border-left: 2px solid #1BB177;
    padding-left: 15px;
    margin-bottom: 30px;
}
.b1-quality h2{
    float: left;
    width: 100%;
    font-size: 19px;
    font-weight: 500;
    color: black;
}
.b1-quality p{
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: black;
    margin-bottom: 5px;
}

.b1-hse{
    float: left;
    width: 100%;
    border-left: 2px solid #0D7BBE;
    padding-left: 15px;
}
.b1-hse h2{
    float: left;
    width: 100%;
    font-size: 19px;
    font-weight: 500;
    color: black;
}
.b1-hse p{
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: black;
    margin-bottom: 5px;
}
.body2{
    float: left;
    width: 100%;
    background-image: url(../images/body2.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 110px;
    padding-bottom: 107px;
}

.header_menu_area {
  float: right;
  position: relative;
  text-align: center;
  width: 100%;
}
.header_menu_area > .mob_nav {
    display: none;
}

.header_menu_area > ul {
    width: 75%;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0px;
    padding-left: 0px;
    /* padding-right: 20px; */
    float: right;
}
.header_menu_area > ul > li {
      width: auto;
      display: inline-block;
      vertical-align: middle;
}
     
.header_menu_area > ul > li > a:hover {
       
          /* background: linear-gradient(to right, rgb(0, 34, 93), rgb(20, 70, 158)); */
          color: #0d7abe!important;
}
         

.body2 h3{
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 25px;
    color: white;
    margin-bottom: 0px;
}
.body2 h2{
    float: left;
    width: 100%;
    font-weight: 700;
    font-size: 75px;
    color: white;
    margin-bottom: 28px;
}

.b2-count{
    float: left;
    width: 100%;
}
.count .item1:after {
    content: '+';
    position: absolute;
}
.count .item1 {
    color: white;
    font-size: 43px;
    font-weight: 700;
    float: left;
    line-height: 1;
    text-align: left;
    position: relative;
    width: 100%;
 }
.count .item p {
    color:#C4E3F6 !important;
    font-size: 25px !important;
    font-weight: 400 !important;
    margin-top: 8px;
     width: 100%;
    margin-bottom: 0px;
    float: left !important;
}
.body3{
    float: left;
    width: 100%;
    background-color: #E0EAF1;
    padding-top: 80px;
    padding-bottom: 80px;
}
.b3-hed{
    float: left;
    width: 100%;
    margin-bottom: 40px;
}
.b3-hed h2{
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 49px;
    color: black;
}
.b3-hed p{
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: black;
    line-height: 25px;
    margin-top: 17px;

}

.b3-bx{
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 50px;
    

}

.b3-bx img{
    float: left;
    width: 100%;
}
.b3-bx-hed{
    float: left;
    width: 100%;
    padding-top: 24px;
    padding-left: 25px;
    padding-right: 29px;
    padding-bottom: 27px;
    background-color: white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.b3-bx-hed h2{
    float: left;
    width: 100%;
    font-size: 19px;
    font-weight: 500;
    color: black;
    text-align: left;
    margin-bottom: 0px;
}
.b3-bx-hed p{
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: black;
    text-align: left;
    margin-top: 13px;
    margin-bottom: 0px;
}


.b3-bx-shade{
    position: absolute;
    background-color: #0000008f;
    width: 100%;
    height: 0;
    opacity: 0%;
    transition: all ease-in-out .5s;
}
.b3-bx-shade-1{
    position: absolute;
    background-color: #0000008f;
    width: 100%;
    height: 0;
    opacity: 0%;
    transition: all ease-in-out .5s;
}
.b3-bx-shade-butn{
    float: left;
    width: 100%;
    text-align: center;
}
.b3-bx-shade-butn a{
    float: none;
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    color: white;
    padding: 10px 30px;
    border: 2px solid #0D7BBE;
    margin-top: 86px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;

}
.b3-bx-shade-butn a:hover{
    text-decoration: none;
    color: white;
    border: 2px solid #1BB177;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.b3-bx:hover .b3-bx-shade{
    height: 55%;
    opacity: 100%;
}
.b3-bx:hover .b3-bx-shade-1{
    height: 51%;
    opacity: 100%;
}

.b3-butn{
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.b3-butn a{
    float: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 30px;
    color: white;
    background-color: #0D7BBE;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.b3-butn a:hover{
    text-decoration: none;
    color: white;
    background-color: #1BB177;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}


.body4{
    float: left;
    width: 100%;
    background-image: url(../images/body4.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 98px;
    padding-bottom: 98px;
}
.b4-hed{
    float: left;
    width: 100%;
}
.b4-hed h2{
    float: left;
    width: 100%;
    font-size: 49px;
    font-weight: 600;
    line-height: 59px;
    color: white;
    margin-bottom: 0px;
}
.b4-hed p{
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: white;
    margin-top: 20px;
}
.b4-butn{
    float: left;
    width: 100%;
    margin-top: 8px;

}
.b4-butn a{
    float: left;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 30px;
    color: white;
    
    border: 2px solid white;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.b4-butn a:hover{
    text-decoration: none;
    color: white;
    border: 2px solid #1BB177;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.body5{
    float: left;
    width: 100%;
    background-image: url(../images/body5.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 79px;
    padding-bottom: 80px;
}
.b5-hed{
    float: left;
    width: 100%;
    margin-bottom: 22px;
}
.b5-hed h2{
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 35px;
    color: black;
    text-align: center;
}
.b5-hed p{
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    color: black;
    text-align: center;
    margin-top: 15px;
}

.b5-bx{
    float: left;
    width: 100%;
    background-color: #E0EAF1;
    border-radius: 15px;
    padding: 28px 0px 28px 25px;
    margin-bottom: 27px;
}
.b5-bx h3{
    float: left;
    width: 100%;
    font-weight: 700;
    font-size: 30px;
    color: black;
}
.b5-bx h2{
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 27px;
    color: black;
    margin-top: 15px;
}
.b5-bx p{
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 17px;
    color: #444444;
    margin-bottom: 0px;
    margin-top: 15px;
}

.b5-img{
    float: left;
    width: 100%;
}
.b5-img img{
    float: left;
    max-width: 100%;
}

.b5-bx5{
    float: left;
    width: 100%;
    background-color: #E0EAF1;
    border-radius: 15px;
    padding: 28px 0px 28px 25px;
    margin-top: -252px;
}
.b5-bx5 h3{
    float: left;
    width: 100%;
    font-weight: 700;
    font-size: 30px;
    color: black;
}
.b5-bx5 h2{
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 27px;
    color: black;
    margin-top: 15px;
}
.b5-bx5 p{
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 17px;
    color: #444444;
    margin-bottom: 0px;
    margin-top: 15px;
}

.footer{
    float: left;
    width: 100%;
    /* background-image: url(../images/footer-pattern.png); */
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center;
    background-color: #fff;
}.ft-logo p{
    
color: #6c6c6c;
    
margin-top: 20px;
    
width: 89%;
    
float: left;
    
font-size: 15px;
    
font-weight: 400;
    
line-height: 28px;
}
.social{
    width:100%;float:left;
}
.social img{
    width:30px;
    margin:10px 5px 0 0;
}
.social img:hover{filter:invert(1);}
.ft-logo{
    float: left;
    width: 100%;
    margin-top: 0;
}
.ft-logo img{
    float: left;
    max-width: 100%;
    width: 283px;
}
.quick{
    float: left;
    width: 100%;
    padding-left: 10px;
}
.quick h2{
    float: left;
    width: 100%;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    /* margin-top: 40px; */
}
.quick a{
    float: left;
    width: 100%;
    color: #575757;
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.quick a:hover{
    text-decoration: none;
    color: #0d7abe;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.location{
    float: left;
    width: 100%;
    padding-left: 29px;
}
.location h2{
    float: left;
    width: 100%;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    /* margin-top: 40px; */
}
.location p{
    float: left;
    width: 100%;
    color: white;
    font-size: 14px;
    font-weight: 400;
    line-height: 31px;
    margin-bottom: 0px;
}
.mail{
    float: left;
    width: 100%;
    /* padding-left: 70px; */
}
.mail p img{
    margin-right:10px;
}
.mail p{
    font-size: 15px;
    color: #575757;
    font-weight: 400;
    line-height: 30px;
    padding-left: 0;
}
.mail h2{
    float: left;
    width: 100%;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    /* margin-top: 40px; */
}
.mail a{
    float: left;
    width: auto;
    color: white;
    font-size: 14px;
    font-weight: 400;
    margin: 0 10px 0 0;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.mail a:hover{
    text-decoration: none;
    color: #1BB177;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    margin-top: -10px;
}
.phone{
    float: left;
    width: 100%;
    padding-left: 70px;
}
.phone h2{
    float: left;
    width: 100%;
    color: white;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 17px;
}
.phone a{
    float: left;
    width: 100%;
    color: white;
    font-size: 16px;
    font-weight: 400;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    
    
}
.phone a:hover{
    text-decoration: none;
    color: #1BB177;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.copy{
    float: left;
    width: 100%;
    padding-top: 30px;
    /* padding-bottom: 20px; */
    border-top: 1px solid #ababab;
    margin-top: 20px;
    padding-bottom: 30px;
}
.copy1{
    float: left;
    width: 100%;
}
.copy1 p{
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: #818181;
    margin-bottom: 0px;
}
.copy2{
    float: left;
    width: 100%;
}
.copy2 p{
    float: left;
    text-align: right;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: #818181;
    margin-bottom: 0px;
}
.copy2 a{
    color: #818181;
    font-weight: 700;
}
.copy2 a:hover{
    text-decoration: none;
    color: #d1363f;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.inner-ban {
    float: left;
    width: 100%;
   background-image: url(../images/in-ban.png);
   background-size: cover;
   background-repeat: no-repeat;
    height: auto;
    padding: 90px 0px 50px 0px;
}
.ab-hed {
    float: left;
    width: 100%;
}
.ab-hed h2 {
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 50px;
    color: white;
    text-align: center;
    padding: 70px 0px 0px 0px;
}
.about-body{
    float: left;
    width: 100%;
    padding: 60px 0px;
}

.in-ab-hed{
    float: left;
    width: 100%;
    margin-bottom: 70px;
}
.in-ab-hed h2{
    width: 100%;
    font-weight: 600;
    font-size: 49px;
    color: black;
    text-align: left;
    line-height: 59px;
   
}
.in-ab-hed p{
    width: 100%;
    color: black;
    line-height: 25px;
    margin-bottom: 0px;
    font-size: 16px;
    text-align: justify;
    font-weight: 400;
}

.in-ab-hed img{
    float: right;
    max-width: 100%;
    margin-left: 20px;
    margin-top: 15px;
}

.in-vision{
    float: left;
    width: 100%;
    padding: 35px 30px;
    border: 1px solid #0D7BBE;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.in-vision:hover{
    border: 1px solid #1BB177;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.in-vision h2{
    float: left;
    width: 100%;
    font-size: 30px;
    font-weight: 500;
    color: black;
    text-align: center;
    margin-bottom: 18px;
}
.in-vision p{
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: black;
    text-align: center;
    margin-bottom: 0px;
}

.in-ser{
    float: left;
    width: 100%;
    background-color: #E0EAF1;
    padding-top: 70px;
    padding-bottom: 70px;
}
.in-ser-hed{
    float: left;
    width: 100%;
    margin-bottom: 30px;

}
.in-ser-hed h2{
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 49px;
    color: black;
}
.in-ser-hed p{
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: black;
    line-height: 25px;
    margin-top: 17px;

}

.in-ser-bx{
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}
.in-ser-bx img {
    float: left;
    width: 100%;
}
.in-ser-shade {
    position: absolute;
    background-color: #0000008f;
    width: 100%;
    height: 0;
    opacity: 0%;
    transition: all ease-in-out .5s;
}
.in-ser-shade-1 {
    position: absolute;
    background-color: #0000008f;
    width: 100%;
    height: 0;
    opacity: 0%;
    transition: all ease-in-out .5s;
}
.in-ser-shade-butn {
    float: left;
    width: 100%;
    text-align: center;
}
.in-ser-shade-butn a {
    float: none;
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    color: white;
    padding: 10px 30px;
    border: 2px solid #0D7BBE;
    margin-top: 96px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.in-ser-bx-hed {
    float: left;
    width: 100%;
    padding: 24px 25px 27px 25px;
   
    background-color: white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.in-ser-bx-hed h2 {
    float: left;
    width: 100%;
    font-size: 19px;
    font-weight: 500;
    color: black;
    text-align: left;
    margin-bottom: 0px;
}
.in-ser-bx-hed p {
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: black;
    text-align: left;
    margin-top: 13px;
    margin-bottom: 0px;
}

.in-ser-bx:hover .in-ser-shade {
    height: 61%;
    opacity: 100%;
}
.in-ser-bx:hover .in-ser-shade-1 {
    height: 58%;
    opacity: 100%;
}
.in-ser-shade-butn a:hover {
    text-decoration: none;
    color: white;
    border: 2px solid #1BB177;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.career-full{
    float: left;
    width: 100%;
    padding-bottom: 75px;
    padding-top: 70px;
    background: #acd9c733;
}
.cr-wd{
  margin-right:auto;
  margin-left:auto;
  width:770px;
}
.cr-wd h2{
    float: left;
    width: 100%;
    text-align: center;
   
    font-weight: 600;
    color: black;
    font-size: 49px;
    line-height: 59px; 
    margin-bottom: 15px;
}
.cr-wd p{
    float: left;
    width: 100%;
    text-align: center;
  
    font-weight: 400;
    color: black;
    font-size: 16px;
    line-height: 25px; 
    margin-bottom: 50px;
}

.hidden-input-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.contact-label {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    
}

.mct_form {
    border-bottom: 1px solid #b0aaaa;
    color: #272626;
    display: block;
    font-size: 13px;
    /* text-transform: uppercase; */
    height: 50px;
    margin-bottom: 25px !important;
    padding: 0 20px;
    outline: none;
    background: #ffffff;
    width: 100%;
    padding-left: 0px;
    border: none;
    transition: all 500ms ease;
    border: solid 1px rgba(46, 67, 110, 0.22);
    margin-top: 3px;
    width: 100%;
    float: left;
    padding: 15px;
    margin-top: 17px;
    border-radius: 5px;
}

.mct_form:hover {
    border-bottom: 1px solid #72593c;
}

.contact-snd{
    float:left;
   background: #0D7BBE;
    text-align: center;
    color: white;
    
    font-size: 16px;
    font-weight: 400;
    
    padding: 10px 30px;
    
    border: none;
    cursor: pointer;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.contact-snd:hover{
  text-decoration:none;
 background: #1BB177;
   transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}



.abt-panel {
    width: 100%;
    float: left;
    padding-top: 10px;
    padding-bottom: 70px;
    
}
.abt-panel h1 {
    /* float: left; */
    /* width: 100%; */
    color: #101010;
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 21px;
    text-align: left;
    margin: 0px;
    margin-bottom: 10px;
    margin-top: 50px;
    
}


.contact-tag {
    float: left;
    width: 100%;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.93);
    text-align: left;
    /* margin-top: 15px; */
    line-height: 27px;
    margin-bottom: 30px;
    
    font-weight: 400;
    
}



.error_msg {
    display: none;
    width: auto;
    float: left;
    padding: 5px 7px;
    font-size: 13px;
    line-height: 15px;
    background: #E31B23;
    color: #fff;
    font-weight: 300;
    text-align: left;
    position: absolute;
    bottom: -8px;
    left: 0;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    z-index: 10;
}


.info-tag {
    line-height: 27px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.93);
    margin-top: 9px;
    font-weight: 400;
   
}

.contact-snd2 {
    text-transform: uppercase;
    /* border-radius: 100px; */
    font-size: 16px;
    font-weight: 400;
   
    margin-bottom: 20px;
    font-style: normal;
    font-stretch: normal;
    border: none;
    line-height: normal;
    /* letter-spacing: 1.8px; */
    /*width: 81%;*/
    text-align: center;
    padding: 10px 30px;
    border: none;
    background: #1BB177;
    color: #fff;
    float: right;
    margin-top: 11px;
    /* border: solid 2px #a3238e; */
    cursor: pointer;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.contact-snd2:hover {
   text-decoration: none;
    background: #0D7BBE;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.adr-section {
    float: left;
    margin-top: 50px;
    width: 100%;
    margin-bottom: 15px;
    /* padding-left: 30px; */
}

.adr-section h1 {
    float: left;
    width: 100%;
    color: #000;
    font-size: 30px;
    font-weight: 400;
    margin-top: 0px;
    margin-top: 4px;
    border-bottom: solid 1px #e6e6e6;
    padding-bottom: 16px;
}

.india{
float: left;
}

.india p {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: black;
    line-height: 25px;
    margin-top: 11px;
    margin-bottom: 0px;
    
}
.india p a{
    color: black;
    
    font-size: 16px;
    font-weight: 400;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;

}
.india p a:hover{
    color: #0D7BBE;
    text-decoration: none;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;

}


.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999999999999999999999;
    top: 0;
    left: 0;
  background: #E0EAF1;

    overflow-x: hidden;
    transition: 0.5s;
    padding: 60px 0px;
}
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 50px;
    z-index: 9999;
    color: #000000;
    font-weight: 300;
}
.overlay a:hover {
    color: #f1f1f1;
    text-decoration: none;
}
.lrn-frm{
 width: 50%;
 float: right;
 padding-right: 50px;
}

.frm-white{
  color:black !important;
  font-size:16px !important;
}

.frm-border{
  background: white!important;
  color:black !important;
  border: solid 1px rgb(255 255 255 / 59%);
  
}

.lrn-frm h2{
    float: left;
    width: 100%;
    text-align: left;
    font-size: 28px;
    text-transform:uppercase;
    font-weight: 500;
    color: black;
    padding-bottom: 11px;
}

.lrn-frm p{
  float:left;
  width:100%;
  font-size: 16px;
  color: #181818;
  line-height: 24px;
  text-align: left;
  font-weight: normal;
  padding-bottom: 12px;
}

.lrn-adrs{
    float: left;
    width: 50%;
    padding-right: 70px;
}
.irn-adrs-hed{
    float: left;
    width: 100%;
    margin-bottom: 55px;
    text-align: right;
}
.irn-adrs-hed h2{
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 28px;
}
.irn-adrs-hed p{
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
}


.in-ser-pge{
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
.in-ser-pge h2{
    width: 100%;
    font-weight: 600;
    font-size: 49px;
    color: black;
    text-align: left;
    line-height: 59px;
   
}
.in-ser-pge p{
    width: 100%;
    color: black;
    line-height: 25px;
    margin-bottom: 0px;
    font-size: 16px;
    text-align: justify;
    font-weight: 400;
}

.in-ser-pge img{
    float: right;
    max-width: 100%;
    margin-left: 20px;
    margin-top: 15px;
}














.hamburgermenu{
    float: right;
    margin-top: 40px;
}
.hamburgermenu img{
    width: 30px;
    cursor: pointer;
    /* margin-left: 25px; */
    position: relative;
    z-index: 1111;
    margin-top: 34px;
} 




.activeli{
    color: #0d7abe!important;
    /* font-weight: 500!important; */
}

.enquiry {
    float: right;
    margin-right: 0px;
    border-bottom-right-radius: 20px;
}

.enquiry a {
    float: right;
    color: white!important;
   background-color: #1BB177;
    margin-bottom: 0px;
    font-size: 16px!important;
    font-weight: 400!important;
    
    
    margin-left: 37px;
    padding: 10px 28px !important;
    position: relative;
    z-index: 9999;
    
    border-top-left-radius: 10px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.enquiry a:hover {
    text-decoration: none;
        
   background-color: #0D7BBE;
transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    
}
.quick-top {
    cursor: pointer;
}

.close_form {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 424px;
    top: 0;
    background: #0c7dc4 url(../images/close.svg) no-repeat center center;
    background-size: 20px 20px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.close_form:focus {
    outline: none;
}

.request-sec {
    position: absolute;
    right: 0;
    width: 100%;
    top: -450px;
    right: 0;
    height: auto;
    background: transparent;
    z-index: 9999999;
}

.form-inner {
    padding-top: 35px;
}
.req-form {
    width: 427px;
    float: right;
    height: auto;
    margin-right: 0;
    opacity: 1;
   background-color: #010000;
    
    top: 0;
    position: relative;
    right: 0;
    /* height: 100%; */
    z-index: 99;
}
.form-inner-2{
    float: left;
    padding: 20px 30px;
    
    background: black;
}
.field_area {
    width: 100%;
    float: left;
    position: relative;
    margin: 0 0 20px;
}

.field_area label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.field_area input[type=email], .field_area input[type=number], .field_area input[type=text], .field_area textarea {
    width: 100%;
    float: left;
    /* position: relative; */
    font-size: 15px;
    color: white;
    line-height: 20px;
    margin: 0;
    padding: 7px 10px;
    background: 0 0;
    border: none;
    border-bottom: solid 1px rgb(207 207 207);
    transition: all ease-in-out .5s;
    -o-transition: all ease-in-out .5s;
    -ms-transition: all ease-in-out .5s;
    -moz-transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}

.hidden-input-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.quick-send {
    background-color: #252b42;
    width: 100%;
    border: 0;
    font-size: 15px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    color: #fff;
    padding: 10px;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
    -moz-transition: all ease-in-out .5s;
}

.quick-send:hover {
    color: #fff;
    /* opacity: .7; */
    background: #000;
}

.quick-send:focus {
    outline: none;
}



.field_area input[type=email], .field_area input[type=number], .field_area input[type=text], .field_area textarea:focus {

outline: none;}

.header_menu_area {
  float: right;
  position: relative;
  text-align: center;
  width: 100%;
}
.header_menu_area > .mob_nav {
    display: none;
}

.header_menu_area > ul {
    width: 75%;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0px;
    padding-left: 0px;
    /* padding-right: 20px; */
    float: right;
}
.header_menu_area > ul > li {
      width: auto;
      display: inline-block;
      vertical-align: middle;
}
     
.header_menu_area > ul > li > a:hover {
          color: color: black;
          /* background: linear-gradient(to right, rgb(0, 34, 93), rgb(20, 70, 158)); */
          color: #0d7abe!important;
}
         


.header_menu_area > ul > li > a:hover::after {
          /* height: 100%; */
}
  .active-class{
 
  color: black; !important;
 
  /* border-bottom: solid 4px #0f703a; */
}

.img-fluid {
    max-width:0%;
    height: auto;
}


@media (max-width: 1024px) {


.menu li:hover>ul {
    width: 100% !important;
    visibility: visible;
    opacity: 1;
    position: unset;
    transform: initial;
    /* height: 122px; */
    z-index: 99999;
    margin-top: 60px;
}
.menu ul:after{
    bottom: 62%;
}

.header_menu_area > ul > li > a {
    width: 100%!important;
}

.sub-menu {
    margin-top: 122px!important;
}
.menu ul li a {

    text-align: center !important;
}

.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    /position: unset;/
    transform: initial;
    /* height: 122px; */
    z-index: 99999;
    margin-top: 36px;
}

.menu ul {
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0 !important;
    width: 100%;
    transform: initial;
}
.ham-nav{
    display: none;
}

.header_menu a svg{
    display: none;
}

.sub-menu-1{
    position:unset !important;
    width:100% !important;
}



.header_menu_area {
    position: inherit;
    float: right;
}

.header_menu_area > .mob_nav {
    display: block;
    float: right;
    position: relative;
    z-index: 99999;
    width: 35px;
    height: 28px;
    margin: -118px 42px;
    cursor: pointer;
    transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.header_menu_area > .mob_nav > div {
    background: #ce2933;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    width: 100%;
}

.header_menu_area > .mob_nav > div:nth-child(1) {
    top: 2px;
}

.header_menu_area > .mob_nav > div:nth-child(2), .header_menu_area > .mob_nav > div:nth-child(3) {
    top: 13px;
    width: 65%;
}

.header_menu_area > .mob_nav > div:nth-child(4) {
    top: 23px;
}

.mob_nav.open > div:nth-child(1), .mob_nav.open > div:nth-child(4) {
    left: 50%;
    top: 18px;
    width: 0%;
}

.mob_nav.open > div:nth-child(2) {
    background: #ce2933;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.mob_nav.open > div:nth-child(3) {
    background: #ce2933;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.header_menu_area > ul {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0px;
    visibility: hidden;
    opacity: 0;
    z-index: 9 !important;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    top: 100px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 20px;
    /* transform: rotate(-15deg) translate3d(0, 0, 0); */
    padding-bottom: 50px;
    background: #ffffff;
}


.header_menu_area > ul > li > a {
    padding: 15px 18px 15px 18px !important;
    text-align: center;
    color: #fff;
    width: 100%;
    line-height: 30px;
    margin-left: 0px;
}
.header_menu_area > ul > li {
      width: 100%;
}


.header_menu_area ul.view {
    visibility: visible;
    opacity: 1;
    z-index: 100;
    z-index: 1111 !important;
    /* transform: rotate(0deg) translate3d(0, 0, 0); */
    top: 100px;
}

.header_user_area {
    right: calc(5% + 70px);
}
}

.active-menu{
  background: linear-gradient(to right, rgb(0, 34, 93), rgb(20, 70, 158));
  color: #ffffff !important;
  /* border-bottom: solid 4px #0f703a; */
}


.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
}


.header_menu_area > ul > li > a {
    margin-top: 0px;
    /* margin-bottom: -13px;*/
    width: auto;
    float: right;
    /* margin: -2px 0px; */
    position: relative;
    font-size: 15px;
    /* font-family: 'Montserrat', sans-serif !important; */
    font-weight: 400;
    color: #292929;
    margin: 30px 25px;
    border-bottom: 0px solid transparent;
    letter-spacing: 0px !important;
    padding: 0px;
    z-index: 1;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    /* text-transform: uppercase; */
    text-decoration: none;
}
/*.header_menu_area > ul > li > a:hover {
    
    color: #f11002; !important;
    



    
}
*/

.menu ul li a:hover, .menu ul li:hover>a {
    background: #0d7abe !important;
    color: #fff;
    text-decoration: none;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    /* text-transform: uppercase; */
    padding-left: 20px;
}
.menu ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    top: 67px;
    padding: 0;
    width: 211px;
    position: absolute;
    right: 20px;
    left: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 99;
    transform: translate(0,20px);
    transition: all .2s ease-out;
}


.menu li:first-child {
    margin-left: 0;
}
.menu li:first-child {
    margin-left: 0;
}
.menu ul li {
    display: block;
    float: none;
    background: 0 0;
    margin: 0;
    padding: 0;
    width: 100%;
}

.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
    transition: all .5s ease-out;
}

.menu ul li a {
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    padding: 18px 10px;
    display: block;
    color: #000000;
    background: #ffffff;
    text-align: left;
    border-bottom: solid 1px rgb(99 96 96 / 10%);
}
.menu-new {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    top: 13px !important;
    padding: 0;
    width: 211px;
    position: absolute;
    background: #fff;
    z-index: 99;
    margin-top: 0 !important;
    border-radius: 20px;
    left: inherit !important;
    right: -217px !important;
    transform: translate(0,20px);
    transition: all .2s ease-out;
}

.menu-new li a{
  background: #F6F6F6!important;
}



.menu-new:after {
    top: 25% !important;
    left: -2% !important;
    left: inherit !important;
    border: solid red;
    content: " ";
    height: 0;
    width: 0;
    right: 208px;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255,255,255,0);
    border-right-color: red !important;
    border-width: 6px;
    margin-left: -6px !important;
    transform: rotate(
319deg);
    display: none;
}






@media (max-width: 1024px){
    .header_menu_area > ul > li > a{
        margin: 8px 0px 0px 0px;
    }
    .hamburgermenu{
        display: none;
    }
}

@media (max-width: 575px){
    .contact-sec2 p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    padding: 10px 15px 50px;}
    .business-full h1 {
    font-size: 36px;
    color: #000;
    margin: 0;
    text-align: center;
}.business-full p{
    text-align: center;
}.business-box {
    text-align: center;}
    .innerban img {
    position: absolute;
    right: 0;
    top: inherit;
    width: 81px;
    bottom: 0;
}.innerban h1 {
    margin: 0;
    font-size: 36px;
    color: #fff;
    font-weight: 400;
    text-align: center;
}.in-about-txt h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 34px;
    color: black;
    text-align: center;
}
.img-abt{
    display: none;
}.all-vision{
    padding-bottom: 40px;
}
.vision{
    margin-bottom: 30px;
}
.in-about-txt p {
    float: left;
    text-align: center;}
    .social{
            width: 100%;
    float: left;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    }.header {
    float: left;
    width: 100%;
    background-color: white;
    height: 0px;
    padding: 0 4%;
}
    .ft-logo p {
    color: #fff;
    margin-top: 20px;
    width: 100%;
    text-align: center;}
    
    .sub-plus:after{
        display: none;
    }
    .quick a {
    float: left;
    width: 33%;}.location h2 {

    margin-top: 20px;
}.mail h2 {

    margin-top: 10px;
} 
    .p3-img2 {
    width: 100%;
    border-radius: 30px;
    /* border-bottom-right-radius: 30px; */
    height: 255px;
    object-fit: cover;
    float: right;
}
    .p22-img{
        display: none;
    }.slide .item .cover .header-content {
    padding: 15px 0px;
    position: absolute;
    width: auto;
    text-align: left;
    width: 100%;
    /* margin-left: 65px; */
    padding: 0px;
    /* overflow: hidden; */
    background: transparent;
    z-index: 9999;
       margin-top: 10px;
}.slide {

height: 570px;
 
}.slide .item {
    height: 570px;}.slide .item .slide-image {
    height: 680px;}
    .header-content p {
    line-height: initial;
    float: left;
    margin-top: 5px;
    font-size: 14px;
    color: #000;
    font-weight: 200;
    line-height: 27px;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    /* padding-left: 34px; */
}
    .logo a img{
        width: 255px;
    }
    .header_menu_area > .mob_nav{
        margin: 0px 0px;
    }
    
    .header-content h6{
        font-size: 38px;
        line-height: 47px;
        text-align: center;
        margin: 0;
    }
    .header-content p br{
        display: none;
    }
    .ban-butn1{
        text-align: center;
        margin-bottom: 17px;
        width: 50%;
    }
    .ban-butn2{
        text-align: center;
        width: 45%;
        float: right;
    }
    
    .b1-hed h2{
        font-size: 40px;
        line-height: 45px;
        text-align: center;
    }
    .body2{
        padding-top: 75px;
        padding-bottom: 60px;
        background-position: center;
    }
    .body2 h3{
        font-size: 21px;
        text-align: center;
    }
    .body2 h2{
        font-size: 55px;
        text-align: center;
    }
    .count .item1{
        text-align: center;
        width: 100%;
    }
    .count .item p{
        text-align: center;
        font-size: 21px!important;
    }
    .b2-count{
        margin-bottom: 18px;
    }
    .b3-hed h2{
        font-size: 40px;
    }
    .body4{
        padding-top: 75px;
        padding-bottom: 75px;
    }
    .b4-hed h2{
        font-size: 40px;
        line-height: 45px;
        text-align: center;
    }
    .b4-hed p br{
        display: none;
    }
    .b4-hed p{
        text-align: center;
    }
    .b4-butn{
        text-align: center;
    }
    .b4-butn a{
        float: none;
        display: inline-block;
    }
    .body5{
        padding-top: 65px;
        padding-bottom: 70px;
    }
    .b5-bx{
        text-align: center;
        padding: 28px 25px 28px 25px;
    }
    .b5-bx5{
        margin-top: 0px;
        padding: 28px 25px 28px 25px;
        text-align: center;
    }
    .b5-img{
        margin-bottom: 27px;
    }
.in-ab-hed h2{
    text-align: center;
    font-size: 40px;
    line-height: 45px;
}
.in-ser-hed h2{
    font-size: 40px;
    line-height: 45px;
}
.cr-wd h2{
    font-size: 40px;
    line-height: 45px;
}
.in-ser-pge h2{
    font-size: 40px;
    line-height: 45px;
    text-align: center;
}
.b3-bx-hed{
    padding-right: 25px;
}


}



@media (max-width: 455px){
    .b1-quality p br{
        display: none;
    }
    .b1-hse p br{
        display: none;
    }
}
@media (max-width: 421px){
    .body2 h2{
        font-size: 38px;
    }
    .body2 h3{
        font-size: 19px;
        margin-bottom: 10px;
    }
    .count .item1{
        font-size: 38px;
    }
}





@media (max-width: 767px){
    .body1{
        padding-bottom: 75px;
    }
    .b1-img{
        margin-top: 60px;
    }
.b1-img img {
    float: none;
   
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.b1-hed{
    margin-top: 38px;
}
.b1-hed p{
    text-align: center;
    margin-top: 10px;

}
.body3{
    padding-top: 70px;
    padding-bottom: 70px;
}
.b3-hed p br{
    display: none;
}
.b3-hed p{
    margin-top: 8px;
}
.b3-hed{
    margin-bottom: 30px;
}
.b5-hed p br{
        display: none;
    }
.b5-hed p{
margin-top: 8px;
}
.ft-logo{
    margin-top: 0px;
    }
    .ft-logo img{
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .quick{
        padding-left: 0px;
        text-align: center;
        margin-top: 20px;
    }
    .location{
        padding-left: 0px;
        text-align: center;
        margin-top: 20px;
    }
    .mail{
        padding-left: 0px;
        text-align: center;
        margin-top: 20px;
    }
    .phone{
        padding-left: 0px;
        text-align: center;
        margin-top: 20px;
    }
    .footer{
        padding-top: 65px;
        padding-bottom: 65px;
    }
    .copy1 p{
        text-align: center;
    }
    .copy2 p{
        margin-top: 6px;
        text-align: center;
    }
    .in-ab-hed img{
        margin-left: auto;
        margin-right: auto;
        display: block;
        float: none;
        margin-bottom: 20px;
    }
    .in-vision{
        padding: 35px 35px;
        margin-bottom: 30px;
    }
    .in-ab-hed{
        margin-bottom: 65px;
    }
    .in-ser-hed p br{
        display: none;
    }
    .in-ser-hed p{
        margin-top: 8px;
    }
.in-ser{
    padding-bottom: 65px;
    padding-top: 65px;
}
.cr-wd{
    padding-left: 15px;
    padding-right: 15px;
}
.career-full{
    padding-bottom: 70px;
    padding-top: 65px;
}
.adr-section h1{
    text-align: center;
}
.india p{
    text-align: center;
}
.india{
    width: 100%;
}
.abt-panel h1{
    text-align: center;
}
.contact-tag{
    text-align: center;
}
.contact-snd2{
    margin-left: auto;
    margin-right: auto;
    display: block;
    float: none;
}
.info-tag{
    text-align: center;
    margin-bottom: 7px;
}
.abt-panel{
    padding-bottom: 60px;
}
.in-ser-pge img{
    margin-left: auto;
        margin-right: auto;
        display: block;
        float: none;
        margin-bottom: 20px;
}
.ab-hed h2{
    font-size: 45px;
}
.b1-bx1{
        margin-top: -77px;
    }
    .b1-bx2{
        margin-top: 20px;
    }
    .b1-bx3{
        margin-top: 20px;
    }
    
    
}

@media (min-width: 576px) and (max-width: 767px){
    .contact-sec2 p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    padding: 10px 25px 50px;}
.innerban h1 {
    margin: 0;
    font-size: 30px;
}.innerban img {
    position: absolute;
    right: 0;
    top: -2px;
    width: 214px;
}
    .img-abt{
        display: none;
    }.in-about-txt h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 46px;}.vision{
        margin-bottom: 30px;
    }.all-vision{
        padding-bottom: 40px;
    }
    .quick h2{
        margin-top: 0;
    }
    .p3-img2 {
 
    height: 260px;}.p3-img {
 
    height: 260px;}
  
    .p2-img {
    width: 210px;
    border-radius: 30px;
    float: left;
    height: auto;
    margin-right: 40px;
}.p22-img {
    width: 130px;
    height: 78px;
    position: absolute;
    bottom: -20px;
    left: -92px;
}
    .ban-butn2 a {
    float: left;
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    width: 117px;
    height: 41px;
    text-align: center;
    color: #000;
    padding: 10px 0px;
    border-radius: 30px;
    border: 1px solid #000;
    background-color: transparent;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}.ban-butn1 a {
    float: none;
    display: inline-block;
    /* font-weight: lighter; */
    font-size: 14px;
    height: 42px;
    color: white;
    text-align: center;
    border-radius: 30px;
    width: 120px;
    padding: 10px 8px;
    background-color: #ce2933;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}.ban-butn2 {
    float: left;
    width: 46%;
    text-align: left;
    margin-left: 15px;
}.ban-butn1 {
    float: left;
    width: 47%;
    /* text-align: right; */
}
    .header-content p{
        width: 74% !important;
    }
    .logo a img{
        width: 250px;
    }
    .header_menu_area > .mob_nav{
        margin: 0px 22px;
    }
    .header-content h6 br{
        display: none;
    }
    .header-content h6{
        font-size: 53px;
        line-height: 67px;
    }
    .body2{
        background-position-x: 86%;
    }
    .b1-hed h2{
        font-size: 45px;
        line-height: 55px;
        text-align: center;
    }
    .body2 h3{
        margin-bottom: 9px;
    }
    .body2 h2{
        font-size: 58px;
    }
    .count .item1{
        font-size: 40px;
    }
    .count .item p{
        font-size: 23px!important;
    }
    .body2{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .body4{
        background-position-x: 12%;
        padding-top: 80px;
        padding-bottom: 85px;
    }
    .b4-hed{
        padding-left: 68px;
    }
    .b4-hed h2{
        font-size: 45px;
        line-height: 55px;
    }
    .b4-butn{
        padding-left: 68px;
    }
    .b5-bx5{
        margin-top: 0px;
    }
    .b5-img{
        margin-bottom: 27px;
    }
    .in-ab-hed h2{
        font-size: 45px;
        line-height: 55px;
        text-align: center;
    }
    .in-ser-hed h2{
        font-size: 45px;
        line-height: 55px;
    }
    .cr-wd h2 br{
        display: none;
    }
    .cr-wd h2{
        font-size: 45px;
        line-height: 55px;
    }
    .in-ser-pge h2{
        font-size: 45px;
        line-height: 55px;
        text-align: center;
    }
}


@media (min-width: 768px) and (max-width: 991px){
    .contact-sec2 p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    padding: 10px 25px 50px;
    text-align: center;}
    .img-abt{
        display: none;
    }
    .business-box img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-top-right-radius: 20px;
}
    .p3-text {
    position: relative;
    width: 100%;
    float: left;
    background: #ce2933;
    padding: 21px 25px 32px 22px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}.p3-text2 {
    position: relative;
    width: 100%;
    float: left;
    background: #0f3860;
    padding: 17px 5px 35px 39px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}.p5-text {
    width: 100%;
    float: left;
    padding: 20px 60px 60px 5px;
}
.header-content p{
    width: 54%;
}.ban-butn1 {
    float: left;
    width: 40%;
    /* text-align: right; */
}.ban-butn1 a {
    float: left;
    display: inline-block;
    /* font-weight: lighter; */
    font-size: 14px;
    height: 40px;
    color: white;
    text-align: center;
    border-radius: 30px;
    width: 131px;
    padding: 10px 10px;
    background-color: #ce2933;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}.ban-butn2 {
    float: left;
    width: 47%;
    text-align: left;
    margin-left: 15px;
}.ban-butn2 a {
    float: left;
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    width: 131px;
    height: 40px;
    text-align: center;
    color: #000;
    padding: 9px 8px;
    border-radius: 30px;
    border: 1px solid #000;
    background-color: transparent;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.b1-bx1 p br{
    display: none;
}
.b1-bx1{
    padding: 32px 10px 31px 10px;
    margin-top: -75px;
}
.b1-bx2 p br{
    display: none;
}
.b1-bx2{
    padding: 32px 10px 31px 10px;
    margin-top: -75px;
}
.b1-bx3 p br{
    display: none;
}
.b1-bx3{
    padding: 32px 10px 31px 10px;
    margin-top: -75px;
}
.b1-img img {
    float: none;
   
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.b1-img{
    margin-top: 70px;
}
.b1-hed h2{
    font-size: 50px;
    text-align: center;
}
.b1-hed{
    margin-top: 30px;
}
.b1-hed p{
    margin-top: 10px;
    text-align: center;
}
.b1-quality{
    width: 50%;
}
.b1-hse{
    width: 50%;
}
.b1-quality p br{
    display: none;
}
.b1-hse p br{
display: none;
}
.body1{
padding-bottom: 55px;
background-position: center;
}
.body2{
    background-position: right;
}
.b3-hed p br{
    display: none;
}
.b3-bx-hed{
    padding-left: 17px;
    padding-right: 17px;
}
.b5-hed p br{
    display: none;
}
.b5-bx5{
    margin-top: 0px;
}
.hide{
    display: none;
}
.body5{
    padding-top: 75px;
    padding-bottom: 70px;
}
.ft-logo{
    margin-top: 0px;
}
.location{
    margin-top: 22px;
    padding-left: 0px;

}
.quick{

    padding-left: 0px;
}
.mail{
margin-top: 22px;
    padding-left: 0px;  
}
.phone{
    padding-left: 0px;  
}
.in-ab-hed h2{
    font-size: 45px;
    line-height: 56px;
}
.in-ab-hed img{
    max-width: 392px;
}
.in-vision{
    margin-bottom: 30px;
}
.in-ab-hed{
    margin-bottom: 60px;
}
.in-ser-hed p br{
    display: none;
}
.in-ser-bx-hed{
    padding: 24px 17px 27px 17px;
}
.in-ser-pge h2{
    font-size: 45px;
    line-height: 56px;
}
.in-ser-pge img{
    max-width: 395px;
}
.footer{
    background-position: right;
}
.header_menu_area > .mob_nav{
    margin: 0px 22px;
}

}












@media (min-width: 992px) and (max-width: 1024px){
    .innerban img {
    position: absolute;
    right: 0;
    top: 0px;
    width: 238px;
}
    .in-about-txt h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 36px;
    color: black;
}.p5-text {
    width: 100%;
    float: left;
    padding: 26px 15px 33px 5px;
}
    .p2-img {
    width: 450px;
    border-radius: 30px;
    float: left;
    height: 430px;
    margin-right: 80px;
}.p3-text {
    position: relative;
    width: 100%;
    float: left;
    background: #ce2933;
    padding: 42px 65px 36px 22px;}.p3-text2 {
    position: relative;
    width: 100%;
    float: left;
    background: #0f3860;
    padding: 37px 5px 42px 65px;}
.header_menu_area > .mob_nav{
    margin: 0px 22px;
}
.b3-bx-hed{
    padding-right: 13px;
    padding-left: 20px;
}
.b5-bx{
    padding: 28px 22px 28px 25px;
}
.b5-bx5{
    padding: 28px 22px 28px 25px;
    margin-top: -142px;
}
.footer{
    background-position-x: 38%;
}
.quick{
    padding-left: 38px;
}
.location{
    padding-left: 0px;
}
.mail{
    padding-left: 23px;
}
.phone{
    padding-left: 23px;
}
.body2{
    background-position: right;
}


}





@media (min-width: 1025px) and (max-width: 1199px){
    .in-about-txt h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 36px;
    color: black;
}
.in-about-txt h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 36px;
    color: black;
}.p3-text2 {
    position: relative;
    width: 100%;
    float: left;
 
    padding: 30px 22px 50px 65px;}
    .b5-bx{
    padding: 28px 22px 28px 25px;
}
.b5-bx5{
    padding: 28px 22px 28px 25px;
    margin-top: -142px;
}
.footer{
    background-position-x: 38%;
}
.quick{
    padding-left: 15px;
}
.location{
    padding-left: 0px;
}
.mail{
    padding-left: 22px;
}
.phone{
    padding-left: 22px;
}
.body2{
    background-position: right;
}
}




@media (max-width: 1024px){
    .enquiry{
        width: 100%;
        text-align: center;
    }
    .enquiry a{
        float: none;
        display: inline-block;
        margin-left: 0px;
    }
}

@media (max-width: 575px){
    .header_menu_area > ul{
        top: 0;
    }
    
    
}
@media (min-width: 576px) and (max-width: 767px){
    .header_menu_area > ul{
        top: 119px;
    }
}
@media (min-width: 768px) and (max-width: 1024px){
    .header_menu_area > ul{
        top: 130px;
    }
}


@media (min-width: 367px) and (max-width: 467px){
    .close_form{
        right: 324px;
    }
    .req-form{
        width: 325px;
    }
}
@media (min-width: 267px) and (max-width: 366px){
    .close_form{
        right: 260px;
    }
    .req-form{
        width: 260px;
    }
}


@media (min-width: 267px) and (max-width: 314px){
    .header-content h6 br{
        display: none;
    }
    .header-content h6{
        font-size: 42px;
        line-height: 56px;
    }
}





@media (min-width: 560px) and (max-width: 575px){
    .b3-bx:hover .b3-bx-shade{
        height: 68%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 68%;
    }
    .b3-bx-shade-butn a{
        margin-top: 135px;
    }
}

@media (min-width: 554px) and (max-width: 559px){
    .b3-bx:hover .b3-bx-shade{
        height: 68%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 68%;
    }
    .b3-bx-shade-butn a{
        margin-top: 135px;
    }
}

@media (min-width: 530px) and (max-width: 553px){
    .b3-bx:hover .b3-bx-shade{
        height: 67%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 67%;
    }
    .b3-bx-shade-butn a{
        margin-top: 132px;
    }
    
}
@media (min-width: 509px) and (max-width: 529px){
    .b3-bx:hover .b3-bx-shade{
        height: 66%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 66%;
    }
    .b3-bx-shade-butn a{
        margin-top: 125px;
    }
    
}
@media (min-width: 485px) and (max-width: 508px){
    .b3-bx:hover .b3-bx-shade{
        height: 65%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 65%;
    }
    .b3-bx-shade-butn a{
        margin-top: 117px;
    }
    
}
@media (min-width: 465px) and (max-width: 484px){
    .b3-bx:hover .b3-bx-shade{
        height: 64%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 64%;
    }
    .b3-bx-shade-butn a{
        margin-top: 113px;
    }
    
}
@media (min-width: 450px) and (max-width: 464px){
    .b3-bx:hover .b3-bx-shade{
        height: 63%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 60%;
    }
    .b3-bx-shade-butn a{
        margin-top: 108px;
    }
    
}
@media (min-width: 430px) and (max-width: 449px){
    .b3-bx:hover .b3-bx-shade{
        height: 59%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 59%;
    }
    .b3-bx-shade-butn a{
        margin-top: 100px;
    }
    
}
@media (min-width: 415px) and (max-width: 429px){
    .b3-bx:hover .b3-bx-shade{
        height: 58%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 58%;
    }
    .b3-bx-shade-butn a{
        margin-top: 98px;
    }
    
}
@media (min-width: 400px) and (max-width: 414px){
    .b3-bx:hover .b3-bx-shade{
        height: 57%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 57%;
    }
    .b3-bx-shade-butn a{
        margin-top: 98px;
    }
    
}
@media (min-width: 385px) and (max-width: 399px){
    .b3-bx:hover .b3-bx-shade{
        height: 56%;
    }
    .b3-bx:hover .b3-bx-shade{
        height: 53%;
    }
    .b3-bx-shade-butn a{
        margin-top: 95px;
    }
    
}
@media (min-width: 376px) and (max-width: 384px){
    .b3-bx:hover .b3-bx-shade{
        height: 55%;
    }
    .b3-bx:hover .b3-bx-shade{
        height: 52%;
    }
    .b3-bx-shade-butn a{
        margin-top: 86px;
    }
    
}
@media (min-width: 365px) and (max-width: 375px){
    .b3-bx:hover .b3-bx-shade{
        height: 54%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 51%;
    }
    .b3-bx-shade-butn a{
        margin-top: 82px;
    }
    
}
@media (min-width: 350px) and (max-width: 364px){
    .b3-bx:hover .b3-bx-shade{
        height: 50%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 50%;
    }
    .b3-bx-shade-butn a{
        margin-top: 82px;
    }
    
}
@media (min-width: 335px) and (max-width: 349px){
    .b3-bx:hover .b3-bx-shade{
        height: 49%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 49%;
    }
    .b3-bx-shade-butn a{
        margin-top: 72px;
    }
    
}
@media (min-width: 325px) and (max-width: 334px){
    .b3-bx:hover .b3-bx-shade{
        height: 48%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 48%;
    }
    .b3-bx-shade-butn a{
        margin-top: 68px;
    }
    
}
@media (min-width: 314px) and (max-width: 324px){
    .b3-bx:hover .b3-bx-shade{
        height: 44%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 47%;
    }
    .b3-bx-shade-butn a{
        margin-top: 65px;
    }
    
}
@media (min-width: 300px) and (max-width: 313px){
    .b3-bx:hover .b3-bx-shade{
        height: 43%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 43%;
    }
    .b3-bx-shade-butn a{
        margin-top: 59px;
    }
    
}







@media (min-width: 560px) and (max-width: 575px){
    .in-ser-bx:hover .in-ser-shade{
        height: 66%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 66%;
    }
    .in-ser-shade-butn a{
        margin-top: 117px;
    }
}
@media (min-width: 554px) and (max-width: 559px){
    .in-ser-bx:hover .in-ser-shade{
        height: 65%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 65%;
    }
    .in-ser-shade-butn a{
        margin-top: 117px;
    }
}
@media (min-width: 533px) and (max-width: 553px){
    .in-ser-bx:hover .in-ser-shade{
        height: 65%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 65%;
    }
    .in-ser-shade-butn a{
        margin-top: 113px;
    }
    
}
@media (min-width: 516px) and (max-width: 532px){
    .in-ser-bx:hover .in-ser-shade{
        height: 64%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 64%;
    }
    .in-ser-shade-butn a{
        margin-top: 113px;
    }
    
}
@media (min-width: 495px) and (max-width: 515px){
    .in-ser-bx:hover .in-ser-shade{
        height: 63%;
    }
        .in-ser-bx:hover .in-ser-shade-1{
        height: 63%;
    }
    .in-ser-shade-butn a{
        margin-top: 108px;
    }
    
}
@media (min-width: 475px) and (max-width: 494px){
    .in-ser-bx:hover .in-ser-shade{
        height: 62%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 62%;
    }
    .in-ser-shade-butn a{
        margin-top: 103px;
    }
    
}
@media (min-width: 455px) and (max-width: 474px){
    .in-ser-bx:hover .in-ser-shade{
        height: 61%;
    }
    .in-ser-shade-butn a{
        margin-top: 98px;
    }
    
}
@media (min-width: 435px) and (max-width: 454px){
    .in-ser-bx:hover .in-ser-shade{
        height: 60%;
    }
        .in-ser-bx:hover .in-ser-shade-1{
        height: 57%;
    }
    .in-ser-shade-butn a{
        margin-top: 93px;
    }
    
}
@media (min-width: 415px) and (max-width: 434px){
    .in-ser-bx:hover .in-ser-shade{
        height: 56%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 56%;
    }
    .in-ser-shade-butn a{
        margin-top: 88px;
    }
    
}
@media (min-width: 400px) and (max-width: 414px){
    .in-ser-bx:hover .in-ser-shade{
        height: 54%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 54%;
    }
    .in-ser-shade-butn a{
        margin-top: 83px;
    }
    
}
@media (min-width: 390px) and (max-width: 399px){
    .in-ser-bx:hover .in-ser-shade{
        height: 53%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 53%;
    }
    .in-ser-shade-butn a{
        margin-top: 79px;
    }
    
}
@media (min-width: 376px) and (max-width: 389px){
    .in-ser-bx:hover .in-ser-shade{
        height: 53%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 52%;
    }
    .in-ser-shade-butn a{
        margin-top: 75px;
    }
    
}
@media (min-width: 370px) and (max-width: 375px){
    .in-ser-bx:hover .in-ser-shade{
        height: 52%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 49%;
    }
    .in-ser-shade-butn a{
        margin-top: 75px;
    }
    
}
@media (min-width: 355px) and (max-width: 369px){
    .in-ser-bx:hover .in-ser-shade{
        height: 48%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 48%;
    }
    .in-ser-shade-butn a{
        margin-top: 71px;
    }
    
}
@media (min-width: 340px) and (max-width: 354px){
    .in-ser-bx:hover .in-ser-shade{
        height: 47%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 47%;
    }
    .in-ser-shade-butn a{
        margin-top: 67px;
    }
    
}
@media (min-width: 325px) and (max-width: 339px){
    .in-ser-bx:hover .in-ser-shade{
        height: 46%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 46%;
    }
    .in-ser-shade-butn a{
        margin-top: 63px;
    }
    
}
@media (min-width: 320px) and (max-width: 324px){
    .in-ser-bx:hover .in-ser-shade{
        height: 42%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 45%;
    }
    .in-ser-shade-butn a{
        margin-top: 59px;
    }
    
}
@media (min-width: 310px) and (max-width: 319px){
    .in-ser-bx:hover .in-ser-shade{
        height: 42%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 44%;
    }
    .in-ser-shade-butn a{
        margin-top: 59px;
    }
    
}
@media (min-width: 280px) and (max-width: 309px){
    .in-ser-bx:hover .in-ser-shade{
        height: 41%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 41%;
    }
    .in-ser-shade-butn a{
        margin-top: 56px;
    }
    
}





@media (min-width: 576px) and (max-width: 767px){

.b3-bx-hed{
    padding-left: 20px;
    padding-right: 20px;
}
/*.b3-bx-hed{*/
/*  height: 230px;*/
/*}*/
.b3-bx:hover .b3-bx-shade{
    height: 39%;
}
.b3-bx:hover .b3-bx-shade-1{
    height: 37%;
}
.b3-bx-shade-butn a{
    margin-top: 51px;
}
.in-ser-bx:hover .in-ser-shade{
    height: 65%;

}
.in-ser-bx:hover .in-ser-shade-1{
    height: 65%;

}
.in-ser-shade-butn a{
    margin-top: 117px;
}


}




@media (min-width: 768px) and (max-width: 991px){


.b3-bx:hover .b3-bx-shade{
    height: 53%;
}
.b3-bx:hover .b3-bx-shade-1{
    height: 50%;
}
.b3-bx-shade-butn a{
    margin-top: 76px;
}
.in-ser-bx:hover .in-ser-shade{
    height: 53%;
}
.in-ser-bx:hover .in-ser-shade-1{
    height: 47%;
}
.in-ser-shade-butn a{
    margin-top: 68px;
}
}



@media (min-width: 992px) and (max-width: 1024px){
    .b3-bx:hover .b3-bx-shade{
    height: 47%;
}
.b3-bx:hover .b3-bx-shade-1{
    height: 47%;
}
.b3-bx-shade-butn a{
    margin-top: 69px;
}
.in-ser-bx:hover .in-ser-shade{
    height: 54%;
}
.in-ser-bx:hover .in-ser-shade-1{
    height: 53%;
}
.in-ser-shade-butn a{
    margin-top: 77px;
}

}


@media (min-width: 1025px) and (max-width: 1199px){
    .b3-bx-hed{
    padding-left: 20px;
    padding-right: 20px;
}
.b3-bx-hed{
    height: 242px;
}
    .b3-bx:hover .b3-bx-shade{
    height: 43%;
}
.b3-bx:hover .b3-bx-shade-1{
    height: 43%;
}
.b3-bx-shade-butn a{
    margin-top: 64px;
}
.in-ser-bx:hover .in-ser-shade{
    height: 51%;
}
.in-ser-bx:hover .in-ser-shade-1{
    height: 51%;
}
.in-ser-shade-butn a{
    margin-top: 77px;
}
.in-ser-bx-hed{
    height: 200px;
}

}



@media (min-width: 1440px) and (max-width: 2000px){
    .form-inner-2{
        padding: 20px 30px 62px 30px;
    }
}



.nav-pd {
    text-align: left;
    padding: 0px 0px;
    transform: rotate(15deg);
}

.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
    border-radius: 20px;
}
.top-radius
{
          border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.bottom-radius{

          border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.hvr-sub:hover {
    background-color: #0d7abe !important;
    text-decoration: none !important;
    color: white !important;
    padding-left: 20px;
}
.p5-text{
        width: 100%;
        float: left;
        padding: 45px 60px 60px 5px;
}.p5-carousel .owl-dots .active span{
    background: #000;
}
.p5-carousel .owl-dots span{

width: 30px;

float: left;

height: 5px;

background: #990009;

margin: 0 5px;

border-radius: 30px;

opacity: 0.7;
}
.hd-address img {
    float: left;
    width: 95px;
    height: 95px;
    margin-right: 20px;
    margin-top: -10px;
    margin-bottom: 12px;
}.hd-address h2 {
    font-size: 32px;
    font-weight: 600;
    text-align: left;
    color: white;
}.hd-address h6 {
    font-size: 15px;
    font-weight: 200;
    margin-bottom: 50px;
    color: white;
    line-height: 25px;
}.req-form1 h2 {
    font-size: 26px;
    text-align: left;
    font-weight: 700;
    margin-top: 18px;
    color: white;
}.req-form1 p {
    font-size: 15px;
    width: 100%;
    color: white;
    line-height: 25px;
    margin-bottom: 14px;
    font-weight: 200;
    margin-top: 7px;
}
.hd-address {
    width: 100%;
    float: left;
    text-align: left;
    padding: 140px 0px;
    background: transparent;
    height: 100vh;
    margin-right: -80px;
}
.img-abt{
        position: absolute;
        width: 346px;
        left: 0;
        bottom: 0;
        z-index: 99;
}
.p5-carousel .owl-dots{float: left;width: 100%;position: relative;top: -54px;}
.sub-plus:after {
    position: absolute;
    content: '';
    right: -19px;
    background-image: url('../images/down-arrow.svg');
    top: 9px;
    font-size: 20px;
    width: 12px;
    background-repeat: no-repeat;
    height: 13px;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.menu li:hover .sub-plus::after{

transform: rotate(180deg);

top: 0;
}







/***********************menu************************/

 .icon-1, .icon-2, .icon-3 {
     position: absolute;
     left: 25%;
     top: 50%;
     width: 26px;
     border-radius: 100%;
     height: 2px;
     background-color: black;
     transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}
 .icon-1 {
     transform: translateY(-8px);
     animation-delay: 100ms;
}
 .icon-3 {
     transform: translateY(8px);
     animation-delay: 250ms;
}
 .hamburger-icon {
     position: absolute;
     height: 60px;
     width: 60px;
     top: 21%;
     left: 3%;
     z-index: 99999;
     cursor: pointer;
     border-radius: 50%;
     transition: all 0.2s ease-in-out;
     background: rgb(255 255 255);
}
 .hamburger-icon:hover {
     /* transform: scale(1.2); */
     box-shadow: 0px 0px 30px rgb(0 0 0 / 0%);
}
 .icon-1.a {
     transform: rotate(40deg);
     border-radius: 0;
}
 .icon-3.b {
     transform: rotate(-40deg);
     border-radius: 0;
}
 .icon-2.c {
     opacity: 0;
}
 .clear {
     clear: both;
}
 @keyframes slideIn {
     0% {
         width: 0%;
         opacity: 0;
    }
     100% {
         width: 50%;
         opacity: 1;
    }
}
 nav {
     background: #0288d1;
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 0%;
     z-index: 10;
     opacity: 0;
     transition: all 600ms cubic-bezier(1, 0.04, 0.3, 1.56);
     transition-delay: 100ms;
}
 nav ul {
     margin: 0;
     position: absolute;
     top: 30%;
     left: 40%;
}
 nav ul li {
     list-style: none;
     font-size: 24px;
     color: #fff;
     line-height: 2.2;
     text-transform: uppercase;
     letter-spacing: 1.7px;
}
 nav.show {
     width: 100%;
     opacity: 1;
     height: 100vh;
     /* padding: 10px; */
     z-index: 999;
     position: relative;
}
 .dark-blue {
     position: absolute;
     top: 0;
     left: 0;
     background: #ffffff00;
     height: 100%;
     width: 0%;
     transition: all 500ms cubic-bezier(0.62, 0.04, 0.3, 1.8);
     transition-delay: 50ms;
     z-index: 5;
     opacity: 1;
}
 .dark-blue.slide {
     width: 50%;
     opacity: 1;
}
 @keyframes shotup {
     0% {
         transform: translateY(300%);
         opacity: 0;
    }
     90% {
         transform: translateY(-50px);
    }
     100% {
         transform: translateY(0%);
         opacity: 1;
    }
}
 
.innerban h1{margin: 0;font-size: 45px;color: #fff;font-weight: 700;padding-top: 15px;}
.business-full{

width: 100%;

float: left;

padding: 70px 0;
}
.business-box{

width: 100%;

float: left;

border-radius: 40px;

/* border: 1px solid #cccccc4f; */

transition: all ease-in-out .5s;

-webkit-transition: all ease-in-out .5s;

-moz-transition: all ease-in-out .5s;

background-color: #0f3860;

background-image: url('../images/specialities-pattern-blue.png');

background-position: 100% 69%;

background-size: 30%;

background-repeat: no-repeat;

padding-bottom: 20px;

height: 500px;

margin-top: 30px;
}
.business-box h6{

font-size: 20px;

padding: 25px 20px 0;

color: #fff;

font-weight: 400;

margin: 0;
}
.business-box p{

font-size: 14px;

padding: 10px 20px 20px;

font-weight: 400;

color: #fff;

line-height: 26px;

margin: 0;
}
.business-box:hover{

background-color: #ce2933;

background-image: url(../images/specialities-pattern-blue.png);
}
.business-box:hover h6{

color: #fff;
}
.business-box:hover p
{

color: #fff;
}
.business-box img{
    
width: 100%;
    
height: 300px;
    
object-fit: cover;
    
border-top-left-radius: 30px;
    
border-top-right-radius: 20px;
}
.innerban img{
    
position: absolute;
    
right: 0;
    
top: -2px;
    
width: 241px;
}
.innerban{
    
width: 100%;
    
float: left;
    
background-color: #0f3860;
    
padding: 50px 0;
    
margin-top: 150px;
    
background-image: url('../images/cta.png');
    
background-size: cover;
    
position: relative;
}
.logo {
    float: left;

    width: 20%;
    position: relative;
    z-index: 11;
    
}.in-about {
    float: left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 70px;
    /* background-image: url(../images/specialities-pattern-white.png); */
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 330px;
    /* z-index: 999; */
    position: relative;
}.in-about-img {
    float: left;
    width: 100%;
}.in-about-img img {
    float: left;
    width: 100%;
    margin-top: 30px;
}.in-about-txt {
    float: left;
    width: 100%;
    padding-top: 20px;
}.in-about-txt h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 52px;
    color: black;
    }
    .in-about-txt p {
    float: left;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: black;
    line-height: 26px;
    margin-top: 13px;
    margin-bottom: 0px;
}.vision:hover h2{
        color:#fff;
}
.vision:hover p{
    color:#fff;
}
.vision:hover img{
    filter: brightness(111);
}
.vision:hover{
    background-color: #ce2933;
}
.vision {
    float: left;
    width: 100%;
    /* border: 1px solid #d3d3d3; */
    padding: 50px 40px;
    border-radius: 20px;
    background-image: url('../images/specialities-pattern-white.png');
    background-size: 100px;
    background-repeat: no-repeat;
    background-position: top right;
    background-color: #fff;
}.vision h2 {
    float: left;
    width: 100%;
    color: black;
    font-weight: 500;
    font-size: 30px;
    text-align: left;
}.vision p {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    color: black;
    line-height: 25px;
    margin-bottom: 0px;
    text-align: left;
}.all-vision {
    float: left;
    width: 100%;
    padding-top: 75px;
    padding-bottom: 80px;
    background: #0f3860;
    background-image: url('../images/man-bg-pattern.png');
}
.s-pattern{
    
height: 138px;
    
position: absolute;
    
right: 0;
    
top: 0;
}


.logo a img{
    float: left;
    /* width: 170px; */
    margin-top: 27px;
    width: 320px;
}
.header2 {
    float: right;
    width: 80%;
    /* margin-top: 25px; */
}
.p1-carousel{
    
}
.slide {
    float: left;
    width: 100%;
    top: 0px;
    background: #fff;
    background-size: cover;
    /* background-position: center; */
    position: relative;
    z-index: 1;
    /* min-height: 850px; */
    /* max-height: 1000px; */
    /* margin-bottom: 80px; */
}
.slide .item {
    height: 690px;
    width: 100%;
    float: left;
    position: relative;
    background: #fff;
    /* background: url(../images/slider_bg.png); */
    /* background-size: cover; */
    background-position: center;
    /* max-height: 800px; */
}
.slider-ban .owl-dots button span {
    background: #d2a055;
    width: 5px;
    height: 22px;
    float: right;
    border-radius: 6px;
    margin-right: 8px;
    margin-bottom: 4px;
    border: 1px solid #d2a055;
    margin-top: 0px;
    position: relative;
    z-index: 999;
}
.slider-ban .owl-dot.active span {
    background: #f5b763;
    border-color: #f5b763;
    height: 49px;
}
.slide .item .cover {
    padding: 0px 0px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
    background: rgb(255 255 255 / 60%);
    display: flex;
    align-items: center;
}

.slide .item .cover .header-content {
    padding: 15px 0px;
    position: absolute;
    width: auto;
    text-align: left;
    width: 100%;
    /* margin-left: 65px; */
    padding-top: 125px;
    /* overflow: hidden; */
    background: #fff;
    z-index: 9999;
}

.slide .item .slide-image {
    height: 512px;
    float: right;
    margin-left: 0px;
    position: absolute;
    /* width: auto !important; */
    /* z-index: 9999; */
    width: 606px;
    right: 7%;
    object-fit: cover;
    top: 25%;
    /* max-height: 1000px; */
    /* border-top-left-radius: 5px; */
    /* border-bottom-left-radius: 7px; */
    z-index: 9999;
}
.header-content h6 {
    float: left;
    margin-top: 20px;
    font-size: 55px;
    color: #191919;
    font-weight: 700;
    text-align: left;
    /* padding-left: 30px; */
    line-height: 65px;
    width: 100%;
}
.header-content p {
    line-height: initial;
    float: left;
    margin-top: 15px;
    font-size: 15px;
    color: #000;
    font-weight: 400;
    line-height: 28px;
    width: 42%;
    text-align: left;
    margin-bottom: 30px;
    /* padding-left: 34px; */
}

.ban-butn1{
    float: left;
    /* width: 100%; */
    /* text-align: right; */
}
.ban-butn1 a{
    float: none;
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    height: 45px;
    color: white;
    text-align: left;
    border-radius: 5px;
    width: 143px;
    padding: 11px 15px;
    background-color: #0d7abe;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.ban-butn1 a:hover{
    text-decoration: none;
    color: #fff;
    background-color: #51b847;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.ban-butn2{
    float: left;
    /* width: 100%; */
    text-align: left;
    margin-left: 15px;
}
.ban-butn2 a{
    float: left;
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    width: 161px;
    height: 50px;
    text-align: center;
    color: #000;
    padding: 13px 30px;
    border-radius: 30px;
    border: 1px solid #000;
    background-color: transparent;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.ban-butn2 a:hover{
    text-decoration: none;
    color: #fff;
    background-color: #000;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.body1{
    float: left;
    width: 100%;
    background-image: url(../images/body1.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 100px;
}
.b1-bx1{
    float: left;
    width: 100%;
    background-image: url(../images/b1-bx1.png);
    padding: 32px 0px 31px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    border-right: 4px solid #0D7BBE;
    margin-top: -60px;
    position: relative;
    z-index: 111;
}
.b1-bx1 h2{
    float: left;
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: white;
}
.b1-bx1 p{
    float: left;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin-bottom: 0px;
    margin-top: 4px;
}
.b1-bx2{
    float: left;
    width: 100%;
    background-image: url(../images/b1-bx2.png);
    padding: 32px 0px 31px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    border-right: 4px solid #0D7BBE;
    margin-top: -60px;
    position: relative;
    z-index: 111;
}
.b1-bx2 h2{
    float: left;
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: white;
}
.b1-bx2 p{
    float: left;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin-bottom: 0px;
    margin-top: 4px;
}.b1-bx3{
    float: left;
    width: 100%;
    background-image: url(../images/b1-bx3.png);
    padding: 32px 0px 31px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    border-right: 4px solid #0D7BBE;
    margin-top: -60px;
    position: relative;
    z-index: 111;
}
.b1-bx3 h2{
    float: left;
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    color: white;
}
.b1-bx3 p{
    float: left;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin-bottom: 0px;
    margin-top: 4px;
    line-height: 25px;
}

.b1-img{
    float: left;
    width: 100%;
    margin-top: 100px;
}
.b1-img img{
    float: left;
    max-width: 100%;
}
.b1-hed{
    float: left;
    width: 100%;
    margin-top: 100px;
}
.b1-hed h2{
    float: left;
    width: 100%;
    font-size: 49px;
    font-weight: 600;
    color: black;
    line-height: 59px;
}
.b1-hed p{
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: black;
    line-height: 25px;
    margin-top: 13px;
    margin-bottom: 39px;
}

.b1-quality{
    float: left;
    width: 100%;
    border-left: 2px solid #1BB177;
    padding-left: 15px;
    margin-bottom: 30px;
}
.b1-quality h2{
    float: left;
    width: 100%;
    font-size: 19px;
    font-weight: 500;
    color: black;
}
.b1-quality p{
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: black;
    margin-bottom: 5px;
}

.b1-hse{
    float: left;
    width: 100%;
    border-left: 2px solid #0D7BBE;
    padding-left: 15px;
}
.b1-hse h2{
    float: left;
    width: 100%;
    font-size: 19px;
    font-weight: 500;
    color: black;
}
.b1-hse p{
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: black;
    margin-bottom: 5px;
}
.body2{
    float: left;
    width: 100%;
    background-image: url(../images/body2.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 110px;
    padding-bottom: 107px;
}
.body2 h3{
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 25px;
    color: white;
    margin-bottom: 0px;
}
.body2 h2{
    float: left;
    width: 100%;
    font-weight: 700;
    font-size: 75px;
    color: white;
    margin-bottom: 28px;
}

.b2-count{
    float: left;
    width: 100%;
}
.count .item1:after {
    content: '+';
    position: absolute;
}
.count .item1 {
    color: white;
    font-size: 43px;
    font-weight: 700;
    float: left;
    line-height: 1;
    text-align: left;
    position: relative;
    width: 100%;
 }
.count .item p {
    color:#C4E3F6 !important;
    font-size: 25px !important;
    font-weight: 400 !important;
    margin-top: 8px;
     width: 100%;
    margin-bottom: 0px;
    float: left !important;
}
.body3{
    float: left;
    width: 100%;
    background-color: #E0EAF1;
    padding-top: 80px;
    padding-bottom: 80px;
}
.b3-hed{
    float: left;
    width: 100%;
    margin-bottom: 40px;
}
.b3-hed h2{
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 49px;
    color: black;
}
.b3-hed p{
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: black;
    line-height: 25px;
    margin-top: 17px;

}

.b3-bx{
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 50px;
    

}

.b3-bx img{
    float: left;
    width: 100%;
}
.b3-bx-hed{
    float: left;
    width: 100%;
    padding-top: 24px;
    padding-left: 25px;
    padding-right: 29px;
    padding-bottom: 27px;
    background-color: white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.b3-bx-hed h2{
    float: left;
    width: 100%;
    font-size: 19px;
    font-weight: 500;
    color: black;
    text-align: left;
    margin-bottom: 0px;
}
.b3-bx-hed p{
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: black;
    text-align: left;
    margin-top: 13px;
    margin-bottom: 0px;
}


.b3-bx-shade{
    position: absolute;
    background-color: #0000008f;
    width: 100%;
    height: 0;
    opacity: 0%;
    transition: all ease-in-out .5s;
}
.b3-bx-shade-1{
    position: absolute;
    background-color: #0000008f;
    width: 100%;
    height: 0;
    opacity: 0%;
    transition: all ease-in-out .5s;
}
.b3-bx-shade-butn{
    float: left;
    width: 100%;
    text-align: center;
}
.b3-bx-shade-butn a{
    float: none;
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    color: white;
    padding: 10px 30px;
    border: 2px solid #0D7BBE;
    margin-top: 86px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;

}
.b3-bx-shade-butn a:hover{
    text-decoration: none;
    color: white;
    border: 2px solid #1BB177;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.b3-bx:hover .b3-bx-shade{
    height: 55%;
    opacity: 100%;
}
.b3-bx:hover .b3-bx-shade-1{
    height: 51%;
    opacity: 100%;
}

.b3-butn{
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.b3-butn a{
    float: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 30px;
    color: white;
    background-color: #0D7BBE;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.b3-butn a:hover{
    text-decoration: none;
    color: white;
    background-color: #1BB177;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}


.body4{
    float: left;
    width: 100%;
    background-image: url(../images/body4.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 98px;
    padding-bottom: 98px;
}
.b4-hed{
    float: left;
    width: 100%;
}
.b4-hed h2{
    float: left;
    width: 100%;
    font-size: 49px;
    font-weight: 600;
    line-height: 59px;
    color: white;
    margin-bottom: 0px;
}
.b4-hed p{
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: white;
    margin-top: 20px;
}
.b4-butn{
    float: left;
    width: 100%;
    margin-top: 8px;

}
.b4-butn a{
    float: left;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 30px;
    color: white;
    
    border: 2px solid white;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.b4-butn a:hover{
    text-decoration: none;
    color: white;
    border: 2px solid #1BB177;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.body5{
    float: left;
    width: 100%;
    background-image: url(../images/body5.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 79px;
    padding-bottom: 80px;
}
.b5-hed{
    float: left;
    width: 100%;
    margin-bottom: 22px;
}
.b5-hed h2{
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 35px;
    color: black;
    text-align: center;
}
.b5-hed p{
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    color: black;
    text-align: center;
    margin-top: 15px;
}

.b5-bx{
    float: left;
    width: 100%;
    background-color: #E0EAF1;
    border-radius: 15px;
    padding: 28px 0px 28px 25px;
    margin-bottom: 27px;
}
.b5-bx h3{
    float: left;
    width: 100%;
    font-weight: 700;
    font-size: 30px;
    color: black;
}
.b5-bx h2{
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 27px;
    color: black;
    margin-top: 15px;
}
.b5-bx p{
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 17px;
    color: #444444;
    margin-bottom: 0px;
    margin-top: 15px;
}

.b5-img{
    float: left;
    width: 100%;
}
.b5-img img{
    float: left;
    max-width: 100%;
}

.b5-bx5{
    float: left;
    width: 100%;
    background-color: #E0EAF1;
    border-radius: 15px;
    padding: 28px 0px 28px 25px;
    margin-top: -252px;
}
.b5-bx5 h3{
    float: left;
    width: 100%;
    font-weight: 700;
    font-size: 30px;
    color: black;
}
.b5-bx5 h2{
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 27px;
    color: black;
    margin-top: 15px;
}
.b5-bx5 p{
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 17px;
    color: #444444;
    margin-bottom: 0px;
    margin-top: 15px;
}

.footer{
    float: left;
    width: 100%;
    /* background-image: url(../images/footer-pattern.png); */
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center;
    background-color: #fff;
}.ft-logo p{
    
color: #6c6c6c;
    
margin-top: 20px;
    
width: 89%;
    
float: left;
    
font-size: 15px;
    
font-weight: 400;
    
line-height: 28px;
}
.social{
    width:100%;float:left;
}
.social img{
    width:30px;
    margin:10px 5px 0 0;
}
.social img:hover{filter:invert(1);}
.ft-logo{
    float: left;
    width: 100%;
    margin-top: 0;
}
.ft-logo img{
    float: left;
    max-width: 100%;
    width: 283px;
}
.quick{
    float: left;
    width: 100%;
    padding-left: 10px;
}
.quick h2{
    float: left;
    width: 100%;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    /* margin-top: 40px; */
}
.quick a{
    float: left;
    width: 100%;
    color: #575757;
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 0px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.quick a:hover{
    text-decoration: none;
    color: #0d7abe;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.location{
    float: left;
    width: 100%;
    padding-left: 29px;
}
.location h2{
    float: left;
    width: 100%;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    /* margin-top: 40px; */
}
.location p{
    float: left;
    width: 100%;
    color: white;
    font-size: 14px;
    font-weight: 400;
    line-height: 31px;
    margin-bottom: 0px;
}
.mail{
    float: left;
    width: 100%;
    /* padding-left: 70px; */
}
.mail p img{
    margin-right:10px;
}
.mail p{
    font-size: 15px;
    color: #575757;
    font-weight: 400;
    line-height: 30px;
    padding-left: 0;
}
.mail h2{
    float: left;
    width: 100%;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    /* margin-top: 40px; */
}
.mail a{
    float: left;
    width: auto;
    color: white;
    font-size: 14px;
    font-weight: 400;
    margin: 0 10px 0 0;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.mail a:hover{
    text-decoration: none;
    color: #1BB177;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    margin-top: -10px;
}
.phone{
    float: left;
    width: 100%;
    padding-left: 70px;
}
.phone h2{
    float: left;
    width: 100%;
    color: white;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 17px;
}
.phone a{
    float: left;
    width: 100%;
    color: white;
    font-size: 16px;
    font-weight: 400;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    
    
}
.phone a:hover{
    text-decoration: none;
    color: #1BB177;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.copy{
    float: left;
    width: 100%;
    padding-top: 30px;
    /* padding-bottom: 20px; */
    border-top: 1px solid #ababab;
    margin-top: 20px;
    padding-bottom: 30px;
}
.copy1{
    float: left;
    width: 100%;
}
.copy1 p{
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: #818181;
    margin-bottom: 0px;
}
.copy2{
    float: left;
    width: 100%;
}
.copy2 p{
    float: left;
    text-align: right;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: #818181;
    margin-bottom: 0px;
}
.copy2 a{
    color: #818181;
    font-weight: 700;
}
.copy2 a:hover{
    text-decoration: none;
    color: #d1363f;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.inner-ban {
    float: left;
    width: 100%;
   background-image: url(../images/in-ban.png);
   background-size: cover;
   background-repeat: no-repeat;
    height: auto;
    padding: 90px 0px 50px 0px;
}
.ab-hed {
    float: left;
    width: 100%;
}
.ab-hed h2 {
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 50px;
    color: white;
    text-align: center;
    padding: 70px 0px 0px 0px;
}
.about-body{
    float: left;
    width: 100%;
    padding: 60px 0px;
}

.in-ab-hed{
    float: left;
    width: 100%;
    margin-bottom: 70px;
}
.in-ab-hed h2{
    width: 100%;
    font-weight: 600;
    font-size: 49px;
    color: black;
    text-align: left;
    line-height: 59px;
   
}
.in-ab-hed p{
    width: 100%;
    color: black;
    line-height: 25px;
    margin-bottom: 0px;
    font-size: 16px;
    text-align: justify;
    font-weight: 400;
}

.in-ab-hed img{
    float: right;
    max-width: 100%;
    margin-left: 20px;
    margin-top: 15px;
}

.in-vision{
    float: left;
    width: 100%;
    padding: 35px 30px;
    border: 1px solid #0D7BBE;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.in-vision:hover{
    border: 1px solid #1BB177;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.in-vision h2{
    float: left;
    width: 100%;
    font-size: 30px;
    font-weight: 500;
    color: black;
    text-align: center;
    margin-bottom: 18px;
}
.in-vision p{
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: black;
    text-align: center;
    margin-bottom: 0px;
}

.in-ser{
    float: left;
    width: 100%;
    background-color: #E0EAF1;
    padding-top: 70px;
    padding-bottom: 70px;
}
.in-ser-hed{
    float: left;
    width: 100%;
    margin-bottom: 30px;

}
.in-ser-hed h2{
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 49px;
    color: black;
}
.in-ser-hed p{
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: black;
    line-height: 25px;
    margin-top: 17px;

}

.in-ser-bx{
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}
.in-ser-bx img {
    float: left;
    width: 100%;
}
.in-ser-shade {
    position: absolute;
    background-color: #0000008f;
    width: 100%;
    height: 0;
    opacity: 0%;
    transition: all ease-in-out .5s;
}
.in-ser-shade-1 {
    position: absolute;
    background-color: #0000008f;
    width: 100%;
    height: 0;
    opacity: 0%;
    transition: all ease-in-out .5s;
}
.in-ser-shade-butn {
    float: left;
    width: 100%;
    text-align: center;
}
.in-ser-shade-butn a {
    float: none;
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    color: white;
    padding: 10px 30px;
    border: 2px solid #0D7BBE;
    margin-top: 96px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.in-ser-bx-hed {
    float: left;
    width: 100%;
    padding: 24px 25px 27px 25px;
   
    background-color: white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.in-ser-bx-hed h2 {
    float: left;
    width: 100%;
    font-size: 19px;
    font-weight: 500;
    color: black;
    text-align: left;
    margin-bottom: 0px;
}
.in-ser-bx-hed p {
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: black;
    text-align: left;
    margin-top: 13px;
    margin-bottom: 0px;
}

.in-ser-bx:hover .in-ser-shade {
    height: 61%;
    opacity: 100%;
}
.in-ser-bx:hover .in-ser-shade-1 {
    height: 58%;
    opacity: 100%;
}
.in-ser-shade-butn a:hover {
    text-decoration: none;
    color: white;
    border: 2px solid #1BB177;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.career-full{
    float: left;
    width: 100%;
    padding-bottom: 75px;
    padding-top: 70px;
    background: #acd9c733;
}
.cr-wd{
  margin-right:auto;
  margin-left:auto;
  width:770px;
}
.cr-wd h2{
    float: left;
    width: 100%;
    text-align: center;
   
    font-weight: 600;
    color: black;
    font-size: 49px;
    line-height: 59px; 
    margin-bottom: 15px;
}
.cr-wd p{
    float: left;
    width: 100%;
    text-align: center;
  
    font-weight: 400;
    color: black;
    font-size: 16px;
    line-height: 25px; 
    margin-bottom: 50px;
}

.hidden-input-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.contact-label {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    
}

.mct_form {
    border-bottom: 1px solid #b0aaaa;
    color: #272626;
    display: block;
    font-size: 13px;
    /* text-transform: uppercase; */
    height: 50px;
    margin-bottom: 25px !important;
    padding: 0 20px;
    outline: none;
    background: #ffffff;
    width: 100%;
    padding-left: 0px;
    border: none;
    transition: all 500ms ease;
    border: solid 1px rgba(46, 67, 110, 0.22);
    margin-top: 3px;
    width: 100%;
    float: left;
    padding: 15px;
    margin-top: 17px;
    border-radius: 5px;
}

.mct_form:hover {
    border-bottom: 1px solid #72593c;
}

.contact-snd{
    float:left;
   background: #0D7BBE;
    text-align: center;
    color: white;
    
    font-size: 16px;
    font-weight: 400;
    
    padding: 10px 30px;
    
    border: none;
    cursor: pointer;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.contact-snd:hover{
  text-decoration:none;
 background: #1BB177;
   transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}



.abt-panel {
    width: 100%;
    float: left;
    padding-top: 10px;
    padding-bottom: 70px;
    
}
.abt-panel h1 {
    /* float: left; */
    /* width: 100%; */
    color: #101010;
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 21px;
    text-align: left;
    margin: 0px;
    margin-bottom: 10px;
    margin-top: 50px;
    
}


.contact-tag {
    float: left;
    width: 100%;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.93);
    text-align: left;
    /* margin-top: 15px; */
    line-height: 27px;
    margin-bottom: 30px;
    
    font-weight: 400;
    
}



.error_msg {
    display: none;
    width: auto;
    float: left;
    padding: 5px 7px;
    font-size: 13px;
    line-height: 15px;
    background: #E31B23;
    color: #fff;
    font-weight: 300;
    text-align: left;
    position: absolute;
    bottom: -8px;
    left: 0;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    z-index: 10;
}


.info-tag {
    line-height: 27px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.93);
    margin-top: 9px;
    font-weight: 400;
   
}

.contact-snd2 {
    text-transform: uppercase;
    /* border-radius: 100px; */
    font-size: 16px;
    font-weight: 400;
   
    margin-bottom: 20px;
    font-style: normal;
    font-stretch: normal;
    border: none;
    line-height: normal;
    /* letter-spacing: 1.8px; */
    /*width: 81%;*/
    text-align: center;
    padding: 10px 30px;
    border: none;
    background: #1BB177;
    color: #fff;
    float: right;
    margin-top: 11px;
    /* border: solid 2px #a3238e; */
    cursor: pointer;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.contact-snd2:hover {
   text-decoration: none;
    background: #0D7BBE;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.adr-section {
    float: left;
    margin-top: 50px;
    width: 100%;
    margin-bottom: 15px;
    /* padding-left: 30px; */
}

.adr-section h1 {
    float: left;
    width: 100%;
    color: #000;
    font-size: 30px;
    font-weight: 400;
    margin-top: 0px;
    margin-top: 4px;
    border-bottom: solid 1px #e6e6e6;
    padding-bottom: 16px;
}

.india{
float: left;
}

.india p {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: black;
    line-height: 25px;
    margin-top: 11px;
    margin-bottom: 0px;
    
}
.india p a{
    color: black;
    
    font-size: 16px;
    font-weight: 400;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;

}
.india p a:hover{
    color: #0D7BBE;
    text-decoration: none;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;

}


.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999999999999999999999;
    top: 0;
    left: 0;
  background: #E0EAF1;

    overflow-x: hidden;
    transition: 0.5s;
    padding: 60px 0px;
}
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 50px;
    z-index: 9999;
    color: #000000;
    font-weight: 300;
}
.overlay a:hover {
    color: #f1f1f1;
    text-decoration: none;
}
.lrn-frm{
 width: 50%;
 float: right;
 padding-right: 50px;
}

.frm-white{
  color:black !important;
  font-size:16px !important;
}

.frm-border{
  background: white!important;
  color:black !important;
  border: solid 1px rgb(255 255 255 / 59%);
  
}

.lrn-frm h2{
    float: left;
    width: 100%;
    text-align: left;
    font-size: 28px;
    text-transform:uppercase;
    font-weight: 500;
    color: black;
    padding-bottom: 11px;
}

.lrn-frm p{
  float:left;
  width:100%;
  font-size: 16px;
  color: #181818;
  line-height: 24px;
  text-align: left;
  font-weight: normal;
  padding-bottom: 12px;
}

.lrn-adrs{
    float: left;
    width: 50%;
    padding-right: 70px;
}
.irn-adrs-hed{
    float: left;
    width: 100%;
    margin-bottom: 55px;
    text-align: right;
}
.irn-adrs-hed h2{
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 28px;
}
.irn-adrs-hed p{
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
}


.in-ser-pge{
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
.in-ser-pge h2{
    width: 100%;
    font-weight: 600;
    font-size: 49px;
    color: black;
    text-align: left;
    line-height: 59px;
   
}
.in-ser-pge p{
    width: 100%;
    color: black;
    line-height: 25px;
    margin-bottom: 0px;
    font-size: 16px;
    text-align: justify;
    font-weight: 400;
}

.in-ser-pge img{
    float: right;
    max-width: 100%;
    margin-left: 20px;
    margin-top: 15px;
}














.hamburgermenu{
    float: right;
    margin-top: 79px;
}
.hamburgermenu img{
    width: 30px;
    cursor: pointer;
    /* margin-left: 25px; */
    position: relative;
    z-index: 1111;
    margin-top: 34px;
} 




.activeli{
    color: #0d7abe!important;
    /* font-weight: 500!important; */
}

.enquiry {
    float: right;
    margin-right: 0px;
    border-bottom-right-radius: 20px;
}

.enquiry a {
    float: right;
    color: white!important;
   background-color: #1BB177;
    margin-bottom: 0px;
    font-size: 16px!important;
    font-weight: 400!important;
    
    
    margin-left: 37px;
    padding: 10px 28px !important;
    position: relative;
    z-index: 9999;
    
    border-top-left-radius: 10px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.enquiry a:hover {
    text-decoration: none;
        
   background-color: #0D7BBE;
transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    
}
.quick-top {
    cursor: pointer;
}

.close_form {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 424px;
    top: 0;
    background: #0c7dc4 url(../images/close.svg) no-repeat center center;
    background-size: 20px 20px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.close_form:focus {
    outline: none;
}

.request-sec {
    position: absolute;
    right: 0;
    width: 100%;
    top: -450px;
    right: 0;
    height: auto;
    background: transparent;
    z-index: 9999999;
}

.form-inner {
    padding-top: 35px;
}
.req-form {
    width: 427px;
    float: right;
    height: auto;
    margin-right: 0;
    opacity: 1;
   background-color: #010000;
    
    top: 0;
    position: relative;
    right: 0;
    /* height: 100%; */
    z-index: 99;
}
.form-inner-2{
    float: left;
    padding: 20px 30px;
    
    background: black;
}
.field_area {
    width: 100%;
    float: left;
    position: relative;
    margin: 0 0 20px;
}

.field_area label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.field_area input[type=email], .field_area input[type=number], .field_area input[type=text], .field_area textarea {
    width: 100%;
    float: left;
    /* position: relative; */
    font-size: 15px;
    color: white;
    line-height: 20px;
    margin: 0;
    padding: 7px 10px;
    background: 0 0;
    border: none;
    border-bottom: solid 1px rgb(207 207 207);
    transition: all ease-in-out .5s;
    -o-transition: all ease-in-out .5s;
    -ms-transition: all ease-in-out .5s;
    -moz-transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}

.hidden-input-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.quick-send {
    background-color: #252b42;
    width: 100%;
    border: 0;
    font-size: 15px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    color: #fff;
    padding: 10px;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
    -moz-transition: all ease-in-out .5s;
}

.quick-send:hover {
    color: #fff;
    /* opacity: .7; */
    background: #000;
}

.quick-send:focus {
    outline: none;
}



.field_area input[type=email], .field_area input[type=number], .field_area input[type=text], .field_area textarea:focus {

outline: none;}

.header_menu_area {
  float: right;
  position: relative;
  text-align: center;
  width: 100%;
}
.header_menu_area > .mob_nav {
    display: none;
}

.header_menu_area > ul {
    width: 75%;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0px;
    padding-left: 0px;
    /* padding-right: 20px; */
    float: right;
}
.header_menu_area > ul > li {
      width: auto;
      display: inline-block;
      vertical-align: middle;
}
     
.header_menu_area > ul > li > a:hover {
          color: color: black;
          /* background: linear-gradient(to right, rgb(0, 34, 93), rgb(20, 70, 158)); */
          color: #0d7abe!important;
}
         


.header_menu_area > ul > li > a:hover::after {
          /* height: 100%; */
}
  .active-class{
 
  color: black; !important;
 
  /* border-bottom: solid 4px #0f703a; */
}

.img-fluid {
    max-width:0%;
    height: auto;
}


@media (max-width: 1024px) {


.menu li:hover>ul {
    width: 100% !important;
    visibility: visible;
    opacity: 1;
    position: unset;
    transform: initial;
    /* height: 122px; */
    z-index: 99999;
    margin-top: 60px;
}
.menu ul:after{
    bottom: 62%;
}

.header_menu_area > ul > li > a {
    width: 100%!important;
}

.sub-menu {
    margin-top: 122px!important;
}
.menu ul li a {

    text-align: center !important;
}

.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    /position: unset;/
    transform: initial;
    /* height: 122px; */
    z-index: 99999;
    margin-top: 36px;
}

.menu ul {
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0 !important;
    width: 100%;
    transform: initial;
}
.ham-nav{
    display: none;
}

.header_menu a svg{
    display: none;
}

.sub-menu-1{
    position:unset !important;
    width:100% !important;
}



.header_menu_area {
    position: inherit;
    float: right;
}

.header_menu_area > .mob_nav {
    display: block;
    float: right;
    position: relative;
    z-index: 99999;
    width: 35px;
    height: 28px;
    margin: -118px 42px;
    cursor: pointer;
    transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.header_menu_area > .mob_nav > div {
    background: #ce2933;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    width: 100%;
}

.header_menu_area > .mob_nav > div:nth-child(1) {
    top: 2px;
}

.header_menu_area > .mob_nav > div:nth-child(2), .header_menu_area > .mob_nav > div:nth-child(3) {
    top: 13px;
    width: 65%;
}

.header_menu_area > .mob_nav > div:nth-child(4) {
    top: 23px;
}

.mob_nav.open > div:nth-child(1), .mob_nav.open > div:nth-child(4) {
    left: 50%;
    top: 18px;
    width: 0%;
}

.mob_nav.open > div:nth-child(2) {
    background: #ce2933;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.mob_nav.open > div:nth-child(3) {
    background: #ce2933;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.header_menu_area > ul {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0px;
    visibility: hidden;
    opacity: 0;
    z-index: 9 !important;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    top: 100px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 20px;
    /* transform: rotate(-15deg) translate3d(0, 0, 0); */
    padding-bottom: 50px;
    background: #ffffff;
}


.header_menu_area > ul > li > a {
    padding: 15px 18px 15px 18px !important;
    text-align: center;
    color: #fff;
    width: 100%;
    line-height: 30px;
    margin-left: 0px;
}
.header_menu_area > ul > li {
      width: 100%;
}


.header_menu_area ul.view {
    visibility: visible;
    opacity: 1;
    z-index: 100;
    z-index: 1111 !important;
    /* transform: rotate(0deg) translate3d(0, 0, 0); */
    top: 100px;
}

.header_user_area {
    right: calc(5% + 70px);
}
}

.active-menu{
  background: linear-gradient(to right, rgb(0, 34, 93), rgb(20, 70, 158));
  color: #ffffff !important;
  /* border-bottom: solid 4px #0f703a; */
}


.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
}


.header_menu_area > ul > li > a {
    margin-top: 0px;
    /* margin-bottom: -13px;*/
    width: auto;
    float: right;
    /* margin: -2px 0px; */
    position: relative;
    font-size: 15px;
    /* font-family: 'Montserrat', sans-serif !important; */
    font-weight: 400;
    color: #292929;
    margin: 40px 25px;
    border-bottom: 0px solid transparent;
    letter-spacing: 0px !important;
    padding: 0px;
    z-index: 1;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    /* text-transform: uppercase; */
    text-decoration: none;
}
/*.header_menu_area > ul > li > a:hover {
    
    color: #f11002; !important;
    



    
}
*/

.menu ul li a:hover, .menu ul li:hover>a {
    background: #0d7abe !important;
    color: #fff;
    text-decoration: none;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    /* text-transform: uppercase; */
    padding-left: 20px;
}
.menu ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    top: 67px;
    padding: 0;
    width: 211px;
    position: absolute;
    right: 20px;
    left: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 99;
    transform: translate(0,20px);
    transition: all .2s ease-out;
}


.menu li:first-child {
    margin-left: 0;
}
.menu li:first-child {
    margin-left: 0;
}
.menu ul li {
    display: block;
    float: none;
    background: 0 0;
    margin: 0;
    padding: 0;
    width: 100%;
}

.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
    transition: all .5s ease-out;
}

.menu ul li a {
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    padding: 18px 10px;
    display: block;
    color: #000000;
    background: #ffffff;
    text-align: left;
    border-bottom: solid 1px rgb(99 96 96 / 10%);
}
.menu-new {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    top: 13px !important;
    padding: 0;
    width: 211px;
    position: absolute;
    background: #fff;
    z-index: 99;
    margin-top: 0 !important;
    border-radius: 20px;
    left: inherit !important;
    right: -217px !important;
    transform: translate(0,20px);
    transition: all .2s ease-out;
}

.menu-new li a{
  background: #F6F6F6!important;
}



.menu-new:after {
    top: 25% !important;
    left: -2% !important;
    left: inherit !important;
    border: solid red;
    content: " ";
    height: 0;
    width: 0;
    right: 208px;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255,255,255,0);
    border-right-color: red !important;
    border-width: 6px;
    margin-left: -6px !important;
    transform: rotate(
319deg);
    display: none;
}






@media (max-width: 1024px){
    .header_menu_area > ul > li > a{
        margin: 8px 0px 0px 0px;
    }
    .hamburgermenu{
        display: none;
    }
}

@media (max-width: 575px){
    .contact-sec2 p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    padding: 10px 15px 50px;}
    .business-full h1 {
    font-size: 36px;
    color: #000;
    margin: 0;
    text-align: center;
}.business-full p{
    text-align: center;
}.business-box {
    text-align: center;}
    .innerban img {
    position: absolute;
    right: 0;
    top: inherit;
    width: 81px;
    bottom: 0;
}.innerban h1 {
    margin: 0;
    font-size: 36px;
    color: #fff;
    font-weight: 400;
    text-align: center;
}.in-about-txt h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 34px;
    color: black;
    text-align: center;
}
.img-abt{
    display: none;
}.all-vision{
    padding-bottom: 40px;
}
.vision{
    margin-bottom: 30px;
}
.in-about-txt p {
    float: left;
    text-align: center;}
    .social{
            width: 100%;
    float: left;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    }.header {
    float: left;
    width: 100%;
    background-color: white;
    height: 0px;
    padding: 0 4%;
}
    .ft-logo p {
    color: #fff;
    margin-top: 20px;
    width: 100%;
    text-align: center;}
    
    .sub-plus:after{
        display: none;
    }
    .quick a {
    float: left;
    width: 33%;}.location h2 {

    margin-top: 20px;
}.mail h2 {

    margin-top: 10px;
} 
    .p3-img2 {
    width: 100%;
    border-radius: 30px;
    /* border-bottom-right-radius: 30px; */
    height: 255px;
    object-fit: cover;
    float: right;
}
    .p22-img{
        display: none;
    }.slide .item .cover .header-content {
    padding: 15px 0px;
    position: absolute;
    width: auto;
    text-align: left;
    width: 100%;
    /* margin-left: 65px; */
    padding: 0px;
    /* overflow: hidden; */
    background: transparent;
    z-index: 9999;
       margin-top: 10px;
}.slide {

height: 570px;
 
}.slide .item {
    height: 570px;}.slide .item .slide-image {
    height: 680px;}
    .header-content p {
    line-height: initial;
    float: left;
    margin-top: 5px;
    font-size: 14px;
    color: #000;
    font-weight: 200;
    line-height: 27px;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    /* padding-left: 34px; */
}
    .logo a img{
        width: 255px;
    }
    .header_menu_area > .mob_nav{
        margin: 0px 0px;
    }
    
    .header-content h6{
        font-size: 38px;
        line-height: 47px;
        text-align: center;
        margin: 0;
    }
    .header-content p br{
        display: none;
    }
    .ban-butn1{
        text-align: center;
        margin-bottom: 17px;
        width: 50%;
    }
    .ban-butn2{
        text-align: center;
        width: 45%;
        float: right;
    }
    
    .b1-hed h2{
        font-size: 40px;
        line-height: 45px;
        text-align: center;
    }
    .body2{
        padding-top: 75px;
        padding-bottom: 60px;
        background-position: center;
    }
    .body2 h3{
        font-size: 21px;
        text-align: center;
    }
    .body2 h2{
        font-size: 55px;
        text-align: center;
    }
    .count .item1{
        text-align: center;
        width: 100%;
    }
    .count .item p{
        text-align: center;
        font-size: 21px!important;
    }
    .b2-count{
        margin-bottom: 18px;
    }
    .b3-hed h2{
        font-size: 40px;
    }
    .body4{
        padding-top: 75px;
        padding-bottom: 75px;
    }
    .b4-hed h2{
        font-size: 40px;
        line-height: 45px;
        text-align: center;
    }
    .b4-hed p br{
        display: none;
    }
    .b4-hed p{
        text-align: center;
    }
    .b4-butn{
        text-align: center;
    }
    .b4-butn a{
        float: none;
        display: inline-block;
    }
    .body5{
        padding-top: 65px;
        padding-bottom: 70px;
    }
    .b5-bx{
        text-align: center;
        padding: 28px 25px 28px 25px;
    }
    .b5-bx5{
        margin-top: 0px;
        padding: 28px 25px 28px 25px;
        text-align: center;
    }
    .b5-img{
        margin-bottom: 27px;
    }
.in-ab-hed h2{
    text-align: center;
    font-size: 40px;
    line-height: 45px;
}
.in-ser-hed h2{
    font-size: 40px;
    line-height: 45px;
}
.cr-wd h2{
    font-size: 40px;
    line-height: 45px;
}
.in-ser-pge h2{
    font-size: 40px;
    line-height: 45px;
    text-align: center;
}
.b3-bx-hed{
    padding-right: 25px;
}


}



@media (max-width: 455px){
    .b1-quality p br{
        display: none;
    }
    .b1-hse p br{
        display: none;
    }
}
@media (max-width: 421px){
    .body2 h2{
        font-size: 38px;
    }
    .body2 h3{
        font-size: 19px;
        margin-bottom: 10px;
    }
    .count .item1{
        font-size: 38px;
    }
}





@media (max-width: 767px){
    .body1{
        padding-bottom: 75px;
    }
    .b1-img{
        margin-top: 60px;
    }
.b1-img img {
    float: none;
   
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.b1-hed{
    margin-top: 38px;
}
.b1-hed p{
    text-align: center;
    margin-top: 10px;

}
.body3{
    padding-top: 70px;
    padding-bottom: 70px;
}
.b3-hed p br{
    display: none;
}
.b3-hed p{
    margin-top: 8px;
}
.b3-hed{
    margin-bottom: 30px;
}
.b5-hed p br{
        display: none;
    }
.b5-hed p{
margin-top: 8px;
}
.ft-logo{
    margin-top: 0px;
    }
    .ft-logo img{
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .quick{
        padding-left: 0px;
        text-align: center;
        margin-top: 20px;
    }
    .location{
        padding-left: 0px;
        text-align: center;
        margin-top: 20px;
    }
    .mail{
        padding-left: 0px;
        text-align: center;
        margin-top: 20px;
    }
    .phone{
        padding-left: 0px;
        text-align: center;
        margin-top: 20px;
    }
    .footer{
        padding-top: 65px;
        padding-bottom: 65px;
    }
    .copy1 p{
        text-align: center;
    }
    .copy2 p{
        margin-top: 6px;
        text-align: center;
    }
    .in-ab-hed img{
        margin-left: auto;
        margin-right: auto;
        display: block;
        float: none;
        margin-bottom: 20px;
    }
    .in-vision{
        padding: 35px 35px;
        margin-bottom: 30px;
    }
    .in-ab-hed{
        margin-bottom: 65px;
    }
    .in-ser-hed p br{
        display: none;
    }
    .in-ser-hed p{
        margin-top: 8px;
    }
.in-ser{
    padding-bottom: 65px;
    padding-top: 65px;
}
.cr-wd{
    padding-left: 15px;
    padding-right: 15px;
}
.career-full{
    padding-bottom: 70px;
    padding-top: 65px;
}
.adr-section h1{
    text-align: center;
}
.india p{
    text-align: center;
}
.india{
    width: 100%;
}
.abt-panel h1{
    text-align: center;
}
.contact-tag{
    text-align: center;
}
.contact-snd2{
    margin-left: auto;
    margin-right: auto;
    display: block;
    float: none;
}
.info-tag{
    text-align: center;
    margin-bottom: 7px;
}
.abt-panel{
    padding-bottom: 60px;
}
.in-ser-pge img{
    margin-left: auto;
        margin-right: auto;
        display: block;
        float: none;
        margin-bottom: 20px;
}
.ab-hed h2{
    font-size: 45px;
}
.b1-bx1{
        margin-top: -77px;
    }
    .b1-bx2{
        margin-top: 20px;
    }
    .b1-bx3{
        margin-top: 20px;
    }
    
    
}

@media (min-width: 576px) and (max-width: 767px){
    .contact-sec2 p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    padding: 10px 25px 50px;}
.innerban h1 {
    margin: 0;
    font-size: 30px;
}.innerban img {
    position: absolute;
    right: 0;
    top: -2px;
    width: 214px;
}
    .img-abt{
        display: none;
    }.in-about-txt h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 46px;}.vision{
        margin-bottom: 30px;
    }.all-vision{
        padding-bottom: 40px;
    }
    .quick h2{
        margin-top: 0;
    }
    .p3-img2 {
 
    height: 260px;}.p3-img {
 
    height: 260px;}
  
    .p2-img {
    width: 210px;
    border-radius: 30px;
    float: left;
    height: auto;
    margin-right: 40px;
}.p22-img {
    width: 130px;
    height: 78px;
    position: absolute;
    bottom: -20px;
    left: -92px;
}
    .ban-butn2 a {
    float: left;
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    width: 117px;
    height: 41px;
    text-align: center;
    color: #000;
    padding: 10px 0px;
    border-radius: 30px;
    border: 1px solid #000;
    background-color: transparent;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}.ban-butn1 a {
    float: none;
    display: inline-block;
    /* font-weight: lighter; */
    font-size: 14px;
    height: 42px;
    color: white;
    text-align: center;
    border-radius: 30px;
    width: 120px;
    padding: 10px 8px;
    background-color: #ce2933;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}.ban-butn2 {
    float: left;
    width: 46%;
    text-align: left;
    margin-left: 15px;
}.ban-butn1 {
    float: left;
    width: 47%;
    /* text-align: right; */
}
    .header-content p{
        width: 74% !important;
    }
    .logo a img{
        width: 250px;
    }
    .header_menu_area > .mob_nav{
        margin: 0px 22px;
    }
    .header-content h6 br{
        display: none;
    }
    .header-content h6{
        font-size: 53px;
        line-height: 67px;
    }
    .body2{
        background-position-x: 86%;
    }
    .b1-hed h2{
        font-size: 45px;
        line-height: 55px;
        text-align: center;
    }
    .body2 h3{
        margin-bottom: 9px;
    }
    .body2 h2{
        font-size: 58px;
    }
    .count .item1{
        font-size: 40px;
    }
    .count .item p{
        font-size: 23px!important;
    }
    .body2{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .body4{
        background-position-x: 12%;
        padding-top: 80px;
        padding-bottom: 85px;
    }
    .b4-hed{
        padding-left: 68px;
    }
    .b4-hed h2{
        font-size: 45px;
        line-height: 55px;
    }
    .b4-butn{
        padding-left: 68px;
    }
    .b5-bx5{
        margin-top: 0px;
    }
    .b5-img{
        margin-bottom: 27px;
    }
    .in-ab-hed h2{
        font-size: 45px;
        line-height: 55px;
        text-align: center;
    }
    .in-ser-hed h2{
        font-size: 45px;
        line-height: 55px;
    }
    .cr-wd h2 br{
        display: none;
    }
    .cr-wd h2{
        font-size: 45px;
        line-height: 55px;
    }
    .in-ser-pge h2{
        font-size: 45px;
        line-height: 55px;
        text-align: center;
    }
}


@media (min-width: 768px) and (max-width: 991px){
    .contact-sec2 p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    padding: 10px 25px 50px;
    text-align: center;}
    .img-abt{
        display: none;
    }
    .business-box img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-top-right-radius: 20px;
}
    .p3-text {
    position: relative;
    width: 100%;
    float: left;
    background: #ce2933;
    padding: 21px 25px 32px 22px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}.p3-text2 {
    position: relative;
    width: 100%;
    float: left;
    background: #0f3860;
    padding: 17px 5px 35px 39px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}.p5-text {
    width: 100%;
    float: left;
    padding: 20px 60px 60px 5px;
}
.header-content p{
    width: 54%;
}.ban-butn1 {
    float: left;
    width: 40%;
    /* text-align: right; */
}.ban-butn1 a {
    float: left;
    display: inline-block;
    /* font-weight: lighter; */
    font-size: 14px;
    height: 40px;
    color: white;
    text-align: center;
    border-radius: 30px;
    width: 131px;
    padding: 10px 10px;
    background-color: #ce2933;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}.ban-butn2 {
    float: left;
    width: 47%;
    text-align: left;
    margin-left: 15px;
}.ban-butn2 a {
    float: left;
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    width: 131px;
    height: 40px;
    text-align: center;
    color: #000;
    padding: 9px 8px;
    border-radius: 30px;
    border: 1px solid #000;
    background-color: transparent;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.b1-bx1 p br{
    display: none;
}
.b1-bx1{
    padding: 32px 10px 31px 10px;
    margin-top: -75px;
}
.b1-bx2 p br{
    display: none;
}
.b1-bx2{
    padding: 32px 10px 31px 10px;
    margin-top: -75px;
}
.b1-bx3 p br{
    display: none;
}
.b1-bx3{
    padding: 32px 10px 31px 10px;
    margin-top: -75px;
}
.b1-img img {
    float: none;
   
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.b1-img{
    margin-top: 70px;
}
.b1-hed h2{
    font-size: 50px;
    text-align: center;
}
.b1-hed{
    margin-top: 30px;
}
.b1-hed p{
    margin-top: 10px;
    text-align: center;
}
.b1-quality{
    width: 50%;
}
.b1-hse{
    width: 50%;
}
.b1-quality p br{
    display: none;
}
.b1-hse p br{
display: none;
}
.body1{
padding-bottom: 55px;
background-position: center;
}
.body2{
    background-position: right;
}
.b3-hed p br{
    display: none;
}
.b3-bx-hed{
    padding-left: 17px;
    padding-right: 17px;
}
.b5-hed p br{
    display: none;
}
.b5-bx5{
    margin-top: 0px;
}
.hide{
    display: none;
}
.body5{
    padding-top: 75px;
    padding-bottom: 70px;
}
.ft-logo{
    margin-top: 0px;
}
.location{
    margin-top: 22px;
    padding-left: 0px;

}
.quick{

    padding-left: 0px;
}
.mail{
margin-top: 22px;
    padding-left: 0px;  
}
.phone{
    padding-left: 0px;  
}
.in-ab-hed h2{
    font-size: 45px;
    line-height: 56px;
}
.in-ab-hed img{
    max-width: 392px;
}
.in-vision{
    margin-bottom: 30px;
}
.in-ab-hed{
    margin-bottom: 60px;
}
.in-ser-hed p br{
    display: none;

.in-ser-bx-hed{
    padding: 24px 17px 27px 17px;
}
.in-ser-pge h2{
    font-size: 45px;
    line-height: 56px;
}
.in-ser-pge img{
    max-width: 395px;
}
.footer{
    background-position: right;

.header_menu_area > .mob_nav{
    margin: 0px 22px;
}

}












@media (min-width: 992px) and (max-width: 1024px){
    .innerban img {
    position: absolute;
    right: 0;
    top: 0px;
    width: 238px;
}
    .in-about-txt h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 36px;
    color: black;
}.p5-text {
    width: 100%;
    float: left;
    padding: 26px 15px 33px 5px;
}
    .p2-img {
    width: 450px;
    border-radius: 30px;
    float: left;
    height: 430px;
    margin-right: 80px;
}.p3-text {
    position: relative;
    width: 100%;
    float: left;
    background: #ce2933;
    padding: 42px 65px 36px 22px;}.p3-text2 {
    position: relative;
    width: 100%;
    float: left;
    background: #0f3860;
    padding: 37px 5px 42px 65px;}
.header_menu_area > .mob_nav{
    margin: 0px 22px;
}
.b3-bx-hed{
    padding-right: 13px;
    padding-left: 20px;
}
.b5-bx{
    padding: 28px 22px 28px 25px;
}
.b5-bx5{
    padding: 28px 22px 28px 25px;
    margin-top: -142px;
}
.footer{
    background-position-x: 38%;
}
.quick{
    padding-left: 38px;
}
.location{
    padding-left: 0px;
}
.mail{
    padding-left: 23px;
}
.phone{
    padding-left: 23px;
}
.body2{
    background-position: right;
}


}





@media (min-width: 1025px) and (max-width: 1199px){
    .in-about-txt h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 36px;
    color: black;
}
.in-about-txt h2 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 36px;
    color: black;
}.p3-text2 {
    position: relative;
    width: 100%;
    float: left;
 
    padding: 30px 22px 50px 65px;}
    .b5-bx{
    padding: 28px 22px 28px 25px;
}
.b5-bx5{
    padding: 28px 22px 28px 25px;
    margin-top: -142px;
}
.footer{
    background-position-x: 38%;
}
.quick{
    padding-left: 15px;
}
.location{
    padding-left: 0px;
}
.mail{
    padding-left: 22px;
}
.phone{
    padding-left: 22px;
}
.body2{
    background-position: right;
}
}




@media (max-width: 1024px){
    .enquiry{
        width: 100%;
        text-align: center;
    }
    .enquiry a{
        float: none;
        display: inline-block;
        margin-left: 0px;
    }
}

@media (max-width: 575px){
    .header_menu_area > ul{
        top: 0;
    }
    
    
}
@media (min-width: 576px) and (max-width: 767px){
    .header_menu_area > ul{
        top: 119px;
    }
}
@media (min-width: 768px) and (max-width: 1024px){
    .header_menu_area > ul{
        top: 130px;
    }
}


@media (min-width: 367px) and (max-width: 467px){
    .close_form{
        right: 324px;
    }
    .req-form{
        width: 325px;
    }
}
@media (min-width: 267px) and (max-width: 366px){
    .close_form{
        right: 260px;
    }
    .req-form{
        width: 260px;
    }
}


@media (min-width: 267px) and (max-width: 314px){
    .header-content h6 br{
        display: none;
    }
    .header-content h6{
        font-size: 42px;
        line-height: 56px;
    }
}





@media (min-width: 560px) and (max-width: 575px){
    .b3-bx:hover .b3-bx-shade{
        height: 68%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 68%;
    }
    .b3-bx-shade-butn a{
        margin-top: 135px;
    }
}

@media (min-width: 554px) and (max-width: 559px){
    .b3-bx:hover .b3-bx-shade{
        height: 68%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 68%;
    }
    .b3-bx-shade-butn a{
        margin-top: 135px;
    }
}

@media (min-width: 530px) and (max-width: 553px){
    .b3-bx:hover .b3-bx-shade{
        height: 67%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 67%;
    }
    .b3-bx-shade-butn a{
        margin-top: 132px;
    }
    
}
@media (min-width: 509px) and (max-width: 529px){
    .b3-bx:hover .b3-bx-shade{
        height: 66%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 66%;
    }
    .b3-bx-shade-butn a{
        margin-top: 125px;
    }
    
}
@media (min-width: 485px) and (max-width: 508px){
    .b3-bx:hover .b3-bx-shade{
        height: 65%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 65%;
    }
    .b3-bx-shade-butn a{
        margin-top: 117px;
    }
    
}
@media (min-width: 465px) and (max-width: 484px){
    .b3-bx:hover .b3-bx-shade{
        height: 64%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 64%;
    }
    .b3-bx-shade-butn a{
        margin-top: 113px;
    }
    
}
@media (min-width: 450px) and (max-width: 464px){
    .b3-bx:hover .b3-bx-shade{
        height: 63%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 60%;
    }
    .b3-bx-shade-butn a{
        margin-top: 108px;
    }
    
}
@media (min-width: 430px) and (max-width: 449px){
    .b3-bx:hover .b3-bx-shade{
        height: 59%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 59%;
    }
    .b3-bx-shade-butn a{
        margin-top: 100px;
    }
    
}
@media (min-width: 415px) and (max-width: 429px){
    .b3-bx:hover .b3-bx-shade{
        height: 58%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 58%;
    }
    .b3-bx-shade-butn a{
        margin-top: 98px;
    }
    
}
@media (min-width: 400px) and (max-width: 414px){
    .b3-bx:hover .b3-bx-shade{
        height: 57%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 57%;
    
    .b3-bx-shade-butn a{
        margin-top: 98px;
    }
    
}
@media (min-width: 385px) and (max-width: 399px){
    .b3-bx:hover .b3-bx-shade{
        height: 56%;
    }
    .b3-bx:hover .b3-bx-shade{
        height: 53%;
    }
    .b3-bx-shade-butn a{
        margin-top: 95px;
    }
    
}
@media (min-width: 376px) and (max-width: 384px){
    .b3-bx:hover .b3-bx-shade{
        height: 55%;
    }
    .b3-bx:hover .b3-bx-shade{
        height: 52%;
    }
    .b3-bx-shade-butn a{
        margin-top: 86px;
    }
    
}
@media (min-width: 365px) and (max-width: 375px){
    .b3-bx:hover .b3-bx-shade{
        height: 54%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 51%;
    }
    .b3-bx-shade-butn a{
        margin-top: 82px;
    }
    
}
@media (min-width: 350px) and (max-width: 364px){
    .b3-bx:hover .b3-bx-shade{
        height: 50%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 50%;
    }
    .b3-bx-shade-butn a{
        margin-top: 82px;
    }
    
}
@media (min-width: 335px) and (max-width: 349px){
    .b3-bx:hover .b3-bx-shade{
        height: 49%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 49%;
    }
    .b3-bx-shade-butn a{
        margin-top: 72px;
    }
    
}
@media (min-width: 325px) and (max-width: 334px){
    .b3-bx:hover .b3-bx-shade{
        height: 48%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 48%;
    }
    .b3-bx-shade-butn a{
        margin-top: 68px;
    }
    
}
@media (min-width: 314px) and (max-width: 324px){
    .b3-bx:hover .b3-bx-shade{
        height: 44%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 47%;
    }
    .b3-bx-shade-butn a{
        margin-top: 65px;
    }
    
}
@media (min-width: 300px) and (max-width: 313px){
    .b3-bx:hover .b3-bx-shade{
        height: 43%;
    }
    .b3-bx:hover .b3-bx-shade-1{
        height: 43%;
    }
    .b3-bx-shade-butn a{
        margin-top: 59px;
    }
    
}







@media (min-width: 560px) and (max-width: 575px){
    .in-ser-bx:hover .in-ser-shade{
        height: 66%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 66%;
    }
    .in-ser-shade-butn a{
        margin-top: 117px;
    }
}
@media (min-width: 554px) and (max-width: 559px){
    .in-ser-bx:hover .in-ser-shade{
        height: 65%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 65%;
    }
    .in-ser-shade-butn a{
        margin-top: 117px;
    }
}
@media (min-width: 533px) and (max-width: 553px){
    .in-ser-bx:hover .in-ser-shade{
        height: 65%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 65%;
    }
    .in-ser-shade-butn a{
        margin-top: 113px;
    }
    
}
@media (min-width: 516px) and (max-width: 532px){
    .in-ser-bx:hover .in-ser-shade{
        height: 64%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 64%;
    }
    .in-ser-shade-butn a{
        margin-top: 113px;
    }
    
}
@media (min-width: 495px) and (max-width: 515px){
    .in-ser-bx:hover .in-ser-shade{
        height: 63%;
    }
        .in-ser-bx:hover .in-ser-shade-1{
        height: 63%;
    }
    .in-ser-shade-butn a{
        margin-top: 108px;
    }
    
}
@media (min-width: 475px) and (max-width: 494px){
    .in-ser-bx:hover .in-ser-shade{
        height: 62%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 62%;
    }
    .in-ser-shade-butn a{
        margin-top: 103px;
    }
    
}
@media (min-width: 455px) and (max-width: 474px){
    .in-ser-bx:hover .in-ser-shade{
        height: 61%;
    }
    .in-ser-shade-butn a{
        margin-top: 98px;
    }
    
}
@media (min-width: 435px) and (max-width: 454px){
    .in-ser-bx:hover .in-ser-shade{
        height: 60%;
    }
        .in-ser-bx:hover .in-ser-shade-1{
        height: 57%;
    }
    .in-ser-shade-butn a{
        margin-top: 93px;
    }
    
}
@media (min-width: 415px) and (max-width: 434px){
    .in-ser-bx:hover .in-ser-shade{
        height: 56%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 56%;
    }
    .in-ser-shade-butn a{
        margin-top: 88px;
    }
    
}
@media (min-width: 400px) and (max-width: 414px){
    .in-ser-bx:hover .in-ser-shade{
        height: 54%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 54%;
    }
    .in-ser-shade-butn a{
        margin-top: 83px;
    }
    
}
@media (min-width: 390px) and (max-width: 399px){
    .in-ser-bx:hover .in-ser-shade{
        height: 53%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 53%;
    }
    .in-ser-shade-butn a{
        margin-top: 79px;
    }
    
}
@media (min-width: 376px) and (max-width: 389px){
    .in-ser-bx:hover .in-ser-shade{
        height: 53%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 52%;
    }
    .in-ser-shade-butn a{
        margin-top: 75px;
    }
    
}
@media (min-width: 370px) and (max-width: 375px){
    .in-ser-bx:hover .in-ser-shade{
        height: 52%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 49%;
    }
    .in-ser-shade-butn a{
        margin-top: 75px;
    }
    
}
@media (min-width: 355px) and (max-width: 369px){
    .in-ser-bx:hover .in-ser-shade{
        height: 48%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 48%;
    }
    .in-ser-shade-butn a{
        margin-top: 71px;
    }
    
}
@media (min-width: 340px) and (max-width: 354px){
    .in-ser-bx:hover .in-ser-shade{
        height: 47%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 47%;
    }
    .in-ser-shade-butn a{
        margin-top: 67px;
    }
    
}
@media (min-width: 325px) and (max-width: 339px){
    .in-ser-bx:hover .in-ser-shade{
        height: 46%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 46%;
    }
    .in-ser-shade-butn a{
        margin-top: 63px;
    }
    
}
@media (min-width: 320px) and (max-width: 324px){
    .in-ser-bx:hover .in-ser-shade{
        height: 42%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 45%;
    }
    .in-ser-shade-butn a{
        margin-top: 59px;
    }
    
}
@media (min-width: 310px) and (max-width: 319px){
    .in-ser-bx:hover .in-ser-shade{
        height: 42%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 44%;
    }
    .in-ser-shade-butn a{
        margin-top: 59px;
    }
    
}
@media (min-width: 280px) and (max-width: 309px){
    .in-ser-bx:hover .in-ser-shade{
        height: 41%;
    }
    .in-ser-bx:hover .in-ser-shade-1{
        height: 41%;
    }
    .in-ser-shade-butn a{
        margin-top: 56px;
    }
    
}





@media (min-width: 576px) and (max-width: 767px){

.b3-bx-hed{
    padding-left: 20px;
    padding-right: 20px;
}
/*.b3-bx-hed{*/
/*  height: 230px;*/
/*}*/
.b3-bx:hover .b3-bx-shade{
    height: 39%;
}
.b3-bx:hover .b3-bx-shade-1{
    height: 37%;
}
.b3-bx-shade-butn a{
    margin-top: 51px;
}
.in-ser-bx:hover .in-ser-shade{
    height: 65%;

}
.in-ser-bx:hover .in-ser-shade-1{
    height: 65%;

}
.in-ser-shade-butn a{
    margin-top: 117px;
}


}




@media (min-width: 768px) and (max-width: 991px){


.b3-bx:hover .b3-bx-shade{
    height: 53%;
}
.b3-bx:hover .b3-bx-shade-1{
    height: 50%;
}
.b3-bx-shade-butn a{
    margin-top: 76px;
}
.in-ser-bx:hover .in-ser-shade{
    height: 53%;
}
.in-ser-bx:hover .in-ser-shade-1{
    height: 47%;
}
.in-ser-shade-butn a{
    margin-top: 68px;
}
}



@media (min-width: 992px) and (max-width: 1024px){
    .b3-bx:hover .b3-bx-shade{
    height: 47%;
}
.b3-bx:hover .b3-bx-shade-1{
    height: 47%;
}
.b3-bx-shade-butn a{
    margin-top: 69px;
}
.in-ser-bx:hover .in-ser-shade{
    height: 54%;
}
.in-ser-bx:hover .in-ser-shade-1{
    height: 53%;
}
.in-ser-shade-butn a{
    margin-top: 77px;
}

}


@media (min-width: 1025px) and (max-width: 1199px){
    .b3-bx-hed{
    padding-left: 20px;
    padding-right: 20px;
}
.b3-bx-hed{
    height: 242px;
}
    .b3-bx:hover .b3-bx-shade{
    height: 43%;
}
.b3-bx:hover .b3-bx-shade-1{
    height: 43%;
}
.b3-bx-shade-butn a{
    margin-top: 64px;
}
.in-ser-bx:hover .in-ser-shade{
    height: 51%;
}
.in-ser-bx:hover .in-ser-shade-1{
    height: 51%;
}
.in-ser-shade-butn a{
    margin-top: 77px;
}
.in-ser-bx-hed{
    height: 200px;
}

}



@media (min-width: 1440px) and (max-width: 2000px){
    .form-inner-2{
        padding: 20px 30px 62px 30px;
    }
}



.nav-pd {
    text-align: left;
    padding: 0px 0px;
    transform: rotate(15deg);
}

.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
    border-radius: 20px;
}
.top-radius
{
          border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.bottom-radius{

          border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.hvr-sub:hover {
    background-color: #0d7abe !important;
    text-decoration: none !important;
    color: white !important;
    padding-left: 20px;
}
.p5-text{
        width: 100%;
        float: left;
        padding: 45px 60px 60px 5px;
}.p5-carousel .owl-dots .active span{
    background: #000;
}
.p5-carousel .owl-dots span{

width: 30px;

float: left;

height: 5px;

background: #990009;

margin: 0 5px;

border-radius: 30px;

opacity: 0.7;
}
.hd-address img {
    float: left;
    width: 95px;
    height: 95px;
    margin-right: 20px;
    margin-top: -10px;
    margin-bottom: 12px;
}.hd-address h2 {
    font-size: 32px;
    font-weight: 600;
    text-align: left;
    color: white;
}.hd-address h6 {
    font-size: 15px;
    font-weight: 200;
    margin-bottom: 50px;
    color: white;
    line-height: 25px;
}.req-form1 h2 {
    font-size: 26px;
    text-align: left;
    font-weight: 700;
    margin-top: 18px;
    color: white;
}.req-form1 p {
    font-size: 15px;
    width: 100%;
    color: white;
    line-height: 25px;
    margin-bottom: 14px;
    font-weight: 200;
    margin-top: 7px;
}
.hd-address {
    width: 100%;
    float: left;
    text-align: left;
    padding: 140px 0px;
    background: transparent;
    height: 100vh;
    margin-right: -80px;
}
.img-abt{
        position: absolute;
        width: 346px;
        left: 0;
        bottom: 0;
        z-index: 99;
}
.p5-carousel .owl-dots{float: left;width: 100%;position: relative;top: -54px;}
.sub-plus:after {
    position: absolute;
    content: '';
    right: -19px;
    background-image: url('../images/down-arrow.svg');
    top: 9px;
    font-size: 20px;
    width: 12px;
    background-repeat: no-repeat;
    height: 13px;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
}
.menu li:hover .sub-plus::after{

transform: rotate(180deg);

top: 0;
}







/***********************menu************************/

 .icon-1, .icon-2, .icon-3 {
     position: absolute;
     left: 25%;
     top: 50%;
     width: 26px;
     border-radius: 100%;
     height: 2px;
     background-color: black;
     transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}
 .icon-1 {
     transform: translateY(-8px);
     animation-delay: 100ms;
}
 .icon-3 {
     transform: translateY(8px);
     animation-delay: 250ms;
}
 .hamburger-icon {
     position: absolute;
     height: 60px;
     width: 60px;
     top: 21%;
     left: 3%;
     z-index: 99999;
     cursor: pointer;
     border-radius: 50%;
     transition: all 0.2s ease-in-out;
     background: rgb(255 255 255);
}
 .hamburger-icon:hover {
     /* transform: scale(1.2); */
     box-shadow: 0px 0px 30px rgb(0 0 0 / 0%);
}
 .icon-1.a {
     transform: rotate(40deg);
     border-radius: 0;
}
 .icon-3.b {
     transform: rotate(-40deg);
     border-radius: 0;
}
 .icon-2.c {
     opacity: 0;
}
 .clear {
     clear: both;
}
 @keyframes slideIn {
     0% {
         width: 0%;
         opacity: 0;
    }
     100% {
         width: 50%;
         opacity: 1;
    }
}
 nav {
     background: #0288d1;
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 0%;
     z-index: 10;
     opacity: 0;
     transition: all 600ms cubic-bezier(1, 0.04, 0.3, 1.56);
     transition-delay: 100ms;
}
 nav ul {
     margin: 0;
     position: absolute;
     top: 30%;
     left: 40%;
}
 nav ul li {
     list-style: none;
     font-size: 24px;
     color: #fff;
     line-height: 2.2;
     text-transform: uppercase;
     letter-spacing: 1.7px;
}
 nav.show {
     width: 100%;
     opacity: 1;
     height: 100vh;
     /* padding: 10px; */
     z-index: 999;
     position: relative;
}
 .dark-blue {
     position: absolute;
     top: 0;
     left: 0;
     background: #ffffff00;
     height: 100%;
     width: 0%;
     transition: all 500ms cubic-bezier(0.62, 0.04, 0.3, 1.8);
     transition-delay: 50ms;
     z-index: 5;
     opacity: 1;
}
 .dark-blue.slide {
     width: 50%;
     opacity: 1;
}
 @keyframes shotup {
     0% {
         transform: translateY(300%);
         opacity: 0;
    }
     90% {
         transform: translateY(-50px);
    }
     100% {
         transform: translateY(0%);
         opacity: 1;
    }
}










 