@import url('https://fonts.googleapis.com/css?family=Lato:400,700|Roboto:400,500,700');

*:focus { outline: none; }
html {
  height: 100%;
  font-size: 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  height: 100%;
  background: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #646464;
  line-height: 1;
  overflow-x: hidden;
}
body.open-mobile {
  overflow-y: hidden;
}

.btn {
  display: inline-block;
  min-width: 110px;
  max-width: 100%;
  height: 50px;
  padding: 0 15px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  background-repeat: no-repeat;
  color: #fff;
  border: none;
  background-color: #cfc764;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 3px;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.btn:hover {
  background-color: #c7bf5f;
}
.btn-sm {
  height: 32px;
  font-size: 15px;
}
.btn[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-block {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.form-control {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 18px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #646464;
  background-color: transparent;
  background-image: none;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.form-control:focus {
  border-color: #ccc;
}
.form-error {
  color: #ff0000;
  line-height: 1.8;
  text-align: left;
  padding-top: 10px;
}
.form-control::-moz-placeholder {
  color: #bbb;
}
.form-control:focus::-moz-placeholder {
  color: #bbb;
}
.form-control:-ms-input-placeholder {
  color: #bbb;
}
.form-control:focus:-ms-input-placeholder {
  color: #bbb;
}
.form-control::-webkit-input-placeholder {
  color: #bbb;
}
.form-control::-moz-placeholder {
  color: #bbb;
}

.nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-inline {
  font-size: 0;
}
.nav > li {
  margin: 0;
  padding: 0;
}
.nav-inline > li {
  display: inline-block;
}

h1 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 15px;
}
h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: #3d3d3d;
  line-height: 1.3;
  margin-bottom: 15px;
}
h5 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}
.text h2 {
  margin-bottom: 30px;
}

p {
  margin: 0;
}

.text {
  line-height: 1.8;
}
.text-lg {
  font-size: 17px;
}
.text-lgg {
  font-size: 18px;
}
.text b,
.text strong {
  font-weight: 500;
}
.text img {
  max-width: 100% !important;
  height: auto !important;
}
.text ul {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}
.text ul li {
  position: relative;
  margin: 0 0 10px 0;
  padding: 0 0 0 25px;
}
.text ul li:before {
  position: absolute;
  content: '';
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  background: #cfc764;
  border-radius: 50%;
}
.text a:hover {
  color: #cfc764;
}
.text-center {
  text-align: center;
}

@media (max-width: 991px) {
  h2 {
    font-size: 26px;
  }
  .text {
    font-size: 15px;
    line-height: 1.5;
  }
  .text-lg {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 21px;
  }
  .text {
    font-size: 14px;
  }
  .text-lg {
    font-size: 14px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .1);
  z-index: 99;
}
.header {
  display: table;
  width: 100%;
  height: 100px;
}
.header > div {
  display: table-cell;
  vertical-align: middle;
}
.mobile-toggle {
  position: relative;
  width: 50px;
}
.mobile-toggle .patty {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.mobile-toggle .patty div {
  position: relative;
  top: 40px;
  left: 30px;
  width: 15px;
  height: 2px;
  margin: 7px 0;
  background: #767676;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mobile-toggle .patty div:after,
.mobile-toggle .patty div:before {
  position: absolute;
  content: '';
  display: block;
  width: 15px;
  height: 2px;
  background: #767676;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mobile-toggle .patty div:before {
  top: -6px;
}
.mobile-toggle .patty div:after {
  top: 6px;
}
.mobile-toggle .patty:hover {
  -webkit-transition: top 0.4s;
  transition: top 0.4s;
}
.mobile-toggle .patty:hover div:before {
  top: -7px;
}
.mobile-toggle .patty:hover div:after {
  top: 7px;
}
.open-mobile .mobile-toggle .patty div {
  background: none;
}
.open-mobile .mobile-toggle .patty div:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.open-mobile .mobile-toggle .patty div:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header .logo {
  width: 350px;
}
.header .logo img {
  max-width: 100%;
}
.main-menu {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-align: right;
}
.main-menu li {
  font-size: 15px;
  margin-right: 45px;
}
.main-menu li:last-child {
  margin-right: 0;
}
.main-menu li a:hover {
  color: #a3a021;
}

@media (max-width: 1299px) {
  .header .logo {
    width: 300px;
  }
  .main-menu li {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .header .logo {
    width: auto;
  }
}
@media (max-width: 767px) {
  .header {
    height: 65px;
  }
  .header .logo img {
    width: 200px;
  }
  .mobile-toggle .patty div {
    top: 25px;
  }
}

.content {
  padding-top: 100px;
  min-height: 600px;
}

@media (max-width: 991px) {
  .content {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .content {
    padding-top: 65px;
    min-height: 400px;
  }
}

.home-banner {
  position: relative;
  height: 615px;
  overflow: hidden;
}
.home-banner a {
  position: relative;
  display: block;
  height: 100%;
}
.home-banner .container {
  height: 100%;
}
.home-banner .owl-controls.container {
  height: auto;
}
.home-banner .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.home-banner .caption {
  position: absolute;
  top: 40%;
  left: 10px;
  width: 620px;
  color: #fff;
  -webkit-transform: translateY(-40%);
  transform: translateY(-40%);
}
.home-banner .title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.home-banner .text {
  font-weight: 500;
  font-size: 24px;
}

.home-banner .owl-carousel,
.home-banner .owl-carousel .owl-stage-outer,
.home-banner .owl-carousel .owl-stage,
.home-banner .owl-carousel .owl-item,
.home-banner .item { height: 100%; }
.home-banner .item { position: relative; }

.owl-nav > div { position: absolute; top: 0; width: 80px; height: 100%; text-indent: -100%; color: transparent; overflow: hidden; }
.owl-nav > div:after { position: absolute; content: ''; top: 50%; margin-top: -23px; left: 30px; width: 13px; height: 46px; }
.owl-prev { left: 0; }
.owl-prev:after { background-image: url('images/prev.png'); }
.owl-prev:hover:after { background-position: 0 -51px; }
.owl-next { right: 0; }
.owl-next:after { background-image: url('images/next.png'); }
.owl-next:hover:after { background-position: 0 -51px; }

.owl-dots { position: absolute; bottom: 50px; left: 10px; }
.owl-dots .owl-dot { display: inline-block; vertical-align: middle; width: 10px; height: 10px; background: #d7d7d7; border-radius: 50%; margin-right: 15px; }
.owl-dots .owl-dot:last-child { margin-right: 0; }
.owl-dots .owl-dot.active { background: #cfc764; }

@media (max-width: 991px) {
  .home-banner {
    height: 500px;
  }
  .home-banner .caption {
    left: 0;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .home-banner .title {
    font-size: 40px;
  }
  .home-banner .text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .home-banner {
    height: 360px;
  }
  .home-banner .caption {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-banner .title {
    font-size: 24px;
  }
  .home-banner .text {
    font-size: 16px;
  }
  .owl-dots {
    bottom: 15px;
    left: 20px;
  }
  .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    margin-right: 30px;
  }
}

.home-div-a {
  padding: 75px 0;
}

@media (max-width: 991px) {
  .home-div-a {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .home-div-a {
    padding: 30px 0;
  }
}

.home-div--table {
  display: flex;
  height: 440px;
  margin-left: -10px;
  margin-right: -10px;
}
.home-div--table > div {
  position: relative;
  width: 26.66666667%;
  padding: 0 10px;
}
.home-div--table > div.home-div--table-main {
  width: 35%;
}
.home-div--table-main a {
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  bottom: 0;
}
.home-div--table-main .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.home-div--table-main .cover:after {
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .1);
  z-index: 1;
  transition: all .3s;
}
.home-div--table-main a:hover .cover:after {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}
.home-div--table-main .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #fff;
  padding: 20px;
  z-index: 2;
}
.home-div--table-main .caption > div {
  background: rgba(0, 0, 0, .58);
  padding: 30px 20px;
}
.home-div--table-main .tag {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.home-div--table-main .title {
  font-size: 26px;
  line-height: 1.3;
}
.home-div--table-side > div {
  display: table;
  width: 100%;
  height: 100%;
}
.home-div--table-side a {
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  bottom: 0;
}
.home-div--table-side a {
  background: #f6f6f6;
  box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.home-div--table-side .cover {
  position: relative;
}
.home-div--table-side .cover:after {
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .1);
  z-index: 1;
  transition: all .3s;
}
.home-div--table-side a:hover .cover:after {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}
.home-div--table-side .caption {
  padding: 25px 22px 0;
}
.home-div--table-side .title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #3d3d3d;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.home-div--table-side a:hover .title {
  color: #000;
}
.home-div--table-side .text {
  font-size: 16px;
  line-height: 1.6;
}
.home-div--table-side .more {
  position: absolute;
  bottom: 26px;
  left: 22px;
  font-weight: 500;
  font-size: 14px;
  color: #3d3d3d;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-right: 20px;
}
.home-div--table-side a:hover .more {
  color: #cfc764;
}
.home-div--table-side .more:after {
  position: absolute;
  content: '';
  top: 2px;
  right: 0;
  width: 6px;
  height: 10px;
  background: url('images/more.png') no-repeat 0 0;
}
.home-div--table-side a:hover .more:after {
  background-position: 0 -13px;
}

@media (max-width: 991px) {
  .home-div--table {
    display: block;
  }
  .home-div--table > div {
    float: left;
    width: 33.3333333%;
    height: 450px;
  }
  .home-div--table > div.home-div--table-main {
    width: 100%;
    height: 440px;
    margin-bottom: 20px;
  }
  .home-div--table-main .tag {
    font-size: 10px;
  }
  .home-div--table-main .title {
    font-size: 20px;
  }
  .home-div--table-side .title {
    font-size: 17px;
  }
  .home-div--table-side .text {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .home-div--table > div {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .home-div--table > div.home-div--table-main {
    width: 100%;
    height: 230px;
    margin-bottom: 20px;
  }
  .home-div--table-main .caption {
    padding: 10px;
  }
  .home-div--table-main .caption > div {
    padding: 12px 10px;
  }
  .home-div--table-main .tag {
    font-size: 7px;
    margin-bottom: 7px;
  }
  .home-div--table-main .title {
    font-size: 14px;
    line-height: 1.5;
  }
  .home-div--table-side a {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    padding-bottom: 80px;
  }
  .home-div--table-side .title {
    font-size: 16px;
  }
  .home-div--table-side .text {
    font-size: 14px;
  }
}

.home-business {
  background: #ededee;
  padding: 75px 0;
}
.home-business--item {
  display: flex;
  margin-left: -14px;
  margin-right: -14px;
}
.home-business--item .item {
  width: 25%;
  padding-left: 14px;
  padding-right: 14px;
  padding-top: 40px;
}
.home-business--item a {
  display: block;
}
.home-business--item .cover {
  position: relative;
}
.home-business--item .cover:after {
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .1);
  z-index: 1;
  transition: all .3s;
}
.home-business--item a:hover .cover:after {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}
.home-business--item .title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  padding-top: 20px;
}
.home-business--item a:hover .title {
  color: #000;
}

@media (max-width: 991px) {
  .home-business {
    padding: 60px 0;
  }
  .home-business--item {
    display: flex;
    flex-wrap: wrap;
  }
  .home-business--item .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .home-business {
    padding: 30px 0;
  }
  .home-business--item {
    margin-left: -10px;
    margin-right: -10px;
  }
  .home-business--item .item {
    padding-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .home-business--item .title {
    font-size: 12px;
  }
}

.home-div-b {
  padding: 75px 0;
}
.home-div-b--grey {
  background: #ededee;
}

@media (max-width: 991px) {
  .home-div-b {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .home-div-b {
    padding: 30px 0;
  }
}

.home-div--csr {
  display: table;
  width: 100%;
}
.home-div--csr > div {
  display: table-cell;
  vertical-align: middle;
}
.home-div--csr .cover {
  width: 50%;
  padding-right: 15px;
}
.home-div--csr .caption {
  padding-left: 40px;
}
.home-div--csr.home-div--csr-left .caption {
  padding-right: 40px;
  padding-left: 0;
}
.more-pad {
  min-height: 1px;
  margin-bottom: 40px;
}
.home-div--csr .text-lg {
  font-size: 19px;
}
.home-div--csr .more {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  color: #3d3d3d;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-right: 20px;
}
.home-div--csr .more:hover {
  color: #cfc764;
}
.home-div--csr .more:after {
  position: absolute;
  content: '';
  top: 3px;
  right: 0;
  width: 6px;
  height: 10px;
  background: url('images/more.png') no-repeat 0 0;
}
.home-div--csr .more:hover:after {
  background-position: 0 -13px;
}

@media (max-width: 991px) {
  .home-div--csr .text-lg {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .home-div--csr {
    display: block;
    width: 100%;
  }
  .home-div--csr > div {
    display: block;
  }
  .home-div--csr .cover {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .home-div--csr.home-div--csr-left .cover {
    margin-bottom: 0;
    margin-top: 20px;
  }
  .home-div--csr .caption {
    padding-left: 0;
  }
  .home-div--csr.home-div--csr-left .caption {
    padding-right: 0;
  }
  .home-div--csr .text-lg {
    font-size: 15px;
  }
}

.page-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.page-banner .container {
  height: 100%;
}
.page-banner .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.page-banner .caption {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 620px;
  color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.page-banner--wide .caption {
  width: 100%;
  padding-right: 10px;
}
.page-banner .title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.page-banner .text {
  font-weight: 500;
  font-size: 24px;
}

@media (max-width: 991px) {
  .page-banner {
    height: 350px;
  }
  .page-banner .caption {
    left: 0;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-banner .title {
    font-size: 40px;
  }
  .page-banner .text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .page-banner {
    height: 300px;
  }
  .page-banner .caption {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-banner .title {
    font-size: 24px;
  }
  .page-banner .text {
    font-size: 16px;
  }
}

.company-bg {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.company-bg .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.company-bg .caption {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 430px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #fff;
  padding: 20px;
  z-index: 2;
}
.company-bg .caption > div {
  background: rgba(0, 0, 0, .58);
  padding: 30px 20px;
}
.company-bg .tag {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5
}

@media (max-width: 991px) {
  .company-bg {
    height: 380px;
  }
  .company-bg .tag {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .company-bg {
    height: 320px;
  }
  .company-bg .caption {
    width: 100%;
    padding: 10px;
  }
  .company-bg .caption > div {
    padding: 15px 10px;
  }
  .company-bg .tag {
    font-size: 16px;
  }
}

.business-list--item {
  margin-bottom: 45px;
}
.business-list--item a {
  position: relative;
  display: block;
  height: 505px;
  background: #f6f6f6;
  border: 1px solid #f3f3f3;
  box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.business-list--item .cover {
  position: relative;
}
.business-list--item .cover:after {
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .1);
  z-index: 1;
  transition: all .3s;
}
.business-list--item a:hover .cover:after {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}
.business-list--item .caption {
  padding: 26px 20px 0;
}
.business-list--item .title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #3d3d3d;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.business-list--item .text {
  font-size: 16px;
  line-height: 1.6;
}
.business-list--item .more {
  position: absolute;
  bottom: 26px;
  left: 22px;
  font-weight: 500;
  font-size: 14px;
  color: #3d3d3d;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-right: 20px;
}
.business-list--item a:hover .more {
  color: #cfc764;
}
.business-list--item .more:after {
  position: absolute;
  content: '';
  top: 2px;
  right: 0;
  width: 6px;
  height: 10px;
  background: url('images/more.png') no-repeat 0 0;
}
.business-list--item a:hover .more:after {
  background-position: 0 -13px;
}
.business-pad {
  padding-left: 50px;
}

@media (max-width: 991px) {
  .business-list--item a {
    height: 500px;
  }
  .business-list--item .title {
    font-size: 17px;
  }
  .business-list--item .text {
    font-size: 15px;
  }
  .business-pad {
    padding-top: 40px;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .business-list--item {
    margin-bottom: 30px;
  }
  .business-list--item a {
    width: 100%;
    height: auto;
    padding-bottom: 80px;
  }
  .business-list--item .title {
    font-size: 16px;
  }
  .business-list--item .text {
    font-size: 14px;
  }
}

.certification-date {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.certification-year {
  font-size: 48px;
}

@media (max-width: 991px) {
  .certification-date {
    font-size: 15px;
  }
  .certification-year {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .certification-date {
    font-size: 14px;
  }
  .certification-year {
    font-size: 32px;
  }
}

.certifications-div {
  height: 1px;
  background: #ebebeb;
  margin-bottom: 40px;
}
.certifications .certifications--item:nth-child(2n+1) {
  clear: left;
}
.certifications--item {
  margin-bottom: 40px;
}
.certifications--item-div {
  display: table;
  width: 100%;
}
.certifications--item-div > div {
  display: table-cell;
  vertical-align: middle;
}
.certifications--item-div .cover {
  width: 110px;
}
.certifications--item-div .cover img {
  max-width: 100%;
}
.certifications--item-div .caption {
  padding-left: 20px;
}
.certifications--item-div .title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .certification-year {
    margin-bottom: 40px;
  }
  .certifications--item-div .cover {
    width: 90px;
  }
}

.contact .text a {
  font-weight: 700;
}
.contact--item-heading {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 40px;
}
.contact--item-div {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 35px;
  margin-bottom: 35px;
}
.contact .contact--item-div:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.contact--item-div .title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

footer {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #e8e7e7;
  text-align: center;
  letter-spacing: 0.5px;
  background: #222222;
  padding: 65px 0;
}
footer .heading {
  color: #c6c46c;
  text-transform: uppercase;
  margin-bottom: 25px;
}
footer .text {
  line-height: 2.2;
}
.social-nav li {
  margin-right: 45px;
}
.social-nav li:last-child {
  margin-right: 0;
}
.social-nav a {
  display: block;
  padding: 5px;
}
.social-nav span {
  display: inline-block;
  height: 19px;
  background-image: url('images/social-mediax.png');
  background-repeat: no-repeat;
}
.social-nav .fb span {
  width: 9px;
  background-position: 0 0;
}
.social-nav .fb a:hover span {
  background-position: 0 -22px;
}
.social-nav .tw span {
  width: 19px;
  background-position: -12px 0;
}
.social-nav .tw a:hover span {
  background-position: -12px -22px;
}
.social-nav .in span {
  width: 17px;
  background-position: -34px 0;
}
.social-nav .in a:hover span {
  background-position: -34px -22px;
}
.social-nav .ig span {
  width: 17px;
  background-position: -54px 0;
}
.social-nav .ig a:hover span {
  background-position: -54px -22px;
}
footer .copyright {
  font-size: 12px;
  margin-top: 75px;
}

@media (max-width: 991px) {
  footer {
    padding: 60px 0;
  }
  footer .text {
    line-height: 1.8;
    margin-bottom: 40px;
  }
  footer .copyright {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 30px 0;
  }
  footer .heading {
    margin-bottom: 18px;
  }
  footer .text {
    margin-bottom: 30px;
  }
  footer .copyright {
    margin-top: 35px;
  }
}

#mobile-div {
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  position: fixed;
  background: rgba(249, 244, 245, .95);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #464646;
  line-height: 1.5;
  text-align: center;
  padding: 110px 20px 55px;
  overflow-y: auto;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 98;
}
.open-mobile #mobile-div {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
}
#mobile-div li {
  margin-bottom: 30px;
}
#mobile-div li:last-child {
  margin-bottom: 0;
}
#mobile-div a {
  display: block;
}
#mobile-div a:hover {
  color: #a3a021;
}

@media (max-width: 991px) {
  #mobile-div {
    padding-top: 145px;
  }
}
@media (min-width: 992px) {
  body.open-mobile {
    overflow-y: auto;
  }
  .open-mobile #mobile-div {
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

.track-order {
  margin-top: 50px;
  display: table;
  width: 100%;
}
.track-order > div {
  display: table-cell;
  vertical-align: top;
}
.track-order .action {
  width: 120px;
  padding-left: 10px;
}

@media (max-width: 991px) {
  .track-order {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .track-order {
    margin-top: 30px;
  }
}

.track-result {
  display: table;
  width: 100%;
  line-height: 1.8;
  margin-top: 75px;
}
.track-result > div {
  display: table-row;
}
.track-result > div:nth-child(even) {
  background-color: #f6f6f6;
}
.track-result > div > div {
  display: table-cell;
  vertical-align: top;
  padding: 10px 15px;
}
.track-result .label {
  width: 200px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .track-result {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .track-result {
    display: block;
    margin-top: 30px;
  }
  .track-result > div {
    display: block;
    padding: 10px 15px;
  }
  .track-result > div > div {
    display: block;
    padding: 0;
  }
  .track-result .label {
    width: 100%;
  }
}

.cd-container {
  width: 100%;
  margin: 0 auto;
}
.cd-container::after {
  content: '';
  display: table;
  clear: both;
}
#cd-timeline {
  position: relative;
}
#cd-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 1px;
  background: #cfc764;
}

@media only screen and (min-width: 1170px) {
  #cd-timeline .cd-timeline-block:nth-child(odd) {
    text-align: right;
  }
  #cd-timeline::before {
    left: 50%;
  }
}

.cd-timeline-block {
  position: relative;
  margin-bottom: 25px;
}
.cd-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}

.cd-timeline-img {
  position: absolute;
  top: 0;
  left: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cfc764;
  margin-top: 8px;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-img {
    left: 50%;
    margin-left: -3.5px;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  .cssanimations .cd-timeline-img.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-img.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    -moz-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
}

@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -moz-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -moz-transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.cd-timeline-content {
  position: relative;
  margin-left: 40px;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-content {
    margin-left: 0;
    width: 47%;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
  }
  .cssanimations .cd-timeline-content.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    -moz-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
}

@media only screen and (min-width: 1170px) {
  .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    -moz-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }
}
@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

.back {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  color: #3d3d3d;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-left: 20px;
}
.back:hover {
  color: #cfc764;
}
.back:after {
  position: absolute;
  content: '';
  top: 3px;
  left: 0;
  width: 6px;
  height: 10px;
  background: url('images/more.png') no-repeat 0 0;
  transform: rotate(180deg);
}
.back:hover:after {
  background-position: 0 -13px;
}
