/*
  Coded with Passion
  By
  Josh from ExHora.com
*/
/*** Variables ***/
/* layout */
/* colors */
/* fonts */
/*** Misc settings ***/
/* Smartphones */
/* Tablets */
/* Desktops and laptops */
/* Large screens  */
.is-animating {
  visibility: visible;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-30%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(30%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

/*** General settings ***/
/*** Default styles ***/
/* page wrapper */
#page_wrapper {
  background-color: #ffffff;
  background-repeat: repeat;
  background-position: left top;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  z-index: 0;
}

/*** images ***/
/* responsive images */
img {
  width: 100%;
  height: auto;
}

.epi__bg-img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  background-attachment: scroll;
}

/*** CSS Basic Elements ***/
/* default theme font */
body {
  min-width: 325px;
  line-height: 1.7;
  font-family: Open Sans, Helvetica, Arial, sans-serif;
}

/*** Typography ***/
/* headings */
h1 {
  font-size: 38px;
  line-height: 48px;
}

h2 {
  font-size: 34px;
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  color: #0a0a0a;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

/* paragraph */
p {
  font-size: 13px;
  line-height: 28px;
  font-weight: 400;
  font-style: normal;
  margin: 0 0 20px;
}

/* lists */
ul {
  list-style-type: none;
  padding-left: 0px;
}

/* links */
a {
  color: #0d5195;
}

.footerlinks {
  color: rgba(255, 255, 255, 0.5);
}

.footerlinks a {
  color: inherit;
}

a:hover {
  text-decoration: none;
}

a:link {
  text-decoration: none;
}

a:focus {
  outline: none;
}

/* buttons */
button, .epi__btn {
  color: #fff;
  padding: 16px 25px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid transparent;
  font-size: 13px;
  line-height: 30px;
  font-weight: 700;
  transition: background-color .15s ease-out;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  background-color: #0d5195;
}

button:focus, .epi__btn:focus {
  color: #fff;
  outline: none;
}

button:hover, .epi__btn:hover {
  color: #fff;
  background-color: #0a4177;
}

.epi__btn-block {
  width: 100%;
  display: block;
}

/* tables */
table td, th {
  padding: 10px;
  border: 1px solid #000;
}

/* elements colors */
.epi__elem--white {
  color: #fff;
}

/* hidden classes */
.epi__hidden-xs {
  /* < 480px */
}

@media (max-width: 479px) {
  .epi__hidden-xs {
    display: none;
  }
}

.epi__hidden-sm {
  /* 480px - 767px */
}

@media (min-width: 480px) and (max-width: 767px) {
  .epi__hidden-sm {
    display: none;
  }
}

.epi__hidden-md {
  /* 992px - 1199px */
}

@media (min-width: 992px) and (max-width: 1199px) {
  .epi__hidden-md {
    display: none;
  }
}

.epi__hidden-lg {
  /* >= 1200px */
}

@media (min-width: 1200px) {
  .epi__hidden-lg {
    display: none;
  }
}

.epi__clearfix {
  display: none;
}

/* other items */
.epi__separator {
  background: #fff;
  height: 1px;
  opacity: .2;
  margin-top: 4px;
  margin-bottom: 3px;
  width: 100%;
  float: right;
}

.epi__separator--style1 {
  background: #d2d2d2;
  margin-bottom: 40px;
  opacity: .2;
  height: 1px;
  width: 100%;
  float: left;
}

.epi__separator--style2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.epi__separator--style3 {
  border: 2px solid #eaeaea;
  margin-top: 20px;
  margin-bottom: 30px;
}

.epi__spacer--30 {
  height: 30px;
}

.epi__spacer--50 {
  height: 50px;
}

.epi__symbol span {
  display: inline-block;
  width: 50px;
  height: 3px;
  background-color: #0d5195;
}

.epi__symbol.epi__symbol--style1 {
  margin-bottom: 20px;
}

.epi__symbol.epi__symbol--style1 span {
  background-color: #f4f4f4;
  width: 100%;
  height: 1px;
}

.epi__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* bottom mask */
.epi__bottom-mask {
  height: 57px;
  bottom: -1px;
  z-index: 2;
  position: absolute;
  width: 100%;
  left: 0;
  pointer-events: none;
}

.epi__svgmask {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* containers */
.epi__container {
  /* >= 768px */
  /* >= 992px */
  /* >= 1200px */
  /* >= 1320px */
}

@media (min-width: 768px) {
  .epi__container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .epi__container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .epi__container {
    width: 1170px;
  }
}

@media (min-width: 1320px) {
  .epi__container {
    width: 1320px;
  }
}

.epi__container-w85 {
  width: 85%;
}

.epi__container-full {
  width: 100%;
}

.epi__section, footer, .epi__welcomeSection, .epi__globalSection, .epi__fleetSection, .epi__contactSection, .epi__factsSection, .epi__newsSection, .epi__ctaSection, .epi__pageSection, .epi__contactForm-section {
  position: relative;
}

/* gutter */
.row.epi__gutter-0 {
  margin-right: 0;
  margin-left: 0;
}

.row.epi__gutter-0 > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

/* padding & margin */
.epi__paddingTB--20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.epi__paddingTB--15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.epi__paddingTB--10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.epi__paddingT--10 {
  padding-top: 10px;
}

.epi__paddingT--20 {
  padding-top: 20px;
}

.epi__paddingT--30 {
  padding-top: 30px;
}

.epi__paddingT--35 {
  padding-top: 35px;
}

.epi__paddingB--10 {
  padding-bottom: 10px;
}

.epi__paddingB--15 {
  padding-bottom: 15px;
}

.epi__paddingB--25 {
  padding-bottom: 25px;
}

.epi__paddingB--20 {
  padding-bottom: 20px;
}

.epi__paddingB--30 {
  padding-bottom: 30px;
}

.epi__paddingB--35 {
  padding-bottom: 35px;
}

.epi__paddingB--37 {
  padding-bottom: 37px;
}

.epi__paddingB--40 {
  padding-bottom: 40px;
}

.epi__paddingR--60 {
  padding-right: 60px;
}

.epi__paddingL--60 {
  padding-left: 60px;
}

/* text */
.epi__text--left {
  text-align: left;
}

.epi__text--right {
  text-align: right;
}

.epi__text--center {
  text-align: center;
}

/* box shadow */
.epi__box-shadow {
  box-shadow: 0 40px 120px -20px rgba(0, 0, 0, 0.6);
}

.epi__pageLoading {
  color: #ffffff;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  background-color: #fff;
}

/* prelaoder animation */
@keyframes preloader-breath-img {
  from {
    opacity: .2;
  }
  to {
    opacity: 1;
  }
}

.epi__pageLoading.epi__preloaderBreath .epi__pageLoading-inner {
  animation-name: preloader-breath-img;
  animation-duration: 1800ms;
  animation-delay: 200ms;
  animation-timing-function: cubic-bezier(0.73, 0.005, 0.42, 1.005);
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* header logo */
.epi__logoContainer {
  float: left;
  /* <= 768px */
}

.epi__logoContainer img {
  width: 188px;
  height: 188px;
  /* <= 768px */
}

@media (max-width: 767px) {
  .epi__logoContainer img {
    margin: auto;
    display: block;
  }
}

@media (max-width: 767px) {
  .epi__logoContainer {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* Top menu block */
.epi__topMenu-wrapper {
  position: relative;
  /* <= 768px */
  /* top menu */
}

@media (max-width: 767px) {
  .epi__topMenu-wrapper {
    margin-right: auto;
  }
}

.epi__topMenu-wrapper .epi__topMenu-trigger {
  /* <= 768px */
  display: none;
  /* <= 1200px */
  /* <= 768px */
}

@media (max-width: 767px) {
  .epi__topMenu-wrapper .epi__topMenu-trigger {
    padding-left: 20px;
  }
}

@media (max-width: 1199px) {
  .epi__topMenu-wrapper .epi__topMenu-trigger {
    display: none;
    width: 18px;
    height: 14px;
    position: relative;
    cursor: pointer;
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .epi__topMenu-wrapper .epi__topMenu-trigger {
    margin: auto;
  }
}

.epi__topMenu-wrapper .epi__topMenu-trigger:before {
  opacity: .7;
  content: "";
  display: block;
  border-radius: 2px;
  height: 3px;
  width: 3px;
  background-color: #fff;
  box-shadow: 0 6px 0 #fff, 0 12px 0 #fff;
}

.epi__topMenu-wrapper .epi__topMenu {
  /* <= 1200px */
  /* <= 768px */
}

.epi__topMenu-wrapper .epi__topMenu li a {
  font-weight: 400;
  text-transform: capitalize;
  /* <= 1200px */
}

@media (max-width: 1199px) {
  .epi__topMenu-wrapper .epi__topMenu li a {
    color: #6f6b6b;
    background: #fff;
    width: 100%;
    font-weight: 400;
    font-size: 11px;
    padding: 6px 10px;
    display: block;
    border-top: 1px solid #eee;
  }
  .epi__topMenu-wrapper .epi__topMenu li a:hover {
    color: #444;
    background: #f5f5f5;
    opacity: .9;
  }
}

.epi__topMenu-wrapper .epi__topMenu li {
  display: inline;
  /* >= 1200px */
  /* <= 1200px */
}

@media (min-width: 1200px) {
  .epi__topMenu-wrapper .epi__topMenu li {
    position: relative;
  }
}

@media (max-width: 1199px) {
  .epi__topMenu-wrapper .epi__topMenu li {
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 1199px) {
  .epi__topMenu-wrapper .epi__topMenu {
    display: none;
    float: none;
    margin: 0;
    list-style: none;
    margin-top: 0;
    min-width: 240px;
    background-color: #fff;
    padding: 0;
    border-radius: 2px;
    position: absolute;
    top: 25px;
    z-index: 11;
    right: -10px;
  }
}

@media (max-width: 767px) {
  .epi__topMenu-wrapper .epi__topMenu {
    left: 0px;
  }
}

.epi__topMenu-wrapper.is-opened .epi__topMenu {
  /* <= 1200px */
}

@media (max-width: 1199px) {
  .epi__topMenu-wrapper.is-opened .epi__topMenu {
    display: block;
  }
}

/* Login panel */
.epi__loginPanel li a {
  font-weight: 700;
  text-transform: uppercase;
}

.epi__loginPanel li {
  margin: 0px;
}

.epi__loginPanel .glyphicon {
  font-size: 14px;
}

/* languages panel */
.epi__languages-link:hover {
  color: #fff;
}

.epi__languages-link span {
  font-weight: 700;
}

.epi__languages-link i {
  margin-right: 5px;
}

.epi__languages-link .glyphicon {
  font-size: 11px;
}

.cg_language-panel {
  margin-right: -10px;
  position: absolute;
  left: auto;
  width: auto;
  min-width: 120px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  margin-left: -11px;
  right: 0;
  z-index: 101;
  transition: all .2s ease-out;
}

.cg_language-panel .cg_language-inner {
  padding-left: 0;
  padding-right: 0;
  margin: 4px;
  list-style: none;
  background: #f5f5f5;
  padding: 10px 0px;
  margin-top: 5px;
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  border-radius: 2px;
}

.cg_language-panel .cg_language-inner li a {
  font-size: 10px;
  color: #444;
  padding: 0 5px 0 10px;
  display: block;
  text-transform: uppercase;
  margin-top: 1px;
  padding-right: 10px;
}

.cg_language-panel .cg_language-inner li:hover a {
  color: #000;
  background: rgba(0, 0, 0, 0.1);
}

.cg_language-panel .cg_language-inner li a img {
  width: auto;
  margin-right: 5px;
}

.epi__languages li:hover .cg_language-panel {
  opacity: 1;
  height: auto;
  visibility: visible;
}

/* Cta button */
.epi__ctaButton {
  /* <= 768px */
  display: table-cell;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .epi__ctaButton {
    width: 60%;
  }
}

.epi__ctaButton .epi__btn {
  margin-left: 5px;
  /* <= 768px */
  /* < 480px */
}

@media (max-width: 767px) {
  .epi__ctaButton .epi__btn {
    float: right;
  }
}

@media (max-width: 479px) {
  .epi__ctaButton .epi__btn {
    margin-left: 0px;
    padding: 16px 10px;
  }
}

/* Main menu block */
.epi__menuWrapper {
  display: table-cell;
  vertical-align: middle;
  /* <= 768px */
  /* >= 768px */
}

@media (max-width: 767px) {
  .epi__menuWrapper {
    width: 40%;
  }
}

.epi__menuWrapper .epi__mainMenu-trigger {
  /* <= 768px */
  /* >= 992px */
}

@media (max-width: 767px) {
  .epi__menuWrapper .epi__mainMenu-trigger {
    padding-left: 20px;
  }
}

.epi__menuWrapper .epi__mainMenu-trigger .epi__menuBurger {
  width: 20px;
  vertical-align: middle;
  position: relative;
  display: inline-block;
  height: 22px;
  margin-right: 10px;
  transform: rotate(0deg);
  transition: .2s ease-out;
  cursor: pointer;
  opacity: .8;
}

.epi__menuWrapper .epi__mainMenu-trigger .epi__menuBurger span {
  height: 3px;
  background: rgba(255, 255, 255, 0.85);
  display: block;
  position: absolute;
  width: 100%;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.epi__menuWrapper .epi__mainMenu-trigger .epi__menuBurger span:first-child {
  top: 0;
}

.epi__menuWrapper .epi__mainMenu-trigger .epi__menuBurger span:nth-child(2) {
  top: 6px;
}

.epi__menuWrapper .epi__mainMenu-trigger .epi__menuBurger span:nth-child(3) {
  top: 12px;
}

@media (min-width: 992px) {
  .epi__menuWrapper .epi__mainMenu-trigger {
    display: none;
  }
}

.epi__menuWrapper .epi__mainMenu {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 0px;
  text-transform: uppercase;
  /* <= 992px */
}

.epi__menuWrapper .epi__mainMenu > li {
  margin-left: 5px;
  float: left;
  position: relative;
}

.epi__menuWrapper .epi__mainMenu > li a {
  color: #ffffff;
  z-index: 1;
  position: relative;
  padding: 6px 12px;
  text-decoration: none;
  font-size: 13px;
  line-height: 30px;
  font-weight: 700;
  font-style: normal;
  transition: padding .2s ease-in-out,transform .2s ease-in-out,-webkit-transform .2s ease-in-out;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.epi__menuWrapper .epi__mainMenu > li a.active span {
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
}

.epi__menuWrapper .epi__mainMenu .has-submenu:hover .epi__subMenu {
  left: 0;
  opacity: 1;
  top: 100%;
  visibility: visible;
  z-index: 100;
}

.epi__menuWrapper .epi__mainMenu .has-submenu .epi__subMenu {
  top: 120%;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease,top .45s ease;
  position: absolute;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  padding: 6px 0;
  background: #f5f5f5;
}

.epi__menuWrapper .epi__mainMenu .has-submenu .epi__subMenu li {
  position: relative;
}

.epi__menuWrapper .epi__mainMenu .has-submenu .epi__subMenu li a {
  display: block;
  font-size: 11px;
  line-height: 22px;
  font-weight: 700;
  color: #686868;
  font-style: normal;
  position: relative;
  min-width: 230px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.03);
  padding: 10px 20px;
  transition: padding-left .35s ease,border-right .35s ease;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.epi__menuWrapper .epi__mainMenu .has-submenu .epi__subMenu li a:hover {
  color: #323232;
  background: rgba(0, 0, 0, 0.04);
}

.epi__menuWrapper .epi__mainMenu .has-submenu .epi__subMenu:before {
  content: "";
  display: block;
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}

.epi__menuWrapper .epi__mainMenu .has-submenu .epi__subMenu:after {
  content: "";
  display: block;
  position: absolute;
  top: -11px;
  left: 14px;
  border: 6px solid transparent;
  border-bottom-width: 5px;
  border-bottom-color: #f5f5f5;
}

.epi__menuWrapper .epi__mainMenu .has-submenu:after {
  content: "";
  opacity: 1;
  position: absolute;
  height: 1px;
  width: 7px;
  bottom: calc(50% - 12px);
  left: 17px;
  background-color: rgba(255, 255, 255, 0.4);
  transition: opacity .2s ease-in-out;
  bottom: calc(52% - 14px);
}

@media (max-width: 992px) {
  .epi__menuWrapper .epi__mainMenu {
    display: none;
  }
}

@media (min-width: 768px) {
  .epi__menuWrapper {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* search button */
.epi__search .epi__searchBtn {
  margin-left: 10px;
  display: none;
  /* <= 992px */
}

@media (max-width: 991px) {
  .epi__search .epi__searchBtn {
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    margin: 0;
    border-radius: 2px;
  }
}

.epi__search .epi__search-container {
  width: 220px;
  margin-left: 10px;
  position: relative;
  /* <= 992px */
}

@media (max-width: 991px) {
  .epi__search .epi__search-container {
    display: none;
    position: absolute;
    right: 0;
    padding: 30px;
    background: #f4f4f4;
    width: 100%;
    border-bottom: 1px solid #fff;
    z-index: 11;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
  }
}

.epi__search .epi__search-container.panel-opened {
  /* <= 992px */
}

@media (max-width: 991px) {
  .epi__search .epi__search-container.panel-opened {
    display: block;
  }
}

.epi__search .epi__search-container input {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  border: none;
  font-size: 12px;
  font-style: italic;
  margin: 0;
  display: inline-block;
  box-shadow: none;
  outline: none;
  width: 100%;
  padding: 2px 30px 2px 15px;
  border-radius: 3px;
  height: 34px;
  transition: all .15s ease-out;
  /* <= 992px */
}

.epi__search .epi__search-container input:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.epi__search .epi__search-container input:focus {
  color: #e3e3e3;
  font-style: normal;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
  .epi__search .epi__search-container input {
    background: none;
    border: none;
    font-size: 12px;
    color: #444 !important;
    padding: 5px 0;
    margin: 0;
    display: inline-block;
    box-shadow: none;
    outline: none;
    font-style: normal;
    width: calc(100% - 30px);
  }
}

.epi__search .epi__search-container button {
  color: rgba(255, 255, 255, 0.4);
  width: 20px;
  background-color: transparent;
  border: none;
  padding: 0;
  display: inline-block;
  height: 14px;
  line-height: 14px;
  vertical-align: text-top;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  outline: none;
  z-index: 1;
}

.epi__search .epi__search-container form {
  /* <= 992px */
}

@media (max-width: 991px) {
  .epi__search .epi__search-container form {
    border-bottom: 1px solid #ccc;
    margin: 0;
    position: relative;
  }
}

/* social panel */
.epi__socialIcons li {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  vertical-align: text-top;
  /* <= 768px */
}

@media (max-width: 767px) {
  .epi__socialIcons li {
    margin: 0px;
  }
}

.epi__socialIcons li a {
  font-size: 22px;
  font-weight: 400;
  opacity: 1;
  position: relative;
  border-radius: 3px;
  text-align: center;
}

/* header responsive menu */
.epi__resMenu {
  padding: 0;
  margin: 0;
  list-style: none;
  right: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  backface-visibility: hidden;
  transition: transform .5s ease;
  z-index: 10000;
  transform: translateX(100%);
  transform-style: preserve-3d;
  /* >= 768px */
  /* rez submenu */
}

@media (min-width: 768px) {
  .epi__resMenu {
    max-width: 400px;
  }
}

.epi__resMenu li {
  backface-visibility: hidden;
  border-color: rgba(0, 0, 0, 0.15);
  position: static;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.epi__resMenu li.epi__resMenu-back .epi__resMenu-backLink {
  font-size: 14px;
  padding: 12px 28px 12px;
  display: block;
  font-weight: 400;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
  text-transform: capitalize;
}

.epi__resMenu li.epi__resMenu-back .epi__resMenu-backLink:hover {
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
}

.epi__resMenu li.epi__resMenu-back .epi__resMenu-backIcon {
  left: 0;
  right: auto;
  border-left: none;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  position: absolute;
  width: 49px;
  height: 45px;
  line-height: 45px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.45);
  top: 0;
}

.epi__resMenu li a {
  padding: 12px 28px 12px;
  display: block;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  font-size: 13px;
}

.epi__resMenu li a.active {
  background-color: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.85);
}

.epi__resMenu li a:hover {
  color: rgba(0, 0, 0, 0.85);
}

.epi__resMenu .epi__res-submenu .epi__res-submenu-trigger {
  position: absolute;
  right: 0;
  width: 49px;
  height: 45px;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  line-height: 45px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.45);
  top: auto;
}

.epi__resMenu .epi__res-submenu > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  right: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  backface-visibility: hidden;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  z-index: 10000;
  transform: translateX(100%);
  transform-style: preserve-3d;
}

.epi__resMenu .epi__res-submenu > ul.epi__menu--visible {
  display: block;
  transform: translateZ(0);
}

.epi__resMenu.epi__menu--visible {
  transform: translateZ(0);
  display: block;
}

/* header navbar */
.epi__headerNavbar {
  height: 160px;
  position: absolute;
  width: 100%;
  z-index: 99;
  background: transparent;
  /* <= 768px */
}

@media (max-width: 767px) {
  .epi__headerNavbar {
    background: #161733;
    height: auto;
    position: relative;
  }
}

.epi__headerNavbar .epi__headerContainer {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  /* >= 768px */
  /* >= 992px */
  /* >= 1200px */
  /* >= 1320px */
  /** header top bar components **/
  /** header menu bar **/
}

@media (min-width: 768px) {
  .epi__headerNavbar .epi__headerContainer {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .epi__headerNavbar .epi__headerContainer {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .epi__headerNavbar .epi__headerContainer {
    width: 1170px;
  }
}

@media (min-width: 1320px) {
  .epi__headerNavbar .epi__headerContainer {
    width: 1320px;
  }
}

.epi__headerNavbar .epi__headerContainer .epi__topBar {
  height: 60px;
  align-items: center;
  display: flex;
  float: right;
  /* <= 768px */
}

@media (max-width: 992px) {
  .epi__headerNavbar .epi__headerContainer .epi__topBar {
    display: none;
  }
}

@media (max-width: 767px) {
  .epi__headerNavbar .epi__headerContainer .epi__topBar {
    width: 100%;
  }
}

.epi__headerNavbar .epi__headerContainer .epi__topBar .epi__topBar-component {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 0px;
  position: relative;
  float: right;
  /* < 480px */
}

@media (max-width: 479px) {
  .epi__headerNavbar .epi__headerContainer .epi__topBar .epi__topBar-component {
    margin-left: 0px;
  }
}

.epi__headerNavbar .epi__headerContainer .epi__topBar .epi__topBar-component.epi__single-component {
  margin-left: 0px;
  margin-right: 0px;
  /* < 480px */
}

@media (max-width: 479px) {
  .epi__headerNavbar .epi__headerContainer .epi__topBar .epi__topBar-component.epi__single-component {
    margin-left: 4px;
    margin-right: 4px;
  }
}

.epi__headerNavbar .epi__headerContainer .epi__topBar .epi__topBar-component > li {
  margin-left: 10px;
  margin-right: 10px;
  /* < 480px */
}

@media (max-width: 479px) {
  .epi__headerNavbar .epi__headerContainer .epi__topBar .epi__topBar-component > li {
    margin-right: 0px;
  }
}

.epi__headerNavbar .epi__headerContainer .epi__topBar .epi__topBar-component li a {
  color: #fff;
  font-size: 11px;
  line-height: 24px;
  opacity: .8;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.epi__headerNavbar .epi__headerContainer .epi__topBar .epi__topBar-component li a:hover {
  opacity: .9;
}

.epi__headerNavbar .epi__headerContainer .epi__topBar .epi__socialIcons li {
  margin: 2px;
}

.epi__headerNavbar .epi__headerContainer .epi__topBar .epi__socialIcons li a {
  font-size: 22px;
}

.epi__headerNavbar .epi__headerContainer .epi__topBar .cg_language-panel li a {
  font-size: 10px;
  color: #444;
}

.epi__headerNavbar .epi__headerContainer .epi__topMenu-wrapper {
  position: relative;
  /* <= 768px */
  /* top menu */
}

@media (max-width: 767px) {
  .epi__headerNavbar .epi__headerContainer .epi__topMenu-wrapper {
    margin-right: auto;
  }
}

.epi__headerNavbar .epi__headerContainer .epi__topMenu-wrapper .epi__topMenu {
  /* <= 1200px */
}

.epi__headerNavbar .epi__headerContainer .epi__topMenu-wrapper .epi__topMenu li a {
  /* <= 1200px */
}

@media (max-width: 1199px) {
  .epi__headerNavbar .epi__headerContainer .epi__topMenu-wrapper .epi__topMenu li a {
    color: #6f6b6b;
  }
}

.epi__headerNavbar .epi__headerContainer .epi__topMenu-wrapper .epi__topMenu li {
  /* >= 1200px */
  /* <= 1200px */
}

@media (min-width: 1200px) {
  .epi__headerNavbar .epi__headerContainer .epi__topMenu-wrapper .epi__topMenu li {
    position: relative;
  }
}

@media (max-width: 1199px) {
  .epi__headerNavbar .epi__headerContainer .epi__topMenu-wrapper .epi__topMenu li {
    display: block;
    float: none;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 1199px) {
  .epi__headerNavbar .epi__headerContainer .epi__topMenu-wrapper .epi__topMenu {
    display: none;
    float: none;
    margin: 0;
    position: absolute;
    top: 25px;
    right: -10px;
  }
}

.epi__headerNavbar .epi__headerContainer .epi__topMenu-wrapper.is-opened .epi__topMenu {
  /* <= 1200px */
}

@media (max-width: 1199px) {
  .epi__headerNavbar .epi__headerContainer .epi__topMenu-wrapper.is-opened .epi__topMenu {
    display: block;
  }
}

.epi__headerNavbar .epi__headerContainer .epi__menuBar {
  height: 65px;/*100px;*/
  float: right;
  display: table;
  clear: inline-end;
  /* <= 768px */
}

@media (max-width: 767px) {
  .epi__headerNavbar .epi__headerContainer .epi__menuBar {
    width: 100%;
  }
}

/* Subheader */
.epi__subHeader {
  height: 400px;
  background-color: #f4f4f4;
  position: relative;
  top: 0;
  z-index: 0;
  width: 100%;
}

.epi__subHeader--h840 {
  height: 840px;
  /* 1200px - 1680px */
  /* <= 992px */
}

@media (min-width: 1200px) and (max-width: 1679px) {
  .epi__subHeader--h840 {
    height: 660px;
  }
}

@media (max-width: 991px) {
  .epi__subHeader--h840 {
    height: 400px;
  }
}

.epi__subHeader .epi__subHeader-overlay {
  background-color: rgba(29, 31, 64, 0.8);
  z-index: 2;
}

.epi__subHeader .epi__subHeader-overlay--style2 {
  background-color: rgba(29, 27, 27, 0.5);
  z-index: 2;
}

.epi__subHeader .epi__subHeader-img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.epi__subHeader .epi__subHeader-contentWrapp {
  padding-top: 240px;
}

.epi__subHeader .epi__subHeader-contentWrapp .container {
  padding: 0 30px;
  z-index: 2;
  position: relative;
}

.epi__subHeader .epi__subHeader-contentWrapp .epi__breadcrumbs {
  margin: 0 0 10px;
  list-style: none;
  float: left;
  padding: 0;
  /* <= 768px */
}

@media (max-width: 767px) {
  .epi__subHeader .epi__subHeader-contentWrapp .epi__breadcrumbs {
    width: 100%;
  }
}

.epi__subHeader .epi__subHeader-contentWrapp .epi__breadcrumbs li {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  float: left;
  position: relative;
  text-transform: uppercase;
}

.epi__subHeader .epi__subHeader-contentWrapp .epi__breadcrumbs li a {
  color: rgba(255, 255, 255, 0.85);
}

.epi__subHeader .epi__subHeader-contentWrapp .epi__breadcrumbs li:not(:first-of-type):before {
  content: "/";
  display: inline-block;
  margin: 0 7px;
}

.epi__subHeader .epi__subHeader-contentWrapp .epi__subheader-title {
  margin-top: -7px;
}

.epi__subHeader .epi__subHeader-contentWrapp .epi__subheader-title h2 {
  font-size: 30px;
  line-height: 1.3;
  margin: 0 0 5px;
  /* <= 768px */
}

@media (max-width: 767px) {
  .epi__subHeader .epi__subHeader-contentWrapp .epi__subheader-title h2 {
    font-size: 22px;
    text-align: left;
  }
}

footer {
  padding-top: 120px;
  padding-bottom: 100px;
  z-index: 0;
}
footer::before {
  background-image: url('/gallery/footer.jpg');
  background-position: center;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-color: #1c1c1c;
  content: "";
  opacity: 0.3;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;   
}
footer::after {
  background-color: #1c1c1c;
  content: "";
  opacity: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -2;   
}

footer.epi__scheme--light {
  color: #535353;
}

footer p {
  margin: 0 0 20px;
}

.epi__footer-description {
  color: rgba(255, 255, 255, 0.7);
}

.epi__footer-title {
  font-size: 13px;
  line-height: 23px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0px;
}

/*** Pages ***/
/* Homepage */
/* welcome section*/
.epi__welcomeSection .epi__welcomeHeader {
  background-color: #f8f8f8;
  padding-bottom: 100px;
}

.epi__welcomeSection .epi__welcomeHeader .epi__welcome-titleContainer {
  padding-bottom: 60px;
  text-align: center;
}

.epi__welcomeSection .epi__welcomeHeader .epi__welcome-titleContainer .epi__symbol {
  margin-top: 0;
  margin-bottom: 10px;
  display: block;
}

.epi__welcomeSection .epi__welcomeBody {
  background-color: #fff;
  padding-top: 0px;
  padding-bottom: 0px;
}

.epi__welcomeSection .epi__welcomeBody .epi__media {
  margin-top: -100px;
  /* <= 768px */
}

@media (max-width: 767px) {
  .epi__welcomeSection .epi__welcomeBody .epi__media {
    margin-top: 0px;
  }
}

.epi__welcome-title {
  font-size: 14px;
  font-weight: 700;
  color: #bababa;
  letter-spacing: 0px;
}

/* global section */
.epi__globalSection {
  background-color: #ffffff;
  padding-top: 200px;
  padding-bottom: 160px;
}

.epi__globalSection .epi__global-col {
  padding-top: 0px;
  padding-right: 46px;
  padding-bottom: 0px;
  padding-left: 45px;
}

.epi__globalSection-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url(../img-assets/world-map.png);
}

/* fleet gallery section */
.epi__fleetSection .epi__fleetContainer {
  width: 100%;
}

.epi__fleetSection .epi__fleetContainer .epi__fleet-Block {
  width: 100%;
  min-height: 720px;
  padding-top: 55px;
  padding-left: 20%;
  background-color: #0d5195;
  display: table;
  /* <= 992px */
}

@media (max-width: 991px) {
  .epi__fleetSection .epi__fleetContainer .epi__fleet-Block {
    min-height: auto;
    padding-top: 60px;
    padding-right: 60px;
    padding-bottom: 60px;
    padding-left: 60px;
  }
}

.epi__fleetSection .epi__fleetContainer .epi__fleetGallery-container {
  position: relative;
  margin-left: -240px;
  min-height: 720px;
  /* 1200px - 1680px */
  /* <= 992px */
  /* < 480px */
}

@media (min-width: 1200px) and (max-width: 1679px) {
  .epi__fleetSection .epi__fleetContainer .epi__fleetGallery-container {
    margin-left: -200px;
  }
}

@media (max-width: 991px) {
  .epi__fleetSection .epi__fleetContainer .epi__fleetGallery-container {
    margin-left: 0px;
    min-height: 300px;
  }
}

@media (max-width: 479px) {
  .epi__fleetSection .epi__fleetContainer .epi__fleetGallery-container {
    min-height: 450px;
  }
}

.epi__fleetSection .epi__fleetContainer .epi__fleet-innerContent {
  display: table-cell;
  vertical-align: middle;
}

.epi__fleet-titleBlock {
  width: 50%;
  margin: auto;
  color: #fff;
  /* 1200px - 1680px */
  /* 992px - 1199px */
  /* <= 992px */
}

@media (min-width: 1200px) and (max-width: 1679px) {
  .epi__fleet-titleBlock {
    width: 70%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .epi__fleet-titleBlock {
    width: 50%;
  }
}

@media (max-width: 991px) {
  .epi__fleet-titleBlock {
    width: 100%;
  }
}

.epi__fleet-titleBlock h2 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
}

.epi__fleet-titleBlock p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.65);
  padding-right: 40%;
  /* 1200px - 1680px */
  /* 992px - 1199px */
  /* <= 992px */
}

@media (min-width: 1200px) and (max-width: 1679px) {
  .epi__fleet-titleBlock p {
    padding-right: 40%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .epi__fleet-titleBlock p {
    padding-right: 10px;
  }
}

@media (max-width: 991px) {
  .epi__fleet-titleBlock p {
    padding-right: 0px;
  }
}

.epi__fleet-titleBlock .epi__fleetBtn {
  padding-top: 35px;
}

.epi__fleet-titleBlock .epi__fleetBtn .epi__btn {
  color: #353535;
  background-color: #fff;
}

.epi__fleet-titleBlock .epi__fleetBtn .epi__btn:hover {
  background-color: rgba(255, 255, 255, 0.85);
}

/*contact section*/
.epi__contactSection {
  padding-top: 100px;
  padding-bottom: 100px;
  /* < 480px */
}

@media (max-width: 479px) {
  .epi__contactSection {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.epi__contactSection .epi__iconsContainer {
  padding-top: 1%;
}

.epi__contactSection .epi__contactForm-container {
  padding-top: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
  margin-left: 40px;
  background-color: #f4f4f4;
  /* <= 992px */
  /* < 480px */
}

@media (max-width: 991px) {
  .epi__contactSection .epi__contactForm-container {
    margin-top: 50px;
    margin-left: 0px;
  }
}

@media (max-width: 479px) {
  .epi__contactSection .epi__contactForm-container {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
}

.epi__contactSection .epi__contactForm-container .epi__submitBtn {
  margin-top: 20px;
}

.epi__contactBlock {
  padding-bottom: 15px;
  margin-top: 15px;
}

.epi__contactBlock h2 {
  font-size: 24px;
}

.epi__contactBlock p {
  color: #535353;
}

.epi__contactBlock .epi__symbol {
  margin-top: -5px;
  margin-bottom: 20px;
  display: block;
}

.epi__contact-titleBlock {
  margin-bottom: 30px;
}

.epi__contact-titleBlock h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

/* true facts section */
.epi__factsSection {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #161733;
}

.epi__facts-titleBlock {
  padding-top: 0px;
  padding-bottom: 60px;
}

.epi__facts-titleBlock h2 {
  font-size: 24px;
  color: #ffffff;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.epi__facts-titleBlock h4 {
  color: rgba(255, 255, 255, 0.28);
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

/* news section */
.epi__newsSection {
  padding-top: 100px;
  padding-bottom: 100px;
}

.epi__newsSection .epi__testimonials-wrapper {
  width: 90%;
}

.epi__newsSection .epi__sidebar-wrapper {
  float: left;
  /* <= 768px */
}

@media (max-width: 767px) {
  .epi__newsSection .epi__sidebar-wrapper {
    padding-top: 50px;
  }
}

.epi__news-titleBlock .epi__symbol {
  margin-bottom: 20px;
  margin-top: -5px;
}

.epi__news-titleBlock h2 {
  font-size: 16px;
}

/* cta section */
.epi__ctaSection {
  background-color: #f8f8f8;
  padding-top: 85px;
  padding-bottom: 65px;
}

.epi__cta-titleBlock h2 {
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  text-transform: uppercase;
}

.epi__cta-titleBlock p {
  font-size: 16px;
  color: #a3a3a3;
  margin: 0 0 20px;
}

/* Other pages general settings */
.epi__pageSection {
  padding-top: 60px;
  padding-bottom: 60px;
}

.epi__pageSection .epi__sidebar-title {
  font-size: 13px;
  font-weight: 700;
  color: #0a0a0a;
}

.epi__page-content h3, .epi__page-content h2 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  color: #0a0a0a;
  text-transform: uppercase;
  margin-top: 0px;
}

.epi__page-content h4 {
  margin-top: 0px;
  font-size: 13px;
  font-weight: 400;
  line-height: 26px;
  color: #535353;
  font-family: Open Sans, Helvetica, Arial, sans-serif;
}

.epi__services-list h3 {
  margin-top: 0px;
}

.epi__careers-title {
  font-size: 44px;
  line-height: 50px;
  font-weight: 300;
  font-style: normal;
  margin-top: 0px;
  font-family: Open Sans, Helvetica, Arial, sans-serif;
}

.epi__careers-text {
  line-height: 1.7;
}

/* global page */
#globaltMap {
  width: 100%;
  height: 100%;
}

.epi__globalSection {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* news page */
.epi__newsSection {
  background-image: url(../img-assets/world-map.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  background-attachment: scroll;
  background-color: #fff;
  /*background-color: #f8f8f8;*/
  padding-bottom: 30px;
}

/* contact section */
.epi__contactSection {
  padding-top: 140px;
  padding-bottom: 140px;
}

#contactMap {
  width: 100%;
  height: 90vh;
  max-height: 520px;
}

.epi__contactForm-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* blog archive */
.epi__blogArchive .epi__blogArchive-item {
  margin-bottom: 35px;
  padding: 30px 30px 15px;
  position: relative;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.15);
}

.epi__blogArchive .epi__post-title {
  margin-top: 0px;
}

.epi__blogArchive .epi__post-title a {
  color: #000;
}

.epi__blogArchive .epi__post-title a:hover {
  color: #0d5195;
}

.epi__blogArchive .epi__post-details {
  font-size: 11px;
  color: #9a9a9a;
  margin-bottom: 15px;
  text-transform: uppercase;
  padding: 10px 0;
  position: relative;
  transition: opacity .15s ease-in;
}

.epi__blogArchive .epi__post-details a {
  color: #000;
}

.epi__blogArchive .epi__post-details a:hover {
  color: #0d5195;
}

.epi__post-body {
  line-height: 1.8;
}

.epi__post-body .epi__post-imgWrapper {
  margin-bottom: 20px;
  text-align: center;
}

.epi__hover-border {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  border-bottom: 5px solid #0d5195;
}

.epi__hover-border:hover img {
  border-radius: 2px;
  opacity: .8;
}

.epi__post-footer {
  margin-top: 45px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  padding-bottom: 25px;
}

.epi__readMore-btn {
  float: right;
  font-size: 14px;
}

.epi__readMore-btn a {
  font-weight: 700;
  padding: 10px 20px;
  line-height: 1.6;
  font-size: 13px;
  border-radius: 3px;
  font-family: Open Sans, Helvetica, Arial, sans-serif;
}

.epi__post-links {
  font-size: 10px;
  color: #aaa;
  text-transform: uppercase;
  display: inline-block;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.epi__post-links .glyphicon {
  margin: 0 5px 0 0;
}

.epi__post-links a {
  color: #000;
}

.epi__post-links a:hover {
  color: #0d5195;
}

.epi__post-comments {
  font-size: 10px;
  text-transform: uppercase;
  float: right;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.epi__post-comments a {
  vertical-align: middle;
  color: #000;
}

.epi__post-comments a:hover {
  color: #0d5195;
}

/* single post page */
.epi__singlePost {
  padding: 60px;
  background: #fff;
  /* < 480px */
}

@media (max-width: 479px) {
  .epi__singlePost {
    padding: 10px;
  }
}

.epi__singlePost-headWrapper {
  position: relative;
  margin: -60px -60px 40px;
  min-height: 100px;
}

.epi__singlePost-img {
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  opacity: 1;
  border-radius: 0;
}

.epi__singlePost-link {
  margin: 0;
  border-bottom: 0;
  position: relative;
  float: none;
  display: inline-block;
}

.epi__singlePost-link:after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #000;
  opacity: .4;
  transition: all .15s ease-out;
  pointer-events: none;
  border-radius: 0;
  content: "";
}

.epi__singlePost-link:hover:after {
  opacity: .1;
}

.epi__singlePost-header {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 60px 40px;
  right: 0;
  z-index: 1;
}

.epi__singlePost-meta {
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  position: relative;
  transition: opacity .15s ease-in;
  color: rgba(255, 255, 255, 0.7);
}

.epi__singlePost-meta a {
  color: #fff;
}

.epi__singlePost-meta a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.epi__singlePost-meta .epi__sep {
  margin: 0 5px;
}

.epi__singlePost-title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 25px;
  margin-top: 0px;
}

.epi__singlePost-text {
  margin-bottom: 50px;
}

.epi__singlePost-text p {
  font-size: 16px;
  line-height: 1.8;
}

/* Related articles */
.epi__related-mainTitle {
  font-size: 16px;
  text-transform: none;
  font-weight: 700;
  text-align: start;
  margin: 0 0 20px;
  color: #535353;
}

.epi__related-title {
  font-size: 12px;
  line-height: 22px;
  font-weight: 700;
  font-style: normal;
}

.epi__related-title a {
  color: #000;
}

.epi__related-title a:hover {
  color: #0d5195;
}

.epi__related-link {
  display: block;
  position: relative;
}

.epi__related-post-img {
  height: auto;
  max-width: 100%;
}

.epi__singleBlog-item:hover {
  box-shadow: none;
}

.epi__related-link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  transition: height .25s ease-in-out;
  background-color: #0d5195;
}

.epi__related-post:hover .epi__related-link:after {
  height: 8px;
}

/* comments list */
.epi__comments-list {
  margin-left: 0;
  list-style-type: none;
  padding-left: 0;
}

.epi__comment {
  margin-bottom: 15px;
}

.epi__comment-wrapper {
  position: relative;
  margin: 0;
  padding: 10px;
  background-color: white;
  border: 1px solid #DDD;
  border-radius: 4px;
}

.epi__comment-author {
  font-size: 13px;
  font-weight: bold;
  position: relative;
}

.epi__comment-avatar {
  display: block;
  width: 64px;
  height: 64px;
  float: left;
  margin-right: 15px;
  overflow: hidden;
  padding: 2px;
  border: 1px solid #ddd;
  line-height: 0;
  border-radius: 2px;
  max-width: 100%;
}

.epi__message-label {
  position: relative;
  left: 0px;
}

.epi__comment-reply {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 0px 7px;
  font-size: 10px;
  font-weight: bold;
  background-color: whiteSmoke;
  border: 1px solid #DDD;
  color: #9DA0A4;
  border-radius: 0 4px 0 4px;
  text-transform: uppercase;
}

.epi__comment-reply:hover,
.epi__comment-meta-link:hover {
  color: #000;
}

.epi__comment-meta {
  font-size: 11px;
  font-style: normal;
  margin-bottom: 5px;
  color: #999;
}

.epi__comment-meta-link {
  color: #999;
}

.epi__comment-text {
  padding-left: 80px;
  margin: 4px 0 10px;
  /* < 480px */
}

@media (max-width: 479px) {
  .epi__comment-text {
    padding-left: 10px;
  }
}

.epi__comments-list .children {
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 50px;
  border-left: 1px solid #fff;
  margin-bottom: 0;
  list-style: none;
  margin-top: 15px;
  /* < 480px */
}

@media (max-width: 479px) {
  .epi__comments-list .children {
    padding-left: 20px;
  }
}

/*** Elements ***/
.epi__accordion {
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  border-bottom: 0px;
}

.epi__accordion .epi__accordion-group {
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid #E3E3E3;
  background-color: transparent;
  padding: 0;
  box-shadow: none;
  margin: 0;
  border-radius: 3px;
}

.epi__accordion .epi__accordion-group.is-opened .epi__accordion-title {
  background-color: #F8F8F8;
  color: #CD2122;
  border-bottom: 1px solid #EEEEEE;
}

.epi__accordion .epi__accordion-group.is-opened .epi__accordion-title:after {
  right: 25px;
  top: 50%;
  transform: rotate(45deg);
}

.epi__accordion .epi__accordion-group.is-opened .epi__accordion-title:before {
  right: 31px;
  top: 50%;
  transform: rotate(-45deg);
}

.epi__accordion-title {
  cursor: pointer;
  border-radius: 3px 3px 0 0;
  color: #505050;
  background-color: #fff;
  display: block;
  width: 100%;
  text-align: left;
  padding: 17px 60px 15px 25px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.epi__accordion-title:after, .epi__accordion-title:before {
  position: absolute;
  content: ' ';
  width: 10px;
  height: 2px;
  display: block;
  background: #ddd;
  transition: all .3s ease-in-out;
  right: 25px;
  top: 50%;
}

.epi__accordion-title:after {
  right: 25px;
  top: 50%;
  transform: rotate(-45deg);
}

.epi__accordion-title:before {
  right: 31px;
  top: 50%;
  transform: rotate(45deg);
}

.epi__accordion-title:hover {
  background: #F8F8F8;
  color: #111;
}

.epi__accordion-content {
  display: none;
  padding: 0 15px;
}

.epi__accordion-content .row {
  padding: 20px 10px;
  background-color: #F8F8F8;
}

.epi__accordion-content .row h4 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 20px;
  color: #535353;
}

.epi__accordion-content .row p {
  line-height: 1.7;
}

.epi__accordion-content ul.epi__list--style1 li:before {
  content: "\e013";
  opacity: .6;
  margin-right: 10px;
  display: inline-block;
  font-family: Glyphicons Halflings;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.epi__accordion-content a {
  color: #000;
}

.epi__accordion-content a:hover {
  color: #0d5195;
}

.epi__actionBox.epi__actionBox--style1 {
  background-color: #f8f8f8;
  padding-top: 0px;
  padding-bottom: 50px;
}

.epi__actionBox.epi__actionBox--style1 .epi__actionBox--top {
  margin-top: -50px;
}

.epi__actionBox.epi__actionBox--style1 .epi__actionBox-elem {
  position: relative;
  padding: 0;
  border-radius: 6px;
  margin-bottom: 20px;
  background-color: #161733;
}

.epi__actionBox.epi__actionBox--style1 .epi__actionBox-elem .epi__actionBox-inner {
  position: relative;
  padding: 35px;
  border-radius: 6px;
  z-index: 30;
}

.epi__actionBox.epi__actionBox--style1 .epi__actionBox-elem .epi__actionBox-inner:before {
  position: absolute;
  content: '';
  top: -6px;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transform: skewY(1.5deg);
  border-radius: 6px;
  transform-origin: right top;
  background-color: #161733;
}

.epi__actionBox.epi__actionBox--style1 .epi__actionBox-elem .epi__actionBox-inner:after {
  position: absolute;
  content: '';
  background-color: rgba(0, 0, 0, 0.2);
  width: 90%;
  height: 30%;
  display: block;
  border-radius: 4px;
  transform: skewY(-2deg);
  right: 5%;
  top: -20px;
  z-index: -1;
}

.epi__actionBox.epi__actionBox--style1 .epi__actionBox-elem:before {
  position: absolute;
  content: '';
  width: 30px;
  height: 32px;
  display: block;
  bottom: -6px;
  left: 20%;
  border-radius: 4px;
  transform: skewY(35deg);
  border-top: 0;
  background-color: #161733;
}

/* Contact form default style */
button, input, optgroup, select, textarea {
  font-family: sans-serif;
}

input, optgroup, select, textarea {
  margin-bottom: 15px;
  font-size: 13px;
  height: auto;
  outline: none;
  border: 1px solid #D9D9D9;
  line-height: 2;
  padding: 26px 10px 6px;
  display: block;
  color: #555;
  background-color: #fff;
}

input[type="text"], input[type="password"], input[type="email"], textarea, select {
  width: 100%;
}

label {
  color: #969696;
  cursor: text;
  font-size: 10px;
  text-transform: uppercase;
  position: absolute;
  top: 6px;
  left: 10px;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

input:focus + label,
textarea:focus + label,
select:focus + label {
  color: silver;
}

select {
  padding-left: 15px;
  padding-top: 30px;
}

.epi__form-component {
  position: relative;
}

textarea {
  resize: vertical;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select {
    appearance: none;
    box-shadow: inset 1px 2px 0 rgba(0, 0, 0, 0.06);
    background-image: url("../img-assets/select-arrow.svg");
    background-repeat: no-repeat;
    background-size: 6px 12px;
    background-position: calc(100% - 10px) 50%;
    background-position-y: center;
    background-position-x: calc(100% - 10px);
  }
}

input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
  outline: none;
}

input[type="radio"], input[type="checkbox"] {
  display: inline-block;
}

.epi__submitBtn {
  text-transform: initial;
  font-size: 14px;
  line-height: 1.3333333;
  margin: auto;
  display: block;
}

/* contact form validation */
.js-disable-action {
  pointer-events: none;
}

.js-cf-message {
  display: none;
  border-left: solid 3px transparent;
  padding-left: 5px;
}

.js-response-success {
  border-left-color: #9bf442;
}

.js-response-error {
  border-left-color: #dd0000;
}

.epi__form--style1 input {
  height: 50px;
  float: left;
  border: 0;
  vertical-align: middle;
  outline: none;
  margin: 0;
  top: 0;
  border-radius: 0;
  transition: padding-left .15s ease-out;
  padding-left: 20px;
  margin-bottom: 10px;
}

.epi__form--style1 input:focus {
  padding-left: 30px;
  border-color: rgba(0, 0, 0, 0.26);
  box-shadow: inherit;
}

.epi__counterElementWrapper {
  padding-top: 75px;
  margin-bottom: 30px;
}

.epi__counterElementWrapper p {
  font-size: 56px;
  line-height: 68px;
  font-weight: 700;
  color: #ffffff;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  /* 768px - 991px */
  /* 1200px - 1680px */
}

@media (min-width: 768px) and (max-width: 991px) {
  .epi__counterElementWrapper p {
    font-size: 30px;
    line-height: 50px;
  }
}

@media (min-width: 1200px) and (max-width: 1679px) {
  .epi__counterElementWrapper p {
    font-size: 47px;
    line-height: 70px;
  }
}

.epi__customMenu {
  margin-bottom: 20px;
}

.epi__customMenu.epi__customMenu--style1 ul li {
  position: relative;
}

.epi__customMenu.epi__customMenu--style1 ul li a {
  font-size: 13px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.epi__customMenu.epi__customMenu--style1 ul li a:before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  transition: all .15s ease-out;
  background-color: #0d5195;
}

.epi__customMenu.epi__customMenu--style1 ul li a:after {
  content: "\e258";
  color: #fff;
  opacity: 0.05;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .15s ease-out;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.epi__customMenu.epi__customMenu--style1 ul li a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.epi__customMenu.epi__customMenu--style1 ul li a:hover:after {
  opacity: 0.2;
}

.epi__customMenu.epi__customMenu--style1 ul li a:hover:before {
  width: 100%;
}

.epi__customMenu.epi__customMenu--style2 ul li {
  position: relative;
}

.epi__customMenu.epi__customMenu--style2 ul li a {
  font-size: 11px;
  line-height: 36px;
  font-weight: 700;
  color: #444;
  display: block;
  padding: 10px 15px;
  margin-bottom: 3px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  transition: color 0.15s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.epi__customMenu.epi__customMenu--style2 ul li a:hover {
  color: #fff;
}

.epi__customMenu.epi__customMenu--style2 ul li a:hover:before {
  width: 100%;
  opacity: 1;
  transform: translateX(0) skewX(0);
}

.epi__customMenu.epi__customMenu--style2 ul li a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  opacity: 0;
  transform: translateX(-103%) skewX(10deg);
  transition: all 0.15s cubic-bezier(0.77, 0, 0.175, 1);
  background-color: #0d5195;
}

.epi__customMenu.epi__customMenu--style2 ul li a span {
  position: relative;
}

.epi__customMenu.epi__customMenu--style2 ul li a.active {
  color: #fff;
}

.epi__customMenu.epi__customMenu--style2 ul li a.active:before {
  width: 100%;
  opacity: 1;
  transform: translateX(0) skewX(0);
}

.epi__gridGallery.epi__gridGallery--cols3 .epi__gridGallery-item {
  width: 33.3333%;
  float: left;
  position: relative;
  padding: 0;
}

.epi__gridGallery.epi__gridSlider {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.epi__gridGallery.epi__gridSlider .epi__arrow-left, .epi__gridGallery.epi__gridSlider .epi__arrow-right {
  position: absolute;
  top: 0px;
  margin-top: -40px;
  /* <= 992px */
}

@media (max-width: 991px) {
  .epi__gridGallery.epi__gridSlider .epi__arrow-left, .epi__gridGallery.epi__gridSlider .epi__arrow-right {
    margin-top: auto;
    color: #fff;
    z-index: 2;
    top: 49%;
  }
}

.epi__gridGallery.epi__gridSlider .epi__arrow-left {
  left: 60px;
  /* 992px - 1199px */
  /* <= 992px */
}

@media (min-width: 992px) and (max-width: 1199px) {
  .epi__gridGallery.epi__gridSlider .epi__arrow-left {
    left: 20px;
  }
}

@media (max-width: 991px) {
  .epi__gridGallery.epi__gridSlider .epi__arrow-left {
    left: 15px;
  }
}

.epi__gridGallery.epi__gridSlider .epi__arrow-right {
  left: 100px;
  /* 992px - 1199px */
  /* <= 992px */
}

@media (min-width: 992px) and (max-width: 1199px) {
  .epi__gridGallery.epi__gridSlider .epi__arrow-right {
    left: 60px;
  }
}

@media (max-width: 991px) {
  .epi__gridGallery.epi__gridSlider .epi__arrow-right {
    left: auto;
    right: 20px;
  }
}

.epi__gridGallery .epi__gridGallery-item {
  position: relative;
  overflow: hidden;
}

.epi__gridGallery .epi__gridGallery-item .epi__gridGallery-link:hover .epi__icon {
  display: block;
  opacity: 1;
  margin-top: 0;
}

.epi__gridGallery .epi__gridGallery-item .epi__gridGallery-link:hover .epi__gridGallery-img {
  transform: scale(1.1);
}

.epi__gridGallery .epi__gridGallery-item .epi__gridGallery-link.sh__zoom--on .epi__gridGallery-img {
  transition-duration: 2s;
  transition: transform 0.7s linear;
}

.epi__gridGallery .epi__gridGallery-item .epi__gridGallery-link .epi__gridImg-wrapper {
  top: 10px;
  right: 5px;
  left: 5px;
  bottom: 10px;
  width: calc(100% - 10px);
  height: calc(100% - 20px);
  display: block;
  position: relative;
  overflow: hidden;
}

.epi__gridGallery .epi__gridGallery-item .epi__gridGallery-link .epi__gridImg-wrapper .epi__gridGallery-img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  object-fit: cover;
  overflow: hidden;
}

.epi__gridGallery .epi__gridGallery-item .epi__gridGallery-link .epi__icon {
  opacity: 0;
  position: absolute;
  top: 50%;
  margin-top: 15px;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .25s ease-in-out;
  border-color: #fff;
  color: #fff;
}

.epi__gridGallery .epi__gridGallery-item .epi__gridGallery-link .epi__icon.epi__circled-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  display: inline-block;
  border-radius: 50%;
  box-sizing: content-box;
  text-align: center;
  border: 2px solid currentColor;
}

.epi__gridGallery .epi__gridGallery-item .epi__gridGallery-link .epi__icon.epi__circled-icon:before {
  line-height: 56px;
  display: block;
  vertical-align: middle;
}

/* icon box default style */
.epi__iconBox {
  margin-bottom: 0;
}

.epi__iconBox--circle {
  display: inline-block;
  border-radius: 50%;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}

.epi__iconBox .epi__iconBox-inner .epi__iconbox-iconWrapper {
  margin-top: 0;
  margin-bottom: 15px;
}

.epi__iconBox .epi__iconBox-inner .epi__iconbox-iconWrapper.epi__iconbox-iconLeft {
  float: left;
  margin-right: 20px;
}

.epi__iconBox .epi__iconBox-inner .epi__iconbox-contentWrapper {
  overflow: hidden;
}

.epi__iconBox .epi__iconBox-inner .epi__iconbox-contentWrapper .epi__iconbox-titleWrapper {
  margin-bottom: 6px;
}

.epi__iconBox .epi__iconBox-inner .epi__iconbox-contentWrapper .epi__iconbox-descWrapper {
  margin-top: 0;
  margin-bottom: 15px;
}

.epi__iconBox .epi__iconBox-inner .epi__iconbox-title {
  font-style: normal;
  margin: 0;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.epi__iconBox .epi__iconBox-inner .epi__iconbox-desc {
  margin: 0;
  font-weight: 400;
  font-style: normal;
}

.epi__iconBox .epi__iconBox-inner .epi__iconbox-icon {
  font-size: 20px;
  transition: color 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.epi__iconBox .epi__iconBox-inner .epi__iconbox-icon.epi__icon--white {
  color: #fff;
}

.epi__iconBox.epi__iconBox--style1 .epi__iconbox-icon {
  line-height: 1;
  font-size: 30px;
  color: #5c5c70;
}

.epi__iconBox.epi__iconBox--style1 .epi__iconbox-title {
  line-height: 22px;
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
}

.epi__iconBox.epi__iconBox--style1 .epi__iconbox-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 30px;
}

.epi__iconBox.epi__iconBox--style1 .epi__iconbox-titleLink {
  color: #ffffff;
}

.epi__iconBox.epi__iconBox--style1 .epi__iconbox-titleLink:hover {
  color: #ffffff;
}

.epi__iconBox.epi__iconBox--style1 .epi__iconbox-titleLink:focus {
  color: #ffffff;
}

.epi__iconBox.epi__iconBox--style1 .epi__icon-truck {
  font-size: 80px;
}

.epi__iconBox.epi__iconBox--style1 .epi__icon-plane {
  font-size: 68px;
}

.epi__iconBox.epi__iconBox--style1 .epi__icon-ship {
  font-size: 62px;
}

.epi__iconBox.epi__iconBox--style2 .epi__iconbox-icon {
  color: #0d5195;
}

.epi__iconBox.epi__iconBox--style2 .epi__iconbox-icon.epi__icon-truck {
  font-size: 54px;
}

.epi__iconBox.epi__iconBox--style2 .epi__iconbox-icon.epi__icon-box {
  font-size: 50px;
}

.epi__iconBox.epi__iconBox--style2 .epi__iconbox-icon.epi__icon-ball {
  font-size: 42px;
}

.epi__iconBox.epi__iconBox--style2 .epi__iconbox-icon.epi__icon-forklift {
  font-size: 42px;
}

.epi__iconBox.epi__iconBox--style2 .epi__iconbox-title {
  color: #0a0a0a;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
}

.epi__iconBox.epi__iconBox--style2 .epi__iconbox-desc {
  color: #535353;
  line-height: 28px;
}

.epi__iconBox.epi__iconBox--style3 .epi__iconbox-icon {
  color: #0d5195;
}

.epi__iconBox.epi__iconBox--style3 .epi__iconbox-title {
  color: #0a0a0a;
  line-height: 22px;
  font-weight: 700;
  font-size: 13px;
}

.epi__iconBox.epi__iconBox--style3 .epi__iconbox-desc {
  color: #535353;
}

.epi__iconBox.epi__iconBox--style3 .epi__icon-truck {
  font-size: 45px;
}

.epi__iconBox.epi__iconBox--style3 .epi__icon-box {
  font-size: 42px;
}

.epi__iconBox.epi__iconBox--style3 .epi__icon-ball {
  font-size: 42px;
}

.epi__iconBox.epi__iconBox--style3 .epi__icon-forklift {
  font-size: 42px;
}

.epi__iconBox.epi__iconBox--style4 .epi__iconbox-icon {
  color: #303049;
}

.epi__iconBox.epi__iconBox--style4 .epi__iconbox-title {
  color: #fff;
  font-size: 13px;
  line-height: 30px;
  font-weight: 700;
}

.epi__iconBox.epi__iconBox--style4 .epi__iconbox-desc {
  color: rgba(255, 255, 255, 0.35);
}

.epi__iconBox.epi__iconBox--style4 .epi__icon-workers {
  font-size: 72px;
}

.epi__iconBox.epi__iconBox--style4 .epi__icon-map {
  font-size: 68px;
}

.epi__iconBox.epi__iconBox--style4 .epi__icon-ship {
  font-size: 69px;
}

.epi__iconBox.epi__iconBox--style4 .epi__icon-ball {
  font-size: 68px;
}

.epi__iconBox.epi__iconBox--style5 .epi__iconBox-inner .epi__iconbox-iconWrapper {
  margin-bottom: 10px;
  min-width:20px;
}

.epi__iconBox.epi__iconBox--style5 .epi__iconbox-icon {
  line-height: 1;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.epi__iconBox.epi__iconBox--style5 .epi__iconbox-title {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  font-family: Open Sans, Helvetica, Arial, sans-serif;
}

.epi__iconBox.epi__iconBox--style5 .epi__iconbox-titleLink {
  color: #ffffff;
}

.epi__iconBox.epi__iconBox--style5 .epi__iconbox-titleLink:hover {
  color: #ffffff;
}

.epi__iconBox.epi__iconBox--style5 .epi__iconbox-titleLink:focus {
  color: #ffffff;
}

.epi__iconBox.epi__iconBox--style6 .epi__iconbox-title {
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  font-style: normal;
}

.epi__iconBox.epi__iconBox--style6 .epi__iconbox-icon {
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  display: inline-block;
  border-radius: 3px;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  padding: 22px;
  transition: background-color .2s ease-out;
  background-color: #0d5195;
}

.epi__iconBox.epi__iconBox--style6 .epi__iconbox-icon:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  border-radius: 3px;
  transition-property: transform,opacity;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.epi__iconBox.epi__iconBox--style6 .epi__iconbox-desc {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #aaaaaa;
  font-style: italic;
}

.epi__iconBox.epi__iconBox--style6:hover .epi__iconbox-icon:after {
  width: 120%;
  left: -20%;
  background-color: #0d5195;
}

.epi__iconBox.epi__iconBox--style7:hover .epi__iconbox-icon:after {
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-duration: .2s;
  transform: scale(1.15);
  opacity: 1;
}

.epi__iconBox.epi__iconBox--style7 .epi__iconbox-icon {
  font-size: 20px;
  padding: 25px;
  color: #fff;
  margin-bottom: 0px;
  background-color: #0d5195;
}

.epi__iconBox.epi__iconBox--style7 .epi__iconbox-icon:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transform-origin: 50% 50%;
  transition-property: transform,opacity;
  transition-duration: .5s;
  transition-timing-function: ease-in;
  background-color: #0d5195;
}

.epi__circleanim-svg {
  width: 108px;
  height: 108px;
  display: inline-block;
}

.epi__circleanim-svg:hover .epi__circleanim-svg-front {
  stroke-dasharray: 340;
  stroke-width: 2px;
  stroke-opacity: 1;
}

.epi__circleanim-svg-front, .epi__circleanim-svg-back {
  fill: none;
  stroke: #fff;
}

.epi__circleanim-svg-front {
  stroke-dasharray: 60 1000;
  stroke-width: 5px;
  stroke-opacity: .5;
  stroke-dashoffset: 0;
  transition: stroke-width 1s,stroke-dashoffset 1s,stroke-dasharray 1s,stroke-opacity 1s;
}

.epi__imageBox .epi__imageBox-wrapper {
  position: relative;
  display: block;
}

.epi__imageBox .epi__imageBox-wrapper .epi__imageBox-imgWrapper {
  display: block;
  position: relative;
}

.epi__imageBox .epi__imageBox-wrapper .epi__imageBox-imgWrapper img {
  display: block;
 /* margin: 0 auto;*/
  width: 100%;
}

.epi__imageBox .epi__imageBox-wrapper .epi__imageBox-imgWrapper img.epi__imgWidth--auto {
  width: auto;
}

.epi__imageBox-details {
  background-color: #f4f4f4;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
}

.epi__imageBox-details .epi__imageBox-title {
  font-size: 13px;
  line-height: 26px;
  font-weight: 700;
  color: #0a0a0a;
  text-transform: uppercase;
}

.epi__imageBox-details .epi__imageBox-subtitle {
  font-size: 13px;
  line-height: 26px;
  font-weight: 400;
  color: #535353;
  font-family: Open Sans, Helvetica, Arial, sans-serif;
}

.epi__latestPosts {
  position: relative;
}

.epi__latestPosts .epi__latestPosts-viewall {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 10px;
  font-weight: bold;
  color: #000;
}

.epi__latestPosts .epi__latestPosts-viewall:hover {
  color: #0d5195;
}

.epi__latestPosts .epi__latestPost-item .epi__latestPosts-thumb {
  margin-right: 10px;
  margin-top: 2px;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.epi__latestPosts .epi__latestPost-item h4 {
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  margin: 0 0 5px;
  padding: 0;
  vertical-align: middle;
}

.epi__latestPosts .epi__latestPost-item h4 a {
  color: #000;
}

.epi__latestPosts .epi__latestPost-item h4 a:hover {
  color: #0d5195;
}

.epi__latestPosts .epi__latestPost-item h4 a:focus {
  outline: none;
}

.epi__latestPosts .epi__latestPost-item p {
  line-height: 1.7;
}

.epi__latestPosts .epi__latestPost-item img {
  width: auto;
}

.epi__media {
  min-height: 440px;
  height: 440px;
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  /* <= 1200px */
  /* <= 768px */
  /* < 480px */
}

.epi__media h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
}

.epi__media h4.epi__elem--white {
  color: #fff;
}

.epi__media p {
  line-height: 34px;
  color: #0a0a0a;
}

.epi__media p.epi__elem--white {
  color: rgba(255, 255, 255, 0.74);
}

.epi__media--style2 {
  min-height: 360px;
  height: 360px;
  /* <= 768px */
}

@media (max-width: 767px) {
/* CUSTOM WELCOME INDEX */
.epi__welcomeSection .epi__welcomeHeader {
  position: absolute;
  top: -250px;
  left: 0;
  z-index: 999;
  width: 100%;
  background: none !important;
}
.epi__actionBox.epi__actionBox--style1 .epi__actionBox-inner > .row {
  display: none;
}
.epi__welcome-subtitle {
 color: #fff !important;
}
.epi__actionBox.epi__actionBox--style1 .epi__actionBox-elem .epi__actionBox-inner {
  height: 250px;
}

.epi__firstfootermenu {
  margin-bottom: 0px !important;
}
.epi__actionBox.epi__actionBox--style1 .epi__actionBox-elem .epi__actionBox-inner .row .col-md-3 {
  padding: 10px !important;
}
.epi__welcomeSection .epi__welcomeHeader {
  padding-bottom: 0px !important;
}
.epi__iconBox-inner.epi__text--left {
  /*text-align: center;*/
}
.epi__actionBox.epi__actionBox--style1 {
  padding-top: 90px !important;
  padding-bottom: 25px !important;
}
#epi__homepageSlider_forcefullwidth {
  display: none !important;
}

.epi__subHeader .epi__subHeader-contentWrapp .epi__subheader-title {
  margin-top:0px;
}

  .epi__media--style2 {
    min-height: 360px;
    height: 360px;
  }
}

@media (max-width: 1199px) {
  .epi__media {
    min-height: auto;
    height: auto;
  }
}

@media (max-width: 767px) {
  .epi__media {
    min-height: 440px;
    height: 440px;
  }
}

@media (max-width: 479px) {
  .epi__media {
    min-height: 300px;
    height: auto;
  }
}

.epi__media .epi__media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(15, 15, 18, 0) 0%, rgba(20, 20, 20, 0.95) 100%);
}

.epi__media .epi__media-overlay--style2 {
  background: #0d5195;
}

.epi__media .epi__media-overlay--style3 {
  background-color: rgba(29, 31, 64, 0.5);
}

.epi__media .epi__media-overlay--grid {
  background-image: linear-gradient(to right top, transparent 33%, black 33%, black 66%, transparent 66%);
  background-size: 3px 3px;
}

.epi__media .epi__media-details {
  width: calc(100% - 50px);
  margin: 10px 25px;
  position: absolute;
  bottom: 0;
}

.epi__media .epi__media-details--center {
  align-self: center;
  position: relative;
}

.epi__media .epi__iconBox.epi__iconBox--style1 .epi__iconbox-title {
  font-size: 18px;
  line-height: 30px;
}

.epi__newsletter {
  margin-top: 40px;
  position: relative;
}

.epi__newsletter.epi__newsletter--style1 {
  display: table;
  width: 100%;
  min-height: 300px;
  height: auto;
  z-index: 399;
  position: relative;
  padding-bottom: 20px;
  /* < 480px */
}

@media (max-width: 479px) {
  .epi__newsletter.epi__newsletter--style1 {
    height: 200px;
  }
}

.epi__newsletter.epi__newsletter--style1 .epi__bg-overlay {
  background-color: #171933;
  z-index: 1;
}

.epi__newsletter.epi__newsletter--style1 .epi__newsletter-container {
  position: relative;
  z-index: 2;
  display: table-cell;
  vertical-align: middle;
  width: calc(100% - 50px);
  padding-left: 25px;
  padding-right: 25px;
  /* 768px - 991px */
}

.epi__newsletter.epi__newsletter--style1 .epi__newsletter-container h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.epi__newsletter.epi__newsletter--style1 .epi__newsletter-container p {
  font-size: 13px;
  line-height: 22px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.46);
}

@media (min-width: 768px) and (max-width: 991px) {
  .epi__newsletter.epi__newsletter--style1 .epi__newsletter-container {
    width: calc(100%);
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* newsletter validation */
.epi__newsletter-message.has-error {
  background: #e63b42;
}

.epi__newsletter-message.is-valid {
  background: #3be679;
}

.epi__newsletter-message.has-error,
.epi__newsletter-message.is-valid {
  margin-top: 10px;
  color: #fff;
  padding: 10px 30px;
  line-height: 22px;
  border-radius: 3px;
  /* 768px - 991px */
}

@media (min-width: 768px) and (max-width: 991px) {
  .epi__newsletter-message.has-error,
  .epi__newsletter-message.is-valid {
    padding: 10px 10px;
  }
}

#epi__homepageSlider .uranus.tparrows {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0);
}

#epi__homepageSlider .uranus.tparrows:before {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 40px;
  transition: all 0.3s;
}

#epi__homepageSlider .uranus.tparrows:hover:before {
  opacity: 0.75;
}

.epi__homepageSlider-wrapper {
  margin: 0px auto;
  background: transparent;
  padding: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}

/* sidebar */
.epi__sidebar {
  padding: 20px 15px;
  border-radius: 3px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.15);
}

.epi__widget {
  margin-bottom: 30px;
}

.epi__widget-title {
  color: #050505;
  line-height: 1.4;
  margin: 10px 0 15px;
  padding-bottom: 20px;
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
}

.epi__widget-title:before {
  width: 100%;
  border-bottom: 1px solid #ececec;
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 0;
}

.epi__widget-title:after {
  border-bottom: 1px solid #0d5195;
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 0;
  width: 50px;
}

.epi__widget-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.epi__widget-menu li a {
  color: #747474;
  display: block;
  padding: 5px 0;
  position: relative;
  border-radius: 2px;
  transition: all .2s ease-out;
  font-size: 13px;
}

.epi__widget-menu li a:before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  width: 8px;
  height: 2px;
  background: #e1e1e1;
  vertical-align: middle;
  transition: all .15s ease-out;
}

.epi__widget-menu li a:hover:before {
  width: 12px;
  margin-right: 8px;
}

/* search */
#epi__search-form {
  position: relative;
}

.epi__search-form-input {
  height: 42px;
  width: 100%;
  padding: 0 20px;
  outline: none;
  border: 1px solid #ddd;
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

.epi__search-form-submit {
  position: absolute;
  right: 0;
  border: 0;
  color: #bbb;
  background-color: transparent;
  outline: none;
  height: 100%;
  padding: 0 20px;
  font-size: 12px;
  transition: color .2s ease-in-out;
}

.epi__search-form-submit:after {
  content: "";
  width: 1px;
  height: 24px;
  background-color: #ddd;
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  margin-top: -12px;
}

/* sidebar recent posts */
.epi__sidebar-recent {
  position: relative;
}

.epi__sidebar-recent-posts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.epi__sidebar-recent-post {
  margin-bottom: 15px;
  padding-bottom: 15px;
  overflow: hidden;
}

.epi__sidebar-recent-post:not(:last-of-type) {
  border-bottom: 1px solid #e3e3e3;
}

.epi__sidebar-post-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  margin: 0 0 5px;
  padding: 0;
  vertical-align: middle;
  overflow: hidden;
  /* 768px - 991px */
}

@media (min-width: 768px) and (max-width: 991px) {
  .epi__sidebar-post-title {
    overflow: visible;
    float: left;
  }
}

.epi__sidebar-post-title a {
  color: #000;
}

.epi__sidebar-post-title a:hover {
  color: #0d5195;
}

.epi__sidebar-recent-thumb {
  margin-right: 20px;
  margin-top: 5px;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  /* 768px - 991px */
}

@media (min-width: 768px) and (max-width: 991px) {
  .epi__sidebar-recent-thumb {
    margin-bottom: 10px;
  }
}

.epi__sidebar-recent-thumb:hover:after {
  box-shadow: 0 0 0 5px #0d5195 inset;
}

.epi__sidebar-recent-thumb:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  border-radius: 3px;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.15);
  transition: box-shadow .2s ease-out,background-color .2s ease-out;
}

.epi__sidebar-recent-thumb img {
  max-width: 54px;
  box-sizing: border-box;
  border-radius: 2px;
  width: 100%;
  position: relative;
  height: 54px;
}

.epi__sidebar-post-text {
  margin-left: 74px;
  /* 768px - 991px */
}

@media (min-width: 768px) and (max-width: 991px) {
  .epi__sidebar-post-text {
    margin-left: 0px;
  }
}


.epi__socialIcons ul {
  margin-left: 0;
  padding: 0;
  display: inline-block;
  list-style: none;
}

.epi__socialIcons ul li {
  display: inline-block;
  margin: 5px;
  margin-left: 1px;
  margin-right: 1px;
}

.epi__socialIcons ul li a {
  display: block;
}

.epi__socialIcons ul li a:hover span {
  color: #c1c1c1;
  background-color: #323232;
}

.epi__socialIcons span {
  color: #484848;
  background-color: #252525;
  padding: 16px;
  display: inline-block;
  width: auto;
  height: auto;
  position: relative;
  text-align: center;
  transition: all 0.2s ease-out;
  font-size: 17px;
  font-weight: normal;
  opacity: 1;
  vertical-align: middle;
}

.epi__socialIcons--style2:before {
  content: attr(data-share-title);
  font-size: 12px;
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  color: #8a8a8a;
}

.epi__socialIcons--style2 li a {
  width: 30px;
  height: 30px;
}

.epi__socialIcons--style2 li a:hover .epi__icon-twitter2 {
  background: #55acee;
  color: #fff;
}

.epi__socialIcons--style2 li a:hover .epi__icon-facebook2 {
  background: #3b5998;
  color: #fff;
}

.epi__socialIcons--style2 li a:hover .epi__icon-googleplus2 {
  background: #cc3732;
  color: #fff;
}

.epi__socialIcons--style2 li a:hover .epi__icon-pinterest {
  background: #cc2127;
  color: #fff;
}

.epi__socialIcons--style2 li a:hover .epi__icon-envelop {
  background: #565656;
  color: #fff;
}

.epi__socialIcons--style2 li a span {
  display: inline-block;
  margin-top: -5px;
  border-radius: 3px;
  color: rgba(0, 0, 0, 0.25);
  background-color: transparent;
  border-color: #e2e2e2;
  border-top: 0;
  border-bottom: 0;
  border-right: 0;
  border: 0;
  font-size: 16px;
  text-align: center;
  margin-right: 5px;
  line-height: 30px;
  padding: 0px;
  height: 100%;
  width: 100%;
}

.epi__testimonialWrapper {
  width: 100%;
}

.epi__testimonialWrapper.sh__scheme--dark {
  color: #dcdcdc;
}

.epi__testimonialWrapper.sh__scheme--dark .epi__testimonial {
  color: #181818;
}

.epi__testimonialWrapper.epi__scheme--light {
  color: #535353;
}

.epi__testimonial {
  float: left;
  margin-bottom: 30px;
  width: calc(100% - 50px);
}

.epi__testimonial .epi__testimonial-text {
  background: #f4f4f4;
  padding: 30px 25px 30px;
  line-height: 2;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  position: relative;
}

.epi__testimonial .epi__testimonial-info {
  line-height: 15px;
  margin-top: 15px;
}

.epi__testimonial .epi__testimonial-info .epi__testimonial-img {
  margin-top: -35px;
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 20px;
  margin-left: 25px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  background-clip: content-box;
  object-fit: cover;
}

.epi__testimonial .epi__testimonial-info h4 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 0;
}

.epi__testimonial .epi__testimonial-info .epi__testimonial-position {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 5px;
}

.epi__testimonial .epi__testimonial-info .glyphicon-star {
  opacity: .6;
  font-size: 9px;
}

.epi__Logos {
  position: relative;
  float: left;
  width: 100%;
}

.epi__Logos .epi__logo-item {
  float: left;
  line-height: 60px;
  vertical-align: middle;
  text-align: center;
}

.epi__Logos .epi__logo-item .epi__logo-link {
  display: block;
  padding: 10px;
}

.epi__Logos .epi__logo-item .epi__logo-link:focus {
  outline: none;
}

.epi__Logos .epi__logo-item .epi__logo-link img {
  max-height: 60px;
  margin: 0 auto;
  width: auto;
}
.epi__testimonialSlider {
  margin-bottom: 15px;
}
.epi__testimonialSlider .epi__arrow-left, .epi__testimonialSlider .epi__arrow-right {
  position: absolute;
  top: 0px;
  margin-top: -75px; /* 25 */
  /* <= 992px */
  /* <= 768px */
}

@media (max-width: 991px) {
  .epi__testimonialSlider .epi__arrow-left, .epi__testimonialSlider .epi__arrow-right {
    margin-top: auto;
    color: #fff;
    z-index: 2;
    top: 49%;
  }
}

@media (max-width: 767px) {
  .epi__testimonialSlider .epi__arrow-left, .epi__testimonialSlider .epi__arrow-right {
    top: -75px;
  }
}

.epi__testimonialSlider .epi__arrow-left:before, .epi__testimonialSlider .epi__arrow-right:before {
  color: #535353;
}

.epi__testimonialSlider .epi__arrow-left {
  left: 220px;
  /* 992px - 1199px */
  /* 768px - 991px */
  /* <= 768px */
}

@media (min-width: 992px) and (max-width: 1199px) {
  .epi__testimonialSlider .epi__arrow-left {
    left: 130px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .epi__testimonialSlider .epi__arrow-left {
    left: -35px;
  }
}

@media (max-width: 767px) {
  .epi__testimonialSlider .epi__arrow-left {
    left: 80%;
  }
}

.epi__testimonialSlider .epi__arrow-right {
  right: 0px;
  /* 992px - 1199px */
  /* 768px - 991px */
  /* <= 768px */
}

@media (min-width: 992px) and (max-width: 1199px) {
  .epi__testimonialSlider .epi__arrow-right {
    left: 160px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .epi__testimonialSlider .epi__arrow-right {
    left: auto;
    right: -25px;
  }
}

@media (max-width: 767px) {
  .epi__testimonialSlider .epi__arrow-right {
    right: 5%;
  }
}
.epi__testimonialSlider .epi__testimonial-bqt {
  border: 1px solid #eaeaea;
  box-shadow: none;
  background: #fff;
  margin: 0 1px 10px 0;
  padding: 25px;
  color: #898989;
  font-size: 14px;
  line-height: 2;
  font-style: italic;
  position: relative;
}

.epi__testimonialSlider .epi__testimonial-bqt:before, .epi__testimonialSlider .epi__testimonial-bqt:after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 14px;
  border: 7px solid transparent;
  border-top-color: #fff;
}

.epi__testimonialSlider .epi__testimonial-bqt:before {
  bottom: -14px;
  border-top-color: #D9D9D9;
}

.epi__testimonialSlider .epi__testimonial-bqt:after {
  bottom: -13px;
}

.epi__testimonialSlider .epi__testimonial-author {
  margin-top: 15px;
}

.epi__testimonialSlider .epi__testimonial-author .epi__testimonial-imgWrapper {
  margin-right: 10px;
  float: left;
  border-radius: 50%;
  overflow: hidden;
  width: 40px;
  height: 40px;
}

.epi__testimonialSlider .epi__testimonial-title {
  display: inline-block;
  margin: 12px 0;
  font-size: 13px;
  font-weight: 500;
  color: #535353;
}

/*** Totop button ***/
.totop {
  height: 9px;
  opacity: 0;
  position: fixed;
  right: -60px;
  width: 49px;
  z-index: 999;
  display: block;
  top: 85%;
  background-repeat: no-repeat;
  background-position: center 15px;
  background-color: #404040;
  font-size: 9px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1;
  border-radius: 2px;
  padding: 28px 0 21px 0;
  transition: all 0.2s ease-out;
}

.totop-vissible {
  right: 10px;
  opacity: 0.7;
}

.totop:before {
  position: absolute;
  content: "\e080";
  top: 10px;
  left: 50%;
  margin-left: -6px;
  font-size: 11px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transform: rotate(-90deg);
}

.totop:hover {
  color: #fff;
}

.totop:focus {
  color: #fff;
}

#cd-timeline {
  margin-top: 0em;
  margin-bottom: 0em;
}

#cd-timeline.cd-timeline--style2 {
  /* >= 768px */
}

@media (min-width: 768px) {
  #cd-timeline.cd-timeline--style2 {
    margin-left: 1em;
    margin-right: 1em;
    margin-bottom: 0px;
    margin-top: 0px;
    width: 100%;
  }
}

#cd-timeline.cd-timeline--style2:before {
  width: 1px;
  left: 50%;
  margin-left: -2px;
}

#cd-timeline.cd-timeline--style2 .cd-timeline-block .cd-timeline-content {
  background: #f8f8f8;
  box-shadow: none;
  padding: 30px;
}

#cd-timeline.cd-timeline--style2 .cd-timeline-block .cd-timeline-content h2 {
  font-weight: bold;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-style: normal;
  color: #000;
}

#cd-timeline.cd-timeline--style2 .cd-timeline-block .cd-timeline-content p {
  margin: 0 0 20px;
  font-size: 13px;
}

#cd-timeline.cd-timeline--style2 .cd-timeline-block .cd-timeline-content .cd-date {
  font-weight: bold;
  font-size: 13px;
  color: #000;
  background: #f8f8f8;
  box-shadow: none;
  display: inline-block;
  padding: 5px 10px;
  top: 47%; /* 43 */
  width: fit-content;
  /* 768px - 991px */
  /* <= 768px */
}

@media (min-width: 768px) and (max-width: 991px) {
  #cd-timeline.cd-timeline--style2 .cd-timeline-block .cd-timeline-content .cd-date {
    top: 49%;
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  #cd-timeline.cd-timeline--style2 .cd-timeline-block .cd-timeline-content .cd-date {
    left: 30%;
    right: 30%;
    text-align: center;
    width: 40%;
    padding: 0px 0;
    position: absolute;
    top: -45px;
  }
}

#cd-timeline.cd-timeline--style2 .cd-timeline-block .cd-timeline-content:hover .cd-timeline-icon {
  background: #0d5195;
}

#cd-timeline.cd-timeline--style2 .cd-timeline-block .cd-timeline-icon {
  position: absolute;
  top: 50%;
  left: -24%;
  background: #E5E5E5;
  color: #fff;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  box-sizing: content-box;
  color: #fff;
  transition: all 0.2s ease-out;
  /* 992px - 1199px */
  /* 768px - 991px */
  /* <= 768px */
}

@media (min-width: 992px) and (max-width: 1199px) {
  #cd-timeline.cd-timeline--style2 .cd-timeline-block .cd-timeline-icon {
    left: -26%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #cd-timeline.cd-timeline--style2 .cd-timeline-block .cd-timeline-icon {
    left: -28%;
  }
}

@media (max-width: 767px) {
  #cd-timeline.cd-timeline--style2 .cd-timeline-block .cd-timeline-icon {
    display: none;
  }
}

#cd-timeline.cd-timeline--style2 .cd-timeline-block .cd-timeline-icon:before {
  content: "\e109";
  font-family: 'Glyphicons Halflings';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: inherit;
  display: block;
  width: 25px;
  height: 25px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
}

#cd-timeline.cd-timeline--style2 .cd-timeline-block .cd-timeline-icon:hover {
  background: #0d5195;
}

#cd-timeline.cd-timeline--style2 .cd-timeline-block:nth-child(odd) .cd-timeline-content {
  left: 3%;
  margin: 30px 0 30px 30px;
  /* <= 768px */
}

@media (max-width: 767px) {
  #cd-timeline.cd-timeline--style2 .cd-timeline-block:nth-child(odd) .cd-timeline-content {
    margin: 0 0 30px 0;
    left: 0%;
  }
}

#cd-timeline.cd-timeline--style2 .cd-timeline-block:nth-child(odd) .cd-timeline-content .cd-date {
  margin-right: 30px;
  /* <= 768px */
}

@media (max-width: 767px) {
  #cd-timeline.cd-timeline--style2 .cd-timeline-block:nth-child(odd) .cd-timeline-content .cd-date {
    margin-left: 0px;
  }
}

#cd-timeline.cd-timeline--style2 .cd-timeline-block:nth-child(even) .cd-timeline-content {
  right: 3%;
  margin: 30px 30px 30px 0;
  /* <= 768px */
}

@media (max-width: 767px) {
  #cd-timeline.cd-timeline--style2 .cd-timeline-block:nth-child(even) .cd-timeline-content {
    margin: 0 0 30px 0;
    right: 0%;
  }
}

#cd-timeline.cd-timeline--style2 .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-timeline-icon {
  right: -24%;
  left: auto;
  /* 992px - 1199px */
  /* 768px - 991px */
}

@media (min-width: 992px) and (max-width: 1199px) {
  #cd-timeline.cd-timeline--style2 .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-timeline-icon {
    right: -26%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #cd-timeline.cd-timeline--style2 .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-timeline-icon {
    right: -28%;
  }
}

#cd-timeline.cd-timeline--style2 .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
  margin-left: 30px;
  /* <= 768px */
}

@media (max-width: 767px) {
  #cd-timeline.cd-timeline--style2 .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
    margin-left: 0px;
  }
  .epi__team_image {
    height: 400px !important;
  }
}

.epi__timeline-text {
  background: #fff;
  border-radius: 3px;
  padding: 0 10px;
  line-height: 2;
  display: inline-block;
  color: #535353;
}

.epi__timeline-block {
  margin-left: 1em;
  margin-right: 1em;
}

/* video box */
.epi__videoBox-bg--overlay {
  background-color: rgba(51, 51, 153, 0.1);
}

.epi__videoBox-bg--overlay-style2 {
  background-color: rgba(29, 31, 64, 0.5);
}

.epi__videoBox-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.epi__team_image {
  height: 150px;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
}
