html,
body {
  margin: 0;
  font-size: 100%;
  background: #fff;
  scroll-behavior: smooth;
}

body a {
  text-decoration: none;
}

html {

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

}

a:hover {
  text-decoration: none;
}

input[type="button"]:hover,
input[type="submit"]:hover {
  transition: .5s ease-in;
  -webkit-transition: .5s ease-in;
  -moz-transition: .5s ease-in;
  -o-transition: .5s ease-in;
  -ms-transition: .5s ease-in;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
}

p {
  font-size: 1em;
  color: #777;
  /*line-height: 0.8em;*/
}

ul {
  margin: 0;
  padding: 0;
}

body img {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
}

/* navigation */

.toggle,
[id^=drop] {
  display: none;
}

/* Giving a background-color to the nav container. */

nav {
  margin: 0;
  padding: 0;
}

a.navbar-brand {
  font-size: 0.8em;
  font-weight: 100;
  letter-spacing: 1px;
  line-height: 0.8em;
  text-transform: uppercase;
  color: #fff;
}

#logo a {
  float: left;
  display: initial;
}

#logo a img {
  height: 50px;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
  content: "";
  display: table;
  clear: both;
}

nav ul {
  float: right;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

ul.menu {
  margin-top: 0.4em;
}

/* Positioning the navigation items inline */

nav ul li {
  margin: 0px;
  display: inline-block;
}

/* Styling the links */

nav a {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 0 14px;
  font-weight: 600;
  margin: 0 0.5em;
  text-transform: uppercase;
}


nav ul li ul li:hover {
  background: #f8f9fa;
}

li.log-vj a {
  display: inline-block;
}

li.social-icons a span {
  margin: 0 3px;
  font-size: 1.2em;
  color: #f4ab33;
}

/* Background color change on Hover */

.menu li a:hover {
  color: #feac00;
}

.menu li.active a {
  color: #feac00;
}


nav ul ul {
  display: none;
  position: absolute;
  /* has to be the same number as the "line-height" of "nav a" */
  top: 25px;
  padding: 10px;
  background: #fff;
  padding: 10px;
  z-index: 999;
  border: 1px solid #ddd;
  left: 165px;
  text-align: left;
}

nav ul li:hover>ul {
  display: inherit;
}

nav ul ul li {
  width: 170px;
  float: none;
  display: list-item;
  position: relative;
}

nav ul ul li a {
  color: #333;
  padding: 5px 10px;
  display: block;
}


nav ul ul ul li {
  position: relative;
  top: -60px;
  /* has to be the same number as the "width" of "nav ul ul li" */
  left: 170px;
}

li>a:only-child:after {
  content: '';
}

.contacts {
  margin-left: 50px
}

/* Media Queries
--------------------------------------------- */

@media all and (max-width:992px) {

  #logo {
    display: block;
    padding: 0;
    width: 100%;
    text-align: center;
    float: none;
  }

  nav {
    margin: 0;
  }

  /* Hide the navigation menu by default */
  /* Also hide the  */
  .toggle+a,
  .menu {
    display: none;
  }

  .toggle {
    display: block;
    padding: 7px 20px;
    font-size: 14px;
    text-decoration: none;
    border: none;
    float: right;
    background-color: #212529;
    color: #fff;
    cursor: pointer !important;
    margin-bottom: 0;
    text-transform: uppercase;
    margin-top: 0em;
  }

  .menu .toggle {
    float: none;
    text-align: left;
    margin: auto;
    width: 80%;
    padding: 5px;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 1px;
  }

  .toggle:hover {
    color: #333;
    background-color: #fff;
  }

  [id^=drop]:checked+ul {
    display: block;
    background: rgba(16, 16, 16, 0.96);
    padding: 15px 0;
    text-align: left;
    width: 100%;
    z-index: 99999;
    border: none;
  }

  /* Change menu item's width to 100% */
  nav ul li {
    display: block;
    width: 100%;
    padding: 5px 0;
  }

  nav a:hover,
  nav ul ul ul a {
    background-color: transparent;
  }

  nav ul li ul li .toggle,
  nav ul ul a,
  nav ul ul ul a {
    padding: 14px 20px;
    color: #FFF;
    font-size: 17px;
  }

  label.toggle.toggle-2 {
    width: 94%;
    font-size: 13px;
  }

  nav ul li ul li .toggle,
  nav ul ul a {
    background-color: #343a40;
  }

  /* Hide Dropdowns by Default */
  nav ul ul {
    float: none;
    position: static;
    color: #ffffff;
    /* has to be the same number as the "line-height" of "nav a" */
    text-align: left;
  }

  /* Hide menus on hover */
  nav ul ul li:hover>ul,
  nav ul li:hover>ul {
    display: none;
  }

  nav ul {
    margin-left: 0em;
  }

  /* Fisrt Tier Dropdown */
  nav ul ul li {
    display: block;
    width: 100%;
    padding: 0;
  }

  nav ul ul ul li {
    position: static;
    /* has to be the same number as the "width" of "nav ul ul li" */
  }

  nav ul ul li a {
    color: #fff;
    font-size: 0.8em;
  }

  nav ul li ul li:hover {
    background: none;
  }

  nav ul li.social-icons {
    display: inline-block;
    /*float: left;*/
    width: 50%;
    margin: 0 auto;
    text-align: center;
  }

  .tooltip {
    top: 0;
    left: 50%;
    padding: 0.2rem 0.5rem;
  }
}

@media all and (max-width: 330px) {

  nav ul li {
    display: block;
    width: 94%;
  }

}

/* header */


/* banner */
.top_w3pvt_main {
  position: relative;
  z-index: 1;
}

.nav_w3pvt {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
  margin: 0 auto;
  background: transparent;
  margin-top: 1.2em;
}

/* banner-hny-info */
.banner-hny-info {
  padding: 12em 0 14em;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* banner slider */


#homepage-slider {
  position: relative;
}

.radio {
  display: none;
}

.images {
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.nomer {
  display: none;
}

.images-inner {
  width: 500%;
  transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
  transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.image-slide {
  width: 20%;
  float: left;
}

.image-slide,
.fake-radio,
.radio-btn {
  transition: all 0.5s ease-out;
}

.fake-radio {
  text-align: center;
  position: absolute;
  bottom: 0.5%;
  /*right: 2%;*/
  z-index: 9;
}

/* Move slides overflowed container */
#slide1:checked~.images .images-inner {
  margin-left: 0;
}

#slide2:checked~.images .images-inner {
  margin-left: -100%;
}

#slide3:checked~.images .images-inner {
  margin-left: -200%;
}

/* Color of bullets */
#slide1:checked~div .fake-radio .radio-btn:nth-child(1),
#slide2:checked~div .fake-radio .radio-btn:nth-child(2),
#slide3:checked~div .fake-radio .radio-btn:nth-child(3) {
  background: #feac00;
}

.radio-btn {
  width: 10px;
  height: 10px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #fff;
  display: inline-block !important;
  margin: 0 5px;
  cursor: pointer;
}

/* Color of bullets - END */

/* Text of slides */
#slide1:checked~.labels .label:nth-child(1),
#slide2:checked~.labels .label:nth-child(2),
#slide3:checked~.labels .label:nth-child(3) {
  opacity: 1;
}

.label {
  opacity: 0;
  position: absolute;
}

/* Text of slides - END */

/* Calculate AUTOPLAY for BULLETS */
@keyframes bullet {

  0%,
  33.32333333333334% {
    background: #feac00;
  }

  33.333333333333336%,
  100% {
    background: #fff;
  }
}

#play1:checked~div .fake-radio .radio-btn:nth-child(1) {
  animation: bullet 12300ms infinite -1000ms;
}

#play1:checked~div .fake-radio .radio-btn:nth-child(2) {
  animation: bullet 12300ms infinite 3100ms;
}

#play1:checked~div .fake-radio .radio-btn:nth-child(3) {
  animation: bullet 12300ms infinite 7200ms;
}

/* Calculate AUTOPLAY for BULLETS - END */

/* Calculate AUTOPLAY for SLIDES */
@keyframes slide {

  0%,
  25.203252032520325% {
    margin-left: 0;
  }

  33.333333333333336%,
  58.53658536585366% {
    margin-left: -100%;
  }

  66.66666666666667%,
  91.869918699187% {
    margin-left: -200%;
  }
}

.st-slider>#play1:checked~.images .images-inner {
  animation: slide 12300ms infinite;
}

/* Calculate AUTOPLAY for SLIDES - END */
/* //banner slider */

/* background images for banner */
.banner-w3pvt-1 {
  background: url(../images/banner1.jpg) no-repeat top;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 800px;
}

.banner-w3pvt-2 {
  background: url(../images/banner2.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 800px;
}

.banner-w3pvt-3 {
  background: url(../images/banner3.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 800px;
}

.overlay-w3ls {
  background: rgba(0, 0, 0, 0.55);
  min-height: 800px;
}

.images-inner {
  position: relative;
}

.banner-hny-info h3 {
  font-size: 4em;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  text-align: center;
  color: #fff;
}

.btn {
  border: 2px solid #fff;
  padding: 11px 30px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: capitalize;
  display: inline-block;

}

.btn:hover {
  background: #feac00;
  border: 2px solid #feac00;
  color: #333;
  transition: .5s ease-in;
  -webkit-transition: .5s ease-in;
  -moz-transition: .5s ease-in;
  -o-transition: .5s ease-in;
  -ms-transition: .5s ease-in;
}

.btn.more {
  background: #feac00;
  border: 2px solid #feac00;
  color: #222;
  margin-bottom: 10px;
}

.btn.more.black:hover {
  background: #212529;
  border: 2px solid #212529;
  color: #feac00;
}

.wthree-w3ls {
  border-bottom: 1px solid rgba(221, 221, 221, 0.25);
  padding-bottom: 1em;
}

/*figure:hover {
    background: rgba(0,0,0,0);
    color: #3a7999;
    box-shadow: inset 0 0 0 3px #3a7999;
}*/

.anime:hover {
  opacity: 0.7;
}


/* Color Variables */
/* Social Icon Mixin */
/* Social Icons */
.social-icon {
  /* display: flex;*/
  align-items: center;
  justify-content: center;
  position: relative;
  /* width: 80px; */
  /* height: 80px; */
  /* margin: 0 0.5rem; */
  /* border-radius: 50%; */
  cursor: pointer;
  /* font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif; */
  /* font-size: 2.5rem; */
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.15s ease;
}

.social-icon:hover {
  color: #fff;
}

.social-icon:hover .tooltip {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -150%);
  transform: translate(-50%, -150%);
}

.social-icon:active {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5) inset;
}

.social-icon {
  background: linear-gradient(tint(#000, 5%), shade(#000, 5%));
  border-bottom: 1px solid shade(#000, 20%);
  color: tint(#000, 50%);
}

.social-icon:hover {
  color: tint(#000, 80%);
  text-shadow: 0px 1px 0px shade(#000, 20%);
}

.social-icon .tooltip {
  background: #fff;
  background: linear-gradient(tint(#000, 15%), #000);
  color: tint(#000, 80%);
}

.social-icon .tooltip:after {
  border-top-color: #fff;
}

.social-icon span {
  position: relative;
  top: 1px;
}

/* Tooltips */
.tooltip {
  display: block;
  position: absolute;
  top: 45%;
  left: 50%;
  padding: 0.2rem 1rem;
  border-radius: 0px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  transition: all 0.3s ease;
  z-index: 1;
  color: #000;
  letter-spacing: 1px;
}

.tooltip:after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border: solid;
  border-width: 6px 6px 0 6px;
  border-color: transparent;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}

/* //background images for banner */

/* /stats */
h5.counter {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

p.para-w3pvt {
  color: #fff;
  font-size: 1.4em;
  margin-left: 1em;
  font-weight: 300;
}

.hny-stats-inf {
  margin: 3em auto 0;
  width: 50%;
  text-align: center;
}

/* //stats */
/* //banner text */

.banner_bottom {
  background: #f7f7f7;
}


p.sub-tittle {
  font-size: 1.1em;
  font-weight: 400;
  color: #555;
}

.pink {
  color: #feac00;
}

h3.tittle-w3ls,
h3.tittle-w3ls.two {
  color: #1b1b1b;
  font-size: 2.5em;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

h3.tittle-w3ls.two {
  color: #fff;
}

/*--/about--*/
.banner_bottom_left h4 {
  font-size: 1.5em;
  color: #3c3c3c;
  letter-spacing: 1px;
  position: relative;
  font-weight: 600;
  line-height: 1.6em;
  margin-bottom: 0.3em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/*--/features--*/
.features-w3pvt-main {
  border-top: 1px solid #ddd;
  margin-top: 0.5em;
  padding-top: 1em;
}

.icon_left_grid {
  text-align: center;
}

.featured_grid_right_info h4 {
  font-size: 1.2em;
  margin-bottom: .7em;
  font-weight: 600;
  color: #222222;
  letter-spacing: 1px;
}

.icon_left_grid span {
  font-size: 2em;
  color: #ffc107;
  margin-top: 0.1em;
}

/*--//features--*/
.services {
  background: url(../images/banner4.jpg) no-repeat top;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
}

.over-lay-blue {
  background: rgba(10, 10, 10, 0.67);
}

.services-grid-inf h4,
.services-grid-inf span,
.services-grid-inf .link-hny,
.services-innfo p.sub-tittle {
  color: #fff;
}

.services-grid-inf p {
  color: #d5d7d8;
}

.services-grid-inf span {
  line-height: 40px;
  color: #f4ab33;
}

/*--//services--*/

/*--/team --*/
.team-info h3 {
  font-size: 1.2em;
  color: #1b1b1b;
  margin: 0 0 0.5em 0;
}

.team-info h3 a {
  color: #1b1b1b;
}

.team-info h3 a:hover {
  color: #444;
}

.sub-tittle-team {
  font-size: 1em;
  color: #495057;
}

.team-info p {
  padding: 0 1em;
}

.icon-social.team a {
  color: #333;
}

ul.list-right-w3pvt-book.team-sing li {
  color: #777;
}

ul.list-right-w3pvt-book.team-sing span {
  font-size: 0.6em;
  margin-right: 1em;
}

.team-gd img:hover {
  opacity: 0.8;
}

/*--//team --*/
/*-- /gallery --*/

section#gallery {
  position: relative;
}

.gal-img img {
  padding: 6px;
  background: #f0f0f1;
}

.gal-info {
  background: #fff;
  margin-bottom: 1em;
  padding: 1em;
  text-align: left;

}

.gal-info:hover {
  background: #212529;
  transition: .5s ease-in;
  -webkit-transition: .5s ease-in;
  -moz-transition: .5s ease-in;
  -o-transition: .5s ease-in;
  -ms-transition: .5s ease-in;

}

.gal-info:hover h5 {
  color: #fff;
}

.gal-info h5 {
  text-align: left;
  font-size: 0.8em;
  color: #3a4045;
  font-weight: 500;

}

span.decription {
  text-transform: uppercase;
  display: block;
  font-size: 0.8em;
  color: #888;
  letter-spacing: 2px;
  margin-top: 0.5em;
}

.gal-info:hover span.decription {
  color: #fff;
}

/*-- popup --*/

.pop-overlay {
  position: fixed;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0ms;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
}

.pop-overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  background: #fff;
  border-radius: 5px;
  width: 35%;
  position: relative;
  margin: 8em auto;
  padding: 3em 1em;
}

.popup p {
  font-size: 15px;
  color: #666;
  letter-spacing: .5px;
  line-height: 30px;
}


.popup .close {
  position: absolute;
  top: 5px;
  right: 15px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.popup .close:hover {
  color: #30c39e;
}


/*-- //popup --*/

/*-- /blogs--*/
.blog-grid-img img {
  border-radius: 0px;
}

.blog-grid-info {
  background: #212529;
}

.date-post {
  padding: 1em;
}


.date-post .link-hny {
  font-size: 0.9em;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.date-post p {
  color: #fff;
  margin-bottom: 0;
  font-size: 0.9em;
}

.date-post h4 {
  margin: 0.3em 0;
  color: #fff;
}

h6.date {
  font-size: 0.8em;
  color: #feac00;
}

/*-- //blogs--*/
.login label {
  color: #777879;
  font-weight: 600;
  font-size: 0.9em;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.link-hny {
  color: #222222;

}

.link-hny:hover {
  color: #ffc107;
  transition: .5s ease-in;
  -webkit-transition: .5s ease-in;
  -moz-transition: .5s ease-in;
  -o-transition: .5s ease-in;
  -ms-transition: .5s ease-in;
}

.apply-main .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-bottom: 2px solid #ddd;
}


/*-- //gallery --*/

.con-gd .form-control {
  padding: 15px 15px;
  border: 0;
  border: none;
  outline: none;
  background: rgba(247, 247, 247, 0.29);
  color: #fff;
  border-radius: 0;
  font-size: 0.9em;
  letter-spacing: 2px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border: 1px solid #ddd;
}

.con-gd button.btn {
  background: #feac00;
  border: 2px solid #feac00;
  color: #222;
  cursor: pointer;
  padding: 13px 0;
  width: 100%;
}

.con-gd button.btn:hover {
  background: #212529;
  border: 2px solid #212529;
  color: #feac00;
}

p.news-para {
  margin: 0.5em 0 0 0;
  font-size: 1.1em;
  font-weight: 600;
  color: #555;
}

/*--placeholder-color--*/

.con-gd ::-webkit-input-placeholder {
  color: #777;
}

.con-gd :-moz-placeholder {
  /* Firefox 18- */
  color: #777;
}

.con-gd ::-moz-placeholder {
  /* Firefox 19+ */
  color: #777;
}

.con-gd :-ms-input-placeholder {
  color: #777;
}

/*--//placeholder-color--*/
/* testimonials */
.testmonials {
  background: url(../images/zavod3.jpg) no-repeat top;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
}

.testimonials-gd-vj {
  box-shadow: 0px 0px 18.69px 2.31px rgba(98, 98, 103, 0);
  background: #fff;
}

p.sub-test {
  color: #666;
  font-size: 14px;
}

p.sub-test span {
  font-size: 1.7em;
  margin-right: 0.3em;
  color: #ddd;
}

.testi_grid h5 {
  color: #2f2e31;
  letter-spacing: 1px;
  font-size: 0.9em;
  font-weight: 600;
}

.testi_grid p {
  font-size: 13px;
  line-height: 0.5em;
}

section.hand-crafted p {
  color: #6e7275;
}

.testi-img-res img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

/* //testimonials */
/*--/inner-w3pvt-page-- */

.inner-w3pvt-page {
  background: url(../images/banner1.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  min-height: 11em;
}

.overlay-innerpage {
  min-height: 11em;
  background: rgba(0, 0, 0, 0.44);
}

.inner-w3pvt-page-info {
  padding-top: 7em;
}

.breadcrumb {
  background-color: transparent;
}

ol.breadcrumb {
  margin: 0;
  padding: 0;
}

ol.breadcrumb li {
  padding: 0;
  color: #555;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  background: rgba(140, 156, 171, 0.22);
  margin-right: 0.5em;
  color: #fff;
  border-radius: 0;
  background: transparent;
}

ol.breadcrumb li a {
  color: #feac00;
}

.breadcrumb-item.active {
  color: #fff;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  /* background: none; */
  border-radius: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #fff;
  content: "/";
}

/*--/contact-- */
.contact-hny-form input,
.contact-hny-form textarea {
  padding: 13px 15px;
  border: 0;
  border: none;
  outline: none;
  background: rgba(247, 247, 247, 0.29);
  color: #000;
  border-radius: 0;
  font-size: 0.9em;
  letter-spacing: 2px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border: 1px solid #ddd;
  width: 100%;
}

.contact-hny-form textarea {
  min-height: 147px;
}

.more.black.con-submit {
  padding: 0.7em 3em;
}

.form-group label {
  color: #555;
  font-size: 0.9em;
}

.map-w3pvt {
  background: #d7d7d7;
  padding: 0.5em;
  width: 45%;
}

.map-w3pvt iframe {
  width: 100%;
  min-height: 400px;
  border: none;
}

/*--/single --*/
h4.title-hny {
  color: #3e3b3b;
  font-size: 1.2em;
  line-height: 1.5em;
  text-transform: capitalize;
  font-weight: 500;
}

.social-icons-footer ul li {
  display: inline-block;
  color: #555;
  list-style: none;
}

.social-icons-footer ul li a {
  margin: 0 0.5em;
  color: #333;
}

.social-icons-footer ul li a:hover {
  color: #feac00;
}

.comments-grid-right h4 {
  font-size: 17px;
  font-weight: 600;
}

.comments-grid-right ul li {
  display: inline-block;
  color: #888;
  font-size: 14px;
  letter-spacing: 1px;
}

.comments-grid-right ul li a {
  color: #feac00;
}


@media (min-width: 1000px) {

  #timeline .demo-card:nth-child(odd) .head::after,
  #timeline .demo-card:nth-child(even) .head::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }

  #timeline .demo-card:nth-child(odd) .head::before,
  #timeline .demo-card:nth-child(even) .head::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background-color: #bdbdbd;
    border-radius: 9px;
    box-shadow: 0px 0px 2px 8px #f7f7f7;
  }
}

/* Some Cool Stuff */
.demo-card:nth-child(1) {
  order: 1;
}

.demo-card:nth-child(2) {
  order: 4;
}

.demo-card:nth-child(3) {
  order: 2;
}

.demo-card:nth-child(4) {
  order: 5;
}

.demo-card:nth-child(5) {
  order: 3;
}

.demo-card:nth-child(6) {
  order: 6;
}

/* Border Box */
* {
  box-sizing: border-box;
}



#timeline h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 200;
  margin-bottom: 20px;
}

#timeline p.leader {
  text-align: center;
  max-width: 90%;
  margin: auto;
  margin-bottom: 45px;
}

#timeline .demo-card-wrapper {
  position: relative;
  margin: auto;
}

@media (min-width: 1000px) {
  #timeline .demo-card-wrapper {
    display: flex;
    flex-flow: column wrap;
    width: 1170px;
    height: 1650px;
    margin: 0 auto;
  }
}

#timeline .demo-card-wrapper::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px solid rgba(191, 191, 191, 0.4);
}

@media (min-width: 1000px) {
  #timeline .demo-card-wrapper::after {
    border-left: 1px solid #bdbdbd;
  }
}

#timeline .demo-card {
  position: relative;
  display: block;
  margin: 10px auto 80px;
  max-width: 94%;
  z-index: 2;
}

@media (min-width: 480px) {
  #timeline .demo-card {
    max-width: 60%;
    box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.07);
  }
}

@media (min-width: 720px) {
  #timeline .demo-card {
    max-width: 40%;
  }
}

@media (min-width: 1000px) {
  #timeline .demo-card {
    max-width: 450px;
    height: 400px;
    margin: 90px;
    margin-top: 45px;
    margin-bottom: 45px;
  }

  #timeline .demo-card:nth-child(odd) {
    margin-right: 45px;
  }

  #timeline .demo-card:nth-child(odd) .head::after {
    border-left-width: 15px;
    border-left-style: solid;
    left: 100%;
  }

  #timeline .demo-card:nth-child(odd) .head::before {
    left: 491.5px;
  }

  #timeline .demo-card:nth-child(even) {
    margin-left: 45px;
  }

  #timeline .demo-card:nth-child(even) .head::after {
    border-right-width: 15px;
    border-right-style: solid;
    right: 100%;
  }

  #timeline .demo-card:nth-child(even) .head::before {
    right: 489.5px;
  }

  #timeline .demo-card:nth-child(2) {
    margin-top: 180px;
  }
}

#timeline .demo-card .head {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 400;
}

#timeline .demo-card .head .number-box {
  display: inline;
  margin: 15px;
  padding: 10px;
  font-size: 35px;
  line-height: 35px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.17);
}

#timeline .demo-card .head h3 {
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: inherit;
  letter-spacing: 2px;
  margin: 0;
  padding-bottom: 6px;
  line-height: 1rem;
  color: #ddd;
}

@media (min-width: 480px) {
  #timeline .demo-card .head h3 {
    line-height: 1.2rem;
  }
}

#timeline .demo-card .head h3 span {
  display: block;
  font-size: 0.6rem;
  margin: 0;
}

@media (min-width: 480px) {
  #timeline .demo-card .head h3 span {
    font-size: 0.8rem;
  }


}

#timeline .demo-card .body {
  background: #fff;
  border: 1px solid rgba(191, 191, 191, 0.4);
  border-top: 0;
  padding: 15px;
}


#timeline .demo-card .body p {
  font-size: 14px;
  line-height: 1.5em;
  margin-bottom: 15px;
}

#timeline .demo-card .body img {
  display: block;
  width: 100%;
}

#timeline .demo-card--step1 {
  background-color: #3c3d3e;
}

#timeline .demo-card--step1 .head::after {
  border-color: #3c3d3e;
}

#timeline .demo-card--step2 {
  background-color: #3c3d3e;
}

#timeline .demo-card--step2 .head::after {
  border-color: #3c3d3e;
}

#timeline .demo-card--step3 {
  background-color: #3c3d3e;
}

#timeline .demo-card--step3 .head::after {
  border-color: #3c3d3e;
}

#timeline .demo-card--step4 {
  background-color: #3c3d3e;
}

#timeline .demo-card--step4 .head::after {
  border-color: #3c3d3e;
}

#timeline .demo-card--step5 {
  background-color: #3c3d3e;
}

#timeline .demo-card--step5 .head::after {
  border-color: #3c3d3e;
}

/* typography */

.typo-wthree h4.typo {
  color: #333;
  font-size: 1.5em;
  text-transform: uppercase;
}

.grid-bg {
  border: 2px solid #f7f7f7;
}

.sub-code {
  padding: 2em;
  background: #f7f7f7;
}

.highlight.sub-code span {
  color: #777;
}

.bd-example {
  padding: 1.5rem;
  margin-right: 0;
  margin-left: 0;
  border-width: .2rem;
}

.bd-example-container {
  min-width: 16rem;
  max-width: 25rem;
  margin-right: auto;
  margin-left: auto;
}

.bd-example-container-body {
  height: 8rem;
  margin-right: 4.5rem;
  background-color: #f7f7f7;
  border-radius: .25rem;
}

.bd-example-container-sidebar {
  float: right;
  width: 4rem;
  height: 8rem;
  background-color: #2f2e41;
  border-radius: .25rem;
}

.media span {
  font-size: 4em;
  color: #555;
}

.media-body h5 {
  font-size: 1.2em;
  color: #444;
  margin-bottom: 1em;
}

.bread-w3ls .breadcrumb {
  background: #eee;
}

.bread-w3ls .breadcrumb-item.active {
  color: #6c757d;
}

.bread-w3ls .breadcrumb-item+.breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #555;
  content: "/";
}

.bread-w3ls li.breadcrumb-item a {
  color: #777;
}

.bread-w3ls nav a {
  padding: 0;
}

/* //typography */
/*--//typography--*/
@media screen and (max-width: 1024px) {
  .video iframe {
    width: 340px;
  }
}

@media screen and (max-width: 480px) {
  .map-w3pvt {
    background: #d7d7d7;
    padding: 0.5em;
    width: 95%;
    margin-left: 20px;
  }

  .video iframe {
    width: 340px;
  }
}

@media screen and (max-width: 375px) {}

@media screen and (max-width: 320px) {}

/*--/error--*/
.error-w3pvt h3 {
  font-size: 10em;
  font-weight: bold;
}

.error-w3pvt h4 {
  text-transform: uppercase;
  font-size: 2em;
  font-weight: lighter;
  letter-spacing: 30px;
}

.error-w3pvt h5 {
  text-transform: uppercase;
  font-size: 1.2em;
  margin: 1em 0;
  font-weight: lighter;
  letter-spacing: 4px;
  color: #777;
}

/*--//error--*/

@media screen and (max-width: 991px) {
  .error-w3pvt h3 {
    font-size: 7em;
  }

  .error-w3pvt h4 {
    font-size: 1.1em;
    letter-spacing: 11px;
  }

  .error-w3pvt h5 {
    font-size: 1em;
  }

  .copy_right p {
    font-size: 14px;
    margin: 0;
    margin-top: 0.5em;
  }

  .popup {
    background: #fff;
    border-radius: 5px;
    width: 65%;
    position: relative;
    margin: 8em auto;
    padding: 3em 1em;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333% !important;
    max-width: 33.333333%;
  }
}

@media screen and (max-width: 375px) {
  .error-w3pvt h3 {
    font-size: 6em;
  }

  .error-w3pvt h4 {
    font-size: 1em;
    letter-spacing: 11px;
  }

  .error-w3pvt h5 {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 320px) {}

/*-- footer --*/
footer,
.copy_right {
  background: #222;
}

.footer-grids h4 {
  color: #fff;
  font-size: 1.2em;
}

.footer-grids h5 {
  color: #666;
}

.footer-grids h5 span {
  color: #feac00;
}

.footer-grids p,
.footer-grids p a,
.copyright p,
.copyright p a {
  font-size: 15px;
  color: #fff;
  font-weight: normal;
  letter-spacing: .5px;
}

.footer-grids ul li a {
  font-size: 15px;
  color: #fff;
  font-weight: normal;
  letter-spacing: 1px;
}

.footer-grids ul li {
  list-style-type: none;
}

.footer-grids input[type="email"] {
  background: #fff;
  box-shadow: none !important;
  padding: 12px 15px;
  color: #777;
  font-size: 14px;
  border: none;
  letter-spacing: 1px;
  outline: none;
}

.footer-grids button.btn {
  background: #feac00;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 12px;
  display: inline-block;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

h2 a.navbar-brand {
  color: #fff;
}

.icon-social a {
  color: #fff;
  margin-right: 0.5em;
}

ul.list-info-wthree li a {
  display: block;
  margin: 1em 0;
}

ul.list-info-wthree li a:hover {
  color: #555;

}

.ad-info p {
  display: block;
  margin: 1em 0;
}

.ad-info p span {
  margin-right: 0.5em;
}

/*-- //footer --*/

/*--/copy_right--*/


.copy_right {
  border-top: 1px solid rgba(221, 221, 221, 0.12);
}

.copy_right p a {
  color: #fff;
}

.copy_right p a:hover {
  opacity: .8;
}

.copy_right p {
  letter-spacing: 1px;
  font-size: 16px;
  margin: 0;
  color: #fff;
  margin-top: 0.5em;
}

/*--//copy_right--*/
/* /move-top */
a.move-top span {
  color: #ddd;
  width: 36px;
  height: 36px;
  border: transparent;
  background: transparent;
}

/* //move-top */
/*--responsive--*/

@media(max-width:1280px) {
  .tooltip {
    display: block;
    position: absolute;
    top: 0;
    left: 8%;
    padding: 0.2rem 0.5rem;
  }

  .hny-stats-inf {
    margin: 6px auto 0;
    width: 67%;
  }

  .date-post {
    padding: 2em;
  }

  .banner-w3pvt-1,
  .banner-w3pvt-2,
  .banner-w3pvt-3,
  .overlay-w3ls {
    min-height: 700px;
  }

  .banner-hny-info {
    padding: 12em 0 12em;
  }

  .banner-hny-info h3 {
    font-size: 3.5em;
  }
}

@media(max-width:1080px) {
  .date-post {
    padding: 1em;
  }

  .inner-w3pvt-page,
  .overlay-innerpage {
    min-height: 10em;
  }

}


@media(max-width:1024px) {
  .banner-hny-info {
    padding: 11em 0 9em;
  }

  .banner-w3pvt-1,
  .banner-w3pvt-2,
  .banner-w3pvt-3,
  .overlay-w3ls {
    min-height: 656px;
  }

  .inner-w3pvt-page,
  .overlay-innerpage {
    min-height: 11em;
  }

  #logo a img {
    height: 50px;
  }
}

@media(max-width:991px) {
  .hny-stats-inf {
    margin: 6em auto 0;
    width: 85%;
  }

  .featured_grid_right_info h4 {
    font-size: 1em;
  }

  .date-post {
    padding: 2em;
  }

  .con-gd .form-control {
    margin: 1em 0;
  }

  .wthree-w3ls {

    padding-bottom: 0em;
  }

  .content {
    display: none;
  }
}


@media(max-width:768px) {
  .banner_bottom_left h4 {
    font-size: 1.2em;
  }

  p {
    font-size: 0.9em;
    /*line-height: 16px;*/
  }

  .nomer {
    display: flex;
    font-size: 1px;
    text-align: right;
  }

  nav a {
    color: #fff;
    font-size: 10px;
    /* letter-spacing: 1px; */
    padding: 0 14px;
    /* font-weight: 600; */
    margin: 0 0.0em;
    text-transform: uppercase;
    margin-top: -10px;

  }

  #logo a img {
    height: 30px;
  }
}

@media(max-width:767px) {

  .inner-w3pvt-page,
  .overlay-innerpage {
    min-height: 10em;
  }

  .featured_grid_right_info,
  .featured_grid_right_info {
    text-align: center;
    margin-top: 0.5em;
    margin-left: 12px;
  }

  .team-gd {
    margin-bottom: 1.5em;
  }

  .team-info h3 {
    font-size: 1em;
  }
}

@media(max-width:667px) {
  .hny-stats-inf {
    /* margin: 4em auto 0;
        width: 95%;*/
    margin: 1em auto 0;
    width: 55%;
    margin-right: 230px;
  }

  .banner-w3pvt-1,
  .banner-w3pvt-2,
  .banner-w3pvt-3,
  .overlay-w3ls {
    min-height: 600px;
  }

  .banner-hny-info h3 {
    font-size: 2.5em;
  }

  .banner-hny-info {
    padding: 10em 0 5em;
  }

  .banner-hny-info h3 {
    font-size: 2em;
  }

  .btn {
    padding: 7px 23px;
  }

  .banner-hny-info {
    padding: 8em 0 1em;
  }

  h3.tittle-w3ls,
  h3.tittle-w3ls.two {
    font-size: 2em;
    letter-spacing: 1px;
  }

  p.sub-tittle {
    font-size: 1em;
  }

  .copy_right p {
    font-size: 14px;
  }

  .map-w3pvt iframe {
    min-height: 200px;
  }

  .contact-hny-form textarea {
    min-height: 130px;
  }

  h3.title-hny {
    font-size: 1.4em;
  }

  .video iframe {
    max-width: 345px
  }

  .link-hny {
    color: #222222;
    font-size: 16px;
    text-align: left;
  }

  p {
    font-size: 1.2em;
    /* line-height: 16px; */
    text-align: left;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 100% !important;
    max-width: 50%;
  }
}

@media(max-width:640px) {
  h5.counter {
    font-size: 12px;
    margin: 0;
  }

  p.para-w3pvt {
    font-size: 12px;
    margin-left: 0.5em;

    margin-bottom: 2px;
  }

  .banner-w3pvt-1,
  .banner-w3pvt-2,
  .banner-w3pvt-3,
  .overlay-w3ls {
    min-height: 550px;
  }

  .hny-stats-inf {
    /* margin: 4em auto 0;
        width: 95%;*/
    margin: 1em auto 0;
    width: 55%;
    margin-right: 230px;
  }

  .tooltip {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    padding: 0.2rem 0.5rem;
  }

  .banner-hny-info {
    padding: 5em 0 1em;
  }

  .filtr-container {
    width: 79%;
  }
}

@media(max-width:600px) {

  .banner-w3pvt-1,
  .banner-w3pvt-2,
  .banner-w3pvt-3,
  .overlay-w3ls {
    min-height: 470px;
  }

  h3.tittle-w3ls,
  h3.tittle-w3ls.two {
    font-size: 1.8em;
    letter-spacing: 1px;
    margin-left: 10px;
  }

  .nav_w3pvt {
    padding: 0 1em;
  }

  .inner-w3pvt-page-info {
    padding-top: 5em;
  }

  .inner-w3pvt-page,
  .overlay-innerpage {
    min-height: 7em;
  }

  .portfolio figure {
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
    cursor: pointer;
    overflow: hidden;
    margin-left: 50px;
  }
}

@media(max-width:414px) {
  .hny-stats-inf {
    margin: 1em auto 0;
    width: 55%;
    margin-right: 150px;
  }

  .banner-w3pvt-1,
  .banner-w3pvt-2,
  .banner-w3pvt-3,
  .overlay-w3ls {
    min-height: 485px;
  }

  .nav_w3pvt {
    margin-top: 1em;
    padding: 0 1em;
  }

  .portfolio figure {
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
    cursor: pointer;
    overflow: hidden;
    margin-left: 50px;
  }
}

@media(max-width:384px) {

  h3.tittle-w3ls,
  h3.tittle-w3ls.two {
    font-size: 1.6em;
  }

  .banner-hny-info h3 {
    font-size: 1.8em;
  }

  .banner-w3pvt-1,
  .banner-w3pvt-2,
  .banner-w3pvt-3,
  .overlay-w3ls {
    min-height: 430px;
  }

  .hny-stats-inf {
    margin: 10px auto 0;
    width: 55%;
    margin-right: 130px
  }

  .portfolio figure {
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
    cursor: pointer;
    overflow: hidden;
    margin-left: 50px;
  }
}

@media(max-width:375px) {

  h3.tittle-w3ls,
  h3.tittle-w3ls.two {
    font-size: 1.5em;
  }

  .banner-w3pvt-1,
  .banner-w3pvt-2,
  .banner-w3pvt-3,
  .overlay-w3ls {
    min-height: 395px;
  }

  .portfolio figure {
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
    cursor: pointer;
    overflow: hidden;
    margin-left: 50px;
  }
}

@media(max-width:320px) {

  .banner-w3pvt-1,
  .banner-w3pvt-2,
  .banner-w3pvt-3,
  .overlay-w3ls {
    min-height: 350px;
  }

  h3.tittle-w3ls,
  h3.tittle-w3ls.two {
    font-size: 1.4em;
  }

  .banner-hny-info h3 {
    font-size: 1.6em;
  }

  .btn {
    padding: 7px 20px;
  }

  /*------------------------------------------------------------------ */
  /* ===================================
    Google font
====================================== */
  @import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");

  /* ===================================
   Scroll Top
====================================== */
  .back-to-top {
    opacity: 0;
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: #ff1637;
    color: #ffffff;
    z-index: 999;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    padding: 10px;
    border-radius: 50px;
    border-top-left-radius: 5px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.25);
  }

  .back-to-top i {
    transform: rotate(-45deg);
  }

  .back-to-top:hover,
  .back-to-top:focus {
    transform: rotate(45deg);
    color: #ffffff;
    background-color: #eb3349;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }

  .back-to-top.active {
    opacity: 1;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }

  /*===================================
   Loader
====================================== */
  .preloader {
    background: #eb3349;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999;
  }

  .preloader .spinner {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
  }

  @-webkit-keyframes sk-scaleout {
    0% {
      -webkit-transform: scale(0);
    }

    100% {
      -webkit-transform: scale(1);
      opacity: 0;
    }
  }

  @keyframes sk-scaleout {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }

    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0;
    }
  }



  @media only screen and (max-width: 992px) {
    .fluid-section--left {
      padding: 0 !important;
    }
  }




  /* ===================================
    Background image
====================================== */
  .parallax {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .fix-background {
    position: relative;
    background-size: cover;
    animation-duration: 0s;
    animation-fill-mode: none;
    -webkit-animation-duration: 0s;
    -webkit-animation-fill-mode: none;
    -moz-animation-duration: 0s;
    -moz-animation-fill-mode: none;
    -ms-animation-duration: 0s;
    -ms-animation-fill-mode: none;
    -o-animation-fill-mode: none;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .cover-background {
    position: relative !important;
    background-size: cover !important;
    overflow: hidden !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  .bg-overlay {
    background-color: #000;
    opacity: 0.8;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
  }

  /* Background Images */
  .bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .bg-img {
    width: 100vw;
    min-height: 855px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0;
    margin-top: 0;
    position: relative;
    display: flex;
    align-items: center;
  }

  .split-blog-scale {
    transform: scale(1);
    transition: 1s;
  }

  .split-blog-scale:hover {
    transform: scale(1.2);
  }

  /*-------------------------------------------------------
          [ Overlay Effect Bg image ]
-------------------------------------------------------*/
  [data-overlay-dark],
  [data-overlay-color],
  [data-overlay-light] {
    position: relative;
  }

  [data-overlay-dark] .container,
  [data-overlay-color] .container,
  [data-overlay-light] .container {
    position: relative;
    color: #fff;
    z-index: 2;
  }

  [data-overlay-dark]:before,
  [data-overlay-color]:before,
  [data-overlay-light]:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }

  [data-overlay-dark]:before {
    background: #0b1520;
  }

  [data-overlay-color]:before {
    background-color: #eb3349;
  }

  [data-overlay-light]:before {
    background: #fff;
  }

  [data-overlay-dark] h1,
  [data-overlay-dark] h2,
  [data-overlay-dark] h3,
  [data-overlay-dark] h4,
  [data-overlay-dark] h5,
  [data-overlay-dark] h6,
  [data-overlay-dark] span {
    color: #fff;
  }

  [data-overlay-dark] p {
    color: #fff;
  }

  [data-overlay-light] h1,
  [data-overlay-light] h2,
  [data-overlay-light] h3,
  [data-overlay-light] h4,
  [data-overlay-light] h5,
  [data-overlay-light] h6,
  [data-overlay-light] span {
    color: #555;
  }

  [data-overlay-light] p {
    color: #555;
  }

  [data-overlay-dark="0"]:before,
  [data-overlay-color="0"]:before,
  [data-overlay-light="0"]:before {
    opacity: 0;
  }

  [data-overlay-dark="1"]:before,
  [data-overlay-color="1"]:before,
  [data-overlay-light="1"]:before {
    opacity: 0.1;
  }

  [data-overlay-dark="2"]:before,
  [data-overlay-color="2"]:before,
  [data-overlay-light="2"]:before {
    opacity: 0.2;
  }

  [data-overlay-dark="3"]:before,
  [data-overlay-color="3"]:before,
  [data-overlay-light="3"]:before {
    opacity: 0.3;
  }

  [data-overlay-dark="4"]:before,
  [data-overlay-color="4"]:before,
  [data-overlay-light="4"]:before {
    opacity: 0.4;
  }

  [data-overlay-dark="5"]:before,
  [data-overlay-color="5"]:before,
  [data-overlay-light="5"]:before {
    opacity: 0.5;
  }

  [data-overlay-dark="6"]:before,
  [data-overlay-color="6"]:before,
  [data-overlay-light="6"]:before {
    opacity: 0.6;
  }

  [data-overlay-dark="7"]:before,
  [data-overlay-color="7"]:before,
  [data-overlay-light="7"]:before {
    opacity: 0.7;
  }

  [data-overlay-dark="8"]:before,
  [data-overlay-color="8"]:before,
  [data-overlay-light="8"]:before {
    opacity: 0.8;
  }

  [data-overlay-dark="9"]:before,
  [data-overlay-color="9"]:before,
  [data-overlay-light="9"]:before {
    opacity: 0.9;
  }

  [data-overlay-dark="10"]:before,
  [data-overlay-color="10"]:before,
  [data-overlay-light="10"]:before {
    opacity: 1;
  }



  /* ===================================
   Contact
====================================== */
  .form-control:focus {
    border-color: #eb3349;
  }

  .custom-select.is-invalid,
  .form-control.is-invalid,
  .was-validated .custom-select:invalid,
  .was-validated .form-control:invalid {
    border: 1px solid;
    border-color: #dc3545;
  }

  .newsletter .newsletter-text .form-control {
    border-radius: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 50px;
    text-align: center;
  }

  .newsletter .newsletter-button {
    text-align: center;
  }

  /**
 * Breadcrumb Area
 */
  .breadcrumb-area {
    padding: 410px 0 50px 0;
  }

  .breadcrumb-area .heading {
    margin-bottom: 5px;
    text-align: center;
  }

  .breadcrumb-area .heading h2 {
    color: #fff;
  }

  .breadcrumb-area .heading h2 b {
    color: #fff;
  }

  .breadcrumb-area .breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: transparent;
    border-radius: 0.25rem;
  }

  .breadcrumb-area .breadcrumb .breadcrumb-item {
    color: #fff;
  }

  .breadcrumb-area .breadcrumb .breadcrumb-item a {
    color: #fff;
  }

  .breadcrumb-area .breadcrumb .breadcrumb-item.active {
    color: #fff;
    font-weight: bold;
  }

  .breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #fff;
    content: "/";
  }

  .icon-box {
    padding: 60px 30px;
    border-radius: 5px;
    margin: 15px 0;
    background-color: #ffffff;
    -webkit-box-shadow: 0 4px 40px 0 rgba(22, 52, 75, 0.05);
    -moz-box-shadow: 0 4px 40px 0 rgba(22, 52, 75, 0.05);
    box-shadow: 0 4px 40px 0 rgba(22, 52, 75, 0.05);
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .icon-box .icon-box--img {
    width: 75px;
    background-color: #eb3349;
    padding: 15px;
    border-radius: 50px;
    border-bottom-right-radius: 5px;
    margin-bottom: 25px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .icon-box .icon-box--img svg {
    fill: #ffffff;
  }

  .icon-box .icon-box--title {
    color: #343d48;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .icon-box .icon-box--desc {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
  }

  .icon-box:hover {
    -webkit-box-shadow: 0 4px 40px 0 rgba(22, 52, 75, 0.08);
    -moz-box-shadow: 0 4px 40px 0 rgba(22, 52, 75, 0.08);
    box-shadow: 0 4px 40px 0 rgba(22, 52, 75, 0.08);
    transform: translateY(-5px);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .icon-box:hover .icon-box--img {
    border-radius: 50px;
    border-top-left-radius: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .icon-box-two {
    text-align: center;
    padding: 15px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .icon-box-two i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-align: center;
    color: #1f1f1f;
    font-size: 64px;
    padding: 0;
    margin: 0;
    display: inline-block;
    line-height: 1;
    margin-bottom: 20px;
  }

  .icon-box-two .content h5 {
    margin-bottom: 15px;
    text-transform: capitalize;
    color: #080708;
  }

  .icon-box-two .content a {
    text-transform: capitalize;
    margin-top: 10px;
    display: inline-block;
  }

  .icon-box-three {
    padding: 60px 30px;
    border-radius: 5px;
    margin: 15px 0;
    text-align: center;
    background-color: #ffffff;
    -webkit-box-shadow: 0 4px 40px 0 rgba(22, 52, 75, 0.05);
    -moz-box-shadow: 0 4px 40px 0 rgba(22, 52, 75, 0.05);
    box-shadow: 0 4px 40px 0 rgba(22, 52, 75, 0.05);
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .icon-box-three .icon-box--img {
    width: 90px;
    height: 90px;
    background-color: #eb3349;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    margin-right: auto;
    margin-left: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .icon-box-three .icon-box--img svg {
    fill: light;
  }

  .icon-box-three .icon-box--title {
    color: #343d48;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .icon-box-three .icon-box--desc {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
  }

  .icon-box-three:hover {
    -webkit-box-shadow: 0 4px 40px 0 rgba(22, 52, 75, 0.08);
    -moz-box-shadow: 0 4px 40px 0 rgba(22, 52, 75, 0.08);
    box-shadow: 0 4px 40px 0 rgba(22, 52, 75, 0.08);
    transform: translateY(-5px);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .icon-box-three:hover .icon-box--img {
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .icon-box-four {
    text-align: center;
    padding: 15px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .icon-box-four i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-align: center;
    margin: 0;
    display: inline-block;
    line-height: 1;
    margin-bottom: 20px;
    width: 90px;
    height: 90px;
    background-color: #eb3349;
    padding: 20px;
    border-radius: 100px;
    border-bottom-right-radius: 10px;
    margin-right: auto;
    margin-left: auto;
    font-size: 45px;
    color: #ffffff;
  }

  .icon-box-four .content h5 {
    margin-bottom: 15px;
    text-transform: capitalize;
    color: #080708;
  }

  .icon-box-four .content a {
    text-transform: capitalize;
    margin-top: 10px;
    display: inline-block;
  }

  .featureBox {
    margin: 15px 0;
    text-align: center;
    padding: 15px 25px;
  }

  .featureBox .featureBox--icon {
    max-width: 75px;
    height: 75px;
    margin: 0 auto 25px;
  }

  .featureBox .featureBox--icon svg,
  .featureBox .featureBox--icon svg path,
  .featureBox .featureBox--icon polygon {
    fill: #eb3349;
  }

  .featureBox .featureBox--title {
    margin-bottom: 10px;
  }

  .featureBox--two {
    margin: 15px 0;
    text-align: center;
    padding: 15px 25px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
  }

  .featureBox--two .featureBox--icon {
    max-width: 75px;
    height: 75px;
    margin: 0 auto 25px;
  }

  .featureBox--two .featureBox--icon svg,
  .featureBox--two .featureBox--icon svg path,
  .featureBox--two .featureBox--icon polygon {
    fill: #343d48;
  }

  .featureBox--two .featureBox--title {
    margin-bottom: 10px;
  }

  .featureBox--two:hover {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    transform: translateY(-3px);
  }

  .featureBox--two:hover .featureBox--icon {
    max-width: 75px;
    height: 75px;
    margin: 0 auto 25px;
  }

  .featureBox--two:hover .featureBox--icon svg,
  .featureBox--two:hover .featureBox--icon svg path,
  .featureBox--two:hover .featureBox--icon polygon {
    fill: #eb3349;
  }

  .portfolio-box--one {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 5px;
    transition: all ease-in-out 0.4s;
    cursor: crosshair;
  }

  .portfolio-box--one .portfolio--img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }

  .portfolio-box--one .portfolio--info {
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    background-color: #fff;
    overflow: hidden;
    text-align: center;
    transition: all ease-in-out 0.4s;
    transform: translateY(100%);
    opacity: 0;
  }

  .portfolio-box--one .portfolio--info h5 {
    margin: 25px 0 0;
    color: #000;
  }

  .portfolio-box--one .portfolio--info p {
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 500;
    color: #5c636c;
  }

  .portfolio-box--one:hover .portfolio--info {
    transition: all ease-in-out 0.4s;
    transform: translateY(0);
    opacity: 1;
  }

  .portfolio-box--two {
    cursor: crosshair;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 5px;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    margin-left: auto;
    margin-right: auto;
  }

  .portfolio-box--two .portfolio--img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }

  .portfolio-box--two .portfolio--info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 4px;
    justify-content: center;
    padding: 30px 40px;
    background-color: rgba(235, 51, 73, 0.9);
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    opacity: 0;
  }

  .portfolio-box--two .portfolio--info .portfolio--info--text {
    position: relative;
  }

  .portfolio-box--two .portfolio--info h5 {
    color: #ffffff;
    text-transform: capitalize;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    opacity: 0;
    margin: 25px 0 0;
    text-align: center;
  }

  .portfolio-box--two .portfolio--info p {
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 500;
    color: #f8f8f8;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
    opacity: 0;
  }

  .portfolio-box--two:hover .portfolio--img {
    /* IE 9 */
    -webkit-transform: scale(1.3);
    /* Safari */
    transform: scale(1.3);
    /* Standard syntax */
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }

  .portfolio-box--two:hover .portfolio--info {
    opacity: 1;
  }

  .portfolio-box--two:hover h5 {
    opacity: 1;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }

  .portfolio-box--two:hover p {
    opacity: 1;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }

  .portfolio-categories {
    float: none;
    text-align: center;
    position: relative;
    display: block;
    margin-bottom: 50px;
    padding: 0;
  }

  .portfolio-categories li {
    background: #eb3349;
    color: #fff;
    border-color: #343d48;
    margin: 10px 5px;
    padding: 8px 30px;
    border-radius: 50px;
    float: none;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0);
    transition: all .3s ease-in-out;
  }

  .portfolio-categories li.active,
  .portfolio-categories li:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: #fff;
    color: #eb3349;
  }

  .cta--section {
    width: 100%;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: top right;
    padding: 80px 0;
    background-size: auto;
  }

  .cta--section .cta--inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cta--section .cta--data {
    text-align: left;
    width: 70%;
    display: flex;
    justify-content: space-between;
  }

  .cta--section .cta--data i {
    margin-top: -15px;
    font-size: 64px;
    color: #ffffff;
    display: inline-block;
  }

  .cta--section .cta--data h3 {
    margin-bottom: 10px;
    color: #ffffff;
  }

  .cta--section .cta--data p {
    font-size: 14px;
    color: #ffffff;
  }

  .cta--section .cta--data .cta--text {
    display: inline-block;
    margin-left: 20px;
  }

  .cta--section .cta--btn {
    width: 30%;
    text-align: right;
  }

  @media only screen and (max-width: 768px) {
    .cta--section {
      background-size: cover;
    }

    .cta--section .cta--inner {
      display: block;
      align-items: center;
      justify-content: space-between;
    }

    .cta--section .cta--data {
      text-align: center;
      width: 100%;
      display: block;
    }

    .cta--section .cta--data i {
      margin-top: 5px;
    }

    .cta--section .cta--data .cta--text {
      margin-left: 0;
    }

    .cta--section .cta--btns {
      width: 100%;
      text-align: center;
    }
  }

  .team-box {
    max-width: 350px;
    margin: 0 auto;
    position: relative;
    border: solid 2px #f7f7f7;
    border-radius: 10px;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    transform: translateY(0);
  }

  .team-box .team-box--img {
    border-radius: 5px;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .team-box .team-box--content {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 15px;
    text-align: center;
  }

  .team-box .team-box--name {
    font-size: 18px;
    color: #111111;
    margin: 0;
    padding-bottom: 5px;
  }

  .team-box .team-box--job {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 500;
    color: #5c636c;
  }

  .team-box .team-member-links {
    left: 0;
    position: absolute;
    text-align: center;
    bottom: 30px;
    width: 100%;
    z-index: 2;
  }

  .team-box .team-member-links a {
    color: #FFF;
    display: inline-block;
    background: #080808;
    width: 35px;
    border-radius: 50px;
    height: 35px;
    line-height: 31px;
    font-size: 16px;
    padding: 3px;
    text-align: center;
    margin: 0 2px;
  }

  .team-box .team-member-links .icon-links a:nth-child(1) {
    transform: translateY(-40px) scale(0);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.05s;
  }

  .team-box .team-member-links .icon-links a:nth-child(2) {
    transform: translateY(-40px) scale(0);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.1s;
  }

  .team-box .team-member-links .icon-links a:nth-child(3) {
    transform: translateY(-40px) scale(0);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.15s;
  }

  .team-box .team-member-links .icon-links a:nth-child(4) {
    transform: translateY(-40px) scale(0);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.2s;
  }

  .team-box .team-member-links .icon-links a:nth-child(5) {
    transform: translateY(-40px) scale(0);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.25s;
  }

  .team-box .team-member-links .icon-links a:nth-child(6) {
    transform: translateY(-40px) scale(0);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.3s;
  }

  .team-box .team-member-links .icon-links a:nth-child(7) {
    transform: translateY(-40px) scale(0);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.35s;
  }

  .team-box .team-member-links .icon-links a:nth-child(8) {
    transform: translateY(-40px) scale(0);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.4s;
  }

  .team-box .team-member-links .icon-links a:nth-child(9) {
    transform: translateY(-40px) scale(0);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.45s;
  }

  .team-box:hover {
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    transform: translateY(-5px);
  }

  .team-box:hover .team_img {
    box-shadow: 0 0 42px rgba(0, 0, 0, 0.05);
  }

  .team-box:hover .team_img:before {
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    opacity: 1;
  }

  .team-box:hover .team_img ul.team_social {
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  .team-box:hover .team-member-links .icon-links a:nth-child(1) {
    transform: translateY(0) scale(1);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.05s;
  }

  .team-box:hover .team-member-links .icon-links a:nth-child(2) {
    transform: translateY(0) scale(1);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.1s;
  }

  .team-box:hover .team-member-links .icon-links a:nth-child(3) {
    transform: translateY(0) scale(1);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.15s;
  }

  .team-box:hover .team-member-links .icon-links a:nth-child(4) {
    transform: translateY(0) scale(1);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.2s;
  }

  .team-box:hover .team-member-links .icon-links a:nth-child(5) {
    transform: translateY(0) scale(1);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.25s;
  }

  .team-box:hover .team-member-links .icon-links a:nth-child(6) {
    transform: translateY(0) scale(1);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.3s;
  }

  .team-box:hover .team-member-links .icon-links a:nth-child(7) {
    transform: translateY(0) scale(1);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.35s;
  }

  .team-box:hover .team-member-links .icon-links a:nth-child(8) {
    transform: translateY(0) scale(1);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.4s;
  }

  .team-box:hover .team-member-links .icon-links a:nth-child(9) {
    transform: translateY(0) scale(1);
    -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.45s;
  }

  .teamSlider {
    width: calc(100% - 90px);
    margin: 0 auto;
  }

  @media only screen and (max-width: 992px) {
    .teamSlider {
      width: 100%;
      padding: 0 50px;
    }
  }

  .teamSlider.owl-carousel .owl-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 0;
  }

  .teamSlider.owl-carousel .owl-nav button.owl-prev,
  .teamSlider.owl-carousel .owl-nav button.owl-next {
    background: #eb3349 !important;
    color: #ffffff;
    outline: 0 !important;
    border: none !important;
    padding: 3px 7px !important;
    box-shadow: 0 0 0 !important;
    width: 35px;
    height: 35px;
    border-radius: 50px;
  }

  .teamSlider.owl-carousel .owl-nav button.owl-prev:hover,
  .teamSlider.owl-carousel .owl-nav button.owl-next:hover {
    opacity: 0.9;
  }

  .teamSlider.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: calc(50% - 40px);
    left: -45px;
  }

  @media only screen and (max-width: 992px) {
    .teamSlider.owl-carousel .owl-nav .owl-prev {
      left: 0;
      z-index: 8;
    }
  }

  .teamSlider.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: calc(50% - 40px);
    right: -45px;
  }

  @media only screen and (max-width: 992px) {
    .teamSlider.owl-carousel .owl-nav .owl-next {
      right: 0;
      z-index: 8;
    }
  }

  .owl-carousel .owl-stage-outer {
    z-index: 5;
  }

  /*  ----------------------------------------------------
. PRICING SECTION
-------------------------------------------------------- */
  .priceBox {
    text-align: center;
    border-radius: 5px;
    padding: 40px 30px;
    max-width: 350px;
    margin: 25px auto;
    box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.04);
    transition: 1s;
    cursor: pointer;
  }

  .priceBox .priceBox--title {
    font-weight: bold;
    color: #000;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .priceBox .priceBox--value {
    font-size: 24px;
    font-weight: bolder;
    color: #333333;
    margin-bottom: 25px;
  }

  .priceBox .priceBox--value span {
    font-size: 60px;
  }

  .priceBox .priceBox--list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    margin-bottom: 25px;
  }

  .priceBox .priceBox--list li {
    padding: 7px 0;
    font-weight: 500;
    font-size: 14px;
    color: #000;
  }

  .priceBox:hover {
    background-color: #eb3349;
  }

  .priceBox:hover .priceBox--title,
  .priceBox:hover .priceBox--value,
  .priceBox:hover .priceBox--list li {
    color: #ffffff;
  }

  .priceBox.featuredBox {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #eb3349;
  }

  .priceBox.featuredBox .priceBox--title,
  .priceBox.featuredBox .priceBox--value,
  .priceBox.featuredBox .priceBox--list li {
    color: #ffffff;
  }

  .priceBox.featuredBox:hover {
    background-color: #ff1637;
  }

  .priceBox.featuredBox:hover .priceBox--title,
  .priceBox.featuredBox:hover .priceBox--value,
  .priceBox.featuredBox:hover .priceBox--list li {
    color: #ffffff;
  }

  .sectiontitle {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
  }

  .sectiontitle .sectiontitle--subtitle {
    margin-bottom: 0;
    line-height: 1;
    font-size: 13px;
  }

  .sectiontitle .sectiontitle--subtitle span {
    margin-bottom: 5px;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
  }

  .sectiontitle .sectiontitle--subtitle span:before {
    content: '';
    display: block;
    height: 1px;
    width: 45px;
    background-color: #eb3349;
    position: absolute;
    left: -50px;
    top: 7px;
  }

  .sectiontitle .sectiontitle--subtitle span:after {
    content: '';
    display: block;
    height: 1px;
    width: 45px;
    background-color: #eb3349;
    position: absolute;
    right: -50px;
    top: 7px;
  }

  .sectiontitle .sectiontitle--name {
    margin-bottom: 5px;
    color: #000;
    text-transform: capitalize;
  }

  .sectiontitle .sectiontitle--text {
    font-size: 18px;
  }

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

  .sectiontitle.text--left .sectiontitle--subtitle span:before {
    content: none;
  }

  .sectiontitle--two {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 50px;
    text-align: center;
  }

  .sectiontitle--two .sectiontitle--icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #eb3349;
  }

  .sectiontitle--two .sectiontitle--name {
    margin-bottom: 15px;
    color: #000;
    text-transform: capitalize;
  }

  .sectiontitle--two .sectiontitle--text {
    font-size: 16px;
  }

  .sectiontitle--two.text--left {
    text-align: left;
  }

  .form-control {
    font-size: 13px;
    padding: 12px 15px;
    height: 50px;
    border-radius: 50px;
    border: none;
    background-color: #e6e6e6;
    margin-bottom: 25px;
    outline: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .form-control:focus {
    color: #343d48;
    background-color: #fff;
    border-color: #f7f7f7;
    outline: 0;
    box-shadow: 0 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  textarea.form-control {
    height: 180px;
    min-height: 180px;
    border-radius: 10px;
  }

  #map {
    height: 100%;
    min-height: 500px;
    width: 100%;
    border: 0;
    box-shadow: 0 0 0;
  }

  .map_container_aps {
    position: relative;
    height: 100%;
  }

  .map_container_aps iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    border-radius: 4px;
  }

  .page_heading {
    padding: 225px 0 150px 0;
    text-align: center;
    position: relative;
  }

  .page_heading .overlay_dark {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .page_heading h2 {
    color: #FFFFFF;
    margin: 0;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
  }

  .page_heading .heading_line {
    width: 50px;
    margin: 0 auto;
    background-color: #ffffff;
    height: 2px;
    border-radius: 5px;
  }

  .page_heading p {
    color: #f7f7f7;
    margin-top: 15px;
    font-size: 18px;
  }

  .testimonialbox-one {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    padding: 5em;
    border-radius: 10px;
  }

  .testimonialbox-one svg {
    max-width: 75px;
    fill: #fff;
  }

  .testimonialbox-one .testimonialbox--p {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    padding: 50px;
    font-weight: 600;
  }

  .testimonialbox-one .testimonialbox--name {
    color: #fff;
    margin: 15px 0 0;
    text-transform: capitalize;
  }

  .testimonialbox-one .testimonialbox--name span {
    text-transform: capitalize;
    color: #ff1637;
    font-weight: 500;
    font-size: 13px;
    padding: 9px;
    background: #fff;
    margin-left: 11px;
  }

  .testimonialbox-one .testimonialbox--img {
    text-align: center;
    margin: 0 auto;
  }

  .testimonialbox-one .testimonialbox--img img {
    margin: 0 auto;
    border-radius: 50px;
    width: 75px;
    border: solid 2px #eb3349;
  }

  .owl-carousel .owl-dots .owl-dot span {
    width: 5px;
    height: 5px;
    margin: 5px;
    background: #eb3349;
    display: block;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-backface-visibility: visible;
    border-radius: 30px;
  }

  .owl-carousel .owl-dots .owl-dot.active span {
    background-color: #eb3349;
    -webkit-transform: scaleY(1.1);
    transform: scaleY(1.1);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }

  .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: -30px;
  }



  @-webkit-keyframes pulse_effect {
    0% {
      -webkit-box-shadow: 0 0 0 5px rgba(255, 22, 55, 0.9);
      box-shadow: 0 0 0 5px rgba(255, 22, 55, 0.9);
    }

    25% {
      -webkit-box-shadow: 0 0 0 10px rgba(255, 22, 55, 0.6);
      box-shadow: 0 0 0 10px rgba(255, 22, 55, 0.6);
    }

    70% {
      -webkit-box-shadow: 0 0 0 15px rgba(255, 22, 55, 0.3);
      box-shadow: 0 0 0 15px rgba(255, 22, 55, 0.3);
    }

    100% {
      -webkit-box-shadow: 0 0 0 60px rgba(255, 22, 55, 0.1);
      box-shadow: 0 0 0 20px rgba(255, 22, 55, 0.1);
    }
  }

  @-o-keyframes pulse_effect {
    0% {
      box-shadow: 0 0 0 5px rgba(255, 22, 55, 0.9);
    }

    25% {
      box-shadow: 0 0 0 10px rgba(255, 22, 55, 0.6);
    }

    70% {
      box-shadow: 0 0 0 15px rgba(255, 22, 55, 0.3);
    }

    100% {
      box-shadow: 0 0 0 20px rgba(255, 22, 55, 0.1);
    }
  }

  @keyframes pulse_effect {
    0% {
      -webkit-box-shadow: 0 0 0 3px rgba(255, 22, 55, 0.9);
      box-shadow: 0 0 0 3px rgba(255, 22, 55, 0.9);
    }

    25% {
      -webkit-box-shadow: 0 0 0 6px rgba(255, 22, 55, 0.6);
      box-shadow: 0 0 0 6px rgba(255, 22, 55, 0.6);
    }

    70% {
      -webkit-box-shadow: 0 0 0 9px rgba(255, 22, 55, 0.3);
      box-shadow: 0 0 0 9px rgba(255, 22, 55, 0.3);
    }

    100% {
      -webkit-box-shadow: 0 0 0 12px rgba(255, 22, 55, 0.1);
      box-shadow: 0 0 0 12px rgba(255, 22, 55, 0.1);
    }
  }

  /* video mobile app */
  .app-image {
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    max-width: 554px;
    max-height: 280px;
    margin: 0 auto;
  }

  .app-image img {
    max-height: 280px;
    margin: 0 auto;
    display: inline-block;
  }

  .video-app {
    position: absolute;
    top: 8%;
    max-height: 235px;
    left: 12%;
    max-width: 420px;
    overflow: hidden;
  }



  .social-lists li a {
    font-size: 16px;
    height: 40px;
    width: 40px;
    line-height: 1.875rem;
    border-radius: 100px;
    background: #eb3349;
    border: solid 2px #eb3349;
    color: #fff;
    text-align: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: block;
    padding: 7px;
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .social-lists li a:hover {
    background-color: transparent;
    color: #eb3349;
    border-color: #eb3349;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    transform: translateY(-3px);
  }

  /* ===================================
   Responsive
====================================== */
  @media screen and (max-width: 991px) {
    section {
      padding: 80px 0;
      overflow: hidden;
    }

    .header-with-topbar .top-header-area {
      display: none;
    }

    .header-with-topbar .fixed-top {
      top: 0;
    }

    .back-to-top.active,
    .hero .down--btn {
      display: none !important;
    }

    .menu {
      width: 50%;
    }

    .menu .menu-list {
      width: 70%;
      bottom: 12.5rem;
    }

    button.navbar-toggle {
      background: transparent;
      border: none;
      color: #fff;
      cursor: pointer;
      font-size: 25px;
    }
  }

  @media screen and (max-width: 768px) {
    h1 {
      font-size: 45px;
      line-height: 45px;
    }

    h4 {
      font-size: 28px;
      line-height: 28px;
    }

    .col-video {
      height: 370px;
      padding: 49px;
    }

    .video-play-button {
      top: initial;
      right: 50%;
      bottom: -62px;
    }

    .menu {
      width: 100%;
    }
  }

  @media screen and (max-width: 500px) {
    .testimonialbox-one {
      padding: 0;
    }
  }

  @media screen and (max-width: 400px) {
    .logo img {
      width: 95px;
      height: 40px;
      object-fit: cover;
      object-position: -2% 50%;
    }

    .hero .content .home-left h1 {
      font-size: 45px;
      line-height: 50px;
    }

    .p-feature .feature-slider .feature-circle {
      height: 380px;
      width: 380px;
    }

    .b-features {
      background-position: -325px;
    }

    .product-price {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
    }

    .product-price span {
      margin-bottom: 10px;
    }

    .product-price a {
      margin-left: 0 !important;
    }

    .p-feature .p-feature-content {
      padding: 45px 15px;
    }

    .p-feature .collapse-feature {
      cursor: pointer;
      margin-bottom: 30px;
    }

    .p-feature .collapse-feature>div {
      flex-direction: column;
    }

    .unboxed .unboxed-content .number-content .number {
      font-size: 3rem;
      line-height: 3rem;
    }

    .unboxed .unboxed-content .number-content span {
      font-size: 16px;
      text-align: center;
      line-height: 33px;
    }

    .cart-wrapper .cart-item-wrapper {
      right: -90px;
      width: 250px;
    }

    .cart-wrapper .cart-item-wrapper .cart-product-content {
      max-height: 130px;
      overflow-y: auto;
    }

    .cart-wrapper .cart-item-wrapper .single-cart-item {
      flex-direction: column;
    }

    .cart-wrapper .cart-item-wrapper .single-cart-item .cart-img {
      display: none;
    }

    .cart-wrapper .cart-item-wrapper .cart-product-content .single-cart-item .cart-text-btn .cart-text {
      padding-left: 0;
    }

    .cart-wrapper .cart-item-wrapper .cart-product-content .single-cart-item .cart-text-btn .cart-text h5 {
      font-size: 16px;
      line-height: 20px;
      padding-right: 25px;
    }

    .cart-wrapper .cart-item-wrapper .cart-price-total {
      font-size: 16px;
      line-height: 17px;
      margin-bottom: 10px;
      padding: 19px 20;
    }

    .cart-wrapper .cart-item-wrapper .cart-price-total span {
      top: 0;
    }

    .cart-links {
      flex-direction: column;
    }

    .cart-links a {
      margin-right: 0 !important;
      margin-bottom: 10px;
    }

    .b-features .b-features-content h3 {
      font-size: 30px;
      line-height: 35px;
      color: #b51010;
      background: linear-gradient(to right, #b51010 0%, #ac004b 100%);
      background-clip: border-box;
      -webkit-background-clip: text;
      -webkit-text-fill-color: #b51010;
    }

    .shop .product-item {
      margin-right: 35px;
      margin-left: 0px;
    }

    .curve.curve-bottom {
      left: 0;
      bottom: -1px;
      width: 100%;
      display: none;
    }
  }