@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,400i,500,500i,600&display=swap&subset=latin-ext");
/*
    font-family: 'Poppins', sans-serif;
*/
html, body {
  font-family: "Poppins", sans-serif;
  color: #000;
  float: left;
  width: 100%;
}

#wrapper {
  float: left;
  width: 100%;
}

#mainContent {
  float: left;
  width: 100%;
}

#header {
  float: left;
  width: 100%;
  height: 120px;
  top: 0;
  z-index: 99;
  position: -webkit-sticky;
  position: sticky;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  margin-bottom: -120px;
}

@media only screen and (max-width: 1024px) {
  #header {
    height: 80px;
    margin-bottom: -80px;
  }
}

#header .mainLogo {
  display: block;
}

#header .stickyLogo {
  display: none;
}

#header.sticky-header {
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px rgba(25, 25, 25, 0.3);
          box-shadow: 0 0 5px rgba(25, 25, 25, 0.3);
  height: 80px;
  margin-bottom: -80px;
}

#header.sticky-header .logo img {
  height: 60px;
}

#header.sticky-header .mainLogo {
  display: none;
}

#header.sticky-header .stickyLogo {
  display: block;
}

#header.sticky-header .navigation ul a {
  color: #000;
}

@media only screen and (max-width: 1024px) {
  #header.sticky-header .mobile-nav {
    border-color: #000;
  }
  #header.sticky-header .mobile-nav a {
    background: url(../images/mobile-nav.png) no-repeat center center;
    background-size: 21px;
  }
  #header.sticky-header .mobile-nav.active a {
    background: url(../images/close.png) no-repeat center center;
    background-size: 15px;
  }
}

#header .header-inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 1024px) {
  #header .header-inside {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#header .mobile-nav {
  display: none;
  position: absolute;
  left: 15px;
  border: 2px solid #fff;
}

@media only screen and (max-width: 1024px) {
  #header .mobile-nav {
    display: block;
  }
}

#header .mobile-nav.active a {
  background: url(../images/closeWhite.png) no-repeat center center;
  background-size: 15px;
}

#header .mobile-nav a {
  float: left;
  background: url(../images/mobile-navWhite.png) no-repeat center center;
  background-size: 21px;
  font-size: 0;
  width: 30px;
  height: 30px;
}

#header .logo {
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

#header .logo img {
  height: 100px;
  float: left;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

@media only screen and (max-width: 1024px) {
  #header .logo img {
    height: 60px;
  }
}

#header .h-right {
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .navigation {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  #header .navigation {
    position: fixed;
    left: -100%;
    margin: 0;
    top: 80px;
    width: 100%;
    height: calc(100vh - 80px);
    background: #fff;
    border-top: 1px solid #e6e4e4;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    z-index: 999;
  }
  #header .navigation.active {
    left: 0;
  }
}

#header .navigation ul {
  float: left;
  margin: 0;
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  #header .navigation ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

#header .navigation ul li {
  float: left;
  margin-right: 30px;
}

@media only screen and (max-width: 1024px) {
  #header .navigation ul li {
    margin: 15px 0;
  }
}

#header .navigation ul li:last-child {
  margin-right: 0;
}

#header .navigation ul a {
  float: left;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

@media only screen and (max-width: 1024px) {
  #header .navigation ul a {
    font-size: 22px;
    color: #000;
  }
}

#header .navigation ul a:hover {
  text-decoration: none;
}

#header .navigation ul .active {
  border-bottom: 1px solid #fff;
}

#footer {
  float: left;
  width: 100%;
  background: #1a1a1a url(../images/footer.jpg) no-repeat center top;
  padding-top: 50px;
}

@media only screen and (max-width: 767px) {
  #footer {
    padding-top: 15px;
    background-size: cover;
    background-position: unset;
  }
}

#footer.simpleFooter {
  background: transparent;
  padding: 15px 0;
}

#footer.simpleFooter .copyright {
  color: #1a1a1a;
  margin-top: 0;
  padding-bottom: 0;
}

#footer .copyright {
  float: left;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-top: 30px;
  padding-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  #footer .copyright {
    font-style: 14px;
    line-height: normal;
  }
}

#footer .fooTitle {
  float: left;
  width: 100%;
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  #footer .fooTitle {
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
  }
}

@media only screen and (max-width: 767px) {
  #footer .fooContactWrapper .fooTitle {
    margin-top: 30px;
  }
}

#footer .fooNav {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer .fooNav li {
  float: left;
  width: 100%;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  #footer .fooNav li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#footer .fooNav li a {
  float: left;
  color: #fff;
  line-height: normal;
  font-size: 18px;
  text-decoration: none;
}

#footer .fooContact {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer .fooContact li {
  float: left;
  width: 100%;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  #footer .fooContact li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#footer .fooContact li a {
  float: left;
  color: #fff;
  line-height: normal;
  font-size: 18px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer .fooContact li img {
  float: left;
  width: 35px;
  margin-right: 15px;
}

#footer .fooSocialMedia {
  float: left;
  width: 100%;
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
}

@media only screen and (max-width: 767px) {
  #footer .fooSocialMedia {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#footer .fooSocialMedia li {
  float: left;
  margin-right: 15px;
}

#footer .fooSocialMedia li:last-child {
  margin-right: 0;
}

#footer .fooSocialMedia li a {
  float: left;
}

#footer .fooSocialMedia li img {
  float: left;
  width: 40px;
}
/*# sourceMappingURL=layout.css.map */