@charset "utf-8";
/* CSS Document */
/* width */
::-webkit-scrollbar {
 width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
 box-shadow: inset 0 0 5px grey;
 border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
 background:#0DA15C;
 border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
 background: #000;
}
body {
  background: #fff;
  font-family: 'Open Sans', sans-serif;
  display: swap;
  font-size: 16px;
  color: #4e4e4e
}
h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  display: swap;
  color: #003762;
  margin: 0;
  line-height: 1.8;
}
h3 {
  font-size: 30px;
  margin-bottom: 20px;
}
p {
  line-height: 2;
  font-size: 15px;
}
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #000;
  background: #fff;
}
.sticky {
  z-index: 3;
}
.clearfix{
  clear: both
}
/*start hover-effect*/
a {
  color: #black;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
/*end hover-effect*/
#button {
  display: inline-block;
  background-color: #1F1B52;
  width: 50px;
  height: 45px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  position: fixed;
  bottom: 0;
  right: 30px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  padding: 10px;
  color: #fff;
  border: 1px solid #fff;
  border-bottom: 0;
}
#button:hover {
  cursor: pointer;
  background-color: #0FAAA9;
}
#button:active {
  background-color: #0FAAA9;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
/**start color css***/
.black {
  color: #000;
}
.white{
  color: #fff;
}
/**end color css***/

/****start top menu****/
.top-address-wrap{
  background: #1F1B52;
  padding: 10px 0;
  color: #fff;
}

.top-time span{
  padding:0 20px 0 5px;
}

.img-responsive{
  width:100%;
}
.main-nav {
  
}
.main-nav ul {
  display: flex;
  justify-content: right;
  padding: 0;
  margin: 0;
  gap: 30px;
  list-style: none;
}
.main-nav a {
  display: block;
  position: relative;
  color:#4e4e4e;
  margin: 15px 0;
}

.main-nav a:hover{
  color: #199c98;
}

.main-nav>ul>li>a:before{
  content: "";
  position: absolute;
  top: 0;
  margin: auto;
  background-color: #199c98;
  height: 3px;
  width: 100%;
  transform-origin: right center;
  -webkit-transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -khtml-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: transform 0.55s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -khtml-transition: transform 0.55s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -moz-transition: transform 0.55s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -ms-transition: transform 0.55s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -o-transition: transform 0.55s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: transform 0.55s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}

.main-nav a:hover::before {
  transform-origin: left center;
  -khtml-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}

.main-nav__main {
  padding: 16px 0;
}
.main-nav__main ul li {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 152px;
  margin: 0 5px;
}
/* .main-nav__main ul li.has-dropdown:after {
  z-index: 9;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-align: center;
  content: "\f078";
  cursor: pointer;
} */

.main-nav ul li.has-dropdown a:before{
  
}
@media (min-width: 1200px) {
  .main-nav__main ul li.has-dropdown:after {
    margin-left: 4px;
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .main-nav__main ul li.has-sub-dropdown:after {
    position: absolute;
    top: 50%;
    right: 8px;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    transform: translateY(-50%);
  }
}
@media (max-width: 1199px) {
  .main-nav__main ul li {
    margin-bottom: 12px;
  }
  .main-nav__main ul li.has-dropdown:after {
    position: absolute;
    top: -2px;
    right: 0;
    bottom: 0;
    color: #fff;
    width: 30px;
    height: 30px;
  }
  .main-nav__main ul li.has-dropdown.active:after {
    /* content: "\f077"; */
  }
}
.main-nav__main ul li > ul {
  max-height: 0;
  overflow: hidden;
  transform: translateX(-30px);
  transition: all 0s, opacity 0.3s ease;
}
@media (min-width: 1200px) {
  .main-nav__main ul li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    display: block;
    width: 170px;
    overflow: visible;
    background-color: #199c98;
    opacity: 0;
    transform: scale(0);
    transition: all 0s, opacity 0.3s ease;
  }
}
.main-nav__main ul li > ul li {
  display: block;
  max-width: none !important;
  margin: 0;
}
.main-nav__main ul li > ul li a {
  display: block;
  padding: 2px 16px;
  text-align: left;
  transition: background-color 0.3s ease;
  color: #fff;
}
@media (min-width: 1200px) {
  .main-nav__main ul li > ul li a {
    padding: 3px 16px;
  }
}
@media (min-width: 1200px) {
  .main-nav__main ul li > ul li:hover a:hover {
    color: #000;
    /* background-color: #ccc; */
  }
}
.main-nav__main ul li > ul li:hover.has-sub-dropdown:after {
  color: #000;
}
.main-nav__main ul li.has-sub-dropdown > ul {
  top: 0;
  left: 100%;
}
@media (max-width: 1199px) {
  .main-nav__main ul li.active ul {
    max-height: 1000px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0s 0.3s, opacity 0.3s ease;
  }
}
@media (min-width: 1200px) {
  .main-nav__main ul li:hover > ul {
    max-height: 1000px;
    opacity: 1;
    transform: scale(1);
    transition: all 0s, opacity 0.3s 0.3s ease;
  }
}
@media (min-width: 1200px) {
  .main-nav__main ul li:last-child {
    max-width: 150px;
  }
}
.main-nav__main .has-dropdown {
  position: relative;
}
.main-nav__main .has-dropdown:hover > ul:before {
  position: absolute;
  top: -7px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #199c98;
  margin-left: 15px;
}
@media (min-width: 1200px) {
  .main-nav__main .has-dropdown:hover > ul:before {
    content: "";
  }
}
.main-nav__main a {
  display: flex;
  align-items: center;
  height: 100%;
  text-align: center;
  position: relative;
}
.main-nav__main a.btn.btn-primary {
  height: auto;
  padding: 4px 16px;
  white-space: nowrap;
  justify-content: center;
}
@media (max-width: 1199px) {
  .main_logo{
    width:50%;
    float: left;
  }

  .main_logo .logo{
    width: 200px;
  }

  .main-nav-wrapper{
    width:50%;
    float: right;
  }

  .main-nav a:before{
    opacity: 0;
  }

  .main-nav .main-nav__burger {
    background-color: transparent !important;
    border: 1px solid #fff;
    color: #fff;
    display: block;
    margin: auto;
  }

  .main-nav__burger i{
    font-size: 20px;
  }
  .main-nav__wrapper {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100vw;
    bottom: 0;
    padding: 50px;
    background: black;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .main-nav__wrapper .main-nav__burger {
    position: fixed;
    top: 20px;
    right: 20px;
    display: none;
    color: #fff;
  }
  .main-nav__wrapper.active {
    z-index: 11;
    overflow-y: auto;
    opacity: 1;
    transform: translateX(-100%);
  }
  .main-nav__wrapper.active .main-nav__burger {
    display: block;
  }
  .main-nav__main {
    padding: 17px 0;
    display: flex;
    justify-content: right;
  }
  .main-nav__main ul {
    display: block;
    line-height: 2.5;
  }
  .main-nav__main ul > li {
    max-width: none;
    border-bottom: 1px solid #333;
    display: inherit;
  }
  .main-nav__main ul > li a {
    color: #fff;
  }
  .main-nav__main ul > li a:hover {
    /* background-color: rgba(255, 255, 255, 0.125); */
  }
  .main-nav__main ul > li.has-dropdown.active ul {
    padding-left: 8px;
    margin-left: 0;
    border-left: 1px solid #333;
  }
  .main-nav__main ul > li.has-dropdown.active ul li {
    border-bottom: none;
  }
  .main-nav__main ul > li.has-sub-dropdown ul {
    padding-left: 8px !important;
    margin-left: 18px !important;
  }
}
/***end top menu***/

/* start slideshow */
.hero{
  position: relative;
}

.carousel-item{
  position: relative;
}

.carousel-item .hero-content{
  position: absolute;
  z-index: 111;
  top: 39%;
  text-align: center;
  width: 100%;
}

.carousel-item .hero-content h3{
  margin-top: 20px;
  width:50%;
  position: absolute;
left: 25%;
}

.carousel-item .hero-content h3 span{
  background-color: #fff;
  padding: 10px 20px;
  display: block;
}

.for-mobile {
  display: none;
}

.for-laptop{
  display: flex;
}
/* end slideshow */

/* start vacancy section */

.vacancy-wrapper{
  position: absolute;
  max-width: 300px;
  z-index: 1;
  right: 1px;
  bottom: 5px;
  background-color: #fff;
  padding:2px
}

.vacancy-wrapper .owl-nav,.vacancy-wrapper .owl-dots{
  display: none;
}

.view-more a{
  display: block;
  background: #1F1B52;
  padding: 10px;
  color: #fff;
  position: relative;
}

.view-more a:before{
  content: "";
  border: 1px solid #fff;
  width: 98%;
  height: 90%;
  position: absolute;
  top: 2px;
  left: 2px;
}

.view-more a:hover{
  background-color:#199c98
}

/* end vacancy section */

/* start about us */
.homepage-wrapper {
  padding:50px 10px;
}

.home-content-section.body {
  padding:0 20px;
}

.icon-wrapper{
  padding: 5px;
  margin: 20px 0;
  /* height: 160px; */
  border: 1px solid #eee;
}

.job-icon-img-wrapper{
  /* width: 220px;
  height: 160px; */
}
/* end about us */

/* start benefits */
.benefits-wrapper{
  background: url(../images/bg-block-top-right-2.png) no-repeat top right #eee;
}

.benefit-content{
  
}

.benefit-img{
  background: url(../images/image-2.jpg) no-repeat;
}

.benefit-img img{
  opacity: 0;
  height: 416px;
}

.head-title{
  position: relative;
  margin-bottom: 40px;
}

.head-title:before{
  content: "";
  position: absolute;
  height: 2px;
  width: 20px;
  background: #000;
  bottom: 0;
  text-align: center;
  left: 49%;

}

.benefit-content-wrapper{
  display: flex;
  align-items: center;
}
/* end benefits */

/* start service */
.services-wrapper{
  position: relative;
  background: url(../images/bg-block-left-top.png) no-repeat top left ;
}


.services_icon {
  display: block;
  margin-bottom: 10px;
}

.services-wrapper a{
  display: block;
  margin: 20px 0;
  padding: 20px;
  background-color: transparent;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  color: #1F1B52;
  box-shadow: 0 20px 70px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}

.services-wrapper a:hover {
  box-shadow: 0 20px 70px 0 rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
  background: transparent;
}

.services-wrapper a i{
  font-size: 60px;
}
/* end service */

/* start banner */
.banner-wrapper{
  background-image: url("../images/bg-4.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 110px 0px 120px 0px;
}

.banner-title{
  text-transform: uppercase;
  font-weight: bold;
}
/* end banner */

/* start testimonail */
.testimonial-wrapper{
  background: url("../images/bg-circle-right-bottom.png") no-repeat top right;
}

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

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

.testimonial-caption {
  text-align: center;
  padding: 30px 25px;
  background: #F2F2F2;
  border-radius: 10px;
  margin-bottom: 30px;
  margin-top: 40px;
}

.u-icon{
  display: block;
}

.owl-nav{
  display: none;
}

.owl-dots{
  text-align: center;
}

.owl-dots .owl-dot{
  width: 15px;
  height: 15px;
  background: #1F1B52 !important;
  border-radius: 50%;
  margin: 0 4px;
}

.owl-dot.active{
  background: #0FAAA9!important;
}
/* end testimonial */
/* start clients */
.client-wrapper{
  background: #eee;
}

.tooltip {
  position: relative;
  display: inline-block;
  color: #006080;
  opacity: 1;
  z-index: 1;
}
.tooltip .tooltiptext {
  visibility: hidden;
  position: absolute;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  z-index: 1;
  opacity: 0;
  transition: opacity .6s;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip:hover .tooltiptext2 {
  visibility: visible;
}
.tooltip-bottom {
  top: 74%;
  left: 50%;
  margin-left: -60px;
}
.tooltip-bottom::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #555 transparent;
}

.client-wrapper .tooltip img{
  border: 1px solid #ddd;
  padding: 5px;
}
/* end clients */

/* start footer */
footer{
  background:url(../images/footer-bg.png) no-repeat top left #3F3836;
  padding-bottom: 30px!important;
}

footer h5{
  position: relative;
  margin-bottom: 17px;
}

footer h5:before{
  content: "";
  position: absolute;
  height: 2px;
  width: 20px;
  background: #fff;
  bottom: 0;
  text-align: center;
  left: 0%;
}

ul.site-info {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.site-info li {
  line-height: 2.3
}
ul.site-info li a {
  color: #fff;
}
ul.site-info li:before {
  left: 0;
  top: 7px;
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-right: 7px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
ul.site-info li:hover:before {
  background: #fff
}

footer a{
  color: #fff;
}

footer a:hover{
  color: #ddd;
}

footer hr{
  opacity: 1;
}
/* end footer */

/* start about page */
.innerpage-banner-wrapper{
  background:url(../images/bg-breadcrumb.jpg) no-repeat;
  /* margin-bottom: 35px; */
  position: relative;
}

.innerpage-banner-wrapper .breadcrumb-main .heading-title{
  font-weight: bold;
  margin-bottom: 0;
}

.breadcrumb-main{
  z-index: 11;
}

.breadcrumb-main .container{
  position: relative;
}

.breadcrumb-overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(52,45,44, 0.5);
}

.breadcrumb-container-inner{
  padding-top:135px;
  padding-bottom:135px
}

.breadcrumb {
  margin-bottom: 0;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.breadcrumb li {
  float: left;
  position: relative;
  z-index: 11;
  line-height: 1;
  background: #fff;
  padding: 25px 30px;
  text-align: center;
}

.breadcrumb li a {
  color: #817a78;
}

.breadcrumb li:nth-child(2n) {
  background: #FFF8F7;
}

.innerpage-wrapper{
  background:url(../images/bg-block-bottom-right.png) no-repeat bottom right;
}

.innerpage-wrapper p{
  text-align: justify;
}

.innerpage-wrapper hr{
  margin: 30px 0;
}
 /* end about page */

 /* start contact page */
form input,.file-upload{
  display: block;
  width: 100%;
  padding: 16px 0;
  border: 0;
  font-size: 18px;
  border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
  border-bottom: #1F1B52 2px solid;
  margin-top: 10px;
  background-color: transparent;
}

.file-upload{
  padding: 8px 12px ;
  border-radius: 0;
}

.form-field {
  padding: 16px 0 0 ;
}

.form-field label{
  color: #F26F20;
}

form input:focus-visible ,form textarea:focus-visible{
  outline: 0px;
  border-bottom: #0FAAA9 2px solid;
}

form textarea {
  max-width: 100%;
  min-width: 100%;
  padding: 16px 0;
  border: 0;
  font-size: 18px;
  border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
  border-bottom: #1F1B52 2px solid;
  margin-top: 10px;
  background-color: transparent;
}

form button {
  font-size: 16px;
  padding: 10px 24px;
  text-transform: uppercase;
  margin-top: 24px;
  background-color: #f26f21;
  color: #fff;
  border: none;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  border: 2px solid #f26f21;
}

form button:hover {
  background-color: #fff;
  color: #f26f21;
  border: 2px solid #f26f2161;
}
 /* end contact page */

 /* start gallery */
 .gallery-wrapper a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  margin-bottom: 30px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0px 0px 6px #999;
  margin-bottom: 0px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-wrapper a:hover {
  box-shadow: 0px 0px 6px #666;
}
.gallery-wrapper a img {
  visibility: hidden !important;
}

.gallery-wrapper .gallery-hover-content {
  color: #000;
  text-align: center;
  width: 100%;
  padding: 10px;
  line-height: 1.2;
  transition: all 0.5s ease, opacity 0.3s ease;
  text-overflow: ellipsis;
  overflow: hidden;
  bottom: 0;
  margin-bottom: 30px;
}
 /* end gallery */

 /* start apply form */
.apply-form-wrapper{
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
}
/* end apply form */

/* start vacancy page */
.job-detail{
  border: 1px solid #ddd;
  padding: 30px;
  margin-bottom: 30px;
}

.job-detail:hover{
  box-shadow: 0 0 6px #ccc;
}

.job-detail h4{
  text-transform: uppercase;
}


.job-detail .text span {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 2.5;
}

.job-detail .text span b{
  color: #000;
}

.job-detail .text span a,.apply-now-link{
  padding: 5px 12px;
  background-color: #f26f21;
  color: #fff;
  border: none;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  border: 2px solid #f26f21;
}

.job-detail .text span a:hover,.apply-now-link:hover{
  background-color: #fff;
  color: #f26f21;
  border: 2px solid #f26f2161;
}

.apply-now-link{
  margin-bottom: 20px;
}

.job-list-wrapper{

}

.job-list-wrapper ul{
  list-style: none;
  display: flex;
  padding: 0;
}

.job-list-wrapper ul li{
  border: 1px solid #ddd;
  padding: 10px 20px;
  width: 20%;
}

.job-list-wrapper ul li:nth-child(2n) {
  background: #f4f8f8;
}

ul.list-wrapper {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.list-wrapper li {
  line-height: 2.5;
  background: url(../images/tick.png) no-repeat left 8px;
  padding-left: 26px;
}

/* end vacancy page */

@media only screen and (max-width: 750px){
  .for-mobile {
    display: flex;
  }

  .for-laptop,.top-address-wrap{
    display: none;
  }
  
  .vacancy-wrapper{
    position: relative;
    max-width: 100%;
  }

  .job-list-wrapper ul{
    display: inline;
  }

  .job-list-wrapper ul li{
    width: 100%;
  }
}