/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}
.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
.btn-primary {
  background-color: #233859;
  color: #fff;
  border-color: #233859;
  border-radius: 4px;
  text-transform: none;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 60px 15px 20px;
  font-style: normal;
  text-align: center;
  font-family: 'Roboto', "Times New Roman", Times, serif;
  transition: 0.5s;
  position: relative;
}
.btn-primary:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #0d1522;
  top: 0;
  right: 46px;
  opacity: 0.3;
  transition: all 500ms;
}
.btn-primary:after {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  color: #fff;
  top: 17px;
  right: 20px;
  transition: 0.5s;
  line-height: 1;
}
.btn-primary:hover {
  background-color: #f0e246;
  border-color: #f0e246;
  color: #233859;
}
.btn-primary:hover:before {
  background-color: #d8c812;
}
.btn-primary:hover:after {
  color: #233859;
}
.btn-secondary {
  background-color: #233859;
  color: #fff;
  border-color: #233859;
  border-radius: 4px;
  text-transform: none;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 60px 15px 20px;
  font-style: normal;
  text-align: center;
  font-family: 'Roboto', "Times New Roman", Times, serif;
  position: relative;
  background-color: #f0e246;
  border-color: #f0e246;
  color: #233859;
  transition: 0.5s;
}
.btn-secondary:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #0d1522;
  top: 0;
  right: 46px;
  opacity: 0.3;
  transition: all 500ms;
}
.btn-secondary:after {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  color: #fff;
  top: 17px;
  right: 20px;
  transition: 0.5s;
  line-height: 1;
}
.btn-secondary:hover {
  background-color: #f0e246;
  border-color: #f0e246;
  color: #233859;
}
.btn-secondary:hover:before {
  background-color: #d8c812;
}
.btn-secondary:hover:after {
  color: #233859;
}
.btn-secondary:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #0d1522;
  top: 0;
  right: 46px;
  opacity: 0.3;
  transition: all 500ms;
}
.btn-secondary:after {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  color: #fff;
  top: 17px;
  right: 20px;
  transition: 0.5s;
  line-height: 1;
}
.btn-secondary:hover {
  background-color: #f0e246;
  border-color: #f0e246;
  color: #233859;
}
.btn-secondary:hover:before {
  background-color: #d8c812;
}
.btn-secondary:hover:after {
  color: #233859;
}
.btn-secondary:before {
  background-color: #c0b210;
  transition: all 500ms;
}
.btn-secondary:after {
  color: #233859;
}
.btn-secondary:hover {
  background-color: #233859;
  border-color: #233859;
  color: #fff;
}
.btn-secondary:hover:before {
  background-color: #0d1522;
}
.btn-secondary:hover:after {
  color: #fff;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tabs .tabs-nav {
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style-type: none;
}
.tabs .tabs-nav li {
  float: left;
}
.tabs .tabs-nav a {
  display: block;
}
.tabs .tabs-panel {
  clear: both;
  display: none;
}
.tabs .tabs-panel.active {
  animation: fadeIn 1 1s ease;
  display: block;
}
.vc_row.vc_row-fluid {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}
.vc_row.vc_row-fluid .vc_row-fluid {
  margin-left: -15px;
  margin-right: -15px;
}
.overlay-enable .overlay {
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 0;
  height: 100%;
  left: 0;
  padding: 60px 0;
  position: absolute;
  right: 0;
}
.parallax {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* custom background-position */
  background-position: 50% 50%;
  /* ie8- graceful degradation */
  background-position: 50% 50% \9;
  display: block;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  vertical-align: sub;
  z-index: 99;
}
.lp-heading {
  padding-bottom: 10px;
  overflow: hidden;
  /*border-bottom: 1px solid @border-color;
    position: relative;

    &:after,
    &:before {
        top: 100%;
        left: 35px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }
    &:after {
        border-top-color: @light;
        border-width: 6px;
        margin-left: 0;
        margin-top: 0;
    }
    &:before {
        border-top-color: @border-color;
        border-width: 8px;
        margin-left: -2px;
    }
    &.text-right {
        text-align: right;
        &:before,
        &:after {
            left: inherit;
            right: 35px;
        }
        &:before {
            right: 33px;
        }
    }
    &.text-center {
        text-align: center;
        border: none;
        &:before,
        &:after {
            display: none;
        }
        h4 {
            border-bottom: 1px solid @border-color;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
            &:after,
            &:before {
                top: 100%;
                left: 50%;
                margin-left: -4px;
                border: solid transparent;
                content: " ";
                height: 0;
                width: 0;
                position: absolute;
                pointer-events: none;
            }
            &:after {
                border-top-color: @light;
                border-width: 6px;
                margin-left: 0;
                margin-top: 0;
            }
            &:before {
                border-top-color: @border-color;
                border-width: 8px;
                margin-left: -2px;
            }
        }
    }*/
}
.lp-heading .border {
  width: 40px;
  height: 1px;
  background: #f2f2f2;
  position: relative;
}
.lp-heading .border:before {
  content: '';
  padding: 5px;
  border-right: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  transform: rotate(45deg);
  top: -5px;
  right: -13px;
  position: absolute;
}
.lp-heading .border:after {
  content: '';
  width: 2000px;
  height: 1px;
  top: 0;
  right: -2015px;
  position: absolute;
  background: #f2f2f2;
}
.lp-heading.text-center {
  display: table;
  margin: 0 auto;
  text-align: center;
}
.lp-heading.text-center .border {
  width: 47%;
}
.lp-heading h4 {
  text-transform: uppercase;
  font-family: 'Roboto', "Times New Roman", Times, serif;
  font-size: 30px;
  color: #323232;
}
.lp-heading.title-color h4 {
  color: #fff;
}
.lp-heading-new {
  position: relative;
}
.lp-heading-new:after,
.lp-heading-new:before {
  top: 100%;
  left: 35px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.lp-heading-new:after {
  border-top-color: #fff;
  border-width: 6px;
  margin-left: 0;
  margin-top: 0;
}
.lp-heading-new:before {
  border-top-color: #f2f2f2;
  border-width: 8px;
  margin-left: -2px;
}
.lp-heading-new.text-right {
  text-align: right;
}
.lp-heading-new.text-right:before,
.lp-heading-new.text-right:after {
  left: inherit;
  right: 35px;
}
.lp-heading-new.text-right:before {
  right: 33px;
}
.lp-heading-new.text-center {
  text-align: center;
  border: none;
}
.lp-heading-new.text-center:before,
.lp-heading-new.text-center:after {
  display: none;
}
.lp-heading-new h4 {
  text-transform: uppercase;
  font-family: 'Roboto', "Times New Roman", Times, serif;
  font-size: 30px;
  color: #323232;
  padding-bottom: 10px;
  position: relative;
}
.lp-heading-new h4:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background: #f2f2f2;
  top: 100%;
  left: 0;
}
.lp-heading-toggle {
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}
.lp-heading-toggle:after,
.lp-heading-toggle:before {
  top: 100%;
  left: 35px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.lp-heading-toggle:after {
  border-top-color: #fff;
  border-width: 6px;
  margin-left: 0;
  margin-top: 0;
}
.lp-heading-toggle:before {
  border-top-color: #f2f2f2;
  border-width: 8px;
  margin-left: -2px;
}
.lp-heading-toggle.text-right {
  text-align: right;
}
.lp-heading-toggle.text-right:before,
.lp-heading-toggle.text-right:after {
  left: inherit;
  right: 35px;
}
.lp-heading-toggle.text-right:before {
  right: 33px;
}
.lp-heading-toggle.text-center {
  text-align: center;
  border: none;
}
.lp-heading-toggle.text-center:before,
.lp-heading-toggle.text-center:after {
  display: none;
}
.lp-heading-toggle.text-center h4 {
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.lp-heading-toggle.text-center h4:after,
.lp-heading-toggle.text-center h4:before {
  top: 100%;
  left: 50%;
  margin-left: -4px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.lp-heading-toggle.text-center h4:after {
  border-top-color: #fff;
  border-width: 6px;
  margin-left: 0;
  margin-top: 0;
}
.lp-heading-toggle.text-center h4:before {
  border-top-color: #f2f2f2;
  border-width: 8px;
  margin-left: -2px;
}
.lp-heading-toggle h4 {
  text-transform: uppercase;
  font-family: 'Roboto', "Times New Roman", Times, serif;
  font-size: 30px;
  color: #323232;
  display: inline-block;
}
.lp-heading-toggle .link {
  padding-top: 15px;
  padding-right: 15px;
  float: right;
  font-weight: 700;
  color: #f0e246;
  text-decoration: underline;
  font-size: 18px;
  position: relative;
}
.lp-heading-toggle .link:after {
  content: '\f0da';
  position: absolute;
  top: 17px;
  right: 0;
  font-family: FontAwesome;
  color: #233859;
  font-size: 18px;
}
.tp-icon-box-title {
  padding-bottom: 50px;
}
.tp-icon-box-title h3 {
  margin-top: 6px;
  font-size: 30px;
  color: #323232;
}
.tp-icon-box-title p {
  font-size: 16px;
  font-style: italic;
  position: relative;
}
.tp-icon-box-title p:before {
  position: absolute;
  content: '';
  width: 2px;
  height: 100%;
  background: #f0e246;
  top: 0;
  left: -20px;
}
.icon-box {
  padding: 0 0 40px 20px;
  position: relative;
}
.icon-box .tp-icon {
  background: #233859;
  padding: 5px 25px;
  color: #fff;
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 9;
}
.icon-box .tp-icon:before {
  font-size: 70px;
}
.icon-box .icon-content {
  margin-left: 100px;
  margin-top: 0;
  color: #a7a6a6;
  font-size: 14px;
  border: 1px solid #f3f3f3;
  padding: 20px 10px 30px 35px;
  position: relative;
}
.icon-box .icon-content:before {
  content: '';
  position: absolute;
  border: 1px solid #f3f3f3;
  width: 85px;
  height: 101%;
  left: -27%;
  top: -1px;
  z-index: 0;
}
.icon-box .icon-content .icon-title {
  color: #323232;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 25px;
  position: relative;
}
.icon-box .icon-content .icon-title a {
  color: #323232;
  text-decoration: none;
}
.icon-box .icon-content .icon-title:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100px;
  background: #f0e246;
  top: 28px;
  left: -40px;
  z-index: 10;
}
.icon-box-2 {
  padding-bottom: 40px;
}
.icon-box-2 .tp-icon {
  padding: 10px 15px;
  background: #233859;
  color: #fff;
  border: 1px solid #233859;
  border-radius: 4px;
  float: left;
  transition: 0.5s;
}
.icon-box-2 .icon-content {
  padding-left: 70px;
  color: #a7a6a6;
  line-height: 2;
}
.icon-box-2 .icon-content .icon-title {
  font-size: 18px;
  margin-bottom: 15px;
}
.icon-box-2 .icon-content .icon-title a {
  color: #323232;
}
.icon-box-2:hover .tp-icon {
  background-color: #f0e246;
  border-color: #f0e246;
}
.icon-box-3 {
  color: #fff;
  line-height: 2;
}
.icon-box-3 .tp-icon {
  color: #fff;
  transition: all 500ms;
  display: block;
  line-height: 1;
}
.icon-box-3 .tp-icon:before {
  font-size: 60px;
}
.icon-box-3 .icon-content .icon-title {
  font-size: 18px;
  margin-top: 10px;
}
.icon-box-3 .icon-content .icon-title a {
  color: #fff;
  text-decoration: none;
}
.icon-box-3 .icon-content p {
  padding-bottom: 0;
}
.icon-box-3:hover .tp-icon {
  color: #f0e246;
}
.text-icon-box-4 {
  line-height: 2;
  color: #a7a6a6;
}
.icon-box-4 {
  border: 1px solid #f3f3f3;
  padding: 10px 20px 20px 20px;
  position: relative;
  transition: all 700ms;
}
.icon-box-4 .icon-title a {
  color: #323232;
}
.icon-box-4 .tp-icon {
  float: left;
  padding-top: 35px;
  color: #000;
}
.icon-box-4 .tp-icon:before {
  font-size: 35px;
}
.icon-box-4 .icon-content {
  padding-left: 55px;
}
.icon-box-4 .icon-content .icon-title {
  font-size: 18px;
  color: #323232;
}
.icon-box-4 .icon-content .icon-link {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  padding: 8px 20px;
}
.icon-box-4 .icon-content p {
  color: #a7a6a6;
  line-height: 2;
}
.icon-box-4:hover {
  background: #233859;
}
.icon-box-4:hover .icon-title a {
  color: #fff;
  text-decoration: none;
}
.icon-box-4:hover .tp-icon {
  color: #f0e246;
}
.icon-box-4:hover .icon-content {
  color: #fff;
}
.icon-box-4:hover .icon-content .icon-link {
  opacity: 1;
  background: #f0e246;
}
.icon-box-4:hover .icon-content p {
  color: #fff;
  line-height: 2;
}
.icon-box-5 .tp-icon {
  color: #323232;
  transition: all 500ms;
}
.icon-box-5 .tp-icon:before {
  font-size: 60px;
}
.icon-box-5 .icon-content .icon-title {
  font-size: 18px;
  margin-top: 10px;
}
.icon-box-5 .icon-content .icon-title a {
  color: #323232;
  text-decoration: none;
}
.icon-box-5 .icon-content p {
  color: #a7a6a6;
  line-height: 2;
}
.icon-box-5:hover .tp-icon {
  color: #233859;
}
.icon-box-5:hover .icon-content .icon-title a {
  color: #233859;
}
.vc_toggle {
  padding-bottom: 60px !important;
  padding-left: 35px !important;
  position: relative;
  margin: 0 !important;
}
.vc_toggle:before {
  position: absolute;
  content: '';
  border-left: 1px dashed #ccc;
  width: 1px;
  height: 100%;
  z-index: 0;
  top: -15px;
  left: 28px;
}
.vc_toggle:last-child:before {
  display: none;
}
.vc_toggle .vc_toggle_title {
  position: relative;
}
.vc_toggle .vc_toggle_title h4 {
  color: #323232;
}
.vc_toggle .vc_toggle_title:before {
  content: "\f059";
  position: absolute;
  font-family: FontAwesome;
  top: -15px;
  left: -30px;
  border: 1px solid #ccc;
  padding: 10px 15px;
  font-size: 18px;
  transition: all 500ms;
  z-index: 9999;
  background: #fcfcfc;
  border-radius: 3px;
  color: #323232;
}
.vc_toggle .vc_toggle_title:hover:before {
  background: #233859;
  color: #f0e246;
}
.vc_toggle .vc_toggle_title .vc_toggle_icon {
  display: none;
}
.vc_toggle .vc_toggle_content {
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 2;
  color: #a7a6a6;
}
.vc_toggle_active .vc_toggle_title:before {
  background: #233859;
  color: #f0e246;
  border-color: transparent;
}
.tp-counter {
  padding-left: 20px;
}
.tp-counter .counter {
  position: relative;
}
.tp-counter .counter .ct-content {
  padding: 10px 0 20px 10px;
  margin-top: -25px;
  float: left;
}
.tp-counter .counter .ct-content h3 {
  font-size: 36px;
  color: #233859;
  margin-bottom: 0;
}
.tp-counter .counter .ct-content p {
  font-size: 14px;
  color: #323232;
  font-weight: 600;
}
.tp-counter .counter .tp-icon {
  color: #fcf9da;
}
.tp-counter .counter .tp-icon:before {
  font-size: 65px;
  padding-left: 20px;
  position: absolute;
  bottom: -92px;
}
.bg-secondary-color {
  background-color: #f0e246;
}
.bg-primary-color {
  background-color: #233859;
}
.column-counter {
  border-right: 1px solid #eede2e;
}
.column-counter:first-child {
  border-left: 1px solid #eede2e;
}
.tp-team-list {
  padding-top: 35px;
}
.tp-team-list .team .team-content {
  padding-left: 20px;
}
.tp-team-list .team .team-content h5 {
  color: #323232;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  position: relative;
}
.tp-team-list .team .team-content h5:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 50px;
  background-color: #f0e246;
  top: 0;
  left: -20px;
  opacity: 0.7;
}
.tp-team-list .team .team-content span {
  color: #233859;
  font-weight: 600;
  font-style: italic;
}
.tp-team-list .team .team-content p {
  margin-top: 20px;
  color: #a7a6a6;
  position: relative;
  line-height: 2;
}
.tp-team-list .team .team-content p:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 120%;
  background-color: #f6f6f6;
  top: -25px;
  left: -20px;
}
.tp-team-list .team .social {
  padding-top: 15px;
}
.tp-team-list .team .social a {
  padding-right: 15px;
  color: #323232;
}
.tp-team-list .team .social a:hover {
  color: #f0e246;
}
.vc_toggle_default .vc_toggle_icon::after,
.vc_toggle_default .vc_toggle_icon::before {
  display: none !important;
  border: none;
}
.contact-box {
  padding-bottom: 40px;
}
.contact-box .contact-box-title {
  color: #323232;
  font-size: 18px;
}
.contact-box .contact-box-content {
  margin-top: 15px;
  margin-bottom: 0;
  padding-top: 30px;
  padding-left: 20px;
  border: solid 1px #f2f2f2;
}
.contact-box .contact-box-content p {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
.contact-box .contact-box-content p span {
  display: block;
  padding-left: 30px;
}
.contact-box .contact-box-content a {
  color: #c1c1c1;
}
.contact-box .contact-box-content a:hover {
  text-decoration: none;
}
.contact-box .contact-box-content i {
  font-size: 18px;
  color: #3e4d68;
  float: left;
}
.vc_tta-container {
  margin-bottom: 0 !important;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-tabs-container ul.vc_tta-tabs-list {
  margin: 0;
  padding-top: 30px;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-tabs-container ul.vc_tta-tabs-list li {
  border: 1px solid #f4f2f2;
  margin: 0;
  position: relative;
  transition: all 500ms;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-tabs-container ul.vc_tta-tabs-list li > a {
  color: #323232;
  font-size: 18px;
  background: #fcfcfc;
  border: none;
  font-weight: 700;
  padding: 14px;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_active {
  border-right: 1px solid #fff;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_active > a {
  color: #fff;
  background: #233859;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-tabs-container ul.vc_tta-tabs-list li:hover {
  border-right: 1px solid #fff;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-tabs-container ul.vc_tta-tabs-list li:hover > a {
  color: #fff;
  background: #233859;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-tabs-container ul.vc_tta-tabs-list li:after {
  position: absolute;
  content: '';
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid transparent;
  border-right: 7px solid #fff;
  top: 21px;
  right: 0;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels {
  border: none !important;
  background: #fff !important;
  margin-left: 30px;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body {
  padding: 15px 0;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper {
  color: #a7a6a6;
  font-size: 14px;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper h4 {
  color: #323232;
  font-size: 18px;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper p {
  margin-top: 20px;
  line-height: 2;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper .dropcap {
  background: #233859;
  color: #fff;
  float: left;
  margin: 5px 15px 0 0;
  padding: 0 20px;
  font-size: 40px;
  font-weight: 700;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper ul {
  padding: 5px 0;
  list-style-type: none;
  float: left;
  margin-bottom: 0;
  padding-bottom: 0;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper ul li {
  padding-right: 20px;
  padding-bottom: 10px;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper ul li .fa {
  padding-right: 10px;
  color: #233859;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper .clearboth {
  clear: both;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper .btn {
  background-color: #233859;
  color: #fff;
  border-color: #233859;
  border-radius: 4px;
  text-transform: none;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 60px 15px 20px;
  font-style: normal;
  text-align: center;
  font-family: 'Roboto', "Times New Roman", Times, serif;
  transition: 0.5s;
  position: relative;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper .btn:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #0d1522;
  top: 0;
  right: 46px;
  opacity: 0.3;
  transition: all 500ms;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper .btn:after {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  color: #fff;
  top: 17px;
  right: 20px;
  transition: 0.5s;
  line-height: 1;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper .btn:hover {
  background-color: #f0e246;
  border-color: #f0e246;
  color: #233859;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper .btn:hover:before {
  background-color: #d8c812;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper .btn:hover:after {
  color: #233859;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper .btn:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #0d1522;
  top: 0;
  right: 46px;
  opacity: 0.3;
  transition: all 500ms;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper .btn:after {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  color: #fff;
  top: 17px;
  right: 20px;
  transition: 0.5s;
  line-height: 1;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper .btn:hover {
  background-color: #f0e246;
  border-color: #f0e246;
  color: #233859;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper .btn:hover:before {
  background-color: #d8c812;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body .wpb_wrapper .btn:hover:after {
  color: #233859;
}
.vc_tta-container .vc_tta-tabs-position-left .vc_tta.vc_general .vc_tta-tab.vc_active > a::after,
.vc_tta-container .vc_tta-tabs-position-left .vc_tta.vc_general .vc_tta-tab.vc_active > a::before {
  display: none !important;
}
.wpcf7-form input {
  line-height: 3;
  border: 1px solid #f8f6f6;
  width: 100%;
  margin-bottom: 20px;
  font-size: 14px;
}
.wpcf7-form input[placeholder] {
  color: #a7a6a6;
  padding-left: 15px;
  background: #fcfcfc;
}
.wpcf7-form input[type=submit] {
  background: #233859;
  color: #fff;
  font-weight: 600;
  transition: all 500ms;
  border: 1px solid transparent;
  border-radius: 4px;
}
.wpcf7-form input[type=submit]:hover {
  background: #f0e246;
  color: #233859;
}
.wpcf7-form textarea {
  width: 100%;
  border: 1px solid #f8f6f6;
  font-size: 14px;
  height: 150px;
  margin-bottom: 10px;
}
.wpcf7-form textarea[placeholder] {
  color: #a7a6a6;
  padding-left: 15px;
  background: #fcfcfc;
  padding-top: 10px;
}
.wpcf7-form select {
  font-size: 14px;
  width: 100%;
  border: 1px solid #f8f6f6;
  color: #a7a6a6;
  padding-left: 15px;
  background: #fcfcfc;
  height: 46px;
}
.wpcf7-form .subject {
  padding-right: 0;
}
.wpcf7-form .form-select {
  padding-left: 0;
}
.wpcf7-form .btn-form {
  padding-left: 15px;
  width: 160px;
}
.wpcf7-form .form-select-1,
.wpcf7-form .last-name {
  padding-right: 0;
}
.wpcf7-form .form-email,
.wpcf7-form .first-name {
  padding-left: 0;
}
.wpcf7-form .btn {
  padding: 15px 20px 15px 20px;
}
.wpcf7-form .btn:after,
.wpcf7-form .btn:before {
  display: none;
}
.wpcf7-form p {
  margin-bottom: 0;
}
.tp-services .service-item {
  padding-bottom: 40px;
}
.tp-services .service-item h2 {
  font-size: 24px;
}
.tp-services .service-item h2 a {
  text-decoration: none;
  color: #323232;
}
.tp-services .service-item h2 a:hover {
  color: #233859;
}
.tp-services .service-item p {
  color: #a7a6a6;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 2;
}
.tp-services.service-extended .service-item h2 {
  font-size: 18px;
}
.owl-controls .owl-buttons .owl-prev {
  top: -30px;
  left: 87%;
  width: 40px;
  height: 40px;
  border: 1px solid #f8f6f6;
  background: #fcfcfc;
  border-radius: 4px;
}
.owl-controls .owl-buttons .owl-prev span {
  display: block;
  padding-top: 12px;
  padding-right: 1px;
  color: #233859;
  font-size: 18px;
  opacity: 0.5;
  transition: all 500ms;
}
.owl-controls .owl-buttons .owl-prev:hover {
  background: #fcfcfc;
}
.owl-controls .owl-buttons .owl-prev:hover span {
  opacity: 1;
}
.owl-controls .owl-buttons .owl-next {
  top: -30px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: #fcfcfc;
  border: 1px solid #f8f6f6;
  border-radius: 4px;
}
.owl-controls .owl-buttons .owl-next span {
  display: block;
  padding-top: 12px;
  padding-left: 3px;
  color: #233859;
  font-size: 18px;
  opacity: 0.5;
  transition: all 500ms;
}
.owl-controls .owl-buttons .owl-next:hover {
  background: #fcfcfc;
}
.owl-controls .owl-buttons .owl-next:hover span {
  opacity: 1;
}
.tp-blog {
  padding-top: 50px;
}
.tp-blog .tp-owl-carousel .blog-wrapper {
  padding: 0;
  border-bottom: none;
  width: 100%;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header {
  padding: 0;
  margin-top: 25px;
  position: relative;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header:before {
  display: block;
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background-color: #f0e246;
  top: 5px;
  left: 0;
  opacity: 0.7;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header .entry-title {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 5px;
  padding-left: 20px;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header .entry-title a {
  color: #323232;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header .post-meta {
  padding-left: 10px;
  padding-bottom: 10px;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header .post-meta .meta,
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header .post-meta .entry-date {
  padding-right: 10px;
  padding-left: 10px;
  color: #c1c1c1;
  position: relative;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header .post-meta .meta:after,
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header .post-meta .entry-date:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 13px;
  background: #c1c1c1;
  margin-left: 8px;
  top: 3px;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header .post-meta .meta a,
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header .post-meta .entry-date a {
  color: #c1c1c1;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header .post-meta .meta:last-child:after,
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header .post-meta .entry-date:last-child:after {
  display: none;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header .post-meta .meta .fa,
.tp-blog .tp-owl-carousel .blog-wrapper .entry-header .post-meta .entry-date .fa {
  padding-right: 5px;
  color: #233859;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-desc {
  position: relative;
  padding-left: 20px;
  color: #a7a6a6;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-desc h3 {
  color: #323232;
  font-size: 20px;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-desc:before {
  display: block;
  content: "";
  position: absolute;
  width: 3px;
  height: 90px;
  background-color: #f6f6f6;
  top: -19px;
  left: 0;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-desc p {
  line-height: 2;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-footer {
  padding-top: 15px;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-footer .btn-secondary {
  margin-left: 20px;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-footer .btn-primary {
  margin-left: 20px;
}
.tp-blog .tp-owl-carousel .blog-wrapper .entry-footer .social-links {
  display: none;
}
.tp-blog .owl-controls .owl-buttons .owl-prev {
  top: -85px;
}
.tp-blog .owl-controls .owl-buttons .owl-next {
  top: -85px;
}
.tp-blog-2 {
  padding-top: 50px;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel {
  width: 100%;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .blog-wrapper {
  padding-bottom: 0;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .category-links a {
  font-weight: 600;
  font-size: 18px;
  padding-right: 5px;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .category-links a:after {
  content: ' ';
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .category-links a:last-child span {
  display: none;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-header {
  margin-top: 5px;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-header:before {
  display: none;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-header .entry-title {
  padding-left: 0;
  font-size: 30px;
  margin-bottom: 20px;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-header .entry-title a {
  color: #323232;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-desc {
  padding-left: 0;
  color: #a7a6a6;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-desc:before {
  display: none;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-desc p {
  line-height: 2;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-footer {
  padding-top: 35px;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-footer a {
  color: #323232;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-footer .social-links {
  float: left;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-footer .social-links a {
  padding-right: 15px;
  transition: all 500ms;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-footer .social-links a .fa {
  font-size: 14px;
  transition: all 500ms;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-footer .social-links a:hover .fa {
  color: #f0e246;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-footer .btn-link {
  float: right;
  padding-right: 30px;
  color: #323232;
  font-weight: 800;
  position: relative;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-footer .btn-link:after {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  color: #323232;
  top: 1px;
  right: 15px;
  transition: all 500ms;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-footer .btn-link:hover {
  text-decoration: none;
  color: #f0e246;
}
.tp-blog-2 .owl-wrapper-outer .tp-owl-carousel .entry-footer .btn-link:hover:after {
  color: #f0e246;
}
.tp-blog-2 .owl-controls .owl-buttons .owl-prev {
  left: inherit;
  right: 50px;
  top: -80px;
}
.tp-blog-2 .owl-controls .owl-buttons .owl-next {
  right: 12px;
  top: -80px;
}
.wpb_content_element {
  margin-bottom: 0 !important;
}
.wpb_content_element .hot-line {
  color: #f0e246;
  font-size: 28px;
  font-weight: 600;
}
.wpb_content_element .address h4 {
  color: #233859;
  font-size: 18px;
  margin-bottom: 15px;
}
.wpb_content_element .address h4 .fa {
  padding-right: 15px;
}
.wpb_content_element .address p {
  color: #a7a6a6;
  margin-left: 30px;
}
.wpb_content_element .contact-us h4 {
  color: #233859;
  font-size: 18px;
  margin-bottom: 15px;
}
.wpb_content_element .contact-us h4 .fa {
  padding-right: 15px;
}
.wpb_content_element .contact-us p {
  color: #a7a6a6;
  margin-left: 30px;
}
.tabs-widget .tabs .tabs-nav li {
  padding-left: 0;
  padding-right: 5px;
}
.tabs-widget .tabs .tabs-nav li a {
  background: #233859;
  color: #f0e246;
  padding-left: 0;
}
.tabs-widget .tabs .tabs-nav li a:before {
  display: none;
}
.tabs-widget .tabs .tab-comments .comment {
  padding-left: 10px;
}
.tp-client {
  border: 1px solid #f5f5f5;
  text-align: center;
  margin-bottom: 25px;
  padding: 15px 0;
  position: relative;
  transition: all 500ms;
}
.tp-client p {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 18px 10px;
  opacity: 0;
  transition: all 700ms;
  cursor: default;
}
.tp-client:hover p {
  opacity: 1;
  background: #fff;
}
.about-extended-content {
  padding-top: 25px;
}
.about-extended-content h4 {
  color: #323232;
  margin-bottom: 20px;
}
.about-extended-content ul {
  padding: 0;
  list-style: none;
}
.about-extended-content ul li {
  color: #a7a6a6;
  line-height: 25px;
  padding-bottom: 10px;
}
.about-extended-content ul li .fa {
  color: #233859;
  padding-right: 15px;
}
.location .location-title {
  background: #233859;
  color: #fff;
  text-align: center;
  padding: 5px 0;
}
.location .location-content ul {
  list-style: none;
  padding: 0;
  padding-top: 10px;
}
.location .location-content ul li {
  padding-bottom: 20px;
}
.location .location-content ul li a {
  color: #a7a6a6;
  font-weight: 500;
}
.location .location-content ul li a:hover {
  color: #233859;
  text-decoration: underline;
}
.location .location-content ul li img {
  padding-right: 20px;
}
.contact-form {
  padding-top: 40px;
}
.contact-form .wpcf7-submit {
  margin-bottom: 0;
}
.contact-form-2 {
  padding: 20px 20px 0 20px;
  background: #fff;
}
.contact-form-3 input[placeholder] {
  background: #fff;
}
.contact-form-3 textarea[placeholder] {
  background: #fff;
}
.contact-form-3 select {
  background: #fff;
}
.contact-form-3 .wpcf7-submit {
  width: 15%;
  height: 55px;
}
.contact-form-4 {
  background: #fcfcfc;
  padding: 20px;
  border: 1px solid #f8f6f6;
}
.contact-form-4 .contact-form-4-title {
  width: 80%;
  font-weight: 600;
  padding-bottom: 30px;
  color: #323232;
}
.contact-form-4 input[placeholder] {
  background: #fff;
}
.contact-form-4 .button-link input {
  width: 50%;
  margin-bottom: 0;
}
.tp-service-box {
  position: relative;
  transform: translateY(-60px);
}
.tp-service-box .service-box {
  text-align: center;
  border: 1px solid #f2f2f2;
  background: #fff;
  box-shadow: 2px 2px 5px 0 #f5f5f5;
}
.tp-service-box .service-box .service-title a {
  text-transform: uppercase;
  color: #233859;
}
.tp-service-box .service-box .service-title a:hover {
  color: #f0e246;
}
.tp-service-box .service-box .tp-service-icon {
  color: #233859;
}
.tp-service-box .service-box .tp-service-icon:before {
  font-size: 55px;
}
.tp-service-box .service-box-detail {
  position: absolute;
  bottom: -3px;
  -webkit-transform: scaleX(0);
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 300ms;
  left: 0;
  opacity: 0;
  z-index: -999;
  box-shadow: 0 2px 3px 0 #f5f5f5;
  background: #fff;
  transition: all 700ms;
}
.tp-service-box .service-box-detail .tp-service-icon {
  color: #e9ebee;
  padding-right: 20px;
  float: right;
}
.tp-service-box .service-box-detail .tp-service-icon:before {
  font-size: 45px;
}
.tp-service-box .service-box-detail .service-title {
  padding-top: 15px;
  padding-left: 20px;
}
.tp-service-box .service-box-detail .service-title a {
  text-transform: uppercase;
  color: #233859;
}
.tp-service-box .service-box-detail .service-title a:hover {
  color: #f0e246;
}
.tp-service-box .service-box-detail .tp-service-content {
  padding: 1px 5px 20px 20px;
}
.tp-service-box .service-box-detail .tp-service-content p {
  margin-bottom: 20px;
  line-height: 2;
}
.tp-service-box .service-box-detail .tp-service-content a {
  font-weight: 800;
  border-left: 1px solid #233859;
  padding-left: 5px;
  margin-left: 165px;
  color: #233859;
}
.tp-service-box .service-box-detail .tp-service-content a:hover {
  color: #f0e246;
  border-left: 1px solid #f0e246;
}
.tp-service-box:hover .service-box-detail {
  opacity: 1;
  z-index: 9999;
  -webkit-transform: scale(1);
}
.tp-support {
  position: relative;
  background-color: #f0e246;
}
.tp-support:before {
  content: '';
  height: 141px;
  width: 22%;
  bottom: 0;
  left: 0;
  position: absolute;
  background: #f0e246;
  display: block;
}
.tp-support:after {
  content: '';
  height: 100%;
  width: 20%;
  top: 0;
  right: 0;
  position: absolute;
  background: #1c304e;
  display: block;
}
.tp-support .container {
  z-index: 1;
  position: relative;
}
.tp-support .tp-support-title {
  background: #f0e246;
  position: relative;
}
.tp-support .tp-support-title .tp-support-icon {
  color: #233859;
  font-size: 45px;
  padding-top: 32px;
  float: left;
}
.tp-support .tp-support-title h2 {
  padding-left: 65px;
  color: #233859;
  font-size: 29px;
}
.tp-support .tp-support-title:after {
  content: '';
  position: absolute;
  top: -21px;
  right: -141px;
  border-top: 71px solid transparent;
  border-bottom: 71px solid #f0e246;
  border-right: 71px solid transparent;
  border-left: 71px solid #f0e246;
  z-index: 9;
}
.tp-support .tp-support-content {
  color: #fff;
  background: #1c304e;
  padding: 36px 15px 37px 180px;
  font-size: 24px;
  font-weight: 600;
  position: relative;
}
.tp-support .tp-support-content span {
  display: inline-block;
  color: #f0e246;
  font-size: 30px;
}
.tp-support .tp-support-content .tp-support-link {
  float: right;
  margin-top: 15px;
}
.tp-support .tp-support-content .tp-support-link a {
  font-weight: 800;
  color: #233859;
  padding: 10px 20px;
  background: #fff;
  font-size: 14px;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-top: 5px;
  transition: all 500ms;
}
.tp-support .tp-support-content .tp-support-link a:hover {
  background: #f0e246;
  border: 1px solid #f0e246;
}
.tp-support .tp-support-content:before {
  content: '';
  position: absolute;
  height: 25px;
  width: 300px;
  top: -20px;
  left: -300px;
  background: #f0e246;
  z-index: 5;
}
.tp-achivement {
  padding-top: 10px;
}
.tp-achivement ul {
  padding: 0;
  margin: 0;
}
.tp-achivement ul li {
  padding-left: 0 !important;
  line-height: 25px;
  padding-bottom: 5px;
  list-style: n;
}
.tp-achivement ul li .fa {
  color: #233859;
  padding-right: 10px;
}
.tp-history {
  padding-top: 10px;
}
.tp-history p {
  line-height: 25px;
}
.text-about-basic {
  color: #a7a6a6;
  padding-bottom: 20px;
  line-height: 25px;
  line-height: 2;
}
.text-about-extended {
  padding-top: 50px;
}
.text-about-extended p {
  line-height: 2;
}
.wpb_revslider_element .tp_layer_2 {
  font-style: italic;
}
/*.tp-bgimg {
    position: relative;
    &:before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(35, 56, 89, 0.4);
    }
}*/
.tp-testimonials {
  padding-top: 30px;
}
.tp-testimonials .testi-image {
  float: left;
}
.tp-testimonials .testi-image img {
  border-radius: 50%;
}
.tp-testimonials .testi-content {
  padding-left: 150px;
}
.tp-testimonials .testi-content .testi-name {
  padding-bottom: 10px;
}
.tp-testimonials .testi-content .testi-name h3 {
  font-size: 18px;
  color: #323232;
}
.tp-testimonials .testi-content .testi-name span {
  display: inline-block;
  color: #233859;
}
.tp-testimonials .testi-content .testi-star {
  padding-bottom: 10px;
}
.tp-testimonials .testi-content .testi-star .fa {
  padding-right: 10px;
  color: #233859;
}
.tp-testimonials .testi-content .testi-des {
  line-height: 2;
  color: #a7a6a6;
}
.tp-testimonials .testi-content .testi-des h4 {
  font-size: 14px;
  margin-top: 0;
  color: #323232;
}
.tp-testimonials .testi-content .testi-des .signature {
  padding-top: 30px;
}
.tp-testimonials .testimonials_area {
  position: relative;
}
.tp-testimonials .testimonials_area .owl-pagination {
  position: absolute;
  top: 150px;
  left: 10px;
}
.tp-testimonials .testimonials_area .owl-pagination .owl-page span {
  border: 1px solid #a7a6a6;
  padding: 5px;
  transition: all 700ms;
}
.tp-testimonials .testimonials_area .owl-pagination .owl-page span:hover {
  background: #233859;
}
.tp-testimonials .testimonials_area .owl-pagination .owl-page.active span {
  background: #233859;
  border: 1px solid transparent;
}
.tp-testimonials-2 {
  text-align: center;
  padding-top: 30px;
}
.tp-testimonials-2 .testi-content {
  color: #a7a6a6;
}
.tp-testimonials-2 .testi-content > .fa {
  font-size: 24px;
}
.tp-testimonials-2 .testi-content .testi-des {
  padding: 10px 20px;
  line-height: 2;
}
.tp-testimonials-2 .testi-content .testi-star {
  padding-bottom: 15px;
}
.tp-testimonials-2 .testi-content .testi-star .fa {
  padding-right: 10px;
  color: #f0e246;
}
.tp-testimonials-2 .testi-image img {
  border-radius: 50%;
}
.tp-testimonials-2 .testi-name h3 {
  font-size: 18px;
}
.tp-testimonials-2 .testi-name span {
  display: inline-block;
  color: #233859;
}
.tp-testimonials-2 .owl-pagination {
  padding-top: 50px;
}
.tp-testimonials-2 .owl-pagination .owl-page span {
  border: 1px solid #a7a6a6;
  padding: 5px;
  transition: all 700ms;
}
.tp-testimonials-2 .owl-pagination .owl-page span:hover {
  background: #f0e246;
}
.tp-testimonials-2 .owl-pagination .owl-page.active span {
  background: #f0e246;
  border: 1px solid transparent;
}
.tp-testimonials-2.dark-skin .testi-content {
  color: #fff;
}
.tp-testimonials-2.dark-skin .testi-content > .fa {
  font-size: 24px;
  color: #f0e246;
}
.tp-testimonials-2.dark-skin .testi-content .testi-des {
  padding: 10px 20px;
  line-height: 2;
}
.tp-testimonials-2.dark-skin .testi-content .testi-star {
  padding-bottom: 15px;
}
.tp-testimonials-2.dark-skin .testi-content .testi-star .fa {
  padding-right: 10px;
  color: #f0e246;
}
.tp-testimonials-2.dark-skin .testi-image img {
  border-radius: 50%;
}
.tp-testimonials-2.dark-skin .testi-name h3 {
  font-size: 18px;
  color: #fff;
}
.tp-testimonials-2.dark-skin .testi-name span {
  display: inline-block;
  color: #f0e246;
}
.tp-testimonials-2.dark-skin .owl-pagination {
  padding-top: 50px;
}
.tp-testimonials-2.dark-skin .owl-pagination .owl-page span {
  border: 1px solid #fff;
  padding: 5px;
}
.tp-testimonials-2.dark-skin .owl-pagination .owl-page.active span {
  background: #f0e246;
  border: 1px solid transparent;
}
.tp-history {
  position: relative;
}
.tp-history:before {
  content: '';
  position: absolute;
  top: 13px;
  left: 0;
  padding: 6px;
  border: 1px solid #f2f2f2;
  border-radius: 50%;
  background: #fcfcfc;
  z-index: 99;
  transition: all 600ms;
}
.tp-history:after {
  content: '';
  position: absolute;
  top: 12px;
  left: 7px;
  width: 1px;
  height: 100%;
  background: #f2f2f2;
  z-index: 1;
}
.tp-history .tp-history-date {
  padding-left: 37px;
  color: #233859;
  font-style: italic;
  font-weight: 600;
}
.tp-history .tp-history-title .tp-history-link {
  font-size: 18px;
  color: #323232;
  font-weight: 700;
}
.tp-history .tp-history-content {
  padding-left: 20px;
}
.tp-history .tp-history-content p {
  line-height: 2;
}
.tp-history:hover:before {
  background: #233859;
  border-color: #233859;
}
.history p {
  line-height: 2;
}
.single-service .aligncenter {
  display: none;
  margin-top: 0;
}
.single-service .aligncenter img {
  width: 100%;
  margin-top: 0;
}
.single-service .content-area {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 0;
}
.single-service .site-content {
  padding: 0;
}
.single-service .site-content .widgettitle {
  font-size: 24px;
}
.single-service .site-content .service-details-content {
  padding-top: 30px;
}
.single-service .site-content .service-details-content p {
  line-height: 2;
}
.single-service .site-content ul {
  padding-left: 0;
}
.single-service .site-content ul li {
  list-style: none;
  padding-bottom: 10px;
  color: #a7a6a6;
}
.single-service .site-content ul li .fa {
  color: #233859;
  padding-right: 10px;
}
.single-service .site-content .tp-icon-services {
  text-align: center;
}
.single-service .site-content .tp-icon-services .tp-icon:before {
  font-size: 40px;
  color: #233859;
  border: 1px solid #f2f2f2;
  border-radius: 50%;
  background: #fcfcfc;
  padding: 20px;
}
.single-service .site-content .tp-icon-services .tp-icon-services-title {
  padding-top: 20px;
}
.single-service .service-sidebar {
  padding-top: 80px;
}
.single-service .service-sidebar .contact-details li {
  padding-bottom: 20px;
  padding-left: 0;
  color: #323232;
}
.single-service .service-sidebar .contact-details li a {
  color: #323232;
  padding-left: 0;
}
.single-service .service-sidebar .contact-details li a:hover {
  color: #f0e246;
}
.single-service .service-sidebar .contact-details li i {
  padding-bottom: 20px;
  float: left;
}
.single-service .service-sidebar .contact-details li .fa {
  padding-right: 10px;
  color: #233859;
  padding-top: 3px;
}
.single-service .service-sidebar .widget_text .widget-title {
  padding: 0;
}
.single-service .service-sidebar .widget_text .sv-download,
.single-service .service-sidebar .widget_text .tp-download {
  padding: 10px 0 10px 20px;
  background: #f5f5f5;
  margin-bottom: 10px;
}
.single-service .service-sidebar .widget_text .sv-download a,
.single-service .service-sidebar .widget_text .tp-download a {
  color: #323232;
  font-weight: 600;
}
.single-service .service-sidebar .widget_text .sv-download .fa,
.single-service .service-sidebar .widget_text .tp-download .fa {
  padding-right: 10px;
  color: #233859;
}
.single-service .service-sidebar .menu-services-menu-container ul li {
  border: 1px solid #f8f6f6;
  background: #fcfcfc;
  padding: 15px 0 15px 20px;
  margin-bottom: 2px;
  position: relative;
}
.single-service .service-sidebar .menu-services-menu-container ul li a {
  color: #323232;
  font-size: 18px;
  font-weight: 700;
  padding-left: 20px;
}
.single-service .service-sidebar .menu-services-menu-container ul li a:before {
  display: none;
}
.single-service .service-sidebar .menu-services-menu-container ul li:after {
  content: '';
  position: absolute;
  top: 40%;
  right: 0;
  border-bottom: 7px solid transparent;
  border-top: 7px solid transparent;
  border-left: 7px solid transparent;
  border-right: 7px solid #fff;
  opacity: 0;
}
.single-service .service-sidebar .menu-services-menu-container ul li:hover {
  background: #233859;
  border-right: transparent;
}
.single-service .service-sidebar .menu-services-menu-container ul li:hover a {
  color: #fff;
}
.single-service .service-sidebar .menu-services-menu-container ul li:hover:after {
  opacity: 1;
}
.single-service .service-sidebar .menu-services-menu-container ul li.current-menu-item {
  background: #233859;
  border-right: transparent;
}
.single-service .service-sidebar .menu-services-menu-container ul li.current-menu-item a {
  color: #fff;
}
.single-service .service-sidebar .menu-services-menu-container ul li.current-menu-item:after {
  opacity: 1;
}
.single-service .service-sidebar .menu-services-menu-container ul li.current-menu-item:before {
  color: #fff;
}
.single-service .service-info p {
  line-height: 2;
}
.service-wrapper {
  padding-bottom: 40px;
}
.service-wrapper:nth-child(3n+1) {
  clear: both;
}
.service-wrapper .entry-header .entry-title {
  line-height: 18px;
}
.service-wrapper .entry-header .entry-title a {
  font-size: 18px;
  color: #323232;
}
.service-wrapper .entry-desc {
  color: #a7a6a6;
}
.service-wrapper .entry-footer {
  padding-top: 30px;
}
.service-sidebar .contact-details li {
  padding-bottom: 20px;
  padding-left: 0;
  color: #323232;
}
.service-sidebar .contact-details li a {
  color: #323232;
  padding-left: 0;
}
.service-sidebar .contact-details li a:hover {
  color: #f0e246;
}
.service-sidebar .contact-details li i {
  padding-bottom: 20px;
  float: left;
}
.service-sidebar .contact-details li .fa {
  padding-right: 10px;
  color: #233859;
  padding-top: 3px;
}
.service-sidebar .widget_text .widget-title {
  padding: 0;
}
.service-sidebar .widget_text .sv-download,
.service-sidebar .widget_text .tp-download {
  padding: 10px 0 10px 20px;
  background: #f5f5f5;
  margin-bottom: 10px;
}
.service-sidebar .widget_text .sv-download a,
.service-sidebar .widget_text .tp-download a {
  color: #323232;
  font-weight: 600;
}
.service-sidebar .widget_text .sv-download .fa,
.service-sidebar .widget_text .tp-download .fa {
  padding-right: 10px;
  color: #233859;
}
.service-sidebar .menu-services-menu-container ul li {
  border: 1px solid #f8f6f6;
  background: #fcfcfc;
  padding: 15px 0 15px 20px;
  margin-bottom: 2px;
  position: relative;
}
.service-sidebar .menu-services-menu-container ul li a {
  color: #323232;
  font-size: 18px;
  font-weight: 700;
  padding-left: 20px;
}
.service-sidebar .menu-services-menu-container ul li a:before {
  display: none;
}
.service-sidebar .menu-services-menu-container ul li:after {
  content: '';
  position: absolute;
  top: 40%;
  right: 0;
  border-bottom: 7px solid transparent;
  border-top: 7px solid transparent;
  border-left: 7px solid transparent;
  border-right: 7px solid #fff;
  opacity: 0;
}
.service-sidebar .menu-services-menu-container ul li.flat-icon-2:before {
  color: #323232;
  transition: all 500ms;
}
.service-sidebar .menu-services-menu-container ul li:hover {
  background: #233859;
  border-right: transparent;
}
.service-sidebar .menu-services-menu-container ul li:hover a {
  color: #fff;
}
.service-sidebar .menu-services-menu-container ul li:hover:after {
  opacity: 1;
}
.service-sidebar .menu-services-menu-container ul li:hover.flat-icon-2:before {
  color: #fff;
}
.service-sidebar .menu-services-menu-container ul li.current-menu-item {
  background: #233859;
  border-right: transparent;
}
.service-sidebar .menu-services-menu-container ul li.current-menu-item a {
  color: #fff;
}
.service-sidebar .menu-services-menu-container ul li.current-menu-item:after {
  opacity: 1;
}
.service-sidebar .menu-services-menu-container ul li.current-menu-item:before {
  color: #fff;
}
.tax-service_category .content-area {
  padding: 0;
}
.tp-shipment .shipment-detail .ts-heading {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background: #233859;
  padding: 15px 20px;
  margin: 0;
}
.tp-shipment .shipment-detail .ts-content {
  background: #fff;
  padding: 0 20px 40px 20px;
}
.tp-shipment .shipment-detail .ts-content .ts-desc {
  color: #a7a6a6;
  padding-bottom: 30px;
  padding-top: 30px;
}
.tp-shipment .shipment-detail .ts-content textarea {
  width: 100%;
  height: 150px;
  margin-bottom: 30px;
  padding-left: 10px;
  border-color: #f3f3f3;
}
.tp-shipment .shipment-detail .ts-content a {
  background: #233859;
  color: #fff;
  padding: 15px 25px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}
.tp-shipment .shipment-detail .ts-content a:hover {
  background: #f0e246;
  color: #233859;
  text-decoration: none;
}
.tp-shipment .reference .ts-heading {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background: #233859;
  padding: 15px 20px;
  margin: 0;
}
.tp-shipment .reference .ts-content {
  background: #fff;
  padding: 30px 20px 40px 20px;
}
.tp-shipment .reference .ts-content .ts-row {
  margin-bottom: 20px;
  color: #a7a6a6;
  clear: both;
  overflow: hidden;
}
.tp-shipment .reference .ts-content .ts-row .select-mode {
  float: left;
}
.tp-shipment .reference .ts-content .ts-row .select-mode,
.tp-shipment .reference .ts-content .ts-row .txt-reference,
.tp-shipment .reference .ts-content .ts-row .order-location {
  width: 47%;
  height: 40px;
  padding-left: 5px;
  border-color: #f3f3f3;
}
.tp-shipment .reference .ts-content .ts-row .order-months,
.tp-shipment .reference .ts-content .ts-row .order-days,
.tp-shipment .reference .ts-content .ts-row .order-years {
  height: 40px;
  width: 15%;
  border-color: #f3f3f3;
  float: right;
  margin-left: 6px;
}
.tp-shipment .reference .ts-content .ts-row .txt-reference {
  float: right;
}
.tp-shipment .reference .ts-content .ts-row .order-location {
  float: right;
}
.tp-shipment .reference .ts-content .ts-row.ts-and {
  padding-bottom: 20px;
}
.tp-shipment .reference .ts-content a {
  background: #233859;
  color: #fff;
  padding: 15px 25px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}
.tp-shipment .reference .ts-content a:hover {
  background: #f0e246;
  color: #233859;
  text-decoration: none;
}
.tp-shipment .shipment-detail,
.tp-shipment .reference {
  position: relative;
}
.tp-shipment .shipment-detail .shipment-icon,
.tp-shipment .reference .shipment-icon {
  display: none;
  position: absolute;
  left: 28%;
  bottom: 33px;
  font-size: 24px;
  color: #233859;
}
.tp-shipment .shipment-detail.loading .shipment-icon,
.tp-shipment .reference.loading .shipment-icon {
  display: block;
}
.tp-shipment .tp-truck-results {
  padding-top: 0;
}
.tp-shipment .tp-truck-results .ewd-otp-Default .ewd-otp-empty-display,
.tp-shipment .tp-truck-results .ewd-otp-Default .ewd-otp-full-display {
  display: none;
}
.tp-shipment .tp-truck-results .ewd-otp-statuses {
  position: relative;
}
.tp-shipment .tp-truck-results .ewd-otp-statuses .ewd-otp-display-status {
  height: 25px;
}
.tp-shipment .tp-truck-results .ewd-otp-statuses #ewd-otp-initial-status {
  text-align: left;
}
.tp-shipment .tp-truck-results .ewd-otp-statuses #ewd-otp-initial-status:before {
  content: '\e008';
  font-family: Flaticon2;
  position: absolute;
  top: -60px;
  left: 0;
  background: #eeeeee;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  padding: 0 10px;
  font-size: 36px;
  z-index: 999;
}
.tp-shipment .tp-truck-results .ewd-otp-statuses #ewd-otp-initial-status:after {
  content: '';
  position: absolute;
  top: -36px;
  left: 1px;
  height: 10px;
  width: 99%;
  background: #eeeeee;
}
.tp-shipment .tp-truck-results .ewd-otp-statuses #ewd-otp-initial-status:before,
.tp-shipment .tp-truck-results .ewd-otp-statuses #ewd-otp-initial-status:after {
  background: #233859;
}
.tp-shipment .tp-truck-results .ewd-otp-statuses #ewd-otp-current-status {
  text-align: center;
  left: 40%;
}
.tp-shipment .tp-truck-results .ewd-otp-statuses #ewd-otp-current-status:before {
  content: '\e008';
  font-family: Flaticon2;
  position: absolute;
  top: -60px;
  left: 0;
  background: #eeeeee;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  padding: 0 10px;
  font-size: 36px;
  z-index: 999;
}
.tp-shipment .tp-truck-results .ewd-otp-statuses #ewd-otp-current-status:before,
.tp-shipment .tp-truck-results .ewd-otp-statuses #ewd-otp-current-status:after {
  background: #233859;
}
.tp-shipment .tp-truck-results .ewd-otp-statuses #ewd-otp-ending-status {
  position: relative;
  text-align: right;
}
.tp-shipment .tp-truck-results .ewd-otp-statuses #ewd-otp-ending-status:before {
  content: '\e008';
  font-family: Flaticon2;
  position: absolute;
  top: -60px;
  right: 0;
  background: #eeeeee;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  padding: 0 10px;
  font-size: 36px;
}
.tp-shipment .tp-truck-results .ewd-otp-statuses #ewd-otp-ending-status:after {
  content: '';
  position: absolute;
  right: 55%;
  top: -36px;
  width: 25px;
  height: 10px;
  background: #eeeeee;
  z-index: 999;
}
.tp-shipment .tp-truck-results .ewd-otp-status-graphic {
  height: 100px;
}
.ewd-otp-tracking-results .pure-u-1 {
  padding-bottom: 20px;
}
.ewd-otp-tracking-results .pure-u-1 .ewd-otp-main-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
}
.ewd-otp-tracking-results .ewd-otp-Default .ewd-otp-empty-display,
.ewd-otp-tracking-results .ewd-otp-Default .ewd-otp-full-display {
  display: none;
}
.ewd-otp-tracking-results .ewd-otp-user-update {
  font-weight: 600;
  background: #f2f2f2;
  padding: 10px;
}
.ewd-otp-tracking-results .ewd-otp-statuses #ewd-otp-initial-status {
  position: relative;
  height: 22px;
}
.ewd-otp-tracking-results .ewd-otp-statuses #ewd-otp-initial-status:before {
  content: '\e008';
  font-family: Flaticon2;
  position: absolute;
  top: -60px;
  left: 20px;
  background: #eeeeee;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  padding: 0 10px;
  font-size: 36px;
  z-index: 999;
}
.ewd-otp-tracking-results .ewd-otp-statuses #ewd-otp-initial-status:after {
  content: '';
  position: absolute;
  top: -36px;
  left: 75px;
  height: 10px;
  width: 471px;
  background: #eeeeee;
}
.ewd-otp-tracking-results .ewd-otp-statuses #ewd-otp-initial-status:before,
.ewd-otp-tracking-results .ewd-otp-statuses #ewd-otp-initial-status:after {
  background: #233859;
}
.ewd-otp-tracking-results .ewd-otp-statuses #ewd-otp-current-status {
  position: relative;
  left: 40%;
  margin-left: 1px;
}
.ewd-otp-tracking-results .ewd-otp-statuses #ewd-otp-current-status:before {
  content: '\e008';
  position: absolute;
  top: -60px;
  left: 5px;
  background: #eeeeee;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  font-family: Flaticon2;
  padding: 0 10px;
  font-size: 36px;
  z-index: 999;
}
.ewd-otp-tracking-results .ewd-otp-statuses #ewd-otp-current-status:after {
  content: '';
  position: absolute;
  left: -22px;
  width: 520px;
  top: -37px;
  height: 10px;
  background: #eeeeee;
}
.ewd-otp-tracking-results .ewd-otp-statuses #ewd-otp-current-status:before,
.ewd-otp-tracking-results .ewd-otp-statuses #ewd-otp-current-status:after {
  background: #233859;
}
.ewd-otp-tracking-results .ewd-otp-statuses #ewd-otp-ending-status {
  position: relative;
}
.ewd-otp-tracking-results .ewd-otp-statuses #ewd-otp-ending-status:before {
  content: '\e008';
  font-family: Flaticon2;
  position: absolute;
  top: -60px;
  left: 20px;
  background: #eeeeee;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  padding: 0 10px;
  font-size: 36px;
}
.ewd-otp-tracking-results .ewd-otp-statuses #ewd-otp-ending-status:after {
  content: '';
  position: absolute;
  left: -5px;
  top: -36px;
  width: 25px;
  height: 10px;
  background: #eeeeee;
  z-index: 999;
}
.ewd-otp-status-message form textarea {
  margin: 10px 0;
}
.ewd-otp-status-message form input.ewd-otp-submit {
  float: right;
  margin: 0;
  background: #233859;
  color: #fff;
  border: transparent;
  padding: 10px 20px 10px 20px;
  transition: all 500ms;
  font-weight: 600;
  border-radius: 4px;
}
.ewd-otp-status-message form input.ewd-otp-submit:hover {
  background: #f0e246;
  color: #233859;
}
.mt-12 form {
  padding-bottom: 30px;
}
.mt-12 form .pure-control-group .ewd-otp-submit {
  background: #233859;
  transition: all 500ms;
  border-radius: 4px;
  padding: 5px 15px;
}
.mt-12 form .pure-control-group .ewd-otp-submit:hover {
  background: #f0e246;
  color: #233859;
}
.form-customer-order {
  padding-top: 35px;
}
.form-customer-order form .form-field,
.form-customer-order form .ewd-otp-order-content {
  margin-bottom: 20px;
}
.form-customer-order form .pure-u-1 {
  padding-bottom: 0;
  padding-top: 10px;
}
.form-customer-order form input,
.form-customer-order form select {
  width: 100%;
  height: 40px;
  padding-left: 5px;
  color: #a7a6a6;
  border-color: #f3f3f3;
  background: #fcfcfc;
}
.form-customer-order form input {
  padding-left: 10px;
}
.form-customer-order form textarea {
  width: 100%;
  height: 100px;
  padding-left: 10px;
  color: #a7a6a6;
  border-color: #f3f3f3;
}
.form-customer-order form input[placeholder],
.form-customer-order form textarea[placeholder] {
  color: #a7a6a6;
  background: #fcfcfc;
}
.form-customer-order form .button-primary {
  border: transparent;
  border-radius: 4px;
  padding-left: 0;
  background: #233859;
  color: #fff;
  font-weight: 600;
  margin-top: 20px;
  height: 45px;
  transition: all 500ms;
}
.form-customer-order form .button-primary:hover {
  background: #f0e246;
  color: #233859;
}
.page-template-template-homepage .site-content {
  padding: 0;
}
.page-template-template-homepage .page-title-area {
  display: none;
}
.sidebar-content .content-area {
  float: right;
}
.sidebar-content .service-sidebar {
  float: left;
}
.tp-provide {
  opacity: 0.9;
  width: 51%;
}
.tp-provide .tp-title-provide {
  opacity: 1;
  color: #fff;
  font-weight: 600;
  font-size: 36px;
}
.tp-provide p {
  color: #fff;
  padding-bottom: 10px;
  line-height: 2;
}
.tp-provide ul {
  display: inline-block;
}
.tp-provide ul li {
  color: #fff;
  list-style: none;
  padding-bottom: 10px;
}
.tp-provide ul li .fa {
  color: #f0e246;
  padding-left: 5px;
  padding-right: 10px;
}
.tp-provide ul.first {
  padding-left: 0;
}
.tp-provide .provide-link {
  padding-top: 40px;
}
.tp-provide .provide-link .provide-button {
  display: inline-block;
  padding-right: 50px;
}
.single-service-sidebar .vc_pagination {
  margin-top: 10px !important;
  right: auto !important;
  z-index: 9999;
}
.single-service-sidebar .vc_pagination .vc_pagination-item {
  color: #f2f2f2;
}
.single-service-sidebar .vc_pagination .vc_pagination-item a {
  background: #f2f2f2;
}
.single-service-sidebar .vc_pagination .vc_pagination-item a.vc_pagination-trigger {
  opacity: 1;
}
.single-service-sidebar .vc_pagination .vc_pagination-item.vc_active a {
  background: #f0e246;
}
.single-service-sidebar .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
  padding-top: 0;
}
.single-service-sidebar .vc_tta-panels .vc_tta-panel .vc_tta-panel-body h4 a {
  color: #000;
}
.service-text-sidebar {
  padding-bottom: 20px !important;
}
.service-text-sidebar .vc_pagination {
  right: auto !important;
  left: 15px !important;
  top: 85% !important;
  z-index: 9999;
}
.service-text-sidebar .vc_pagination .vc_pagination-item {
  color: #fff;
}
.service-text-sidebar .vc_pagination .vc_pagination-item a {
  background: #fff;
}
.service-text-sidebar .vc_pagination .vc_pagination-item a.vc_pagination-trigger {
  opacity: 1;
}
.service-text-sidebar .vc_pagination .vc_pagination-item.vc_active a {
  background: #f0e246;
}
.service-text-sidebar .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
  padding-left: 15px;
  padding-right: 15px;
}
.service-text-sidebar .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body h4 a {
  color: #fff;
}
.service-text-sidebar .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body h4 a .fa {
  padding-right: 20px;
  color: #fff;
}
.service-text-sidebar .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body p {
  color: #fff;
  padding-bottom: 11px;
}
.post-type-archive-service .all-services {
  float: right;
  padding-right: 0;
}
.post-type-archive-service .all-services .navigation {
  clear: both;
  padding-left: 15px;
}
.post-type-archive-service .all-services .navigation .nav-links .nav-previous a,
.post-type-archive-service .all-services .navigation .nav-links .nav-next a {
  padding-left: 0;
}
.post-type-archive-service .service-sidebar {
  float: left;
  padding-left: 0;
}
.teal .tp-provide ul li .fa {
  color: #26d0c6 !important;
}
.ewd-otp-label-values {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
}
.ewd-otp-label-values:hover {
  background-color: transparent !important;
}
.ewd-otp-label-values .ewd-otp-order-label {
  color: #323232;
  font-weight: 700;
  font-size: 18px;
}
.ewd-otp-statuses .ewd-otp-display-status {
  font-size: 14px;
  color: #323232;
  font-weight: 700;
}
.ewd-otp-status-label {
  color: #323232;
  font-weight: 700;
  font-size: 18px;
}
#ewd-otp-customer-notes {
  color: #323232;
  font-weight: 700;
  font-size: 18px;
}
.ewd-otp-statuses + .ewd-otp-clear {
  margin-bottom: 60px;
}
.ewd-otp-paypal-form .submit-button {
  background-color: #233859;
  color: #fff;
  border-color: #233859;
  border-radius: 4px;
  text-transform: none;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 60px 15px 20px;
  font-style: normal;
  text-align: center;
  font-family: 'Roboto', "Times New Roman", Times, serif;
  transition: 0.5s;
  position: relative;
  padding-right: 20px;
  border: none;
}
.ewd-otp-paypal-form .submit-button:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #0d1522;
  top: 0;
  right: 46px;
  opacity: 0.3;
  transition: all 500ms;
}
.ewd-otp-paypal-form .submit-button:after {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  color: #fff;
  top: 17px;
  right: 20px;
  transition: 0.5s;
  line-height: 1;
}
.ewd-otp-paypal-form .submit-button:hover {
  background-color: #f0e246;
  border-color: #f0e246;
  color: #233859;
}
.ewd-otp-paypal-form .submit-button:hover:before {
  background-color: #d8c812;
}
.ewd-otp-paypal-form .submit-button:hover:after {
  color: #233859;
}
.ewd-otp-paypal-form .submit-button:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #0d1522;
  top: 0;
  right: 46px;
  opacity: 0.3;
  transition: all 500ms;
}
.ewd-otp-paypal-form .submit-button:after {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  color: #fff;
  top: 17px;
  right: 20px;
  transition: 0.5s;
  line-height: 1;
}
.ewd-otp-paypal-form .submit-button:hover {
  background-color: #f0e246;
  border-color: #f0e246;
  color: #233859;
}
.ewd-otp-paypal-form .submit-button:hover:before {
  background-color: #d8c812;
}
.ewd-otp-paypal-form .submit-button:hover:after {
  color: #233859;
}
@media (max-width: 1199px) {
  .tp-support .tp-support-title {
    padding-bottom: 14px;
  }
  .tp-support .tp-support-title h2 {
    font-size: 20px;
  }
  .tp-support .tp-support-title .tp-support-icon {
    font-size: 30px;
  }
  .tp-support .tp-support-content {
    font-size: 20px;
  }
  .tp-shipment .reference .ts-content .ts-row .select-mode {
    margin-bottom: 10px;
    width: 100%;
  }
  .tp-shipment .reference .ts-content .ts-row .order-location {
    margin-left: 0;
    display: block;
    float: none;
    clear: both;
    width: 100%;
  }
  .tp-shipment .reference .ts-content .ts-row .txt-reference {
    margin-left: 0;
    display: block;
    float: none;
    clear: both;
    width: 100%;
  }
  .tp-shipment .reference .ts-content .ts-row.ts-between select,
  .tp-shipment .reference .ts-content .ts-row.ts-and select {
    margin-left: 0 !important;
    display: block;
    width: 100%;
    margin-top: 10px;
  }
  .tp-service-box {
    transform: none;
  }
}
@media (max-width: 991px) {
  .tp-support {
    background-color: #f0e246;
  }
  .tp-support:before,
  .tp-support:after {
    display: none;
  }
  .tp-support .tp-support-title:after {
    display: none;
  }
  .tp-support .container {
    width: 100%;
  }
  .tp-support .tp-support-content {
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .tp-support .tp-support-content:before {
    display: none;
  }
  .tp-support .tp-support-content .tp-support-link {
    clear: both;
    float: none;
    margin-top: 10px;
  }
  .tp-team-list .tp-team-items {
    margin-bottom: 20px;
  }
  .tp-team-list .tp-team-items:nth-child( 2n + 1 ) {
    clear: both;
  }
  .tp-provide {
    width: 100%;
  }
  .column-counter {
    width: 50% !important;
  }
  .column-counter:nth-child( 2n + 1 ) {
    clear: both;
  }
}
@media (max-width: 767px) {
  .tp-service-box {
    transform: none;
  }
  .tp-service-box .service-box-detail {
    display: none;
  }
  .vc_tta-container .vc_tta-tabs-position-left .vc_tta-panels-container .vc_tta-panels {
    margin-left: 0;
  }
  .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-body {
    padding-left: 30px;
    padding-right: 30px;
  }
  .column-counter {
    border: none;
  }
  .column-counter > .vc_column-inner {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .tp-history .tp-history-title,
  .tp-history .tp-history-content {
    padding-left: 37px;
  }
  .tp-history .tp-history-link {
    padding-left: 0;
  }
  .wpcf7-form .form-select-1 {
    padding-left: 0;
  }
  .tp-support .tp-support-title .tp-support-icon {
    padding-top: 20px;
  }
}
@media (max-width: 600px) {
  .tp-provide ul:nth-child( 2n + 1 ) {
    padding-left: 0;
  }
  .tp-testimonials {
    margin-top: 30px;
  }
  .tp-testimonials .testi-image {
    float: none;
    margin-bottom: 20px;
  }
  .tp-testimonials .testi-content {
    padding-left: 0;
  }
  .tp-testimonials .testimonials_area .owl-pagination {
    top: -30px;
  }
  .tp-provide ul {
    padding-left: 0;
    clear: both;
  }
  .tp-provide .provide-link .provide-button {
    padding-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .tp-icon-box-title h3 {
    font-size: 16px;
  }
  .icon-box {
    padding-left: 0;
  }
  .icon-box .tp-icon {
    left: 0;
  }
  .icon-box .tp-icon:before {
    font-size: 50px;
  }
  .icon-box .icon-content {
    padding-left: 20px;
  }
  .icon-box .icon-content:before {
    display: none;
  }
  .icon-box .icon-content .icon-title:before {
    display: none;
  }
  .tp-blog .owl-controls .owl-buttons {
    display: none;
  }
  .tp-blog-2 .owl-controls .owl-buttons {
    display: none;
  }
}
