/*===================================*
  01.GENERAL STYLE
*===================================*/
html, body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

body {
  background: #ffffff none repeat scroll 0 0;
  color: #30454E;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  color: #015467;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

p {
  color: #30454E;
  line-height: 28px;
  margin-bottom: 25px;
  font-size: 20px;
}

a {
  color: #30454E;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all .5s ease-in-out;
}

  a:hover {
    color: #00B0F0;
    text-decoration: none;
  }

  a:focus {
    outline: none;
  }

img {
  max-width: 100% !important;
}

ul, li, ol {
  margin: 0;
  padding: 0;
}

fieldset {
  border: 0 none;
  margin: 0 auto;
  padding: 0;
}

label {
  color: #6c757d;
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

iframe {
  border: 0;
  display: block;
}

video {
  width: 100%;
}

.section, div.section {
  padding: 80px 0;
  position: relative;
}

  .section.small_pt,
  .top_footer.small_pt {
    padding-top: 50px;
  }

  .section.small_pb,
  .top_footer.small_pb {
    padding-bottom: 50px;
  }

  .section.pb_70, .pb_70 {
    padding-bottom: 70px;
  }

  .section.pb_85, .pb_85 {
    padding-bottom: 85px;
  }

  .section.pt_20, .pt_20 {
    padding-top: 20px;
  }

  .section.pb_20, .pb_20 {
    padding-bottom: 20px;
  }

  .section.pt_40, .pt_40 {
    padding-top: 40px;
  }

  .section.pb_40, .pb_40 {
    padding-bottom: 40px;
  }

.mt_30 {
  margin-top: 30px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_50 {
  margin-bottom: 50px;
}

div.banner_large_pad {
  padding: 200px 0;
}

.small_padding {
  padding: 30px;
}

.medium_padding {
  padding: 50px;
}

.large_padding {
  padding: 100px;
}

.small_divider {
  height: 30px;
}

.medium_divider {
  height: 50px;
}

.large_divider {
  height: 100px;
}

.padding_eight_all {
  padding: 8%;
}

.padding_eight_lr {
  padding: 0 8%;
}

.padding_eight_tb {
  padding: 8% 0;
}

.list_none li {
  list-style: none;
}

.order_list,
.disc_list {
  padding-left: 15px;
}

.btn:focus, .btn:hover, .btn.active {
  box-shadow: none;
  outline: medium none;
}

button:focus {
  outline: none;
}

.border-2 {
  border-width: 2px !important;
}

.btn {
  border-width: 1px;
  cursor: pointer;
  line-height: normal;
  padding: 14px 30px;
  text-transform: capitalize;
  transition: all 0.5s ease-in-out;
  font-weight: 500;
}

  .btn.active:focus, .btn:active:focus {
    box-shadow: none !important;
  }

.btn-fill-out {
  background-color: transparent;
  border: 1px solid #015467;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

  .btn-fill-out:hover {
    color: #015467 !important;
  }

  .btn-fill-out::before {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    content: '';
    background-color: #015467;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  }

.btn-white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #292b2c !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

  .btn-white:hover {
    color: #fff !important;
  }

  .btn-white::before {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    content: '';
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  }

.btn-fill-out-dark {
  background-color: transparent;
  border: 1px solid #333;
  color: #fff !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

  .btn-fill-out-dark:hover {
    color: #333 !important;
  }

  .btn-fill-out-dark::before {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    content: '';
    background-color: #333;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  }

  .btn-fill-out::after,
  .btn-white::after,
  .btn-fill-out-dark:after {
    content: "";
    position: absolute;
    height: 0%;
    right: 50%;
    top: 50%;
    width: 100%;
    z-index: -1;
    -webkit-transition: all 0.75s ease 0s;
    -moz-transition: all 0.75s ease 0s;
    -o-transition: all 0.75s ease 0s;
    transition: all 0.75s ease 0s;
  }

  .btn-fill-out:hover::before,
  .btn-white:hover::before,
  .btn-fill-out-dark:hover:before {
    right: 0%;
    left: auto;
    width: 0;
  }

  .btn-fill-out.btn-radius::before,
  .btn-fill-out.btn-radius::after,
  .btn-white.btn-radius::before,
  .btn-white.btn-radius::after,
  .btn-fill-out-dark.btn-radius:after {
    border-radius: 40px;
  }

.btn-line-fill {
  border: 1px solid #333;
  overflow: hidden;
  position: relative;
  color: #333 !important;
  transition: all 0.8s ease 0s;
  z-index: 1;
}

  .btn-line-fill:hover {
    color: #fff !important;
  }

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 450px;
    height: 450px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 450px;
    height: 450px;
  }
}

.btn-line-fill:before, .btn-line-fill:after {
  position: absolute;
  top: 50%;
  content: '';
  width: 20px;
  height: 20px;
  background-color: #333;
  border-radius: 50%;
  z-index: -1;
}

.btn-line-fill:before,
.btn-fill-line:before {
  left: -20px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn-line-fill:after,
.btn-fill-line:after {
  right: -20px;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.btn-line-fill:hover:before,
.btn-fill-line:hover:before {
  -webkit-animation: criss-cross-left 0.7s both;
  animation: criss-cross-left 0.7s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.btn-line-fill:hover:after,
.btn-fill-line:hover:after {
  -webkit-animation: criss-cross-right 0.7s both;
  animation: criss-cross-right 0.7s both;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.btn-line-white {
  border: 1px solid #fff;
  color: #fff !important;
}

  .btn-line-white:hover {
    color: #333 !important;
  }

.btn-line-fill.btn-line-white:before, .btn-line-fill.btn-line-white:after {
  background-color: #fff;
}

.btn-line-blue {
  border-color: #233645;
  color: #233645 !important;
}

  .btn-line-blue::before, .btn-line-blue::after {
    background-color: #233645;
  }

.btn-tran-light {
  background-color: rgba(255,255,255,0.2);
  color: #fff;
}

  .btn-tran-light:hover {
    background-color: #fff;
  }

.btn-fill-line {
  background-color: #333;
  border: 1px solid #333;
  overflow: hidden;
  position: relative;
  color: #fff !important;
  transition: all 0.8s ease 0s;
  z-index: 1;
}

  .btn-fill-line:before, .btn-fill-line:after {
    position: absolute;
    top: 50%;
    content: '';
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    z-index: -1;
  }

  .btn-fill-line:hover {
    color: #333 !important;
  }

.btn-out-border {
  background-color: #ed1c24;
  color: #fff;
  border-radius: 0 !important;
  margin: 5px;
  display: inline-block;
  border: 0;
  position: relative;
  z-index: 1;
}

  .btn-out-border::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-top: 2px solid #ed1c24;
    border-left: 2px solid #ed1c24;
    height: 20px;
    width: 20px;
    transition: all 0.5s ease-in-out;
    margin: -5px;
    z-index: -1;
  }

  .btn-out-border::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    border-right: 2px solid #ed1c24;
    border-bottom: 2px solid #ed1c24;
    height: 20px;
    width: 20px;
    transition: all 0.5s ease-in-out;
    margin: -5px;
    z-index: -1;
  }

  .btn-out-border:hover::after,
  .btn-out-border:hover::before {
    width: -webkit-calc(100% + 10px);
    width: -moz-calc(100% + 10px);
    width: calc(100% + 10px);
    height: -webkit-calc(100% + 10px);
    height: -moz-calc(100% + 10px);
    height: calc(100% + 10px);
  }

  .btn-out-border:hover {
    color: #fff !important;
  }

.btn.btn-out-border-white {
  background-color: #fff;
  color: #333 !important;
}

  .btn.btn-out-border-white::after,
  .btn.btn-out-border-white::before {
    border-color: #fff;
  }

.btn.btn-out-border-dark {
  background-color: #333;
}

  .btn.btn-out-border-dark::after,
  .btn.btn-out-border-dark::before {
    border-color: #333;
  }

.btn-gd-orange {
  color: #fff;
  background: -moz-inear-gradient(left, #ff9f54 0%,#ffd255 51%,#ff9f54);
  background: -webkit-inear-gradient(left, #ff9f54 0%,#ffd255 51%,#ff9f54);
  background: linear-gradient(to right, #ff9f54 0%,#ffd255 51%,#ff9f54);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9f54', endColorstr='#ffd255',GradientType=1 );
  background-size: 200% 100%;
}

.btn-gd-green {
  color: #fff;
  background: -moz-inear-gradient(left, #16A3FE 0%,#23C99D 51%,#16A3FE);
  background: -webkit-inear-gradient(left, #16A3FE 0%,#23C99D 51%,#16A3FE);
  background: linear-gradient(to right, #16A3FE 0%,#23C99D 51%,#16A3FE);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#16A3FE', endColorstr='#23C99D',GradientType=1 );
  background-size: 200% 100%;
}

.btn-gd-pink-orange {
  color: #fff;
  background: -moz-inear-gradient(left, #F42F54 0%,#ff9625 51%,#F42F54);
  background: -webkit-inear-gradient(left, #F42F54 0%,#ff9625 51%,#F42F54);
  background: linear-gradient(to right, #F42F54 0%,#ff9625 51%,#F42F54);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F42F54', endColorstr='#ff9625',GradientType=1 );
  background-size: 200% 100%;
}

.bg-gd-orange {
  background: -moz-inear-gradient(left, #ff9f54 0%,#ffd255 100%);
  background: -webkit-inear-gradient(left, #ff9f54 0%,#ffd255 100%);
  background: linear-gradient(to right, #ff9f54 0%,#ffd255 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9f54', endColorstr='#ffd255',GradientType=1 );
}

.bg-gd-green {
  background: -moz-inear-gradient(left, #16A3FE 0%,#23C99D 100%);
  background: -webkit-inear-gradient(left, #16A3FE 0%,#23C99D 100%);
  background: linear-gradient(to right, #16A3FE 0%,#23C99D 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#16A3FE', endColorstr='#23C99D',GradientType=1 );
}

.bg-gd-mantle {
  background: -moz-linear-gradient(-45deg, #8400fc 0%, #11def4 100%);
  background: -webkit-linear-gradient(-45deg, #8400fc 0%,#11def4 100%);
  background: linear-gradient(135deg, #8400fc 0%,#11def4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8400fc', endColorstr='#11def4',GradientType=1 );
}

.btn-gd-orange:hover,
.btn-gd-green:hover,
.btn-gd-pink-orange:hover {
  color: #fff !important;
  background-position: 100% 0;
}

.btn-radius {
  border-radius: 40px;
}

.btn + .btn {
  margin-left: 10px;
}

.btn i {
  font-size: 16px;
  margin-left: 5px;
  vertical-align: middle;
  line-height: 1;
}

.btn span {
  vertical-align: middle;
}

.btn-group-sm > .btn, .btn-sm {
  padding: 8px 25px;
}

.btn-group-lg > .btn, .btn-lg {
  padding: 16px 45px;
}

.btn-xs {
  padding: 4px 20px;
  font-size: 12px;
}

.btn-md {
  padding: 12px 35px;
  font-size: 16px;
}

.btn.btn-xs i {
  font-size: 10px;
}

.btn.btn-sm i {
  font-size: 12px;
}

.btn.btn-lg i {
  font-size: 22px;
}

.btn-ripple {
  padding-right: 0 !important;
  border: 0;
}

.btn-link {
  font-size: 20px;
  color: #00B0F0;
  position: relative;
  z-index: 2;
  text-decoration: underline;
}

  .btn-link i {
    font-size: 24px;
    vertical-align: middle;
    margin-left: 10px;
  }

  .btn-link:hover {
    color: #015467;
  }

.pdf-link {
  display: flex;
  align-items: center;
  grid-gap: 15px;
  gap: 15px;
  line-height: normal;
}

  .pdf-link span {
    flex: 0 0 30px;
  }

  .pdf-link img {
    width: 30px;
  }

.text_white * {
  color: #fff;
}

.text_dark * {
  color: #333;
}

.text_default {
  color: #ed1c24 !important;
}

.bg_white {
  background-color: #ffffff !important;
}

.bg_gray {
  background-color: #f7f8fb !important;
}

.bg_light_blue {
  background-color: rgba(68, 208, 247, 0.1) !important;
}

.bg_light_blue2 {
  background-color: #F4F9FC !important;
}

.bg_light_grey {
  background-color: #F2F6F7 !important;
}

.bg_light_grey2 {
  background-color: rgba(1, 84, 103, 0.1) !important;
}

.bg_blue {
  background-color: #4382FF !important;
}

.bg_linen {
  background-color: #F9F5F0 !important;
}

.bg_redon {
  background-color: #FFF1F1 !important;
}

.bg_dark {
  background-color: #015467 !important;
}

.bg_dark2 {
  background-color: #30454E !important;
}

.bg_dark3 {
  background-color: #233645 !important;
}

.bg_dark4 {
  background-color: #0D1B26 !important;
}

.bg_apricot {
  background-color: #fde0ca !important;
}

.radius_all_5,
.radius_all_5:before,
.radius_all_5:after {
  border-radius: 5px;
}

.radius_all_10,
.radius_all_10:before,
.radius_all_10:after {
  border-radius: 10px;
}

.radius_lb_10,
.radius_lb_10:after,
.radius_lb_10:before {
  border-radius: 10px 0 0 10px;
}

.radius_rb_10,
.radius_rb_10:before,
.radius_rb_10:after {
  border-radius: 0 10px 10px 0;
}

.radius_lbrb_10,
.radius_lbrb_10:before,
.radius_lbrb_10:after {
  border-radius: 0 0 10px 10px;
}

.radius_ltrt_10,
.radius_ltrt_10:before,
.radius_ltrt_10:after {
  border-radius: 10px 10px 0 0;
}

.scrollup {
  background-color: #015467;
  border-radius: 5px;
  bottom: 20px;
  color: #ffffff;
  font-size: 24px;
  height: 40px;
  line-height: 40px;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 40px;
  z-index: 99;
}

  .scrollup:hover {
    background-color: #00B0F0;
    color: #fff;
  }

  .scrollup:focus {
    color: #fff;
  }

.scrollup_style1 {
  background-color: #ed1c24;
}

.scrollup.scrollup_style1:hover {
  background-color: #333;
}

.background_bg {
  background-position: center center;
  background-size: cover;
}

.bg_size_auto {
  background-size: auto !important;
}

.bg_size_contain {
  background-size: contain !important;
}

.bg_norepeat {
  background-repeat: no-repeat !important;
}

.position_top_center {
  background-position: top center !important;
}

.position_center_bottom {
  background-position: center bottom !important;
}

.position_right_center {
  background-position: right center !important;
}

.position_right_bottom {
  background-position: right bottom !important;
}

.fixed_bg {
  background-attachment: fixed !important;
}

[class*=overlay_bg_] {
  position: relative;
}

  [class*=overlay_bg_]::before {
    background-color: #000;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
  }

[class*=overlay_bg_default_]::before {
  background-color: #ed1c24;
}

[class*=overlay_bg_blue_]::before {
  background-color: #031B4E;
}

[class*=overlay_bg_white_]::before {
  background-color: #fff;
}

.overlay_bg_90::before,
.overlay_bg_default_90::before,
.overlay_bg_blue_90::before,
.overlay_bg_white_90::before {
  opacity: 0.9;
}

.overlay_bg_80::before,
.overlay_bg_default_80::before,
.overlay_bg_blue_80::before,
.overlay_bg_white_80::before {
  opacity: 0.8;
}

.overlay_bg_70::before,
.overlay_bg_default_70::before,
.overlay_bg_blue_70::before,
.overlay_bg_white_70::before {
  opacity: 0.7;
}

.overlay_bg_60::before,
.overlay_bg_default_60::before,
.overlay_bg_blue_60::before,
.overlay_bg_white_60::before {
  opacity: 0.6;
}

.overlay_bg_50::before,
.overlay_bg_default_50::before,
.overlay_bg_blue_50::before,
.overlay_bg_white_50::before {
  opacity: 0.5;
}

.overlay_bg_40::before,
.overlay_bg_default_40::before,
.overlay_bg_blue_40::before,
.overlay_bg_white_40::before {
  opacity: 0.4;
}

.overlay_bg_30::before,
.overlay_bg_default_30::before,
.overlay_bg_blue_30::before,
.overlay_bg_white_30::before {
  opacity: 0.3;
}

.overlay_bg_20::before,
.overlay_bg_default_20::before,
.overlay_bg_blue_20::before,
.overlay_bg_white_20::before {
  opacity: 0.2;
}

.overlay_bg_10::before,
.overlay_bg_default_10::before,
.overlay_bg_blue_10::before,
.overlay_bg_white_10::before {
  opacity: 0.1;
}

.play_icon {
  position: relative;
  z-index: 1;
}

.ripple {
  background-color: #ed1c24;
  border-radius: 100%;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-right: 25px;
  line-height: 50px;
  font-size: 22px !important;
  vertical-align: middle;
  margin-left: -15px;
  height: 50px;
  width: 50px;
  text-align: center;
}

  .ripple i {
    margin-right: 0;
    margin-left: 3px;
    font-size: 22px;
  }

  .ripple::before, .ripple::after {
    -webkit-animation: ripple 1.8s infinite;
    -moz-animation: ripple 1.8s infinite;
    -o-animation: ripple 1.8s infinite;
    -ms-transition: ripple 1.8s infinite;
    animation: ripple 1.8s infinite;
    background-color: #ed1c24;
    border-radius: 100%;
    margin: -20px;
    bottom: 0px;
    content: "";
    display: block;
    left: 0px;
    opacity: 0;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: -1;
  }

  .ripple::before {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }

  .ripple::after {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
  }

@-webkit-keyframes ripple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes ripple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

.btn-ripple-white .ripple::before,
.btn-ripple-white .ripple::after,
.btn-ripple-white .ripple {
  background-color: rgba(255,255,255,0.5);
}

.btn-ripple-white .ripple {
  color: #ffffff;
}

.bg_transparent_20 {
  background-color: rgba(0,0,0,0.2);
}

.box_shadow {
  box-shadow: 0 10px 30px rgba(1,84,103,.1);
}

.box_shadow1 {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.border-top-tran {
  border-top: 1px solid rgba(255,255,255,0.5);
}

.border_bottom_tran {
  border-bottom: 1px solid rgba(255,255,255,0.5);
}

/*Title Css*/
.heading_s1,
.heading_s4 {
  position: relative;
  margin-bottom: 30px;
}

  .heading_s1 h1, .heading_s1 h2, .heading_s1 h3, .heading_s1 h4, .heading_s1 h5, .heading_s1 h6 {
    font-weight: 700;
    margin: 0;
    /*text-transform: capitalize;*/
    line-height: 45px;
  }

    .heading_s1 h1,
    .heading_s1 h2.h1 {
      font-size: 54px;
      padding-left: 20px;
      line-height: 1.2;
    }

      .heading_s1 h1::before {
        content: "";
        background-color: #00B0F0;
        width: 12px;
        height: 12px;
        display: inline-block;
        border-radius: 100%;
        position: absolute;
        left: 0;
        top: 10px;
      }

  .heading_s1 h2 {
    font-size: 38px;
    padding-left: 20px;
  }

.flex_title h2 {
  font-size: 38px;
}

.heading_s1 h2::before {
  content: "";
  background-color: #00B0F0;
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 10px;
}

.normal_title h2::before {
  content: none;
}

.normal_title h2 {
  padding-left: 0;
}

.heading_s1.text-center h2 {
  display: inline-block;
}

.heading_s1 h3 {
  line-height: 32px;
  margin-bottom: 15px;
}

.heading_s1 h5 {
  font-size: 18px;
  line-height: normal;
}

.heading_s2 {
  margin-bottom: 20px;
  position: relative;
}

  .heading_s2 h1, .heading_s2 h2, .heading_s2 h3, .heading_s2 h4, .heading_s2 h5, .heading_s2 h6,
  .heading_s3 h1, .heading_s3 h2, .heading_s3 h3, .heading_s3 h4, .heading_s3 h5, .heading_s3 h6 {
    font-weight: 700;
    margin: 0;
    /*text-transform: capitalize;*/
  }

  .heading_s2 h1,
  .heading_s2 h2,
  .heading_s2 h3,
  .heading_s2 h4,
  .heading_s2 h5,
  .heading_s2 h6 {
    position: relative;
    z-index: 9;
  }

  .heading_s2 .sub_heading {
    font-size: 100px;
    font-weight: bold;
    padding: 0;
    margin-bottom: -15px;
    z-index: 0;
    position: relative;
    line-height: 100px;
    background: -moz-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(255,255,255,0.1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(255,255,255,0.1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%,rgba(255,255,255,0.1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d000000', endColorstr='#1affffff',GradientType=0 );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .heading_s2.heading_light .sub_heading {
    background: -moz-linear-gradient(top, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.01) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.1) 0%,rgba(0,0,0,0.01) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.01) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4dffffff', endColorstr='#1a000000',GradientType=0 );
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }

.heading_s3 {
  margin-bottom: 30px;
  padding-bottom: 15px;
  position: relative;
}

  .heading_s3::before {
    content: "";
    position: absolute;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #292b2c;
    bottom: 0;
    right: 0;
  }

.heading_light.heading_s3::before {
  background-color: #fff;
}

.heading_s3.text-center::before {
  margin: 0 auto;
}

.heading_s3.text-right::before {
  left: auto;
  right: 0;
}

.heading_s4 h1, .heading_s4 h2, .heading_s4 h3, .heading_s4 h4, .heading_s4 h5, .heading_s4 h6 {
  font-weight: 700;
  margin: 0;
  /*text-transform: capitalize;*/
  line-height: normal;
}

.heading_s4 .heading_icon i {
  color: #20E076;
  font-size: 30px;
  position: relative;
  z-index: 3;
  width: 50px;
  display: block;
  height: 50px;
  line-height: 50px;
}

.heading_icon {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 30px;
  text-align: center;
}

  .heading_icon::after {
    content: "";
    position: absolute;
    right: 0;
    width: 30px;
    top: 50%;
    border-top: 1px solid #999;
    z-index: -1;
    border-bottom: 1px solid #999;
    height: 5px;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .heading_icon::before {
    content: "";
    position: absolute;
    left: 0;
    width: 30px;
    top: 50%;
    border-top: 1px solid #999;
    z-index: -1;
    border-bottom: 1px solid #999;
    height: 5px;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

.heading_light .heading_icon i {
  color: #fff !important;
}

.heading_uppercase h1,
.heading_uppercase h2,
.heading_uppercase h3,
.heading_uppercase h4,
.heading_uppercase h5,
.heading_uppercase h6 {
  text-transform: uppercase;
}

.heading_light * {
  color: #fff;
}

.sub_heading {
  color: #ed1c24;
  margin-bottom: 10px;
  display: block;
}

.highlight_text {
  font-size: 20px;
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.leads {
  margin-bottom: 30px;
}

.flex_title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}


/*Loader Css*/
.preloader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.lds-ellipsis {
  height: 64px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 64px;
  z-index: 9999;
}

  .lds-ellipsis span {
    position: absolute;
    top: 27px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #015467;
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
    -moz-animation-timing-function: cubic-bezier(0, 1, 1, 0);
    -o-animation-timing-function: cubic-bezier(0, 1, 1, 0);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }

    .lds-ellipsis span:nth-child(1) {
      left: 6px;
      -webkit-animation: lds-ellipsis1 0.6s infinite;
      -moz-animation: lds-ellipsis1 0.6s infinite;
      -o-animation: lds-ellipsis1 0.6s infinite;
      animation: lds-ellipsis1 0.6s infinite;
      background-color: #D01D12;
    }

    .lds-ellipsis span:nth-child(2) {
      left: 6px;
      -webkit-animation: lds-ellipsis2 0.6s infinite;
      -moz-animation: lds-ellipsis2 0.6s infinite;
      -o-animation: lds-ellipsis2 0.6s infinite;
      animation: lds-ellipsis2 0.6s infinite;
      background-color: #00B0F0;
    }

    .lds-ellipsis span:nth-child(3) {
      left: 30px;
      -webkit-animation: lds-ellipsis2 0.6s infinite;
      -moz-animation: lds-ellipsis2 0.6s infinite;
      -o-animation: lds-ellipsis2 0.6s infinite;
      animation: lds-ellipsis2 0.6s infinite;
      /*background-color: #FFBB00;*/
    }

    .lds-ellipsis span:nth-child(4) {
      left: 55px;
      -webkit-animation: lds-ellipsis3 0.6s infinite;
      -moz-animation: lds-ellipsis3 0.6s infinite;
      -o-animation: lds-ellipsis3 0.6s infinite;
      animation: lds-ellipsis3 0.6s infinite;
      background-color: #EDA210;
    }

@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(24px, 0);
    transform: translate(24px, 0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(24px, 0);
    transform: translate(24px, 0);
  }
}

@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

.loader-section {
  position: fixed;
  width: 100%;
  height: 50%;
  background-color: #E7EDF3;
  z-index: 999;
  -webkit-transform: translateX(0); /* Chrome, Opera 15+, Safari 3.1+ */
  -moz-transform: translateX(0);
  -ms-transform: translateX(0); /* IE 9 */
  transform: translateX(0); /* Firefox 16+, IE 10+, Opera */
}

  .loader-section.section-top {
    top: 0;
  }

  .loader-section.section-bottom {
    bottom: 0;
  }

/* Loaded */
.loaded .loader-section.section-top {
  -webkit-transform: translateY(-100%); /* Chrome, Opera 15+, Safari 3.1+ */
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%); /* IE 9 */
  transform: translateY(-100%); /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded .loader-section.section-bottom {
  -webkit-transform: translateY(100%); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(100%); /* IE 9 */
  -moz-transform: translateY(100%);
  transform: translateY(100%); /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
/*===================================*
  01.END GENERAL STYLE
*===================================*/

/*===================================*
  02.START HEADER STYLE
*===================================*/
.bottom-header .navbar {
  border-top: 1px solid #8C9FA6;
}

.navbar-brand {
  padding: 13px 0;
  vertical-align: top;
  margin: 0;
}

.header_wrap .navbar-brand img {
  max-height: 70px;
}

.dark_skin .logo_light, .dark_skin .logo_default,
.light_skin .logo_default, .light_skin .logo_dark,
.logo_light, .logo_dark {
  display: none;
}

.dark_skin .logo_dark,
.light_skin .logo_light {
  display: block;
}

.light_skin .navbar-nav a,
.light_skin .navbar-toggler {
  color: #ffffff;
}

.navbar {
  position: static;
  padding: 0;
}

.header_wrap {
  transition: all 0.5s ease 0s;
}

  .header_wrap:not([class*="bg_"]):not([class*="bg-"]) {
    background-color: #fff;
  }

    .header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header {
      background-color: transparent;
    }

      .header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.nav-fixed {
        background-color: #fff;
      }

      .header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.light_skin.nav-fixed {
        background-color: #1D2224;
      }

      .header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.sticky_dark_skin.nav-fixed,
      .light_skin .sidetoggle_icon::after,
      .light_skin .sidetoggle_icon::before,
      .light_skin .toggle_center_line {
        background-color: #fff;
      }

.navbar .navbar-nav {
  width: 100%;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap; /* assumes you only want one row */
}

  .navbar .navbar-nav li {
    position: relative;
    list-style: none;
    transition: all 0.3s ease 0s;
  }

.navbar-nav .dropdown-menu {
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  min-width: 14rem;
}

.navbar-nav .dropdown-menu {
  background-color: #252A2C;
}

.light_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
.light_skin .navbar-nav .dropdown-menu .dropdown-menu {
  background-color: #303537;
}

.dark_skin .navbar-nav .dropdown-menu {
  background-color: #fff;
  box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
}

.dark_skin .mega-menu-col,
.dark_skin .cart_list li {
  border-color: #ddd;
}

.dark_skin .navbar .navbar-nav .dropdown-menu li a.active,
.dark_skin .navbar .navbar-nav .dropdown-menu li a:hover,
.dark_skin .navbar .navbar-nav .dropdown-menu > ul > li:hover > a,
.dark_skin .navbar .navbar-nav .dropdown-menu > ul > .mega-menu-col ul > li:hover > a {
  color: #ed1c24;
}

.dark_skin .navbar .navbar-nav li > .dropdown-item,
.dark_skin .navbar .navbar-nav .dropdown-header,
.dark_skin .cart_quantity,
.dark_skin .cart_total {
  color: #333333;
}

.dropdown-toggle::after, .dropdown-toggler::after {
  border: 0 none;
  content: "\f3d0";
  font-family: "Ionicons";
  height: auto;
  line-height: normal;
  margin-left: 5px;
  vertical-align: middle;
  width: auto;
  font-weight: 100;
}

.dropdown.show .dropdown-toggle::after {
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.dropdown-toggler::after {
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.dropdown-menu .dropdown-toggler::after {
  position: absolute;
  right: 15px;
  top: 10px;
}

.navbar .navbar-nav > li > .nav-link {
  font-weight: 500;
  padding: 15px 12px;
  text-transform: capitalize;
  font-size: 16px;
}

.nav-fixed .navbar .navbar-nav > li > .nav-link {
  padding: 20px 10px;
}

.navbar .navbar-nav > li > a.active,
.navbar .navbar-nav > li:hover > a,
.navbar .navbar-nav > li.show > a,
.light_skin.transparent_header.nav-fixed .navbar .navbar-nav > li > a.active,
.light_skin.transparent_header.nav-fixed .navbar .navbar-nav > li:hover > a {
  color: #00B0F0;
}

.light_skin .navbar .navbar-nav .dropdown-item,
.light_skin .navbar .navbar-nav .dropdown-header {
  color: #fff;
}

.light_skin .item_remove {
  color: #fff !important;
}

.light_skin .mega-menu-col {
  border-right: 1px solid #3f3f3f;
}

.dropdown:not(.dropdown-mega-menu) .dropdown-menu > ul,
.mega-menu-col > ul,
.dropdown .dropdown-menu .dropdown-menu > ul {
  padding: 40px 0px;
}

.navbar .navbar-nav .dropdown-item {
  padding: 8px 20px 8px 20px;
  color: #333;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: bold;
}

.navbar .navbar-nav .mega-menu .dropdown-item,
.navbar .navbar-nav .mega-menu .dropdown-header {
  padding-left: 0;
}

.navbar .navbar-nav .mega-menu .dropdown-header {
  color: #ed1c24 !important;
}

.navbar .navbar-nav .dropdown-item.dropdown-toggler {
  padding-right: 30px;
}

.navbar .navbar-nav .dropdown-header {
  color: #333;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.navbar .attr-nav li .nav-link {
  padding: 15px 10px;
  position: relative;
}

.nav-fixed .navbar .attr-nav li .nav-link {
  padding: 15px 10px;
}

.nav-fixed .navbar .navbar-nav {
  margin-left: 40px;
}

.nav-fixed .bottom-header .navbar {
  border: 0;
}

.navbar .attr-nav li.nav-btn {
  margin-left: 10px;
}

.navbar .attr-nav li .nav-link i {
  font-size: 20px;
}

.navbar .attr-nav li .nav-link.cart_trigger {
  padding-right: 0 !important;
  margin-right: -5px;
}

.hover_menu_style2 .navbar .navbar-nav.attr-nav > li > .nav-link {
  margin: 0;
  padding: 20px 10px;
}

.dropdown-item:focus, .dropdown-item:hover,
.dropdown-item.active, .dropdown-item:active {
  background-color: transparent;
}

.navbar .navbar-nav.attr-nav .dropdown-menu li a.active,
.navbar .navbar-nav.attr-nav .dropdown-menu li a:hover,
.navbar .navbar-nav.attr-nav .dropdown-menu > ul > li:hover > a {
  background-color: rgba(0,0,0,0);
}

.navbar .navbar-nav .dropdown-menu li a.active,
.navbar .navbar-nav .dropdown-menu li a:hover,
.navbar .navbar-nav .dropdown-menu > ul > li:hover > a,
.navbar .navbar-nav .dropdown-menu > ul > .mega-menu-col ul > li:hover > a,
.sticky_dark_skin.nav-fixed .navbar .navbar-nav .dropdown-item:hover {
  color: #ed1c24;
}

.sticky_dark_skin.nav-fixed .logo_light {
  display: none;
}

.sticky_dark_skin.nav-fixed .logo_dark {
  display: block;
}

.sticky_dark_skin.nav-fixed .navbar-nav li > a,
.sticky_dark_skin.nav-fixed .navbar-toggler,
.sticky_dark_skin.nav-fixed .navbar .navbar-nav .dropdown-item,
.sticky_dark_skin.nav-fixed .navbar .navbar-nav .dropdown-header,
.sticky_dark_skin.nav-fixed .cart_quantity, .sticky_dark_skin.nav-fixed .cart_total {
  color: #333;
}

  .sticky_dark_skin.nav-fixed .navbar .navbar-nav .dropdown-item.active {
    color: #ed1c24;
  }

.sticky_dark_skin.nav-fixed .item_remove {
  color: #333 !important;
}

.sticky_dark_skin.nav-fixed .navbar-nav .dropdown-menu,
.sticky_dark_skin.nav-fixed .navbar-nav .dropdown-menu .dropdown-menu {
  background-color: #fff;
  box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
}

.sticky_dark_skin.nav-fixed .mega-menu-col,
.sticky_dark_skin.nav-fixed .cart_list li {
  border-color: #ddd;
}

.sticky_dark_skin.nav-fixed.header_wrap[class*="bg_"], .sticky_dark_skin.nav-fixed.header_wrap[class*="bg-"] {
  background-color: #fff !important;
}

.sticky_light_skin.nav-fixed .logo_dark {
  display: none;
}

.sticky_light_skin.nav-fixed .logo_light {
  display: block;
}

.sticky_light_skin.nav-fixed.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header,
.sticky_light_skin.nav-fixed.header_wrap:not([class*="bg_"]):not([class*="bg-"]) {
  background-color: #1D2224;
}

.sticky_light_skin.nav-fixed.header_wrap[class*="bg_"], .sticky_light_skin.nav-fixed.header_wrap[class*="bg-"] {
  background-color: #1D2224 !important;
}

.sticky_light_skin.nav-fixed .navbar-nav a,
.sticky_light_skin.nav-fixed .navbar-toggler,
.sticky_light_skin.nav-fixed .navbar .navbar-nav .dropdown-item,
.sticky_light_skin.nav-fixed .navbar .navbar-nav .dropdown-header,
.sticky_light_skin.nav-fixed .cart_quantity, .sticky_light_skin.nav-fixed .cart_total {
  color: #fff;
}

.sticky_light_skin.nav-fixed .item_remove {
  color: #fff !important;
}

.header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu {
  background-color: #252A2C;
  border-color: #252A2C;
}

  .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
  .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu .dropdown-menu {
    background-color: #303537;
  }

.sticky_light_skin.nav-fixed .mega-menu-col {
  border-right: 1px solid #3f3f3f;
}

.sticky_light_skin.nav-fixed .cart_list li {
  border-color: #3f3f3f;
}

.sticky_dark_skin.nav-fixed .btn-tran-light {
  background-color: #333;
  color: #fff !important;
}

  .sticky_dark_skin.nav-fixed .btn-tran-light:hover {
    background-color: transparent;
    color: #333 !important;
    border-color: #333;
  }

.search_overlay {
  content: "";
  background-color: #000;
  height: 0;
  left: 0;
  position: fixed;
  text-align: center;
  bottom: 0;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  width: 100%;
  z-index: 99;
}

  .search_overlay.open {
    height: 100%;
    top: 0;
    bottom: auto;
  }

.search-overlay.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.search_trigger.open i::before {
  content: "\f129";
  font-family: "Ionicons";
}

.search_wrap {
  position: fixed;
  left: 0;
  right: 0;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0;
  z-index: 9999;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 0;
  -ms-flex-align: center;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.search_open {
  overflow-y: hidden;
  padding-right: 17px;
}

.search_wrap.open {
  top: 0;
  opacity: 1;
  visibility: visible;
  bottom: auto;
  height: 100%;
}

.search_wrap form {
  position: relative;
  width: 100%;
}

.search_wrap .form-control:focus {
  color: #fff;
}

.search_icon {
  font-size: 24px;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
}

  .search_icon i {
    color: #30454E;
  }

.search_wrap .form-control {
  background-color: transparent;
  border-bottom: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  padding: 10px 0;
  color: #fff;
}

.close-search {
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -50px;
}

.navbar .attr-nav li .search_trigger i {
  font-size: 20px;
  vertical-align: middle;
  line-height: normal;
}

.navbar .attr-nav li.cart_wrap .nav-link i {
  font-size: 20px;
}

.navbar .attr-nav li.cart_wrap .nav-link {
  padding: 35px 5px;
}

.navbar .attr-nav li .nav-link.sidetoggle i {
  font-size: 28px;
}

.header_wrap.fixed-top {
  position: relative;
  padding-right: 0 !important;
}

.header_wrap.transparent_header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1030;
}

.header_wrap.nav-fixed {
  box-shadow: 0 0 5px rgba(0,0,0,0.15);
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 999;
  -webkit-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  -o-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-animation-fill-mode: none;
  -moz-animation-fill-mode: none;
  -o-animation-fill-mode: none;
  animation-fill-mode: none;
}

.nav-fixed.border_bottom_tran {
  border: 0;
}

.header_wrap.fixed-top.transparent_header.nav-fixed.no-sticky {
  position: absolute;
}

.header_wrap.fixed-top.nav-fixed.no-sticky {
  position: relative;
}

.header_wrap.no-sticky .navbar .navbar-nav > li > .nav-link {
  -webkit-transition: none;
  transition: none;
}

.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.nav-fixed.no-sticky {
  background-color: transparent;
  box-shadow: none;
}

.mega-menu {
  display: table;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.navbar .navbar-nav li.dropdown-mega-menu {
  position: static;
}

  .navbar .navbar-nav li.dropdown-mega-menu .dropdown-menu {
    right: 0;
    padding-left: 0;
    padding-right: 0;
  }

.mega-menu-col {
  border-right: 1px solid #ddd;
  padding: 0;
}

  .mega-menu-col:last-child {
    border-right: 0 !important;
  }

.dropdown-menu li a i {
  font-size: 14px;
  width: 20px;
  display: inline-block;
  vertical-align: middle;
}

.navbar .navbar-nav > li > .nav-link.cart_trigger i {
  font-size: 20px;
}

.cart_list li {
  list-style: outside none none;
}

body header .cart_count {
  position: relative;
  top: -6px;
  left: -18px;
  font-size: 11px;
  background-color: #ed1c24;
  border-radius: 50px;
  height: 16px;
  line-height: 16px;
  color: #fff;
  min-width: 16px;
  text-align: center;
  padding: 0 5px;
  display: inline-block;
  vertical-align: top;
}

.navbar-nav .dropdown-menu.cart_box {
  width: 320px;
  position: absolute !important;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: -webkit-calc(100% - 30px) 0;
  transform-origin: calc(100% - 30px) 0;
  display: block;
  transition: all 0.25s ease-in-out;
  padding: 0;
}

  .navbar-nav .dropdown-menu.cart_box.show {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

.cart_list li {
  border-bottom: 1px solid #3f3f3f;
  padding: 15px;
  width: 100%;
}

.item_remove {
  float: right;
  margin-left: 5px;
  color: #333 !important;
}

.cart_list img {
  border: 1px solid #ddd background-color: #ffffff;
  float: left;
  margin-right: 10px;
  max-width: 80px;
}

.cart_list a {
  font-size: 14px;
  vertical-align: top;
  padding: 0 !important;
  text-transform: capitalize;
  font-weight: 600;
}

.cart_quantity {
  color: #ffffff;
  display: table;
  margin-top: 5px;
  font-weight: 500;
}

.cart_total .cart_amount {
  float: right;
  color: #F32B56;
}

.cart_box .cart_list {
  width: 100%;
  padding: 0 !important;
  max-height: 242px;
  overflow-y: auto;
}

.cart_list li {
  display: inline-block;
  width: 100%;
}

.dropdown-menu .cart_list li a i {
  width: auto;
}

.cart_total {
  color: #ffffff;
  margin: 0;
  padding: 10px 15px;
  font-weight: 600;
  text-align: right;
}

  .cart_total strong {
    float: left;
    font-weight: 600;
  }

.cart_buttons {
  margin: 0;
  padding: 10px 15px 20px;
  text-align: center;
}

  .cart_buttons .view-cart, .cart_buttons .checkout {
    padding: 8px 20px !important;
  }

.top-header {
  padding: 0px 0;
  transition: all 0.5s ease-in-out;
}

  .top-header.light_skin {
    border-color: rgba(255,255,255,0.2);
  }

  .top-header[class*="bg_"], .top-header[class*="bg-"] {
    border: 0;
  }

  .top-header a {
    line-height: normal;
    color: #8C9FA6;
  }

  .top-header li a:hover,
  .top-header .active a {
    color: #30454E;
  }

.header_wrap .social_icons li {
  padding-bottom: 0;
}

.social_icons, .contact_detail {
  font-size: 0;
}

  .contact_detail > li:last-child,
  .header_list > li:last-child {
    padding-right: 0;
  }

.search_wraps {
  position: relative;
}

  .search_wraps .form-control,
  .search_wraps .form-control:focus {
    background: #f2f6f7;
    border: 0;
  }

.social_icons li {
  display: inline-block;
  padding: 0px 5px 5px 0;
}

  .social_icons li a {
    font-size: 18px;
    color: #687188;
    height: 36px;
    width: 36px;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
  }

    .social_icons li a:hover,
    .header_wrap .social_icons li a:hover {
      color: #ed1c24;
    }

.social_icons.social_small li a {
  height: 25px;
  width: 25px;
  line-height: 26px;
  font-size: 16px;
}

.social_white .social_icons li a, .social_white.social_icons li a,
.header_wrap .social_white .social_icons li a, .header_wrap .social_white.social_icons li a {
  color: #939393;
  border-color: #939393;
}

  .social_white .social_icons li a:hover, .social_white.social_icons li a:hover {
    color: #fff;
  }

.border_social .social_icons li a:hover, .border_social.social_icons li a:hover {
  background-color: #ed1c24;
  border-color: #ed1c24;
  color: #fff;
}

.border_social.social_white .social_icons li a:hover, .social_white.border_social.social_icons li a:hover {
  color: #fff;
}

.border_social li a {
  border: 1px solid #687188;
  line-height: 35px;
}

.social_icons li:last-child a {
  margin-right: 0px;
}

.radius_social li a {
  border-radius: 5px;
}

.rounded_social li a {
  border-radius: 50px;
}

.social_icons.social_style1 li a {
  background-color: rgba(255,255,255,0.1);
}

  .social_icons.social_style1 li a:hover {
    background-color: #ed1c24;
    color: #fff !important;
  }

.social_style2 li a {
  background-color: #FFF;
  box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.3);
}

.social_style3 li a {
  background-color: #F6F8F9;
  color: #B2B2B7;
  font-size: 20px;
  height: 50px;
  width: 50px;
  line-height: 50px;
}

.social_style4 li a {
  background-color: #fff;
  color: #ed1c24;
}

  .social_style4 li a:hover {
    background-color: #ed1c24;
    color: #fff;
  }

  .social_style4 li a:hover {
    background-color: #ed1c24;
    color: #fff !important;
  }

.social_style5 li a {
  font-size: 20px;
}

.social_style5 li:last-child {
  padding-right: 0;
}

.vertical_social li {
  display: block;
}

.header_wrap .social_icons li a {
  color: #333;
}

.contact_detail i {
  margin-right: 10px;
  vertical-align: middle;
  font-size: 16px;
}

.contact_detail span {
  vertical-align: middle;
}

.contact_detail > li,
.header_list > li {
  color: #333;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 15px 2px 0;
}

.top-header .header_list > li {
  padding: 2px 6px;
}

.header_list > li i {
  margin-right: 6px;
}

.header_list > li .dropdown-item:hover,
.custome_dropdown .ddChild li:hover,
.contact_detail > li a:hover {
  color: #F32B56;
}

.top-header .header_list > li .cart_trigger i {
  font-size: 24px;
  vertical-align: middle;
}

.top-header .header_list > li i {
  font-size: 20px;
  vertical-align: middle;
}

  .top-header .header_list > li i.icon-user {
    margin-left: 10px;
  }

.header_dropdown .dropdown-menu {
  border-radius: 0;
  padding: 0;
  margin-top: 0px;
  border: 0;
  transform: none !important;
  top: 100% !important;
  will-change: auto !important;
}

  .header_dropdown .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="top"] {
    right: 0;
    left: auto !important;
  }

.header_dropdown .dropdown-item {
  padding: 5px 10px;
  border-bottom: 1px solid #e6e6e6;
  text-transform: capitalize;
}

.contact_detail li:first-child {
  margin-left: 0px;
}

.contact_detail li a span {
  vertical-align: middle;
}

.top-header.light_skin .contact_detail li,
.top-header.light_skin .contact_detail li a,
.top-header.light_skin .widget_text span {
  color: #fff;
}

.top-header.dark_skin .contact_detail li {
  color: #000;
}

.nav-fixed .top-header,
.nav-fixed .middle-header {
  display: none !important;
}

.navbar-toggler {
  float: right;
  margin: 13px 0 0 3px;
  font-size: 28px;
  color: #333;
  transition: all 0.5s ease 0s;
  border-radius: 0;
  height: 35px;
  width: 35px;
  padding: 0;
  line-height: 36px;
  transition: none;
}

  .navbar-toggler[aria-expanded="true"] span::before {
    content: "\f129";
    font-size: 16px;
  }

  .navbar-toggler[aria-expanded="true"] {
    line-height: 32px;
    font-size: 20px;
  }

header .attr-nav + .social_icons {
  border-left: 1px solid #333;
  margin-left: 5px;
  padding-left: 5px;
}

  header .attr-nav + .social_icons li {
    padding: 0;
  }

header.light_skin .attr-nav + .social_icons {
  border-color: #fff;
}

header.light_skin.nav-fixed .attr-nav + .social_icons {
  border-color: #333;
}

header.light_skin.nav-fixed .social_icons li a {
  color: #000;
}

  header.light_skin.nav-fixed .social_icons li a:hover {
    color: #0E93D8;
  }

.search_box {
  position: relative;
}

  .search_box input {
    padding-right: 30px;
  }

  .search_box button {
    border: 0;
    padding: 0 10px;
    background-color: transparent;
    font-size: 22px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
  }

.top-header.light_skin .header_list li a,
.top-header.light_skin .ddArrow::before,
.top-header.light_skin .ddcommon .ddTitle .ddlabel {
  color: #fff;
}

.top-header.light_skin .header_list > li::before {
  background-color: #fff;
}

.top-header .custome_dropdown .ddChild {
  background-color: #fff;
  border: 0 !important;
  min-width: 10rem;
  left: -10px;
}

.top-header.light_skin .header_list li a:hover,
.top-header.light_skin .contact_detail li a:hover,
.top-header.light_skin .header_list li a:hover span {
  color: #ed1c24;
}

.main_menu_uppercase .navbar-nav > li > .nav-link {
  text-transform: uppercase;
}

.main_menu_weight_100 .navbar .navbar-nav > li > .nav-link {
  font-weight: 100;
}

.main_menu_weight_200 .navbar .navbar-nav > li > .nav-link {
  font-weight: 200;
}

.main_menu_weight_300 .navbar .navbar-nav > li > .nav-link {
  font-weight: 300;
}

.main_menu_weight_400 .navbar .navbar-nav > li > .nav-link {
  font-weight: 400;
}

.main_menu_weight_500 .navbar .navbar-nav > li > .nav-link {
  font-weight: 500;
}

.main_menu_weight_600 .navbar .navbar-nav > li > .nav-link {
  font-weight: 600;
}

.main_menu_weight_700 .navbar .navbar-nav > li > .nav-link {
  font-weight: 700;
}

.main_menu_weight_800 .navbar .navbar-nav > li > .nav-link {
  font-weight: 800;
}

.main_menu_weight_900 .navbar .navbar-nav > li > .nav-link {
  font-weight: 900;
}

.main_menu_size_16 .navbar .navbar-nav > li > .nav-link,
.dd_menu_size_16 .navbar .navbar-nav .dropdown-item,
.dd_menu_size_16 .cart_list a {
  font-size: 16px;
}

.header_banner_wrap {
  padding: 15px;
  height: 100%;
}

.header_banner {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0;
}

.header_banner_wrap .header_banner {
  -ms-flex-align: center;
  align-items: center;
}

.header_banner_content {
  position: relative;
  width: 100%;
}

.header_banner_text {
  color: #fff;
}

.header_banner_title {
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.banner_img {
  position: relative;
}

.shop_bn_content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 1;
}

  .shop_bn_content * {
    color: #fff;
  }

.shop_title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.shop_subtitle {
  font-size: 20px;
}

.shop_banner {
  position: relative;
  display: inline-block;
  width: 100%;
}

  .shop_banner::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    z-index: 01;
  }

  .shop_banner::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    right: 10px;
  }

  .shop_banner .banner_img::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 85px;
    height: 2px;
    background-color: #fff;
  }

.sidebar_menu {
  padding: 50px 30px 30px;
  position: fixed;
  top: 0;
  z-index: 99;
  background-color: #fff;
  box-shadow: -3px 0 3px rgba(0,0,0,.04);
  bottom: 0;
  width: 400px;
  overflow-y: auto;
  right: -400px;
  visibility: hidden;
  height: 100vh;
  transition: all 0.5s ease;
  z-index: 99999;
}

  .sidebar_menu.active {
    right: 0;
    visibility: visible;
  }

.side_panel_close {
  position: absolute;
  right: 30px;
  top: 30px;
}

  .side_panel_close i {
    font-size: 24px;
  }

.sidebar_menu .widget {
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}

.sidebar_left .sidebar_menu,
.sidebar_left_push .sidebar_menu {
  right: auto;
  left: -400px;
}

  .sidebar_left .sidebar_menu.active,
  .sidebar_left_push .sidebar_menu.active {
    left: 0;
  }

.sidebar_left_push.sidetoggle_active {
  overflow-y: hidden;
  left: 400px;
}

.sidebar_left_push {
  overflow-x: hidden;
  position: relative;
  transition: all 0.5s ease;
  left: 0;
}

  .sidebar_left_push.sidetoggle_active .header_wrap.nav-fixed {
    left: 400px;
    right: -400px;
  }

.sidebar_right_push.sidetoggle_active {
  overflow-y: hidden;
  right: 400px;
}

.sidebar_right_push {
  overflow-x: hidden;
  position: relative;
  transition: all 0.5s ease;
  right: 0;
}

  .sidebar_right_push.sidetoggle_active .header_wrap.nav-fixed {
    left: -400px;
    right: 400px;
  }

.sidebar_dark {
  background-color: #222;
}

  .sidebar_dark .sidemenu_close,
  .sidebar_dark p {
    color: #fff;
  }

.header-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  top: 0;
  transition: all 0.5s ease-in-out;
  cursor: url("../images/close.png"), pointer;
}

body.active {
  overflow: hidden;
  padding-right: 17px;
}

.sidetoggle_icon {
  width: 22px;
  display: block;
  margin: 10px 0;
  position: relative;
  transition: all 0.5s ease-in-out;
  height: 1px;
}

  .sidetoggle_icon::before {
    content: "";
    background-color: #333;
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    top: -7px;
    right: 0;
    transition-duration: .3s,.3s;
    transition-delay: .3s,0s;
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .sidetoggle_icon::after {
    content: "";
    background-color: #333;
    display: block;
    height: 1px;
    width: 15px;
    position: absolute;
    bottom: -7px;
    right: 0;
    transition-duration: .3s,.3s;
    transition-delay: .3s,0s;
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

.sidetoggle.open .sidetoggle_icon::before {
  top: 0;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition-property: top,transform;
  transition-delay: 0s,.3s;
}

.sidetoggle.open .sidetoggle_icon::after {
  bottom: 0;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition-delay: 0s,.3s;
  transition-property: bottom,transform;
  width: 100%;
}

.toggle_center_line {
  background-color: #333;
  height: 1px;
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transition: all 0.6s ease-in-out;
}

.sidetoggle.open .toggle_center_line {
  opacity: 0;
}

.sidetoggle_icon:hover:after {
  width: 22px;
}

.widget_text p:last-child {
  margin-bottom: 0;
}

.widget_contact_info .contact_wrap li:last-child {
  margin-bottom: 0;
}

.hover_menu_style1 .navbar-collapse .navbar-nav > li > a {
  position: relative;
  padding: 30px 0px;
  margin: 0 10px;
}

.hover_menu_style1.nav-fixed .navbar .navbar-collapse .navbar-nav > li > .nav-link {
  padding: 20px 0px;
}

.hover_menu_style1 .navbar-collapse .navbar-nav > li > a::before {
  display: block;
  position: absolute;
  bottom: 20px;
  right: 0px;
  height: 2px;
  width: 0;
  z-index: 0;
  content: '';
  background-color: #ed1c24;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.hover_menu_style1.nav-fixed .navbar-collapse .navbar-nav > li > a::before {
  bottom: 10px;
}

.hover_menu_style1 .navbar-collapse .navbar-nav > li:hover > a::before,
.hover_menu_style1 .navbar-collapse .navbar-nav > li > a.active::before {
  left: 0;
  right: auto;
  width: 100%;
}

input.text {
  display: none;
}

.dd.ddcommon {
  cursor: pointer;
  /*padding-right: 10px;
	position: relative;*/
  outline: none;
}

.ddcommon .ddTitleText img,
.ddcommon .ddChild li img {
  border-radius: 0;
  height: 20px;
  width: 26px;
  margin-right: 10px;
}

.ddcommon .ddTitleText {
  padding: 0;
  display: inline-block;
  text-transform: uppercase;
}

.ddcommon .ddlabel {
  white-space: nowrap;
}

.ddcommon .ddTitle .ddlabel {
}

.ddTitle.borderRadiusTp {
  position: relative;
}

.ddArrow::before {
  content: "\f3d0";
  color: #878787;
  font-family: ionicons;
  position: absolute;
  right: 10px;
  top: 0px;
}

.ddcommon .ddChild {
  background-color: #fff;
  height: auto !important;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  display: block !important;
  opacity: 0;
  visibility: hidden !important;
  top: 100% !important;
  right: 0;
  left: 0;
  padding: 30px;
}

.ddcommon.borderRadiusTp .ddChild {
  opacity: 1;
  visibility: visible !important;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.ddcommon .ddChild li {
  cursor: pointer;
  line-height: normal;
  list-style: outside none none;
  padding: 8px 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

/*===================================*
  02.END HEADER STYLE
*===================================*/

/*===================================*
  03.START BANNER,SLIDER STYLE
*===================================*/
.banner_section {
  position: relative;
}

.banner_content_wrap {
  position: relative;
  z-index: 1;
}

.banner_half_content {
  padding: 100px 0 80px;
  z-index: 0;
}

.full_screen.banner_half_content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.banner_section:not(.full_screen),
.banner_section:not(.full_screen) .carousel-item,
.banner_section:not(.full_screen) .banner_content_wrap,
.banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
  height: 800px;
}

.full_screen, .full_screen .carousel-item {
  height: 100vh;
  min-height: 45rem;
}

.banner_section.slide_medium,
.banner_section.slide_medium .carousel-item,
.banner_section.slide_medium .banner_content_wrap,
.banner_section.slide_medium .banner_content_wrap .carousel-item {
  height: 550px;
}

.banner_section .banner_slide_content {
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.carousel-item img {
  position: relative;
  z-index: -1;
  width: 100%;
}

.carousel-control-next, .carousel-control-prev {
  background-color: rgba(0,0,0,0.5);
  font-size: 18px;
  height: 50px;
  opacity: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  transition: all 0.3s ease-in-out;
}

  .carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    opacity: 0;
  }

.carousel:hover .carousel-control-next, .carousel:hover .carousel-control-prev {
  opacity: 1;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev {
  left: 20px;
}

.carousel_style1 .carousel-control-next, .carousel_style1 .carousel-control-prev {
  border-radius: 100%;
}

.carousel_style2 .carousel-control-next, .carousel_style2 .carousel-control-prev {
  font-size: 16px;
  border-radius: 4px;
  height: 40px;
  width: 40px;
}

.light_arrow .carousel-control-next, .light_arrow .carousel-control-prev {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  color: #000;
}

  .carousel-control-next:hover, .carousel-control-prev:hover,
  .light_arrow .carousel-control-next:hover, .light_arrow .carousel-control-prev:hover {
    background-color: #ed1c24;
    color: #fff;
  }

.indicators_style1 {
  counter-reset: step;
}

  .indicators_style1.carousel-indicators li {
    width: auto;
    height: auto;
    background-color: transparent;
    text-indent: 0;
    transition: all 0.5s ease-in-out;
    opacity: 1;
  }

    .indicators_style1.carousel-indicators li::before {
      content: "0"counter(step);
      color: #fff;
      counter-increment: step;
      position: static;
      height: auto;
      width: auto;
      margin: 0 10px;
    }

    .indicators_style1.carousel-indicators li::after {
      content: "";
      margin: 0 8px;
      font-size: 30px;
      color: #fff;
      bottom: -5px;
      line-height: normal;
      height: 20px;
      left: 28px;
      font-weight: 300;
      background-color: #fff;
      width: 2px;
      transform: rotate(10deg);
      display: inline-block;
      vertical-align: middle;
    }

    .indicators_style1.carousel-indicators li:last-child::after {
      opacity: 0;
      margin: 0;
    }

    .indicators_style1.carousel-indicators li.active::before {
      color: #ed1c24;
    }

.indicators_style2,
.indicators_style3 {
  margin-bottom: 15px;
}

  .indicators_style2 li {
    width: 10px;
    height: 10px;
    background-clip: inherit;
    border: 0;
    margin: 8px;
    position: relative;
  }

    .indicators_style2 li::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      border: 2px solid #fff;
      margin: -4px;
    }

  .indicators_style3 li {
    background-color: #333;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    background-clip: inherit;
    border: 0;
    margin: 8px;
    position: relative;
  }

    .indicators_style3 li::before {
      content: "";
      position: absolute;
      border-radius: 100%;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      border: 2px solid #333;
      margin: -4px;
    }

    .indicators_style3 li.active {
      background-color: #ed1c24;
    }

      .indicators_style3 li.active:before {
        border-color: #ed1c24;
      }

.indicators_style4 li {
  background-color: #fff;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  background-clip: inherit;
  border: 0;
  margin: 5px;
  position: relative;
}

.indicators_style5 {
  display: block;
  right: 20%;
  left: auto;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  bottom: auto;
}

  .indicators_style5 li {
    width: 3px;
    height: 30px;
    border-top: 0;
  }

    .indicators_style5 li.active {
      background-color: #ed1c24;
      height: 50px;
    }

.banner_content .carousel-item {
  padding: 100px 0;
}

.banner_content h2 {
  font-size: 38px;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: 700;
  /*	text-transform: capitalize;*/
}

.banner_content p {
  margin-bottom: 50px;
  font-weight: 400;
  font-size: 20px;
}

.banner_content small {
  font-size: 14px;
  color: #8C9FA6;
}

.banner_shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  z-index: -1;
}

  .banner_shape img {
    width: 100%;
  }

.wave_shape_bottom::before {
  display: block;
  height: 100%;
  content: "";
  background-position: bottom center;
  position: absolute;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  right: 0;
}

.banner_content1 h2 {
  font-size: 78px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.background_shape {
  position: absolute;
  width: 200px;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 35%;
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 100%);
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#1affffff',GradientType=0 );
  -moz-transform: skewX(30deg);
  -webkit-transform: skewX(30deg);
  transform: skewX(30deg);
  transform-origin: left bottom;
  pointer-events: none;
}

  .background_shape:before {
    content: "";
    position: absolute;
    width: 200px;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 100%;
    background: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 100%);
    background: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.1) 100%);
    background: linear-gradient(to top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#1affffff',GradientType=0 );
  }

.banner_center_content {
  margin-top: -70px;
}

.carousel-indicators.vertical_center_right {
  display: block;
  right: 40px;
  top: 50%;
  margin: 0;
  left: auto;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  bottom: auto;
}

.indicators_style2.vertical_center_right li {
  margin: 15px 0;
}

.banner_content_border {
  border: 10px solid #ed1c24;
  padding: 50px;
  position: relative;
}

.slide_banner_img {
  height: 100%;
  position: relative;
  z-index: -1;
}

.zoom-in {
  -webkit-animation: zoomin 5s;
  -moz-animation: zoomin 5s;
  -o-animation: zoomin 5s;
  animation: zoomin 5s;
}

@keyframes zoomin {
  0% {
    -moz-transform: scale(1.2) rotate(3deg);
    -webkit-transform: scale(1.2) rotate(3deg);
    transform: scale(1.2) rotate(3deg);
  }

  100% {
    -moz-transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }
}


.header_with_topbar.transparent_header + .banner_section .banner_slide_content {
  margin-top: 45px;
}

.owl-carousel.owl-height {
  height: 100%;
}

.owl-height .owl-stage-outer {
  height: 100%;
}

  .owl-height .owl-stage-outer .owl-stage {
    height: 100%;
  }

.owl-height .owl-item {
  height: 100%;
}

  .owl-height .owl-item .item, .owl-height .owl-item .double-block {
    height: 100%;
  }

    .owl-height .owl-item .background_bg, .owl-height .owl-item .tco__partners-wrapper, .owl-height .owl-item .double-block > img {
      height: 100%;
    }

.banner_section .background_bg {
  background: no-repeat;
  background-position: center right;
}

.banner_section .owl-carousel.owl-height .owl-dots {
  position: relative;
  margin-top: -40px;
}

/*===================================*
  03.END BANNER,SLIDER STYLE
*===================================*/


.big_spacing {
  margin-right: -36px;
  margin-left: -36px;
}

  .big_spacing [class^="col-"] {
    padding-right: 36px;
    padding-left: 36px;
  }

.btn-group-sm > .btn, .btn-sm {
  padding: 10px 20px;
  font-weight: 500;
}


.card_box .card_img img {
  width: 100%;
}

.card_box .card_content {
  padding: 25px;
}

  .card_box .card_content h4 {
    font-size: 22px;
    font-weight: bold;
  }

  .card_box .card_content p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 15px;
  }

.solutions [class^="col-"]:nth-child(3n+2) .card_box {
  margin-top: 40px;
}

.solutions [class^="col-"]:nth-child(3n+3) .card_box {
  margin-top: 80px;
}


.card_img {
  position: relative;
}

  .card_img .lable {
    position: absolute;
    background-color: #ddd;
    bottom: 0;
    left: 20px;
    padding: 5px 18px;
    font-weight: 600;
    color: #fff;
  }

    .card_img .lable.lable_blog {
      background-color: #a5cf4c;
    }

    .card_img .lable.lable_white_Paper {
      background-color: #0097c5;
    }

    .card_img .lable.lable_video {
      background-color: #ed1c24;
    }

.industries_box {
  margin-bottom: 60px;
  margin-left: 30px;
}

.industries_box,
.industries_img {
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all .5s ease-in-out;
}

  .industries_box .industries_img img {
    width: 100%;
  }

.label {
  padding: 15px 20px;
  display: inline-block;
  font-weight: bold;
}

.lable_red {
  background-color: #a80000;
  color: #fff;
}

.lable_green {
  background-color: #008272;
  color: #fff;
}

.lable_blue {
  background-color: #0097c5;
  color: #fff;
}

.lable_christalle {
  background-color: #32145a;
  color: #fff;
}

.lable_conifer {
  background-color: #a5cf4c;
  color: #fff;
}

.lable_navy_Blue {
  background-color: #0078d7;
  color: #fff;
}

.industries_box .industries_img .label {
  position: absolute;
  left: -25px;
  bottom: 0;
}

.hover_box {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all .5s ease-in-out;
}

.industries_box .hover_box * {
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
}

.industries_box:hover .hover_box {
  opacity: 1;
  visibility: visible;
}

.hover_box_red:hover .hover_box * {
  color: #fff;
}

.industries_box:hover .industries_img .label {
  display: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all .5s ease-in-out;
}

.hover_box_red:hover .hover_box {
  background-color: rgba(168,0,0,0.9);
}

.hover_box_green:hover .hover_box {
  background-color: rgba(0,130,114,0.9);
}

.hover_box_blue:hover .hover_box {
  background-color: rgba(0,151,197,0.9);
}

.hover_box_christalle:hover .hover_box {
  background-color: rgba(50,20,90,0.9);
}

.hover_box_conifer:hover .hover_box {
  background-color: rgba(165,207,76,0.9);
}

.hover_box_navy_Blue:hover .hover_box {
  background-color: rgba(0,120,215,0.9);
}


/*===================================*
  04.START ABOUT STYLE
*===================================*/
.company_video {
  width: 100%;
  height: 500px;
}

.fb_style1 {
  padding-right: 30px;
  padding-top: 30px;
  position: relative;
  display: table;
  margin: 0 auto;
}

  .fb_style1::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-color: #F0F1F9;
    z-index: -1;
    height: 300px;
    width: 300px;
  }

  .fb_style1 img {
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
  }

.service_img {
  padding: 0 30px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.about_double_img {
  position: relative;
  padding-top: 80px;
}

.about_box_wrap {
  position: relative;
}

.first_img {
  max-width: 360px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.second_img {
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  max-width: 360px;
  position: absolute;
  top: 0;
  right: 0;
}

.about_wrap {
  padding-left: 50px;
}

.about_bg {
  background-position: top center;
  background-size: cover;
  z-index: 0;
}

.profile_info > li {
  list-style: none;
  margin-bottom: 20px;
}

  .profile_info > li:last-child {
    margin-bottom: 0;
  }

.profile_info span.title {
  float: left;
  max-width: 100px;
  width: 100%;
  font-weight: 500;
  color: #333;
  text-transform: capitalize;
}

  .profile_info span.title + * {
    overflow: hidden;
    margin: 0;
    line-height: normal;
    color: #687188;
  }

.profile_info a:hover {
  color: #ed1c24;
}

.about_img_box {
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
}

.about_double_img2 {
  padding-bottom: 100px;
}

  .about_double_img2 .second_img {
    bottom: 0;
    top: auto;
  }

.about_single_img {
  position: relative;
}

  .about_single_img .play_icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    text-align: center;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .about_single_img img {
    width: 100%;
  }
/*===================================*
  04.END ABOUT STYLE
*===================================*/

/*===================================*
  05.START ICON BOX STYLE
*===================================*/
.ibc_orange {
  color: #FF9F54 !important;
  background-color: rgba(255,159,84,0.2) !important;
}

.ibc_purple {
  color: #B598F6 !important;
  background-color: rgba(181,152,246,0.2) !important;
}

.ibc_pink {
  color: #FA247B !important;
  background-color: rgba(250,36,123,0.2) !important;
}

.ibc_green {
  color: #44CEB0 !important;
  background-color: rgba(68,206,176,0.2) !important;
}

.ibc_red {
  color: #FA5E5D !important;
  background-color: rgba(250,94,93,0.2) !important;
}

.ibc_blue {
  color: #439CEE !important;
  background-color: rgba(67,156,238,0.2) !important;
}

.icon_box {
  margin-bottom: 30px;
}

.icon {
  margin-bottom: 15px;
}
  /*.icon_box_content h1,
.icon_box_content h2,
.icon_box_content h3,
.icon_box_content h4,
.icon_box_content h5,
.icon_box_content h6 {
	text-transform: capitalize;
}*/
  .icon i {
    font-size: 30px;
  }

.icon_box p {
  font-size: 16px;
}

  .icon_box p:last-child {
    margin: 0;
  }

.icon_box_content .link i {
  vertical-align: middle;
  margin-left: 2px;
}

.box_img {
  margin-bottom: 15px;
}

.icon_box_style1,
.icon_box_style2 {
  padding: 30px;
  background-color: #fff;
}

  .icon_box_style1 .icon {
    color: #ffffff;
    background-color: #ed1c24;
    height: 90px;
    width: 90px;
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    position: relative;
    z-index: 1;
  }

    .icon_box_style1 .icon i {
      line-height: 90px;
    }

    .icon_box_style1 .icon::before {
      background-color: #ed1c24;
      bottom: 0px;
      content: "";
      display: block;
      left: 0px;
      position: absolute;
      right: 0px;
      top: 0px;
      z-index: -1;
      margin: 0px;
      border-radius: 100%;
      opacity: 0.5;
      transition: all 0.3s ease-in-out;
    }

  .icon_box_style1:hover .icon::before {
    margin: -7px;
  }

  .icon_box_style2 .icon {
    color: #ed1c24;
    background-color: rgba(31,224,117,0.2);
    height: 70px;
    width: 70px;
    display: inline-block;
    border-radius: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
  }

    .icon_box_style2 .icon i {
      line-height: 70px;
    }

  .icon_box_style2:hover .icon {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: tada;
    animation-name: tada;
  }

.icon_box_style3 {
  position: relative;
  padding: 20px;
  background-color: #fff;
  -moz-transition: transform .25s cubic-bezier(.68,-0.55,.27,1.55);
  -webkit-transition: transform .25s cubic-bezier(.68,-0.55,.27,1.55);
  transition: transform .4s cubic-bezier(.68,-0.55,.27,1.55);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
  border-radius: 4px;
}

  .icon_box_style3:hover {
    -moz-transform: translate3d(0,-5px, 0);
    -webkit-transform: translate3d(0,-5px, 0);
    transform: translate3d(0,-5px, 0);
  }

  .icon_box_style3 .icon i {
    color: #ed1c24;
    font-size: 40px;
  }

  .icon_box_style3 a.overflow_link,
  .section_stage a.overflow_link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

.icon_box_style4 {
  padding: 50px 40px;
  border: 1px solid #ddd;
  margin-left: -1px;
  margin-bottom: 0;
  margin-top: -1px;
}

  .icon_box_style4 .icon i {
    font-size: 40px;
    color: #ed1c24;
  }

  .icon_box_style4 .icon {
    margin-bottom: 20px;
  }

  .icon_box_style4 .icon_box_content h5 {
    margin-bottom: 20px;
    font-weight: bold;
  }

  .icon_box_style4 .box_link {
    transition: none;
    position: relative;
    padding-bottom: 6px;
    display: inline-block;
  }

    .icon_box_style4 .box_link::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      background-color: #292b2c;
      width: 30px;
      transition: all 0.3s ease-in-out;
    }

  .icon_box_style4:hover .box_link::before {
    background-color: #fff;
    width: 50px;
  }

  .icon_box_style4:hover {
    background-color: #ed1c24;
  }

    .icon_box_style4:hover .icon i,
    .icon_box_style4:hover .icon_box_content * {
      color: #fff;
    }

.icon_box_style5 {
  background-color: #fff;
  border: 2px solid #E7EDF3;
  padding: 20px 15px;
  position: relative;
}

  .icon_box_style5::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 2px solid #E7EDF3;
    margin: -10px;
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all 0.5s ease-in-out;
    z-index: -1;
  }

  .icon_box_style5:hover:before {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .icon_box_style5 .icon {
    float: left;
    margin-right: 15px;
    margin-bottom: 0;
  }

    .icon_box_style5 .icon i {
      font-size: 50px;
      color: #ed1c24;
      line-height: 60px;
    }

  .icon_box_style5 .icon_box_content {
    overflow: hidden;
  }

    .icon_box_style5 .icon_box_content h5,
    .icon_box_style6 .icon_box_content h5 {
      font-weight: 600;
    }

.icon_box_style6 {
  padding: 30px 15px;
  position: relative;
  z-index: 1;
  border: 1px solid #ddd;
}

  .icon_box_style6 .icon i {
    font-size: 50px;
    color: #ed1c24;
    line-height: 1;
  }

  .icon_box_style6[class*="overlay_bg_"]:before {
    z-index: -1;
  }

  .icon_box_style6::before {
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    border-left: 2px solid #ed1c24;
    height: 0px;
    width: 0px;
    opacity: 0;
    border-top: 2px solid #ed1c24;
    transition: all 0.5s ease-in-out;
  }

  .icon_box_style6::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    border-right: 2px solid #ed1c24;
    height: 0px;
    width: 0px;
    opacity: 0;
    border-bottom: 2px solid #ed1c24;
    transition: all 0.5s ease-in-out;
  }

  .icon_box_style6:hover::before, .icon_box_style6:hover::after {
    opacity: 1;
    height: 30px;
    width: 30px;
  }

  .icon_box_style6 .icon_box_content h1,
  .icon_box_style6 .icon_box_content h2,
  .icon_box_style6 .icon_box_content h3,
  .icon_box_style6 .icon_box_content h4,
  .icon_box_style6 .icon_box_content h5,
  .icon_box_style6 .icon_box_content h6 {
    margin-bottom: 15px;
  }

  .icon_box_style6 .icon_box_content p {
    margin-bottom: 15px;
  }

  .icon_box_style6 .icon_box_content .link {
    border-bottom: 1px solid #333;
  }

    .icon_box_style6 .icon_box_content .link:hover {
      border-bottom-color: #ed1c24;
    }

.icon_box_style7 {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(35,54,69,0.05);
}

  .icon_box_style7 .icon {
    color: #ed1c24;
    background-color: #DFFFED;
    height: 90px;
    width: 90px;
    text-align: center;
    display: inline-block;
    overflow: hidden;
    border-radius: 100%;
    position: relative;
    z-index: 1;
  }

    .icon_box_style7 .icon i {
      display: inline-block;
      line-height: 90px;
      font-size: 44px;
      transition: all 0.5s ease-in-out;
    }

  .icon_box_style7 .icon_box_content p {
    margin-bottom: 10px;
  }

  .icon_box_style7 .link {
    font-weight: 500;
    font-size: 15px;
  }

  .icon_box_style7:hover .icon i {
    -webkit-animation: toLeftFromRight 0.3s forwards;
    -moz-animation: toLeftFromRight 0.3s forwards;
    animation: toLeftFromRight 0.3s forwards;
  }

@-webkit-keyframes toLeftFromRight {
  49% {
    -webkit-transform: translate(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translate(100%);
  }

  51% {
    opacity: 1;
  }
}

@-moz-keyframes toLeftFromRight {
  49% {
    -moz-transform: translate(-100%);
  }

  50% {
    opacity: 0;
    -moz-transform: translate(100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes toLeftFromRight {
  49% {
    transform: translate(-100%);
  }

  50% {
    opacity: 0;
    transform: translate(100%);
  }

  51% {
    opacity: 1;
  }
}

.icon_box_style8 {
  padding: 30px;
  border: 2px solid #eee;
}

  .icon_box_style8 .icon i {
    color: #ed1c24;
    font-size: 50px;
    line-height: 1;
  }

  .icon_box_style8 .icon_box_content h5 {
    position: relative;
    padding-bottom: 15px;
  }

    .icon_box_style8 .icon_box_content h5::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      width: 50px;
      height: 2px;
      background-color: #ed1c24;
      bottom: 0;
    }

  .icon_box_style8.text-center .icon_box_content h5::before {
    margin: 0 auto;
  }

.icon_box_style9 .icon {
  float: left;
  margin-right: 15px;
  margin-bottom: 0;
  width: 50px;
  text-align: center;
  height: 50px;
  position: relative;
  z-index: 0;
}

  .icon_box_style9 .icon i {
    line-height: 50px;
    color: #ed1c24;
    font-size: 40px;
  }

.icon_box_style9 .icon_box_content {
  overflow: hidden;
}

.icon_box_style9 .icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 35px;
  width: 35px;
  background-color: #ed1c24;
  border-radius: 60px 30px 50px 50px / 40px 40px 50px 60px;
  z-index: -1;
  opacity: 0.15;
}

.icon_box_style10 {
  padding: 30px;
  background-color: #fff;
}

  .icon_box_style10 .icon {
    color: #ed1c24;
    background-color: rgba(31,224,117,0.2);
    height: 90px;
    width: 90px;
    display: inline-block;
    border-radius: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
  }

    .icon_box_style10 .icon i {
      line-height: 90px;
      font-size: 40px;
    }

  .icon_box_style10:hover .icon {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: swing;
    animation-name: swing;
  }

.icon_box_style12 {
  padding: 30px 20px;
}

  .icon_box_style12 .icon i {
    line-height: 50px;
    color: #ed1c24;
    font-size: 40px;
  }
/*===================================*
  05.END ICON BOX STYLE
*===================================*/

/*===================================*
  06.START LIST STYLE
*===================================*/
.list_style1 li::before {
  content: "";
  left: 0;
  position: absolute;
  top: 12px;
  background-color: #00B0F0;
  text-align: center;
  font-size: 16px;
  width: 12px;
  height: 12px;
  border-radius: 100%;
}

.list_style1 li {
  list-style: outside none none;
  padding: 5px 0px 5px 25px;
  position: relative;
  margin-bottom: 20px;
}

  .list_style1 li:last-child {
    margin-bottom: 0px;
  }

.large_text li {
  font-size: 20px;
}

.list_style2 li::before {
  content: "";
  left: 0;
  position: absolute;
  top: 12px;
  background-color: #707070;
  text-align: center;
  height: 1px;
  width: 12px;
}

.list_style2 li {
  list-style: outside none none;
  padding: 0px 0px 15px 25px;
  position: relative;
}

.list_style3 li::before {
  content: "\f121";
  font-family: ionicons;
  left: 0;
  position: absolute;
  top: 0px;
  color: #ed1c24;
  text-align: center;
  font-size: 14px;
  background-color: #DFFFED;
  height: 28px;
  width: 28px;
  line-height: 28px;
  border-radius: 100%;
}

.list_style3 li {
  list-style: outside none none;
  padding: 0px 0px 15px 37px;
  position: relative;
}

.list_style4 li {
  list-style: outside none none;
  padding: 0px 0px 15px 37px;
  position: relative;
}

  .list_style4 li i {
    color: #ed1c24;
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 26px;
  }
/*===================================*
  06.START LIST STYLE
*===================================*/

/*===================================*
  07.START COUNTER STYLE
*===================================*/
.box_counter i {
  font-size: 50px;
  color: #333;
  display: block;
}

.box_counter [class^="linearicons-"] {
  margin-bottom: 20px;
}

.box_counter img {
  margin-bottom: 10px;
}

.counter_text {
  font-weight: 600;
}

.box_counter p {
  margin: 0;
}

.counter_white.box_counter i,
.counter_white .counter_text,
.counter_white.box_counter p {
  color: #fff;
}

.counter_style1.box_counter {
  padding-left: 70px;
  position: relative;
}

.counter_style1 .counter_text {
  color: #ed1c24;
}

.counter_style1.box_counter i {
  margin-bottom: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.box_counter.counter_style2 {
  box-shadow: 0 0 20px rgba(35,54,69,0.05);
  border-radius: 10px;
  padding: 30px;
  background-color: #fff;
  text-align: center;
  margin: 0;
}

.counter_style2 i {
  border-radius: 100%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0 auto 15px;
  font-size: 40px;
}

.overlap_counter_bottom {
  position: relative;
}

  .overlap_counter_bottom:before {
    content: "";
    background-color: #fff;
    height: 100px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
  }
/*===================================*
  07.END COUNTER STYLE
*===================================*/

/*===================================*
  08.START PORTFOLIO STYLE
*===================================*/
.carousel_slider li {
  list-style: none;
}

.grid_filter {
  margin-bottom: 30px;
}

  .grid_filter li {
    display: inline-block;
  }

    .grid_filter li a {
      padding: 5px 15px;
      display: block;
      font-size: 16px;
      text-transform: capitalize;
    }

      .grid_filter li a.current {
        color: #ed1c24;
      }

  .grid_filter.filter_style1 li a {
    padding: 5px 20px;
  }

    .grid_filter.filter_style1 li a.current {
      color: #fff;
      background-color: #ed1c24;
    }

  .grid_filter.filter_style2 li a {
    border-bottom: 1px solid transparent;
  }

    .grid_filter.filter_style2 li a.current {
      border-bottom-color: #ed1c24;
    }

.grid_container > li {
  list-style: none;
}

.gutter_small {
  margin: 0 -7.5px 0px -7.5px;
}

  .gutter_small > li {
    padding: 0 7.5px 0px 7.5px;
  }

.gutter_medium {
  margin: 0 -15px 0px -15px;
}

  .gutter_medium > li {
    padding: 0px 15px 0px 15px;
  }

    .gutter_medium > li .portfolio_item,
    .gutter_medium > li .image_gallery_item {
      margin-bottom: 30px;
    }

.gutter_small > li .portfolio_item,
.gutter_small > li .image_gallery_item {
  margin-bottom: 15px;
}

.grid_col1 > li {
  width: 100%;
  float: left;
}

.grid_col2 > li.big_size {
  width: 100%;
}

.grid_col2 > li {
  width: 50%;
  float: left;
}

.grid_col3 > li {
  width: 33.33%;
  float: left;
}

.grid_col4 > li {
  width: 25%;
  float: left;
}

.loadmore > li {
  transition: all 0.5s ease-in-out;
}

.portfolio_item {
  overflow: hidden;
  position: relative;
  border: 2px solid #efeff0;
  padding: 15px;
}

  .portfolio_item .portfolio_img a {
    display: block;
    overflow: hidden;
  }

.portfolio_img img {
  width: 100%;
}

.link_container a {
  background-color: transparent;
  color: #fff;
  font-size: 18px;
  margin: 0 2px;
  text-align: center;
  -moz-transform: translateY(-50);
  -webkit-transform: translateY(-50);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  font-weight: 500;
}

  .link_container a i {
    display: block;
    font-size: 30px;
  }

  .link_container a:hover {
    /*background-color: #ed1c24;
	color: #fff;*/
  }

  .link_container a .ion-ios-play {
    padding-left: 3px;
  }

.portfolio_content {
  /*bottom: 0;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	-ms-justify-content: center;
	justify-content: center;
	-webkit-flex-flow: column nowrap;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	position: absolute;
	top: 0px;
	right: 0;
	left: 0;
	text-align: center;
	transition: all 0.5s ease-in-out;*/
}

.portfolio_item:hover .portfolio_content {
  /*background-color: rgba(0,0,0,0.5);*/
}

.portfolio_desc {
  /*margin-top: 15px;
	text-align: center;*/
}

.link_container {
  text-align: center;
  /*-moz-transform: translateY(50%);
	-webkit-transform: translateY(50%);
	transform: translateY(50%);*/
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.portfolio_item:hover .link_container {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
}

.portfolio_item:hover::after {
  content: "";
  background-color: #ed1c24;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.8;
}

.portfolio_desc h5 {
  border-left: 2px solid #ed1c24;
  padding-left: 10px;
}

  .portfolio_desc h5 a {
    font-weight: bold;
  }

.portfolio_desc a,
.portfolio_desc a:hover {
  /*color: #fff;*/
}

.portfolio_desc h5, .portfolio_desc p {
  /*color: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-duration: 1s;
	animation-fill-mode: both;
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;*/
}

.portfolio_desc p {
  margin: 0;
  font-size: 15px;
}

.portfolio_item:hover .portfolio_desc h5 {
  /*-webkit-animation-duration: 0.6s;
	-webkit-animation-fill-mode: both;
	animation-duration: 0.6s;
	animation-fill-mode: both;
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
	opacity: 1;
	visibility: visible;*/
}

.portfolio_item:hover .portfolio_desc p {
  /*-webkit-animation-duration: 0.7s;
	-webkit-animation-fill-mode: both;
	animation-duration: 0.7s;
	animation-fill-mode: both;
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
	opacity: 1;
	visibility: visible;*/
}

.portfolio_style1 .portfolio_content {
  padding: 20px;
}

  .portfolio_style1 .portfolio_content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 100%;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin: 20px 10px;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
  }

.portfolio_style1 .portfolio_item {
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.portfolio_style1 .portfolio_content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 100%;
  right: 0;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  margin: 10px 20px;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}

.portfolio_style1 .portfolio_item:hover .portfolio_content::before {
  right: 0;
}

.portfolio_style1 .portfolio_item:hover .portfolio_content::after {
  bottom: 0;
}

.portfolio_style1 .link_container a {
  border-radius: 0;
}

.grid_container .owl-carousel.owl-theme .owl-dots {
  margin: 0 !important;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9;
}

.grid_container .owl-carousel {
  z-index: inherit;
}

.grid_container .owl-carousel {
  display: block;
}

  .grid_container .owl-carousel a:nth-child(1n+2) {
    display: none;
  }

.portfolio_item:hover .portfolio_img .carousel_slider.owl-theme .owl-dot span {
  border-color: #fff;
}

  .portfolio_item:hover .portfolio_img .carousel_slider.owl-theme .owl-dot span:hover {
    background-color: transparent;
  }

.portfolio_item:hover .portfolio_img .carousel_slider.owl-theme .owl-dot.active span {
  background-color: #fff;
}

.mfp-ajax-holder .mfp-content .portfolio_ajax {
  max-width: 1140px;
  background-color: #fff;
  margin: 6px auto;
  position: relative;
}

.portfolio_ajax .card-header {
  background-color: transparent;
}

.portfolio_ajax .carousel_slider img {
  width: 100%;
}

.portfolio_ajax .mfp-close {
  margin-top: 15px;
  margin-right: 10px;
}

.portfolio_info_box > li,
.portfolio_info_box2 > li {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

  .portfolio_info_box > li:last-child {
    border-bottom: 0;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }

.portfolio_info_box span,
.portfolio_info_box2 span {
  color: #333;
  font-weight: 600;
  text-transform: capitalize;
  min-width: 100px;
  float: left;
}

.portfolio_info_box2 > li {
  border-bottom: 1px solid #ddd;
}

.portfolio_info_box3 > li {
  border-bottom: 1px solid #999;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

  .portfolio_info_box3 > li:last-child {
    border-bottom: 0;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }

.portfolio_info_box3 span {
  display: block;
  color: #333;
  font-weight: bold;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.portfolio_info_light li,
.portfolio_info_light li span {
  color: #fff;
}

.portfolio_info_light.portfolio_info_box3 > li {
  border-bottom-color: rgba(255,255,255,0.2);
}

.portfolio_share {
  display: inline-block;
  width: 100%;
}

  .portfolio_share h5 {
    float: left;
    margin-right: 20px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 7px;
  }

  .portfolio_share .social_icons {
    overflow: hidden;
  }

.post_nav_home {
  display: table;
  margin: 0 auto;
  font-size: 20px;
}

.post_nav .nav_meta {
  text-transform: capitalize;
  display: block;
  font-size: 14px;
  color: #687188;
}

.post_nav {
  text-transform: capitalize;
}

.post_nav_prev {
  padding-left: 30px;
  position: relative;
}

.post_nav_next {
  padding-right: 30px;
  position: relative;
  text-align: right;
}

  .post_nav_next i {
    right: 0;
    left: auto;
  }

.post_nav i {
  position: absolute;
  left: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.portfolio_text p:last-child {
  margin-bottom: 0;
}

.portfolio_single_img img:not(:last-child) {
  margin-bottom: 30px;
}
/*===================================*
  08.END PORTFOLIO STYLE
*===================================*/


/*===================================*
  12.START FOOTER STYLE
*===================================*/
footer {
  overflow: hidden;
}

.footer_dark {
  background-color: #30454E;
  position: relative;
}

.footer_top {
  padding: 100px 0 30px;
}

.footer_center {
  padding: 0px 0 10px;
}

.footer_bottom {
  padding: 20px 0 30px;
}

.footer_logo {
  margin-bottom: 20px;
}

footer p {
  font-size: 18px;
  margin-bottom: 8px;
}

footer .widget {
  margin-bottom: 30px;
}

footer .widget_title {
  font-family: 'Roboto', sans-serif;
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}

ul.widget_links {
  padding-bottom: 8px;
}

.widget_links li {
  list-style: none;
  padding-bottom: 8px;
}

  .widget_links li:last-child {
    padding-bottom: 0;
  }

  .widget_links li a {
    font-size: 18px;
    color: #687188;
  }

.contact_info > li {
  margin-bottom: 15px;
  list-style: none;
}

  .contact_info > li:last-child {
    margin-bottom: 0px;
  }

.contact_info li i {
  display: inline-block;
  margin-right: 10px;
  margin-top: 4px;
  font-size: 18px;
  vertical-align: top;
}

.contact_info li span {
  float: left;
  margin-right: 10px;
  max-width: 70px;
  width: 100%;
  color: #292b2c;
}

.contact_info span + * {
  overflow: hidden;
  color: #687188;
  margin: 0;
  font-size: 14px;
  line-height: 26px;
}

.contact_info i + * {
  overflow: hidden;
  font-size: 14px;
  color: #687188;
  line-height: 26px;
  margin: 0;
  vertical-align: middle;
  max-width: 78%;
  display: inline-block;
}

.contact_info_light li i {
  border-color: #fff;
  color: #fff;
}

.contact_info_light li span,
.contact_info_light li a {
  color: #fff;
}

.contact_info_style2 i + * {
  font-size: 18px;
}

.contact_info_style2 li i {
  margin-right: 8px;
  margin-top: 2px;
  font-size: 22px;
  color: #ed1c24;
}

.bottom_footer {
  background-color: #30454E;
  padding: 15px 0;
  position: relative;
}

.footer_link li {
  display: inline-block;
  position: relative;
}

  .footer_link li a {
    font-size: 14px;
    padding: 0 5px;
    color: #687188;
  }

.footer_dark h1, .footer_dark h2, .footer_dark h3, .footer_dark h4, .footer_dark h5, .footer_dark h6, .footer_dark p, .footer_dark a, .footer_dark .widget_links li a, .footer_dark .footer_link li a, .footer_dark .post_content a {
  color: #FFFFFF;
}

  .footer_dark a:hover, .footer_dark .widget_links li a:hover, .widget_links li a:hover, .footer_dark .footer_link li a:hover, .footer_link li a:hover {
    color: #00B0F0;
  }

.footer_bg {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}

.widget_contact_form {
  background-color: #fff;
  padding: 20px 30px 30px;
  margin-top: -190px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.pattern_bg {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bottom_footer .social_icons li {
  padding-bottom: 0;
}

.footer_payment li {
  display: inline-block;
  list-style: none;
}

.footer_call {
  border-radius: 40px;
  padding: 15px;
  text-align: center;
  background-color: rgba(0,0,0,0.2);
}

  .footer_call * {
    margin: 0;
    font-size: 22px;
  }

  .footer_call i {
    margin-right: 10px;
  }

/*===================================*
  12.END FOOTER STYLE
*===================================*/

/*===================================*
  13.START PRICING TABLE STYLE
*===================================*/
.pricing_box {
  background-color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.pr_title {
  padding: 30px 15px 30px;
}

  .pr_title h4 {
    text-transform: uppercase;
  }

.pr_icon {
  background-color: rgba(31,224,117,0.2);
  border-radius: 100%;
  width: 100px;
  display: block;
  text-align: center;
  height: 100px;
  margin: 0 auto;
}

  .pr_icon i {
    font-size: 60px;
    color: #ed1c24;
    line-height: 100px;
  }

.price_tage {
  padding-top: 10px;
}

  .price_tage h2 {
    font-size: 40px;
    font-weight: bold;
  }

.pr_content {
  text-align: left;
  padding: 0 60px;
}

.pr_list li i {
  margin-right: 10px;
  vertical-align: middle;
}

.pr_list li.yes i {
  color: #82b73a !important;
}

.pr_list li.no i {
  color: #f1572f !important;
}

.pr_list li {
  padding: 12px 0;
}

.pr_footer {
  padding: 20px 20px 30px;
}

.ribbon {
  position: absolute;
  right: 60px;
  padding: 8px 10px 8px 0px;
  background-color: #ed1c24;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  transform-origin: right top;
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  top: 0;
  height: 38px;
  line-height: normal;
}

  .ribbon::before {
    content: "";
    position: absolute;
    display: block;
    border: 19px solid #ed1c24;
    border-left-color: #ed1c24;
    border-bottom-color: transparent;
    position: absolute;
    top: 0;
    right: 100%;
    z-index: -1;
    bottom: 0;
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-right: -5px;
  }

.bg-gd-green.ribbon::before {
  border-left-color: #16A3FE;
  border-right-color: #16A3FE;
  border-top-color: #16A3FE;
}

.bg-gd-orange.ribbon::before {
  border-left-color: #ff9f54;
  border-right-color: #ff9f54;
  border-top-color: #ff9f54;
}

.pb_style1 .pr_content,
.pb_style2 .pr_content {
  padding: 0 15px;
  text-align: center;
}

.pb_style2 .price_tage {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 5px;
}

  .pb_style2 .price_tage span {
    margin-left: 5px;
    position: relative;
    font-size: 14px;
  }

    .pb_style2 .price_tage span:before {
      content: "/";
      margin-right: 5px;
    }
/*===================================*
  13.END PRICING TABLE STYLE
*===================================*/

/*===================================*
  14.START MAP STYLE
*===================================*/
.map iframe {
  height: 460px;
  width: 100%;
  border: 0;
  display: block;
}

.contact_map {
  height: 400px;
}

.contact_map2 {
  height: 100%;
}

.map1 {
  height: 460px;
}
/*===================================*
  14.END MAP STYLE
*===================================*/

/*===================================*
  15.START TEAM STYLE
*===================================*/
.team_img img {
  width: 100%;
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
}

.team_box {
  position: relative;
  overflow: hidden;
  margin-bottom: 0px;
}

.team-row-handle > a {
  width: 50%;
  float: left;
  padding-right: 15px;
  padding-bottom: 15px;
}

.team_style1::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  transition: all 0.5s ease-in-out;
  /* opacity: 0; */
  z-index: 1;
  height: 140px;
  background: rgb(0,0,0);
  background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.team_style1:hover::before {
  /*opacity: 1;*/
}

.team_style1:hover .team_img img,
.team-row-handle a.open .team_style1 .team_img img {
  -webkit-filter: grayscale(0);
  filter: none;
}

.team_style1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-left: 8px solid #ed1c24;
  z-index: 9;
  opacity: 0;
}

.team_style1:hover::after,
.team-row-handle a.open .team_style1::after {
  opacity: 1;
}

.team_style1 .team_content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 0;
  padding: 20px 25px;
}

.team_style1 .team_title h4,
.team_style1 .team_title span {
  color: #fff;
}

.team_style1 .social_icons + .team_title {
  margin-top: 10px;
}

.team_title h1,
.team_title h2,
.team_title h3,
.team_title h4,
.team_title h5,
.team_title h6 {
  font-weight: bold;
}

.team_style1 .team_title h4 {
  font-size: 18px;
}

.team_style1 .team_title span {
  display: block;
  font-size: 12px;
  font-weight: 300;
}

.team_style1:hover .social_icons {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.team_style1 .social_icons {
  -moz-transform: translateY(50%);
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.team_single_img {
  margin-bottom: 30px;
}

.team_single_info .team_title h3 {
  font-weight: 600;
}

.team_single_content {
  padding-left: 30px;
  border-left: 1px solid #eeeeee;
}

.team_single_info .contact_info {
  margin: 20px 0;
}

.team_email {
  font-size: 20px;
  display: inline-block;
}

.team_style2 {
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

  .team_style2 .team_img::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    transition: all 0.5s ease-in-out;
    opacity: 0;
  }

  .team_style2:hover .team_img::before {
    opacity: 0.7;
  }

  .team_style2 .team_img,
  .team_style4 .team_img {
    position: relative;
  }

  .team_style2 .social_icons {
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    text-align: center;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }

  .team_style2:hover .social_icons {
    top: 50%;
    opacity: 1;
  }

  .team_style2 .team_content {
    background-color: #fff;
    text-align: center;
    padding: 15px;
  }

.team_style3 .social_icons {
  position: absolute;
  top: 20%;
  right: -50px;
  background-color: rgba(255,255,255,0.8);
  padding-left: 5px;
  padding-top: 5px;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: all 0.5s ease-in-out;
}

.team_style3 .team_img {
  position: relative;
  overflow: hidden;
}

  .team_style3 .team_img::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 100%);
    -moz-transform: skewX(-25deg);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
  }

.team_style3:hover .team_img::before {
  -webkit-animation: shine .70s;
  animation: shine .70s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.team_style3 .team_content {
  padding-top: 20px;
}

.team_style3:hover .social_icons {
  right: 15px;
  transition-delay: 500ms;
}

.team_style4 {
  text-align: center;
}

  .team_style4 .team_img img {
    border-radius: 100%;
  }

  .team_style4 .social_icons {
    position: absolute;
    top: 70%;
    left: 0;
    right: 0;
    text-align: center;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }

  .team_style4:hover .social_icons {
    top: 50%;
    opacity: 1;
  }

  .team_style4 .team_img::before {
    content: "";
    border-radius: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    transition: all 0.5s ease-in-out;
    opacity: 0;
  }

  .team_style4:hover .team_img::before {
    opacity: 0.5;
  }

  .team_style4 .team_content {
    padding-top: 10px;
  }

  .team_style4 .team_img {
    margin: 30px;
  }

    .team_style4 .team_img::after {
      padding: 30px;
      background-size: cover;
      background-position: center center;
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      z-index: -1;
      margin: -30px;
    }

  .team_style4:hover .team_img::after {
    -webkit-animation: rotate 80s infinite linear;
    -moz-animation: rotate 80s infinite linear;
    -o-animation: rotate 80s infinite linear;
    animation: rotate 80s infinite linear;
  }

.team-row-content {
  display: none;
  /*color: #666;
	font-weight: normal;
	line-height: 150%;
	font-size: 13px;
	position: absolute;
	top: 0;
	left: 0;*/
}

  .team-row-content.open {
    display: block;
  }
/*===================================*
  15.END TEAM STYLE
*===================================*/

/*===================================*
  16.START CLIENT LOGO STYLE
*===================================*/
.client_logo .cl_logo {
  margin-bottom: 15px;
}

  .client_logo .cl_logo img {
    /*opacity: 0.7;*/
    width: 210px;
    /*margin: 0 auto;*/
    transition: all 0.5s ease-in-out;
  }

  .client_logo .cl_logo:hover img {
    opacity: 1;
  }

  .client_logo .cl_logo a:hover img {
    background-color: #fff;
  }

.client_logo.cl_logo_style1 .cl_logo img {
  opacity: 1;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.client_logo.cl_logo_style1 .cl_logo:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
/*===================================*
  16.END CLIENT LOGO STYLE
*===================================*/

/*===================================*
  17.START PROGRESS BAR STYLE
*===================================*/
.progress {
  height: 4px;
  border-radius: 0;
  overflow: visible;
}

.progress-bar {
  border-radius: 0;
}

.skill_box {
  margin-bottom: 15px;
}

.skill_content {
  position: relative;
}

.skill_box:last-child .skill_content {
  margin-bottom: 0px;
}

.count_pr {
  position: absolute;
  left: 0;
  top: 0;
  color: #292b2c;
  font-size: 16px;
  transition: all 1s ease-in-out;
}

.skill_content .progress-bar {
  background-color: #ed1c24;
  width: 0;
  transition: all 1s ease-in-out;
}

.progrees_bar_text {
  margin-bottom: 10px;
  color: #292b2c;
}

.pr_style1 {
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
  padding: 20px;
}

  .pr_style1 .count_pr {
    left: auto !important;
    right: 0;
  }

.pr_style2 .progrees_bar_text {
  font-weight: 600;
}

.pr_style2 .progress {
  height: 5px;
}

.pr_style2.skill_box {
  margin-bottom: 20px;
}

  .pr_style2.skill_box:last-child {
    margin-bottom: 0;
  }

.pr_style2 .count_pr {
  -moz-transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  padding-bottom: 5px;
}

  .pr_style2 .count_pr::before {
    content: "";
    background-color: #ed1c24;
    height: 14px;
    width: 14px;
    position: absolute;
    right: 0;
    z-index: 99999;
    border-radius: 100%;
    top: 100%;
    left: 0;
    margin: 0 auto;
  }

  .pr_style2 .count_pr::after {
    content: "";
    background-color: #ed1c24;
    height: 22px;
    width: 22px;
    position: absolute;
    right: 0;
    z-index: 99999;
    border-radius: 100%;
    top: 100%;
    opacity: 0.3;
    left: 0;
    margin: -4px auto 0;
  }

.pr_style3 .count_pr {
  left: auto !important;
  right: 0;
}

.circular_bar {
  margin-top: 30px;
}

.circular_bar_chart {
  display: inline-block;
  position: relative;
}

.percent {
  color: #333;
  font-weight: 600;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 24px;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

  .percent::after {
    content: "%";
    margin-left: 2px;
  }

.circular_bar_text h5 {
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 10px;
}
/*===================================*
  17.END PROGRESS BAR STYLE
*===================================*/

/*===================================*
  18.START RESUME STYLE
*===================================*/

.resume_list li {
  padding: 20px;
  background-color: #fff;
  position: relative;
  margin-bottom: 30px;
  list-style: none;
}

.resume_title {
  margin-bottom: 20px;
}

  .resume_title * {
    margin: 0;
    font-weight: 600;
  }

  .resume_title i {
    margin-right: 10px;
  }

.resume_box p:last-child {
  margin: 0;
}

.resume_box span {
  margin-bottom: 10px;
  display: block;
  color: #ed1c24;
}
/*===================================*
  18.END RESUME STYLE
*===================================*/

/*===================================*
  19.START BREADCRUMB STYLE
*===================================*/
.breadcrumb_section {
  padding: 100px 0;
  width: 100%;
}

  .breadcrumb_section .heading_s1,
  .breadcrumb_section .heading_s1 p {
    margin-bottom: 0;
  }

  .breadcrumb_section .leads {
    font-weight: 500;
  }

  .breadcrumb_section .heading_s1 h1 {
    margin-bottom: 25px;
  }

.breadcrumb_index {
  padding: 15px 0;
}

  .breadcrumb_index .breadcrumb {
    font-size: 12px;
  }

.breadcrumb_section.page-title-mini {
  padding: 70px 0;
}

.page-title-mini .page-title h1 {
  font-size: 28px;
}

.page-title-mini .breadcrumb li {
  font-size: 14px;
}

.header_wrap.transparent_header + .breadcrumb_section {
  padding-top: 200px;
}

.header_wrap.transparent_header.header_with_topbar + .breadcrumb_section {
  padding-top: 250px;
}

.page-title h1 {
  margin: 0;
  text-transform: capitalize;
  font-weight: bold;
  line-height: normal;
}

.page_title_light *, .page_title_light .breadcrumb-item, .page_title_light .breadcrumb-item::before, .page_title_light .breadcrumb .breadcrumb-item.active {
  color: #fff;
}

.breadcrumb {
  background-color: transparent;
  margin: 0;
  padding: 0;
}

  .breadcrumb .breadcrumb-item a {
    color: #8C9FA6;
  }

  .breadcrumb .breadcrumb-item.active {
    color: #015467;
  }

.breadcrumb-item + .breadcrumb-item::before {
  content: "\f3d1";
  font-family: "Ionicons";
  vertical-align: top;
  color: #8C9FA6;
}

.page-title + .breadcrumb {
  margin-top: 15px;
}

.page-title + span {
  margin-top: 15px;
  display: inline-block;
  width: 100%;
}

.page_title_video {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
}

  .page_title_video video {
    object-fit: cover;
    width: 100%;
  }

.breadcrumb-item a i {
  font-size: 26px;
  line-height: 1;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -5px;
  display: inline-block;
}

.page-title-video {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

  .page-title-video video {
    object-fit: cover;
    width: 100%;
  }

.about_box_wrap {
  height: 600px;
}

.about_box {
  position: absolute;
  bottom: -120px;
  top: auto;
  z-index: 9999;
  padding: 30px;
}
/*===================================*
  19.END BREADCRUMB STYLE
*===================================*/

/*===================================*
  20.START CONTACT STYLE
*===================================*/
.contact_wrap li {
  list-style: none;
}

.contact_wrap li {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 25px;
  -ms-flex-align: center;
  align-items: center;
}

.contact_icon {
  margin-right: 20px;
}

  .contact_icon i {
    font-size: 34px;
    color: #ed1c24;
  }

.contact_text span {
  color: #333;
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}

.contact_text p:last-child {
  margin-bottom: 0;
}

.contact_text a {
  color: #687188;
  line-height: 28px;
}

  .contact_text a:hover {
    color: #ed1c24;
  }

.contact_style1 {
  text-align: center;
  padding: 20px;
  border: 2px solid #eee;
  margin-bottom: 30px;
}

  .contact_style1 .contact_text span {
    margin-bottom: 5px;
  }

  .contact_style1 .contact_icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

.contact_style2 {
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 40px 20px;
  border-radius: 10px;
}

  .contact_style2 .contact_icon {
    background-color: #DFFFED;
    margin: 0 0 5px;
    height: 90px;
    width: 90px;
    text-align: center;
    display: inline-block;
    overflow: hidden;
    border-radius: 100%;
    position: relative;
    z-index: 1;
  }

    .contact_style2 .contact_icon i {
      line-height: 90px;
    }

.contact_style3 {
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 40px 20px;
  border-radius: 10px;
}

  .contact_style3 .contact_icon {
    border: 1px solid #ed1c24;
    margin: 0 0 5px;
    height: 80px;
    width: 80px;
    text-align: center;
    display: inline-block;
    overflow: hidden;
    border-radius: 100%;
    position: relative;
    z-index: 1;
  }

    .contact_style3 .contact_icon i {
      line-height: 78px;
      transition: all 0.5s ease-in-out;
    }

    .contact_style3 .contact_icon::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background-color: #ed1c24;
      z-index:;
      transition: all 0.5s ease-in-out;
      -moz-transform: scale(0);
      -webkit-transform: scale(0);
      transform: scale(0);
      border-radius: 100%;
      z-index: -1;
    }

  .contact_style3:hover .contact_icon::before {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .contact_style3:hover .contact_icon i {
    color: #fff;
  }

.contact_box .form_field i {
  font-size: 28px;
  position: absolute;
  margin-top: 3px;
}

.contact_box .form_field input, .contact_box .form_field textarea, .contact_box .custom_select select {
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid #d1d3d4;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
  color: #000;
  padding: 10px 0;
  padding-left: 35px;
}

.contact_box {
  position: relative;
  /*padding: 50px 0px;*/
  display: table;
  width: 100%;
}

.contact_form {
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius: 10px;
  max-width: 500px;
  background-color: #fff;
  padding: 30px;
  float: right;
  margin-right: 30px;
  position: relative;
  z-index: 9;
}

.contact_box .map {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

  .contact_box .map iframe {
    height: 100%;
  }
/*===================================*
  20. END CONTACT STYLE
*===================================*/

/*===================================*
  21.START DIVIDER STYLE
*===================================*/
.divider {
  position: relative;
  overflow: hidden;
  height: 4px;
  z-index: 9;
}

  .divider.center_icon,
  .divider.left_icon,
  .divider.right_icon,
  .divider.text_divider {
    height: auto;
  }

    .divider.left_icon i {
      padding-left: 0;
      padding-right: 20px;
    }

  .divider.center_icon {
    text-align: center;
  }

  .divider.right_icon i {
    padding-right: 0;
    padding-left: 20px;
  }

  .divider.right_icon {
    text-align: right;
  }

  .divider.text_divider {
    text-align: center;
  }

    .divider.text_divider span {
      background-color: #fff;
      position: relative;
      z-index: 1;
      font-size: 30px;
      padding: 0 30px;
    }

  .divider.divider_style1 .divider_icon {
    padding-right: 10px;
    background-color: #fff;
    display: inline-block;
    position: relative;
    z-index: 9;
  }

  .divider.divider_style1.center_icon .divider_icon {
    padding-left: 10px;
  }

  .divider.divider_style1.right_icon .divider_icon {
    padding-right: 0px;
    padding-left: 10px;
  }

  .divider.divider_style1 i {
    background-color: #ed1c24;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    display: block;
    padding: 0;
    text-align: center;
    line-height: 40px;
    color: #fff;
  }

  .divider:before,
  .divider:after {
    content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0px;
    height: 0;
    border-top: 1px solid #dddddd;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .divider::before {
    margin-top: -1px;
  }

  .divider::after {
    margin-top: 1px;
  }

  .divider i {
    background-color: #fff;
    color: #d9d9d9;
    position: relative;
    z-index: 1;
    font-size: 30px;
    padding: 0 40px;
  }
/*===================================*
  21.END DIVIDER STYLE
*===================================*/


.slick-vertical .slick-slide {
  border: 0;
}

.slick-list {
  /*padding: 0 !important;*/
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.slick-initialized .slick-slide {
  display: block;
  padding: 1.2%;
}

.slick-center {
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  transform: scale(1.25);
  z-index: 999;
}

.slick-slide:not(.slick-center) {
  opacity: 0.6;
}

.product_gallery_item.slick-slider .slick-slide {
  margin-right: 5px;
  margin-left: 5px;
}

.product-image .slick-list {
  margin-right: -5px;
  margin-left: -5px;
}

.product_gallery_item a.active {
  border-color: #ed1c24;
}

.vertical_gallery #pr_item_gallery {
  width: 15%;
  float: left;
  margin-right: 10px;
}

.vertical_gallery .slick-list {
  margin-right: 0;
  margin-left: 0;
}

.vertical_gallery .product_gallery_item.slick-slider .slick-slide {
  margin-bottom: 10px;
  margin-right: 0;
  margin-left: 0;
}

.vertical_gallery .slick-prev, .vertical_gallery .slick-next {
  height: 40px;
  width: 50px;
}

.vertical_gallery .slick-prev {
  border-radius: 0 0 5px 5px;
  left: 0;
  right: 0;
  top: -40px;
  margin: 0 auto;
  transform: none;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.vertical_gallery .slick-next {
  border-radius: 5px 5px 0 0;
  right: 0;
  left: 0;
  bottom: -40px;
  top: auto;
  margin: 0 auto;
  transform: none;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.vertical_gallery .slick-prev:before {
  content: "\f10e"
}

.vertical_gallery .slick-next:before {
  content: "\f105"
}

.vertical_gallery .slick_slider:hover .slick-prev {
  top: 0;
}

.vertical_gallery .slick_slider:hover .slick-next {
  bottom: 10px;
  right: 0;
}

/*===================================*
  28.START ELEMENT DESIGN
*===================================*/
.form-control {
  color: #000;
  box-shadow: none;
  height: 50px;
  padding: 8px 15px;
}

  .form-control:focus,
  .custom-file-input:focus ~ .custom-file-label {
    color: #000;
    box-shadow: none;
    height: 50px;
  }

textarea.form-control, textarea.form-control:focus {
  height: auto;
  padding: 12px 15px;
}

.form-control-sm,
.form-control-sm:focus,
.custom_select select.form-control-sm,
.custom_select select.form-control-sm:focus {
  height: 45px;
}

select.not_chosen,
select.first_null option:first-child,
select.not_chosen:focus,
select.form-control.not_chosen,
select.form-control.first_null option:first-child,
select.not_chosen.form-control:focus {
  color: #6c757d;
}

select option {
  color: #000;
}

.custom_select {
  position: relative;
}

  .custom_select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 8px 35px 8px 15px;
    width: 100%;
    height: 50px;
  }

  .custom_select::before {
    content: "\e64b";
    font-family: 'themify';
    position: absolute;
    display: block;
    color: #848484;
    top: 50%;
    right: 15px;
    font-weight: 900;
    pointer-events: none;
    font-size: 12px;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

.custom-file-label::after {
  height: 48px;
  border: 0;
  line-height: 40px;
  border-radius: 0;
}

.custom-file-label, .custom-file, .custom-file-input {
  height: 50px;
  line-height: 38px;
}

.form_style1 .form-control,
.form_style1 input,
.form_style1 textarea {
  background-color: #EFF4F8;
  border: 0;
}

.form_style2 .form-control,
.form_style2 input,
.form_style2 textarea,
.form_style2 select {
  color: #fff;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4)
}

  .form_style2 .form-control::placeholder {
    color: #fff;
  }

  .form_style2 .form-control::placeholder {
    color: #fff;
  }

  .form_style2 .form-control::placeholder {
    color: #fff;
  }

  .form_style2 .form-control::placeholder {
    color: #fff;
  }

  .form_style2 .input_icon,
  .form_style2 select.not_chosen, .form_style2 select.not_chosen:focus, .form_style2 select.form-control.not_chosen, .form_style2 select.not_chosen.form-control:focus,
  .form_style2 .custom_select::before {
    color: #fff;
  }

.rounded_input .form-control,
.rounded_input input {
  border-radius: 30px;
  padding: 10px 20px;
}

.rounded_input .custom_select select {
  padding-right: 40px;
}

.rounded_input .custom_select::before {
  right: 20px;
}

.rounded_input textarea.form-control, .rounded_input textarea.form-control:focus {
  padding: 15px 20px;
}

.input_group {
  position: relative;
}

.input_icon {
  position: absolute;
  right: 20px;
  top: 14px;
  pointer-events: none;
  color: #848484;
}

.rounded_input .input_icon {
  top: 12px;
}

.pagination .page-item a {
  color: #0E93D8;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  padding: 0px;
  z-index: 1;
}

.page-link:focus {
  box-shadow: none;
}

.pagination_style1 li,
.pagination_style2 li,
.pagination_style3 li,
.pagination_style4 li {
  margin-right: 5px;
}

.pagination_style1 .page-item a {
  border: 2px solid #dee2e6;
  border-radius: 4px;
  color: #687188;
  margin-left: 0px;
  line-height: 36px;
}

  .pagination_style1 .page-item a i {
    line-height: 36px;
  }

.pagination_style1 .page-item.disabled .page-link,
.pagination_style3 .page-item.disabled .page-link {
  color: #c6c6c6;
  pointer-events: none;
  background-color: #fff;
  border-color: #f4f4f4;
}

.pagination_style1 .page-item.active .page-link,
.pagination_style1 .page-item .page-link:hover {
  background-color: #ed1c24;
  border-color: #ed1c24;
  color: #fff;
}

.pagination_style2 .page-item a {
  border: 0;
  border-radius: 0px !important;
  color: #687188;
  margin-left: 0px;
  line-height: 40px;
}

  .pagination_style2 .page-item.active a,
  .pagination_style2 .page-item a:hover,
  .pagination_style4 .page-item.active a,
  .pagination_style4 .page-item a:hover {
    background-color: #ed1c24;
    color: #fff;
  }

.pagination_style3 .page-item a.page-link {
  border: 2px solid #dee2e6;
  border-radius: 40px;
  color: #687188;
  margin-left: 0px;
  line-height: 36px;
}

.pagination_style3 .page-item.active .page-link,
.pagination_style3 .page-item .page-link:hover {
  background-color: #ed1c24;
  border-color: #ed1c24;
  color: #fff;
}

.pagination_style3 .page-item a i {
  line-height: 36px;
}

.pagination_style4 .page-item a {
  border: 0;
  border-radius: 40px !important;
  color: #687188;
  margin-left: 0px;
  line-height: 40px;
}

.pg_gd_pink_orange.pagination_style2 .page-item.active .page-link,
.pg_gd_pink_orange.pagination_style2 .page-item .page-link:hover,
.pg_gd_pink_orange.pagination_style4 .page-item.active .page-link,
.pg_gd_pink_orange.pagination_style4 .page-item .page-link:hover {
  background: -moz-inear-gradient(left, #F42F54 0%,#ff9625 100%);
  background: -webkit-inear-gradient(left, #F42F54 0%,#ff9625 100%);
  background: linear-gradient(to right, #F42F54 0%,#ff9625 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F42F54', endColorstr='#ff9625',GradientType=1 );
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  background: url("../images/loading.gif") center center no-repeat;
  text-align: center;
  margin-top: -12px;
  margin-left: -12px;
  z-index: 1044;
  text-indent: -9999px;
  background-color: #000;
  padding: 25px;
  border-radius: 5px;
}

.widget_title {
  margin-bottom: 25px;
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.widget_categories li,
.widget_archive li {
  padding-bottom: 10px;
  list-style: none;
}

  .widget_categories li a,
  .widget_archive li a {
    position: relative;
  }

    .widget_categories li a::before,
    .widget_archive li a:before {
      content: "\f3d1";
      font-family: "Ionicons";
      height: auto;
      line-height: normal;
      margin-right: 10px;
    }

  .widget_categories li:last-child,
  .widget_archive li:last-child {
    padding-bottom: 0;
  }

.widget_categories .categories_num,
.widget_archive .archive_num {
  float: right;
  font-size: 14px;
}

.sidebar .widget + .widget {
  border-top: 1px solid #ddd;
  margin-top: 30px;
  padding-top: 30px;
}

.sb_style1.sidebar .widget {
  background-color: #fff;
  border: 0 !important;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 30px;
}

.widget_newsletter p {
  font-size: 14px;
  line-height: normal;
}

.widget_newsletter button {
  padding: 5px 12px;
}

  .widget_newsletter button i, .widget_newsletter .btn i {
    font-size: 18px;
  }

.widget_recent_post li,
.widget_course li {
  list-style: none;
  margin-bottom: 15px;
  width: 100%;
}

.widget_course li {
  display: table;
}

.post_footer {
  display: inline-block;
  vertical-align: top;
}

.widget_recent_post li:last-child,
.widget_course li:last-child {
  margin-bottom: 0px;
}

footer .widget_recent_post .post_img img {
  border: 0;
}

.post_img,
.widget_course li .course_img {
  float: left;
  margin-right: 10px;
}

  .post_img img {
    border: 1px solid #ced4da;
  }

.post_content,
.widget_course li .course_content {
  overflow: hidden;
}

  .post_content h6 {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
  }

  .post_content .product_title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
    margin-bottom: 5px;
  }

  .post_content .product_price {
    margin-bottom: 0px;
  }

.tags a {
  background-color: #f7f7f7;
  font-size: 14px;
  padding: 8px 15px;
  display: inline-block;
  border-radius: 3px;
  margin-bottom: 5px;
  color: #333;
}

  .tags a:hover {
    background-color: #ed1c24;
    color: #fff;
  }

.tags_style1 a {
  border-radius: 40px;
}

.widget_tweet_feed li {
  list-style: none;
  position: relative;
  font-size: 14px;
  padding-bottom: 15px;
  padding-left: 25px;
}

  .widget_tweet_feed li::before {
    content: "\e74b";
    font-family: 'themify';
    position: absolute;
    left: 0;
    top: 0;
    color: #292B2C;
  }

.widget_tweet_feed a {
  color: #ed1c24;
}

.widget_tweet_feed li:last-child {
  padding-bottom: 0px;
}

.widget_instafeed {
  margin: -2px;
  display: table;
}

  .widget_instafeed li {
    list-style: none;
    float: left;
    width: 33.33%;
    padding: 2px;
    position: relative;
  }

.instafeed_col4 li {
  width: 25%;
}

.widget_instafeed li a {
  display: block;
  position: relative;
  overflow: hidden;
}

  .widget_instafeed li a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
    background-color: rgba(0,0,0,0.8);
    transition: all 0.5s ease-in-out;
    z-index: 1;
  }

.widget_instafeed img {
  width: 100%;
}

.insta_icon {
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  opacity: 0;
  text-align: center;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.5s ease-in-out;
  z-index: 2;
}

.widget_instafeed li:hover a::before, .widget_instafeed li:hover .insta_icon {
  opacity: 1;
}

.insta_img {
  position: relative;
}

.instagram_icon {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -moz-transform: translateY(-50%) rotate(30deg) scale(1.8);
  -webkit-transform: translateY(-50%) rotate(30deg) scale(1.8);
  transform: translateY(-50%) rotate(30deg) scale(1.8);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

  .instagram_icon i {
    color: #fff;
    font-size: 50px;
  }

.insta_img::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.insta_img:hover:before {
  opacity: 1;
  visibility: visible;
}

.insta_img:hover .instagram_icon {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(-50%) rotate(0deg) scale(1);
  -webkit-transform: translateY(-50%) rotate(0deg) scale(1);
  transform: translateY(-50%) rotate(0deg) scale(1);
}

.nav-tabs li.nav-item a {
  background-color: transparent;
  border: 0;
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
  padding: 5px 20px;
}

.tab-content {
  /*margin-top: 25px;*/
}

.tab-style1 .nav-tabs,
.tab-style3 .nav-tabs {
  position: relative;
  border: 0;
}

  .tab-style1 .nav-tabs::before {
    background-color: #ddd;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    top: 50%;
    -moz-transform: translateY(-50%);
    -wekit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
  }

  .tab-style1 .nav-tabs .nav-item,
  .tab-style3 .nav-tabs .nav-item {
    margin-right: 15px;
  }

    .tab-style1 .nav-tabs .nav-item:last-child,
    .tab-style3 .nav-tabs .nav-item:last-child {
      margin-right: 0px;
    }

  .tab-style1 .nav-tabs li.nav-item a {
    background-color: #fff;
    padding: 12px 25px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

    .tab-style1 .nav-tabs li.nav-item a.active,
    .tab-style1 .nav-tabs li.nav-item a.active:hover {
      color: #fff;
      background-color: #ed1c24;
      border-color: #ed1c24;
    }

.tab-style2 .nav-tabs {
  position: relative;
  border: 0;
}

  .tab-style2 .nav-tabs li.nav-item a {
    border-radius: 0px;
  }

    .tab-style2 .nav-tabs li.nav-item a.active, .tab-style2 .nav-tabs li.nav-item a.active:hover {
      color: #fff;
      background-color: #ed1c24;
    }

.tab-style3 .nav-tabs li.nav-item a {
  text-transform: uppercase;
  padding: 5px 15px;
  border: 0;
  border-radius: 0;
}

  .tab-style3 .nav-tabs li.nav-item a.active,
  .tab-style3 .nav-tabs li.nav-item a.active:hover {
    color: #ed1c24;
  }

.tab-style3 .tab-content.shop_info_tab {
  margin-top: 30px;
}

.custome-checkbox .form-check-label {
  position: relative;
  cursor: pointer;
  color: #687188;
  padding: 0;
  vertical-align: middle;
}

.custome-checkbox .form-check-input {
  display: none;
}

.custome-checkbox .form-check-label span {
  vertical-align: middle;
}

.custome-checkbox .form-check-label::before {
  content: "";
  border-radius: 3px;
  border: 2px solid #ced4da;
  height: 17px;
  width: 17px;
  position: absolute;
  left: 0;
  margin: 0px 8px 0 0;
  top: 3px;
}

.custome-checkbox input[type="checkbox"]:checked + .form-check-label::after {
  opacity: 1;
}

.custome-checkbox input[type="checkbox"] + .form-check-label::after {
  content: "";
  width: 11px;
  position: absolute;
  top: 7px;
  left: 3px;
  opacity: 0;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.custome-checkbox input[type="checkbox"]:checked + .form-check-label::before {
  background-color: #ed1c24;
  border-color: #ed1c24;
}

.custome-radio .form-check-input, .custome-checkbox .form-check-input {
  display: none;
}

.custome-radio .form-check-label::before {
  content: "";
  border: 1px solid #908f8f;
  height: 16px;
  width: 16px;
  display: inline-block;
  border-radius: 100%;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 5px;
}

.custome-radio input[type="radio"] + .form-check-label::after {
  content: "";
  background-color: #07d765;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  position: absolute;
  top: 8px;
  left: 3px;
  opacity: 0;
}

.custome-radio .form-check-label, .custome-checkbox .form-check-label {
  position: relative;
  cursor: pointer;
  padding-left: 25px;
}

.custome-radio input[type="radio"]:checked + .form-check-label::before {
  border-color: #07d765;
}

.custome-radio input[type="radio"]:checked + .form-check-label::after {
  opacity: 1;
}

.custome-checkbox input[disabled] + .form-check-label,
.custome-radio input[disabled] + .form-check-label {
  color: #d0d0d0;
}

  .custome-checkbox input[disabled] + .form-check-label::before,
  .custome-radio input[disabled] + .form-check-label::before {
    border-color: #e8e8e8;
  }

.owl-theme .owl-nav {
  margin-top: 0;
}

  .owl-theme .owl-nav [class*="owl-"] {
    background-color: #ed1c24;
    color: #fff;
    font-size: 26px;
    line-height: 40px;
    transition: all 0.3s ease-in-out;
    height: 40px;
    padding: 0;
    margin: 0;
    width: 40px;
    text-align: center;
  }

    .owl-theme .owl-nav [class*="owl-"] i {
      line-height: normal;
    }

  .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 15px;
  }

.owl-theme .owl-dots {
  font-size: 0;
  margin-top: 15px;
}

  .owl-theme .owl-dots .owl-dot span {
    background-color: transparent;
    border: 1px solid #ed1c24;
    cursor: pointer;
    margin: 3px;
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }

  .owl-theme .owl-dots .owl-dot.active span,
  .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #ed1c24;
  }

.dot_white.owl-theme .owl-dots .owl-dot span {
  border-color: #fff;
}

.dot_white.owl-theme .owl-dots .owl-dot.active span, .dot_white.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #fff;
}

.dot_style1.owl-theme .owl-dots .owl-dot span {
  background-color: rgba(0,0,0,0.3);
  border: 0;
}

.dot_style1.owl-theme .owl-dots .owl-dot.active span, .dot_style1.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #333;
}

.dot_style2.owl-theme .owl-dots .owl-dot span {
  background-color: rgba(0,0,0,0);
  border-color: #333;
}

.dot_style2.owl-theme .owl-dots .owl-dot.active span, .dot_style1.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #333;
}

.dot_style3.owl-theme .owl-dots .owl-dot span {
  background-color: #8C9FA6;
  border: 0;
  width: 40px;
  height: 4px;
}

.dot_style3.owl-theme .owl-dots .owl-dot.active span, .dot_style3.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #015467;
}

.nav_style1.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkittransform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 100%;
}

.nav_style1.owl-theme .owl-nav .owl-prev {
  left: -15px;
}

.nav_style1.owl-theme .owl-nav .owl-next {
  right: -15px;
}

.nav_style1.owl-theme[data-margin="10"] .owl-nav .owl-prev {
  left: -10px;
}

.nav_style1.owl-theme[data-margin="10"] .owl-nav .owl-next {
  right: -10px;
}

.nav_style2 .ion-arrow-left-c::before,
.nav_style7 .ion-arrow-left-c::before {
  content: "\ec43";
  font-family: 'Linearicons';
}

.nav_style2 .ion-arrow-right-c::before,
.nav_style7 .ion-arrow-right-c::before {
  content: "\ec44";
  font-family: 'Linearicons';
}

.nav_style2.owl-theme .owl-nav .owl-prev {
  left: 50px;
}

.nav_style2.owl-theme .owl-nav .owl-next {
  right: 50px;
}

.nav_style2.owl-theme .owl-nav [class*="owl-"] {
  background-color: transparent;
  position: absolute;
  top: 25%;
}

.nav_dark.nav_style2.owl-theme .owl-nav [class*="owl-"],
.nav_dark.nav_style7.owl-theme .owl-nav [class*="owl-"] {
  color: #333;
}

.nav_style3.owl-theme .owl-nav {
  text-align: left;
  margin-top: 25px;
}

.success_stories .nav_style3.owl-theme .owl-nav {
  text-align: right;
  margin-top: 50px;
}

  .success_stories .nav_style3.owl-theme .owl-nav [class*="owl-"] {
    padding-left: 25px;
    padding-right: 0;
  }

.nav_style3.owl-theme .owl-nav [class*="owl-"] {
  background-color: transparent;
  border-radius: 0;
  /*font-size: 30px;*/
  color: #333;
  /*position: absolute;*/
  bottom: 75px;
  right: 0;
  padding-right: 25px;
  width: auto
}

.nav_style3.owl-theme .owl-nav .owl-prev {
  left: 0px;
}

.nav_style3 .owl-prev i::before {
  content: "\ec43";
  font-family: 'Linearicons';
}

.nav_style3 .owl-next i::before {
  content: "\ec44";
  font-family: 'Linearicons';
}

.nav_style4.owl-theme .owl-nav [class*="owl-"],
.nav_style5.owl-theme .owl-nav [class*="owl-"] {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
  font-size: 22px;
  color: #015467;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 60px;
  line-height: 60px;
  width: 35px;
  opacity: 0;
}

.nav_style4.owl-theme .owl-nav .owl-prev {
  left: -40px;
  border-radius: 0 4px 4px 0;
}

.nav_style4.owl-theme .owl-nav .owl-next {
  right: -40px;
  border-radius: 4px 0 0 4px;
}

.nav_style4.owl-theme .owl-nav [class*="owl-"].disabled,
.nav_style5.owl-theme .owl-nav [class*="owl-"].disabled {
  opacity: 0;
}

.nav_style4.owl-theme:hover .owl-nav .owl-prev {
  left: 0px;
  opacity: 1;
}

.nav_style4.owl-theme:hover .owl-nav .owl-next {
  right: 0px;
  opacity: 1;
}

.nav_style4.owl-theme .owl-nav [class*="owl-"]:hover,
.nav_style5.owl-theme .owl-nav [class*="owl-"]:hover {
  color: #fff;
  background-color: #015467;
}

.nav_style4,
.nav_style5 {
  overflow: hidden;
}

  .nav_style5.owl-theme .owl-nav [class*="owl-"] {
    width: 46px;
    height: 46px;
    line-height: 46px;
  }

  .nav_style5.owl-theme .owl-nav .owl-prev {
    left: -40px;
    border-radius: 4px;
  }

  .nav_style5.owl-theme .owl-nav .owl-next {
    right: -40px;
    border-radius: 4px;
  }

  .nav_style5.owl-theme:hover .owl-nav .owl-prev {
    left: 20px;
    opacity: 1;
  }

  .nav_style5.owl-theme:hover .owl-nav .owl-next {
    right: 20px;
    opacity: 1;
  }

.nav_style6.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  bottom: 70px;
}

.nav_style6.owl-theme .owl-nav .owl-prev {
  left: -10px;
}

.nav_style6.owl-theme .owl-nav .owl-next {
  right: -10px;
}

.nav_style6.owl-theme .owl-nav [class*="owl-"] {
  background-color: transparent;
  color: #333;
}

.nav_style6 .owl-prev i::before {
  content: "\e64a";
  font-family: themify;
  font-size: 40px;
}

.nav_style6 .owl-next i::before {
  content: "\e649";
  font-family: themify;
  font-size: 40px;
}

.nav_style7.owl-theme .owl-nav .owl-prev {
  left: 30px;
}

.nav_style7.owl-theme .owl-nav .owl-next {
  right: 30px;
}

.nav_style7.owl-theme .owl-nav [class*="owl-"] {
  background-color: rgba(255,255,255,0.2);
  position: absolute;
  top: 10%;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 42px;
  border-radius: 100%;
  font-size: 20px;
}

.slick-prev.slick-disabled::before, .slick-next.slick-disabled::before {
  opacity: 1;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background-color: #ed1c24;
  color: #fff;
}

.slick-prev {
  left: 27%;
  /* opacity: 0; */
  bottom: 0;
  top: auto;
}

.slick-next {
  right: 27%;
  /*opacity: 0;*/
  bottom: 0;
  top: auto;
}

.slick-prev::before {
  content: "\f3d5";
  font-family: "Ionicons";
  color: #333;
  opacity: 1;
  display: block;
  font-size: 30px;
}

.slick-next::before {
  content: "\f3d6";
  font-family: "Ionicons";
  color: #333;
  opacity: 1;
  display: block;
  font-size: 30px;
}

.slick-prev, .slick-next {
  height: 40px;
  width: 60px;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
  background-color: #a7a9ac;
  z-index: 9;
  transition: all 0.5s ease-in-out;
}

  .slick-prev:hover, .slick-next:hover {
    background-color: #ed1c24;
  }

    .slick-prev:hover:before, .slick-next:hover:before {
      color: #fff;
    }

.slick_slider:hover .slick-prev {
  opacity: 1;
}

.slick_slider:hover .slick-next {
  opacity: 1;
}

.success_stories .carousel_slider .item {
  padding: 8px;
}

.social_icons [class*="sc_"] {
  color: #fff !important;
}

  .social_icons [class*="sc_"] i {
    transition: all 0.3s ease-in-out;
    display: block;
    line-height: 36px;
  }

  .social_icons [class*="sc_"]:hover i {
    -webkit-animation: toLeftFromRight 0.3s forwards;
    -moz-animation: toLeftFromRight 0.3s forwards;
    animation: toLeftFromRight 0.3s forwards;
  }

.sc_facebook {
  background-color: #3b5998 !important;
  border-color: #3b5998 !important;
}

.sc_gplus,
.sc_google {
  background-color: #dd4b39 !important;
  border-color: #dd4b39 !important;
}

.sc_linkedin {
  background-color: #0e76a8 !important;
  border-color: #0e76a8 !important;
}

.sc_rss {
  background-color: #ee802f !important;
  border-color: #ee802f !important;
}

.sc_skype {
  background-color: #00aff0 !important;
  border-color: #00aff0 !important;
}

.sc_twitter {
  background-color: #00acee !important;
  border-color: #00acee !important;
}

.sc_youtube {
  background-color: #c4302b !important;
  border-color: #c4302b !important;
}

.sc_vimeo {
  background-color: #86c9ef !important;
  border-color: #86c9ef !important;
}

.sc_yahoo {
  background-color: #720e9e !important;
  border-color: #720e9e !important;
}

.sc_tumblr {
  background-color: #34526f !important;
  border-color: #34526f !important;
}

.sc_instagram {
  background-color: #3f729b !important;
  border-color: #3f729b !important;
}

.sc_pinterest {
  background-color: #c8232c !important;
  border-color: #c8232c !important;
}

.sc_dribbble {
  background-color: #EA4C89 !important;
  border-color: #EA4C89 !important;
}

.sc_reddit {
  background-color: #C6C6C6 !important;
  border-color: #C6C6C6 !important;
}

.sc_github {
  background-color: #171515 !important;
  border-color: #171515 !important;
}

.sc_android {
  background-color: #A4C639 !important;
  border-color: #A4C639 !important;
}

.sc_windows {
  background-color: #00A7E7 !important;
  border-color: #00A7E7 !important;
}

.sc_tux {
  background-color: #C1C1C1 !important;
  border-color: #C1C1C1 !important;
}

.sc_delicious {
  background-color: #205cc0 !important;
  border-color: #205cc0 !important;
}

.sc_paypal {
  background-color: #00588b !important;
  border-color: #00588b !important;
}

.sc_blogger {
  background-color: #fc4f08 !important;
  border-color: #fc4f08 !important;
}

.sc_flickr {
  background-color: #ff0084 !important;
  border-color: #ff0084 !important;
}

.sc_yahoo {
  background-color: #720e9e !important;
  border-color: #720e9e !important;
}

.sc_dropbox {
  background-color: #3d9ae8 !important;
  border-color: #3d9ae8 !important;
}

.sc_ebay {
  background-color: #89c507 !important;
  border-color: #89c507 !important;
}

.sc_wordpress {
  background-color: #1e8cbe !important;
  border-color: #1e8cbe !important;
}

.sc_yelp {
  background-color: #c41200 !important;
}

.scroll_down_icon {
  position: absolute;
  bottom: 50px;
  left: 50%;
  z-index: 9;
  /*height: 10%;*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

  .scroll_down_icon .down {
    background-color: #ed1c24;
    width: 45px;
    height: 45px;
    color: #fff;
    display: inline-block;
    line-height: 45px;
    border-radius: 40px;
    text-align: center;
    white-space: nowrap;
    -webkit-animation: scroll 1.5s linear infinite;
    -moz-animation: scroll 1.5s linear infinite;
    animation: scroll 1.5s linear infinite;
    position: relative;
  }

  .scroll_down_icon.scroll_link {
    left: auto;
    right: 0;
    bottom: 80px;
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

.scroll_link a {
  color: #fff;
}

.scroll_link::before {
  content: "";
  position: absolute;
  right: 100%;
  height: 1px;
  width: 50px;
  background-color: #fff;
  bottom: 10px;
  margin-right: 10px;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(-10%);
  }

  50% {
    -webkit-transform: translateY(20%);
  }

  100% {
    -webkit-transform: translateY(-10%);
  }
}

@-moz-keyframes scroll {
  0% {
    -moz-transform: translateY(-10%);
  }

  50% {
    -moz-transform: translateY(20%);
  }

  100% {
    -moz-transform: translateY(-10%);
  }
}

@keyframes scroll {
  0% {
    transform: translateY(-10%);
  }

  50% {
    transform: translateY(20%);
  }

  100% {
    transform: translateY(-10%);
  }
}


blockquote {
  font-size: 20px;
  line-height: 34px;
}

  blockquote p {
    line-height: 34px;
  }

    blockquote p:last-child {
      margin: 0;
    }

.blockquote_style1 {
  padding-left: 20px;
  border-left: 3px solid #ddd;
  margin: 30px 0;
}

  .blockquote_style1 p {
    color: #292B2C;
  }

.blockquote_style2 {
  background-color: #ed1c24;
  padding: 20px;
  position: relative;
}

  .blockquote_style2 * {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
  }

  .blockquote_style2::before {
    content: "\f10e";
    position: absolute;
    left: 20px;
    top: 10px;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 70px;
    opacity: 0.3;
    line-height: normal;
  }

.blockquote_style3 {
  background-color: #FAFAFA;
  padding: 20px;
  border-left: 2px solid #ed1c24;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 28px;
  margin-top: 5px;
  display: inline-block;
  width: 100%;
  position: relative;
}

  .blockquote_style3::before {
    content: "\f10e";
    position: absolute;
    left: 20px;
    top: 10px;
    color: #000;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 70px;
    opacity: 0.05;
    line-height: normal;
  }

  .blockquote_style3 p {
    line-height: 28px;
  }

.blockquote_style4 {
  text-align: center;
  padding: 20px;
  background-color: #f7f7f7;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
}

  .blockquote_style4::before {
    content: "\f10d";
    position: absolute;
    left: 50px;
    top: 10px;
    color: #000;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 70px;
    opacity: 0.05;
    line-height: normal;
  }

  .blockquote_style4,
  .blockquote_style4 p {
    color: #222;
  }

.blog_post_footer {
  padding-bottom: 30px;
  padding-top: 15px;
}

.process_tab {
  border: 0;
  position: relative;
  -ms-flex-align: center;
  align-items: center;
}

.process_step_wrap {
  position: relative;
  margin-top: 30px;
}

  .process_step_wrap::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    background-color: #F7F7F7;
    width: 100%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

.process_tab.nav-tabs .nav-item {
  margin: 0;
}

.process_tab li a.nav-link, .process_tab li a.nav-link.active {
  position: relative;
  color: #333;
  padding: 0;
}

.process_tab li a::before {
  content: "";
  right: 0;
  margin: 0 auto;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  border: 3px solid #ed1c24;
  display: block;
  background-color: #fff;
}

.process_tab li a::after {
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: #ed1c24;
  display: block;
  position: absolute;
  top: 6px;
  right: 0;
  left: 0;
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.process_tab li.complete a::after {
  opacity: 1;
}

.process_tab li:first-child .step_title {
  left: 0;
  -moz-transform: translate(0%,-100%);
  -webkit-transform: translate(0%,-100%);
  transform: translate(0%,-100%);
}

.process_tab li:last-child .step_title {
  right: 0;
  left: auto;
  -moz-transform: translate(0%,-100%);
  -webkit-transform: translate(0%,-100%);
  transform: translate(0%,-100%);
}

.steps_progress {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #ed1c24;
  height: 4px;
  top: 50%;
  transition: all 0.5s ease-in-out;
  width: 0;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.step_title {
  font-weight: 600;
  position: absolute;
  top: -10px;
  left: 50%;
  -moz-transform: translate(-50%,-100%);
  -webkit-transform: translate(-50%,-100%);
  transform: translate(-50%,-100%);
}

.process_step_content {
  margin-top: 30px;
}

.datepicker-panel > ul > li {
  color: #000;
}

.mdtp__wrapper {
  bottom: auto;
  top: 50%;
  -moz-transform: translateX(-50%) translateY(-50%) scale(1);
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  transform: translateX(-50%) translateY(-50%) scale(1);
}

.modal {
  padding-right: 0 !important;
}

.page_soon {
  font-size: 10px;
  color: #fff;
  padding: 0px 5px;
  border-radius: 20px;
  background-color: #28A745;
  text-transform: uppercase;
  font-weight: 600;
}

.alert .close {
  font-weight: normal;
  margin-left: 10px;
}

.alert_style1 {
  border-radius: 0;
  border-left: 3px solid;
  padding: 20px;
  position: relative;
  border-top: 0;
  border-bottom: 0;
  border-right: 0;
}

.alert > i {
  margin-right: 5px;
  font-size: 18px;
  vertical-align: middle;
}

.alert_style2 {
  border-radius: 20px;
  padding: 20px 20px;
  background-color: #fff;
  border-left: 3px solid;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-top: 0;
  border-bottom: 0;
  border-right: 3px solid;
  ;
}

.button_group .btn {
  margin-bottom: 20px;
}

.toggle-password {
  pointer-events: auto;
  cursor: pointer;
}
/*===================================*
  28.END ELEMENT DESIGN
*===================================*/

.app_logo {
  display: flex;
  flex-direction: row;
  grid-gap: 15px;
  gap: 15px;
}

.news_tag_wrap, .breadcrub_tag_wrap {
  margin-bottom: 25px;
}

  .news_tag_wrap .news_tag, .breadcrub_tag_wrap .breadcrub_tag {
    font-weight: 400;
    color: #015467;
    padding: 4px 10px;
    border: 1px solid #015467;
    border-radius: 4px;
    margin-right: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: .3s;
    display: inline-block;
  }

    .news_tag_wrap .news_tag.active, .breadcrub_tag_wrap .breadcrub_tag.active {
      background-color: #015467;
      color: #fff;
    }

  .breadcrub_tag_wrap a span {
    transform: rotate(45deg);
    display: inline-block;
    padding-left: 5px;
  }

.tco_new_box .card_content {
  padding: 15px 0 0 0;
}

  .tco_new_box .card_content h5 {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
  }

  .tco_new_box .card_content p {
    font-size: 14px;
    font-weight: 400;
    color: #8C9FA6;
    line-height: 20px;
  }

  .tco_new_box .card_content .cat_date {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 12px;
  }

    .tco_new_box .card_content .cat_date span {
      font-size: 14px;
      color: #8C9FA6;
    }

      .tco_new_box .card_content .cat_date span.red {
        color: #D01D12;
      }

      .tco_new_box .card_content .cat_date span.skyblue, .skyblue {
        color: #00B0F0;
      }

      .tco_new_box .card_content .cat_date span.orange {
        color: #EDA210;
      }

      .tco_new_box .card_content .cat_date span.purple {
        color: #53389E;
      }


.oneline, .twoline {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oneline {
  -webkit-line-clamp: 1;
}

.twoline {
  -webkit-line-clamp: 2;
}

.report_card_box_wrap {
  width: 100%;
}

  .report_card_box_wrap .report_card {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f2f6f7;
    border-radius: 4px;
    margin-bottom: 20px;
  }

.report_card .report_card_text p {
  margin: 0;
  font-size: 16px;
}

.report_section .card_box .card_content p {
  font-size: 18px;
}

.breadcrumb_section .heading_s1 h2.h1 {
  padding-left: 0;
}

  .breadcrumb_section .heading_s1 h2.h1::before {
    content: none;
  }

.breadcrumb_section .play_icon {
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: center;
}


.double-block {
  display: flex;
  justify-content: center;
}

.tco__partners {
  justify-content: flex-end;
  background: #f2f6f7;
}

.tco__partners-wrapper {
  padding: 60px 60px 60px 0;
  min-width: 570px;
  max-width: 570px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  grid-gap: 25px;
  gap: 25px;
  text-align: left;
}

.reverse .tco__partners-wrapper {
  padding: 60px 0 60px 60px;
}

.reverse .double-block {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.double-block > img {
  width: 50% !important;
  -o-object-fit: cover;
  object-fit: cover;
}

.tco__partners-wrapper h1 {
  font-size: 56px;
}

.tco__partners-wrapper h2 {
  font-size: 38px;
  margin-bottom: 40px;
}

.tco__partners-wrapper h3 {
  font-size: 38px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  /*margin-top: 40px;*/
}

.double_banner_section .owl-dots {
  position: absolute;
  bottom: 20px;
  left: calc(50vw - 570px);
}

.double_banner_section .container .owl-dots,
.double_banner_section2 .container .nav_style8.owl-theme .owl-nav {
  left: 65px;
}

.bg_left::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  right: 0;
  top: 0;
  background: rgba(1, 84, 103, 0.1);
}

.bg_right::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  background: #F2F6F7;
}

.tco_icon_box {
  display: flex;
  align-items: center;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

  .tco_icon_box .tco_icon_img {
    margin-right: 30px;
  }

  .tco_icon_box .tco_icon_text h4 {
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 25px;
  }

  .tco_icon_box .tco_icon_text h3 {
    font-size: 28px;
  }

  .tco_icon_box .tco_icon_text p {
    font-size: 20px;
    color: #8C9FA6;
  }

.bg_right .tco_icon_box .tco_icon_img {
  margin-left: 30px;
}



.nav_style8.owl-theme .owl-nav {
  position: absolute;
  left: calc(50vw - 570px);
  bottom: 50px;
}

.reverse .nav_style8.owl-theme .owl-nav {
  display: flex;
  align-items: center;
  position: absolute;
  left: calc(50% + 40px);
  bottom: 25px;
}

.nav_style8.owl-theme .owl-nav [class*="owl-"] {
  border-radius: 100%;
  background-color: transparent;
  border: 1px solid #8C9FA6;
  color: #8C9FA6;
}

  .nav_style8.owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: rgba(1, 84, 103, 0.1);
  }

.nav_style8.owl-theme .owl-nav .owl-prev {
  margin-right: 15px;
}

.nav_style8.owl-theme .owl-nav [class*="owl-"] .ion-arrow-left-c::before {
  content: "\f3d2";
}

.nav_style8.owl-theme .owl-nav [class*="owl-"] .ion-arrow-right-c::before {
  content: "\f3d3";
}


.tco__files {
  display: flex;
  grid-gap: 70px;
  gap: 70px;
  padding: 25px 0;
  flex-wrap: wrap;
}

  .tco__files .item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 15px;
    gap: 15px;
    font-size: 18px;
    max-width: 175px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #00b0f0;
    width: 100%;
  }




.timeline__nav {
  position: relative;
  z-index: 99;
  top: 0;
  -webkit-transition: top .3s ease-out;
  transition: top .3s ease-out;
  position: sticky;
  top: 6.5vh;
  /*height: 100vh;*/
  width: 100%;
  text-align: center;
}

  .timeline__nav ul {
    list-style: none;
    list-style-position: inside;
    margin: 0;
  }

    .timeline__nav ul li {
      padding-left: 0;
      list-style-type: none;
      color: #015467;
      cursor: pointer;
      -webkit-transition: all .3s ease-out;
      transition: all .3s ease-out;
      font-weight: bold;
      font-size: 20.6vh;
      ;
      line-height: 1;
      opacity: 0.08;
      height: 195px;
      vertical-align: middle;
      display: inline-block;
    }

      .timeline__nav ul li span {
        height: 100%;
        vertical-align: middle;
        display: inline-block;
      }

      .timeline__nav ul li.small {
        font-size: 12.4vh;
        line-height: 20.58vh;
      }

      .timeline__nav ul li.active {
        font-weight: bold;
        color: #0282A0;
        opacity: 1;
        /*-webkit-transform: scale(1.2);
		  transform: scale(1.2);*/
      }

      .timeline__nav ul li:hover {
        color: #0282A0;
      }

.tco__yearcircle {
  position: absolute;
  left: 38vw;
  top: 30vh;
  width: 32.6vh;
  height: 32.6vh;
  background: #fff;
  opacity: .4;
  border: 3px solid #015467;
  box-shadow: 3px 3px 50px rgba(0,176,240,.1);
  border-radius: 50%;
  transition: all .5s ease;
  opacity: 0;
}

  .tco__yearcircle.fixed {
    position: sticky;
    left: 38vw;
    top: 45%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: .4;
  }

.timeline__section h3 {
  color: #30454E;
  margin-bottom: 20px;
}

.timeline__section p {
  font-size: 20px;
  font-weight: 300;
}

.timeline__section img {
  margin-bottom: 20px;
}

.timeline__section .timeline_story {
  padding: 40px 0px;
  border-bottom: 1px solid #8C9FA6
}


.tco__partners-wrapper .underline {
  display: block;
  position: relative;
  width: 100%;
  border: 1px solid #8c9fa6;
}

.tco__partners-wrapper.justify-content-start h2 {
  margin-top: 40px;
  margin-bottom: 0;
}

.tco__partners-wrapper p {
  font-size: 20px;
}


.slide_section {
  display: flex;
  position: relative;
}

  .slide_section .slide_content {
    min-width: 50%;
    padding: 80px 60px 80px 0;
    overflow: hidden;
    position: relative;
  }

    .slide_section .slide_content p {
      font-size: 20px;
    }

  .slide_section .slide_img,
  .slide_section .slide_icon {
    display: flex;
    align-items: center;
    overflow: hidden;
    min-width: 50%;
    position: relative;
  }

    .slide_section .slide_img img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover;
    }

    .slide_section .slide_icon img {
      position: static;
      margin: 0 auto;
    }

  .slide_section .nav_style8.owl-theme .owl-nav {
    position: static;
    text-align: left;
    margin-top: 15px;
  }

  .slide_section.reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

    .slide_section.reverse .slide_content {
      padding: 80px 0 80px 60px;
    }


.large_text p, .large_text a {
  font-size: 20px;
}


.mfp-bg.right_popup {
  background: #30454E;
  opacity: 0.9;
}

.right_popup .mfp-container {
  padding: 0;
}

.right_popup .white_popup {
  width: 63%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
}

  .right_popup .white_popup .side_popup_content {
    padding: 52px 132px 52px 80px;
    background-color: #fff;
    height: 100%;
    position: relative;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

.right_popup .side_popup_content .side_popup_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: sticky;
  top: 30px;
}

  .right_popup .side_popup_content .side_popup_header .side_popup_number {
    color: rgba(1,84,103,.2);
    font-size: 28px;
    font-weight: 700;
  }

.right_popup .side_popup_content .side_popup_name h2 {
  color: #30454e;
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  margin-bottom: 40px;
  padding-top: 30px;
}

.right_popup .side_popup_content .side_popup_name h3 {
  font-size: 38px;
  margin-bottom: 40px;
  padding-top: 30px;
}

.right_popup .side_popup_content .side_popup_description {
  /*max-width:95%;*/
}

  .right_popup .side_popup_content .side_popup_description h3 {
    color: #30454e;
  }

  .right_popup .side_popup_content .side_popup_description p {
    font-size: 20px;
    color: #30454e;
    white-space: pre-line;
  }

  .right_popup .side_popup_content .side_popup_description ul,
  .right_popup .side_popup_content .side_popup_description ol {
    padding-left: 22px;
    margin-bottom: 40px;
  }

    .right_popup .side_popup_content .side_popup_description ul li,
    .right_popup .side_popup_content .side_popup_description ol li {
      font-size: 20px;
      color: #30454e;
    }

    .right_popup .side_popup_content .side_popup_description ol > li {
      margin-bottom: 15px;
    }

  .right_popup .side_popup_content .side_popup_description img {
    margin-bottom: 40px;
  }

.right_popup .side_popup_content .side_popup_header .mfp-close {
  position: static;
  font-size: 50px;
  color: #b2bdbf;
  width: auto;
  height: auto;
  padding-bottom: 0;
}


/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
  /* overlay animate in */
  .mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.9;
  }
  /* overlay animate out */
  .mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
  }

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}


.file_group .pdf-link {
  font-size: 20px;
  margin-bottom: 20px;
  text-decoration: underline;
}


.card_box.icon_box_style3 {
  display: flex;
  flex-direction: column;
}

.rounded, .btn-fill-out.rounded:after, .btn-fill-out.rounded:before {
  border-radius: 100px !important;
  border-radius: 100% !important;
}

.btn-fill-out.rounded {
  width: 35px;
  height: 35px;
  display: inline-block;
  overflow: hidden;
  line-height: 35px;
  text-align: center;
}

.card_box .card_number {
  margin-bottom: 20px;
}

  .card_box .card_number * {
    margin-bottom: 0px;
    color: rgba(1,84,103,.2);
  }

.card_box .card_title h4 {
  font-size: 22px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  margin-bottom: 40px;
}

.card_box .card_button {
  text-align: right;
  margin-top: auto;
}


.slide_section .slide_content ul {
  margin-bottom: 20px;
  padding-left: 22px;
}

  .slide_section .slide_content ul li {
    color: #30454e;
    font-size: 20px;
    margin-bottom: 20px;
  }

.slide_section li.nav-item {
  margin-bottom: 70px;
}

  .slide_section li.nav-item:last-child {
    margin-bottom: 0;
  }

  .slide_section li.nav-item a {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: bold;
    font-size: 46px;
    color: #D9D9D9;
    padding: 0;
    line-height: normal;
  }

    .slide_section li.nav-item a.active {
      color: #0282A0;
    }

.slide_section .tab-content {
  position: absolute;
  top: 15%;
  right: 15px;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
}

.m-h-270 {
  min-height: 270px;
}

.slide_section .slide_content ul li a.btn-link {
  color: #015467;
}

  .slide_section .slide_content ul li a.btn-link:hover {
    color: #00B0F0;
  }


.debt_rating_list ul li {
  list-style: none;
  font-size: 18px;
  color: #30454E;
  margin-bottom: 10px;
}

  .debt_rating_list ul li a {
    text-decoration: underline;
  }

.slide_section .contact_list ul {
  padding-left: 0;
}

  .slide_section .contact_list ul li {
    display: flex;
    list-style: none;
    margin-bottom: 25px;
  }

.contact_list li span {
  color: #00B0F0;
  display: inline-block;
  font-size: 22px;
  line-height: normal;
  vertical-align: middle;
  margin-right: 12px;
}

.slide_section .contact_list li p {
  font-size: 18px;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.slide_section .slide_contact_img {
  position: relative;
}

  .slide_section .slide_contact_img span {
    color: #fff;
    position: absolute;
    top: 15%;
    right: 15%;
  }

.contact_list2 {
  display: flex;
}

  .contact_list2 span {
    font-size: 20px;
    font-weight: 500;
  }

  .contact_list2 .item_phone {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
  }

    .contact_list2 .item_phone span {
      color: #0282a0;
      font-weight: 400;
    }




/*===================================*
  START ACCORDION STYLE
*===================================*/
.accordion .card .card-header {
  background-color: transparent;
  padding: 0px;
  margin: 0;
}

.accordion .card-header a {
  padding: 15px 40px 15px 15px;
  display: block;
  line-height: normal;
}

.accordion .card-body p:last-child {
  margin: 0;
}

.card-body p {
  margin-bottom: 15px;
}

.accordion_style1.accordion .card {
  background-color: transparent;
  margin-bottom: 15px;
  border-radius: 0;
  border: 0;
}

  .accordion_style1.accordion .card:last-child {
    margin-bottom: 0;
  }

.accordion_style1 .card-body {
  border-bottom: 1px solid rgba(0,0,0,.125);
}

  .accordion_style1 .card-body p {
  }

.accordion.accordion_style1 .card-header a {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.accordion_style1 .card-header a::after {
  content: "\ec39";
  font-family: "Linearicons";
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  right: 15px;
  top: 10px;
  background-color: #F2FBFE;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #00B0F0;
  border: 1px solid #00B0F0;
}

.accordion_style1 .card-header a[aria-expanded="false"]::after {
  content: "\ec3a";
}

.accordion_style1 .list_style1 li {
  margin-bottom: 10px;
}

.accordion_style1 .list_style1 ul ul {
  padding-left: 25px;
}

  .accordion_style1 .list_style1 ul ul li {
    list-style: disc;
    padding: 0;
    margin-bottom: 0;
    margin-top: 10px;
  }

.accordion_style1 .list_style1 li::before {
  top: 15px;
  width: 10px;
  height: 10px;
}

.accordion_style1 .list_style1 ul ul li::before {
  content: normal;
}

.list_normal ul {
  padding-left: 22px;
}


.reports_docs .card_content {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}



.news_list .tco_new_box {
  background-color: #fff;
  min-height: 152px;
}

.news_list .card_box .card_img img {
  height: 208px;
  object-fit: cover;
}

.news_list .tco_new_box .card_content {
  padding: 15px;
}

.gutter_medium .n_card .tco_new_box {
  margin-bottom: 30px;
}

.grid_col3 > li.big_size {
  width: 66.66%;
}

.oneline {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.twoline {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news_container,
.small_container {
  max-width: 980px;
  margin: 0 auto;
}

.cat_date, .cat_date span {
  font-size: 20px;
  color: #5E8698;
}

.news_container .heading_s1 {
  margin-bottom: 20px;
}

.news_content img {
  width: 100%;
  margin-bottom: 25px;
}



.republic_map {
  text-align: center;
  position: relative;
}

  .republic_map svg path:hover {
    cursor: pointer;
    fill: #447a85;
  }

#disclaimer-popup {
  position: relative;
  background-color: #FFF;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.card_date {
  margin-bottom: 15px;
}

  .card_date i {
    font-size: 28px;
    color: #5E8698;
    vertical-align: middle;
    padding-right: 10px;
  }

  .card_date p {
    font-size: 14px;
    color: #5E8698;
    display: inline-block;
    margin: 0;
    vertical-align: middle;
  }

.card_time .heading_s1 {
  margin-bottom: 8px;
}

.kazakhstani_cards {
  padding: 30px;
  background-color: #f2f4f7;
  box-shadow: 0px 10px 30px rgba(138, 149, 158, 0.1);
}

  .kazakhstani_cards.dark {
    background-color: #015467;
  }

    .kazakhstani_cards.dark .card_icon {
      background-color: #a2b9c0;
    }

      .kazakhstani_cards.dark *,
      .kazakhstani_cards.dark .card_icon .card_num,
      .kazakhstani_cards.dark .card_title h5,
      .kazakhstani_cards.dark .card_description p {
        color: #fff;
      }

  .kazakhstani_cards .card_icon {
    position: relative;
    margin: 0 auto 20px;
    width: 156px;
    height: 156px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

    .kazakhstani_cards .card_icon .card_num {
      font-size: 48px;
      font-weight: 700;
      position: absolute;
      bottom: 0;
      left: -30px;
      color: #015467;
    }

  .kazakhstani_cards .card_title h5 {
    font-size: 18px;
  }

  .kazakhstani_cards .card_description p {
    font-size: 14px;
    line-height: 20px;
  }

  .kazakhstani_cards .card_description ul {
    padding-left: 22px;
  }

    .kazakhstani_cards .card_description ul li {
      font-size: 14px;
    }

.normal_list ul {
  margin-bottom: 20px;
  padding-left: 22px;
}

.small_margin li,
.slide_section .slide_content .small_margin li {
  margin-bottom: 6px;
  line-height: normal;
}

.career_box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  filter: drop-shadow(0 6px 30px rgba(48,69,78,.1));
  border-radius: 4px;
  height: 100%;
}

  .career_box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .career_box .card_content {
    background-color: #fff;
  }

    .career_box .card_content h3 {
      color: #5E8698;
      margin-bottom: 12px;
    }

    .career_box .card_content ul {
      margin-left: 22px;
      margin-top: 10px;
    }

      .career_box .card_content p,
      .career_box .card_content ul li {
        margin-bottom: 0;
        font-size: 16px;
      }

  .career_box.reverse {
    flex-direction: column-reverse !important;
    justify-content: flex-end !important;
  }

.map_overlay {
  position: relative;
  width: 100%;
}

  .map_overlay .blue, .map_overlay .yellow, .map_overlay .golub, .map_overlay .grey, .map_overlay .grey2 {
    position: absolute;
    -webkit-animation: ripple 2s linear infinite;
    -moz-animation: ripple 2s linear infinite;
    -o-animation: ripple 2s linear infinite;
    -ms-transition: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
  }

  .map_overlay .map_back {
    width: 100%;
  }

  .map_overlay .blue {
    top: 34%;
    left: 15%;
  }

  .map_overlay .yellow {
    top: 24.5%;
    left: 43%;
  }

  .map_overlay .golub {
    top: 31%;
    left: 64%;
  }

  .map_overlay .grey {
    top: 49.5%;
    left: 71.9%;
  }

  .map_overlay .grey2 {
    top: 72.5%;
    left: 80.5%;
  }

.statistic {
  position: relative;
  width: 100%;
  margin-top: -100px;
  z-index: 1;
}

  .statistic p {
    font-weight: 700;
    font-size: 24px;
  }

.statistic_box p:first-of-type {
  color: #015467;
}

.statistic_box p:last-of-type {
  color: #ffc000;
}

.statistic_box2 p:first-of-type {
  color: #00b0f0;
}

.statistic_box2 p:last-of-type {
  color: #8c9fa6;
}

.statistic_box3 img:last-child {
  margin-left: 73px;
}

.statistic_box .aust {
  color: #b24e8d !important;
}

.statistic_box .us {
  color: #015467;
}

.statistic_box .uk {
  color: #ffc000;
}

.statistic_box .kz {
  color: #00b0f0;
}

.statistic_box .thai {
  color: #01bf89;
}

.step_tab .breadcrub_tag {
  padding: 10px 20px;
}

.step_tab span {
  line-height: 46px;
  font-size: 26px;
  margin-right: 10px;
  margin-left: 5px;
  color: #5E8698;
}

.conditions_small_info {
  width: 100%;
  background: #f2f6f7;
  padding: 40px;
  margin-top: 40px;
}

  .conditions_small_info p {
    margin-bottom: 6px;
  }

  .conditions_small_info ul {
    margin-left: 30px;
  }

    .conditions_small_info ul li {
      font-weight: bold;
    }

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #015467;
  background-color: #015467;
}

.right_popup .side_popup_content .side_popup_description .condition_quiz p {
  margin-bottom: 15px;
}

.condition_quiz .custom-control-label {
  color: #30454E;
}

.alert_red * {
  color: #D01D12;
}

.large_text .custom-control, .large_text .custom-control label {
  font-size: 20px;
  color: #30454E;
  line-height: 1.2;
}

.btn.disabled, .btn:disabled {
  cursor: no-drop;
}


.instruction .instruction_item {
  margin-bottom: 30px;
}

.respond .divider {
  margin-top: 20px;
  margin-bottom: 20px;
  height: 1px;
  width: 100%;
  right: 0;
  position: relative;
  background-color: rgba(48,69,78,.2);
}

.respond .action {
  display: flex;
  align-items: flex-start;
  grid-gap: 15px;
}

  .respond .action p {
    font-size: 18px;
    line-height: 22px;
  }

  .respond .action .btn-fill-out {
    max-width: 125px;
    width: 100%;
    white-space: nowrap;
  }

.respond .form-group label {
  color: #30454E;
  font-weight: 600;
  margin-bottom: 0;
}

.respond .form-group .form-control, .respond .form-group input, .respond .form-group .custom-file-label {
  background-color: transparent;
  border: 0;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: 0px;
  border-bottom: 1px solid rgba(48,69,78,.2);
  border-radius: 0;
  padding-left: 0;
}

.respond .form-group .custom-file-label {
  font-weight: normal;
  color: #80828C;
}

.respond .custom-file-label::after {
  content: "\f20f";
  font-family: "Ionicons";
  background-color: transparent;
  font-size: 26px;
  color: #99A2AD;
}

.respond .custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "\f20f";
  font-family: "Ionicons";
}


.overflow_img {
  position: relative;
  min-width: calc(100% + 50vw - var(--width-container)/2 + 15px);
  min-height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

  .overflow_img img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    position: absolute;
  }


.heading {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  max-width: 600px;
  background-color: #fff;
  background-color: #015467;
  border-radius: 5px;
  cursor: pointer;
}

  .heading h3, .heading h3 a {
    color: #fff;
    margin: 0;
  }

  .heading span {
    font-size: 3rem;
    color: #fff;
    transform: rotate(45deg);
    width: 60px;
    height: 60px;
  }

.img-container {
  position: relative;
  align-self: center;
  width: 70%;
  margin: 0 auto;
}

  .img-container .img-marker {
    cursor: pointer;
    position: absolute;
    width: 17px;
    height: 17px;
  }

.map_markers {
  display: flex;
  grid-gap: 80px;
  gap: 80px;
}

  .map_markers .map_marker {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    gap: 10px;
  }

    .map_markers .map_marker p {
      margin: 0;
    }

.img-container .img-marker a {
  display: block;
  width: 100%;
  height: 100%;
}

.career_motivation_popup {
  width: 100%;
  max-width: 696px;
}


.stage_one:after {
  background: #015467;
}

.stage_two:after {
  background: #347685;
}

.section_stage {
  position: relative;
  max-width: 350px;
}

.bg_right .tco_icon_box .section_stage {
  margin-left: 65px;
}





.timeline_wrap {
  max-width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  left: 0px;
}

.timeline_item {
  width: 100%
}

  .timeline_item:first-child .timeline_arrow {
    position: relative;
    left: 70px;
    top: -20px
  }

  .timeline_item:first-child:before {
    display: block;
    content: attr(data-label);
    position: absolute;
    top: 50px;
    color: #30454e;
    width: 270px;
    height: 32px
  }

  .timeline_item:nth-child(2) .timeline_arrow {
    position: relative;
    left: -60px;
    bottom: -120px;
    transform: rotate(-180deg)
  }

  .timeline_item:nth-child(2):after {
    display: block;
    content: attr(data-label);
    position: absolute;
    bottom: 70px;
    left: 100px;
    color: #30454e;
    width: 270px;
    height: 32px
  }

  .timeline_item:nth-child(3) .timeline_arrow {
    position: relative;
    left: 150px;
    top: -20px
  }

  .timeline_item:nth-child(3):before {
    display: block;
    content: attr(data-label);
    position: absolute;
    top: 50px;
    left: 420px;
    color: #30454e;
    width: 270px;
    height: 32px
  }

  .timeline_item:nth-child(4) .timeline_arrow {
    position: relative;
    left: 150px;
    bottom: 0;
    top: -20px
  }

  .timeline_item:nth-child(4):after {
    display: block;
    content: attr(data-label);
    position: absolute;
    bottom: 70px;
    left: 685px;
    color: #30454e;
    width: 270px;
    height: 32px
  }

  .timeline_item:nth-child(5) .timeline_arrow {
    visibility: hidden;
    position: relative;
    left: 10px;
    bottom: -120px;
    transform: rotate(-180deg)
  }

  .timeline_item:nth-child(6) .timeline_arrow {
    position: relative;
    left: 0;
    bottom: -120px;
    transform: rotate(-180deg)
  }

  .timeline_item:nth-child(6):before {
    display: block;
    content: attr(data-label);
    position: absolute;
    top: 80px;
    right: 0px;
    color: #30454e;
    width: 270px;
    height: 32px
  }

  .timeline_item:nth-child(7) .timeline_arrow {
    position: relative;
    left: 60px;
    top: -20px
  }

  .timeline_item:nth-child(7):after {
    display: block;
    content: attr(data-label);
    position: absolute;
    bottom: 70px;
    left: 720px;
    color: #30454e;
    width: 220px;
    height: 32px
  }

  .timeline_item:nth-child(8) .timeline_arrow {
    position: relative;
    left: -60px;
    bottom: -120px;
    transform: rotate(-180deg)
  }

  .timeline_item:nth-child(8):after {
    display: block;
    content: attr(data-label);
    position: absolute;
    bottom: 70px;
    left: 1000px;
    color: #30454e;
    width: 160px;
    height: 32px
  }

.timeline_text {
  position: relative;
}

  .timeline_text span {
    position: absolute;
    left: 40px;
    right: 0;
    top: 12px;
    z-index: 1;
    color: #fff;
  }



.popup_accordion .accordion .card, .popup_accordion .accordion .card-header * {
  margin-bottom: 0;
}

.popup_accordion .accordion .card-header {
  border: 0;
}

  .popup_accordion .accordion .card-header a {
    font-size: 20px;
    font-weight: 500;
    color: #015467;
    padding: 20px 40px 20px 15px;
    background-color: #F2F6F7;
    border-bottom: 1px solid rgba(48,69,78,.2);
  }

    .popup_accordion .accordion .card-header a::after {
      background-color: #015467;
      width: 34px;
      height: 34px;
      line-height: 34px;
      color: #ffffff;
      border: 1px solid #015467;
    }

    .popup_accordion .accordion .card-header a[aria-expanded="true"] {
      border-bottom: 0;
    }

.popup_accordion table tr {
  font-size: 18px;
}

  .popup_accordion table tr th {
    border: 0;
    background-color: #F2F6F7;
    color: #30454E;
    font-weight: 400;
  }

  .popup_accordion table tr td {
    color: #30454E;
    font-weight: 400;
    border: 0;
  }



.slider__flex .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.slider__flex .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.slider__flex .swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.slider__flex .swiper-container {
  width: 100%;
  height: 100%;
}

.slider__flex .swiper-slide {
  padding: 20px;
}

.slider__thumbs {
  /*height: calc(400px - 96px);*/
}

.slider__flex {
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

  .slider__flex .year {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 800;
    font-size: 11.625rem;
    line-height: 224px;
    color: #015467;
    opacity: .3;
  }

  .slider__flex .year-small {
    font-size: 120px;
  }

  .slider__flex .swiper-slide-active h2 {
    opacity: 1;
    position: relative;
    z-index: 20;
  }

    .slider__flex .swiper-slide-active h2::before {
      position: absolute;
      content: "";
      top: -40px;
      right: -20px;
      width: 294px;
      height: 294px;
      border: 3px solid #015467;
      z-index: 10px;
      background-color: rgba(94,134,152,.2);
      border-radius: 50%;
      opacity: 1;
      animation: fadeIn-2a53427a .6s linear;
    }


  .slider__flex .history {
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-gap: 20px;
    gap: 20px;
    max-width: 600px;
  }


.news_section .col-md-4 .news_list .card_img, .news_section .col-md-12 .news_list .card_img {
  display: none;
}

.banner_slide_content {
  max-width: 1000px;
}

@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

  .animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }

  .animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
  }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    -ms-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    -ms-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    -ms-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    -ms-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@charset "UTF-8"; /*!
  Ionicons, v2.0.0
  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  https://twitter.com/benjsperry  https://twitter.com/ionicframework
  MIT License: https://github.com/driftyco/ionicons

  Android-style icons originally built by Google’s
  Material Design Icons: https://github.com/google/material-design-icons
  used under CC BY http://creativecommons.org/licenses/by/4.0/
  Modified icons to fit ionicon’s grid from original.
*/

@font-face {
  font-family: "Ionicons";
  src: url("../fonts/ionicons.eot?v=2.0.0");
  src: url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"),url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"),url("../fonts/ionicons.woff?v=2.0.0") format("woff"),url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal
}

.ion, .ionicons, .ion-alert:before, .ion-alert-circled:before, .ion-android-add:before, .ion-android-add-circle:before, .ion-android-alarm-clock:before, .ion-android-alert:before, .ion-android-apps:before, .ion-android-archive:before, .ion-android-arrow-back:before, .ion-android-arrow-down:before, .ion-android-arrow-dropdown:before, .ion-android-arrow-dropdown-circle:before, .ion-android-arrow-dropleft:before, .ion-android-arrow-dropleft-circle:before, .ion-android-arrow-dropright:before, .ion-android-arrow-dropright-circle:before, .ion-android-arrow-dropup:before, .ion-android-arrow-dropup-circle:before, .ion-android-arrow-forward:before, .ion-android-arrow-up:before, .ion-android-attach:before, .ion-android-bar:before, .ion-android-bicycle:before, .ion-android-boat:before, .ion-android-bookmark:before, .ion-android-bulb:before, .ion-android-bus:before, .ion-android-calendar:before, .ion-android-call:before, .ion-android-camera:before, .ion-android-cancel:before, .ion-android-car:before, .ion-android-cart:before, .ion-android-chat:before, .ion-android-checkbox:before, .ion-android-checkbox-blank:before, .ion-android-checkbox-outline:before, .ion-android-checkbox-outline-blank:before, .ion-android-checkmark-circle:before, .ion-android-clipboard:before, .ion-android-close:before, .ion-android-cloud:before, .ion-android-cloud-circle:before, .ion-android-cloud-done:before, .ion-android-cloud-outline:before, .ion-android-color-palette:before, .ion-android-compass:before, .ion-android-contact:before, .ion-android-contacts:before, .ion-android-contract:before, .ion-android-create:before, .ion-android-delete:before, .ion-android-desktop:before, .ion-android-document:before, .ion-android-done:before, .ion-android-done-all:before, .ion-android-download:before, .ion-android-drafts:before, .ion-android-exit:before, .ion-android-expand:before, .ion-android-favorite:before, .ion-android-favorite-outline:before, .ion-android-film:before, .ion-android-folder:before, .ion-android-folder-open:before, .ion-android-funnel:before, .ion-android-globe:before, .ion-android-hand:before, .ion-android-hangout:before, .ion-android-happy:before, .ion-android-home:before, .ion-android-image:before, .ion-android-laptop:before, .ion-android-list:before, .ion-android-locate:before, .ion-android-lock:before, .ion-android-mail:before, .ion-android-map:before, .ion-android-menu:before, .ion-android-microphone:before, .ion-android-microphone-off:before, .ion-android-more-horizontal:before, .ion-android-more-vertical:before, .ion-android-navigate:before, .ion-android-notifications:before, .ion-android-notifications-none:before, .ion-android-notifications-off:before, .ion-android-open:before, .ion-android-options:before, .ion-android-people:before, .ion-android-person:before, .ion-android-person-add:before, .ion-android-phone-landscape:before, .ion-android-phone-portrait:before, .ion-android-pin:before, .ion-android-plane:before, .ion-android-playstore:before, .ion-android-print:before, .ion-android-radio-button-off:before, .ion-android-radio-button-on:before, .ion-android-refresh:before, .ion-android-remove:before, .ion-android-remove-circle:before, .ion-android-restaurant:before, .ion-android-sad:before, .ion-android-search:before, .ion-android-send:before, .ion-android-settings:before, .ion-android-share:before, .ion-android-share-alt:before, .ion-android-star:before, .ion-android-star-half:before, .ion-android-star-outline:before, .ion-android-stopwatch:before, .ion-android-subway:before, .ion-android-sunny:before, .ion-android-sync:before, .ion-android-textsms:before, .ion-android-time:before, .ion-android-train:before, .ion-android-unlock:before, .ion-android-upload:before, .ion-android-volume-down:before, .ion-android-volume-mute:before, .ion-android-volume-off:before, .ion-android-volume-up:before, .ion-android-walk:before, .ion-android-warning:before, .ion-android-watch:before, .ion-android-wifi:before, .ion-aperture:before, .ion-archive:before, .ion-arrow-down-a:before, .ion-arrow-down-b:before, .ion-arrow-down-c:before, .ion-arrow-expand:before, .ion-arrow-graph-down-left:before, .ion-arrow-graph-down-right:before, .ion-arrow-graph-up-left:before, .ion-arrow-graph-up-right:before, .ion-arrow-left-a:before, .ion-arrow-left-b:before, .ion-arrow-left-c:before, .ion-arrow-move:before, .ion-arrow-resize:before, .ion-arrow-return-left:before, .ion-arrow-return-right:before, .ion-arrow-right-a:before, .ion-arrow-right-b:before, .ion-arrow-right-c:before, .ion-arrow-shrink:before, .ion-arrow-swap:before, .ion-arrow-up-a:before, .ion-arrow-up-b:before, .ion-arrow-up-c:before, .ion-asterisk:before, .ion-at:before, .ion-backspace:before, .ion-backspace-outline:before, .ion-bag:before, .ion-battery-charging:before, .ion-battery-empty:before, .ion-battery-full:before, .ion-battery-half:before, .ion-battery-low:before, .ion-beaker:before, .ion-beer:before, .ion-bluetooth:before, .ion-bonfire:before, .ion-bookmark:before, .ion-bowtie:before, .ion-briefcase:before, .ion-bug:before, .ion-calculator:before, .ion-calendar:before, .ion-camera:before, .ion-card:before, .ion-cash:before, .ion-chatbox:before, .ion-chatbox-working:before, .ion-chatboxes:before, .ion-chatbubble:before, .ion-chatbubble-working:before, .ion-chatbubbles:before, .ion-checkmark:before, .ion-checkmark-circled:before, .ion-checkmark-round:before, .ion-chevron-down:before, .ion-chevron-left:before, .ion-chevron-right:before, .ion-chevron-up:before, .ion-clipboard:before, .ion-clock:before, .ion-close:before, .ion-close-circled:before, .ion-close-round:before, .ion-closed-captioning:before, .ion-cloud:before, .ion-code:before, .ion-code-download:before, .ion-code-working:before, .ion-coffee:before, .ion-compass:before, .ion-compose:before, .ion-connection-bars:before, .ion-contrast:before, .ion-crop:before, .ion-cube:before, .ion-disc:before, .ion-document:before, .ion-document-text:before, .ion-drag:before, .ion-earth:before, .ion-easel:before, .ion-edit:before, .ion-egg:before, .ion-eject:before, .ion-email:before, .ion-email-unread:before, .ion-erlenmeyer-flask:before, .ion-erlenmeyer-flask-bubbles:before, .ion-eye:before, .ion-eye-disabled:before, .ion-female:before, .ion-filing:before, .ion-film-marker:before, .ion-fireball:before, .ion-flag:before, .ion-flame:before, .ion-flash:before, .ion-flash-off:before, .ion-folder:before, .ion-fork:before, .ion-fork-repo:before, .ion-forward:before, .ion-funnel:before, .ion-gear-a:before, .ion-gear-b:before, .ion-grid:before, .ion-hammer:before, .ion-happy:before, .ion-happy-outline:before, .ion-headphone:before, .ion-heart:before, .ion-heart-broken:before, .ion-help:before, .ion-help-buoy:before, .ion-help-circled:before, .ion-home:before, .ion-icecream:before, .ion-image:before, .ion-images:before, .ion-information:before, .ion-information-circled:before, .ion-ionic:before, .ion-ios-alarm:before, .ion-ios-alarm-outline:before, .ion-ios-albums:before, .ion-ios-albums-outline:before, .ion-ios-americanfootball:before, .ion-ios-americanfootball-outline:before, .ion-ios-analytics:before, .ion-ios-analytics-outline:before, .ion-ios-arrow-back:before, .ion-ios-arrow-down:before, .ion-ios-arrow-forward:before, .ion-ios-arrow-left:before, .ion-ios-arrow-right:before, .ion-ios-arrow-thin-down:before, .ion-ios-arrow-thin-left:before, .ion-ios-arrow-thin-right:before, .ion-ios-arrow-thin-up:before, .ion-ios-arrow-up:before, .ion-ios-at:before, .ion-ios-at-outline:before, .ion-ios-barcode:before, .ion-ios-barcode-outline:before, .ion-ios-baseball:before, .ion-ios-baseball-outline:before, .ion-ios-basketball:before, .ion-ios-basketball-outline:before, .ion-ios-bell:before, .ion-ios-bell-outline:before, .ion-ios-body:before, .ion-ios-body-outline:before, .ion-ios-bolt:before, .ion-ios-bolt-outline:before, .ion-ios-book:before, .ion-ios-book-outline:before, .ion-ios-bookmarks:before, .ion-ios-bookmarks-outline:before, .ion-ios-box:before, .ion-ios-box-outline:before, .ion-ios-briefcase:before, .ion-ios-briefcase-outline:before, .ion-ios-browsers:before, .ion-ios-browsers-outline:before, .ion-ios-calculator:before, .ion-ios-calculator-outline:before, .ion-ios-calendar:before, .ion-ios-calendar-outline:before, .ion-ios-camera:before, .ion-ios-camera-outline:before, .ion-ios-cart:before, .ion-ios-cart-outline:before, .ion-ios-chatboxes:before, .ion-ios-chatboxes-outline:before, .ion-ios-chatbubble:before, .ion-ios-chatbubble-outline:before, .ion-ios-checkmark:before, .ion-ios-checkmark-empty:before, .ion-ios-checkmark-outline:before, .ion-ios-circle-filled:before, .ion-ios-circle-outline:before, .ion-ios-clock:before, .ion-ios-clock-outline:before, .ion-ios-close:before, .ion-ios-close-empty:before, .ion-ios-close-outline:before, .ion-ios-cloud:before, .ion-ios-cloud-download:before, .ion-ios-cloud-download-outline:before, .ion-ios-cloud-outline:before, .ion-ios-cloud-upload:before, .ion-ios-cloud-upload-outline:before, .ion-ios-cloudy:before, .ion-ios-cloudy-night:before, .ion-ios-cloudy-night-outline:before, .ion-ios-cloudy-outline:before, .ion-ios-cog:before, .ion-ios-cog-outline:before, .ion-ios-color-filter:before, .ion-ios-color-filter-outline:before, .ion-ios-color-wand:before, .ion-ios-color-wand-outline:before, .ion-ios-compose:before, .ion-ios-compose-outline:before, .ion-ios-contact:before, .ion-ios-contact-outline:before, .ion-ios-copy:before, .ion-ios-copy-outline:before, .ion-ios-crop:before, .ion-ios-crop-strong:before, .ion-ios-download:before, .ion-ios-download-outline:before, .ion-ios-drag:before, .ion-ios-email:before, .ion-ios-email-outline:before, .ion-ios-eye:before, .ion-ios-eye-outline:before, .ion-ios-fastforward:before, .ion-ios-fastforward-outline:before, .ion-ios-filing:before, .ion-ios-filing-outline:before, .ion-ios-film:before, .ion-ios-film-outline:before, .ion-ios-flag:before, .ion-ios-flag-outline:before, .ion-ios-flame:before, .ion-ios-flame-outline:before, .ion-ios-flask:before, .ion-ios-flask-outline:before, .ion-ios-flower:before, .ion-ios-flower-outline:before, .ion-ios-folder:before, .ion-ios-folder-outline:before, .ion-ios-football:before, .ion-ios-football-outline:before, .ion-ios-game-controller-a:before, .ion-ios-game-controller-a-outline:before, .ion-ios-game-controller-b:before, .ion-ios-game-controller-b-outline:before, .ion-ios-gear:before, .ion-ios-gear-outline:before, .ion-ios-glasses:before, .ion-ios-glasses-outline:before, .ion-ios-grid-view:before, .ion-ios-grid-view-outline:before, .ion-ios-heart:before, .ion-ios-heart-outline:before, .ion-ios-help:before, .ion-ios-help-empty:before, .ion-ios-help-outline:before, .ion-ios-home:before, .ion-ios-home-outline:before, .ion-ios-infinite:before, .ion-ios-infinite-outline:before, .ion-ios-information:before, .ion-ios-information-empty:before, .ion-ios-information-outline:before, .ion-ios-ionic-outline:before, .ion-ios-keypad:before, .ion-ios-keypad-outline:before, .ion-ios-lightbulb:before, .ion-ios-lightbulb-outline:before, .ion-ios-list:before, .ion-ios-list-outline:before, .ion-ios-location:before, .ion-ios-location-outline:before, .ion-ios-locked:before, .ion-ios-locked-outline:before, .ion-ios-loop:before, .ion-ios-loop-strong:before, .ion-ios-medical:before, .ion-ios-medical-outline:before, .ion-ios-medkit:before, .ion-ios-medkit-outline:before, .ion-ios-mic:before, .ion-ios-mic-off:before, .ion-ios-mic-outline:before, .ion-ios-minus:before, .ion-ios-minus-empty:before, .ion-ios-minus-outline:before, .ion-ios-monitor:before, .ion-ios-monitor-outline:before, .ion-ios-moon:before, .ion-ios-moon-outline:before, .ion-ios-more:before, .ion-ios-more-outline:before, .ion-ios-musical-note:before, .ion-ios-musical-notes:before, .ion-ios-navigate:before, .ion-ios-navigate-outline:before, .ion-ios-nutrition:before, .ion-ios-nutrition-outline:before, .ion-ios-paper:before, .ion-ios-paper-outline:before, .ion-ios-paperplane:before, .ion-ios-paperplane-outline:before, .ion-ios-partlysunny:before, .ion-ios-partlysunny-outline:before, .ion-ios-pause:before, .ion-ios-pause-outline:before, .ion-ios-paw:before, .ion-ios-paw-outline:before, .ion-ios-people:before, .ion-ios-people-outline:before, .ion-ios-person:before, .ion-ios-person-outline:before, .ion-ios-personadd:before, .ion-ios-personadd-outline:before, .ion-ios-photos:before, .ion-ios-photos-outline:before, .ion-ios-pie:before, .ion-ios-pie-outline:before, .ion-ios-pint:before, .ion-ios-pint-outline:before, .ion-ios-play:before, .ion-ios-play-outline:before, .ion-ios-plus:before, .ion-ios-plus-empty:before, .ion-ios-plus-outline:before, .ion-ios-pricetag:before, .ion-ios-pricetag-outline:before, .ion-ios-pricetags:before, .ion-ios-pricetags-outline:before, .ion-ios-printer:before, .ion-ios-printer-outline:before, .ion-ios-pulse:before, .ion-ios-pulse-strong:before, .ion-ios-rainy:before, .ion-ios-rainy-outline:before, .ion-ios-recording:before, .ion-ios-recording-outline:before, .ion-ios-redo:before, .ion-ios-redo-outline:before, .ion-ios-refresh:before, .ion-ios-refresh-empty:before, .ion-ios-refresh-outline:before, .ion-ios-reload:before, .ion-ios-reverse-camera:before, .ion-ios-reverse-camera-outline:before, .ion-ios-rewind:before, .ion-ios-rewind-outline:before, .ion-ios-rose:before, .ion-ios-rose-outline:before, .ion-ios-search:before, .ion-ios-search-strong:before, .ion-ios-settings:before, .ion-ios-settings-strong:before, .ion-ios-shuffle:before, .ion-ios-shuffle-strong:before, .ion-ios-skipbackward:before, .ion-ios-skipbackward-outline:before, .ion-ios-skipforward:before, .ion-ios-skipforward-outline:before, .ion-ios-snowy:before, .ion-ios-speedometer:before, .ion-ios-speedometer-outline:before, .ion-ios-star:before, .ion-ios-star-half:before, .ion-ios-star-outline:before, .ion-ios-stopwatch:before, .ion-ios-stopwatch-outline:before, .ion-ios-sunny:before, .ion-ios-sunny-outline:before, .ion-ios-telephone:before, .ion-ios-telephone-outline:before, .ion-ios-tennisball:before, .ion-ios-tennisball-outline:before, .ion-ios-thunderstorm:before, .ion-ios-thunderstorm-outline:before, .ion-ios-time:before, .ion-ios-time-outline:before, .ion-ios-timer:before, .ion-ios-timer-outline:before, .ion-ios-toggle:before, .ion-ios-toggle-outline:before, .ion-ios-trash:before, .ion-ios-trash-outline:before, .ion-ios-undo:before, .ion-ios-undo-outline:before, .ion-ios-unlocked:before, .ion-ios-unlocked-outline:before, .ion-ios-upload:before, .ion-ios-upload-outline:before, .ion-ios-videocam:before, .ion-ios-videocam-outline:before, .ion-ios-volume-high:before, .ion-ios-volume-low:before, .ion-ios-wineglass:before, .ion-ios-wineglass-outline:before, .ion-ios-world:before, .ion-ios-world-outline:before, .ion-ipad:before, .ion-iphone:before, .ion-ipod:before, .ion-jet:before, .ion-key:before, .ion-knife:before, .ion-laptop:before, .ion-leaf:before, .ion-levels:before, .ion-lightbulb:before, .ion-link:before, .ion-load-a:before, .ion-load-b:before, .ion-load-c:before, .ion-load-d:before, .ion-location:before, .ion-lock-combination:before, .ion-locked:before, .ion-log-in:before, .ion-log-out:before, .ion-loop:before, .ion-magnet:before, .ion-male:before, .ion-man:before, .ion-map:before, .ion-medkit:before, .ion-merge:before, .ion-mic-a:before, .ion-mic-b:before, .ion-mic-c:before, .ion-minus:before, .ion-minus-circled:before, .ion-minus-round:before, .ion-model-s:before, .ion-monitor:before, .ion-more:before, .ion-mouse:before, .ion-music-note:before, .ion-navicon:before, .ion-navicon-round:before, .ion-navigate:before, .ion-network:before, .ion-no-smoking:before, .ion-nuclear:before, .ion-outlet:before, .ion-paintbrush:before, .ion-paintbucket:before, .ion-paper-airplane:before, .ion-paperclip:before, .ion-pause:before, .ion-person:before, .ion-person-add:before, .ion-person-stalker:before, .ion-pie-graph:before, .ion-pin:before, .ion-pinpoint:before, .ion-pizza:before, .ion-plane:before, .ion-planet:before, .ion-play:before, .ion-playstation:before, .ion-plus:before, .ion-plus-circled:before, .ion-plus-round:before, .ion-podium:before, .ion-pound:before, .ion-power:before, .ion-pricetag:before, .ion-pricetags:before, .ion-printer:before, .ion-pull-request:before, .ion-qr-scanner:before, .ion-quote:before, .ion-radio-waves:before, .ion-record:before, .ion-refresh:before, .ion-reply:before, .ion-reply-all:before, .ion-ribbon-a:before, .ion-ribbon-b:before, .ion-sad:before, .ion-sad-outline:before, .ion-scissors:before, .ion-search:before, .ion-settings:before, .ion-share:before, .ion-shuffle:before, .ion-skip-backward:before, .ion-skip-forward:before, .ion-social-android:before, .ion-social-android-outline:before, .ion-social-angular:before, .ion-social-angular-outline:before, .ion-social-apple:before, .ion-social-apple-outline:before, .ion-social-bitcoin:before, .ion-social-bitcoin-outline:before, .ion-social-buffer:before, .ion-social-buffer-outline:before, .ion-social-chrome:before, .ion-social-chrome-outline:before, .ion-social-codepen:before, .ion-social-codepen-outline:before, .ion-social-css3:before, .ion-social-css3-outline:before, .ion-social-designernews:before, .ion-social-designernews-outline:before, .ion-social-dribbble:before, .ion-social-dribbble-outline:before, .ion-social-dropbox:before, .ion-social-dropbox-outline:before, .ion-social-euro:before, .ion-social-euro-outline:before, .ion-social-facebook:before, .ion-social-facebook-outline:before, .ion-social-foursquare:before, .ion-social-foursquare-outline:before, .ion-social-freebsd-devil:before, .ion-social-github:before, .ion-social-github-outline:before, .ion-social-google:before, .ion-social-google-outline:before, .ion-social-googleplus:before, .ion-social-googleplus-outline:before, .ion-social-hackernews:before, .ion-social-hackernews-outline:before, .ion-social-html5:before, .ion-social-html5-outline:before, .ion-social-instagram:before, .ion-social-instagram-outline:before, .ion-social-javascript:before, .ion-social-javascript-outline:before, .ion-social-linkedin:before, .ion-social-linkedin-outline:before, .ion-social-markdown:before, .ion-social-nodejs:before, .ion-social-octocat:before, .ion-social-pinterest:before, .ion-social-pinterest-outline:before, .ion-social-python:before, .ion-social-reddit:before, .ion-social-reddit-outline:before, .ion-social-rss:before, .ion-social-rss-outline:before, .ion-social-sass:before, .ion-social-skype:before, .ion-social-skype-outline:before, .ion-social-snapchat:before, .ion-social-snapchat-outline:before, .ion-social-tumblr:before, .ion-social-tumblr-outline:before, .ion-social-tux:before, .ion-social-twitch:before, .ion-social-twitch-outline:before, .ion-social-twitter:before, .ion-social-twitter-outline:before, .ion-social-usd:before, .ion-social-usd-outline:before, .ion-social-vimeo:before, .ion-social-vimeo-outline:before, .ion-social-whatsapp:before, .ion-social-whatsapp-outline:before, .ion-social-windows:before, .ion-social-windows-outline:before, .ion-social-wordpress:before, .ion-social-wordpress-outline:before, .ion-social-yahoo:before, .ion-social-yahoo-outline:before, .ion-social-yen:before, .ion-social-yen-outline:before, .ion-social-youtube:before, .ion-social-youtube-outline:before, .ion-soup-can:before, .ion-soup-can-outline:before, .ion-speakerphone:before, .ion-speedometer:before, .ion-spoon:before, .ion-star:before, .ion-stats-bars:before, .ion-steam:before, .ion-stop:before, .ion-thermometer:before, .ion-thumbsdown:before, .ion-thumbsup:before, .ion-toggle:before, .ion-toggle-filled:before, .ion-transgender:before, .ion-trash-a:before, .ion-trash-b:before, .ion-trophy:before, .ion-tshirt:before, .ion-tshirt-outline:before, .ion-umbrella:before, .ion-university:before, .ion-unlocked:before, .ion-upload:before, .ion-usb:before, .ion-videocamera:before, .ion-volume-high:before, .ion-volume-low:before, .ion-volume-medium:before, .ion-volume-mute:before, .ion-wand:before, .ion-waterdrop:before, .ion-wifi:before, .ion-wineglass:before, .ion-woman:before, .ion-wrench:before, .ion-xbox:before {
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.ion-alert:before {
  content: "\f101"
}

.ion-alert-circled:before {
  content: "\f100"
}

.ion-android-add:before {
  content: "\f2c7"
}

.ion-android-add-circle:before {
  content: "\f359"
}

.ion-android-alarm-clock:before {
  content: "\f35a"
}

.ion-android-alert:before {
  content: "\f35b"
}

.ion-android-apps:before {
  content: "\f35c"
}

.ion-android-archive:before {
  content: "\f2c9"
}

.ion-android-arrow-back:before {
  content: "\f2ca"
}

.ion-android-arrow-down:before {
  content: "\f35d"
}

.ion-android-arrow-dropdown:before {
  content: "\f35f"
}

.ion-android-arrow-dropdown-circle:before {
  content: "\f35e"
}

.ion-android-arrow-dropleft:before {
  content: "\f361"
}

.ion-android-arrow-dropleft-circle:before {
  content: "\f360"
}

.ion-android-arrow-dropright:before {
  content: "\f363"
}

.ion-android-arrow-dropright-circle:before {
  content: "\f362"
}

.ion-android-arrow-dropup:before {
  content: "\f365"
}

.ion-android-arrow-dropup-circle:before {
  content: "\f364"
}

.ion-android-arrow-forward:before {
  content: "\f30f"
}

.ion-android-arrow-up:before {
  content: "\f366"
}

.ion-android-attach:before {
  content: "\f367"
}

.ion-android-bar:before {
  content: "\f368"
}

.ion-android-bicycle:before {
  content: "\f369"
}

.ion-android-boat:before {
  content: "\f36a"
}

.ion-android-bookmark:before {
  content: "\f36b"
}

.ion-android-bulb:before {
  content: "\f36c"
}

.ion-android-bus:before {
  content: "\f36d"
}

.ion-android-calendar:before {
  content: "\f2d1"
}

.ion-android-call:before {
  content: "\f2d2"
}

.ion-android-camera:before {
  content: "\f2d3"
}

.ion-android-cancel:before {
  content: "\f36e"
}

.ion-android-car:before {
  content: "\f36f"
}

.ion-android-cart:before {
  content: "\f370"
}

.ion-android-chat:before {
  content: "\f2d4"
}

.ion-android-checkbox:before {
  content: "\f374"
}

.ion-android-checkbox-blank:before {
  content: "\f371"
}

.ion-android-checkbox-outline:before {
  content: "\f373"
}

.ion-android-checkbox-outline-blank:before {
  content: "\f372"
}

.ion-android-checkmark-circle:before {
  content: "\f375"
}

.ion-android-clipboard:before {
  content: "\f376"
}

.ion-android-close:before {
  content: "\f2d7"
}

.ion-android-cloud:before {
  content: "\f37a"
}

.ion-android-cloud-circle:before {
  content: "\f377"
}

.ion-android-cloud-done:before {
  content: "\f378"
}

.ion-android-cloud-outline:before {
  content: "\f379"
}

.ion-android-color-palette:before {
  content: "\f37b"
}

.ion-android-compass:before {
  content: "\f37c"
}

.ion-android-contact:before {
  content: "\f2d8"
}

.ion-android-contacts:before {
  content: "\f2d9"
}

.ion-android-contract:before {
  content: "\f37d"
}

.ion-android-create:before {
  content: "\f37e"
}

.ion-android-delete:before {
  content: "\f37f"
}

.ion-android-desktop:before {
  content: "\f380"
}

.ion-android-document:before {
  content: "\f381"
}

.ion-android-done:before {
  content: "\f383"
}

.ion-android-done-all:before {
  content: "\f382"
}

.ion-android-download:before {
  content: "\f2dd"
}

.ion-android-drafts:before {
  content: "\f384"
}

.ion-android-exit:before {
  content: "\f385"
}

.ion-android-expand:before {
  content: "\f386"
}

.ion-android-favorite:before {
  content: "\f388"
}

.ion-android-favorite-outline:before {
  content: "\f387"
}

.ion-android-film:before {
  content: "\f389"
}

.ion-android-folder:before {
  content: "\f2e0"
}

.ion-android-folder-open:before {
  content: "\f38a"
}

.ion-android-funnel:before {
  content: "\f38b"
}

.ion-android-globe:before {
  content: "\f38c"
}

.ion-android-hand:before {
  content: "\f2e3"
}

.ion-android-hangout:before {
  content: "\f38d"
}

.ion-android-happy:before {
  content: "\f38e"
}

.ion-android-home:before {
  content: "\f38f"
}

.ion-android-image:before {
  content: "\f2e4"
}

.ion-android-laptop:before {
  content: "\f390"
}

.ion-android-list:before {
  content: "\f391"
}

.ion-android-locate:before {
  content: "\f2e9"
}

.ion-android-lock:before {
  content: "\f392"
}

.ion-android-mail:before {
  content: "\f2eb"
}

.ion-android-map:before {
  content: "\f393"
}

.ion-android-menu:before {
  content: "\f394"
}

.ion-android-microphone:before {
  content: "\f2ec"
}

.ion-android-microphone-off:before {
  content: "\f395"
}

.ion-android-more-horizontal:before {
  content: "\f396"
}

.ion-android-more-vertical:before {
  content: "\f397"
}

.ion-android-navigate:before {
  content: "\f398"
}

.ion-android-notifications:before {
  content: "\f39b"
}

.ion-android-notifications-none:before {
  content: "\f399"
}

.ion-android-notifications-off:before {
  content: "\f39a"
}

.ion-android-open:before {
  content: "\f39c"
}

.ion-android-options:before {
  content: "\f39d"
}

.ion-android-people:before {
  content: "\f39e"
}

.ion-android-person:before {
  content: "\f3a0"
}

.ion-android-person-add:before {
  content: "\f39f"
}

.ion-android-phone-landscape:before {
  content: "\f3a1"
}

.ion-android-phone-portrait:before {
  content: "\f3a2"
}

.ion-android-pin:before {
  content: "\f3a3"
}

.ion-android-plane:before {
  content: "\f3a4"
}

.ion-android-playstore:before {
  content: "\f2f0"
}

.ion-android-print:before {
  content: "\f3a5"
}

.ion-android-radio-button-off:before {
  content: "\f3a6"
}

.ion-android-radio-button-on:before {
  content: "\f3a7"
}

.ion-android-refresh:before {
  content: "\f3a8"
}

.ion-android-remove:before {
  content: "\f2f4"
}

.ion-android-remove-circle:before {
  content: "\f3a9"
}

.ion-android-restaurant:before {
  content: "\f3aa"
}

.ion-android-sad:before {
  content: "\f3ab"
}

.ion-android-search:before {
  content: "\f2f5"
}

.ion-android-send:before {
  content: "\f2f6"
}

.ion-android-settings:before {
  content: "\f2f7"
}

.ion-android-share:before {
  content: "\f2f8"
}

.ion-android-share-alt:before {
  content: "\f3ac"
}

.ion-android-star:before {
  content: "\f2fc"
}

.ion-android-star-half:before {
  content: "\f3ad"
}

.ion-android-star-outline:before {
  content: "\f3ae"
}

.ion-android-stopwatch:before {
  content: "\f2fd"
}

.ion-android-subway:before {
  content: "\f3af"
}

.ion-android-sunny:before {
  content: "\f3b0"
}

.ion-android-sync:before {
  content: "\f3b1"
}

.ion-android-textsms:before {
  content: "\f3b2"
}

.ion-android-time:before {
  content: "\f3b3"
}

.ion-android-train:before {
  content: "\f3b4"
}

.ion-android-unlock:before {
  content: "\f3b5"
}

.ion-android-upload:before {
  content: "\f3b6"
}

.ion-android-volume-down:before {
  content: "\f3b7"
}

.ion-android-volume-mute:before {
  content: "\f3b8"
}

.ion-android-volume-off:before {
  content: "\f3b9"
}

.ion-android-volume-up:before {
  content: "\f3ba"
}

.ion-android-walk:before {
  content: "\f3bb"
}

.ion-android-warning:before {
  content: "\f3bc"
}

.ion-android-watch:before {
  content: "\f3bd"
}

.ion-android-wifi:before {
  content: "\f305"
}

.ion-aperture:before {
  content: "\f313"
}

.ion-archive:before {
  content: "\f102"
}

.ion-arrow-down-a:before {
  content: "\f103"
}

.ion-arrow-down-b:before {
  content: "\f104"
}

.ion-arrow-down-c:before {
  content: "\f105"
}

.ion-arrow-expand:before {
  content: "\f25e"
}

.ion-arrow-graph-down-left:before {
  content: "\f25f"
}

.ion-arrow-graph-down-right:before {
  content: "\f260"
}

.ion-arrow-graph-up-left:before {
  content: "\f261"
}

.ion-arrow-graph-up-right:before {
  content: "\f262"
}

.ion-arrow-left-a:before {
  content: "\f106"
}

.ion-arrow-left-b:before {
  content: "\f107"
}

.ion-arrow-left-c:before {
  content: "\f108"
}

.ion-arrow-move:before {
  content: "\f263"
}

.ion-arrow-resize:before {
  content: "\f264"
}

.ion-arrow-return-left:before {
  content: "\f265"
}

.ion-arrow-return-right:before {
  content: "\f266"
}

.ion-arrow-right-a:before {
  content: "\f109"
}

.ion-arrow-right-b:before {
  content: "\f10a"
}

.ion-arrow-right-c:before {
  content: "\f10b"
}

.ion-arrow-shrink:before {
  content: "\f267"
}

.ion-arrow-swap:before {
  content: "\f268"
}

.ion-arrow-up-a:before {
  content: "\f10c"
}

.ion-arrow-up-b:before {
  content: "\f10d"
}

.ion-arrow-up-c:before {
  content: "\f10e"
}

.ion-asterisk:before {
  content: "\f314"
}

.ion-at:before {
  content: "\f10f"
}

.ion-backspace:before {
  content: "\f3bf"
}

.ion-backspace-outline:before {
  content: "\f3be"
}

.ion-bag:before {
  content: "\f110"
}

.ion-battery-charging:before {
  content: "\f111"
}

.ion-battery-empty:before {
  content: "\f112"
}

.ion-battery-full:before {
  content: "\f113"
}

.ion-battery-half:before {
  content: "\f114"
}

.ion-battery-low:before {
  content: "\f115"
}

.ion-beaker:before {
  content: "\f269"
}

.ion-beer:before {
  content: "\f26a"
}

.ion-bluetooth:before {
  content: "\f116"
}

.ion-bonfire:before {
  content: "\f315"
}

.ion-bookmark:before {
  content: "\f26b"
}

.ion-bowtie:before {
  content: "\f3c0"
}

.ion-briefcase:before {
  content: "\f26c"
}

.ion-bug:before {
  content: "\f2be"
}

.ion-calculator:before {
  content: "\f26d"
}

.ion-calendar:before {
  content: "\f117"
}

.ion-camera:before {
  content: "\f118"
}

.ion-card:before {
  content: "\f119"
}

.ion-cash:before {
  content: "\f316"
}

.ion-chatbox:before {
  content: "\f11b"
}

.ion-chatbox-working:before {
  content: "\f11a"
}

.ion-chatboxes:before {
  content: "\f11c"
}

.ion-chatbubble:before {
  content: "\f11e"
}

.ion-chatbubble-working:before {
  content: "\f11d"
}

.ion-chatbubbles:before {
  content: "\f11f"
}

.ion-checkmark:before {
  content: "\f122"
}

.ion-checkmark-circled:before {
  content: "\f120"
}

.ion-checkmark-round:before {
  content: "\f121"
}

.ion-chevron-down:before {
  content: "\f123"
}

.ion-chevron-left:before {
  content: "\f124"
}

.ion-chevron-right:before {
  content: "\f125"
}

.ion-chevron-up:before {
  content: "\f126"
}

.ion-clipboard:before {
  content: "\f127"
}

.ion-clock:before {
  content: "\f26e"
}

.ion-close:before {
  content: "\f12a"
}

.ion-close-circled:before {
  content: "\f128"
}

.ion-close-round:before {
  content: "\f129"
}

.ion-closed-captioning:before {
  content: "\f317"
}

.ion-cloud:before {
  content: "\f12b"
}

.ion-code:before {
  content: "\f271"
}

.ion-code-download:before {
  content: "\f26f"
}

.ion-code-working:before {
  content: "\f270"
}

.ion-coffee:before {
  content: "\f272"
}

.ion-compass:before {
  content: "\f273"
}

.ion-compose:before {
  content: "\f12c"
}

.ion-connection-bars:before {
  content: "\f274"
}

.ion-contrast:before {
  content: "\f275"
}

.ion-crop:before {
  content: "\f3c1"
}

.ion-cube:before {
  content: "\f318"
}

.ion-disc:before {
  content: "\f12d"
}

.ion-document:before {
  content: "\f12f"
}

.ion-document-text:before {
  content: "\f12e"
}

.ion-drag:before {
  content: "\f130"
}

.ion-earth:before {
  content: "\f276"
}

.ion-easel:before {
  content: "\f3c2"
}

.ion-edit:before {
  content: "\f2bf"
}

.ion-egg:before {
  content: "\f277"
}

.ion-eject:before {
  content: "\f131"
}

.ion-email:before {
  content: "\f132"
}

.ion-email-unread:before {
  content: "\f3c3"
}

.ion-erlenmeyer-flask:before {
  content: "\f3c5"
}

.ion-erlenmeyer-flask-bubbles:before {
  content: "\f3c4"
}

.ion-eye:before {
  content: "\f133"
}

.ion-eye-disabled:before {
  content: "\f306"
}

.ion-female:before {
  content: "\f278"
}

.ion-filing:before {
  content: "\f134"
}

.ion-film-marker:before {
  content: "\f135"
}

.ion-fireball:before {
  content: "\f319"
}

.ion-flag:before {
  content: "\f279"
}

.ion-flame:before {
  content: "\f31a"
}

.ion-flash:before {
  content: "\f137"
}

.ion-flash-off:before {
  content: "\f136"
}

.ion-folder:before {
  content: "\f139"
}

.ion-fork:before {
  content: "\f27a"
}

.ion-fork-repo:before {
  content: "\f2c0"
}

.ion-forward:before {
  content: "\f13a"
}

.ion-funnel:before {
  content: "\f31b"
}

.ion-gear-a:before {
  content: "\f13d"
}

.ion-gear-b:before {
  content: "\f13e"
}

.ion-grid:before {
  content: "\f13f"
}

.ion-hammer:before {
  content: "\f27b"
}

.ion-happy:before {
  content: "\f31c"
}

.ion-happy-outline:before {
  content: "\f3c6"
}

.ion-headphone:before {
  content: "\f140"
}

.ion-heart:before {
  content: "\f141"
}

.ion-heart-broken:before {
  content: "\f31d"
}

.ion-help:before {
  content: "\f143"
}

.ion-help-buoy:before {
  content: "\f27c"
}

.ion-help-circled:before {
  content: "\f142"
}

.ion-home:before {
  content: "\f144"
}

.ion-icecream:before {
  content: "\f27d"
}

.ion-image:before {
  content: "\f147"
}

.ion-images:before {
  content: "\f148"
}

.ion-information:before {
  content: "\f14a"
}

.ion-information-circled:before {
  content: "\f149"
}

.ion-ionic:before {
  content: "\f14b"
}

.ion-ios-alarm:before {
  content: "\f3c8"
}

.ion-ios-alarm-outline:before {
  content: "\f3c7"
}

.ion-ios-albums:before {
  content: "\f3ca"
}

.ion-ios-albums-outline:before {
  content: "\f3c9"
}

.ion-ios-americanfootball:before {
  content: "\f3cc"
}

.ion-ios-americanfootball-outline:before {
  content: "\f3cb"
}

.ion-ios-analytics:before {
  content: "\f3ce"
}

.ion-ios-analytics-outline:before {
  content: "\f3cd"
}

.ion-ios-arrow-back:before {
  content: "\f3cf"
}

.ion-ios-arrow-down:before {
  content: "\f3d0"
}

.ion-ios-arrow-forward:before {
  content: "\f3d1"
}

.ion-ios-arrow-left:before {
  content: "\f3d2"
}

.ion-ios-arrow-right:before {
  content: "\f3d3"
}

.ion-ios-arrow-thin-down:before {
  content: "\f3d4"
}

.ion-ios-arrow-thin-left:before {
  content: "\f3d5"
}

.ion-ios-arrow-thin-right:before {
  content: "\f3d6"
}

.ion-ios-arrow-thin-up:before {
  content: "\f3d7"
}

.ion-ios-arrow-up:before {
  content: "\f3d8"
}

.ion-ios-at:before {
  content: "\f3da"
}

.ion-ios-at-outline:before {
  content: "\f3d9"
}

.ion-ios-barcode:before {
  content: "\f3dc"
}

.ion-ios-barcode-outline:before {
  content: "\f3db"
}

.ion-ios-baseball:before {
  content: "\f3de"
}

.ion-ios-baseball-outline:before {
  content: "\f3dd"
}

.ion-ios-basketball:before {
  content: "\f3e0"
}

.ion-ios-basketball-outline:before {
  content: "\f3df"
}

.ion-ios-bell:before {
  content: "\f3e2"
}

.ion-ios-bell-outline:before {
  content: "\f3e1"
}

.ion-ios-body:before {
  content: "\f3e4"
}

.ion-ios-body-outline:before {
  content: "\f3e3"
}

.ion-ios-bolt:before {
  content: "\f3e6"
}

.ion-ios-bolt-outline:before {
  content: "\f3e5"
}

.ion-ios-book:before {
  content: "\f3e8"
}

.ion-ios-book-outline:before {
  content: "\f3e7"
}

.ion-ios-bookmarks:before {
  content: "\f3ea"
}

.ion-ios-bookmarks-outline:before {
  content: "\f3e9"
}

.ion-ios-box:before {
  content: "\f3ec"
}

.ion-ios-box-outline:before {
  content: "\f3eb"
}

.ion-ios-briefcase:before {
  content: "\f3ee"
}

.ion-ios-briefcase-outline:before {
  content: "\f3ed"
}

.ion-ios-browsers:before {
  content: "\f3f0"
}

.ion-ios-browsers-outline:before {
  content: "\f3ef"
}

.ion-ios-calculator:before {
  content: "\f3f2"
}

.ion-ios-calculator-outline:before {
  content: "\f3f1"
}

.ion-ios-calendar:before {
  content: "\f3f4"
}

.ion-ios-calendar-outline:before {
  content: "\f3f3"
}

.ion-ios-camera:before {
  content: "\f3f6"
}

.ion-ios-camera-outline:before {
  content: "\f3f5"
}

.ion-ios-cart:before {
  content: "\f3f8"
}

.ion-ios-cart-outline:before {
  content: "\f3f7"
}

.ion-ios-chatboxes:before {
  content: "\f3fa"
}

.ion-ios-chatboxes-outline:before {
  content: "\f3f9"
}

.ion-ios-chatbubble:before {
  content: "\f3fc"
}

.ion-ios-chatbubble-outline:before {
  content: "\f3fb"
}

.ion-ios-checkmark:before {
  content: "\f3ff"
}

.ion-ios-checkmark-empty:before {
  content: "\f3fd"
}

.ion-ios-checkmark-outline:before {
  content: "\f3fe"
}

.ion-ios-circle-filled:before {
  content: "\f400"
}

.ion-ios-circle-outline:before {
  content: "\f401"
}

.ion-ios-clock:before {
  content: "\f403"
}

.ion-ios-clock-outline:before {
  content: "\f402"
}

.ion-ios-close:before {
  content: "\f406"
}

.ion-ios-close-empty:before {
  content: "\f404"
}

.ion-ios-close-outline:before {
  content: "\f405"
}

.ion-ios-cloud:before {
  content: "\f40c"
}

.ion-ios-cloud-download:before {
  content: "\f408"
}

.ion-ios-cloud-download-outline:before {
  content: "\f407"
}

.ion-ios-cloud-outline:before {
  content: "\f409"
}

.ion-ios-cloud-upload:before {
  content: "\f40b"
}

.ion-ios-cloud-upload-outline:before {
  content: "\f40a"
}

.ion-ios-cloudy:before {
  content: "\f410"
}

.ion-ios-cloudy-night:before {
  content: "\f40e"
}

.ion-ios-cloudy-night-outline:before {
  content: "\f40d"
}

.ion-ios-cloudy-outline:before {
  content: "\f40f"
}

.ion-ios-cog:before {
  content: "\f412"
}

.ion-ios-cog-outline:before {
  content: "\f411"
}

.ion-ios-color-filter:before {
  content: "\f414"
}

.ion-ios-color-filter-outline:before {
  content: "\f413"
}

.ion-ios-color-wand:before {
  content: "\f416"
}

.ion-ios-color-wand-outline:before {
  content: "\f415"
}

.ion-ios-compose:before {
  content: "\f418"
}

.ion-ios-compose-outline:before {
  content: "\f417"
}

.ion-ios-contact:before {
  content: "\f41a"
}

.ion-ios-contact-outline:before {
  content: "\f419"
}

.ion-ios-copy:before {
  content: "\f41c"
}

.ion-ios-copy-outline:before {
  content: "\f41b"
}

.ion-ios-crop:before {
  content: "\f41e"
}

.ion-ios-crop-strong:before {
  content: "\f41d"
}

.ion-ios-download:before {
  content: "\f420"
}

.ion-ios-download-outline:before {
  content: "\f41f"
}

.ion-ios-drag:before {
  content: "\f421"
}

.ion-ios-email:before {
  content: "\f423"
}

.ion-ios-email-outline:before {
  content: "\f422"
}

.ion-ios-eye:before {
  content: "\f425"
}

.ion-ios-eye-outline:before {
  content: "\f424"
}

.ion-ios-fastforward:before {
  content: "\f427"
}

.ion-ios-fastforward-outline:before {
  content: "\f426"
}

.ion-ios-filing:before {
  content: "\f429"
}

.ion-ios-filing-outline:before {
  content: "\f428"
}

.ion-ios-film:before {
  content: "\f42b"
}

.ion-ios-film-outline:before {
  content: "\f42a"
}

.ion-ios-flag:before {
  content: "\f42d"
}

.ion-ios-flag-outline:before {
  content: "\f42c"
}

.ion-ios-flame:before {
  content: "\f42f"
}

.ion-ios-flame-outline:before {
  content: "\f42e"
}

.ion-ios-flask:before {
  content: "\f431"
}

.ion-ios-flask-outline:before {
  content: "\f430"
}

.ion-ios-flower:before {
  content: "\f433"
}

.ion-ios-flower-outline:before {
  content: "\f432"
}

.ion-ios-folder:before {
  content: "\f435"
}

.ion-ios-folder-outline:before {
  content: "\f434"
}

.ion-ios-football:before {
  content: "\f437"
}

.ion-ios-football-outline:before {
  content: "\f436"
}

.ion-ios-game-controller-a:before {
  content: "\f439"
}

.ion-ios-game-controller-a-outline:before {
  content: "\f438"
}

.ion-ios-game-controller-b:before {
  content: "\f43b"
}

.ion-ios-game-controller-b-outline:before {
  content: "\f43a"
}

.ion-ios-gear:before {
  content: "\f43d"
}

.ion-ios-gear-outline:before {
  content: "\f43c"
}

.ion-ios-glasses:before {
  content: "\f43f"
}

.ion-ios-glasses-outline:before {
  content: "\f43e"
}

.ion-ios-grid-view:before {
  content: "\f441"
}

.ion-ios-grid-view-outline:before {
  content: "\f440"
}

.ion-ios-heart:before {
  content: "\f443"
}

.ion-ios-heart-outline:before {
  content: "\f442"
}

.ion-ios-help:before {
  content: "\f446"
}

.ion-ios-help-empty:before {
  content: "\f444"
}

.ion-ios-help-outline:before {
  content: "\f445"
}

.ion-ios-home:before {
  content: "\f448"
}

.ion-ios-home-outline:before {
  content: "\f447"
}

.ion-ios-infinite:before {
  content: "\f44a"
}

.ion-ios-infinite-outline:before {
  content: "\f449"
}

.ion-ios-information:before {
  content: "\f44d"
}

.ion-ios-information-empty:before {
  content: "\f44b"
}

.ion-ios-information-outline:before {
  content: "\f44c"
}

.ion-ios-ionic-outline:before {
  content: "\f44e"
}

.ion-ios-keypad:before {
  content: "\f450"
}

.ion-ios-keypad-outline:before {
  content: "\f44f"
}

.ion-ios-lightbulb:before {
  content: "\f452"
}

.ion-ios-lightbulb-outline:before {
  content: "\f451"
}

.ion-ios-list:before {
  content: "\f454"
}

.ion-ios-list-outline:before {
  content: "\f453"
}

.ion-ios-location:before {
  content: "\f456"
}

.ion-ios-location-outline:before {
  content: "\f455"
}

.ion-ios-locked:before {
  content: "\f458"
}

.ion-ios-locked-outline:before {
  content: "\f457"
}

.ion-ios-loop:before {
  content: "\f45a"
}

.ion-ios-loop-strong:before {
  content: "\f459"
}

.ion-ios-medical:before {
  content: "\f45c"
}

.ion-ios-medical-outline:before {
  content: "\f45b"
}

.ion-ios-medkit:before {
  content: "\f45e"
}

.ion-ios-medkit-outline:before {
  content: "\f45d"
}

.ion-ios-mic:before {
  content: "\f461"
}

.ion-ios-mic-off:before {
  content: "\f45f"
}

.ion-ios-mic-outline:before {
  content: "\f460"
}

.ion-ios-minus:before {
  content: "\f464"
}

.ion-ios-minus-empty:before {
  content: "\f462"
}

.ion-ios-minus-outline:before {
  content: "\f463"
}

.ion-ios-monitor:before {
  content: "\f466"
}

.ion-ios-monitor-outline:before {
  content: "\f465"
}

.ion-ios-moon:before {
  content: "\f468"
}

.ion-ios-moon-outline:before {
  content: "\f467"
}

.ion-ios-more:before {
  content: "\f46a"
}

.ion-ios-more-outline:before {
  content: "\f469"
}

.ion-ios-musical-note:before {
  content: "\f46b"
}

.ion-ios-musical-notes:before {
  content: "\f46c"
}

.ion-ios-navigate:before {
  content: "\f46e"
}

.ion-ios-navigate-outline:before {
  content: "\f46d"
}

.ion-ios-nutrition:before {
  content: "\f470"
}

.ion-ios-nutrition-outline:before {
  content: "\f46f"
}

.ion-ios-paper:before {
  content: "\f472"
}

.ion-ios-paper-outline:before {
  content: "\f471"
}

.ion-ios-paperplane:before {
  content: "\f474"
}

.ion-ios-paperplane-outline:before {
  content: "\f473"
}

.ion-ios-partlysunny:before {
  content: "\f476"
}

.ion-ios-partlysunny-outline:before {
  content: "\f475"
}

.ion-ios-pause:before {
  content: "\f478"
}

.ion-ios-pause-outline:before {
  content: "\f477"
}

.ion-ios-paw:before {
  content: "\f47a"
}

.ion-ios-paw-outline:before {
  content: "\f479"
}

.ion-ios-people:before {
  content: "\f47c"
}

.ion-ios-people-outline:before {
  content: "\f47b"
}

.ion-ios-person:before {
  content: "\f47e"
}

.ion-ios-person-outline:before {
  content: "\f47d"
}

.ion-ios-personadd:before {
  content: "\f480"
}

.ion-ios-personadd-outline:before {
  content: "\f47f"
}

.ion-ios-photos:before {
  content: "\f482"
}

.ion-ios-photos-outline:before {
  content: "\f481"
}

.ion-ios-pie:before {
  content: "\f484"
}

.ion-ios-pie-outline:before {
  content: "\f483"
}

.ion-ios-pint:before {
  content: "\f486"
}

.ion-ios-pint-outline:before {
  content: "\f485"
}

.ion-ios-play:before {
  content: "\f488"
}

.ion-ios-play-outline:before {
  content: "\f487"
}

.ion-ios-plus:before {
  content: "\f48b"
}

.ion-ios-plus-empty:before {
  content: "\f489"
}

.ion-ios-plus-outline:before {
  content: "\f48a"
}

.ion-ios-pricetag:before {
  content: "\f48d"
}

.ion-ios-pricetag-outline:before {
  content: "\f48c"
}

.ion-ios-pricetags:before {
  content: "\f48f"
}

.ion-ios-pricetags-outline:before {
  content: "\f48e"
}

.ion-ios-printer:before {
  content: "\f491"
}

.ion-ios-printer-outline:before {
  content: "\f490"
}

.ion-ios-pulse:before {
  content: "\f493"
}

.ion-ios-pulse-strong:before {
  content: "\f492"
}

.ion-ios-rainy:before {
  content: "\f495"
}

.ion-ios-rainy-outline:before {
  content: "\f494"
}

.ion-ios-recording:before {
  content: "\f497"
}

.ion-ios-recording-outline:before {
  content: "\f496"
}

.ion-ios-redo:before {
  content: "\f499"
}

.ion-ios-redo-outline:before {
  content: "\f498"
}

.ion-ios-refresh:before {
  content: "\f49c"
}

.ion-ios-refresh-empty:before {
  content: "\f49a"
}

.ion-ios-refresh-outline:before {
  content: "\f49b"
}

.ion-ios-reload:before {
  content: "\f49d"
}

.ion-ios-reverse-camera:before {
  content: "\f49f"
}

.ion-ios-reverse-camera-outline:before {
  content: "\f49e"
}

.ion-ios-rewind:before {
  content: "\f4a1"
}

.ion-ios-rewind-outline:before {
  content: "\f4a0"
}

.ion-ios-rose:before {
  content: "\f4a3"
}

.ion-ios-rose-outline:before {
  content: "\f4a2"
}

.ion-ios-search:before {
  content: "\f4a5"
}

.ion-ios-search-strong:before {
  content: "\f4a4"
}

.ion-ios-settings:before {
  content: "\f4a7"
}

.ion-ios-settings-strong:before {
  content: "\f4a6"
}

.ion-ios-shuffle:before {
  content: "\f4a9"
}

.ion-ios-shuffle-strong:before {
  content: "\f4a8"
}

.ion-ios-skipbackward:before {
  content: "\f4ab"
}

.ion-ios-skipbackward-outline:before {
  content: "\f4aa"
}

.ion-ios-skipforward:before {
  content: "\f4ad"
}

.ion-ios-skipforward-outline:before {
  content: "\f4ac"
}

.ion-ios-snowy:before {
  content: "\f4ae"
}

.ion-ios-speedometer:before {
  content: "\f4b0"
}

.ion-ios-speedometer-outline:before {
  content: "\f4af"
}

.ion-ios-star:before {
  content: "\f4b3"
}

.ion-ios-star-half:before {
  content: "\f4b1"
}

.ion-ios-star-outline:before {
  content: "\f4b2"
}

.ion-ios-stopwatch:before {
  content: "\f4b5"
}

.ion-ios-stopwatch-outline:before {
  content: "\f4b4"
}

.ion-ios-sunny:before {
  content: "\f4b7"
}

.ion-ios-sunny-outline:before {
  content: "\f4b6"
}

.ion-ios-telephone:before {
  content: "\f4b9"
}

.ion-ios-telephone-outline:before {
  content: "\f4b8"
}

.ion-ios-tennisball:before {
  content: "\f4bb"
}

.ion-ios-tennisball-outline:before {
  content: "\f4ba"
}

.ion-ios-thunderstorm:before {
  content: "\f4bd"
}

.ion-ios-thunderstorm-outline:before {
  content: "\f4bc"
}

.ion-ios-time:before {
  content: "\f4bf"
}

.ion-ios-time-outline:before {
  content: "\f4be"
}

.ion-ios-timer:before {
  content: "\f4c1"
}

.ion-ios-timer-outline:before {
  content: "\f4c0"
}

.ion-ios-toggle:before {
  content: "\f4c3"
}

.ion-ios-toggle-outline:before {
  content: "\f4c2"
}

.ion-ios-trash:before {
  content: "\f4c5"
}

.ion-ios-trash-outline:before {
  content: "\f4c4"
}

.ion-ios-undo:before {
  content: "\f4c7"
}

.ion-ios-undo-outline:before {
  content: "\f4c6"
}

.ion-ios-unlocked:before {
  content: "\f4c9"
}

.ion-ios-unlocked-outline:before {
  content: "\f4c8"
}

.ion-ios-upload:before {
  content: "\f4cb"
}

.ion-ios-upload-outline:before {
  content: "\f4ca"
}

.ion-ios-videocam:before {
  content: "\f4cd"
}

.ion-ios-videocam-outline:before {
  content: "\f4cc"
}

.ion-ios-volume-high:before {
  content: "\f4ce"
}

.ion-ios-volume-low:before {
  content: "\f4cf"
}

.ion-ios-wineglass:before {
  content: "\f4d1"
}

.ion-ios-wineglass-outline:before {
  content: "\f4d0"
}

.ion-ios-world:before {
  content: "\f4d3"
}

.ion-ios-world-outline:before {
  content: "\f4d2"
}

.ion-ipad:before {
  content: "\f1f9"
}

.ion-iphone:before {
  content: "\f1fa"
}

.ion-ipod:before {
  content: "\f1fb"
}

.ion-jet:before {
  content: "\f295"
}

.ion-key:before {
  content: "\f296"
}

.ion-knife:before {
  content: "\f297"
}

.ion-laptop:before {
  content: "\f1fc"
}

.ion-leaf:before {
  content: "\f1fd"
}

.ion-levels:before {
  content: "\f298"
}

.ion-lightbulb:before {
  content: "\f299"
}

.ion-link:before {
  content: "\f1fe"
}

.ion-load-a:before {
  content: "\f29a"
}

.ion-load-b:before {
  content: "\f29b"
}

.ion-load-c:before {
  content: "\f29c"
}

.ion-load-d:before {
  content: "\f29d"
}

.ion-location:before {
  content: "\f1ff"
}

.ion-lock-combination:before {
  content: "\f4d4"
}

.ion-locked:before {
  content: "\f200"
}

.ion-log-in:before {
  content: "\f29e"
}

.ion-log-out:before {
  content: "\f29f"
}

.ion-loop:before {
  content: "\f201"
}

.ion-magnet:before {
  content: "\f2a0"
}

.ion-male:before {
  content: "\f2a1"
}

.ion-man:before {
  content: "\f202"
}

.ion-map:before {
  content: "\f203"
}

.ion-medkit:before {
  content: "\f2a2"
}

.ion-merge:before {
  content: "\f33f"
}

.ion-mic-a:before {
  content: "\f204"
}

.ion-mic-b:before {
  content: "\f205"
}

.ion-mic-c:before {
  content: "\f206"
}

.ion-minus:before {
  content: "\f209"
}

.ion-minus-circled:before {
  content: "\f207"
}

.ion-minus-round:before {
  content: "\f208"
}

.ion-model-s:before {
  content: "\f2c1"
}

.ion-monitor:before {
  content: "\f20a"
}

.ion-more:before {
  content: "\f20b"
}

.ion-mouse:before {
  content: "\f340"
}

.ion-music-note:before {
  content: "\f20c"
}

.ion-navicon:before {
  content: "\f20e"
}

.ion-navicon-round:before {
  content: "\f20d"
}

.ion-navigate:before {
  content: "\f2a3"
}

.ion-network:before {
  content: "\f341"
}

.ion-no-smoking:before {
  content: "\f2c2"
}

.ion-nuclear:before {
  content: "\f2a4"
}

.ion-outlet:before {
  content: "\f342"
}

.ion-paintbrush:before {
  content: "\f4d5"
}

.ion-paintbucket:before {
  content: "\f4d6"
}

.ion-paper-airplane:before {
  content: "\f2c3"
}

.ion-paperclip:before {
  content: "\f20f"
}

.ion-pause:before {
  content: "\f210"
}

.ion-person:before {
  content: "\f213"
}

.ion-person-add:before {
  content: "\f211"
}

.ion-person-stalker:before {
  content: "\f212"
}

.ion-pie-graph:before {
  content: "\f2a5"
}

.ion-pin:before {
  content: "\f2a6"
}

.ion-pinpoint:before {
  content: "\f2a7"
}

.ion-pizza:before {
  content: "\f2a8"
}

.ion-plane:before {
  content: "\f214"
}

.ion-planet:before {
  content: "\f343"
}

.ion-play:before {
  content: "\f215"
}

.ion-playstation:before {
  content: "\f30a"
}

.ion-plus:before {
  content: "\f218"
}

.ion-plus-circled:before {
  content: "\f216"
}

.ion-plus-round:before {
  content: "\f217"
}

.ion-podium:before {
  content: "\f344"
}

.ion-pound:before {
  content: "\f219"
}

.ion-power:before {
  content: "\f2a9"
}

.ion-pricetag:before {
  content: "\f2aa"
}

.ion-pricetags:before {
  content: "\f2ab"
}

.ion-printer:before {
  content: "\f21a"
}

.ion-pull-request:before {
  content: "\f345"
}

.ion-qr-scanner:before {
  content: "\f346"
}

.ion-quote:before {
  content: "\f347"
}

.ion-radio-waves:before {
  content: "\f2ac"
}

.ion-record:before {
  content: "\f21b"
}

.ion-refresh:before {
  content: "\f21c"
}

.ion-reply:before {
  content: "\f21e"
}

.ion-reply-all:before {
  content: "\f21d"
}

.ion-ribbon-a:before {
  content: "\f348"
}

.ion-ribbon-b:before {
  content: "\f349"
}

.ion-sad:before {
  content: "\f34a"
}

.ion-sad-outline:before {
  content: "\f4d7"
}

.ion-scissors:before {
  content: "\f34b"
}

.ion-search:before {
  content: "\f21f"
}

.ion-settings:before {
  content: "\f2ad"
}

.ion-share:before {
  content: "\f220"
}

.ion-shuffle:before {
  content: "\f221"
}

.ion-skip-backward:before {
  content: "\f222"
}

.ion-skip-forward:before {
  content: "\f223"
}

.ion-social-android:before {
  content: "\f225"
}

.ion-social-android-outline:before {
  content: "\f224"
}

.ion-social-angular:before {
  content: "\f4d9"
}

.ion-social-angular-outline:before {
  content: "\f4d8"
}

.ion-social-apple:before {
  content: "\f227"
}

.ion-social-apple-outline:before {
  content: "\f226"
}

.ion-social-bitcoin:before {
  content: "\f2af"
}

.ion-social-bitcoin-outline:before {
  content: "\f2ae"
}

.ion-social-buffer:before {
  content: "\f229"
}

.ion-social-buffer-outline:before {
  content: "\f228"
}

.ion-social-chrome:before {
  content: "\f4db"
}

.ion-social-chrome-outline:before {
  content: "\f4da"
}

.ion-social-codepen:before {
  content: "\f4dd"
}

.ion-social-codepen-outline:before {
  content: "\f4dc"
}

.ion-social-css3:before {
  content: "\f4df"
}

.ion-social-css3-outline:before {
  content: "\f4de"
}

.ion-social-designernews:before {
  content: "\f22b"
}

.ion-social-designernews-outline:before {
  content: "\f22a"
}

.ion-social-dribbble:before {
  content: "\f22d"
}

.ion-social-dribbble-outline:before {
  content: "\f22c"
}

.ion-social-dropbox:before {
  content: "\f22f"
}

.ion-social-dropbox-outline:before {
  content: "\f22e"
}

.ion-social-euro:before {
  content: "\f4e1"
}

.ion-social-euro-outline:before {
  content: "\f4e0"
}

.ion-social-facebook:before {
  content: "\f231"
}

.ion-social-facebook-outline:before {
  content: "\f230"
}

.ion-social-foursquare:before {
  content: "\f34d"
}

.ion-social-foursquare-outline:before {
  content: "\f34c"
}

.ion-social-freebsd-devil:before {
  content: "\f2c4"
}

.ion-social-github:before {
  content: "\f233"
}

.ion-social-github-outline:before {
  content: "\f232"
}

.ion-social-google:before {
  content: "\f34f"
}

.ion-social-google-outline:before {
  content: "\f34e"
}

.ion-social-googleplus:before {
  content: "\f235"
}

.ion-social-googleplus-outline:before {
  content: "\f234"
}

.ion-social-hackernews:before {
  content: "\f237"
}

.ion-social-hackernews-outline:before {
  content: "\f236"
}

.ion-social-html5:before {
  content: "\f4e3"
}

.ion-social-html5-outline:before {
  content: "\f4e2"
}

.ion-social-instagram:before {
  content: "\f351"
}

.ion-social-instagram-outline:before {
  content: "\f350"
}

.ion-social-javascript:before {
  content: "\f4e5"
}

.ion-social-javascript-outline:before {
  content: "\f4e4"
}

.ion-social-linkedin:before {
  content: "\f239"
}

.ion-social-linkedin-outline:before {
  content: "\f238"
}

.ion-social-markdown:before {
  content: "\f4e6"
}

.ion-social-nodejs:before {
  content: "\f4e7"
}

.ion-social-octocat:before {
  content: "\f4e8"
}

.ion-social-pinterest:before {
  content: "\f2b1"
}

.ion-social-pinterest-outline:before {
  content: "\f2b0"
}

.ion-social-python:before {
  content: "\f4e9"
}

.ion-social-reddit:before {
  content: "\f23b"
}

.ion-social-reddit-outline:before {
  content: "\f23a"
}

.ion-social-rss:before {
  content: "\f23d"
}

.ion-social-rss-outline:before {
  content: "\f23c"
}

.ion-social-sass:before {
  content: "\f4ea"
}

.ion-social-skype:before {
  content: "\f23f"
}

.ion-social-skype-outline:before {
  content: "\f23e"
}

.ion-social-snapchat:before {
  content: "\f4ec"
}

.ion-social-snapchat-outline:before {
  content: "\f4eb"
}

.ion-social-tumblr:before {
  content: "\f241"
}

.ion-social-tumblr-outline:before {
  content: "\f240"
}

.ion-social-tux:before {
  content: "\f2c5"
}

.ion-social-twitch:before {
  content: "\f4ee"
}

.ion-social-twitch-outline:before {
  content: "\f4ed"
}

.ion-social-twitter:before {
  content: "\f243"
}

.ion-social-twitter-outline:before {
  content: "\f242"
}

.ion-social-usd:before {
  content: "\f353"
}

.ion-social-usd-outline:before {
  content: "\f352"
}

.ion-social-vimeo:before {
  content: "\f245"
}

.ion-social-vimeo-outline:before {
  content: "\f244"
}

.ion-social-whatsapp:before {
  content: "\f4f0"
}

.ion-social-whatsapp-outline:before {
  content: "\f4ef"
}

.ion-social-windows:before {
  content: "\f247"
}

.ion-social-windows-outline:before {
  content: "\f246"
}

.ion-social-wordpress:before {
  content: "\f249"
}

.ion-social-wordpress-outline:before {
  content: "\f248"
}

.ion-social-yahoo:before {
  content: "\f24b"
}

.ion-social-yahoo-outline:before {
  content: "\f24a"
}

.ion-social-yen:before {
  content: "\f4f2"
}

.ion-social-yen-outline:before {
  content: "\f4f1"
}

.ion-social-youtube:before {
  content: "\f24d"
}

.ion-social-youtube-outline:before {
  content: "\f24c"
}

.ion-soup-can:before {
  content: "\f4f4"
}

.ion-soup-can-outline:before {
  content: "\f4f3"
}

.ion-speakerphone:before {
  content: "\f2b2"
}

.ion-speedometer:before {
  content: "\f2b3"
}

.ion-spoon:before {
  content: "\f2b4"
}

.ion-star:before {
  content: "\f24e"
}

.ion-stats-bars:before {
  content: "\f2b5"
}

.ion-steam:before {
  content: "\f30b"
}

.ion-stop:before {
  content: "\f24f"
}

.ion-thermometer:before {
  content: "\f2b6"
}

.ion-thumbsdown:before {
  content: "\f250"
}

.ion-thumbsup:before {
  content: "\f251"
}

.ion-toggle:before {
  content: "\f355"
}

.ion-toggle-filled:before {
  content: "\f354"
}

.ion-transgender:before {
  content: "\f4f5"
}

.ion-trash-a:before {
  content: "\f252"
}

.ion-trash-b:before {
  content: "\f253"
}

.ion-trophy:before {
  content: "\f356"
}

.ion-tshirt:before {
  content: "\f4f7"
}

.ion-tshirt-outline:before {
  content: "\f4f6"
}

.ion-umbrella:before {
  content: "\f2b7"
}

.ion-university:before {
  content: "\f357"
}

.ion-unlocked:before {
  content: "\f254"
}

.ion-upload:before {
  content: "\f255"
}

.ion-usb:before {
  content: "\f2b8"
}

.ion-videocamera:before {
  content: "\f256"
}

.ion-volume-high:before {
  content: "\f257"
}

.ion-volume-low:before {
  content: "\f258"
}

.ion-volume-medium:before {
  content: "\f259"
}

.ion-volume-mute:before {
  content: "\f25a"
}

.ion-wand:before {
  content: "\f358"
}

.ion-waterdrop:before {
  content: "\f25b"
}

.ion-wifi:before {
  content: "\f25c"
}

.ion-wineglass:before {
  content: "\f2b9"
}

.ion-woman:before {
  content: "\f25d"
}

.ion-wrench:before {
  content: "\f2ba"
}

.ion-xbox:before {
  content: "\f30c"
}

@font-face {
  font-family: 'Linearicons';
  src: url('../fonts/Linearicons.eot?4t1dgh');
  src: url('../fonts/Linearicons.eot?4t1dgh#iefix') format('embedded-opentype'), url('../fonts/Linearicons.ttf?4t1dgh') format('truetype'), url('../fonts/Linearicons.woff?4t1dgh') format('woff'), url('../fonts/Linearicons.svg?4t1dgh#Linearicons') format('svg');
  font-weight: normal;
  font-style: normal;
  src: url(../fonts/Linearicons.eot); /* For IE6-8 */
  src: local('Linearicons'), local('Linearicons'), url('../fonts/Linearicons.woff') format('woff'), url('../fonts/Linearicons.ttf') format('truetype');
}

.linearicons,
[class^="linearicons-"], [class*=" linearicons-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Linearicons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.linearicons-home:before {
  content: "\e900";
}

.linearicons-home2:before {
  content: "\e901";
}

.linearicons-home3:before {
  content: "\e902";
}

.linearicons-home4:before {
  content: "\e903";
}

.linearicons-home5:before {
  content: "\e904";
}

.linearicons-home6:before {
  content: "\e905";
}

.linearicons-bathtub:before {
  content: "\e906";
}

.linearicons-toothbrush:before {
  content: "\e907";
}

.linearicons-bed:before {
  content: "\e908";
}

.linearicons-couch:before {
  content: "\e909";
}

.linearicons-chair:before {
  content: "\e90a";
}

.linearicons-city:before {
  content: "\e90b";
}

.linearicons-apartment:before {
  content: "\e90c";
}

.linearicons-pencil:before {
  content: "\e90d";
}

.linearicons-pencil2:before {
  content: "\e90e";
}

.linearicons-pen:before {
  content: "\e90f";
}

.linearicons-pencil3:before {
  content: "\e910";
}

.linearicons-eraser:before {
  content: "\e911";
}

.linearicons-pencil4:before {
  content: "\e912";
}

.linearicons-pencil5:before {
  content: "\e913";
}

.linearicons-feather:before {
  content: "\e914";
}

.linearicons-feather2:before {
  content: "\e915";
}

.linearicons-feather3:before {
  content: "\e916";
}

.linearicons-pen2:before {
  content: "\e917";
}

.linearicons-pen-add:before {
  content: "\e918";
}

.linearicons-pen-remove:before {
  content: "\e919";
}

.linearicons-vector:before {
  content: "\e91a";
}

.linearicons-pen3:before {
  content: "\e91b";
}

.linearicons-blog:before {
  content: "\e91c";
}

.linearicons-brush:before {
  content: "\e91d";
}

.linearicons-brush2:before {
  content: "\e91e";
}

.linearicons-spray:before {
  content: "\e91f";
}

.linearicons-paint-roller:before {
  content: "\e920";
}

.linearicons-stamp:before {
  content: "\e921";
}

.linearicons-tape:before {
  content: "\e922";
}

.linearicons-desk-tape:before {
  content: "\e923";
}

.linearicons-texture:before {
  content: "\e924";
}

.linearicons-eye-dropper:before {
  content: "\e925";
}

.linearicons-palette:before {
  content: "\e926";
}

.linearicons-color-sampler:before {
  content: "\e927";
}

.linearicons-bucket:before {
  content: "\e928";
}

.linearicons-gradient:before {
  content: "\e929";
}

.linearicons-gradient2:before {
  content: "\e92a";
}

.linearicons-magic-wand:before {
  content: "\e92b";
}

.linearicons-magnet:before {
  content: "\e92c";
}

.linearicons-pencil-ruler:before {
  content: "\e92d";
}

.linearicons-pencil-ruler2:before {
  content: "\e92e";
}

.linearicons-compass:before {
  content: "\e92f";
}

.linearicons-aim:before {
  content: "\e930";
}

.linearicons-gun:before {
  content: "\e931";
}

.linearicons-bottle:before {
  content: "\e932";
}

.linearicons-drop:before {
  content: "\e933";
}

.linearicons-drop-crossed:before {
  content: "\e934";
}

.linearicons-drop2:before {
  content: "\e935";
}

.linearicons-snow:before {
  content: "\e936";
}

.linearicons-snow2:before {
  content: "\e937";
}

.linearicons-fire:before {
  content: "\e938";
}

.linearicons-lighter:before {
  content: "\e939";
}

.linearicons-knife:before {
  content: "\e93a";
}

.linearicons-dagger:before {
  content: "\e93b";
}

.linearicons-tissue:before {
  content: "\e93c";
}

.linearicons-toilet-paper:before {
  content: "\e93d";
}

.linearicons-poop:before {
  content: "\e93e";
}

.linearicons-umbrella:before {
  content: "\e93f";
}

.linearicons-umbrella2:before {
  content: "\e940";
}

.linearicons-rain:before {
  content: "\e941";
}

.linearicons-tornado:before {
  content: "\e942";
}

.linearicons-wind:before {
  content: "\e943";
}

.linearicons-fan:before {
  content: "\e944";
}

.linearicons-contrast:before {
  content: "\e945";
}

.linearicons-sun-small:before {
  content: "\e946";
}

.linearicons-sun:before {
  content: "\e947";
}

.linearicons-sun2:before {
  content: "\e948";
}

.linearicons-moon:before {
  content: "\e949";
}

.linearicons-cloud:before {
  content: "\e94a";
}

.linearicons-cloud-upload:before {
  content: "\e94b";
}

.linearicons-cloud-download:before {
  content: "\e94c";
}

.linearicons-cloud-rain:before {
  content: "\e94d";
}

.linearicons-cloud-hailstones:before {
  content: "\e94e";
}

.linearicons-cloud-snow:before {
  content: "\e94f";
}

.linearicons-cloud-windy:before {
  content: "\e950";
}

.linearicons-sun-wind:before {
  content: "\e951";
}

.linearicons-cloud-fog:before {
  content: "\e952";
}

.linearicons-cloud-sun:before {
  content: "\e953";
}

.linearicons-cloud-lightning:before {
  content: "\e954";
}

.linearicons-cloud-sync:before {
  content: "\e955";
}

.linearicons-cloud-lock:before {
  content: "\e956";
}

.linearicons-cloud-gear:before {
  content: "\e957";
}

.linearicons-cloud-alert:before {
  content: "\e958";
}

.linearicons-cloud-check:before {
  content: "\e959";
}

.linearicons-cloud-cross:before {
  content: "\e95a";
}

.linearicons-cloud-crossed:before {
  content: "\e95b";
}

.linearicons-cloud-database:before {
  content: "\e95c";
}

.linearicons-database:before {
  content: "\e95d";
}

.linearicons-database-add:before {
  content: "\e95e";
}

.linearicons-database-remove:before {
  content: "\e95f";
}

.linearicons-database-lock:before {
  content: "\e960";
}

.linearicons-database-refresh:before {
  content: "\e961";
}

.linearicons-database-check:before {
  content: "\e962";
}

.linearicons-database-history:before {
  content: "\e963";
}

.linearicons-database-upload:before {
  content: "\e964";
}

.linearicons-database-download:before {
  content: "\e965";
}

.linearicons-server:before {
  content: "\e966";
}

.linearicons-shield:before {
  content: "\e967";
}

.linearicons-shield-check:before {
  content: "\e968";
}

.linearicons-shield-alert:before {
  content: "\e969";
}

.linearicons-shield-cross:before {
  content: "\e96a";
}

.linearicons-lock:before {
  content: "\e96b";
}

.linearicons-rotation-lock:before {
  content: "\e96c";
}

.linearicons-unlock:before {
  content: "\e96d";
}

.linearicons-key:before {
  content: "\e96e";
}

.linearicons-key-hole:before {
  content: "\e96f";
}

.linearicons-toggle-off:before {
  content: "\e970";
}

.linearicons-toggle-on:before {
  content: "\e971";
}

.linearicons-cog:before {
  content: "\e972";
}

.linearicons-cog2:before {
  content: "\e973";
}

.linearicons-wrench:before {
  content: "\e974";
}

.linearicons-screwdriver:before {
  content: "\e975";
}

.linearicons-hammer-wrench:before {
  content: "\e976";
}

.linearicons-hammer:before {
  content: "\e977";
}

.linearicons-saw:before {
  content: "\e978";
}

.linearicons-axe:before {
  content: "\e979";
}

.linearicons-axe2:before {
  content: "\e97a";
}

.linearicons-shovel:before {
  content: "\e97b";
}

.linearicons-pickaxe:before {
  content: "\e97c";
}

.linearicons-factory:before {
  content: "\e97d";
}

.linearicons-factory2:before {
  content: "\e97e";
}

.linearicons-recycle:before {
  content: "\e97f";
}

.linearicons-trash:before {
  content: "\e980";
}

.linearicons-trash2:before {
  content: "\e981";
}

.linearicons-trash3:before {
  content: "\e982";
}

.linearicons-broom:before {
  content: "\e983";
}

.linearicons-game:before {
  content: "\e984";
}

.linearicons-gamepad:before {
  content: "\e985";
}

.linearicons-joystick:before {
  content: "\e986";
}

.linearicons-dice:before {
  content: "\e987";
}

.linearicons-spades:before {
  content: "\e988";
}

.linearicons-diamonds:before {
  content: "\e989";
}

.linearicons-clubs:before {
  content: "\e98a";
}

.linearicons-hearts:before {
  content: "\e98b";
}

.linearicons-heart:before {
  content: "\e98c";
}

.linearicons-star:before {
  content: "\e98d";
}

.linearicons-star-half:before {
  content: "\e98e";
}

.linearicons-star-empty:before {
  content: "\e98f";
}

.linearicons-flag:before {
  content: "\e990";
}

.linearicons-flag2:before {
  content: "\e991";
}

.linearicons-flag3:before {
  content: "\e992";
}

.linearicons-mailbox-full:before {
  content: "\e993";
}

.linearicons-mailbox-empty:before {
  content: "\e994";
}

.linearicons-at-sign:before {
  content: "\e995";
}

.linearicons-envelope:before {
  content: "\e996";
}

.linearicons-envelope-open:before {
  content: "\e997";
}

.linearicons-paperclip:before {
  content: "\e998";
}

.linearicons-paper-plane:before {
  content: "\e999";
}

.linearicons-reply:before {
  content: "\e99a";
}

.linearicons-reply-all:before {
  content: "\e99b";
}

.linearicons-inbox:before {
  content: "\e99c";
}

.linearicons-inbox2:before {
  content: "\e99d";
}

.linearicons-outbox:before {
  content: "\e99e";
}

.linearicons-box:before {
  content: "\e99f";
}

.linearicons-archive:before {
  content: "\e9a0";
}

.linearicons-archive2:before {
  content: "\e9a1";
}

.linearicons-drawers:before {
  content: "\e9a2";
}

.linearicons-drawers2:before {
  content: "\e9a3";
}

.linearicons-drawers3:before {
  content: "\e9a4";
}

.linearicons-eye:before {
  content: "\e9a5";
}

.linearicons-eye-crossed:before {
  content: "\e9a6";
}

.linearicons-eye-plus:before {
  content: "\e9a7";
}

.linearicons-eye-minus:before {
  content: "\e9a8";
}

.linearicons-binoculars:before {
  content: "\e9a9";
}

.linearicons-binoculars2:before {
  content: "\e9aa";
}

.linearicons-hdd:before {
  content: "\e9ab";
}

.linearicons-hdd-down:before {
  content: "\e9ac";
}

.linearicons-hdd-up:before {
  content: "\e9ad";
}

.linearicons-floppy-disk:before {
  content: "\e9ae";
}

.linearicons-disc:before {
  content: "\e9af";
}

.linearicons-tape2:before {
  content: "\e9b0";
}

.linearicons-printer:before {
  content: "\e9b1";
}

.linearicons-shredder:before {
  content: "\e9b2";
}

.linearicons-file-empty:before {
  content: "\e9b3";
}

.linearicons-file-add:before {
  content: "\e9b4";
}

.linearicons-file-check:before {
  content: "\e9b5";
}

.linearicons-file-lock:before {
  content: "\e9b6";
}

.linearicons-files:before {
  content: "\e9b7";
}

.linearicons-copy:before {
  content: "\e9b8";
}

.linearicons-compare:before {
  content: "\e9b9";
}

.linearicons-folder:before {
  content: "\e9ba";
}

.linearicons-folder-search:before {
  content: "\e9bb";
}

.linearicons-folder-plus:before {
  content: "\e9bc";
}

.linearicons-folder-minus:before {
  content: "\e9bd";
}

.linearicons-folder-download:before {
  content: "\e9be";
}

.linearicons-folder-upload:before {
  content: "\e9bf";
}

.linearicons-folder-star:before {
  content: "\e9c0";
}

.linearicons-folder-heart:before {
  content: "\e9c1";
}

.linearicons-folder-user:before {
  content: "\e9c2";
}

.linearicons-folder-shared:before {
  content: "\e9c3";
}

.linearicons-folder-music:before {
  content: "\e9c4";
}

.linearicons-folder-picture:before {
  content: "\e9c5";
}

.linearicons-folder-film:before {
  content: "\e9c6";
}

.linearicons-scissors:before {
  content: "\e9c7";
}

.linearicons-paste:before {
  content: "\e9c8";
}

.linearicons-clipboard-empty:before {
  content: "\e9c9";
}

.linearicons-clipboard-pencil:before {
  content: "\e9ca";
}

.linearicons-clipboard-text:before {
  content: "\e9cb";
}

.linearicons-clipboard-check:before {
  content: "\e9cc";
}

.linearicons-clipboard-down:before {
  content: "\e9cd";
}

.linearicons-clipboard-left:before {
  content: "\e9ce";
}

.linearicons-clipboard-alert:before {
  content: "\e9cf";
}

.linearicons-clipboard-user:before {
  content: "\e9d0";
}

.linearicons-register:before {
  content: "\e9d1";
}

.linearicons-enter:before {
  content: "\e9d2";
}

.linearicons-exit:before {
  content: "\e9d3";
}

.linearicons-papers:before {
  content: "\e9d4";
}

.linearicons-news:before {
  content: "\e9d5";
}

.linearicons-reading:before {
  content: "\e9d6";
}

.linearicons-typewriter:before {
  content: "\e9d7";
}

.linearicons-document:before {
  content: "\e9d8";
}

.linearicons-document2:before {
  content: "\e9d9";
}

.linearicons-graduation-hat:before {
  content: "\e9da";
}

.linearicons-license:before {
  content: "\e9db";
}

.linearicons-license2:before {
  content: "\e9dc";
}

.linearicons-medal-empty:before {
  content: "\e9dd";
}

.linearicons-medal-first:before {
  content: "\e9de";
}

.linearicons-medal-second:before {
  content: "\e9df";
}

.linearicons-medal-third:before {
  content: "\e9e0";
}

.linearicons-podium:before {
  content: "\e9e1";
}

.linearicons-trophy:before {
  content: "\e9e2";
}

.linearicons-trophy2:before {
  content: "\e9e3";
}

.linearicons-music-note:before {
  content: "\e9e4";
}

.linearicons-music-note2:before {
  content: "\e9e5";
}

.linearicons-music-note3:before {
  content: "\e9e6";
}

.linearicons-playlist:before {
  content: "\e9e7";
}

.linearicons-playlist-add:before {
  content: "\e9e8";
}

.linearicons-guitar:before {
  content: "\e9e9";
}

.linearicons-trumpet:before {
  content: "\e9ea";
}

.linearicons-album:before {
  content: "\e9eb";
}

.linearicons-shuffle:before {
  content: "\e9ec";
}

.linearicons-repeat-one:before {
  content: "\e9ed";
}

.linearicons-repeat:before {
  content: "\e9ee";
}

.linearicons-headphones:before {
  content: "\e9ef";
}

.linearicons-headset:before {
  content: "\e9f0";
}

.linearicons-loudspeaker:before {
  content: "\e9f1";
}

.linearicons-equalizer:before {
  content: "\e9f2";
}

.linearicons-theater:before {
  content: "\e9f3";
}

.linearicons-3d-glasses:before {
  content: "\e9f4";
}

.linearicons-ticket:before {
  content: "\e9f5";
}

.linearicons-presentation:before {
  content: "\e9f6";
}

.linearicons-play:before {
  content: "\e9f7";
}

.linearicons-film-play:before {
  content: "\e9f8";
}

.linearicons-clapboard-play:before {
  content: "\e9f9";
}

.linearicons-media:before {
  content: "\e9fa";
}

.linearicons-film:before {
  content: "\e9fb";
}

.linearicons-film2:before {
  content: "\e9fc";
}

.linearicons-surveillance:before {
  content: "\e9fd";
}

.linearicons-surveillance2:before {
  content: "\e9fe";
}

.linearicons-camera:before {
  content: "\e9ff";
}

.linearicons-camera-crossed:before {
  content: "\ea00";
}

.linearicons-camera-play:before {
  content: "\ea01";
}

.linearicons-time-lapse:before {
  content: "\ea02";
}

.linearicons-record:before {
  content: "\ea03";
}

.linearicons-camera2:before {
  content: "\ea04";
}

.linearicons-camera-flip:before {
  content: "\ea05";
}

.linearicons-panorama:before {
  content: "\ea06";
}

.linearicons-time-lapse2:before {
  content: "\ea07";
}

.linearicons-shutter:before {
  content: "\ea08";
}

.linearicons-shutter2:before {
  content: "\ea09";
}

.linearicons-face-detection:before {
  content: "\ea0a";
}

.linearicons-flare:before {
  content: "\ea0b";
}

.linearicons-convex:before {
  content: "\ea0c";
}

.linearicons-concave:before {
  content: "\ea0d";
}

.linearicons-picture:before {
  content: "\ea0e";
}

.linearicons-picture2:before {
  content: "\ea0f";
}

.linearicons-picture3:before {
  content: "\ea10";
}

.linearicons-pictures:before {
  content: "\ea11";
}

.linearicons-book:before {
  content: "\ea12";
}

.linearicons-audio-book:before {
  content: "\ea13";
}

.linearicons-book2:before {
  content: "\ea14";
}

.linearicons-bookmark:before {
  content: "\ea15";
}

.linearicons-bookmark2:before {
  content: "\ea16";
}

.linearicons-label:before {
  content: "\ea17";
}

.linearicons-library:before {
  content: "\ea18";
}

.linearicons-library2:before {
  content: "\ea19";
}

.linearicons-contacts:before {
  content: "\ea1a";
}

.linearicons-profile:before {
  content: "\ea1b";
}

.linearicons-portrait:before {
  content: "\ea1c";
}

.linearicons-portrait2:before {
  content: "\ea1d";
}

.linearicons-user:before {
  content: "\ea1e";
}

.linearicons-user-plus:before {
  content: "\ea1f";
}

.linearicons-user-minus:before {
  content: "\ea20";
}

.linearicons-user-lock:before {
  content: "\ea21";
}

.linearicons-users:before {
  content: "\ea22";
}

.linearicons-users2:before {
  content: "\ea23";
}

.linearicons-users-plus:before {
  content: "\ea24";
}

.linearicons-users-minus:before {
  content: "\ea25";
}

.linearicons-group-work:before {
  content: "\ea26";
}

.linearicons-woman:before {
  content: "\ea27";
}

.linearicons-man:before {
  content: "\ea28";
}

.linearicons-baby:before {
  content: "\ea29";
}

.linearicons-baby2:before {
  content: "\ea2a";
}

.linearicons-baby3:before {
  content: "\ea2b";
}

.linearicons-baby-bottle:before {
  content: "\ea2c";
}

.linearicons-walk:before {
  content: "\ea2d";
}

.linearicons-hand-waving:before {
  content: "\ea2e";
}

.linearicons-jump:before {
  content: "\ea2f";
}

.linearicons-run:before {
  content: "\ea30";
}

.linearicons-woman2:before {
  content: "\ea31";
}

.linearicons-man2:before {
  content: "\ea32";
}

.linearicons-man-woman:before {
  content: "\ea33";
}

.linearicons-height:before {
  content: "\ea34";
}

.linearicons-weight:before {
  content: "\ea35";
}

.linearicons-scale:before {
  content: "\ea36";
}

.linearicons-button:before {
  content: "\ea37";
}

.linearicons-bow-tie:before {
  content: "\ea38";
}

.linearicons-tie:before {
  content: "\ea39";
}

.linearicons-socks:before {
  content: "\ea3a";
}

.linearicons-shoe:before {
  content: "\ea3b";
}

.linearicons-shoes:before {
  content: "\ea3c";
}

.linearicons-hat:before {
  content: "\ea3d";
}

.linearicons-pants:before {
  content: "\ea3e";
}

.linearicons-shorts:before {
  content: "\ea3f";
}

.linearicons-flip-flops:before {
  content: "\ea40";
}

.linearicons-shirt:before {
  content: "\ea41";
}

.linearicons-hanger:before {
  content: "\ea42";
}

.linearicons-laundry:before {
  content: "\ea43";
}

.linearicons-store:before {
  content: "\ea44";
}

.linearicons-haircut:before {
  content: "\ea45";
}

.linearicons-store-24:before {
  content: "\ea46";
}

.linearicons-barcode:before {
  content: "\ea47";
}

.linearicons-barcode2:before {
  content: "\ea48";
}

.linearicons-barcode3:before {
  content: "\ea49";
}

.linearicons-cashier:before {
  content: "\ea4a";
}

.linearicons-bag:before {
  content: "\ea4b";
}

.linearicons-bag2:before {
  content: "\ea4c";
}

.linearicons-cart:before {
  content: "\ea4d";
}

.linearicons-cart-empty:before {
  content: "\ea4e";
}

.linearicons-cart-full:before {
  content: "\ea4f";
}

.linearicons-cart-plus:before {
  content: "\ea50";
}

.linearicons-cart-plus2:before {
  content: "\ea51";
}

.linearicons-cart-add:before {
  content: "\ea52";
}

.linearicons-cart-remove:before {
  content: "\ea53";
}

.linearicons-cart-exchange:before {
  content: "\ea54";
}

.linearicons-tag:before {
  content: "\ea55";
}

.linearicons-tags:before {
  content: "\ea56";
}

.linearicons-receipt:before {
  content: "\ea57";
}

.linearicons-wallet:before {
  content: "\ea58";
}

.linearicons-credit-card:before {
  content: "\ea59";
}

.linearicons-cash-dollar:before {
  content: "\ea5a";
}

.linearicons-cash-euro:before {
  content: "\ea5b";
}

.linearicons-cash-pound:before {
  content: "\ea5c";
}

.linearicons-cash-yen:before {
  content: "\ea5d";
}

.linearicons-bag-dollar:before {
  content: "\ea5e";
}

.linearicons-bag-euro:before {
  content: "\ea5f";
}

.linearicons-bag-pound:before {
  content: "\ea60";
}

.linearicons-bag-yen:before {
  content: "\ea61";
}

.linearicons-coin-dollar:before {
  content: "\ea62";
}

.linearicons-coin-euro:before {
  content: "\ea63";
}

.linearicons-coin-pound:before {
  content: "\ea64";
}

.linearicons-coin-yen:before {
  content: "\ea65";
}

.linearicons-calculator:before {
  content: "\ea66";
}

.linearicons-calculator2:before {
  content: "\ea67";
}

.linearicons-abacus:before {
  content: "\ea68";
}

.linearicons-vault:before {
  content: "\ea69";
}

.linearicons-telephone:before {
  content: "\ea6a";
}

.linearicons-phone-lock:before {
  content: "\ea6b";
}

.linearicons-phone-wave:before {
  content: "\ea6c";
}

.linearicons-phone-pause:before {
  content: "\ea6d";
}

.linearicons-phone-outgoing:before {
  content: "\ea6e";
}

.linearicons-phone-incoming:before {
  content: "\ea6f";
}

.linearicons-phone-in-out:before {
  content: "\ea70";
}

.linearicons-phone-error:before {
  content: "\ea71";
}

.linearicons-phone-sip:before {
  content: "\ea72";
}

.linearicons-phone-plus:before {
  content: "\ea73";
}

.linearicons-phone-minus:before {
  content: "\ea74";
}

.linearicons-voicemail:before {
  content: "\ea75";
}

.linearicons-dial:before {
  content: "\ea76";
}

.linearicons-telephone2:before {
  content: "\ea77";
}

.linearicons-pushpin:before {
  content: "\ea78";
}

.linearicons-pushpin2:before {
  content: "\ea79";
}

.linearicons-map-marker:before {
  content: "\ea7a";
}

.linearicons-map-marker-user:before {
  content: "\ea7b";
}

.linearicons-map-marker-down:before {
  content: "\ea7c";
}

.linearicons-map-marker-check:before {
  content: "\ea7d";
}

.linearicons-map-marker-crossed:before {
  content: "\ea7e";
}

.linearicons-radar:before {
  content: "\ea7f";
}

.linearicons-compass2:before {
  content: "\ea80";
}

.linearicons-map:before {
  content: "\ea81";
}

.linearicons-map2:before {
  content: "\ea82";
}

.linearicons-location:before {
  content: "\ea83";
}

.linearicons-road-sign:before {
  content: "\ea84";
}

.linearicons-calendar-empty:before {
  content: "\ea85";
}

.linearicons-calendar-check:before {
  content: "\ea86";
}

.linearicons-calendar-cross:before {
  content: "\ea87";
}

.linearicons-calendar-31:before {
  content: "\ea88";
}

.linearicons-calendar-full:before {
  content: "\ea89";
}

.linearicons-calendar-insert:before {
  content: "\ea8a";
}

.linearicons-calendar-text:before {
  content: "\ea8b";
}

.linearicons-calendar-user:before {
  content: "\ea8c";
}

.linearicons-mouse:before {
  content: "\ea8d";
}

.linearicons-mouse-left:before {
  content: "\ea8e";
}

.linearicons-mouse-right:before {
  content: "\ea8f";
}

.linearicons-mouse-both:before {
  content: "\ea90";
}

.linearicons-keyboard:before {
  content: "\ea91";
}

.linearicons-keyboard-up:before {
  content: "\ea92";
}

.linearicons-keyboard-down:before {
  content: "\ea93";
}

.linearicons-delete:before {
  content: "\ea94";
}

.linearicons-spell-check:before {
  content: "\ea95";
}

.linearicons-escape:before {
  content: "\ea96";
}

.linearicons-enter2:before {
  content: "\ea97";
}

.linearicons-screen:before {
  content: "\ea98";
}

.linearicons-aspect-ratio:before {
  content: "\ea99";
}

.linearicons-signal:before {
  content: "\ea9a";
}

.linearicons-signal-lock:before {
  content: "\ea9b";
}

.linearicons-signal-80:before {
  content: "\ea9c";
}

.linearicons-signal-60:before {
  content: "\ea9d";
}

.linearicons-signal-40:before {
  content: "\ea9e";
}

.linearicons-signal-20:before {
  content: "\ea9f";
}

.linearicons-signal-0:before {
  content: "\eaa0";
}

.linearicons-signal-blocked:before {
  content: "\eaa1";
}

.linearicons-sim:before {
  content: "\eaa2";
}

.linearicons-flash-memory:before {
  content: "\eaa3";
}

.linearicons-usb-drive:before {
  content: "\eaa4";
}

.linearicons-phone:before {
  content: "\eaa5";
}

.linearicons-smartphone:before {
  content: "\eaa6";
}

.linearicons-smartphone-notification:before {
  content: "\eaa7";
}

.linearicons-smartphone-vibration:before {
  content: "\eaa8";
}

.linearicons-smartphone-embed:before {
  content: "\eaa9";
}

.linearicons-smartphone-waves:before {
  content: "\eaaa";
}

.linearicons-tablet:before {
  content: "\eaab";
}

.linearicons-tablet2:before {
  content: "\eaac";
}

.linearicons-laptop:before {
  content: "\eaad";
}

.linearicons-laptop-phone:before {
  content: "\eaae";
}

.linearicons-desktop:before {
  content: "\eaaf";
}

.linearicons-launch:before {
  content: "\eab0";
}

.linearicons-new-tab:before {
  content: "\eab1";
}

.linearicons-window:before {
  content: "\eab2";
}

.linearicons-cable:before {
  content: "\eab3";
}

.linearicons-cable2:before {
  content: "\eab4";
}

.linearicons-tv:before {
  content: "\eab5";
}

.linearicons-radio:before {
  content: "\eab6";
}

.linearicons-remote-control:before {
  content: "\eab7";
}

.linearicons-power-switch:before {
  content: "\eab8";
}

.linearicons-power:before {
  content: "\eab9";
}

.linearicons-power-crossed:before {
  content: "\eaba";
}

.linearicons-flash-auto:before {
  content: "\eabb";
}

.linearicons-lamp:before {
  content: "\eabc";
}

.linearicons-flashlight:before {
  content: "\eabd";
}

.linearicons-lampshade:before {
  content: "\eabe";
}

.linearicons-cord:before {
  content: "\eabf";
}

.linearicons-outlet:before {
  content: "\eac0";
}

.linearicons-battery-power:before {
  content: "\eac1";
}

.linearicons-battery-empty:before {
  content: "\eac2";
}

.linearicons-battery-alert:before {
  content: "\eac3";
}

.linearicons-battery-error:before {
  content: "\eac4";
}

.linearicons-battery-low1:before {
  content: "\eac5";
}

.linearicons-battery-low2:before {
  content: "\eac6";
}

.linearicons-battery-low3:before {
  content: "\eac7";
}

.linearicons-battery-mid1:before {
  content: "\eac8";
}

.linearicons-battery-mid2:before {
  content: "\eac9";
}

.linearicons-battery-mid3:before {
  content: "\eaca";
}

.linearicons-battery-full:before {
  content: "\eacb";
}

.linearicons-battery-charging:before {
  content: "\eacc";
}

.linearicons-battery-charging2:before {
  content: "\eacd";
}

.linearicons-battery-charging3:before {
  content: "\eace";
}

.linearicons-battery-charging4:before {
  content: "\eacf";
}

.linearicons-battery-charging5:before {
  content: "\ead0";
}

.linearicons-battery-charging6:before {
  content: "\ead1";
}

.linearicons-battery-charging7:before {
  content: "\ead2";
}

.linearicons-chip:before {
  content: "\ead3";
}

.linearicons-chip-x64:before {
  content: "\ead4";
}

.linearicons-chip-x86:before {
  content: "\ead5";
}

.linearicons-bubble:before {
  content: "\ead6";
}

.linearicons-bubbles:before {
  content: "\ead7";
}

.linearicons-bubble-dots:before {
  content: "\ead8";
}

.linearicons-bubble-alert:before {
  content: "\ead9";
}

.linearicons-bubble-question:before {
  content: "\eada";
}

.linearicons-bubble-text:before {
  content: "\eadb";
}

.linearicons-bubble-pencil:before {
  content: "\eadc";
}

.linearicons-bubble-picture:before {
  content: "\eadd";
}

.linearicons-bubble-video:before {
  content: "\eade";
}

.linearicons-bubble-user:before {
  content: "\eadf";
}

.linearicons-bubble-quote:before {
  content: "\eae0";
}

.linearicons-bubble-heart:before {
  content: "\eae1";
}

.linearicons-bubble-emoticon:before {
  content: "\eae2";
}

.linearicons-bubble-attachment:before {
  content: "\eae3";
}

.linearicons-phone-bubble:before {
  content: "\eae4";
}

.linearicons-quote-open:before {
  content: "\eae5";
}

.linearicons-quote-close:before {
  content: "\eae6";
}

.linearicons-dna:before {
  content: "\eae7";
}

.linearicons-heart-pulse:before {
  content: "\eae8";
}

.linearicons-pulse:before {
  content: "\eae9";
}

.linearicons-syringe:before {
  content: "\eaea";
}

.linearicons-pills:before {
  content: "\eaeb";
}

.linearicons-first-aid:before {
  content: "\eaec";
}

.linearicons-lifebuoy:before {
  content: "\eaed";
}

.linearicons-bandage:before {
  content: "\eaee";
}

.linearicons-bandages:before {
  content: "\eaef";
}

.linearicons-thermometer:before {
  content: "\eaf0";
}

.linearicons-microscope:before {
  content: "\eaf1";
}

.linearicons-brain:before {
  content: "\eaf2";
}

.linearicons-beaker:before {
  content: "\eaf3";
}

.linearicons-skull:before {
  content: "\eaf4";
}

.linearicons-bone:before {
  content: "\eaf5";
}

.linearicons-construction:before {
  content: "\eaf6";
}

.linearicons-construction-cone:before {
  content: "\eaf7";
}

.linearicons-pie-chart:before {
  content: "\eaf8";
}

.linearicons-pie-chart2:before {
  content: "\eaf9";
}

.linearicons-graph:before {
  content: "\eafa";
}

.linearicons-chart-growth:before {
  content: "\eafb";
}

.linearicons-chart-bars:before {
  content: "\eafc";
}

.linearicons-chart-settings:before {
  content: "\eafd";
}

.linearicons-cake:before {
  content: "\eafe";
}

.linearicons-gift:before {
  content: "\eaff";
}

.linearicons-balloon:before {
  content: "\eb00";
}

.linearicons-rank:before {
  content: "\eb01";
}

.linearicons-rank2:before {
  content: "\eb02";
}

.linearicons-rank3:before {
  content: "\eb03";
}

.linearicons-crown:before {
  content: "\eb04";
}

.linearicons-lotus:before {
  content: "\eb05";
}

.linearicons-diamond:before {
  content: "\eb06";
}

.linearicons-diamond2:before {
  content: "\eb07";
}

.linearicons-diamond3:before {
  content: "\eb08";
}

.linearicons-diamond4:before {
  content: "\eb09";
}

.linearicons-linearicons:before {
  content: "\eb0a";
}

.linearicons-teacup:before {
  content: "\eb0b";
}

.linearicons-teapot:before {
  content: "\eb0c";
}

.linearicons-glass:before {
  content: "\eb0d";
}

.linearicons-bottle2:before {
  content: "\eb0e";
}

.linearicons-glass-cocktail:before {
  content: "\eb0f";
}

.linearicons-glass2:before {
  content: "\eb10";
}

.linearicons-dinner:before {
  content: "\eb11";
}

.linearicons-dinner2:before {
  content: "\eb12";
}

.linearicons-chef:before {
  content: "\eb13";
}

.linearicons-scale2:before {
  content: "\eb14";
}

.linearicons-egg:before {
  content: "\eb15";
}

.linearicons-egg2:before {
  content: "\eb16";
}

.linearicons-eggs:before {
  content: "\eb17";
}

.linearicons-platter:before {
  content: "\eb18";
}

.linearicons-steak:before {
  content: "\eb19";
}

.linearicons-hamburger:before {
  content: "\eb1a";
}

.linearicons-hotdog:before {
  content: "\eb1b";
}

.linearicons-pizza:before {
  content: "\eb1c";
}

.linearicons-sausage:before {
  content: "\eb1d";
}

.linearicons-chicken:before {
  content: "\eb1e";
}

.linearicons-fish:before {
  content: "\eb1f";
}

.linearicons-carrot:before {
  content: "\eb20";
}

.linearicons-cheese:before {
  content: "\eb21";
}

.linearicons-bread:before {
  content: "\eb22";
}

.linearicons-ice-cream:before {
  content: "\eb23";
}

.linearicons-ice-cream2:before {
  content: "\eb24";
}

.linearicons-candy:before {
  content: "\eb25";
}

.linearicons-lollipop:before {
  content: "\eb26";
}

.linearicons-coffee-bean:before {
  content: "\eb27";
}

.linearicons-coffee-cup:before {
  content: "\eb28";
}

.linearicons-cherry:before {
  content: "\eb29";
}

.linearicons-grapes:before {
  content: "\eb2a";
}

.linearicons-citrus:before {
  content: "\eb2b";
}

.linearicons-apple:before {
  content: "\eb2c";
}

.linearicons-leaf:before {
  content: "\eb2d";
}

.linearicons-landscape:before {
  content: "\eb2e";
}

.linearicons-pine-tree:before {
  content: "\eb2f";
}

.linearicons-tree:before {
  content: "\eb30";
}

.linearicons-cactus:before {
  content: "\eb31";
}

.linearicons-paw:before {
  content: "\eb32";
}

.linearicons-footprint:before {
  content: "\eb33";
}

.linearicons-speed-slow:before {
  content: "\eb34";
}

.linearicons-speed-medium:before {
  content: "\eb35";
}

.linearicons-speed-fast:before {
  content: "\eb36";
}

.linearicons-rocket:before {
  content: "\eb37";
}

.linearicons-hammer2:before {
  content: "\eb38";
}

.linearicons-balance:before {
  content: "\eb39";
}

.linearicons-briefcase:before {
  content: "\eb3a";
}

.linearicons-luggage-weight:before {
  content: "\eb3b";
}

.linearicons-dolly:before {
  content: "\eb3c";
}

.linearicons-plane:before {
  content: "\eb3d";
}

.linearicons-plane-crossed:before {
  content: "\eb3e";
}

.linearicons-helicopter:before {
  content: "\eb3f";
}

.linearicons-traffic-lights:before {
  content: "\eb40";
}

.linearicons-siren:before {
  content: "\eb41";
}

.linearicons-road:before {
  content: "\eb42";
}

.linearicons-engine:before {
  content: "\eb43";
}

.linearicons-oil-pressure:before {
  content: "\eb44";
}

.linearicons-coolant-temperature:before {
  content: "\eb45";
}

.linearicons-car-battery:before {
  content: "\eb46";
}

.linearicons-gas:before {
  content: "\eb47";
}

.linearicons-gallon:before {
  content: "\eb48";
}

.linearicons-transmission:before {
  content: "\eb49";
}

.linearicons-car:before {
  content: "\eb4a";
}

.linearicons-car-wash:before {
  content: "\eb4b";
}

.linearicons-car-wash2:before {
  content: "\eb4c";
}

.linearicons-bus:before {
  content: "\eb4d";
}

.linearicons-bus2:before {
  content: "\eb4e";
}

.linearicons-car2:before {
  content: "\eb4f";
}

.linearicons-parking:before {
  content: "\eb50";
}

.linearicons-car-lock:before {
  content: "\eb51";
}

.linearicons-taxi:before {
  content: "\eb52";
}

.linearicons-car-siren:before {
  content: "\eb53";
}

.linearicons-car-wash3:before {
  content: "\eb54";
}

.linearicons-car-wash4:before {
  content: "\eb55";
}

.linearicons-ambulance:before {
  content: "\eb56";
}

.linearicons-truck:before {
  content: "\eb57";
}

.linearicons-trailer:before {
  content: "\eb58";
}

.linearicons-scale-truck:before {
  content: "\eb59";
}

.linearicons-train:before {
  content: "\eb5a";
}

.linearicons-ship:before {
  content: "\eb5b";
}

.linearicons-ship2:before {
  content: "\eb5c";
}

.linearicons-anchor:before {
  content: "\eb5d";
}

.linearicons-boat:before {
  content: "\eb5e";
}

.linearicons-bicycle:before {
  content: "\eb5f";
}

.linearicons-bicycle2:before {
  content: "\eb60";
}

.linearicons-dumbbell:before {
  content: "\eb61";
}

.linearicons-bench-press:before {
  content: "\eb62";
}

.linearicons-swim:before {
  content: "\eb63";
}

.linearicons-football:before {
  content: "\eb64";
}

.linearicons-baseball-bat:before {
  content: "\eb65";
}

.linearicons-baseball:before {
  content: "\eb66";
}

.linearicons-tennis:before {
  content: "\eb67";
}

.linearicons-tennis2:before {
  content: "\eb68";
}

.linearicons-ping-pong:before {
  content: "\eb69";
}

.linearicons-hockey:before {
  content: "\eb6a";
}

.linearicons-8ball:before {
  content: "\eb6b";
}

.linearicons-bowling:before {
  content: "\eb6c";
}

.linearicons-bowling-pins:before {
  content: "\eb6d";
}

.linearicons-golf:before {
  content: "\eb6e";
}

.linearicons-golf2:before {
  content: "\eb6f";
}

.linearicons-archery:before {
  content: "\eb70";
}

.linearicons-slingshot:before {
  content: "\eb71";
}

.linearicons-soccer:before {
  content: "\eb72";
}

.linearicons-basketball:before {
  content: "\eb73";
}

.linearicons-cube:before {
  content: "\eb74";
}

.linearicons-3d-rotate:before {
  content: "\eb75";
}

.linearicons-puzzle:before {
  content: "\eb76";
}

.linearicons-glasses:before {
  content: "\eb77";
}

.linearicons-glasses2:before {
  content: "\eb78";
}

.linearicons-accessibility:before {
  content: "\eb79";
}

.linearicons-wheelchair:before {
  content: "\eb7a";
}

.linearicons-wall:before {
  content: "\eb7b";
}

.linearicons-fence:before {
  content: "\eb7c";
}

.linearicons-wall2:before {
  content: "\eb7d";
}

.linearicons-icons:before {
  content: "\eb7e";
}

.linearicons-resize-handle:before {
  content: "\eb7f";
}

.linearicons-icons2:before {
  content: "\eb80";
}

.linearicons-select:before {
  content: "\eb81";
}

.linearicons-select2:before {
  content: "\eb82";
}

.linearicons-site-map:before {
  content: "\eb83";
}

.linearicons-earth:before {
  content: "\eb84";
}

.linearicons-earth-lock:before {
  content: "\eb85";
}

.linearicons-network:before {
  content: "\eb86";
}

.linearicons-network-lock:before {
  content: "\eb87";
}

.linearicons-planet:before {
  content: "\eb88";
}

.linearicons-happy:before {
  content: "\eb89";
}

.linearicons-smile:before {
  content: "\eb8a";
}

.linearicons-grin:before {
  content: "\eb8b";
}

.linearicons-tongue:before {
  content: "\eb8c";
}

.linearicons-sad:before {
  content: "\eb8d";
}

.linearicons-wink:before {
  content: "\eb8e";
}

.linearicons-dream:before {
  content: "\eb8f";
}

.linearicons-shocked:before {
  content: "\eb90";
}

.linearicons-shocked2:before {
  content: "\eb91";
}

.linearicons-tongue2:before {
  content: "\eb92";
}

.linearicons-neutral:before {
  content: "\eb93";
}

.linearicons-happy-grin:before {
  content: "\eb94";
}

.linearicons-cool:before {
  content: "\eb95";
}

.linearicons-mad:before {
  content: "\eb96";
}

.linearicons-grin-evil:before {
  content: "\eb97";
}

.linearicons-evil:before {
  content: "\eb98";
}

.linearicons-wow:before {
  content: "\eb99";
}

.linearicons-annoyed:before {
  content: "\eb9a";
}

.linearicons-wondering:before {
  content: "\eb9b";
}

.linearicons-confused:before {
  content: "\eb9c";
}

.linearicons-zipped:before {
  content: "\eb9d";
}

.linearicons-grumpy:before {
  content: "\eb9e";
}

.linearicons-mustache:before {
  content: "\eb9f";
}

.linearicons-tombstone-hipster:before {
  content: "\eba0";
}

.linearicons-tombstone:before {
  content: "\eba1";
}

.linearicons-ghost:before {
  content: "\eba2";
}

.linearicons-ghost-hipster:before {
  content: "\eba3";
}

.linearicons-halloween:before {
  content: "\eba4";
}

.linearicons-christmas:before {
  content: "\eba5";
}

.linearicons-easter-egg:before {
  content: "\eba6";
}

.linearicons-mustache2:before {
  content: "\eba7";
}

.linearicons-mustache-glasses:before {
  content: "\eba8";
}

.linearicons-pipe:before {
  content: "\eba9";
}

.linearicons-alarm:before {
  content: "\ebaa";
}

.linearicons-alarm-add:before {
  content: "\ebab";
}

.linearicons-alarm-snooze:before {
  content: "\ebac";
}

.linearicons-alarm-ringing:before {
  content: "\ebad";
}

.linearicons-bullhorn:before {
  content: "\ebae";
}

.linearicons-hearing:before {
  content: "\ebaf";
}

.linearicons-volume-high:before {
  content: "\ebb0";
}

.linearicons-volume-medium:before {
  content: "\ebb1";
}

.linearicons-volume-low:before {
  content: "\ebb2";
}

.linearicons-volume:before {
  content: "\ebb3";
}

.linearicons-mute:before {
  content: "\ebb4";
}

.linearicons-lan:before {
  content: "\ebb5";
}

.linearicons-lan2:before {
  content: "\ebb6";
}

.linearicons-wifi:before {
  content: "\ebb7";
}

.linearicons-wifi-lock:before {
  content: "\ebb8";
}

.linearicons-wifi-blocked:before {
  content: "\ebb9";
}

.linearicons-wifi-mid:before {
  content: "\ebba";
}

.linearicons-wifi-low:before {
  content: "\ebbb";
}

.linearicons-wifi-low2:before {
  content: "\ebbc";
}

.linearicons-wifi-alert:before {
  content: "\ebbd";
}

.linearicons-wifi-alert-mid:before {
  content: "\ebbe";
}

.linearicons-wifi-alert-low:before {
  content: "\ebbf";
}

.linearicons-wifi-alert-low2:before {
  content: "\ebc0";
}

.linearicons-stream:before {
  content: "\ebc1";
}

.linearicons-stream-check:before {
  content: "\ebc2";
}

.linearicons-stream-error:before {
  content: "\ebc3";
}

.linearicons-stream-alert:before {
  content: "\ebc4";
}

.linearicons-communication:before {
  content: "\ebc5";
}

.linearicons-communication-crossed:before {
  content: "\ebc6";
}

.linearicons-broadcast:before {
  content: "\ebc7";
}

.linearicons-antenna:before {
  content: "\ebc8";
}

.linearicons-satellite:before {
  content: "\ebc9";
}

.linearicons-satellite2:before {
  content: "\ebca";
}

.linearicons-mic:before {
  content: "\ebcb";
}

.linearicons-mic-mute:before {
  content: "\ebcc";
}

.linearicons-mic2:before {
  content: "\ebcd";
}

.linearicons-spotlights:before {
  content: "\ebce";
}

.linearicons-hourglass:before {
  content: "\ebcf";
}

.linearicons-loading:before {
  content: "\ebd0";
}

.linearicons-loading2:before {
  content: "\ebd1";
}

.linearicons-loading3:before {
  content: "\ebd2";
}

.linearicons-refresh:before {
  content: "\ebd3";
}

.linearicons-refresh2:before {
  content: "\ebd4";
}

.linearicons-undo:before {
  content: "\ebd5";
}

.linearicons-redo:before {
  content: "\ebd6";
}

.linearicons-jump2:before {
  content: "\ebd7";
}

.linearicons-undo2:before {
  content: "\ebd8";
}

.linearicons-redo2:before {
  content: "\ebd9";
}

.linearicons-sync:before {
  content: "\ebda";
}

.linearicons-repeat-one2:before {
  content: "\ebdb";
}

.linearicons-sync-crossed:before {
  content: "\ebdc";
}

.linearicons-sync2:before {
  content: "\ebdd";
}

.linearicons-repeat-one3:before {
  content: "\ebde";
}

.linearicons-sync-crossed2:before {
  content: "\ebdf";
}

.linearicons-return:before {
  content: "\ebe0";
}

.linearicons-return2:before {
  content: "\ebe1";
}

.linearicons-refund:before {
  content: "\ebe2";
}

.linearicons-history:before {
  content: "\ebe3";
}

.linearicons-history2:before {
  content: "\ebe4";
}

.linearicons-self-timer:before {
  content: "\ebe5";
}

.linearicons-clock:before {
  content: "\ebe6";
}

.linearicons-clock2:before {
  content: "\ebe7";
}

.linearicons-clock3:before {
  content: "\ebe8";
}

.linearicons-watch:before {
  content: "\ebe9";
}

.linearicons-alarm2:before {
  content: "\ebea";
}

.linearicons-alarm-add2:before {
  content: "\ebeb";
}

.linearicons-alarm-remove:before {
  content: "\ebec";
}

.linearicons-alarm-check:before {
  content: "\ebed";
}

.linearicons-alarm-error:before {
  content: "\ebee";
}

.linearicons-timer:before {
  content: "\ebef";
}

.linearicons-timer-crossed:before {
  content: "\ebf0";
}

.linearicons-timer2:before {
  content: "\ebf1";
}

.linearicons-timer-crossed2:before {
  content: "\ebf2";
}

.linearicons-download:before {
  content: "\ebf3";
}

.linearicons-upload:before {
  content: "\ebf4";
}

.linearicons-download2:before {
  content: "\ebf5";
}

.linearicons-upload2:before {
  content: "\ebf6";
}

.linearicons-enter-up:before {
  content: "\ebf7";
}

.linearicons-enter-down:before {
  content: "\ebf8";
}

.linearicons-enter-left:before {
  content: "\ebf9";
}

.linearicons-enter-right:before {
  content: "\ebfa";
}

.linearicons-exit-up:before {
  content: "\ebfb";
}

.linearicons-exit-down:before {
  content: "\ebfc";
}

.linearicons-exit-left:before {
  content: "\ebfd";
}

.linearicons-exit-right:before {
  content: "\ebfe";
}

.linearicons-enter-up2:before {
  content: "\ebff";
}

.linearicons-enter-down2:before {
  content: "\ec00";
}

.linearicons-enter-vertical:before {
  content: "\ec01";
}

.linearicons-enter-left2:before {
  content: "\ec02";
}

.linearicons-enter-right2:before {
  content: "\ec03";
}

.linearicons-enter-horizontal:before {
  content: "\ec04";
}

.linearicons-exit-up2:before {
  content: "\ec05";
}

.linearicons-exit-down2:before {
  content: "\ec06";
}

.linearicons-exit-left2:before {
  content: "\ec07";
}

.linearicons-exit-right2:before {
  content: "\ec08";
}

.linearicons-cli:before {
  content: "\ec09";
}

.linearicons-bug:before {
  content: "\ec0a";
}

.linearicons-code:before {
  content: "\ec0b";
}

.linearicons-file-code:before {
  content: "\ec0c";
}

.linearicons-file-image:before {
  content: "\ec0d";
}

.linearicons-file-zip:before {
  content: "\ec0e";
}

.linearicons-file-audio:before {
  content: "\ec0f";
}

.linearicons-file-video:before {
  content: "\ec10";
}

.linearicons-file-preview:before {
  content: "\ec11";
}

.linearicons-file-charts:before {
  content: "\ec12";
}

.linearicons-file-stats:before {
  content: "\ec13";
}

.linearicons-file-spreadsheet:before {
  content: "\ec14";
}

.linearicons-link:before {
  content: "\ec15";
}

.linearicons-unlink:before {
  content: "\ec16";
}

.linearicons-link2:before {
  content: "\ec17";
}

.linearicons-unlink2:before {
  content: "\ec18";
}

.linearicons-thumbs-up:before {
  content: "\ec19";
}

.linearicons-thumbs-down:before {
  content: "\ec1a";
}

.linearicons-thumbs-up2:before {
  content: "\ec1b";
}

.linearicons-thumbs-down2:before {
  content: "\ec1c";
}

.linearicons-thumbs-up3:before {
  content: "\ec1d";
}

.linearicons-thumbs-down3:before {
  content: "\ec1e";
}

.linearicons-share:before {
  content: "\ec1f";
}

.linearicons-share2:before {
  content: "\ec20";
}

.linearicons-share3:before {
  content: "\ec21";
}

.linearicons-magnifier:before {
  content: "\ec22";
}

.linearicons-file-search:before {
  content: "\ec23";
}

.linearicons-find-replace:before {
  content: "\ec24";
}

.linearicons-zoom-in:before {
  content: "\ec25";
}

.linearicons-zoom-out:before {
  content: "\ec26";
}

.linearicons-loupe:before {
  content: "\ec27";
}

.linearicons-loupe-zoom-in:before {
  content: "\ec28";
}

.linearicons-loupe-zoom-out:before {
  content: "\ec29";
}

.linearicons-cross:before {
  content: "\ec2a";
}

.linearicons-menu:before {
  content: "\ec2b";
}

.linearicons-list:before {
  content: "\ec2c";
}

.linearicons-list2:before {
  content: "\ec2d";
}

.linearicons-list3:before {
  content: "\ec2e";
}

.linearicons-menu2:before {
  content: "\ec2f";
}

.linearicons-list4:before {
  content: "\ec30";
}

.linearicons-menu3:before {
  content: "\ec31";
}

.linearicons-exclamation:before {
  content: "\ec32";
}

.linearicons-question:before {
  content: "\ec33";
}

.linearicons-check:before {
  content: "\ec34";
}

.linearicons-cross2:before {
  content: "\ec35";
}

.linearicons-plus:before {
  content: "\ec36";
}

.linearicons-minus:before {
  content: "\ec37";
}

.linearicons-percent:before {
  content: "\ec38";
}

.linearicons-chevron-up:before {
  content: "\ec39";
}

.linearicons-chevron-down:before {
  content: "\ec3a";
}

.linearicons-chevron-left:before {
  content: "\ec3b";
}

.linearicons-chevron-right:before {
  content: "\ec3c";
}

.linearicons-chevrons-expand-vertical:before {
  content: "\ec3d";
}

.linearicons-chevrons-expand-horizontal:before {
  content: "\ec3e";
}

.linearicons-chevrons-contract-vertical:before {
  content: "\ec3f";
}

.linearicons-chevrons-contract-horizontal:before {
  content: "\ec40";
}

.linearicons-arrow-up:before {
  content: "\ec41";
}

.linearicons-arrow-down:before {
  content: "\ec42";
}

.linearicons-arrow-left:before {
  content: "\ec43";
}

.linearicons-arrow-right:before {
  content: "\ec44";
}

.linearicons-arrow-up-right:before {
  content: "\ec45";
}

.linearicons-arrows-merge:before {
  content: "\ec46";
}

.linearicons-arrows-split:before {
  content: "\ec47";
}

.linearicons-arrow-divert:before {
  content: "\ec48";
}

.linearicons-arrow-return:before {
  content: "\ec49";
}

.linearicons-expand:before {
  content: "\ec4a";
}

.linearicons-contract:before {
  content: "\ec4b";
}

.linearicons-expand2:before {
  content: "\ec4c";
}

.linearicons-contract2:before {
  content: "\ec4d";
}

.linearicons-move:before {
  content: "\ec4e";
}

.linearicons-tab:before {
  content: "\ec4f";
}

.linearicons-arrow-wave:before {
  content: "\ec50";
}

.linearicons-expand3:before {
  content: "\ec51";
}

.linearicons-expand4:before {
  content: "\ec52";
}

.linearicons-contract3:before {
  content: "\ec53";
}

.linearicons-notification:before {
  content: "\ec54";
}

.linearicons-warning:before {
  content: "\ec55";
}

.linearicons-notification-circle:before {
  content: "\ec56";
}

.linearicons-question-circle:before {
  content: "\ec57";
}

.linearicons-menu-circle:before {
  content: "\ec58";
}

.linearicons-checkmark-circle:before {
  content: "\ec59";
}

.linearicons-cross-circle:before {
  content: "\ec5a";
}

.linearicons-plus-circle:before {
  content: "\ec5b";
}

.linearicons-circle-minus:before {
  content: "\ec5c";
}

.linearicons-percent-circle:before {
  content: "\ec5d";
}

.linearicons-arrow-up-circle:before {
  content: "\ec5e";
}

.linearicons-arrow-down-circle:before {
  content: "\ec5f";
}

.linearicons-arrow-left-circle:before {
  content: "\ec60";
}

.linearicons-arrow-right-circle:before {
  content: "\ec61";
}

.linearicons-chevron-up-circle:before {
  content: "\ec62";
}

.linearicons-chevron-down-circle:before {
  content: "\ec63";
}

.linearicons-chevron-left-circle:before {
  content: "\ec64";
}

.linearicons-chevron-right-circle:before {
  content: "\ec65";
}

.linearicons-backward-circle:before {
  content: "\ec66";
}

.linearicons-first-circle:before {
  content: "\ec67";
}

.linearicons-previous-circle:before {
  content: "\ec68";
}

.linearicons-stop-circle:before {
  content: "\ec69";
}

.linearicons-play-circle:before {
  content: "\ec6a";
}

.linearicons-pause-circle:before {
  content: "\ec6b";
}

.linearicons-next-circle:before {
  content: "\ec6c";
}

.linearicons-last-circle:before {
  content: "\ec6d";
}

.linearicons-forward-circle:before {
  content: "\ec6e";
}

.linearicons-eject-circle:before {
  content: "\ec6f";
}

.linearicons-crop:before {
  content: "\ec70";
}

.linearicons-frame-expand:before {
  content: "\ec71";
}

.linearicons-frame-contract:before {
  content: "\ec72";
}

.linearicons-focus:before {
  content: "\ec73";
}

.linearicons-transform:before {
  content: "\ec74";
}

.linearicons-grid:before {
  content: "\ec75";
}

.linearicons-grid-crossed:before {
  content: "\ec76";
}

.linearicons-layers:before {
  content: "\ec77";
}

.linearicons-layers-crossed:before {
  content: "\ec78";
}

.linearicons-toggle:before {
  content: "\ec79";
}

.linearicons-rulers:before {
  content: "\ec7a";
}

.linearicons-ruler:before {
  content: "\ec7b";
}

.linearicons-funnel:before {
  content: "\ec7c";
}

.linearicons-flip-horizontal:before {
  content: "\ec7d";
}

.linearicons-flip-vertical:before {
  content: "\ec7e";
}

.linearicons-flip-horizontal2:before {
  content: "\ec7f";
}

.linearicons-flip-vertical2:before {
  content: "\ec80";
}

.linearicons-angle:before {
  content: "\ec81";
}

.linearicons-angle2:before {
  content: "\ec82";
}

.linearicons-subtract:before {
  content: "\ec83";
}

.linearicons-combine:before {
  content: "\ec84";
}

.linearicons-intersect:before {
  content: "\ec85";
}

.linearicons-exclude:before {
  content: "\ec86";
}

.linearicons-align-center-vertical:before {
  content: "\ec87";
}

.linearicons-align-right:before {
  content: "\ec88";
}

.linearicons-align-bottom:before {
  content: "\ec89";
}

.linearicons-align-left:before {
  content: "\ec8a";
}

.linearicons-align-center-horizontal:before {
  content: "\ec8b";
}

.linearicons-align-top:before {
  content: "\ec8c";
}

.linearicons-square:before {
  content: "\ec8d";
}

.linearicons-plus-square:before {
  content: "\ec8e";
}

.linearicons-minus-square:before {
  content: "\ec8f";
}

.linearicons-percent-square:before {
  content: "\ec90";
}

.linearicons-arrow-up-square:before {
  content: "\ec91";
}

.linearicons-arrow-down-square:before {
  content: "\ec92";
}

.linearicons-arrow-left-square:before {
  content: "\ec93";
}

.linearicons-arrow-right-square:before {
  content: "\ec94";
}

.linearicons-chevron-up-square:before {
  content: "\ec95";
}

.linearicons-chevron-down-square:before {
  content: "\ec96";
}

.linearicons-chevron-left-square:before {
  content: "\ec97";
}

.linearicons-chevron-right-square:before {
  content: "\ec98";
}

.linearicons-check-square:before {
  content: "\ec99";
}

.linearicons-cross-square:before {
  content: "\ec9a";
}

.linearicons-menu-square:before {
  content: "\ec9b";
}

.linearicons-prohibited:before {
  content: "\ec9c";
}

.linearicons-circle:before {
  content: "\ec9d";
}

.linearicons-radio-button:before {
  content: "\ec9e";
}

.linearicons-ligature:before {
  content: "\ec9f";
}

.linearicons-text-format:before {
  content: "\eca0";
}

.linearicons-text-format-remove:before {
  content: "\eca1";
}

.linearicons-text-size:before {
  content: "\eca2";
}

.linearicons-bold:before {
  content: "\eca3";
}

.linearicons-italic:before {
  content: "\eca4";
}

.linearicons-underline:before {
  content: "\eca5";
}

.linearicons-strikethrough:before {
  content: "\eca6";
}

.linearicons-highlight:before {
  content: "\eca7";
}

.linearicons-text-align-left:before {
  content: "\eca8";
}

.linearicons-text-align-center:before {
  content: "\eca9";
}

.linearicons-text-align-right:before {
  content: "\ecaa";
}

.linearicons-text-align-justify:before {
  content: "\ecab";
}

.linearicons-line-spacing:before {
  content: "\ecac";
}

.linearicons-indent-increase:before {
  content: "\ecad";
}

.linearicons-indent-decrease:before {
  content: "\ecae";
}

.linearicons-text-wrap:before {
  content: "\ecaf";
}

.linearicons-pilcrow:before {
  content: "\ecb0";
}

.linearicons-direction-ltr:before {
  content: "\ecb1";
}

.linearicons-direction-rtl:before {
  content: "\ecb2";
}

.linearicons-page-break:before {
  content: "\ecb3";
}

.linearicons-page-break2:before {
  content: "\ecb4";
}

.linearicons-sort-alpha-asc:before {
  content: "\ecb5";
}

.linearicons-sort-alpha-desc:before {
  content: "\ecb6";
}

.linearicons-sort-numeric-asc:before {
  content: "\ecb7";
}

.linearicons-sort-numeric-desc:before {
  content: "\ecb8";
}

.linearicons-sort-amount-asc:before {
  content: "\ecb9";
}

.linearicons-sort-amount-desc:before {
  content: "\ecba";
}

.linearicons-sort-time-asc:before {
  content: "\ecbb";
}

.linearicons-sort-time-desc:before {
  content: "\ecbc";
}

.linearicons-sigma:before {
  content: "\ecbd";
}

.linearicons-pencil-line:before {
  content: "\ecbe";
}

.linearicons-hand:before {
  content: "\ecbf";
}

.linearicons-pointer-up:before {
  content: "\ecc0";
}

.linearicons-pointer-right:before {
  content: "\ecc1";
}

.linearicons-pointer-down:before {
  content: "\ecc2";
}

.linearicons-pointer-left:before {
  content: "\ecc3";
}

.linearicons-finger-tap:before {
  content: "\ecc4";
}

.linearicons-fingers-tap:before {
  content: "\ecc5";
}

.linearicons-reminder:before {
  content: "\ecc6";
}

.linearicons-fingers-crossed:before {
  content: "\ecc7";
}

.linearicons-fingers-victory:before {
  content: "\ecc8";
}

.linearicons-gesture-zoom:before {
  content: "\ecc9";
}

.linearicons-gesture-pinch:before {
  content: "\ecca";
}

.linearicons-fingers-scroll-horizontal:before {
  content: "\eccb";
}

.linearicons-fingers-scroll-vertical:before {
  content: "\eccc";
}

.linearicons-fingers-scroll-left:before {
  content: "\eccd";
}

.linearicons-fingers-scroll-right:before {
  content: "\ecce";
}

.linearicons-hand2:before {
  content: "\eccf";
}

.linearicons-pointer-up2:before {
  content: "\ecd0";
}

.linearicons-pointer-right2:before {
  content: "\ecd1";
}

.linearicons-pointer-down2:before {
  content: "\ecd2";
}

.linearicons-pointer-left2:before {
  content: "\ecd3";
}

.linearicons-finger-tap2:before {
  content: "\ecd4";
}

.linearicons-fingers-tap2:before {
  content: "\ecd5";
}

.linearicons-reminder2:before {
  content: "\ecd6";
}

.linearicons-gesture-zoom2:before {
  content: "\ecd7";
}

.linearicons-gesture-pinch2:before {
  content: "\ecd8";
}

.linearicons-fingers-scroll-horizontal2:before {
  content: "\ecd9";
}

.linearicons-fingers-scroll-vertical2:before {
  content: "\ecda";
}

.linearicons-fingers-scroll-left2:before {
  content: "\ecdb";
}

.linearicons-fingers-scroll-right2:before {
  content: "\ecdc";
}

.linearicons-fingers-scroll-vertical3:before {
  content: "\ecdd";
}

.linearicons-border-style:before {
  content: "\ecde";
}

.linearicons-border-all:before {
  content: "\ecdf";
}

.linearicons-border-outer:before {
  content: "\ece0";
}

.linearicons-border-inner:before {
  content: "\ece1";
}

.linearicons-border-top:before {
  content: "\ece2";
}

.linearicons-border-horizontal:before {
  content: "\ece3";
}

.linearicons-border-bottom:before {
  content: "\ece4";
}

.linearicons-border-left:before {
  content: "\ece5";
}

.linearicons-border-vertical:before {
  content: "\ece6";
}

.linearicons-border-right:before {
  content: "\ece7";
}

.linearicons-border-none:before {
  content: "\ece8";
}

.linearicons-ellipsis:before {
  content: "\ece9";
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

  .mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

  .mfp-preloader a {
    color: #CCC;
  }

    .mfp-preloader a:hover {
      color: #FFF;
    }

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1;
  }

  .mfp-close:active {
    top: 1px;
  }

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

  .mfp-arrow:active {
    margin-top: -54px;
  }

  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1;
  }

  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
  }

  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
  }

  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
  }

.mfp-arrow-left {
  left: 0;
}

  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
  }

  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
  }

.mfp-arrow-right {
  right: 0;
}

  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
  }

  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
  }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
  }

  .mfp-iframe-holder .mfp-close {
    top: -40px;
  }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
  }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
  }

  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
  }

  .mfp-figure figure {
    margin: 0;
  }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0;
    }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* -------------------------------------------------
  min-width: 768px
---------------------------------------------------*/
@media only screen and (min-width: 768px) {
  .container {
    --width-container: 720px;
    max-width: 720px;
  }

  .blog_thumbs .blog_content {
    padding: 0 0 0 20px;
    overflow: hidden;
  }

  .nav-link.search_trigger,
  .close-search,
  .mobile_block {
    display: none;
  }
}

/* -------------------------------------------------
  min-width: 992px
---------------------------------------------------*/
@media only screen and (min-width: 992px) {
  .container {
    --width-container: 960px;
    max-width: 960px;
  }

  .bottom-header .navbar-brand {
    display: none;
  }

  .nav-fixed .bottom-header .navbar-brand {
    display: block;
  }

  .navbar .navbar-nav li > .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
  }

  .navbar .navbar-nav li.dropdown.show > .dropdown-menu,
  .navbar .navbar-nav li.dropdown.show li:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-top: 0px;
  }

  .navbar .navbar-nav li:hover > .dropdown-menu.cart_box {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .navbar .navbar-nav li:hover > .dropdown-menu li:hover > .dropdown-menu,
  .navbar .navbar-nav li:hover > .dropdown-menu .mega-menu ul li:hover > .dropdown-menu {
    margin-top: -10px;
  }

  .navbar .navbar-nav li:hover > .dropdown-menu .mega-menu ul li .dropdown-menu {
    margin-top: 10px;
  }

  .navbar .navbar-nav .dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
    margin-left: 0px;
  }

  .navbar .navbar-nav .dropdown-menu.dropdown-reverse .dropdown-menu {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 5px;
  }

  .navbar .navbar-nav .dropdown-menu.dropdown-reverse li:hover > .dropdown-item::after {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .dropdown-menu.dropdown-reverse {
    left: auto;
    right: 0;
  }

  .dd_dark_skin .navbar .navbar-nav .dropdown-item,
  .dd_dark_skin .navbar .navbar-nav .dropdown-header,
  .sticky_dd_dark_skin.header_wrap.nav-fixed .navbar-nav .dropdown-menu li a,
  .sticky_dd_dark_skin.header_wrap.nav-fixed .navbar-nav .dropdown-header,
  .dd_dark_skin .cart_list a, .dd_dark_skin .cart_quantity, .dd_dark_skin .cart_total,
  .sticky_dd_dark_skin.header_wrap.nav-fixed .cart_list a, .sticky_dd_dark_skin.header_wrap.nav-fixed .cart_quantity, .sticky_dd_dark_skin.header_wrap.nav-fixed .cart_total {
    color: #333;
  }

  .dd_dark_skin .item_remove,
  .sticky_dd_dark_skin.header_wrap.nav-fixed .item_remove {
    color: #333 !important;
  }

  .dd_dark_skin .navbar-nav .dropdown-menu,
  .dd_dark_skin .navbar-nav .dropdown-menu .dropdown-menu,
  .dd_dark_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
  .sticky_dd_dark_skin.header_wrap.nav-fixed .navbar-nav .dropdown-menu,
  .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_dd_dark_skin.nav-fixed .navbar-nav .dropdown-menu,
  .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_dd_dark_skin.nav-fixed .navbar-nav .dropdown-menu .dropdown-menu,
  .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_dd_dark_skin.nav-fixed .navbar-nav .dropdown-menu .mega-menu .dropdown-menu {
    background-color: #fff;
    box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
  }

  .dd_dark_skin .mega-menu-col,
  .sticky_dd_dark_skin.nav-fixed .mega-menu-col,
  .sticky_dd_dark_skin.nav-fixed .navbar-nav .mega-menu-col,
  .dd_dark_skin .cart_list li,
  .sticky_dd_dark_skin.nav-fixed .cart_list li {
    border-color: #ddd;
  }

  .dd_light_skin .navbar .navbar-nav li > .dropdown-item,
  .dd_light_skin .navbar .navbar-nav .dropdown-header,
  .sticky_dd_light_skin.header_wrap.nav-fixed .navbar-nav .dropdown-menu li a,
  .sticky_dd_light_skin.header_wrap.nav-fixed .navbar-nav .dropdown-header,
  .dd_light_skin .cart_list a, .dd_light_skin .cart_quantity, .dd_light_skin .cart_total,
  .sticky_dd_light_skin.header_wrap.nav-fixed .cart_list a, .sticky_dd_light_skin.header_wrap.nav-fixed .cart_quantity, .sticky_dd_light_skin, .sticky_dd_light_skin.header_wrap.nav-fixed .cart_total {
    color: #d1d3d4;
  }

    .dd_light_skin .item_remove,
    .sticky_dd_light_skin.header_wrap.nav-fixed .item_remove {
      color: #fff !important;
    }

    .dd_light_skin .cart_list li,
    .sticky_dd_light_skin.nav-fixed .cart_list li {
      border-color: #3f3f3f;
    }

    .header_wrap.dd_light_skin .navbar-nav .dropdown-menu,
    .sticky_dd_light_skin.nav-fixed .navbar-nav .dropdown-menu {
      background-color: #252A2C;
      border-color: #252A2C;
    }

      .header_wrap.dd_light_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
      .header_wrap.dd_light_skin .navbar-nav .dropdown-menu .dropdown-menu,
      .sticky_dd_light_skin.nav-fixed .navbar-nav .dropdown-menu .mega-menu .dropdown-menu {
        background-color: #303537;
      }

    .dd_light_skin .mega-menu-col,
    .sticky_dd_light_skin.nav-fixed .mega-menu-col,
    .sticky_dd_light_skin.nav-fixed .navbar-nav .mega-menu-col {
      border-right: 0px solid #3f3f3f;
    }

  .header_banner_title,
  .header_banner_text,
  .header_banner_content a,
  .header_banner_content .shop_subtitle,
  .header_banner_content .shop_title {
    opacity: 0;
    -moz-transform: translateY(25%);
    -webkit-transform: translateY(25%);
    transform: translateY(25%);
    -webkit-transition: ease transform 200ms, ease opacity 200ms;
    transition: ease transform 200ms, ease opacity 200ms;
  }

  .header_banner_title,
  .header_banner_content .shop_subtitle {
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
  }

  .header_banner_text,
  .header_banner_content .shop_title {
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
  }

  .header_banner_content a {
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
  }

    .header_banner_content a:hover {
      transition: all 0.5s ease-in-out;
    }

  .header_banner_content .banner_img img {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
    transition: all 0.8s ease-in-out;
    position: relative;
    z-index: -1;
  }

  .navbar .navbar-nav li:hover > .dropdown-menu .header_banner_title, .navbar .navbar-nav li:hover > .dropdown-menu .header_banner_text, .navbar .navbar-nav li.show > .dropdown-menu .header_banner_content a, .navbar .navbar-nav li.show > .dropdown-menu .header_banner_content .shop_title, .navbar .navbar-nav li.show > .dropdown-menu .header_banner_content .shop_subtitle {
    opacity: 1;
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  .navbar .navbar-nav li.show > .dropdown-menu .header_banner_content .banner_img img {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

/* -------------------------------------------------
  min-width: 1200px
---------------------------------------------------*/
@media only screen and (min-width: 1200px) {
  .container {
    --width-container: 1190px;
    max-width: 1190px;
  }
}

/* -------------------------------------------------
  min-width: 1360px
---------------------------------------------------*/
@media only screen and (min-width: 1300px) {
  .container {
    --width-container: 1300px;
    max-width: 1300px;
  }
}


/* -------------------------------------------------
  max-width: 1199px
---------------------------------------------------*/
@media only screen and (max-width: 1199px) {

  p {
    line-height: 22px;
  }

  .heading_s1 h2, .flex_title h2, .tco__partners-wrapper h2 {
    font-size: 36px;
  }

  .heading_s1 h3 {
    line-height: 34px;
  }

  .flex_title {
    margin-bottom: 25px;
  }

  .news_tag_wrap {
    margin-bottom: 15px;
  }

  .h1, h1 {
    font-size: 34px;
  }

  .h2, h2 {
    font-size: 30px;
  }

  .h3, h3 {
    font-size: 26px;
  }

  .h4, h4 {
    font-size: 22px;
  }

  .h5, h5 {
    font-size: 18px;
  }

  .accordion.accordion_style1 .card-header a {
    font-size: 22px;
  }

  .section, div.section {
    padding: 80px 0;
  }

    .section.small_pt, .top_footer.small_pt {
      padding-top: 40px;
    }

    .section.small_pb, .top_footer.small_pb {
      padding-bottom: 40px;
    }

    .section.pb_70, .pb_70 {
      padding-bottom: 50px;
    }

    .section.pb_85, .pb_85 {
      padding-bottom: 65px;
    }

    .section.pb_20, .pb_20 {
      padding-bottom: 10px;
    }

  .large_divider {
    height: 80px;
  }

  .medium_divider {
    height: 40px;
  }

  .small_divider {
    height: 20px;
  }

  .shop_title {
    font-size: 32px;
  }

  .banner_half_content {
    padding: 100px 0 80px;
  }

  .banner_section:not(.full_screen),
  .banner_section:not(.full_screen) .carousel-item,
  .banner_section:not(.full_screen) .banner_content_wrap,
  .banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
    height: 700px;
  }

  .banner_section.slide_medium,
  .banner_section.slide_medium .carousel-item,
  .banner_section.slide_medium .banner_content_wrap,
  .banner_section.slide_medium .banner_content_wrap .carousel-item {
    height: 550px;
  }

  .banner_content h2 {
    font-size: 28px;
  }

  .banner_content1 h2 {
    font-size: 64px;
  }

  .header_wrap.transparent_header + .breadcrumb_section {
    padding-top: 150px;
  }

  .header_wrap.transparent_header.header_with_topbar + .breadcrumb_section {
    padding-top: 200px;
  }

  .breadcrumb_section {
    padding: 100px 0;
  }

  .footer_top {
    padding: 80px 0 50px;
  }

  .blog_meta li {
    margin-right: 10px;
  }

  .blog_meta a {
    font-size: 14px;
  }

  .blog_title {
    line-height: 26px;
  }

  .newsletter_small {
    padding: 60px 0;
  }

  .about_wrap {
    padding-left: 20px;
  }

  .pr_content {
    padding: 0 30px;
  }

  .widget_contact_form {
    margin-top: -160px;
  }

  .icon_box_style4 {
    padding: 30px;
  }

  .contact_style1 .contact_text p,
  .contact_style1 .contact_text a {
    font-size: 14px;
  }

  .error_txt {
    font-size: 56px;
    margin-bottom: 15px;
  }

  .compare_box table {
    width: 1050px;
  }

  .shop_bn_content {
    padding: 30px 25px;
  }

    .shop_bn_content .btn {
      padding: 8px 25px;
    }

  .tab-content.shop_info_tab {
    margin-top: 30px;
  }

  .single_post .blog_title {
    font-size: 26px;
  }

  .heading_s2 .sub_heading {
    font-size: 90px;
    margin-bottom: -25px;
    line-height: 90px;
  }

  .tco__partners-wrapper,
  .reverse .tco__partners-wrapper {
    padding: 30px;
    min-width: 50%;
    max-width: 50%;
  }

  .double_banner_section .owl-dots,
  .nav_style8.owl-theme .owl-nav {
    left: 30px;
  }

  .tco__yearcircle.fixed {
    top: 50%;
  }

  .timeline__section .timeline_story {
    padding: 20px 0px;
  }

  .timeline__section p {
    font-size: 16px;
  }

  .timeline__nav ul li {
    line-height: 1.1;
  }

  .statistic_box3 {
    display: flex;
    flex-direction: row;
  }

    .statistic_box3 img:last-child {
      margin-left: 30px;
    }

  .timeline_text span {
    left: 26px;
    top: 8px;
  }

  .timeline_item:first-child::before {
    width: 180px;
  }

  .timeline_item:nth-child(3)::before {
    left: 300px;
  }

  .timeline_item:nth-child(7)::after {
    left: 530px;
  }

  .timeline_item:nth-child(8)::after {
    left: 780px;
  }

  .timeline_item:nth-child(3) .timeline_arrow {
    left: 100px;
  }

  .timeline_item:nth-child(4) .timeline_arrow {
    left: 100px;
  }

  .timeline_item:nth-child(6) .timeline_arrow {
    left: 15px;
  }

  .right_popup .white_popup .side_project_popup {
    padding: 0 20px 20px 20px;
  }

  .slider__flex .year {
    font-size: 10.625rem;
  }

  .slider__flex .year-small {
    font-size: 100px;
  }
}


/* -------------------------------------------------
  max-width: 991px
---------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .large_text p, .large_text a, .slide_section .slide_content ul li, .btn-link, .slide_section .slide_content p, .right_popup .side_popup_content .side_popup_description p, .debt_rating_list ul li, .large_text li,
  .file_group .pdf-link, .tco_icon_box .tco_icon_text p, .tco__partners-wrapper p, .widget_links li a, footer p, .large_text .custom-control, .large_text .custom-control label, .respond .action p {
    font-size: 18px;
  }

  .nav-fixed .navbar .navbar-nav {
    margin: 0;
  }

  .tco_new_box {
    margin-bottom: 30px;
  }

  .bottom-header .navbar-brand {
    display: none;
  }

  .nav-fixed .bottom-header .navbar-brand {
    display: inline-block;
  }

  .md-height-300 {
    height: 300px !important;
  }

  .heading_s1, .heading_s4 {
    margin-bottom: 20px;
  }

  .navbar {
    position: relative;
  }

    .navbar .navbar-nav {
      display: block;
    }

  .bottom-header .navbar .navbar-toggler {
    display: none;
  }

  .nav-fixed .bottom-header .navbar .navbar-toggler {
    display: block;
  }

  .header_wrap .navbar {
    margin-left: 15px;
  }

  .bottom-header .navbar {
    border-top: 0px;
  }

  .header_wrap .navbar .navbar-nav.attr-nav {
    display: block;
    float: left;
    margin-top: 6px;
  }

  .header_wrap.nav-fixed .navbar .navbar-nav.attr-nav {
    display: none;
  }

  .search_wraps {
    margin-left: 0;
  }

  .navbar-toggler {
    margin: 3px 0 0 3px;
  }

  .header_wrap .navbar-collapse {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
    top: 100%;
  }

  .solutions [class^="col-"]:nth-child(3n+2) .card_box {
    margin-top: 0px;
  }

  .solutions [class^="col-"]:nth-child(3n+3) .card_box {
    margin-top: 0px;
  }

  .solutions [class^="col-"] .card_box {
    margin-bottom: 30px;
  }

  .big_spacing {
    margin-right: -20px;
    margin-left: -20px;
  }

    .big_spacing [class^="col-"] {
      padding-right: 20px;
      padding-left: 20px;
    }

  .about_box_wrap {
    height: 500px;
  }

  .navbar .navbar-collapse .navbar-nav {
    max-height: 80vh;
    overflow-y: auto;
  }

  .navbar .navbar-nav > li > .nav-link,
  .nav-fixed .navbar .navbar-nav > li > .nav-link {
    padding: 10px 10px;
  }

  .navbar .navbar-nav.attr-nav li {
    float: left;
  }

    .navbar .navbar-nav.attr-nav li .nav-link {
      padding: 20px 10px;
    }

      .navbar .navbar-nav.attr-nav li .nav-link.search_trigger,
      .navbar .navbar-nav.attr-nav li .nav-link.cart_trigger {
        padding: 16px 8px;
      }

  .navbar-nav .dropdown-menu .container {
    width: 100%;
    max-width: 100%;
  }

  .header_wrap .navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]) {
    background-color: #fff;
  }

  .header_wrap.light_skin.transparent_header .navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]),
  .header_wrap.light_skin .navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]) {
    background-color: #252A2C;
  }

  .sticky_dark_skin.nav-fixed.header_wrap .navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]),
  .dark_skin.header_wrap .navbar .navbar-collapse .navbar-nav:not([class*="bg_"]):not([class*="bg-"]) {
    background-color: #fff;
    box-shadow: 0 13px 42px 11px rgba(0,0,0,.05);
    border: 1px solid #e6e6e6;
  }

  .navbar-nav .navbar-collapse .dropdown-menu,
  .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .navbar-collapse .dropdown-menu,
  .sticky_dark_skin.nav-fixed .navbar-nav .navbar-collapse .dropdown-menu,
  .light_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
  .dark_skin:not([class*="bg_"]):not([class*="bg-"]) .navbar-nav .navbar-collapse .dropdown-menu,
  .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu .mega-menu .dropdown-menu, .header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .navbar-collapse .dropdown-menu .dropdown-menu {
    background-color: transparent;
    box-shadow: none;
    border: 0;
  }

  .dark_skin.header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-collapse .navbar-nav {
    background-color: #252A2C;
    border-color: #252A2C;
  }

  .hover_menu_style1 .navbar-collapse .navbar-nav > li > a,
  .hover_menu_style1.nav-fixed .navbar .navbar-collapse .navbar-nav > li > .nav-link {
    padding: 10px;
    margin: 0;
  }

    .hover_menu_style1 .navbar-collapse .navbar-nav > li > a::before {
      content: normal;
    }

  .header_banner,
  .header_banner_wrap {
    display: none;
  }

  .dropdown:not(.dropdown-mega-menu) .dropdown-menu > ul, .mega-menu-col > ul, .dropdown .dropdown-menu .dropdown-menu > ul {
    padding: 0;
  }

  .dropdown-menu .dropdown-toggler::after {
    right: 0px;
  }

  .search_wrap {
    max-width: 100%;
    margin: 0 30px;
  }

  .dropdown-toggle::after {
    float: right;
  }

  .navbar-nav > li > .dropdown-menu,
  .navbar .navbar-nav li.dropdown-mega-menu .dropdown-menu {
    padding-left: 10px;
    padding-right: 10px;
  }

  .mega-menu-col {
    padding: 0px;
    border-right: 0 !important;
  }

  .dropdown-toggler::after {
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .navbar .attr-nav li.nav-btn {
    margin-top: 8px;
  }

  .navbar .navbar-nav.attr-nav li .nav-link.search_trigger [class*="linearicons-"], .navbar .navbar-nav.attr-nav li .nav-link.cart_trigger [class*="linearicons-"] {
    margin-top: 5px;
    display: inline-block;
  }

  .navbar .navbar-nav .dropdown-item {
    padding: 8px 10px 8px 10px;
  }

  .navbar .navbar-nav .dropdown-header {
    padding: 10px;
  }

  .sidetoggle_icon::after {
    bottom: -8px;
  }

  .sidetoggle_icon::before {
    top: -6px;
  }

  .banner_section:not(.full_screen),
  .banner_section:not(.full_screen) .carousel-item,
  .banner_section:not(.full_screen) .banner_content_wrap,
  .banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
    height: 600px;
  }

    .banner_section.full_screen.banner_half_content,
    .banner_section:not(.full_screen).banner_half_content,
    .banner_section:not(.full_screen).banner_half_content .banner_content_wrap {
      height: auto;
    }

  .banner_section.slide_medium,
  .banner_section.slide_medium .carousel-item,
  .banner_section.slide_medium .banner_content_wrap,
  .banner_section.slide_medium .banner_content_wrap .carousel-item {
    height: 500px;
  }

  .banner_section .owl-item .background_bg:after {
    content: "";
    background: rgba(255,255,255,0.5);
    width: 100%;
    height: 100%;
    position: absolute;
  }

  .indicators_style5 {
    right: 10%;
  }

  .banner_content h2 {
    font-size: 26px;
  }

  .banner_content1 h2 {
    font-size: 54px;
  }

  .banner_center_content {
    margin-top: 0;
  }

  .full_screen, .full_screen .carousel-item {
    min-height: 35rem;
  }

  div.banner_large_pad {
    padding: 200px 0 100px;
  }

  .banner_content_border {
    padding: 30px;
  }

  .header_wrap.transparent_header + .breadcrumb_section {
    padding-top: 100px;
  }

  .breadcrumb_section {
    padding: 80px 0;
  }

  .highlight_text {
    font-size: 18px;
  }

  .grid_col4 > li {
    width: 33.33%;
  }

  .banner_shape {
    width: 100%;
  }

  .about_wrap {
    padding-left: 0;
  }

  .price_tage h2 {
    font-size: 34px;
  }

  .widget_contact_form {
    margin-top: 0;
  }

  .background_shape,
  .background_shape::before {
    width: 150px;
  }

  .page-title + span {
    font-size: 15px;
  }

  .padding_eight_all {
    padding: 6%;
  }

  .cs_title {
    line-height: 40px;
    margin-bottom: 15px;
  }

  .cs_logo {
    margin-bottom: 20px;
  }

  .cs_content .countdown_time, .cs_content .newsletter_form {
    margin-bottom: 20px;
  }

  .contact_info_style2 li i {
    margin-right: 6px;
    font-size: 20px;
  }

  .team_email,
  .contact_info_style2 i + * {
    font-size: 16px;
  }

  .social_style3 li a {
    font-size: 18px;
    height: 40px;
    width: 40px;
    line-height: 40px;
  }

  .order_review {
    padding: 20px;
  }

  .product-add-to-cart {
    white-space: nowrap;
  }

    .product-add-to-cart .btn {
      padding: 10px 24px;
    }

  .load_more_wrap {
    margin-top: 0px;
  }

  .heading_s2 .sub_heading {
    font-size: 70px;
    line-height: 70px;
  }

  .portfolio_style1 .link_container a {
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .portfolio_style1 .portfolio_desc h5 {
    margin: 0;
  }

  .portfolio_style1 .portfolio_desc {
    margin-top: 10px;
  }

  .portfolio_style1 .portfolio_content {
    padding: 10px;
  }

    .portfolio_style1 .portfolio_content::before {
      margin: 15px 5px;
    }

    .portfolio_style1 .portfolio_content::after {
      margin: 5px 15px;
    }

  .counter_style1.box_counter {
    margin: 15px 0;
  }

  .header_btn {
    float: right;
    margin: 9px 0;
  }

  .box_counter.counter_style2 {
    margin-top: 30px;
  }

  [class*="col-"]:nth-child(-n+2) .box_counter.counter_style2 {
    margin-top: 0px;
  }

  .instagram_icon i {
    font-size: 40px;
  }

  .contact_form {
    max-width: 400px;
  }


  .bg_left::after,
  .bg_right::after {
    width: 200vw;
    right: 0;
    left: -100%;
  }

  .bg_right .tco_icon_box .tco_icon_img {
    margin-left: 0;
  }



  .timeline__nav ul li {
    font-size: 15.4vh;
    line-height: 1.4;
  }

    .timeline__nav ul li.small {
      font-size: 9.4vh;
      line-height: 21.58vh;
    }

  .timeline__section h3 {
    font-size: 20px;
  }

  .timeline__section p {
    margin-bottom: 0;
  }

  .contact_list2 {
    margin: 15px 0;
    justify-content: center;
  }


  .statistic p {
    font-size: 20px;
  }

  .statistic_box3 img {
    width: 50%;
  }

    .statistic_box3 img:last-child {
      margin-left: 15px;
    }

  .map_overlay .blue {
    top: 34%;
    left: 19%;
  }

  .map_overlay .yellow {
    top: 21.5%;
    left: 40%;
  }

  .map_overlay .golub {
    top: 22%;
    left: 63%;
  }

  .map_overlay .grey {
    top: 47.5%;
    left: 73.5%;
  }

  .overflow_img {
    left: calc(var(--width-container)/2 - 50vw - 15px);
    width: 100vw;
  }

    .overflow_img img {
      width: 100%;
      height: 100%;
      position: inherit;
      margin-bottom: 20px;
    }

  .bg_right .tco_icon_box .section_stage {
    margin-left: 0;
  }

  .timeline_wrap {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    height: auto;
    left: 0;
    overflow: hidden
  }

  .timeline_text span {
    left: 16px;
    top: 5px;
  }

  .timeline_item .timeline_text img {
    max-width: 100px;
  }

  .timeline_item {
    display: flex;
    margin-bottom: 15px;
  }

    .timeline_item .timeline_arrow {
      position: absolute !important;
    }

    .timeline_item:first-child .timeline_arrow {
      position: relative;
      left: 150px;
      top: 0
    }

      .timeline_item:first-child .timeline_arrow img {
        height: 24px;
        transform: rotate(90deg)
      }

    .timeline_item:first-child:before {
      display: block;
      content: attr(data-label);
      position: absolute;
      top: -5px;
      left: 200px;
      color: #30454e;
      height: 32px;
      width: 50%;
      white-space: pre-wrap
    }

    .timeline_item:nth-child(2) .timeline_arrow {
      position: relative;
      left: 150px;
      top: 54px;
      bottom: auto;
    }

      .timeline_item:nth-child(2) .timeline_arrow img {
        height: 24px;
        transform: rotate(270deg)
      }

    .timeline_item:nth-child(2):before {
      display: block;
      content: attr(data-label);
      position: absolute;
      top: 52px;
      left: 200px;
      color: #30454e;
      height: 32px;
      width: 50%;
      white-space: pre-wrap
    }

    .timeline_item:nth-child(3) .timeline_arrow {
      position: relative;
      left: 150px;
      top: 125px
    }

      .timeline_item:nth-child(3) .timeline_arrow img {
        height: 24px;
        transform: rotate(90deg)
      }

    .timeline_item:nth-child(3):before {
      display: block;
      content: attr(data-label);
      position: absolute;
      top: 118px;
      left: 200px;
      color: #30454e;
      height: 32px;
      width: 50%;
      white-space: pre-wrap
    }

    .timeline_item:nth-child(4) .timeline_arrow {
      opacity: 0
    }

    .timeline_item:nth-child(5):before {
      opacity: 0;
      display: block;
      content: attr(data-label);
      position: absolute;
      top: 600px;
      left: 200px;
      color: #30454e;
      height: 32px;
      width: 50%;
      white-space: pre-wrap
    }

    .timeline_item:nth-child(6) .timeline_arrow {
      position: relative;
      left: 150px;
      top: auto;
      bottom: 94px;
    }

      .timeline_item:nth-child(6) .timeline_arrow img {
        height: 24px;
        transform: rotate(270deg)
      }

    .timeline_item:nth-child(6):before {
      display: block;
      content: attr(data-label);
      position: absolute;
      top: 242px;
      left: 200px;
      color: #30454e;
      height: 32px;
      width: 50%;
      white-space: pre-wrap
    }

    .timeline_item:nth-child(7) .timeline_arrow {
      position: relative;
      left: 150px;
      top: auto;
      bottom: 65px;
    }

      .timeline_item:nth-child(7) .timeline_arrow img {
        height: 24px;
        transform: rotate(90deg)
      }

    .timeline_item:nth-child(7):before {
      display: block;
      content: attr(data-label);
      position: absolute;
      top: 300px;
      left: 200px;
      color: #30454e;
      width: 50%;
      height: 32px
    }

    .timeline_item:nth-child(8) .timeline_arrow {
      position: relative;
      left: 150px;
      top: auto;
      bottom: 15px;
    }

      .timeline_item:nth-child(8) .timeline_arrow img {
        height: 24px;
        transform: rotate(270deg)
      }

    .timeline_item:nth-child(8):before {
      display: block;
      content: attr(data-label);
      position: absolute;
      top: 346px;
      left: 200px;
      color: #30454e;
      height: 32px;
      width: 50%;
      white-space: pre-wrap
    }

    .timeline_item:first-child::before, .timeline_item:nth-child(2)::before, .timeline_item:nth-child(3)::before, .timeline_item:nth-child(4)::before, .timeline_item:nth-child(5)::before, .timeline_item:nth-child(6)::before, .timeline_item:nth-child(7)::before, .timeline_item:nth-child(8)::before {
      width: 70%;
    }

    .timeline_item:nth-child(1)::after, .timeline_item:nth-child(2)::after, .timeline_item:nth-child(3)::after, .timeline_item:nth-child(4)::after, .timeline_item:nth-child(5)::after, .timeline_item:nth-child(6)::after, .timeline_item:nth-child(7)::after, .timeline_item:nth-child(8)::after {
      display: none;
    }

  .slider__flex .year {
    font-size: 6.625rem;
    line-height: 100px;
  }

  .slider__flex .year-small {
    font-size: 65px;
  }

  .slider__flex .swiper-slide-active h2::before {
    top: -24px;
    right: -16px;
    width: 150px;
    height: 150px;
  }
}


/* -------------------------------------------------
  (min-width: 767px) and (max-width: 991px)
---------------------------------------------------*/
@media only screen and (min-width: 767px) and (max-width: 991px) {
  .first_img {
    max-width: 600px;
  }
}

/* -------------------------------------------------
  (min-width: 767px) and (max-width: 991px)
---------------------------------------------------*/
@media only screen and (min-width: 575px) and (max-width: 767px) {
  .icon_box_style7 {
    padding: 20px;
  }

    .icon_box_style7 .icon {
      height: 80px;
      width: 80px;
      margin-bottom: 5px;
    }

      .icon_box_style7 .icon i {
        line-height: 80px;
        font-size: 38px;
      }
}


/* -------------------------------------------------
  max-width: 767px
---------------------------------------------------*/
@media only screen and (max-width: 767px) {
  p {
    margin-bottom: 20px;
  }

  .heading_s1 h1, .heading_s1 h2, .heading_s1 h3, .heading_s1 h4, .heading_s1 h5, .heading_s1 h6 {
    line-height: 38px;
  }

  .h1, h1, .tco__partners-wrapper h1 {
    font-size: 32px;
  }

  .h2, h2 {
    font-size: 28px;
  }

  .h3, h3, .tco__partners-wrapper h3, .tco_icon_box .tco_icon_text h3 {
    font-size: 22px;
  }

  .h4, h4, .tco_icon_box .tco_icon_text h4, .card_box .card_title h4 {
    font-size: 20px;
  }

  .heading_s1 h1, .heading_s1 h2.h1 {
    font-size: 36px;
  }

  .heading_s1 h2, .flex_title h2, .tco__partners-wrapper h2, .slide_section li.nav-item a {
    font-size: 28px;
  }

  .mt_30 {
    margin-top: 15px;
  }

  .mb_30 {
    margin-bottom: 15px;
  }

  .accordion.accordion_style1 .card-header a {
    font-size: 18px;
  }

  .accordion_style1 .card-header a::after {
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .large_text p, .large_text a, .slide_section .slide_content ul li, .btn-link, .slide_section .slide_content p, .right_popup .side_popup_content .side_popup_description p, .debt_rating_list ul li, .large_text li,
  .file_group .pdf-link, .tco_icon_box .tco_icon_text p, .tco__partners-wrapper p, .widget_links li a, footer p, .large_text .custom-control, .large_text .custom-control label, .respond .action p {
    font-size: 16px;
  }

  .header_wrap .navbar {
    margin-left: 0;
  }

  .ddcommon .ddChild {
    left: auto;
    padding: 0px;
    width: auto;
    right: auto;
  }

  .navbar-toggler {
    float: right;
    margin: 0px 0 0 3px;
  }

  .header_wrap .navbar .navbar-nav.attr-nav {
    display: block;
    float: left;
    margin-top: 2px;
  }

  .navbar {
    position: relative;
  }

  .top-header a {
    color: #30454E;
  }

  .top-header .header_list > li i {
    font-size: 24px;
  }

  .search_wraps {
    display: none;
  }

    .search_wraps.open {
      display: block;
      z-index: 999;
      position: fixed;
      left: 20px;
      right: 20px;
    }

  .lng_dropdown.header_list {
    display: none;
  }

  .section, .newsletter_small, div.section {
    padding: 50px 0;
  }

    .section.small_pt, .top_footer.small_pt {
      padding-top: 25px;
    }

    .section.small_pb, .top_footer.small_pb {
      padding-bottom: 25px;
    }

    .section.pb_70, .pb_70 {
      padding-bottom: 20px;
    }

  .mb_50 {
    margin-bottom: 25px;
  }

  .section.pb_20, .pb_20 {
    padding-bottom: 0px;
  }

  .large_divider {
    height: 50px;
  }

  .medium_divider {
    height: 25px;
  }

  .small_divider {
    height: 10px;
  }

  .section.pb_85, .pb_85 {
    padding-bottom: 35px;
  }

  .sm-height-300 {
    height: 300px !important;
  }

  .banner_content h2 {
    font-size: 28px;
  }

  .full_screen, .full_screen .carousel-item {
    min-height: 100%;
  }

  .banner_content_border {
    padding: 30px;
  }

  .breadcrumb_section.page-title-mini {
    padding: 50px 0;
  }

  .slick-list {
    padding-left: 20% !important;
    padding-right: 20% !important;
  }

  .success_stories .nav_style3.owl-theme .owl-nav {
    margin-top: 20px;
  }

  .about_box {
    bottom: 0;
  }

    .about_box p {
      height: 160px;
      overflow: hidden;
    }

  .flex_title {
    margin-bottom: 20px;
  }

  .industries_box {
    margin-bottom: 30px;
    margin-left: 20px;
  }

    .industries_box .industries_img .label {
      left: -15px;
    }

  .hover_box {
    padding: 15px;
  }

  .industries_box .hover_box * {
    font-weight: 500;
    line-height: 1.4;
    font-size: 14px;
  }

  .footer_top {
    padding: 50px 0 20px;
  }

  .box_counter {
    margin: 15px 0;
  }

    .box_counter i {
      font-size: 40px;
    }

  .counter_style1.box_counter {
    padding-left: 60px;
  }

  .grid_col4 > li,
  .grid_col3 > li,
  .grid_col3 > li.big_size {
    width: 50%;
  }

  .banner_half_content {
    padding: 100px 0 50px;
  }

  .banner_section:not(.full_screen),
  .banner_section:not(.full_screen) .carousel-item,
  .banner_section:not(.full_screen) .banner_content_wrap,
  .banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
    height: 500px;
  }

  .banner_section.slide_medium,
  .banner_section.slide_medium .carousel-item,
  .banner_section.slide_medium .banner_content_wrap,
  .banner_section.slide_medium .banner_content_wrap .carousel-item {
    height: 500px;
  }

  .banner_content1 h2 {
    font-size: 44px;
  }

  .carousel-indicators.vertical_center_right {
    right: 25px;
  }

  .indicators_style5 {
    display: none;
  }

  .icon_box_style2,
  .testimonial_style2 .testimonial_box {
    padding: 20px;
  }

  .newsletter_box {
    padding: 40px;
  }

  .waveWrapper {
    height: 30px;
  }

  .waveTop {
    background-size: 50% 30px;
  }

  .banner_half_content .background_shape {
    left: 55%;
    -moz-transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }

  .about_img_box {
    position: static;
  }

  .error_txt {
    font-size: 46px;
  }

  .team_single_content {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #eee;
    margin-top: 15px;
    padding-top: 15px;
  }

  .product_header {
    display: block;
  }

  .product_heaader_right {
    margin-top: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
  }

  .shop_container.list .product_img {
    float: none;
    width: 100%;
  }

  .compare_box table {
    width: 900px;
  }

  .row_title {
    width: 200px;
  }

  blockquote {
    font-size: 18px;
    line-height: 32px;
  }

    blockquote p {
      line-height: 32px;
    }

  .author_img img {
    max-width: 80px;
  }

  .comment_user img {
    max-width: 70px;
  }

  .scroll_down_icon.scroll_link {
    right: -17px;
  }

  .heading_s2 .sub_heading {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: -15px;
  }

  .overlap_counter_bottom::before {
    height: 50px;
  }

  .nav-tabs li.nav-item a {
    padding: 5px 15px;
    font-size: 14px;
  }

  .header_with_topbar.transparent_header + .banner_section .banner_slide_content {
    margin-top: 70px;
  }

  .nav_style7.owl-theme .owl-nav .owl-prev {
    left: 0px;
  }

  .nav_style7.owl-theme .owl-nav .owl-next {
    right: 0px;
  }

  footer .widget_title {
    margin-top: 0px;
  }

  .testimonial_wrp .testimonial_desc {
    margin-top: 10px;
  }

  .contact_form {
    max-width: 100%;
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 30px;
    float: none;
  }

  .contact_box {
    padding: 0;
  }

    .contact_box .map {
      position: relative;
    }

      .contact_box .map iframe {
        height: 400px;
      }

  .section.pb_40, .pb_40 {
    padding-bottom: 20px;
  }

  .tco__files {
    grid-gap: 0px;
    gap: 0;
    padding: 0;
  }

    .tco__files .item {
      grid-gap: 10px;
      gap: 10px;
      max-width: 50%;
      padding: 15px;
    }

  .breadcrumb_section.banner_section.slide_medium {
    height: auto;
  }

  .breadcrumb_section .play_icon {
    margin-top: 20px;
  }

  .tco__partners-wrapper.justify-content-start h2 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .double_banner_section .carousel_slider,
  .double_banner_section2 .carousel_slider {
    height: auto !important;
  }

  .double-block {
    flex-direction: column-reverse;
    position: relative;
  }

  .reverse .double-block {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .tco__partners-wrapper, .reverse .tco__partners-wrapper {
    min-width: 100%;
    max-width: 100%;
  }

  .tco__partners-wrapper {
    min-width: inherit;
    max-width: inherit;
    padding: 15px;
  }

    .tco__partners-wrapper h2 {
      margin-bottom: 0;
    }

  .double-block div {
    width: 100%;
  }

  .double-block > img {
    height: 280px !important;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .double-block > img {
    width: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .nav_style8.owl-theme .owl-nav,
  .reverse .nav_style8.owl-theme .owl-nav {
    left: 15px;
    position: absolute;
    top: 220px;
    bottom: auto;
  }

    .nav_style8.owl-theme .owl-nav [class*="owl-"] {
      color: #000;
      background: #dbdbdb;
      font-size: 16px;
      line-height: 30px;
      height: 30px;
      width: 30px;
    }

      .nav_style8.owl-theme .owl-nav [class*="owl-"]:hover {
        background-color: #fff;
      }

  .double_banner_section .owl-dots {
    left: 15px;
  }

  .tco__partners-wrapper h3 {
    margin-top: 0;
  }


  .timeline__nav ul li {
    font-size: 25px;
  }

    .timeline__nav ul li.small {
      font-size: 14px;
      line-height: 1.5;
    }

  .tco__yearcircle {
    display: none;
  }

  .timeline__nav.fixed {
    position: fixed;
    top: 94px;
    right: 0;
    width: auto;
    background: #fff;
  }

  .timeline__nav ul {
    display: flex;
    overflow: hidden;
  }

    .timeline__nav ul li {
      font-size: 3.6vh;
      display: inline-block;
      margin: 0 65px;
      height: auto;
    }

      .timeline__nav ul li.small {
        font-size: 3.4vh;
        line-height: 1.5;
      }


  .slide_section {
    margin-bottom: 15px;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

    .slide_section .slide_content {
      min-width: 100%;
      padding: 15px !important;
    }

    .slide_section .slide_img img {
      position: relative;
    }

    .slide_section.reverse {
      -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
    }

    .slide_section .nav_style8.owl-theme .owl-nav {
      margin-top: 0;
    }

    .slide_section .slide_content .heading_s1.pb_40 {
      padding-bottom: 0;
    }

  .right_popup .white_popup .side_popup_content {
    padding: 40px 50px 40px 50px;
  }

  .right_popup .white_popup {
    width: 80%;
  }

  .right_popup .side_popup_content .side_popup_name h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 30px;
  }

  .right_popup .side_popup_content .side_popup_name h3 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 30px;
  }

  .slide_section .nav_style8.owl-theme .owl-nav {
    position: static;
  }

  .debt_rating_list ul {
    margin-bottom: 20px;
  }

  .slide_section .tab-content.text-right {
    text-align: center !important;
    position: static;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .contact_list2 span {
    font-size: 16px;
  }

  .career_box.reverse {
    flex-direction: column !important;
    justify-content: flex-start !important;
  }

  .statistic {
    margin-top: 0;
  }

  .statistic_box3 img {
    width: auto;
  }

  .map_overlay .blue, .map_overlay .yellow, .map_overlay .golub, .map_overlay .grey {
    width: 20px;
  }

  .map_overlay .blue {
    top: 40%;
    left: 22%;
  }

  .map_overlay .yellow {
    top: 30.5%;
    left: 44%;
  }

  .map_overlay .grey {
    top: 49.5%;
    left: 74.5%;
  }

  .statistic p {
    font-size: 16px;
  }


  .overflow_img {
    left: 0;
    width: 100%;
  }

    .overflow_img img {
      width: 100%;
    }

  .timeline_item:first-child .timeline_arrow, .timeline_item:nth-child(2) .timeline_arrow, .timeline_item:nth-child(3) .timeline_arrow, .timeline_item:nth-child(4) .timeline_arrow, .timeline_item:nth-child(5) .timeline_arrow, .timeline_item:nth-child(6) .timeline_arrow, .timeline_item:nth-child(7) .timeline_arrow, .timeline_item:nth-child(8) .timeline_arrow {
    left: 120px;
  }

  .timeline_item:first-child::before, .timeline_item:nth-child(2)::before, .timeline_item:nth-child(3)::before, .timeline_item:nth-child(4)::before, .timeline_item:nth-child(5)::before, .timeline_item:nth-child(6)::before, .timeline_item:nth-child(7)::before, .timeline_item:nth-child(8)::before {
    left: 160px;
    width: 70%;
  }

  .popup_accordion table tr {
    font-size: 16px;
  }

  .right_popup .white_popup .side_project_popup {
    padding: 0 20px 20px 20px;
  }

  .double_banner_section .container .owl-dots, .double_banner_section2 .container .nav_style8.owl-theme .owl-nav {
    left: 20px;
  }

  .slider__flex {
    flex-direction: column;
  }

    .slider__flex .year {
      font-size: 80px;
      line-height: 224px;
    }

    .slider__flex .year-small {
      font-size: 60px;
    }

    .slider__flex .swiper-slide-active h2::before {
      display: none;
    }

    .slider__flex .swiper-year {
      height: 150px !important;
    }

  .grid_col2 > li,
  .grid_col3 > li {
    width: 100%;
  }

  .news_section .col-md-4 .news_list .card_img, .news_section .col-md-12 .news_list .card_img {
    display: block;
  }
}

/* -------------------------------------------------
  max-width: 640px
---------------------------------------------------*/
@media only screen and (max-width: 640px) {
  .user_img {
    display: none;
  }

  .carousel-indicators.vertical_center_right {
    right: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    top: auto;
    bottom: 0;
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  .indicators_style2.vertical_center_right li {
    margin: 15px 7px;
  }

  .scroll_down_icon.scroll_link {
    display: none;
  }

  .flex_title {
    margin-bottom: 15px;
  }

  .slide_section .slide_content p, .right_popup .side_popup_content .side_popup_description p {
    font-size: 16px;
  }

  .heading_s1 h1, .heading_s1 h2.h1 {
    font-size: 26px;
  }

  .heading_s1 h2, .flex_title h2, .tco__partners-wrapper h2 {
    font-size: 22px;
    line-height: normal;
  }

  .right_popup .side_popup_content .side_popup_header .side_popup_number,
  .right_popup .side_popup_content .side_popup_name h2 {
    font-size: 24px;
  }

  .right_popup .side_popup_content .side_popup_name h3 {
    font-size: 22px;
  }

  .heading_s1 h5 {
    font-size: 16px;
  }

  .large_text p, .large_text a, .large_text .custom-control, .large_text .custom-control label {
    font-size: 16px;
  }

  .respond .action p {
    font-size: 14px;
    line-height: normal;
  }

  .large_text li,
  .slide_section .slide_content ul li {
    font-size: 16px;
  }

  .accordion.accordion_style1 .card-header a {
    font-size: 16px;
  }

  .btn-link {
    font-size: 16px;
  }

    .btn-link i {
      font-size: 20px;
    }

  .file_group .pdf-link {
    font-size: 16px;
  }

  .card_box .card_number h3,
  .card_box .card_title h4 {
    font-size: 18px;
  }

  .slide_section li.nav-item a {
    font-size: 18px;
  }

  .slide_section .tab-content {
    position: static;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    text-align: center !important;
  }

  .list_style1 li {
    margin-bottom: 10px;
  }

  .report_card_box_wrap .report_card .report_card_text h3 {
    font-size: 18px;
  }

  .report_section .card_box .card_content p {
    font-size: 16px;
  }

  .tco_icon_box .tco_icon_text h4 {
    font-size: 18px;
  }

  .tco_icon_box .tco_icon_text h3 {
    font-size: 18px;
  }

  .tco_icon_box .tco_icon_text p {
    font-size: 16px;
  }

  .timeline__nav ul li {
    font-size: 20px;
  }

  .timeline__section h3 {
    font-size: 18px;
  }

  footer p,
  .widget_links li a {
    font-size: 16px;
  }

  .leads {
    margin-bottom: 15px;
  }

  .about_box_wrap {
    height: 360px;
  }

  .slick-list {
    padding-left: 10% !important;
    padding-right: 10% !important;
  }
}
/* -------------------------------------------------
  max-width: 580px
---------------------------------------------------*/
@media only screen and (max-width: 580px) {
  .about_box {
    bottom: 0;
    left: 20px;
    right: 20px;
  }

    .about_box p {
      height: 80px;
      overflow: hidden;
    }

  .popup_accordion table th {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .popup_accordion table tr {
    display: block;
  }

    .popup_accordion table tr td {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #ddd;
      padding: 8px;
      text-align: right;
    }

      .popup_accordion table tr td::before {
        content: attr(data-label);
        float: left;
        font-weight: 700;
        width: 50%;
        text-transform: uppercase;
        text-align: left;
      }
}

/* -------------------------------------------------
  max-width: 576px
---------------------------------------------------*/
@media only screen and (min-width: 576px) {
}

/* -------------------------------------------------
  max-width: 575px
---------------------------------------------------*/
@media only screen and (max-width: 575px) {
  .heading_s1 h1, .heading_s1 h2.h1 {
    font-size: 24px;
  }

  .tco__partners-wrapper h1 {
    font-size: 24px;
  }

  .tco__partners-wrapper h3 {
    font-size: 24px;
  }

  .tco_icon_box .tco_icon_text h4 {
    font-size: 18px;
  }

  .tco_icon_box .tco_icon_text h3 {
    font-size: 18px;
  }

  .section.pt_40, .pt_40 {
    padding-top: 20px;
  }

  .section.pt_40, .pt_40 {
    padding-top: 20px;
  }

  .header_wrap .navbar-collapse {
    left: -15px;
    right: -15px;
  }

  .btn {
    padding: 10px 28px;
    font-size: 14px;
  }

    .btn + .btn {
      margin-left: 5px;
    }

  .btn-group-lg > .btn, .btn-lg {
    padding: 14px 38px;
    font-size: 18px;
  }

  .btn.btn-lg i {
    font-size: 20px;
  }

  .btn-group-sm > .btn, .btn-sm {
    padding: 6px 18px;
  }

  .btn-xs {
    padding: 2px 14px;
    font-size: 12px;
  }

  p {
    margin-bottom: 15px;
  }

  .section.pb_70, .pb_70 {
    padding-bottom: 15px;
  }

  .mb_50 {
    margin-bottom: 15px;
  }

  .section, .newsletter_small, div.section {
    padding: 30px 0;
  }

    .section.small_pt, .top_footer.small_pt {
      padding-top: 15px;
    }

    .section.small_pb, .top_footer.small_pb {
      padding-bottom: 15px;
    }

  .large_divider {
    height: 30px;
  }

  .medium_divider {
    height: 15px;
  }

  .small_divider {
    height: 5px;
  }

  .section.pb_85, .pb_85 {
    padding-bottom: 15px;
  }

  .breadcrumb_section {
    padding: 50px 0;
  }

    .breadcrumb_section.page-title-mini {
      padding: 30px 0;
    }

  .footer_top {
    padding: 30px 0 15px;
  }

  .navbar .attr-nav li.nav-btn {
    margin-top: 10px;
  }

  .heading_s1 {
    margin-bottom: 15px;
  }

  .banner_content h2 {
    font-size: 28px;
  }

  .banner_content1 h2 {
    font-size: 34px;
  }

  .banner_content p {
    margin-bottom: 32px;
  }

  .banner_half_content {
    padding: 100px 0 30px;
  }

  div.banner_large_pad {
    padding: 200px 0 80px;
  }

  .leads {
    margin-bottom: 20px;
  }

  .icon_box_style1 .icon {
    height: 80px;
    width: 80px;
  }

    .icon_box_style1 .icon i {
      line-height: 80px;
      font-size: 28px;
    }

  .grid_filter {
    margin-bottom: 25px;
  }

  .gutter_medium > li .portfolio_item,
  .gutter_medium > li .image_gallery_item {
    margin-bottom: 15px;
  }

  .icon_box,
  .blog_post,
  .pricing_box,
  .team_box,
  .resume_list li,
  .contact_style1,
  .product,
  .portfolio_single_img img:not(:last-child),
  .contact_style2,
  .contact_style3 {
    margin-bottom: 15px;
  }

  .pr_title {
    padding: 20px 15px 20px;
  }

  .pr_footer {
    padding: 15px 20px 20px;
  }

  .newsletter_form input, .newsletter_form input:focus {
    height: 53px;
  }

  footer .widget_title {
    margin-top: 0px;
    margin-bottom: 20px;
  }

  footer .widget {
    margin-bottom: 20px;
  }

  .widget_contact_form {
    padding: 20px;
    margin-top: 10px;
  }

  .icon_box_style3:hover {
    -moz-transform: translate3d(0,0px, 0);
    -webkit-transform: translate3d(0,0px, 0);
    transform: translate3d(0,0px, 0);
  }

  .newsletter_box {
    padding: 30px;
  }

  .waveWrapper {
    height: 15px;
  }

  .waveTop {
    background-size: 50% 15px;
  }

  .map iframe {
    height: 300px;
  }

  footer .background_shape, footer .background_shape::before {
    width: 120px;
  }

  footer .background_shape {
    -moz-transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }

  .error_txt {
    font-size: 36px;
  }

  .cs_title {
    line-height: 35px;
  }

  .cs_wrap .shape27 {
    max-width: 42px;
  }

  .cs_wrap .shape15 {
    max-width: 10px;
  }

  .cs_wrap .shape30 {
    bottom: 25%;
    right: 100px;
    max-width: 20px;
  }

  .cs_wrap .shape44 {
    max-width: 15px;
  }

  .cs_wrap .shape28 {
    right: 150px;
    max-width: 22px;
  }

  .sidebar .widget + .widget {
    margin-top: 20px;
    padding-top: 20px;
  }

  .widget_title {
    margin-bottom: 20px;
  }

  .tab-style1 .nav-tabs li.nav-item a {
    padding: 10px 20px;
  }

  .tab-style1 .nav-tabs .nav-item {
    margin-right: 10px;
  }

  .tab-content.shop_info_tab {
    margin-top: 20px;
  }

  .circular_bar {
    margin-top: 15px;
  }

  .blog_thumbs .blog_post {
    padding-bottom: 15px;
  }

  .blockquote_style1 {
    margin: 20px 0;
  }

  blockquote {
    font-size: 16px;
    line-height: 28px;
  }

    blockquote p {
      line-height: 28px;
    }

  .blockquote_style4 {
    padding: 15px;
    font-size: 16px;
  }

  .blog_post_footer {
    padding-bottom: 20px;
    padding-top: 5px;
  }

  .post_author {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .comment-area .comment_list {
    margin-bottom: 30px;
  }

  .content_title * {
    margin-bottom: 20px;
  }

  .banner_content_border {
    padding: 20px;
  }

  .heading_s2 .sub_heading {
    font-size: 44px;
    line-height: 44px;
  }

  .contact_style3 {
    padding: 20px;
  }

    .contact_style3 .contact_icon {
      height: 70px;
      width: 70px;
    }

      .contact_style3 .contact_icon i {
        line-height: 68px;
      }

  .newsletter_form .btn {
    padding: 8px 24px;
  }

  .instagram_icon i {
    font-size: 30px;
  }

  .about_double_img2 {
    padding-bottom: 50px;
  }

  .testimonial_wrp {
    padding: 20px;
  }

  .contact_form {
    padding: 20px;
  }

  .right_popup .white_popup {
    width: 90%;
  }

    .right_popup .white_popup .side_popup_content {
      padding: 20px;
    }

  .debt_rating_list ul {
    margin-bottom: 20px;
  }

    .debt_rating_list ul li {
      font-size: 16px;
      margin-bottom: 6px;
    }


  .map_markers {
    display: block;
  }

    .map_markers .map_marker {
      grid-gap: 10px;
      gap: 10px;
      margin-bottom: 15px;
    }


  .timeline_text span {
    left: 10px;
    top: 4px;
    font-size: 12px;
  }

  .timeline_item .timeline_text img {
    max-width: 75px;
  }

  .timeline_item:first-child .timeline_arrow, .timeline_item:nth-child(2) .timeline_arrow, .timeline_item:nth-child(3) .timeline_arrow, .timeline_item:nth-child(4) .timeline_arrow, .timeline_item:nth-child(5) .timeline_arrow, .timeline_item:nth-child(6) .timeline_arrow, .timeline_item:nth-child(7) .timeline_arrow, .timeline_item:nth-child(8) .timeline_arrow {
    left: 85px;
  }

  .timeline_item:first-child::before, .timeline_item:nth-child(2)::before, .timeline_item:nth-child(3)::before, .timeline_item:nth-child(4)::before, .timeline_item:nth-child(5)::before, .timeline_item:nth-child(6)::before, .timeline_item:nth-child(7)::before, .timeline_item:nth-child(8)::before {
    left: 120px;
    width: 60%;
    font-size: 12px;
    line-height: normal;
  }


  .timeline_item:first-child::before {
    top: -2px;
  }

  .timeline_item:nth-child(2)::before {
    top: 48px;
  }

  .timeline_item:nth-child(2) .timeline_arrow {
    top: 45px;
  }

  .timeline_item:nth-child(3)::before {
    top: 94px;
  }

  .timeline_item:nth-child(3) .timeline_arrow {
    top: 105px;
  }

  .timeline_item:nth-child(6)::before {
    top: 196px;
  }

  .timeline_item:nth-child(6) .timeline_arrow {
    bottom: 100px;
  }

  .timeline_item:nth-child(7)::before {
    top: 235px;
  }

  .timeline_item:nth-child(7) .timeline_arrow {
    bottom: 58px;
  }

  .timeline_item:nth-child(8)::before {
    top: 280px;
  }
}

/* -------------------------------------------------
  max-width: 480px
---------------------------------------------------*/
@media only screen and (max-width: 480px) {
  .company_video {
    width: 100%;
    height: 200px;
  }

  logo_dark {
    width: 120%;
  }

  .footer_logo {
    width: 120%;
  }

  .background_bg {
    opacity: 50%;
  }

  body {
    font-size: 14px;
  }

  .slide_section .slide_content p, .right_popup .side_popup_content .side_popup_description p {
    font-size: 16px;
  }

  p {
    line-height: 24px;
  }

  .heading_s1 h1, .heading_s1 h2, .heading_s1 h3, .heading_s1 h4, .heading_s1 h5, .heading_s1 h6, .heading_s1 h2.h1 {
    line-height: normal;
  }

  .h1, h1 {
    font-size: 24px;
  }

  .h2, h2 {
    font-size: 22px;
  }

  .h3, h3 {
    font-size: 20px;
  }

  .h4, h4 {
    font-size: 18px;
  }

  .h5, h5 {
    font-size: 16px;
  }

  .h6, h6 {
    font-size: 14px;
  }

  p {
    margin-bottom: 15px;
  }

  .sidebar_menu {
    padding: 30px 20px 20px;
    width: 320px;
    right: -320px;
  }

  .sidebar_left .sidebar_menu,
  .sidebar_left_push .sidebar_menu {
    left: -320px;
  }

  .sidebar_left_push.sidetoggle_active {
    left: 320px;
  }

    .sidebar_left_push.sidetoggle_active .header_wrap.nav-fixed {
      left: 320px;
      right: -320px;
    }

  .sidebar_right_push.sidetoggle_active {
    right: 320px;
  }

  .navbar .attr-nav li .nav-link i[class*="linearicons-"],
  .navbar .navbar-nav.attr-nav li .nav-link.search_trigger [class*="linearicons-"], .navbar .navbar-nav.attr-nav li .nav-link.cart_trigger [class*="linearicons-"] {
    font-size: 18px;
  }

  .banner_content h2 {
    font-size: 22px;
    margin-top: 15px;
  }

  .banner_content1 h2 {
    font-size: 30px;
  }

  .banner_content p {
    margin-bottom: 25px;
    font-size: 16px;
  }

  .carousel-control-next, .carousel-control-prev {
    font-size: 16px;
    height: 38px;
    width: 38px;
  }

  .carousel-control-prev {
    left: 0;
  }

  .carousel-control-next {
    right: 0px;
  }

  .carousel_style1 .carousel-control-next {
    right: 10px;
  }

  .carousel_style1 .carousel-control-prev {
    left: 10px;
  }

  .heading_s1,
  .heading_s2,
  .heading_s3,
  .heading_s4,
  footer .widget_title,
  .leads {
    margin-bottom: 15px;
  }

  .heading_icon {
    margin-bottom: -10px;
  }

  .highlight_text {
    font-size: 16px;
  }

  .box_counter p {
    font-size: 14px;
  }

  .grid_col2 > li,
  .grid_col4 > li,
  .grid_col3 > li,
  .grid_col3 > li.big_size {
    width: 100%;
  }

  .grid_filter li a {
    padding: 5px 10px;
  }

  .grid_filter.filter_style1 li a {
    padding: 5px 15px;
  }

  .testimonial_style1 .testimonial_box {
    padding: 20px;
  }

  .blog_title {
    margin-bottom: 10px;
  }

  .ripple {
    margin-right: 20px;
    margin-left: -10px;
  }

    .ripple::before, .ripple::after {
      margin: -15px;
    }

  .first_img,
  .second_img {
    max-width: 300px;
  }

  .profile_info > li {
    margin-bottom: 15px;
  }

  .count_pr {
    font-size: 14px;
  }

  .contact_icon {
    margin-right: 15px;
  }

    .contact_icon i {
      font-size: 30px;
    }

  .divider i {
    font-size: 26px;
    padding: 0 25px;
  }

  .page-title-mini .page-title h1 {
    font-size: 24px;
  }

  .list_style1 li::before {
    top: 5px;
  }

  .cart_extra {
    display: block;
  }

  .tab-style1 .nav-tabs::before {
    content: normal;
  }

  .tab-style1 .nav-tabs {
    display: block;
  }

    .tab-style1 .nav-tabs .nav-item {
      margin-right: 0;
      margin-bottom: 5px;
    }

  #Additional-info table td:first-child {
    width: auto;
  }

  .empty_icon {
    height: 70px;
    width: 70px;
    line-height: 70px;
    margin-bottom: 15px;
  }

    .empty_icon img {
      max-width: 35px;
    }

  .single_post .blog_title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .post_author .author_img {
    float: none;
    padding-right: 0;
    margin: 0 auto;
    display: table;
  }

  .author_info {
    text-align: center;
    margin-top: 15px;
  }

  .comment_user img {
    max-width: 60px;
  }

  .comment_content {
    padding-left: 15px;
  }

  .children {
    margin-left: 20px;
  }

  .icon_box_style5 .icon i {
    font-size: 40px;
    line-height: 50px;
  }

  .heading_s2 .sub_heading {
    font-size: 34px;
    line-height: 34px;
    margin-bottom: -5px;
  }

  .icon_box_style6 {
    padding: 20px 15px;
  }

    .icon_box_style6 .icon i {
      font-size: 40px;
    }

  .counter_style1.box_counter {
    padding-left: 0;
    text-align: center;
  }

    .counter_style1.box_counter i {
      position: static;
    }

  .process_step_content {
    margin-top: 20px;
  }

  .counter_style2 i {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }

  .box_counter.counter_style2 {
    padding: 10px;
  }

    .box_counter.counter_style2 i {
      font-size: 34px;
      margin-bottom: 10px;
    }

    .box_counter.counter_style2 p {
      font-size: 13px;
    }

  .contact_style2 {
    padding: 20px;
  }

    .contact_style2 .contact_icon {
      height: 70px;
      width: 70px;
    }

      .contact_style2 .contact_icon i {
        line-height: 70px;
        font-size: 26px;
      }

  .tab-style2 .nav-tabs li.nav-item {
    width: 100%;
  }

  .tab-style3 .nav-tabs li.nav-item a {
    padding: 5px 8px;
  }

  .tab-style3 .tab-content.shop_info_tab {
    margin-top: 15px;
  }

  .pr_list li {
    padding: 10px 0;
  }

  .pr_icon {
    width: 80px;
    height: 80px;
  }

    .pr_icon i {
      font-size: 40px;
      line-height: 80px;
    }

  .price_tage {
    padding-top: 5px;
  }

  .about_double_img2 .first_img {
    max-width: 80%;
  }

  .about_double_img2 .second_img {
    max-width: 60%;
  }

  .accordion_style4 .card-header a {
    padding: 15px 15px 15px 40px;
    font-size: 14px;
  }

    .accordion_style4 .card-header a::after {
      left: 12px;
      top: 17px;
    }

  .item_meta.duration {
    padding: 4px 7px;
    right: 10px;
    font-size: 12px;
  }

  .contact_box .map iframe {
    height: 300px;
  }

  .timeline__nav ul li {
    margin: 0;
    max-width: 192px;
    flex: 0 0 192px;
    text-align: left;
  }
}

/* -------------------------------------------------
  max-width: 440px
---------------------------------------------------*/
@media only screen and (max-width: 440px) {
  .ddcommon .ddChild {
    left: auto;
    padding: 0px;
    width: auto;
  }

    .ddcommon .ddChild li {
      width: 100%;
      float: none;
    }

    .ddcommon .ddChild li {
      padding: 6px 10px;
    }
}

/* -------------------------------------------------
  max-width: 380px
---------------------------------------------------*/
@media only screen and (max-width: 380px) {
  .btn {
    padding: 8px 24px;
  }

  .btn-group-lg > .btn, .btn-lg {
    padding: 12px 34px;
    font-size: 16px;
  }

  .btn.btn-lg i {
    font-size: 18px;
  }

  .btn-group-sm > .btn, .btn-sm {
    padding: 4px 16px;
  }

  .btn-xs {
    padding: 2px 14px;
    font-size: 12px;
  }

  .sidebar_menu {
    padding: 30px 15px 15px;
    width: 290px;
    right: -290px;
  }

  .sidebar_left .sidebar_menu,
  .sidebar_left_push .sidebar_menu {
    left: -290px;
  }

  .sidebar_left_push.sidetoggle_active {
    left: 290px;
  }

    .sidebar_left_push.sidetoggle_active .header_wrap.nav-fixed {
      left: 290px;
      right: -290px;
    }

  .sidebar_right_push.sidetoggle_active {
    right: 290px;
  }

  .fb_style1::before {
    width: 220px;
  }

  .banner_content h2 {
    margin-bottom: 15px;
  }

  .banner_content p {
    margin-bottom: 20px;
  }

  .first_img,
  .second_img {
    max-width: 230px;
  }

  .ripple {
    line-height: 32px;
    height: 32px;
    width: 32px;
  }

    .ripple i {
      font-size: 14px;
    }

  .header_wrap.transparent_header.header_with_topbar + .breadcrumb_section {
    padding-top: 220px;
  }

  .form-control {
    height: 40px;
    font-size: 14px;
  }

    .form-control:focus, .custom-file-input:focus ~ .custom-file-label, .custom_select select {
      height: 40px;
    }

  .input_icon, .rounded_input .input_icon {
    top: 10px;
  }

  .custom-file-label, .custom-file, .custom-file-input {
    height: 40px;
    line-height: 28px;
  }

    .custom-file-label::after {
      height: 38px;
      line-height: 30px;
    }

  .error_txt {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .btn-login li a {
    padding: 8px 16px;
  }

  .login_footer a {
    font-size: 13px;
  }

  .countdown_box .countdown {
    font-size: 26px;
  }

  .cs_title {
    line-height: 28px;
    font-size: 16px;
  }

  .shop_container.list .pr_action_btn li.add-to-cart a {
    padding: 10px 20px;
    font-size: 14px;
  }

  .order_complete i {
    font-size: 50px;
  }

  .comment_user img {
    max-width: 50px;
  }

  .heading_s2 .sub_heading {
    font-size: 30px;
    line-height: 30px;
  }

  .contact_detail > li, .header_list > li {
    padding: 2px 10px 2px 0;
  }

  .navbar-nav .dropdown-menu.cart_box.show {
    right: -50px;
    width: 310px;
  }

  .countdown_style2 .countdown_box .countdown-wrap {
    padding: 5px;
  }

  .countdown_style2.countdown_time .cd_text {
    font-size: 12px;
  }

  .post_content {
    margin-top: 0;
  }

  .instagram_icon i {
    font-size: 20px;
  }
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list {
  background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url('./fonts/slick.eot');
  src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

  .slick-prev:hover,
  .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
  }

    .slick-prev:hover:before,
    .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1;
    }

  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: .25;
  }

  .slick-prev:before,
  .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: '←';
}

[dir='rtl'] .slick-prev:before {
  content: '→';
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: '→';
}

[dir='rtl'] .slick-next:before {
  content: '←';
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

  .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
  }

    .slick-dots li button {
      font-size: 0;
      line-height: 0;
      display: block;
      width: 20px;
      height: 20px;
      padding: 5px;
      cursor: pointer;
      color: transparent;
      border: 0;
      outline: none;
      background: transparent;
    }

      .slick-dots li button:hover,
      .slick-dots li button:focus {
        outline: none;
      }

        .slick-dots li button:hover:before,
        .slick-dots li button:focus:before {
          opacity: 1;
        }

      .slick-dots li button:before {
        font-family: 'slick';
        font-size: 6px;
        line-height: 20px;
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        content: '•';
        text-align: center;
        opacity: .25;
        color: black;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

    .slick-dots li.slick-active button:before {
      opacity: .75;
      color: black;
    }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

  .slick-list:focus {
    outline: none;
  }

  .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
  }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

  .slick-track:before,
  .slick-track:after {
    display: table;
    content: '';
  }

  .slick-track:after {
    clear: both;
  }

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
