/*------------------------------ # General --------------------------*/
body {
  font-family: 'Varta', sans-serif;
  color: #444444;
  background: url("../img/bg-lines.png") repeat-x top center;
  background-size: contain;
}

a {
  color: #5FBAF5;
}

a:hover {
  color: #ffd584;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Varta', sans-serif;
}

p {
  text-align: justify;
}
/*------------------------------ Back to top button --------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #5FBAF5;
  color: #FFF;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #151515;
  color: #FFF;
}
/*-------------------------------------------------------------- # Preloader --------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #007bff;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*-------------------------------------------------------------- # Disable aos animation delay on mobile devices --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*-------------------------------------------------------------- # Header --------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(255, 255, 255, 0.8);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  float: left;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #51B5F4;
}

#header .logo img, #header.fixed-top .logo img {
  max-height: 105px;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#header.fixed-top.header-scrolled .logo img {
  max-height: 70px;
}
/*-------------------------------------------------------------- # Navigation Menu --------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #333;
  transition: 0.3s;
  font-size: 15px;
  font-family: 'Varta', sans-serif;
  font-weight: 600;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #51B5F4;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 15px;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
  border-top: 1px solid #e9e9e9;
}

.nav-menu .drop-down li:first-child {
  border-top: none;
}

.nav-menu .drop-down ul a {
  padding: 10px 30px 10px 10px;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  color: #151515;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #51B5F4;
  background: #EFF9FF;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}
/* Get Startet Button */
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #51B5F4;
}

.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 7px 20px 8px 20px;
  }
}
/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 50px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #333;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #151515;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  border-top: 1px solid #e9e9e9;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #51B5F4;
  text-decoration: none;
  background: #EFF9FF;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
/*.mobile-nav .drop-down li {
     padding-left: 20px;
}
*/
.mobile-nav .drop-down li a {
  font-size: 13px;
  color: #666;
  padding: 10px 20px 10px 30px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
/*-------------------------------------------------------------- # Hero Section --------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 600px;
  position: relative;
  margin-top: 160px;
  background-size: cover !important;
}

#hero:before {
  content: "";
    /*background: rgba(0, 0, 0, 0.6);
    */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  text-align: left;
}

#hero .hero-inner {
  position: relative;
  width: 100%;
    /*margin-top: 300px;
     padding-bottom: 150px;
    */
    /*top: -60px;
    */
  top: -100px;
}
/*#hero .hero-inner *{
     position: relative;
     z-index: 99;
}
*/
#hero .hero-inner img {
  width: 100%;
  margin-top: -10px;
}
/*#hero .hero-inner::after{
     content: '';
     position: absolute;
     display: block;
     background: rgba(203,231,248,0.7);
     width: 110%;
     height: 120%;
     left: -2%;
     top: 0;
     bottom: 0;
     right: 0;
     margin: auto;
     border-radius: 30px;
     z-index: -1;
}
*/
#hero h1 {
  margin: 0 0 20px 0;
  font-size: 44px;
  font-weight: 500;
  line-height: 60px;
  color: #18537b;
  font-family: 'Varta', sans-serif;
  padding-right: 20%;
}

#hero h1 span {
  color: #666;
}

#hero h2 {
  color: rgba(0, 0, 0, 0.6);
  margin: 10px 0 40px 0;
  font-size: 24px;
  padding-right: 20%;
  line-height: 40px;
}

#hero h3 {
  font-size: 1.25rem;
  color: #51C9F4;
  text-transform: uppercase;
}

#hero h2 + a {
  background: #51B5F4;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 4px;
  text-transform: uppercase;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #51B5F4;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #51B5F4;
}

#hero .icon-box:hover {
  border-color: #51B5F4;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
/*-------------------------------------------------------------- # Sections General --------------------------------------------------------------*/
section {
    /*padding: 60px 0;
    */
  padding: 12px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2, .certificates .certificates-header h4 {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 25px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5FBAF5;
  font-family: 'Varta', sans-serif;
}
/*.section-title h2::after {
     content: "";
     width: 120px;
     height: 1px;
     display: inline-block;
     background: #ffde9e;
     margin: 4px 10px;
}
*/
.section-title h1 {
  margin: 0;
  margin: 0 0 30px 0;
  font-size: 42px;
  line-height: 46px;
  font-weight: 500;
  font-family: 'Varta', sans-serif;
  color: #18537b;
}

.contact-info h4 {
  color: #5FBAF5;
}

.category-list-w h4 {
  color: #5FBAF5;
}

.section-title p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.section-title a, .view-portfolio-btn, .view-portfolio-btn-sm {
  background: #5FBAF5;
  color: #FFF;
  border-radius: 4px;
  padding: 15px 30px;
  display: inline-block;
  font-size: 18px;
  border: 1px solid #5FBAF5;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.section-title a:hover, .view-portfolio-btn:hover, .view-portfolio-btn-sm:hover {
  background: #FFF;
  color: #5FBAF5;
  -webkit-box-shadow: 0 6px 15px #A4D9FB;
  -moz-box-shadow: 0 6px 15px #A4D9FB;
  box-shadow: 0 6px 15px #A4D9FB;
  border: 1px solid #A4D9FB;
}

.section-title-img {
    /*position: relative;
     top: -70px;
     margin-bottom: -70px;
    */
  max-width: 100%;
}

.cat-img-top img.section-title-img {
  border-radius: 10px;
  box-shadow: 2px 3px 7px #5fbaf58c;
}

.w-100 {
  width: 100%;
}

.padded-img {
  padding: 30px;
}

.padded-img-2 {
  padding: 0px 50px 0px 0px;
}

.lh-1-5 {
  line-height: 1.5;
}

.lh-1-8 {
  line-height: 1.8;
}

.lh-2 {
  line-height: 2;
}

.lh-2-5 {
  line-height: 2.5;
}

.lh-3 {
  line-height: 3;
}
/*-------------------------------------------------------------- # About --------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: 'Varta', sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #007bff;
}

.about .content p:last-child {
  margin-bottom: 0;
}
/*-------------------------------------------------------------- # Clients --------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients-header {
  background: #5FBAF5;
  padding: 25px 40px 14px 40px;
  position: relative;
}

.clients-header h3 {
  color: #FFF;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 37px;
}

#hero h1 p {
  text-align: left;
}
/*.contact-address.clearfix.mb-3 address {
     padding-right: 210px;
}
*/
span.phone-left {
  float: left;
  margin-bottom: 13px;
  padding-right: 10px;
  width: 100%;
}

span.email-right {
  float: left;
}

ul.infor-it.f-info-left {
  float: left;
  margin-right: 50px;
}
/*.clients-header::after{
     content: '';
     background: url(../img/dots-small.png) no-repeat center center;
     position: absolute;
     width: 100%;
     height: 100%;
     left: 0;
     right: 100%;
     bottom: 0;
     top: 0;
     margin:auto;
}
*/
.view-portfolio-btn-sm {
  font-size: 15px;
  padding: 7px 15px 3px 15px;
}

.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.clients .owl-item img {
    /*width: 70%;
     opacity: 0.5;
    */
  transition: 0.3s;
    /*-webkit-filter: grayscale(100);
     filter: grayscale(100);
    */
  border: 1px solid #f2f2f2;
}

.clients .owl-item img:hover {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.clients .owl-nav, .clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.clients .owl-dot.active {
  background-color: #51B5F4 !important;
}
/*-------------------------------------------------------------- # Features --------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #51B5F4;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}
/*-------------------------------------------------------------- # Services --------------------------------------------------------------*/
.services .icon-box {
  text-align: left;
  border: 1px solid #ebebeb;
  padding: 20px 20px 25px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  width: 100%;
}

.why-choose-home {
  padding: 40px 0 0 0;
}

.services .icon-box .icon {
  margin: 0 auto 0 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon .img-replace-hover {
  position: relative;
  width: 50px;
  height: 50px;
}

.services .icon-box .icon .img-replace-hover .img-icon-dark, .services .icon-box .icon .img-replace-hover .img-icon-light {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
  filter: grayscale(100%);
}

.services .icon-box:hover .icon .img-replace-hover .img-icon-light, .services .icon-box:hover .icon .img-replace-hover .img-icon-light {
  filter: grayscale(0);
}
/*.services .icon-box .icon .img-replace-hover .img-icon-light{
     z-index: 0;
     opacity: 0;
}
*/
.services .icon-box:hover .icon .img-replace-hover .img-icon-dark {
  filter: grayscale(0);
}

.services .icon-box:hover .icon .img-replace-hover .img-icon-light {
  filter: grayscale(0);
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 1.25rem;
  min-height: 50px;
}

.certificate-img img {
    /*max-width: 280px;
    */
  max-width: 222px;
  padding-top: 10px;
}

.services .icon-box h4 a {
  color: #5FBAF5;
  transition: ease-in-out 0.3s;
}

.services .icon-box:hover h4 a {
  color: #1B3B58;
}

.services .icon-box p {
  line-height: 1.7;
  font-size: .9rem;
  margin-bottom: 0;
}

section#services .icon-box p {
    /* height: 70px;
     overflow: auto;
    */
  padding-right: 7px;
}

.icon-box.home-why-choose p {
  height: 70px;
  overflow: auto;
  padding-right: 7px;
}

.contact-page address {
  padding-right: 0 !important;
}

section#contact {
  border-bottom: 1px solid #cccccc52;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
/*-------------------------------------------------------------- # Cta --------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: 'Varta', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #51B5F4;
  border-color: #51B5F4;
  color: #151515;
}
/*-------------------------------------------------------------- # Portfolio --------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #151515;
  background: #51B5F4;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.portfolio .portfolio-wrap .portfolio-info::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info * {
  position: relative;
  z-index: 5;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #51B5F4;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  opacity: 1;
}
/*.portfolio .portfolio-wrap:hover img {
     transform: scale(1.2);
}
*/
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
/*.leaf-pattern{
     background: url(../img/home-bg.png) no-repeat 0 0;
}
*/
.certificates-img-block {
  width: 300px;
}

.certificates .container {
  background: #FFF;
  box-shadow: 0 6px 30px rgba(0,0,0,0.1);
  padding: 0;
}

.leaf-pattern {
  padding: 60px 0;
  background: url(../img/leaf-pattern.jpg);
}

section#certificates {
  padding: 35px 0;
}

.leaf-pattern h2 {
  font-size: 1.75rem;
  color: #18537b;
}

.leaf-pattern .padded-img-2 img.w-100 {
  max-width: 265px;
}

.leaf-pattern .container {
  box-shadow: none;
    /*background: url(../img/home-bg.png) no-repeat center 100%;
     background-size: contain;
     padding: 0 50px 105px 100px;
    */;
}

.certificates .certificates-header {
  padding: 20px 20px 20px 40px;
}

.leaf-pattern .certificates-header {
  padding: 0px 20px 20px 40px;
}

.certificates .certificates-header h3 {
  color: #18537b;
  margin-bottom: 12px;
  margin-top: 20px;
}

.certificates .certificates-header h2 {
  color: #18537b;
  margin-bottom: 20px;
}

.certificates .certificates-header h4 {
}

.certificates .certificates-header p {
  font-size: .9rem;
  line-height: 1.7;
}

section#about {
  padding: 60px 0;
}
/*-------------------------------------------------------------- # Counts --------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #51B5F4;
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: 'Varta', sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: 'Varta', sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  background: url("../img/counts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}
/*-------------------------------------------------------------- # Testimonials --------------------------------------------------------------*/
.testimonials {
  padding: 40px 0;
  background: url("../img/blue-background.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.testimonials .owl-dot.active {
  background-color: #51B5F4 !important;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
/*-------------------------------------------------------------- # Team --------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #007bff;
}

.team .member .social a:hover {
  color: #fff;
  background: #51B5F4;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

.hero-inner-content-block {
  position: relative;
}

.hero-inner-content-block-left {
  float: left;
  width: 60%;
}

.hero-inner-content-block-img {
  overflow: auto;
  width: 40%;
}
/*-------------------------------------------------------------- # Contact --------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #51B5F4;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.php-email-form {
  width: 100%;
}

.php-email-form .form-group {
  padding-bottom: 8px;
}

.php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .error-message br + br {
  margin-top: 25px;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.php-email-form input, .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: #FFF;
}

.php-email-form input:focus, .php-email-form textarea:focus {
  border-color: #51B5F4;
  color: #FFF;
  background: transparent;
}

.php-email-form input {
  height: 44px;
}

.php-email-form textarea {
  padding: 10px 12px;
}

.php-email-form button[type="submit"] {
  background: #FFF;
  border: 0;
  padding: 10px 24px;
  color: #333;
  transition: 0.4s;
  border-radius: 4px;
}

.php-email-form button[type="submit"]:hover {
  background: #ffcd6b;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*-------------------------------------------------------------- # Breadcrumbs --------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*-------------------------------------------------------------- # Portfolio Details --------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #51B5F4 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 992px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }

  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

#contact .contact-info i, #contact .contact-info i, #contact .contact-info i {
  font-size: 20px;
  color: #5FBAF5;
  float: left;
  margin-right: 10px;
  line-height: 1;
  margin-top: 2px;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact .contact-info i:hover {
  color: #143553;
}

#contact .contact-info address, #contact .contact-info p {
  margin-bottom: 0;
  color: #666;
  padding-top: 2px;
  overflow: hidden;
  text-align: left;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #666;
}

#contact .contact-info a:hover {
  color: #111;
}
/*-------------------------------------------------------------- # Footer --------------------------------------------------------------*/
#footer {
  background: #FFF;
  padding: 0 0 30px 0;
  color: #333;
  font-size: 14px;
}

#footer .footer-top {
  background: url(../img/footer-blue-bg.jpg);
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 20px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  color: #FFF;
}

#footer .footer-top .footer-info h2 {
  font-size: 40px;
  margin: 0 0 20px 0;
  padding: 2px 50px 2px 0;
  line-height: 1;
  font-weight: 400;
  color: #FFF;
  line-height: 44px;
}

#footer .footer-top .footer-info h3 span {
  color: #007bff;
}

#footer .footer-top .footer-info p {
  font-size: .9rem;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 0;
  font-family: 'Varta', sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #51B5F4;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #51B5F4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #51B5F4;
}
/*#footer .footer-top .footer-newsletter form {
     margin-top: 30px;
     background: #fff;
     padding: 6px 10px;
     position: relative;
     border-radius: 4px;
}
 #footer .footer-top .footer-newsletter form input[type="email"] {
     border: 0;
     padding: 4px;
     width: calc(100% - 110px);
}
*/
#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #51B5F4;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: left;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 30px;
  text-align: right;
  font-size: 13px;
  color: #333;
}

.main-banner-owl-carousel .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 60px;
}

.main-banner-owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 40px;
  color: #FFF;
}

.main-banner-owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 40px;
  color: #FFF;
}

.main-banner-owl-carousel .owl-nav button.owl-prev span, .main-banner-owl-carousel .owl-nav button.owl-next span {
  padding-left: 10px;
  padding-right: 10px;
}

.md-accordion .card {
  overflow: visible;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.md-accordion .card:first-of-type, .md-accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 1px solid #e0e0e0;
}

.md-accordion .card .card-header {
  padding: 1rem 1.5rem;
  background: transparent;
  border-bottom: 0;
}

.md-accordion .card .card-header .card-title {
  font-weight: 400;
}

.md-accordion .card .card-header a, .md-accordion .card .card-header a.collapsed:hover {
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  color: #5FBAF5;
}

.md-accordion .card .card-header a.collapsed {
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  color: #4d5b68;
}

.md-accordion .card .card-header a:not(.collapsed) .rotate-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.md-accordion .card .fa-angle-down {
  float: right;
}

.md-accordion .card .card-body {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.7;
  color: #626262;
  text-align: justify;
}

.accordion-gradient-bcg {
  background: linear-gradient(45deg, rgba(234,21,129,0.6), rgba(10,23,187,0.6) 100%);
}

.accordion.md-accordion.accordion-1 p, .accordion.md-accordion.accordion-2 p, .accordion.md-accordion.accordion-3 p, .accordion.md-accordion.accordion-4 p, .accordion.md-accordion.accordion-5 p {
  font-size: 1rem;
}

.accordion.md-accordion.accordion-1 .card,.accordion.md-accordion.accordion-2 .card, .accordion.md-accordion.accordion-4 .card,.accordion.md-accordion.accordion-5 .card {
  border: 0;
}

.accordion.md-accordion.accordion-1 .card .card-header,.accordion.md-accordion.accordion-2 .card .card-header,.accordion.md-accordion.accordion-4 .card .card-header,.accordion.md-accordion.accordion-5 .card .card-header {
  border: 0;
}

.accordion.md-accordion.accordion-1 .card .card-body {
  line-height: 1.4;
}

.accordion.md-accordion.accordion-2 .card {
  background-color: transparent;
}

.accordion.md-accordion.accordion-2 .card .card-body {
  border: 0;
  border-radius: 3px;
}

.accordion.md-accordion.accordion-3 {
  border-radius: 3px;
}

.accordion.md-accordion.accordion-3 .fas.fa-angle-down,.accordion.md-accordion.accordion-3 .fab.fa-angle-down,.accordion.md-accordion.accordion-3 .far.fa-angle-down {
  margin-top: -10px;
}

.accordion.md-accordion.accordion-4 .card:last-of-type .card-body {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.accordion.md-accordion.accordion-5 .card {
  background-color: transparent;
}

.accordion.md-accordion.accordion-5 .card .card-header {
  background-color: #f44336;
  -webkit-transition: .3s;
  transition: .3s;
}

.accordion.md-accordion.accordion-5 .card .card-header:hover {
  background-color: #455a64;
  -webkit-transition: .3s;
  transition: .3s;
}

.accordion.md-accordion.accordion-5 .card .card-header .fas,.accordion.md-accordion.accordion-5 .card .card-header .fab,.accordion.md-accordion.accordion-5 .card .card-header .far {
  background-color: #fff;
  border-top-left-radius: 3px;
}

.accordion.md-accordion.accordion-5 .card .card-body {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.accordion.md-accordion.accordion-blocks .card {
  margin-bottom: 1.2rem;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}

.accordion.md-accordion.accordion-blocks .card .card-body {
  border-top: 1px solid #eee;
}

#bend {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: transparent;
  top: auto;
  bottom: -10px;
  margin: auto;
}

.about-img-hover {
  position: relative;
}

.about-img-hover::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  width: 0;
  height: 60px;
  display: block;
  border-top: 2px solid rgba(0,123,255,0.5);
  border-left: 2px solid rgba(0,123,255,0.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.about-img-hover::after {
  content: '';
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 0;
  height: 60px;
  display: block;
  border-bottom: 2px solid rgba(0,123,255,0.5);
  border-right: 2px solid rgba(0,123,255,0.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.about-img-hover:hover::before, .about-img-hover:hover::after {
  opacity: 1;
  width: 90%;
}

.about-img-hover img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
  width: 100%;
  position: relative;
  opacity: 1;
}

.our-process-single h4 {
  font-size: 1.2rem;
  position: relative;
  color: #333;
}

.our-process-single h4::before {
  content: '';
  display: inline-block;
  background: #e2e2e2;
  width: 50px;
  height: 2px;
  position: relative;
  margin-right: 15px;
  top: -5px;
}

.our-process-single img {
  width: 100%;
  margin-bottom: 20px;
}

.content-padding {
  padding: 30px 50px 20px 20px !important;
}

.content-padding-large {
  padding: 80px 120px 70px 50px !important;
}

.special-head {
  font-family: 'Caveat', cursive !important;
  font-size: 54px !important;
  font-weight: 500 !important;
  margin: 0 0 25px 0;
  letter-spacing: 0px !important;
  text-transform: none !important;
  color: #111 !important;
  line-height: 1 !important;
  padding: 30px 50px !important;
}

.ntm-40 {
  margin-top: -40px;
}

.ntm-50 {
  margin-top: -50px;
}

.ntm-60 {
  margin-top: -60px;
}

.ntm-70 {
  margin-top: -70px;
}

#mainTopImgWrapper {
  margin-top: 7rem;
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }

  .section-title-img {
    position: static;
    top: 0;
    margin-bottom: 0;
  }
}
/* Slit Slider Styles Below */
.sl-slider-wrapper {
  width: 100%;
    /*height: 600px;
    */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.sl-slider {
    /*position: absolute;
    */
  top: 0;
  left: 0;
  width: 100%;
  height: auto !important;
}
/* Slide wrapper and slides */
.sl-slide, .sl-slides-wrapper, .sl-slide-inner {
    /*position: absolute;
    */
  width: 100%;
  height: 100vh
    /*100%*/;
  top: 0;
  left: 0;
}

.sl-slide {
  z-index: 1;
}
/* The duplicate parts/slices */
.sl-content-slice {
  overflow: hidden;
  position: absolute;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background: #fff;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 1;
}
/* Horizontal slice */
.sl-slide-horizontal .sl-content-slice {
  width: 100%;
  height: 50%;
  left: -200px;
  -webkit-transform: translateY(0%) scale(1);
  -moz-transform: translateY(0%) scale(1);
  -o-transform: translateY(0%) scale(1);
  -ms-transform: translateY(0%) scale(1);
  transform: translateY(0%) scale(1);
}

.sl-slide-horizontal .sl-content-slice:first-child {
  top: -200px;
  padding: 200px 200px 0px 200px;
}

.sl-slide-horizontal .sl-content-slice:nth-child(2) {
  top: 50%;
  padding: 0px 200px 200px 200px;
}
/* Vertical slice */
.sl-slide-vertical .sl-content-slice {
  width: 50%;
  height: 100%;
  top: -200px;
  -webkit-transform: translateX(0%) scale(1);
  -moz-transform: translateX(0%) scale(1);
  -o-transform: translateX(0%) scale(1);
  -ms-transform: translateX(0%) scale(1);
  transform: translateX(0%) scale(1);
}

.sl-slide-vertical .sl-content-slice:first-child {
  left: -200px;
  padding: 200px 0px 200px 200px;
}

.sl-slide-vertical .sl-content-slice:nth-child(2) {
  left: 50%;
  padding: 200px 200px 200px 0px;
}
/* Content wrapper */
/* Width and height is set dynamically */
.sl-content-wrapper {
    /*position: absolute;
    */;
}

.sl-content {
  width: 100%;
  height: 100vh
    /*100%*/;
  background: #fff;
}
/* Default styles for background colors */
.sl-slide-horizontal .sl-slide-inner {
    /*background: #ddd;
    */;
}

.sl-slide-vertical .sl-slide-inner {
    /*background: #ccc;
    */;
}

.demo-1 {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 2;
}

.demo-1 .sl-slider-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.demo-2 .sl-slider-wrapper {
  width: 100%;
  height: 100vh
    /*660px*/;
  overflow: hidden;
  position: relative;
}

.demo-2 .sl-slider h2, .demo-2 .sl-slider blockquote {
  padding: 100px 30px 10px 30px;
  width: 80%;
  max-width: 960px;
  color: #fff;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.demo-2 .sl-slider h2 {
  font-size: 100px;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
}

.demo-2 .sl-slider blockquote {
  font-size: 28px;
  padding-top: 10px;
  font-weight: 300;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
}

.demo-2 .sl-slider blockquote cite {
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 5px;
  padding-top: 30px;
  display: inline-block;
}

.demo-2 .bg-img {
  padding: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh
    /*100%*/;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center center;
}
/* Custom navigation arrows */
.nav-arrows span {
  position: absolute;
  z-index: 20;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 3px solid #ddd;
  border: 3px solid rgba(0,0,0,0.8);
  text-indent: -90000px;
  margin-top: -40px;
  cursor: pointer;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-arrows span:hover {
  border-color: rgba(150,150,150,0.9);
}

.nav-arrows span.nav-arrow-prev {
  left: 2%;
  border-right: none;
  border-top: none;
}

.nav-arrows span.nav-arrow-next {
  right: 2%;
  border-left: none;
  border-bottom: none;
}
/* Custom navigation dots */
.nav-dots {
  text-align: center;
  position: absolute;
  bottom: 2%;
  height: 30px;
  width: 100%;
  left: 0;
  z-index: 10;
}

.nav-dots span {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 3px;
  background: #ddd;
  background: rgba(150,150,150,0.4);
  cursor: pointer;
  box-shadow: 0 1px 1px rgba(255,255,255,0.4), inset 0 1px 1px rgba(0,0,0,0.1);
}

.demo-2 .nav-dots span {
  background: rgba(150,150,150,0.1);
  margin: 6px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 0 1px 1px rgba(0,0,0,0.4), inset 0 1px 1px rgba(0,0,0,0.1), 0 0 0 2px rgba(0,0,0,0.5);
}

.demo-2 .nav-dots span.nav-dot-current, .demo-2 .nav-dots span:hover {
  box-shadow: 0 1px 1px rgba(0,0,0,0.4), inset 0 1px 1px rgba(0,0,0,0.1), 0 0 0 5px rgba(0,0,0,0.5);
}

.nav-dots span.nav-dot-current:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: rgba(0,0,0,0.8);
}
/* Content elements */
.demo-1 .deco {
  width: 260px;
  height: 260px;
  border: 2px dashed #ddd;
  border: 2px dashed rgba(150,150,150,0.4);
  border-radius: 50%;
  position: absolute;
  bottom: 50%;
  left: 50%;
  margin: 0 0 0 -130px;
}

.demo-1 [data-icon]:after {
  content: attr(data-icon);
  font-family: 'AnimalsNormal';
  color: #999;
  text-shadow: 0 0 1px #999;
  position: absolute;
  width: 220px;
  height: 220px;
  line-height: 220px;
  text-align: center;
  font-size: 100px;
  top: 50%;
  left: 50%;
  margin: -110px 0 0 -110px;
  box-shadow: inset 0 0 0 10px #f7f7f7;
  border-radius: 50%;
}

.demo-1 .sl-slide h2 {
  color: #000;
  text-shadow: 0 0 1px #000;
  padding: 20px;
  position: absolute;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 13px;
  text-transform: uppercase;
  width: 80%;
  left: 10%;
  text-align: center;
  line-height: 50px;
  bottom: 50%;
  margin: 0 0 -120px 0;
}

.demo-1 .sl-slide blockquote {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  height: 70px;
  color: #8b8b8b;
  z-index: 2;
  bottom: 50%;
  margin: 0 0 -200px 0;
  padding: 0;
}

.demo-1 .sl-slide blockquote p {
  margin: 0 auto;
  width: 60%;
  max-width: 400px;
  position: relative;
}

.demo-1 .sl-slide blockquote p:before {
  color: #f0f0f0;
  color: rgba(244,244,244,0.65);
  font-family: "Bookman Old Style", Bookman, Garamond, serif;
  position: absolute;
  line-height: 60px;
  width: 75px;
  height: 75px;
  font-size: 200px;
  z-index: -1;
  left: -80px;
  top: 35px;
  content: '\201C';
}

.demo-1 .sl-slide blockquote cite {
  font-size: 10px;
  padding-top: 10px;
  display: inline-block;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 4px;
}
/* Custom background colors for slides in first demo */
/* First Slide */
.demo-1 .bg-1 .sl-slide-inner, .demo-1 .bg-1 .sl-content-slice {
  background: #fff;
}
/* Second Slide */
.demo-1 .bg-2 .sl-slide-inner, .demo-1 .bg-2 .sl-content-slice {
  background: #000;
}

.demo-1 .bg-2 [data-icon]:after, .demo-1 .bg-2 h2 {
  color: #fff;
}

.demo-1 .bg-2 blockquote:before {
  color: #222;
}
/* Third Slide */
.demo-1 .bg-3 .sl-slide-inner, .demo-1 .bg-3 .sl-content-slice {
  background: #db84ad;
}

.demo-1 .bg-3 .deco {
  border-color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.demo-1 .bg-3 [data-icon]:after {
  color: #fff;
  text-shadow: 0 0 1px #fff;
  box-shadow: inset 0 0 0 10px #b55381;
}

.demo-1 .bg-3 h2, .demo-1 .bg-3 blockquote {
  color: #fff;
  text-shadow: 0px 1px 1px rgba(0,0,0,0.3);
}

.demo-1 .bg-3 blockquote:before {
  color: #c46c96;
}
/* Forth Slide */
.demo-1 .bg-4 .sl-slide-inner, .demo-1 .bg-4 .sl-content-slice {
  background: #5bc2ce;
}

.demo-1 .bg-4 .deco {
  border-color: #379eaa;
}

.demo-1 .bg-4 [data-icon]:after {
  text-shadow: 0 0 1px #277d87;
  color: #277d87;
}

.demo-1 .bg-4 h2, .demo-1 .bg-4 blockquote {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

.demo-1 .bg-4 blockquote:before {
  color: #379eaa;
}
/* Fifth Slide */
.demo-1 .bg-5 .sl-slide-inner, .demo-1 .bg-5 .sl-content-slice {
  background: #ffeb41;
}

.demo-1 .bg-5 .deco {
  border-color: #ECD82C;
}

.demo-1 .bg-5 .deco:after {
  color: #000;
  text-shadow: 0 0 1px #000;
}

.demo-1 .bg-5 h2, .demo-1 .bg-5 blockquote {
  color: #000;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.demo-1 .bg-5 blockquote:before {
  color: #ecd82c;
}
/*.demo-2 .bg-img-1 {
     background-image: url(../img/slitslider/banner-1.jpg);
}
 .demo-2 .bg-img-2 {
     background-image: url(../img/slitslider/banner-2.jpg);
}
 .demo-2 .bg-img-3 {
     background-image: url(../img/slitslider/banner-3.jpg);
}
 .demo-2 .bg-img-4 {
     background-image: url(../img/slitslider/banner-4.jpg);
}
*/
/*.demo-2 .bg-img-5 {
     background-image: url(../img/slitslider/5.jpg);
}
*/
/* Animations for content elements */
.sl-trans-elems .deco {
  -webkit-animation: roll 1s ease-out both, fadeIn 1s ease-out both;
  -moz-animation: roll 1s ease-out both, fadeIn 1s ease-out both;
  -o-animation: roll 1s ease-out both, fadeIn 1s ease-out both;
  -ms-animation: roll 1s ease-out both, fadeIn 1s ease-out both;
  animation: roll 1s ease-out both, fadeIn 1s ease-out both;
}

.sl-trans-elems h2 {
  -webkit-animation: moveUp 1s ease-in-out both;
  -moz-animation: moveUp 1s ease-in-out both;
  -o-animation: moveUp 1s ease-in-out both;
  -ms-animation: moveUp 1s ease-in-out both;
  animation: moveUp 1s ease-in-out both;
}

.sl-trans-elems blockquote {
  -webkit-animation: fadeIn 0.5s linear 0.5s both;
  -moz-animation: fadeIn 0.5s linear 0.5s both;
  -o-animation: fadeIn 0.5s linear 0.5s both;
  -ms-animation: fadeIn 0.5s linear 0.5s both;
  animation: fadeIn 0.5s linear 0.5s both;
}

.sl-trans-back-elems .deco {
  -webkit-animation: scaleDown 1s ease-in-out both;
  -moz-animation: scaleDown 1s ease-in-out both;
  -o-animation: scaleDown 1s ease-in-out both;
  -ms-animation: scaleDown 1s ease-in-out both;
  animation: scaleDown 1s ease-in-out both;
}

.sl-trans-back-elems h2 {
  -webkit-animation: fadeOut 1s ease-in-out both;
  -moz-animation: fadeOut 1s ease-in-out both;
  -o-animation: fadeOut 1s ease-in-out both;
  -ms-animation: fadeOut 1s ease-in-out both;
  animation: fadeOut 1s ease-in-out both;
}

.sl-trans-back-elems blockquote {
  -webkit-animation: fadeOut 1s linear both;
  -moz-animation: fadeOut 1s linear both;
  -o-animation: fadeOut 1s linear both;
  -ms-animation: fadeOut 1s linear both;
  animation: fadeOut 1s linear both;
}

@-webkit-keyframes roll {
  0% {
    -webkit-transform: translateX(500px) rotate(360deg);
  }

  100% {
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}

@-moz-keyframes roll {
  0% {
    -moz-transform: translateX(500px) rotate(360deg);
    opacity: 0;
  }

  100% {
    -moz-transform: translateX(0px) rotate(0deg);
    opacity: 1;
  }
}

@-o-keyframes roll {
  0% {
    -o-transform: translateX(500px) rotate(360deg);
    opacity: 0;
  }

  100% {
    -o-transform: translateX(0px) rotate(0deg);
    opacity: 1;
  }
}

@-ms-keyframes roll {
  0% {
    -ms-transform: translateX(500px) rotate(360deg);
    opacity: 0;
  }

  100% {
    -ms-transform: translateX(0px) rotate(0deg);
    opacity: 1;
  }
}

@keyframes roll {
  0% {
    transform: translateX(500px) rotate(360deg);
    opacity: 0;
  }

  100% {
    transform: translateX(0px) rotate(0deg);
    opacity: 1;
  }
}

@-webkit-keyframes moveUp {
  0% {
    -webkit-transform: translateY(40px);
  }

  100% {
    -webkit-transform: translateY(0px);
  }
}

@-moz-keyframes moveUp {
  0% {
    -moz-transform: translateY(40px);
  }

  100% {
    -moz-transform: translateY(0px);
  }
}

@-o-keyframes moveUp {
  0% {
    -o-transform: translateY(40px);
  }

  100% {
    -o-transform: translateY(0px);
  }
}

@-ms-keyframes moveUp {
  0% {
    -ms-transform: translateY(40px);
  }

  100% {
    -ms-transform: translateY(0px);
  }
}

@keyframes moveUp {
  0% {
    transform: translateY(40px);
  }

  100% {
    transform: translateY(0px);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes scaleDown {
  0% {
    -webkit-transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.5);
  }
}

@-moz-keyframes scaleDown {
  0% {
    -moz-transform: scale(1);
  }

  100% {
    -moz-transform: scale(0.5);
  }
}

@-o-keyframes scaleDown {
  0% {
    -o-transform: scale(1);
  }

  100% {
    -o-transform: scale(0.5);
  }
}

@-ms-keyframes scaleDown {
  0% {
    -ms-transform: scale(1);
  }

  100% {
    -ms-transform: scale(0.5);
  }
}

@keyframes scaleDown {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.5);
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-ms-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
/* Media Queries for custom slider */
@media screen and (max-width: 660px) {
  .demo-1 .deco {
    width: 130px;
    height: 130px;
    margin-left: -65px;
    margin-bottom: 50px;
  }

  .demo-1 [data-icon]:after {
    width: 110px;
    height: 110px;
    line-height: 110px;
    font-size: 40px;
    margin: -55px 0 0 -55px;
  }

  .demo-1 .sl-slide blockquote {
    margin-bottom: -120px;
  }

  .demo-1 .sl-slide h2 {
    line-height: 22px;
    font-size: 18px;
    margin-bottom: -40px;
    letter-spacing: 8px;
  }

  .demo-1 .sl-slide blockquote p:before {
    line-height: 10px;
    width: 40px;
    height: 40px;
    font-size: 120px;
    left: -45px;
  }

  .demo-2 .sl-slider-wrapper {
    height: 500px;
  }

  .demo-2 .sl-slider h2 {
    font-size: 36px;
  }

  .demo-2 .sl-slider blockquote {
    font-size: 16px;
  }
}

.contact-info-bg {
  background: url(../img/contact-us-section-image.jpg) no-repeat center center;
  background-size: cover;
  min-height: 500px;
  padding: 120px 125px 50px 125px;
}

.social-icons {
  list-style: none;
  float: none;
  margin: 30px 0 0 0;
  padding: 0;
  text-align: left;
}

.social-icons li {
  font-size: 1.4rem;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

.social-icons li {
  font-size: 1.4rem;
  display: inline-block;
  margin-left: 5px;
  margin-right: 0px;
}

.infor-it {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.infor-it li {
  list-style-type: none;
  padding-bottom: 2px;
    /*border-bottom: 1px solid rgba(0,0,0,0.1);
    */
  padding-left: 0;
  margin-bottom: 10px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.infor-it li a img {
  width: 18px;
}
/*.infor-it li::before{
     content: '';
     width: 20px;
     height: 1px;
     background: #e2e2e2;
     position: absolute;
     left: 15px;
     right:auto;
     top: -4px;
     bottom: 0;
     margin: auto;
     display: block;
     -webkit-transition: all 0.3s ease;
     -ms-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     transition: all 0.3s ease;
}
*/
.infor-it li:hover {
  padding-left: 10px;
}

.infor-it li:hover::before {
  left: 25px;
}

.ft-heading {
  margin-bottom: 20px;
  position: relative;
}

.ft-heading::after {
  content: '';
  width: 20px;
  height: 2px;
  background: #e2e2e2;
  display: block;
}

#menu {
  background-color: #FFF;
}

#menu li {
  list-style: none;
  margin: 0.7rem auto;
  display: block;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 1px dotted rgba(0,0,0,0.2);
}

#menu li:hover {
  padding-left: 10px;
}

#menu li a {
  color: #111;
  display: block;
  text-decoration: none;
}

#menu li a img, .infor-it li a img {
  width: 22px;
  height: auto;
  margin-right: 10px;
}

#menu li a:hover {
  color: #5FBAF5;
}

#menu > div:not(.wrapper) {
    /*background-color: #eee;
     -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    */;
}

.wrapper {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: relative;
  -webkit-overflow-scrolling: touch;
  padding: 25px;
}

.wrapper h5 {
  margin: 30px 0 0 0;
  color: #111;
  font-weight: 300;
  color: #999;
  font-size: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.wrapper ul {
  padding-left: 0;
}

.wrapper ul li ul {
  padding: 0 15px;
  margin: 0;
  width: 100%;
}

.wrapper ul li ul li {
  margin: 0 auto!important;
  padding: 0.4rem 0;
  width: 100%;
  display: block;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.wrapper ul li ul li a {
  color: #666 !important;
}

.wrapper ul li ul li a:hover {
  color: #007bff !important;
}

.wrapper ul li ul li:last-child {
  border-bottom: none !important;
}

#openMenu {
}

#closeMenu {
  position: absolute;
  top: 0;
  right: 0;
  color: #111;
  z-index: 1;
  padding: 7px 13px 5px 10px;
  cursor: pointer;
  background: rgba(0,0,0,0.1);
  border-bottom-left-radius: 6px;
}

#closeMenu img {
  width: 10px;
  height: auto;
  position: relative;
  margin-left: 5px;
  top: -2px;
}

#menu .social-icons {
  margin-top: 0;
}

#menu .social-icons li {
  list-style: none;
  margin: 0.7rem 0.5rem;
  display: inline-block;
  border-bottom: none;
}

#menu .social-icons li a {
  font-size: 15px;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#menu .social-icons li:hover {
  padding-left: 0;
}

#menu .social-icons li a:hover {
  color: #007bff;
}

.menu-btn {
    /*cursor: pointer;
     float: right;
     padding: 25px 0;
     position: relative;
     text-align: right;
     text-transform: uppercase;
     margin-top:10px;
     color:#000;
     transition: all 0.3s ease 0s;
     -webkit-transition: all 0.3s ease 0s;
    */
  cursor: pointer;
  float: right;
  padding: 25px 0;
  position: relative;
  text-align: right;
  text-transform: uppercase;
  margin-top: 10px;
  color: #000;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  display: inline-block;
}

.menu-btn:hover {
  opacity: 1;
}

.menu-btn img {
  width: auto;
  height: 15px;
  padding-left: 5px;
  position: relative;
  top: -2px;
}

.menu-btn::before, .menu-btn::after {
  background: rgba(0, 0, 0, 0) url("../img/menu-icon-open.png") no-repeat scroll center center / 20px auto;
  content: "";
  display: block;
  height: 18px;
  opacity: 0;
  position: absolute;
  right: -1px;
  top: 30px;
  transition: all 0.3s ease-in-out 0s;
  width: 22px;
}

.menu-btn::after {
  top: 30px;
}

.menu-btn:hover::before {
  opacity: 1;
  top: 15px;
}

.menu-btn:hover::after {
  opacity: 1;
  top: 35px;
}

#accordionMenu {
  max-width: 100%;
}

.panel-body {
  padding: 0;
}

.panel-group .panel+.panel {
  margin-top: 0;
  border-top: 0;
}

.panel-group .panel {
  border-radius: 0;
}

.panel-default>.panel-heading {
  color: #333;
  border-color: #e4e5e7;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.panel-default>.panel-heading h4.panel-title {
  margin-bottom: 0;
}

.panel-default>.panel-heading a {
  display: block;
  padding: 2px 15px 2px 0;
  text-decoration: none;
  font-size: 17px;
}

.panel-default>.panel-heading a:after {
  content: "";
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'boxicons';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  float: right;
  transition: transform .25s linear;
  -webkit-transition: -webkit-transform .25s linear;
}
/*.panel-default>.panel-heading a[aria-expanded="true"] {
     background-color: #eee;
}
 */
.panel-default>.panel-heading a[aria-expanded="true"]:after {
  content: "\ea24";
}

.panel-default>.panel-heading a[aria-expanded="false"]:after {
  content: "\ea17";
}

.read-more-btn {
  border-bottom: 2px solid #e2e2e2;
  padding: 0 5px;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  border-bottom: 2px solid #FFF;
  color: #4d5b68;
}

.read-more-btn i {
  position: relative;
  top: 2px;
}
/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform .5s ease;
}
/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.2);
}
/* [2] Transition property for smooth transformation of images */
.img-hover-shadow {
  position: relative;
}

.img-hover-shadow img {
  transition: all .5s ease;
  box-shadow: 0px 8px 20px 10px rgba(255,255,255,0.1);
}
/* [3] Finally, transforming the image when container gets hovered */
.img-hover-shadow:hover img {
  transform: scale(0.95);
  box-shadow: 0px 8px 20px 10px rgba(0,0,0,0.1);
}

.category-list {
  text-align: center;
  margin-bottom: 3%;
}

.category-list-w .height-fixed {
  height: 75px;
  overflow: auto;
  font-size: 14px;
}

.category-list-w .height-fixed h3 {
  font-size: 1rem;
  line-height: 1.5rem;
}

* {
  scrollbar-width: thin;
  scrollbar-color: blue orange;
}
/* Works on Chrome/Edge/Safari */
*::-webkit-scrollbar {
  width: 2px;
}

*::-webkit-scrollbar-track {
  background: #dcdcdc;
}

*::-webkit-scrollbar-thumb {
  background-color: #5fbaf5+;
  border-radius: 20px;
  border: 3px solid #5fbaf5;
}

.our-infra h2 {
  margin: 0 0 30px 0;
  font-size: 1.5rem;
  line-height: 46px;
  font-weight: 700;
  font-family: 'Varta', sans-serif;
  color: #5FBAF5;
}

.box-bg {
  border: 25px solid #ccc;
  border-radius: 10px;
  padding: 30px 0 0 35px;
  background: url(../images/bg-top.png) no-repeat -128px -165px, url(../images/bg-bt.png) no-repeat 151% 207px;
  background-size: contain;
  border-color: #d6360059 #a0dcf38c #79b74b91 #f7c3137d;
}

.about-bg p {
  color: #000;
}

.mission-vission h3 {
  font-size: 23px;
  font-weight: 700;
}

.mission-vission h4.lh-1-5 {
  font-size: 17px;
  height: 200px;
  overflow: auto;
  margin-bottom: 35px;
  padding-right: 15px;
  text-align: justify;
}

.mission-vission {
  padding: 25px;
}

.about-us-page h3 {
  text-align: center;
  color: #848484;
  margin-bottom: 30px;
}

.about-us-page h3 span {
  border-bottom: 3px solid #5fbaf5;
  color: #000;
}

.mission-w {
  position: relative;
  padding-left: 25px;
  margin-bottom: 40px;
}

.mission-w:before {
  content: '';
  position: absolute;
  left: -5px;
  top: -3px;
  font-size: 71px;
  color: #5fbaf5;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #5fbaf5;
}

.mission-w:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 80px;
  border-left: 1px solid #5fbaf5;
  width: 1px;
  height: 100%;
}

.mission-w h4 strong {
  font-size: 31px;
}

.mission-w h4 strong span {
  color: #5fbaf5;
}

.vission-w {
  position: relative;
  padding-left: 25px;
  border-top: 1px solid #5fbaf5;
  padding-top: 20px;
}

.vission-w:before {
  content: '';
  position: absolute;
  right: -4px;
  bottom: -2px;
  font-size: 71px;
  color: #5fbaf5;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #5fbaf5;
}

.vission-w:after {
  content: '';
  position: absolute;
  right: 0px;
  top: -1px;
  font-size: 80px;
  border-left: 1px solid #5fbaf5;
  width: 1px;
  height: 100%;
}

.vission-w h4 strong {
  font-size: 31px;
}

.vission-w h4 strong span {
  color: #5fbaf5;
}

.about-us-page p {
  font-size: .9rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 10px;
}

.video-s {
  padding: 20px 24px 20px 0;
}

.about-us-page h5 {
  font-size: 24px;
  color: #000;
  border-bottom: 2px solid #5fbaf5;
  padding-bottom: 10px;
}

.industry-w {
  text-align: right;
  margin-bottom: 3%;
}

.industry-content-w {
  background: #ffffff;
  padding: 40px;
  width: 86%;
  border: 16px solid #60baf5;
  position: relative;
  border-radius: 40px;
  display: inline-block;
}

.about-us-page.m-v-i img.img-fluid.mb-3.padded-img.pt-0.pb-0 {
  max-width: 170px;
  margin-top: 45px;
}

.industry-content-w:after {
  position: absolute;
  content: '';
  color: #ff0000;
  right: -62px;
  top: 56px;
  font-size: 43px;
  background: url("../img/what-we-do-content-bg.png") no-repeat 0 0;
  width: 58px;
  height: 115px;
  background-size: cover !important;
    /* border-radius: 22px;
     */
    /* transform: rotateX(3deg);
    */;
}

.indus-img img {
  background: #fff;
  border-radius: 50%;
  padding: 59px 0px;
  overflow: hidden;
  width: 250px;
  height: 250px;
  border: 16px solid #60baf5;
}
/*.industry-content-w.left-a {
     float: right;
}
*/
.industry-content-w.left-a:after {
  position: absolute;
  content: '';
  color: #ff0000;
  left: -62px;
  top: 56px;
  font-size: 43px;
  background: url("../img/what-we-do-content-bg.png") no-repeat 0 0;
  width: 58px;
  height: 115px;
  background-size: cover !important;
    /*border-radius: 22px;
     transform: rotateX(3deg);
    */;
}

.blue-border img {
  border-color: #5fb9f4;
}

.blue-border .industry-content-w {
  border-color: #5fb9f4;
}

.blue-border .industry-content-w:after {
  background: url("../img/what-we-do-content-bg.png") no-repeat 0 0;
}

.yellow-border img {
  border-color: #5fb9f4;
}

.yellow-border .industry-content-w {
  border-color: #5fb9f4;
}

.yellow-border .industry-content-w:after {
  background: url("../img/what-we-do-content-bg.png") no-repeat 0 0;
}

.what-do-we-do h4.lh-1-5 {
  color: #5FBAF5;
}

.fixed-height {
  height: 120px;
  overflow: auto;
  padding-right: 10px;
}

.indus-img.right-a {
  text-align: right;
}

.bg-dg.industry-vw {
  background: #6f6f6e;
  color: #fff;
  padding: 50px;
  text-align: center;
  margin-bottom: 6%;
}

.bg-dg.industry-vw h3 {
  color: #fff;
  border-bottom: 1px solid #fff;
  display: inline-block;
}

.bg-dg.industry-vw ul {
  padding: 0;
  list-style: none;
  text-align: center;
}

.bg-dg.industry-vw ul li {
  display: inline-block;
  margin: 0 3%;
  color: #fff;
  width: 120px;
  text-align: center;
}

.bg-dg.industry-vw ul li p {
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.h_img_icon {
  position: absolute;
  left: -25px;
  z-index: 9;
  top: 55px;
}

.bg-dg.industry-vw ul li img {
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 16px;
  background: #484847;
  width: 120px;
  height: 120px;
  filter: grayscale(100%);
}

.how-we-work-page img {
  width: 60px;
  margin-bottom: 15px;
}

.how-we-work-page p {
  text-align: left;
  line-height: inherit;
  margin-bottom: 10px;
}

.how-we-work-page .fixed-height {
  text-align: left;
  height: 85px;
  overflow: auto;
  margin-bottom: 0;
  padding-right: 15px;
}

.how-we-work-page h4 {
  color: #585858;
  text-align: left;
  font-size: 1.2rem;
}

.how-we-work-page .section-title {
  padding-bottom: 0;
}

.margin-auto {
  margin: 0 auto;
}

.how-we-wrap {
  background: #eff0ef;
  padding: 0;
  margin-bottom: 6%;
}
.how-content-w.bg1 {
    border-right: 18px solid #5fbaf5;
    padding: 25px 25px 15px 100px;
    position: relative;
}

.how-content-w.bg1 h4 {
  color: #5fbaf5;
  font-weight: 500;
  font-size: 1.25rem;
}

.how-content-w.bg1:before {
  content: '';
  position: absolute;
  left: -75px;
  top: 0;
  width: 162px;
  height: 162px;
  background: #eff0ef;
  border: 18px solid #5fbaf5;
  border-radius: 50%;
  border-color: #5fbaf5 #eff0ef #eff0ef #5fbaf5;
  transform: rotate(-45deg);
}

.how-content-w.bg1:after {
  content: '';
  position: absolute;
  left: -57px;
  top: 19px;
  width: 124px;
  height: 124px;
  background: repeating-linear-gradient(45deg, #5fbaf5, #5fbaf5 100px);
  border: 6px solid #fff;
  border-radius: 50%;
  border-color: #fff #eff0ef #eff0ef #fff;
  transform: rotate(-45deg);
}

.how-content-w.bg2 {
  border-right: 18px solid #5fbaf5;
  padding: 25px 25px 4px 100px;
  position: relative;
}

.how-content-w.bg2 h4 {
  color: #5fbaf5;
  font-weight: 500;
  font-size: 1.25rem;
}

.how-content-w.bg2:before {
  content: '';
  position: absolute;
  left: -75px;
  top: 0;
  width: 153px;
  height: 153px;
  background: #eff0ef;
  border: 18px solid #5fbaf5;
  border-radius: 50%;
  border-color: #5fbaf5 #eff0ef #eff0ef #5fbaf5;
  transform: rotate(-45deg);
}

.how-content-w.bg2:after {
  content: '';
  position: absolute;
  left: -57px;
  top: 16px;
  width: 120px;
  height: 120px;
  background: repeating-linear-gradient(45deg, #5fbaf5, #5fbaf5 100px);
  border: 6px solid #fff;
  border-radius: 50%;
  border-color: #fff #eff0ef #eff0ef #fff;
  transform: rotate(-45deg);
}

.how-content-w.bg3 {
  border-right: 18px solid #5fbaf5;
  padding: 25px 25px 4px 100px;
  position: relative;
}

.how-content-w.bg3 h4 {
  color: #5fbaf5;
  font-weight: 500;
  font-size: 1.25rem;
}

.how-content-w.bg3:before {
  content: '';
  position: absolute;
  left: -75px;
  top: 0;
  width: 153px;
  height: 153px;
  background: #eff0ef;
  border: 18px solid #5fbaf5;
  border-radius: 50%;
  border-color: #5fbaf5 #eff0ef #eff0ef #5fbaf5;
  transform: rotate(-45deg);
}

.how-content-w.bg3:after {
  content: '';
  position: absolute;
  left: -57px;
  top: 16px;
  width: 120px;
  height: 120px;
  background: repeating-linear-gradient(45deg, #5fbaf5, #5fbaf5 100px);
  border: 6px solid #fff;
  border-radius: 50%;
  border-color: #fff #eff0ef #eff0ef #fff;
  transform: rotate(-45deg);
}

.how-content-w.bg4 {
  border-right: 18px solid #5fbaf5;
  padding: 25px 25px 4px 100px;
  position: relative;
}

.how-content-w.bg4 h4 {
  color: #5fbaf5;
  font-weight: 500;
  font-size: 1.25rem;
}

.how-content-w.bg4:before {
  content: '';
  position: absolute;
  left: -75px;
  top: 0;
  width: 153px;
  height: 153px;
  background: #eff0ef;
  border: 18px solid #5fbaf5;
  border-radius: 50%;
  border-color: #5fbaf5 #eff0ef #eff0ef #5fbaf5;
  transform: rotate(-45deg);
}

.how-content-w.bg4:after {
  content: '';
  position: absolute;
  left: -57px;
  top: 16px;
  width: 120px;
  height: 120px;
  background: repeating-linear-gradient(45deg, #5fbaf5, #5fbaf5 100px);
  border: 6px solid #fff;
  border-radius: 50%;
  border-color: #fff #eff0ef #eff0ef #fff;
  transform: rotate(-45deg);
}
/*.img-hover-shadow::before{
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     right: 0;
     bottom: 0;
     margin: auto;
     width: 0;
     height: 0;
     transition: all .5s ease;
     background: rgba(47,198,243,0.5);
     border-radius: 100%;
     z-index: 2;
}
 .img-hover-shadow:hover::before{
     width: 400px;
     height: 400px;
}
*/
.about-us-wrapper {
  position: relative;
  text-align: center;
  background: #f3f3f3;
  border-radius: 35px;
  color: #fff;
    /*border-width: 27px;
     border-style: solid;
     border-image: linear-gradient(to left, #fbad4f, rgb(244 119 82)) 1 100%;
    */
  padding: 20px;
  border-left: 15px solid #5fbaf5;
  border-right: 15px solid #5fbaf5;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 20px;
  -moz-background-size: 100% 20px;
  background-size: 100% 20px;
  background-image: -webkit-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%), -webkit-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%);
  background-image: -moz-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%), -moz-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%);
  background-image: -o-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%), -o-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%);
  background-image: linear-gradient(to right, #5fbaf5 0%, #5fbaf5 100%), linear-gradient(to right, #5fbaf5 0%, #5fbaf5 100%);
  margin: 120px 0 185px 0;
}

.about_img {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  padding: 0px;
  border: 18px solid #f3f3f3;
  bottom: -24%;
  left: 0;
}

.abou_description {
  margin-top: 104%;
  height: 400px;
  overflow: auto;
  margin-bottom: 35px;
}

.about_img img.img-fluid {
  border: 2px solid #5fbaf5;
  border-radius: 50%;
}

.title_out4 {
  background: linear-gradient(90deg, #5fbaf5, #5fbaf5);
  color: #fff;
  text-align: center;
  width: 200px;
  height: 200px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 50%;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  padding: 55px 17px 20px 17px;
  border: 2px solid #fff;
}

.title_out3 {
  background: #d1d2d4;
  text-align: center;
  width: 255px;
  height: 255px;
  font-weight: 700;
  font-size: 23px;
  text-transform: uppercase;
  border-radius: 50%;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  border: 20px solid #fff;
  padding: 8px 0 0 0;
}

.title_out2 {
  background: #ffffff;
  text-align: center;
  width: 295px;
  height: 295px;
  font-weight: 700;
  font-size: 23px;
  text-transform: uppercase;
  border-radius: 50%;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  border: 0px solid #fff;
  padding: 20px 0 0 0;
  position: relative;
}

.title_out2:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 5px;
  border: 3px solid #ff0000;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border-color: #5fbaf5 #5fbaf5 #ffffff00 #ffffff00;
  transform: rotate(-45deg);
}

.title_out2:after {
  content: '';
  position: absolute;
  top: 15px;
  left: 5px;
  border: 3px solid #ff0000;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border-color: #ffffff00 #ffffff00 #5fbaf5 #5fbaf5;
  transform: rotate(-45deg);
}

.title_out1 {
  position: absolute;
  top: -122px;
  left: -45px;
  border: 30px solid #fff;
  border-radius: 50%;
  background: #fff;
}
/*--------------------*/
.about-us-wrapper2 {
  position: relative;
  text-align: center;
  background: #f3f3f3;
  border-radius: 35px;
  color: #fff;
    /*border-width: 27px;
     border-style: solid;
     border-image: linear-gradient(to left, #fbad4f, rgb(244 119 82)) 1 100%;
    */
  padding: 20px;
  border-left: 15px solid #5fbaf5;
  border-right: 15px solid #5fbaf5;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 20px;
  -moz-background-size: 100% 20px;
  background-size: 100% 20px;
  background-image: -webkit-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%), -webkit-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%);
  background-image: -moz-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%), -moz-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%);
  background-image: -o-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%), -o-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%);
  background-image: linear-gradient(to right, #5fbaf5 0%, #5fbaf5 100%), linear-gradient(to right, #5fbaf5 0%, #5fbaf5 100%);
  margin: 120px 0 185px 0;
}

.about-us-wrapper2 .about_img {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  padding: 0px;
  border: 18px solid #f3f3f3;
  bottom: -24%;
  left: 0;
}

.about-us-wrapper2 .abou_description {
  margin-top: 104%;
  height: 400px;
  overflow: auto;
  margin-bottom: 35px;
  padding-right: 15px;
}

.about-us-wrapper2 .about_img img.img-fluid {
  border: 2px solid #5fbaf5;
  border-radius: 50%;
}

.about-us-wrapper2 .title_out4 {
  background: linear-gradient(90deg, #5fbaf5, #5fbaf5);
  color: #fff;
  text-align: center;
  width: 200px;
  height: 200px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 50%;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  padding: 55px 17px 20px 17px;
  border: 2px solid #fff;
}

.about-us-wrapper2 .title_out3 {
  background: #d1d2d4;
  text-align: center;
  width: 255px;
  height: 255px;
  font-weight: 700;
  font-size: 21px;
  text-transform: uppercase;
  border-radius: 50%;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  border: 20px solid #fff;
  padding: 8px 0 0 0;
}

.about-us-wrapper2 .title_out2 {
  background: #ffffff;
  text-align: center;
  width: 295px;
  height: 295px;
  font-weight: 700;
  font-size: 21px;
  text-transform: uppercase;
  border-radius: 50%;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  border: 0px solid #fff;
  padding: 20px 0 0 0;
  position: relative;
}

.about-us-wrapper2 .title_out2:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 5px;
  border: 3px solid #5fbaf5;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border-color: #5fbaf5 #5fbaf5 #ffffff00 #ffffff00;
  transform: rotate(-45deg);
}

.about-us-wrapper2 .title_out2:after {
  content: '';
  position: absolute;
  top: 15px;
  left: 5px;
  border: 3px solid #5fbaf5;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border-color: #ffffff00 #ffffff00 #5fbaf5 #5fbaf5;
  transform: rotate(-45deg);
}

.about-us-wrapper2 .title_out1 {
  position: absolute;
  top: -122px;
  left: -45px;
  border: 30px solid #fff;
  border-radius: 50%;
  background: #fff;
}
/*--------------------*/
.about-us-wrapper3 {
  position: relative;
  text-align: center;
  background: #f3f3f3;
  border-radius: 35px;
  color: #fff;
    /*border-width: 27px;
     border-style: solid;
     border-image: linear-gradient(to left, #fbad4f, rgb(244 119 82)) 1 100%;
    */
  padding: 20px;
  border-left: 15px solid #5fbaf5;
  border-right: 15px solid #5fbaf5;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 20px;
  -moz-background-size: 100% 20px;
  background-size: 100% 20px;
  background-image: -webkit-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%), -webkit-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%);
  background-image: -moz-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%), -moz-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%);
  background-image: -o-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%), -o-linear-gradient(left, #5fbaf5 0%, #5fbaf5 100%);
  background-image: linear-gradient(to right, #5fbaf5 0%, #5fbaf5 100%), linear-gradient(to right, #5fbaf5 0%, #5fbaf5 100%);
  margin: 120px 0 185px 0;
}

.about-us-wrapper3 .about_img {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  padding: 0px;
  border: 18px solid #f3f3f3;
  bottom: -24%;
  left: 0;
}

.about-us-wrapper3 .abou_description {
  margin-top: 104%;
  height: 400px;
  overflow: auto;
  margin-bottom: 35px;
}

.about-us-wrapper3 .about_img img.img-fluid {
  border: 2px solid #5fbaf5;
  border-radius: 50%;
}

.about-us-wrapper3 .title_out4 {
  background: linear-gradient(90deg, #5fbaf5, #5fbaf5);
  color: #fff;
  text-align: center;
  width: 200px;
  height: 200px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 50%;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  padding: 55px 17px 20px 17px;
  border: 2px solid #fff;
}

.about-us-wrapper3 .title_out3 {
  background: #d1d2d4;
  text-align: center;
  width: 255px;
  height: 255px;
  font-weight: 700;
  font-size: 23px;
  text-transform: uppercase;
  border-radius: 50%;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  border: 20px solid #fff;
  padding: 8px 0 0 0;
}

.about-us-wrapper3 .title_out2 {
  background: #ffffff;
  text-align: center;
  width: 295px;
  height: 295px;
  font-weight: 700;
  font-size: 23px;
  text-transform: uppercase;
  border-radius: 50%;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  border: 0px solid #fff;
  padding: 20px 0 0 0;
  position: relative;
}

.about-us-wrapper3 .title_out2:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 5px;
  border: 3px solid #5fbaf5;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border-color: #5fbaf5 #5fbaf5 #ffffff00 #ffffff00;
  transform: rotate(-45deg);
}

.about-us-wrapper3 .title_out2:after {
  content: '';
  position: absolute;
  top: 15px;
  left: 5px;
  border: 3px solid #5fbaf5;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border-color: #ffffff00 #ffffff00 #5fbaf5 #5fbaf5;
  transform: rotate(-45deg);
}

.about-us-wrapper3 .title_out1 {
  position: absolute;
  top: -122px;
  left: -45px;
  border: 30px solid #fff;
  border-radius: 50%;
  background: #fff;
}

.what-do-we-do .sub-text h3 {
  display: inline-block;
  background: #adadad;
  border-radius: 55px 55px;
  padding: 15px 39px;
  position: relative;
  color: #fff;
}

.what-do-we-do .sub-text h3 p {
  display: inline-block;
  background: #adadad;
  border-radius: 55px 55px;
  padding: 15px 39px;
  position: relative;
  color: #fff;
  font-size: 1.75rem;
  font-family: 'Varta', sans-serif;
  text-align: center;
  line-height: initial;
  margin-bottom: 0;
}

.what-do-we-do .sub-text h3:before {
  position: absolute;
  content: '';
  border-left: 2px solid #5fb9f4;
  height: 116%;
  top: -7px;
  left: -11px;
  border-radius: 46%;
  width: 114px;
}

.what-do-we-do .sub-text h3:after {
  position: absolute;
  content: '';
  border-right: 2px solid #5fb9f4;
  height: 116%;
  top: -7px;
  right: -11px;
  border-radius: 46%;
  width: 114px;
}

.left-a {
  text-align: left;
}

.mt-4 {
  margin-top: 1.5rem!important;
}

.mb-4 {
  margin-bottom: 1.5rem!important;
}

.right-top {
    /*float: right;
     display: inline-block;
     padding: 31px 0;
     position: absolute;
     right: 83px;
     top: 20px;
     transition: all 0.3s ease 0s;
     -webkit-transition: all 0.3s ease 0s;
    */
  float: right;
  display: inline-block;
  padding: 20px 0 0px 0;
  position: absolute;
  left: -50px;
  top: 165px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  z-index: 9;
  background: #f1f1f1;
  border-radius: 0px 10px 10px 0px;
  cursor: pointer;
}

.right-top.left-z {
  left: 0;
}

.right-top ul {
    /*padding: 0;
     list-style: none;
     margin: 0;
    */
  padding: 20px 12px 0 0;
  list-style: none;
  margin: 0;
  display: inline-grid;
  position: fixed;
  background: #f1f1f1;
  top: 166px;
  border-radius: 0 5px 5px 0;
}

.right-top ul li {
    /*display: inline-block;
     margin: 0 5px;
     border-right: 1px solid #ccc;
     padding-right: 15px;
    */
  display: inline-block;
  margin: 0 5px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  width: 100%;
  float: left;
  margin-bottom: 10px;
  text-align: center;
}

.right-top ul li:last-child {
  border: 0;
}

.right-top ul li a {
  color: #333;
}

.right-top ul li a img {
  width: 25px;
}

.right-top ul li:first-child a img {
    /* width: 25px;
     border: 1px solid #999;
     border-radius: 50%;
     padding: 3px;
    */;
}

.flotingQuery-btn {
  position: fixed;
  left: -6px;
  top: 190px;
  background: #f1f1f1;
  border-radius: 5px;
  padding: 0 3px 0 7px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}

.right-top.left-z .flotingQuery-btn {
  position: fixed;
  left: 42px;
  top: 190px;
}

#header .container {
  position: relative;
}

#header.header-scrolled .right-top {
  top: 0;
}

.detail-page .section-title h1 {
  color: #5fbaf5;
  font-size: 27px;
}
/*.detail-page h3 {
     font-size: 18px;
}
*/
.detail-page .special-head {
  font-size: 30px !important;
}

.detail-page {
  padding-top: 50px;
  margin-top: 150px;
}

.h4, h4 {
  font-size: 1.25rem;
}

.what-do-we-do .fixed-height p {
  margin-bottom: 0;
}

.row.tltblog {
  margin-bottom: 25px;
}

.blog-wrap {
  margin-top: 190px;
}

.blog-height {
  height: 75px;
  overflow: auto;
  padding-right: 20px;
}

.blog-content-w .listing-page h3 {
  font-size: 22px;
}

.blog-content-w .listing-page h3 span {
  float: right;
}

.blog-content-w .listing-page h3 span a {
  font-size: 17px;
  text-decoration: underline;
  position: relative;
}

.blog-content-w .listing-page .product-thumb.transition .image img.img-responsive {
  max-width: 100%;
}

.blog-content-w .listing-page .product-thumb.transition .image {
  margin-bottom: 15px;
}

.blog-content-w .listing-page .product-thumb.transition .caption h4 {
  font-size: 16px;
}

.container.blog-content-w p {
  font-size: 0.9rem;
}

.blog-height p {
  font-size: .9rem;
}

.product-header .container {
  position: relative;
}

.row.detail-short {
  left: 56px;
  top: 114px;
  width: 100%;
}

.row.detail-header-img img.w-100 {
  height: 250px;
}

.imagebox img {
  width: 100%;
  cursor: zoom-in;
}

.imagebox {
  width: 310px;
  height: 310px;
  border: 1px solid #5fbaf5a1;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  margin: 0 auto 50px auto;
  transition: .5s;
}

.imagebox:hover {
  border-radius: 20px;
}

.demo-2 .bg-img-1 img {
  width: 100%;
  height: 100vh;
}

.h1, h1 {
  font-size: 2rem !important;
}

#hero .hero-inner h1 {
  font-size: 44px !important;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #5fbaf5;
  border-color: #5fbaf5;
}

.btn-primary {
  color: #fff;
  background-color: #5fbaf5;
  border-color: #5fbaf5;
}

.btn-group-sm>.btn, .btn-sm {
  padding: .4rem .8rem;
  font-size: 1.1rem;
  line-height: 1.5;
  border-radius: .2rem;
}
.mtf-pic-switch {
    position: absolute;
    display: block !important;
    width: 40px !important;
    background-color: transparent !important;
    opacity: 1 !important;
}
.mtf-pic-switch:before {
    font-size: 25px !important;
}

@media screen and (max-width: 1024px) {
  .demo-2 .sl-slider-wrapper {
    width: 100%;
    height: 470px;
  }

  .title_out1,.about-us-wrapper2 .title_out1, .about-us-wrapper3 .title_out1 {
    position: absolute;
    top: -160px;
    left: -70px;
  }

  .about-us-page img.img-fluid.mb-3.padded-img.pt-0.pb-0 {
    max-width: 100%;
  }

  .contact-info-bg {
    padding: 75px 95px 50px 80px;
  }

  .contact-info-bg {
    background: none;
    background-size: cover;
    min-height: inherit;
    padding: 20px 0px 20px 48px !important;
  }

  .demo-2 .bg-img-1 img {
    height: auto;
  }

  #bend {
    display: none;
  }
  .abou_description {
    padding-right: 15px !important;
    margin-bottom: 55px !important;
  }
  #hero {
    width: 100%;
    height: 370px;
  }
  #hero .hero-inner {
    top: 0;
  }
}

@media screen and (max-width: 1020px) {
  #hero .hero-inner {
    top: 0;
  }
  .about-us-wrapper2 .abou_description {
    margin-top: 104%;
    height: 355px;
    overflow: auto;
    margin-bottom: 75px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 768px) {
  .demo-2 .sl-slider-wrapper {
    width: 100%;
    height: 355px;
  }

  #hero {
    height: 255px;
    background-size: cover !important;
  }

  #hero .hero-inner {
    position: inherit;
    top: 0px;
  }

  .title_out1, .about-us-wrapper2 .title_out1, .about-us-wrapper3 .title_out1 {
    position: absolute;
    top: -150px;
    left: -45px;
  }
}

@media screen and (max-width: 1020px) {
  #hero .hero-inner h1 p {
    text-align: left;
    line-height: initial;
  }

  #hero {
    padding-bottom: 80px !important;
    margin-bottom: 30px;
  }

  #hero {
    height: auto;
    background-size: cover !important;
    padding-top: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .demo-2 .bg-img {
    background-repeat: no-repeat;
  }
  .content-padding {
    padding: 30px 20px 20px 20px !important;
}

  .how-content-w.bg1 {
    border-right: 18px solid #5fbaf5;
    padding: 160px 25px 15px 25px;
    position: relative;
  }
  .demo-2 .sl-slider-wrapper {
    height: 190px;
    margin-top: 135px;
  }

  nav#nav-arrows {
    display: none;
  }

  .sl-slide, .sl-slides-wrapper, .sl-slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  section#about {
    padding: 20px 0;
  }

  .nav-dots {
    bottom: 20px !important;
  }

  .certificate-img {
    text-align: center;
    margin-bottom: 20px;
  }

  #certificates .padded-img-2 {
    padding: 0;
    text-align: center;
  }

  .contact-address.clearfix.mb-3 address {
    padding-right: 0;
  }

  span.email-right {
    float: left;
  }

  #footer .copyright {
    text-align: center;
    padding-top: 30px;
  }

  #footer .credits {
    padding-top: 0px;
    text-align: center;
    font-size: 13px;
    color: #333;
  }

  .social-icons {
    list-style: none;
    float: none;
    margin: 10px 0 20px 0;
    padding: 0;
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
  }

  .about-us-page.m-v-i img.img-fluid.mb-3.padded-img.pt-0.pb-0 {
    max-width: 155px;
    margin-top: 45px;
    margin: 0 auto;
    display: inherit;
  }

  .mission-w {
    margin-bottom: 10px;
  }

  span.phone-left {
    float: left;
    margin-right: 10px;
    border-right: 0px solid #ccc;
    padding-right: 10px;
    margin-bottom: 1rem!important;
  }

  .imagebox {
    width: 285px;
    height: 285px;
  }

  canvas#bend {
    display: none;
  }

  .hero-inner-content-block-left {
    float: left;
    width: 100%;
    padding: 0 0px 0 30px;
  }

  #hero .hero-inner {
    top: 15px;
  }

  #hero {
    height: auto;
        /*background: #45c9f5a6 !important;*/
    background: url(../images/mobile-banner.jpg) no-repeat right top !important;
    background-size: cover !important;
  }

  #services .section-title.pr-5.aos-init.aos-animate {
    padding: 0 !important;
  }

  #hero h1 {
    font-size: 23px;
    line-height: 36px;
    padding: 0;
    padding: 0;
  }

  .abou_description {
    margin-top: 95% !important;
    height: 380px !important;
  }

  .icon-box.home-why-choose p {
    height: auto;
  }

  .fixed-height {
    height: auto;
  }

  .about-us-page img.img-fluid.mb-3.padded-img.pt-0.pb-0 {
    max-width: 100%;
  }

  .about-us-wrapper2 .abou_description {
    margin-top: 95%;
    margin-bottom: 85px;
  }

  .title_out1, .about-us-wrapper2 .title_out1, .about-us-wrapper3 .title_out1 {
    position: absolute;
    top: -124px;
        /*left: -45px;
        */
    left: -13%;
    border: 22px solid #fff;
    border-radius: 50%;
    background: #fff;
    padding-bottom: 20px;
    right: -13%;
  }

  .title_out2, .about-us-wrapper2 .title_out2, .about-us-wrapper3 .title_out2 {
    width: 270px;
    height: 270px;
    padding: 14px 0 0 0px;
  }

  .title_out2:before, .about-us-wrapper2 .title_out2:before, .about-us-wrapper3 .title_out2:before {
    width: 270px;
    height: 270px;
    left: 0;
  }

  .title_out2:after, .about-us-wrapper2 .title_out2:after, .about-us-wrapper3 .title_out2:after {
    left: 0;
    width: 270px;
    height: 270px;
  }

  .title_out4, .about-us-wrapper2 .title_out4, .about-us-wrapper3 .title_out4 {
    background: linear-gradient(90deg, #5fbaf5, #5fbaf5);
    color: #fff;
    text-align: center;
    width: 190px;
    height: 190px;
    font-weight: 700;
    font-size: 18px;
    top: 22px;
    position: absolute;
    left: 22px;
    padding: 55px 7px 20px;
  }

  .title_out3, .about-us-wrapper2 .title_out3, .about-us-wrapper3 .title_out3 {
         /*background: #d1d2d4;
         text-align: center;
         width: 230px;
         height: 230px;*/
    background: #d1d2d4;
    text-align: center;
    width: 262px;
    height: 267px;
    top: 9px;
    position: absolute;
    left: 5px;
    border: 15px solid #fff;
  }

  .what-do-we-do .sub-text h3 {
    font-size: 1.2rem;
    border-radius: 122px;
  }

  .what-do-we-do .sub-text h3:before, .what-do-we-do .sub-text h3:after {
    display: none;
  }

  .what-do-we-do .sub-text h3 p {
    font-size: 1.5rem;
    padding: 15px 10px;
  }

  .industry-w {
    text-align: center;
  }

  .left-a {
    text-align: center;
  }

  .industry-content-w {
    padding: 25px;
    width: 100%;
    border: 1px solid #007bff;
  }

  .industry-content-w:after {
    display: none;
  }

  .col-sm-12.col-lg-4.indus-img {
    text-align: center;
  }

  .how-content-w.bg1:after {
    content: '';
    position: absolute;
    left: 0;
    top: 27px;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    right: 0;
  }

  .h_img_icon {
    position: absolute;
    left: 0;
    z-index: 9;
    top: 51px;
    right: 0;
    text-align: center;
  }

  .services .icon-box h4 {
    min-height: inherit;
  }

  .category-list-w .height-fixed {
    height: auto;
  }

  .contact-info-bg {
    background: none;
    background-size: cover;
    min-height: inherit;
    padding: 0 0 0 70px;
  }

  #contact .contact-info a {
    color: #666;
    display: inline-block;
  }

  form#contactform .text-left {
    margin: 0 auto;
  }

  section#portfolio .section-title.pt-5 {
    padding: 0 20px;
  }

  .blog-height {
    height: auto;
  }

  .blog-wrap img.img-thumbnail {
    margin-bottom: 20px;
  }
  .how-content-w.bg1 h4 {
    text-align: center;
  }
  .how-we-work-page .fixed-height {
    height: auto;
    text-align: center;
  }
  .how-we-work-page p {
    text-align: center;
  }
  .how-we-work-page h4 {
    text-align: center;
  }
}
@media screen and (max-width: 420px) {
  .how-content-w.bg1:before{border: 0; display: none;}
}
 