@charset "UTF-8";
/*!
Theme Name: starter
Theme URI: http://underscores.me/
Author: Justin LaFountain
Author URI: http://jlafountain.com
Description: A starter theme with bootstrap and Platforma.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: starter
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

starter is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
.mapsvg {
  /* set map height to 100px for a preloader message - */
  /* real height will be set later by MapSVG */
  height: 100px;
  position: relative;
  overflow: hidden;
}

.mapsvg-wrap *, .mapsvg * {
  outline: none !important;
  touch-action: manipulation;
}

.mapsvg.mapsvg-responsive {
  width: 100%;
  height: auto;
}

.mapsvg.mapsvg-cursor-pointer .mapsvg-region {
  cursor: pointer;
}

.mapsvg.mapsvg-disabled-regions .mapsvg-region {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  pointer-events: none;
  cursor: default;
}

.mapsvg-disabled {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  pointer-events: none;
  cursor: default;
}

.mapsvg text, .mapsvg tspan {
  pointer-events: none;
}

.mapsvg svg {
  -webkit-user-select: none;
  user-select: none;
  /*overflow: visible !important;*/
  max-width: none !important;
  max-height: none !important;
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 0.4s;
  transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}

/* SMOOTH TRANSITIONS */
/* SMOOTH TRANSITIONS */
.mapsvg.no-transitions * {
  transition: none !important;
  transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}

.mapsvg-popover {
  transition: all 0.4s;
}

.mapsvg-marker {
  transition: all 0.4s;
}

.mapsvg-scrollpane {
  transition: all 0.4s;
}

.mapsvg-with-google-map .mapsvg-scrollpane,
.mapsvg-with-google-map svg,
.mapsvg-with-google-map .mapsvg-popover,
.mapsvg-with-google-map .mapsvg-marker {
  transition: all 0.15s;
}

.mapsvg-scrollpane.scrolling {
  transition: none;
}

/* PRELOADER */
.mapsvg-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 12px !important;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid #ccc;
  background: #f5f5f2;
  color: #999;
}

/* ZOOM BUTTONS */
.mapsvg-buttons {
  position: absolute;
  margin: 10px;
  top: 0;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: 0 0 5px #999;
}

.mapsvg-buttons.right {
  right: 0;
}

.mapsvg-buttons.left {
  left: 0;
}

.mapsvg-btn-zoom {
  width: 24px;
  height: 24px;
  border-radius: 2px;
  display: block;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  padding: 0;
}

.mapsvg-btn-zoom:hover {
  background-color: #f2f2f2;
}

.mapsvg-btn-zoom.in {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: 1px solid #ddd;
}

.mapsvg-btn-zoom.out {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.mapsvg-btn-zoom.in:before, .mapsvg-btn-zoom.out:before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 6px;
  background-color: #999;
  height: 1px;
  width: 12px;
  pointer-events: none;
}

.mapsvg-btn-zoom.in:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 11px;
  background-color: #999;
  height: 12px;
  width: 1px;
  pointer-events: none;
}

/* TOOLTIPS */
.mapsvg-tooltip {
  font-weight: normal;
  font-size: 12px;
  font-family: Helvetica, Arial;
  color: #000000;
  position: absolute;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  z-index: 999999;
  background-color: white;
  border: 1px solid #eee;
  padding: 4px 7px;
  max-width: 600px;
  opacity: 0;
  transition: opacity 0.16s ease-out;
  pointer-events: none;
  text-align: left;
}

.mapsvg-tooltip.mapsvg-tooltip-visible {
  opacity: 1;
}

.mapsvg-tooltip.mapsvg-tt-top {
  transform: translate(-50%, -100%) translateY(-10px);
}

.mapsvg-tooltip.mapsvg-tt-left {
  transform: translate(-100%, -50%) translateX(-10px);
}

.mapsvg-tooltip.mapsvg-tt-bottom {
  transform: translate(-50%, 25px);
}

.mapsvg-tooltip.mapsvg-tt-right {
  transform: translate(15px, -50%);
}

.mapsvg-tooltip.mapsvg-tt-top-left {
  transform: translate(-100%, -100%) translate(10px, -10px);
}

.mapsvg-tooltip.mapsvg-tt-top-right {
  transform: translateY(-100%) translateY(-10px);
}

.mapsvg-tooltip.mapsvg-tt-bottom-left {
  transform: translate(-100%, 25px) translateX(10px);
}

.mapsvg-tooltip.mapsvg-tt-bottom-right {
  transform: translateY(25px);
}

/* POPOVERS */
.mapsvg-popover .mapsvg-popover-close {
  position: absolute;
  top: 3px;
  right: 3px;
  cursor: pointer;
  z-index: 1200;
}

.mapsvg-popover-close {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  transform-origin: 100% 0;
  -webkit-transform-origin: 100% 0;
  transform: scale(0.25);
  -webkit-transform: scale(0.25);
}

.mapsvg-popover-close:hover::before, .mapsvg-popover-close:hover::after {
  background: #666;
}

.mapsvg-popover-close::before, .mapsvg-popover-close::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #000;
}

@-moz-document url-prefix() {
  .mapsvg-popover-close::before, .mapsvg-popover-close::after {
    height: 3px;
  }
}
.mapsvg-popover-close::before {
  transform: rotate(45deg);
}

.mapsvg-popover-close::after {
  transform: rotate(-45deg);
}

.mapsvg-popover-close.big {
  transform: scale(3);
}

.mapsvg-popover-close.hairline::before, .mapsvg-popover-close.hairline::after {
  height: 2px;
}

.mapsvg-popover-close.thick::before, .mapsvg-popover-close.thick::after {
  height: 4px;
  margin-top: -2px;
}

.mapsvg-popover-close.black::before, .mapsvg-popover-close.black::after {
  height: 8px;
  margin-top: -4px;
}

.mapsvg-popover-close.heavy::before, .mapsvg-popover-close.heavy::after {
  height: 12px;
  margin-top: -6px;
}

.mapsvg-popover-close.pointy::Before, .mapsvg-popover-close.pointy::after {
  width: 200%;
  left: -50%;
}

.mapsvg-popover-close.rounded::before, .mapsvg-popover-close.rounded::after {
  border-radius: 5px;
}

.mapsvg-popover-close.blades::before, .mapsvg-popover-close.blades::after {
  border-radius: 5px 0;
}

.mapsvg-popover-close.warp::before, .mapsvg-popover-close.warp::after {
  border-radius: 120% 0;
}

.mapsvg-popover-close.fat::before, .mapsvg-popover-close.fat::after {
  border-radius: 100%;
}

.mapsvg-popover {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 4px 15px 1px rgba(0, 0, 0, 0.5);
  color: #000;
  display: none;
  font-size: 12px;
  font-family: "Helvetica", sans-serif;
  padding: 15px 10px 7px 10px;
  position: absolute;
  min-width: 100px;
  max-width: 300px;
  max-height: 300px;
  bottom: 100%;
  margin-bottom: 12px;
  transform: translate(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 2;
}

.mapsvg-popover .mapsvg-popover-content {
  overflow-y: auto;
}

.mapsvg-popover:before {
  border-top: 7px solid white;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  bottom: -6px;
  content: "";
  display: block;
  left: 50%;
  margin-left: -7px;
  position: absolute;
}

.mapsvg-popover.mapsvg-popover-visible {
  display: block;
}

.mapsvg-popover.mapsvg-popover-animate {
  -webkit-animation: fade-in 0.2s linear 1;
  /* , move-up .2s ease-out */
  -moz-animation: fade-in 0.2s linear 1;
  /* , move-up .2s ease-out */
  -ms-animation: fade-in 0.2s linear 1;
  /* , move-up .2s ease-out */
}

/* CHOROPLETH MAPS */
.mapsvg-gauge {
  background-color: #ffffff;
  border-radius: 3px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  max-width: 50%;
  min-width: 10%;
  font-size: 11px !important;
  line-height: 15px !important;
  color: #666666;
  padding: 0px 0px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
}

.mapsvg-gauge table {
  width: auto;
  margin: 0;
  border: 0;
  padding: 0;
}

.mapsvg-gauge .mapsvg-gauge-gradient {
  min-width: 100px;
}

.mapsvg-gauge table tr {
  border: 0 !important;
}

.mapsvg-gauge table td {
  padding: 2px 7px;
  border: 0 !important;
}

/* DIRECTORY */
.mapsvg-wrap {
  position: relative;
}

.mapsvg-wrap .mapsvg-directory {
  display: flex;
  flex-flow: column;
  max-height: 100%;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  background-color: #f5f5f5;
}

.mapsvg-wrap .mapsvg-directory.mapsvg-directory-right {
  left: auto;
  right: 0;
}

.mapsvg-controller-view {
  position: relative;
  height: 100%;
  pointer-events: auto;
  border-right: 1px solid #eee;
}

.mapsvg-controller-view-wrap.nano {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.mapsvg-controller-view-content {
  padding: 15px;
  box-sizing: border-box;
}

.mapsvg-mobile-buttons {
  height: 50px;
  background-color: #eee;
  position: relative;
  display: none;
}

.mapsvg-button-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  left: 50%;
  bottom: 0;
  line-height: 50px;
  cursor: pointer;
  color: #222;
  text-align: center;
  border: 1px solid #ddd;
}

.mapsvg-button-map {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 50%;
  bottom: 0;
  line-height: 50px;
  cursor: pointer;
  color: #444;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-right: 0;
}

.mapsvg-button-menu:hover, .mapsvg-button-map:hover {
  background-color: #e2e2e2;
}

.mapsvg-button-menu.active, .mapsvg-button-map.active {
  background-color: #ccc;
  border-color: #ccc;
  color: #fff;
}

.mapsvg-directory-search-wrap-margin {
  position: relative;
  height: 34px;
}

.mapsvg-directory-search {
  height: 34px;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 3px 15px 3px 15px;
  font-weight: normal;
  width: 100%;
}

.mapsvg-directory-search {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
  box-sizing: border-box;
}

.mapsvg-filter-btn-ok {
  display: none;
}

.mapsvg-directory-list-wrap:after,
.mapsvg-details-view:after {
  content: " ";
  height: 100%;
  position: absolute;
  right: -15px;
  width: 15px;
  top: 0;
}

.mapsvg-directory-search:active,
.mapsvg-directory-search:focus {
  border: 1px solid #eee !important;
}

.mapsvg-directory-search:focus,
.mapsvg-directory-search:active {
  outline: 0 !important;
  -webkit-appearance: none !important;
  border: 0;
  box-shadow: none;
}

.mapsvg-directory-list-wrap {
  border-right: 1px solid #e5e5e5;
  max-height: 100%;
  flex: 1 0;
  z-index: 1;
  background: #fafafa;
  position: relative;
  height: 48px;
}

.mapsvg-directory-list {
  overflow-y: scroll;
  position: absolute !important;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

.mapsvg-directory-item {
  display: block;
  cursor: pointer;
  padding: 10px;
}

.mapsvg-directory-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mapsvg-directory-item.hover {
  background: rgba(0, 0, 0, 0.05);
}

.mapsvg-directory-item.selected {
  background: rgba(0, 0, 0, 0.1) !important;
}

.mapsvg-directory-item:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.mapsvg-wrap .mapsvg {
  flex: 1 0;
  min-width: 0;
  /* firefox flex fix */
}

.mapsvg-directory {
  min-width: 0;
  /* firefox flex fix */
  position: relative;
  z-index: 2;
  -webkit-font-smoothing: antialiased;
}

.mapsvg-directory.mapsvg-directory-overlapping .mapsvg-details-view {
  box-shadow: none;
}

.mapsvg-directory ul {
  margin: 0;
}

.mapsvg-directory li {
  list-style: none;
}

.mapsvg-directory-filter-wrap {
  padding-top: 7px;
}

.mapsvg-directory-filter-wrap:first-child {
  padding-top: 0;
}

.mapsvg-directory-filter-wrap:empty {
  display: none;
}

.mapsvg-filter-tag {
  background: #ddd;
  color: #666;
  display: inline-block;
  padding: 0 8px;
  line-height: 27px;
  border-radius: 5px;
  font-size: 13px;
  -webkit-user-select: none;
  user-select: none;
}

.mapsvg-filter-delete {
  display: inline-block;
  color: #444;
  font-size: 16px;
  padding-left: 3px;
}

.mapsvg-filter-delete:hover {
  color: #999;
  cursor: pointer;
}

.mapsvg-directory-search-wrap {
  box-sizing: border-box;
  position: relative;
}

/* DETAILS VIEW */
.mapsvg-details-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}

.mapsvg-details-container > div {
  background-color: #fafafa;
}

.mapsvg-details-container .mapsvg-controller-view-content {
  padding-top: 0;
}

.mapsvg-details-container.near {
  z-index: 3;
  pointer-events: none;
}

.mapsvg-details-container.top {
  z-index: 3;
  pointer-events: none;
}

.mapsvg-details-container:empty {
  display: none;
}

.mapsvg-details-view {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fafafa;
  padding: 10px;
  -webkit-font-smoothing: antialiased;
  background-color: #fafafa;
  transition: all 0.2s;
}

.over .mapsvg-details-view {
  opacity: 0;
}

.mapsvg-details-view-toolbar {
  position: relative;
  height: 25px;
}

.mapsvg-details-view.mapsvg-over {
  left: 0;
  width: 100%;
  z-index: 2;
}

.mapsvg-details-view.mapsvg-over:after {
  box-shadow: none !important;
}

.mapsvg-details-view.mapsvg-near {
  width: 100%;
  z-index: -1;
}

.mapsvg-details-view-content.nano {
  position: absolute;
  top: 35px;
  bottom: 0px;
  left: 10px;
  right: 0px;
}

.mapsvg-details-view-content.nano .nano-content {
  right: 15px;
}

.mapsvg-controller-view-toolbar {
  padding: 7px;
  box-sizing: border-box;
}

.mapsvg-controller-view-toolbar:empty {
  display: none;
}

.mapsvg-controller-view-toolbar:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.mapsvg-details-close {
  cursor: pointer;
  background: url("../img/close.png");
  background-size: cover;
  width: 25px;
  height: 25px;
  display: block;
  position: relative;
  float: right;
}

.mapsvg-details-close:hover {
  opacity: 0.6;
}

.mapsvg-details-back {
  left: 0;
  right: auto;
  cursor: pointer;
  background: url("../img/left.png");
  background-size: cover;
  width: 25px;
  height: 25px;
}

/* MARKERS */
.mapsvg-marker {
  cursor: pointer;
  position: absolute;
  botttom: 100%;
  left: 0;
  z-index: 1;
  max-width: none;
}

.mapsvg-marker-hidden {
  opacity: 0.4;
  pointer-events: none;
}

.mapsvg-marker-visible {
  display: block !important;
}

/* LAYERS */
.mapsvg-layers-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.mapsvg-layer-gm {
  pointer-events: none;
}

/* PAGINATION  (bootstrap styles) */
.mapsvg-pagination .pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

.mapsvg-pagination .pager li {
  display: inline-block;
  margin: 0 2px;
}

.mapsvg-pagination .pager li > a,
.mapsvg-pagination .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  line-height: 1.5;
  font-family: Helvetica;
  box-shadow: none;
  text-decoration: none;
  font-size: 13px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.mapsvg-pagination .pager li > a:hover,
.mapsvg-pagination .pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

.mapsvg-pagination .pager .next > a,
.mapsvg-pagination .pager .next > span {
  float: right;
}

.mapsvg-pagination .pager .previous > a,
.mapsvg-pagination .pager .previous > span {
  float: left;
}

.mapsvg-pagination .pager .disabled > a,
.mapsvg-pagination .pager .disabled > a:hover,
.mapsvg-pagination .pager .disabled > a:focus,
.mapsvg-pagination .pager .disabled > span {
  color: #ccc;
  cursor: not-allowed;
  background-color: #fff;
}

.mapsvg-pagination li.disabled {
  pointer-events: none;
}

/* pagination when directory is switched off */
.mapsvg > .mapsvg-pagination {
  position: absolute;
  bottom: 10px;
  left: 7px;
}

.mapsvg > .mapsvg-pagination ul {
  margin: 0;
}

.mapsvg-filter-label:empty {
  display: none;
}

#mapsvg-admin .mapsvg-filter-label:empty {
  display: block !important;
}

/* GROUPS CONTROL */
.mapsvg-layers-control {
  max-width: 200px;
  position: absolute;
  font-size: 12px;
  text-align: left;
  padding: 10px;
  height: 100%;
  pointer-events: none;
}

.mapsvg-layers-control.mapsvg-top-left {
  top: 0px;
  left: 0px;
}

.mapsvg-layers-control.mapsvg-top-right {
  top: 0px;
  right: 0px;
}

.mapsvg-layers-control.mapsvg-bottom-right {
  bottom: 0px;
  right: 0px;
}

.mapsvg-layers-control.mapsvg-bottom-left {
  bottom: 0px;
  left: 0px;
}

.mapsvg-layers-control .mapsvg-layers-label {
  height: 23px;
  line-height: 23px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0 7px;
  cursor: pointer;
}

.mapsvg-layers-label {
  pointer-events: all;
}

.mapsvg-layers-label:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-bottom: 4px dashed;
  border-bottom: 4px solid\9 ;
  border-top: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.mapsvg-layers-control.closed .mapsvg-layers-list-wrap {
  display: none;
}

.mapsvg-layers-control.closed .mapsvg-layers-label:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid\9 ;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 0;
}

.mapsvg-layers-list-wrap {
  position: absolute;
  top: 33px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  pointer-events: none;
}

.mapsvg-layers-list-wrap .nano {
  height: 100% !important;
}

.mapsvg-layers-item {
  padding: 3px 7px;
  text-align: left;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  pointer-events: all;
}

.mapsvg-layers-item label {
  cursor: pointer;
}

/* FLOORS */
.mapsvg-floors-control {
  max-width: 200px;
  position: absolute;
  font-size: 12px;
  text-align: left;
  padding: 10px;
  height: 100%;
  pointer-events: none;
}

.mapsvg-floors-control.mapsvg-top-left {
  top: 0px;
  left: 0px;
}

.mapsvg-floors-control.mapsvg-top-right {
  top: 0px;
  right: 0px;
}

.mapsvg-floors-control.mapsvg-bottom-right {
  bottom: 0px;
  right: 0px;
}

.mapsvg-floors-control.mapsvg-bottom-left {
  bottom: 0px;
  left: 0px;
}

.mapsvg-floors-control .mapsvg-floors-label {
  height: 23px;
  line-height: 23px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0 7px;
  cursor: pointer;
}

.mapsvg-floors-label {
  pointer-events: all;
}

.mapsvg-floors-label:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-bottom: 4px dashed;
  border-bottom: 4px solid\9 ;
  border-top: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.mapsvg-floors-control.closed .mapsvg-floors-list-wrap {
  display: none;
}

.mapsvg-floors-control.closed .mapsvg-floors-label:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid\9 ;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 0;
}

.mapsvg-floors-list-wrap {
  position: absolute;
  top: 33px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

.mapsvg-floors-list-wrap .nano {
  height: 100% !important;
}

.mapsvg-floors-item {
  padding: 3px 7px;
  text-align: left;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  pointer-events: all;
}

.mapsvg-floors-item label {
  cursor: pointer;
}

/* IOS SWITCHES */
input[type=checkbox].ios8-switch {
  position: absolute;
  margin: 8px 0 0 16px;
  display: none;
}

input[type=checkbox].ios8-switch + label {
  position: relative;
  padding: 5px 0 0 50px;
  line-height: 2em;
  font-weight: normal;
}

input[type=checkbox].ios8-switch + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 40px;
  /* x*5 */
  height: 24px;
  /* x*3 */
  border-radius: 16px;
  /* x*2 */
  background: #fff;
  border: 1px solid #d9d9d9;
  transition: all 0.3s;
}

input[type=checkbox].ios8-switch + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 24px;
  /* x*3 */
  height: 24px;
  /* x*3 */
  border-radius: 16px;
  /* x*2 */
  background: #fff;
  border: 1px solid #d9d9d9;
  transition: all 0.3s;
}

input[type=checkbox].ios8-switch + label:hover:after {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

input[type=checkbox].ios8-switch:checked + label:after {
  margin-left: 16px;
}

input[type=checkbox].ios8-switch:checked + label:before {
  background: #55D069;
}

/* SMALL */
input[type=checkbox].ios8-switch-sm {
  margin: 5px 0 0 10px;
}

input[type=checkbox].ios8-switch-sm + label {
  position: relative;
  padding: 0 0 0 32px;
  line-height: 1.3em;
}

input[type=checkbox].ios8-switch-sm + label:before {
  width: 25px;
  /* x*5 */
  height: 15px;
  /* x*3 */
  border-radius: 10px;
  /* x*2 */
}

input[type=checkbox].ios8-switch-sm + label:after {
  width: 15px;
  /* x*3 */
  height: 15px;
  /* x*3 */
  border-radius: 10px;
  /* x*2 */
}

input[type=checkbox].ios8-switch-sm + label:hover:after {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

input[type=checkbox].ios8-switch-sm:checked + label:after {
  margin-left: 10px;
  /* x*2 */
}

/* LARGE */
input[type=checkbox].ios8-switch-lg {
  margin: 10px 0 0 20px;
}

input[type=checkbox].ios8-switch-lg + label {
  position: relative;
  padding: 7px 0 0 60px;
  line-height: 2.3em;
}

input[type=checkbox].ios8-switch-lg + label:before {
  width: 50px;
  /* x*5 */
  height: 30px;
  /* x*3 */
  border-radius: 20px;
  /* x*2 */
}

input[type=checkbox].ios8-switch-lg + label:after {
  width: 30px;
  /* x*3 */
  height: 30px;
  /* x*3 */
  border-radius: 20px;
  /* x*2 */
}

input[type=checkbox].ios8-switch-lg + label:hover:after {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

input[type=checkbox].ios8-switch-lg:checked + label:after {
  margin-left: 20px;
  /* x*2 */
}

.mapsvg-no-results {
  padding: 10px;
  color: #666;
}

.mapsvg-layers-item {
  -webkit-user-select: none;
  user-select: none;
}

/* MOBILE DEVICES */
@media (max-width: 812px) {
  /* 812px = iPhone X, all others phones are smaller */
  body.mapsvg-fullscreen-popovers .mapsvg-popover {
    transform: none !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    box-shadow: none;
    position: fixed;
    height: 100%;
    min-height: 100%;
    z-index: 999999999;
  }

  body.mapsvg-fullscreen-popovers .mapsvg-popover.mapsvg-popover-animate {
    transition: none !important;
  }

  body.mapsvg-fullscreen-popovers .mapsvg-popover:before {
    display: none !important;
  }

  /* zoom buttons for mobile devices */
  .mapsvg-btn-zoom {
    width: 32px;
    height: 32px;
  }

  .mapsvg-btn-zoom.in:before, .mapsvg-btn-zoom.out:before {
    top: 15px;
    left: 6px;
    height: 1px;
    width: 20px;
  }

  .mapsvg-btn-zoom.in:after {
    top: 6px;
    left: 15px;
    height: 21px;
    width: 1px;
  }

  .mapsvg-popover {
    padding-top: 20px;
  }

  .mapsvg-popover-close {
    top: 3px !important;
    right: 3px !important;
    z-index: 999;
    transform: scale(0.35);
  }

  .mapsvg-mobile-buttons {
    display: block;
  }

  .mapsvg-button-map, .mapsvg-button-menu {
    display: block;
  }

  .mapsvg-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .mapsvg-wrap .mapsvg-directory {
    width: 100% !important;
  }

  /* switch "near" to "over" on mobiles */
  .mapsvg-details-view {
    left: 0 !important;
    width: 100% !important;
  }

  .mapsvg-details-container.near {
    z-index: 3 !important;
    left: 0 !important;
  }

  .mapsvg-controller-view {
    width: 100% !important;
  }

  .mapsvg-directory.closed {
    /*left: -100%;*/
    display: none;
  }

  .mapsvg-directory {
    overflow: visible !important;
  }

  .mapsvg-directory-filter-wrap {
    padding: 20px;
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background-color: white;
    overflow: scroll;
    z-index: 9999000;
  }

  .mapsvg-filter-btn-ok {
    display: block;
    margin-top: 15px;
  }
}
/* ICONS */
@font-face {
  font-family: "mapsvg-icons";
  src: url("font/mapsvg-icons.eot?98971180");
  src: url("font/mapsvg-icons.eot?98971180#iefix") format("embedded-opentype"), url("font/mapsvg-icons.woff2?98971180") format("woff2"), url("font/mapsvg-icons.woff?98971180") format("woff"), url("font/mapsvg-icons.ttf?98971180") format("truetype"), url("font/mapsvg-icons.svg?98971180#mapsvg-icons") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=mapsvg-icon-]:before, [class*=" mapsvg-icon-"]:before {
  font-family: "mapsvg-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.mapsvg-icon-menu:before {
  content: "";
}

/* '' */
.mapsvg-icon-map:before {
  content: "";
}

/* '' */
/* ANIMATIONS */
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# platforma
--------------------------------------------------------------*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}
.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
.d-print-block {
  display: none !important;
}

@media print {
  .d-print-block {
    display: block !important;
  }
}
.d-print-inline {
  display: none !important;
}

@media print {
  .d-print-inline {
    display: inline !important;
  }
}
.d-print-inline-block {
  display: none !important;
}

@media print {
  .d-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
}
@font-face {
  font-family: "Glyphicons Halflings";
  src: url(../fonts/glyphicons-halflings-regular.eot);
  src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(../fonts/glyphicons-halflings-regular.woff2) format("woff2"), url(../fonts/glyphicons-halflings-regular.woff) format("woff"), url(../fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
  content: "*";
}

.glyphicon-plus:before {
  content: "+";
}

.glyphicon-eur:before, .glyphicon-euro:before {
  content: "€";
}

.glyphicon-minus:before {
  content: "−";
}

.glyphicon-cloud:before {
  content: "☁";
}

.glyphicon-envelope:before {
  content: "✉";
}

.glyphicon-pencil:before {
  content: "✏";
}

.glyphicon-glass:before {
  content: "";
}

.glyphicon-music:before {
  content: "";
}

.glyphicon-search:before {
  content: "";
}

.glyphicon-heart:before {
  content: "";
}

.glyphicon-star:before {
  content: "";
}

.glyphicon-star-empty:before {
  content: "";
}

.glyphicon-user:before {
  content: "";
}

.glyphicon-film:before {
  content: "";
}

.glyphicon-th-large:before {
  content: "";
}

.glyphicon-th:before {
  content: "";
}

.glyphicon-th-list:before {
  content: "";
}

.glyphicon-ok:before {
  content: "";
}

.glyphicon-remove:before {
  content: "";
}

.glyphicon-zoom-in:before {
  content: "";
}

.glyphicon-zoom-out:before {
  content: "";
}

.glyphicon-off:before {
  content: "";
}

.glyphicon-signal:before {
  content: "";
}

.glyphicon-cog:before {
  content: "";
}

.glyphicon-trash:before {
  content: "";
}

.glyphicon-home:before {
  content: "";
}

.glyphicon-file:before {
  content: "";
}

.glyphicon-time:before {
  content: "";
}

.glyphicon-road:before {
  content: "";
}

.glyphicon-download-alt:before {
  content: "";
}

.glyphicon-download:before {
  content: "";
}

.glyphicon-upload:before {
  content: "";
}

.glyphicon-inbox:before {
  content: "";
}

.glyphicon-play-circle:before {
  content: "";
}

.glyphicon-repeat:before {
  content: "";
}

.glyphicon-refresh:before {
  content: "";
}

.glyphicon-list-alt:before {
  content: "";
}

.glyphicon-lock:before {
  content: "";
}

.glyphicon-flag:before {
  content: "";
}

.glyphicon-headphones:before {
  content: "";
}

.glyphicon-volume-off:before {
  content: "";
}

.glyphicon-volume-down:before {
  content: "";
}

.glyphicon-volume-up:before {
  content: "";
}

.glyphicon-qrcode:before {
  content: "";
}

.glyphicon-barcode:before {
  content: "";
}

.glyphicon-tag:before {
  content: "";
}

.glyphicon-tags:before {
  content: "";
}

.glyphicon-book:before {
  content: "";
}

.glyphicon-bookmark:before {
  content: "";
}

.glyphicon-print:before {
  content: "";
}

.glyphicon-camera:before {
  content: "";
}

.glyphicon-font:before {
  content: "";
}

.glyphicon-bold:before {
  content: "";
}

.glyphicon-italic:before {
  content: "";
}

.glyphicon-text-height:before {
  content: "";
}

.glyphicon-text-width:before {
  content: "";
}

.glyphicon-align-left:before {
  content: "";
}

.glyphicon-align-center:before {
  content: "";
}

.glyphicon-align-right:before {
  content: "";
}

.glyphicon-align-justify:before {
  content: "";
}

.glyphicon-list:before {
  content: "";
}

.glyphicon-indent-left:before {
  content: "";
}

.glyphicon-indent-right:before {
  content: "";
}

.glyphicon-facetime-video:before {
  content: "";
}

.glyphicon-picture:before {
  content: "";
}

.glyphicon-map-marker:before {
  content: "";
}

.glyphicon-adjust:before {
  content: "";
}

.glyphicon-tint:before {
  content: "";
}

.glyphicon-edit:before {
  content: "";
}

.glyphicon-share:before {
  content: "";
}

.glyphicon-check:before {
  content: "";
}

.glyphicon-move:before {
  content: "";
}

.glyphicon-step-backward:before {
  content: "";
}

.glyphicon-fast-backward:before {
  content: "";
}

.glyphicon-backward:before {
  content: "";
}

.glyphicon-play:before {
  content: "";
}

.glyphicon-pause:before {
  content: "";
}

.glyphicon-stop:before {
  content: "";
}

.glyphicon-forward:before {
  content: "";
}

.glyphicon-fast-forward:before {
  content: "";
}

.glyphicon-step-forward:before {
  content: "";
}

.glyphicon-eject:before {
  content: "";
}

.glyphicon-chevron-left:before {
  content: "";
}

.glyphicon-chevron-right:before {
  content: "";
}

.glyphicon-plus-sign:before {
  content: "";
}

.glyphicon-minus-sign:before {
  content: "";
}

.glyphicon-remove-sign:before {
  content: "";
}

.glyphicon-ok-sign:before {
  content: "";
}

.glyphicon-question-sign:before {
  content: "";
}

.glyphicon-info-sign:before {
  content: "";
}

.glyphicon-screenshot:before {
  content: "";
}

.glyphicon-remove-circle:before {
  content: "";
}

.glyphicon-ok-circle:before {
  content: "";
}

.glyphicon-ban-circle:before {
  content: "";
}

.glyphicon-arrow-left:before {
  content: "";
}

.glyphicon-arrow-right:before {
  content: "";
}

.glyphicon-arrow-up:before {
  content: "";
}

.glyphicon-arrow-down:before {
  content: "";
}

.glyphicon-share-alt:before {
  content: "";
}

.glyphicon-resize-full:before {
  content: "";
}

.glyphicon-resize-small:before {
  content: "";
}

.glyphicon-exclamation-sign:before {
  content: "";
}

.glyphicon-gift:before {
  content: "";
}

.glyphicon-leaf:before {
  content: "";
}

.glyphicon-fire:before {
  content: "";
}

.glyphicon-eye-open:before {
  content: "";
}

.glyphicon-eye-close:before {
  content: "";
}

.glyphicon-warning-sign:before {
  content: "";
}

.glyphicon-plane:before {
  content: "";
}

.glyphicon-calendar:before {
  content: "";
}

.glyphicon-random:before {
  content: "";
}

.glyphicon-comment:before {
  content: "";
}

.glyphicon-magnet:before {
  content: "";
}

.glyphicon-chevron-up:before {
  content: "";
}

.glyphicon-chevron-down:before {
  content: "";
}

.glyphicon-retweet:before {
  content: "";
}

.glyphicon-shopping-cart:before {
  content: "";
}

.glyphicon-folder-close:before {
  content: "";
}

.glyphicon-folder-open:before {
  content: "";
}

.glyphicon-resize-vertical:before {
  content: "";
}

.glyphicon-resize-horizontal:before {
  content: "";
}

.glyphicon-hdd:before {
  content: "";
}

.glyphicon-bullhorn:before {
  content: "";
}

.glyphicon-bell:before {
  content: "";
}

.glyphicon-certificate:before {
  content: "";
}

.glyphicon-thumbs-up:before {
  content: "";
}

.glyphicon-thumbs-down:before {
  content: "";
}

.glyphicon-hand-right:before {
  content: "";
}

.glyphicon-hand-left:before {
  content: "";
}

.glyphicon-hand-up:before {
  content: "";
}

.glyphicon-hand-down:before {
  content: "";
}

.glyphicon-circle-arrow-right:before {
  content: "";
}

.glyphicon-circle-arrow-left:before {
  content: "";
}

.glyphicon-circle-arrow-up:before {
  content: "";
}

.glyphicon-circle-arrow-down:before {
  content: "";
}

.glyphicon-globe:before {
  content: "";
}

.glyphicon-wrench:before {
  content: "";
}

.glyphicon-tasks:before {
  content: "";
}

.glyphicon-filter:before {
  content: "";
}

.glyphicon-briefcase:before {
  content: "";
}

.glyphicon-fullscreen:before {
  content: "";
}

.glyphicon-dashboard:before {
  content: "";
}

.glyphicon-paperclip:before {
  content: "";
}

.glyphicon-heart-empty:before {
  content: "";
}

.glyphicon-link:before {
  content: "";
}

.glyphicon-phone:before {
  content: "";
}

.glyphicon-pushpin:before {
  content: "";
}

.glyphicon-usd:before {
  content: "";
}

.glyphicon-gbp:before {
  content: "";
}

.glyphicon-sort:before {
  content: "";
}

.glyphicon-sort-by-alphabet:before {
  content: "";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "";
}

.glyphicon-sort-by-order:before {
  content: "";
}

.glyphicon-sort-by-order-alt:before {
  content: "";
}

.glyphicon-sort-by-attributes:before {
  content: "";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "";
}

.glyphicon-unchecked:before {
  content: "";
}

.glyphicon-expand:before {
  content: "";
}

.glyphicon-collapse-down:before {
  content: "";
}

.glyphicon-collapse-up:before {
  content: "";
}

.glyphicon-log-in:before {
  content: "";
}

.glyphicon-flash:before {
  content: "";
}

.glyphicon-log-out:before {
  content: "";
}

.glyphicon-new-window:before {
  content: "";
}

.glyphicon-record:before {
  content: "";
}

.glyphicon-save:before {
  content: "";
}

.glyphicon-open:before {
  content: "";
}

.glyphicon-saved:before {
  content: "";
}

.glyphicon-import:before {
  content: "";
}

.glyphicon-export:before {
  content: "";
}

.glyphicon-send:before {
  content: "";
}

.glyphicon-floppy-disk:before {
  content: "";
}

.glyphicon-floppy-saved:before {
  content: "";
}

.glyphicon-floppy-remove:before {
  content: "";
}

.glyphicon-floppy-save:before {
  content: "";
}

.glyphicon-floppy-open:before {
  content: "";
}

.glyphicon-credit-card:before {
  content: "";
}

.glyphicon-transfer:before {
  content: "";
}

.glyphicon-cutlery:before {
  content: "";
}

.glyphicon-header:before {
  content: "";
}

.glyphicon-compressed:before {
  content: "";
}

.glyphicon-earphone:before {
  content: "";
}

.glyphicon-phone-alt:before {
  content: "";
}

.glyphicon-tower:before {
  content: "";
}

.glyphicon-stats:before {
  content: "";
}

.glyphicon-sd-video:before {
  content: "";
}

.glyphicon-hd-video:before {
  content: "";
}

.glyphicon-subtitles:before {
  content: "";
}

.glyphicon-sound-stereo:before {
  content: "";
}

.glyphicon-sound-dolby:before {
  content: "";
}

.glyphicon-sound-5-1:before {
  content: "";
}

.glyphicon-sound-6-1:before {
  content: "";
}

.glyphicon-sound-7-1:before {
  content: "";
}

.glyphicon-copyright-mark:before {
  content: "";
}

.glyphicon-registration-mark:before {
  content: "";
}

.glyphicon-cloud-download:before {
  content: "";
}

.glyphicon-cloud-upload:before {
  content: "";
}

.glyphicon-tree-conifer:before {
  content: "";
}

.glyphicon-tree-deciduous:before {
  content: "";
}

.glyphicon-cd:before {
  content: "";
}

.glyphicon-save-file:before {
  content: "";
}

.glyphicon-open-file:before {
  content: "";
}

.glyphicon-level-up:before {
  content: "";
}

.glyphicon-copy:before {
  content: "";
}

.glyphicon-paste:before {
  content: "";
}

.glyphicon-alert:before {
  content: "";
}

.glyphicon-equalizer:before {
  content: "";
}

.glyphicon-king:before {
  content: "";
}

.glyphicon-queen:before {
  content: "";
}

.glyphicon-pawn:before {
  content: "";
}

.glyphicon-bishop:before {
  content: "";
}

.glyphicon-knight:before {
  content: "";
}

.glyphicon-baby-formula:before {
  content: "";
}

.glyphicon-tent:before {
  content: "⛺";
}

.glyphicon-blackboard:before {
  content: "";
}

.glyphicon-bed:before {
  content: "";
}

.glyphicon-apple:before {
  content: "";
}

.glyphicon-erase:before {
  content: "";
}

.glyphicon-hourglass:before {
  content: "⌛";
}

.glyphicon-lamp:before {
  content: "";
}

.glyphicon-duplicate:before {
  content: "";
}

.glyphicon-piggy-bank:before {
  content: "";
}

.glyphicon-scissors:before {
  content: "";
}

.glyphicon-bitcoin:before {
  content: "";
}

.glyphicon-btc:before {
  content: "";
}

.glyphicon-xbt:before {
  content: "";
}

.glyphicon-yen:before {
  content: "¥";
}

.glyphicon-jpy:before {
  content: "¥";
}

.glyphicon-ruble:before {
  content: "₽";
}

.glyphicon-rub:before {
  content: "₽";
}

.glyphicon-scale:before {
  content: "";
}

.glyphicon-ice-lolly:before {
  content: "";
}

.glyphicon-ice-lolly-tasted:before {
  content: "";
}

.glyphicon-education:before {
  content: "";
}

.glyphicon-option-horizontal:before {
  content: "";
}

.glyphicon-option-vertical:before {
  content: "";
}

.glyphicon-menu-hamburger:before {
  content: "";
}

.glyphicon-modal-window:before {
  content: "";
}

.glyphicon-oil:before {
  content: "";
}

.glyphicon-grain:before {
  content: "";
}

.glyphicon-sunglasses:before {
  content: "";
}

.glyphicon-text-size:before {
  content: "";
}

.glyphicon-text-color:before {
  content: "";
}

.glyphicon-text-background:before {
  content: "";
}

.glyphicon-object-align-top:before {
  content: "";
}

.glyphicon-object-align-bottom:before {
  content: "";
}

.glyphicon-object-align-horizontal:before {
  content: "";
}

.glyphicon-object-align-left:before {
  content: "";
}

.glyphicon-object-align-vertical:before {
  content: "";
}

.glyphicon-object-align-right:before {
  content: "";
}

.glyphicon-triangle-right:before {
  content: "";
}

.glyphicon-triangle-left:before {
  content: "";
}

.glyphicon-triangle-bottom:before {
  content: "";
}

.glyphicon-triangle-top:before {
  content: "";
}

.glyphicon-console:before {
  content: "";
}

.glyphicon-superscript:before {
  content: "";
}

.glyphicon-subscript:before {
  content: "";
}

.glyphicon-menu-left:before {
  content: "";
}

.glyphicon-menu-right:before {
  content: "";
}

.glyphicon-menu-down:before {
  content: "";
}

.glyphicon-menu-up:before {
  content: "";
}

/*! Flickity v2.0.8
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button:hover {
  background: white;
}

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
  opacity: 0.6;
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  color: #00aeef;
  font-family: "Gotham A", "Gotham B", arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body > .main > section {
  border-bottom: 1px solid #3fa2f7;
}

a {
  color: #00aeef;
  text-decoration: none;
  font-weight: 500;
}
a:hover {
  color: #3fa2f7;
}
a:hover img {
  opacity: 0.8;
}

a.arrow {
  display: inline-block;
  padding-right: 20px;
}
a.arrow::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  transform: rotate(-45deg);
  border-bottom: 1px solid #297fca;
  border-right: 1px solid #297fca;
}

a.arrow-top::after {
  margin-top: 0;
  transform: rotate(-135deg);
}

a.rounded-arrow {
  padding-right: 56px;
  display: inline-block;
}

.image {
  background: #e4f1fd;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
  width: 100%;
}

.image.userpic-xl {
  background-image: url("./img/pics/user-157.svg");
  background-size: 157px 152px;
}

.image.userpic-lg {
  background-image: url("./img/pics/user-112.svg");
  background-size: 112px 109px;
}

.image.userpic-md {
  background-image: url("./img/pics/user-112.svg");
  background-size: 87px 85px;
}

.image.userpic-sm {
  background-image: url("./img/pics/user-112.svg");
  background-size: 61px 60px;
}

.image.userpic-xs {
  background-image: url("./img/pics/user-112.svg");
  background-size: 36px 36px;
}

.image.pic-xl {
  background-image: url("./img/pics/pic-202.svg");
  background-size: 202px 140px;
}

.image.pic-lg {
  background-image: url("./img/pics/pic-140.svg");
  background-size: 140px 98px;
}

.image.pic-md {
  background-image: url("./img/pics/pic-100.svg");
  background-size: 100px 69px;
}

.image.pic-sm {
  background-image: url("./img/pics/pic-70.svg");
  background-size: 70px 48px;
}

.video {
  position: relative;
  cursor: pointer;
}
.video::after {
  content: "";
  position: absolute;
  transition: 0.3 ease all;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 57px;
  height: 90px;
  background-image: url("./img/pics/video.svg");
  background-size: 57px 90px;
}
.video:hover::after {
  opacity: 0.8;
}

.video-sm {
  position: relative;
  cursor: pointer;
}
.video-sm::after {
  content: "";
  position: absolute;
  transition: 0.3 ease all;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 42px;
  height: 61px;
  background-image: url("./img/pics/video-sm.svg");
  background-size: 42px 61px;
}
.video-sm:hover::after {
  opacity: 0.8;
}

.video-circle {
  position: relative;
  cursor: pointer;
}
.video-circle::after {
  content: "";
  position: absolute;
  transition: 0.3 ease all;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 150px;
  height: 150px;
  background-image: url("./img/pics/video-circle.svg");
  background-size: 150px 150px;
}
.video-circle:hover::after {
  opacity: 0.8;
}

.card {
  border: 2px solid #e4f1fd;
  background: #fff;
  border-radius: 4px;
  min-height: 100%;
}

.panel {
  border-radius: 4px;
  background: #e4f1fd;
}

.ratio-1-1 {
  position: relative;
  min-height: calc(100vw - 30px);
}
.ratio-1-1 > div {
  min-height: calc(100vw - 30px);
}

.ratio-2-1 {
  position: relative;
  min-height: calc(100vw - 30px);
}
.ratio-2-1 > div {
  min-height: calc(100vw - 30px);
}

.ratio-4-3 {
  position: relative;
  min-height: calc(100vw - 30px);
}
.ratio-4-3 > div {
  min-height: calc(100vw - 30px);
}
.ratio-4-3::after {
  padding-bottom: 75%;
}

.ratio-sm-1-1 {
  position: relative;
  min-height: calc(100vw - 30px);
}
.ratio-sm-1-1 > div {
  min-height: calc(100vw - 30px);
}

.slider {
  display: block;
  margin-left: -15px;
  margin-right: -15px;
}

.slider.no-gutters {
  margin-left: 0;
  margin-right: 0;
}

.slider-item {
  float: left;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.with-overlay__content {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s ease all;
  background: #e4f1fd;
  margin: 0;
  border-radius: 4px;
}

.with-overlay:hover .with-overlay__content {
  opacity: 1;
}

.socials {
  font-size: 0;
  margin: 0 -12px;
}
.socials img {
  margin: 0 12px;
  vertical-align: middle;
}

.socials-lg {
  font-size: 0;
  margin: 0 -12px;
}
.socials-lg img {
  margin: 0 12px;
  vertical-align: middle;
  margin: 0 12px;
}

.flickity-prev-next-button {
  width: 17px;
  height: 32px;
  background: none;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  display: none;
}
.flickity-prev-next-button:hover {
  width: 17px;
  height: 32px;
  background: none;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  display: none;
}
.flickity-prev-next-button:hover svg {
  display: none;
}
.flickity-prev-next-button svg {
  display: none;
}
.flickity-prev-next-button:hover.previous {
  background-image: url("./img/icons/arrow-left.svg");
  left: -80px;
}
.flickity-prev-next-button:hover.next {
  background-image: url("./img/icons/arrow-right.svg");
  right: -80px;
}

.flickity-prev-next-button.previous {
  background-image: url("./img/icons/arrow-left.svg");
  left: -80px;
}

.flickity-prev-next-button.next {
  background-image: url("./img/icons/arrow-right.svg");
  right: -80px;
}

.slider-slim .flickity-prev-next-button.previous {
  left: -50px;
}
.slider-slim .flickity-prev-next-button.next {
  right: -50px;
}

.slider-rounded-buttons .flickity-prev-next-button {
  border: 2px solid #3fa2f7;
  margin-top: -18px;
  width: 35px;
  height: 35px;
  background-size: 6px 11px;
}
.slider-rounded-buttons .flickity-prev-next-button.previous {
  background-image: url("./img/icons/arrow-xs-left.svg");
}
.slider-rounded-buttons .flickity-prev-next-button.next {
  background-image: url("./img/icons/arrow-xs-right.svg");
}

.flickity-page-dots {
  line-height: 6px;
  z-index: 1;
  bottom: -33px;
  padding: 0 7px;
  text-align: inherit;
}
.flickity-page-dots .dot {
  width: 6px;
  height: 6px;
  transition: all 0.4s ease;
  background: #e4f1fd;
  opacity: 1;
  display: inline-block;
}
.flickity-page-dots .dot::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  margin: -12px;
}
.flickity-page-dots .dot.is-selected {
  transform: scale(1.6, 1.6);
  background: #3fa2f7;
}

.slider-stick-dots .flickity-page-dots {
  bottom: -33px;
}

.slider-inner-dots .dot {
  background: #9fd0fb;
}
.slider-inner-dots .flickity-page-dots {
  bottom: 33px;
}

.icon {
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  vertical-align: middle;
}
.icon + span {
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px;
}

.icon-resize {
  background-image: url("./img/icons/resize.svg");
  width: 12px;
  height: 12px;
  position: absolute;
  right: 8px;
  bottom: 8px;
}

.icon-plane {
  width: 16px;
  height: 17px;
  position: absolute;
  left: 20px;
  top: 22px;
  background-image: url("./img/icons/paperplane.svg");
}

.icon-plane-light {
  width: 16px;
  height: 17px;
  position: absolute;
  left: 20px;
  top: 22px;
  background-image: url("./img/icons/paperplane-light.svg");
}

.icon-facebook {
  background-image: url("./img/icons/facebook-white.svg");
  width: 10px;
  height: 18px;
  display: inline-block;
  top: -1px;
}

.icon-twitter {
  background-image: url("./img/icons/twitter-white.svg");
  width: 17px;
  height: 14px;
  display: inline-block;
  top: -2px;
}

.icon-pin {
  background-image: url("./img/icons/pin.svg");
  width: 11px;
  height: 18px;
  display: inline-block;
  top: -2px;
}

.icon-pin-stroke {
  background-image: url("./img/icons/pin-stroke.svg");
  width: 11px;
  height: 17px;
  display: inline-block;
  top: -2px;
}

.icon-star {
  background-image: url("./img/icons/star.svg");
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
  top: -2px;
}

.icon-circle-arrow {
  width: 36px;
  height: 36px;
  line-height: 32px;
  border: 2px solid #3fa2f7;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -18px;
}
.icon-circle-arrow::after {
  content: "";
  background: url("./img/icons/arrow-xs-right.svg") center no-repeat;
  width: 6px;
  height: 11px;
  display: inline-block;
  margin-left: 2px;
}

.icon-arrow-right {
  display: inline-block;
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  right: 20px;
  top: 16px;
  width: 11px;
  height: 11px;
  transform: rotate(-45deg);
  border-bottom: 1px solid #297fca;
  border-right: 1px solid #297fca;
}

.glyphicon + span {
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px;
}

* {
  position: relative;
  box-sizing: border-box;
}

p {
  opacity: 1;
  margin: 0;
}

html {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  color: #00aeef;
  font-family: "Gotham A", "Gotham B", arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 300;
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
}
h1 h2 h3 h4 h5 h6 {
  margin-top: 0;
  margin-bottom: 0;
}

hr {
  border: none;
  width: 100%;
  height: 1px;
  background: #3fa2f7;
  margin: 0;
}

img {
  display: inline-block;
  vertical-align: middle;
}

.bg-light {
  background-color: #ebebeb;
}

.bg-accent {
  background-color: #000;
}

.bg-white {
  background-color: #fff;
}

.text-accent {
  color: #00aeef;
}

.text-light {
  color: #e4f1fd;
}

.text-white {
  color: #fff;
}

.text-capitalize {
  text-transform: capitalize;
}

.icon-20 {
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
  top: -2px;
}
.icon-20 img {
  display: inline-block;
  height: 100%;
}
.icon-20 + span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.b-300 {
  font-weight: 300;
}

.b-400 {
  font-weight: 400;
}

.b-500 {
  font-weight: 500;
}

.m-auto {
  margin: 0 auto;
}

.mt--60 {
  margin-top: -60px;
}

.mb--60 {
  margin-bottom: -60px;
}

.ml--60 {
  margin-left: -60px;
}

.mr--60 {
  margin-right: -60px;
}

.pb--60 {
  padding-bottom: -60px;
}

.pt--60 {
  padding-top: -60px;
}

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

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

.mt--50 {
  margin-top: -50px;
}

.mb--50 {
  margin-bottom: -50px;
}

.ml--50 {
  margin-left: -50px;
}

.mr--50 {
  margin-right: -50px;
}

.pb--50 {
  padding-bottom: -50px;
}

.pt--50 {
  padding-top: -50px;
}

.pl--50 {
  padding-left: -50px;
}

.pr--50 {
  padding-right: -50px;
}

.mt--40 {
  margin-top: -40px;
}

.mb--40 {
  margin-bottom: -40px;
}

.ml--40 {
  margin-left: -40px;
}

.mr--40 {
  margin-right: -40px;
}

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

.pt--40 {
  padding-top: -40px;
}

.pl--40 {
  padding-left: -40px;
}

.pr--40 {
  padding-right: -40px;
}

.mt--30 {
  margin-top: -30px;
}

.mb--30 {
  margin-bottom: -30px;
}

.ml--30 {
  margin-left: -30px;
}

.mr--30 {
  margin-right: -30px;
}

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

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

.pl--30 {
  padding-left: -30px;
}

.pr--30 {
  padding-right: -30px;
}

.mt--20 {
  margin-top: -20px;
}

.mb--20 {
  margin-bottom: -20px;
}

.ml--20 {
  margin-left: -20px;
}

.mr--20 {
  margin-right: -20px;
}

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

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

.pl--20 {
  padding-left: -20px;
}

.pr--20 {
  padding-right: -20px;
}

.mt--15 {
  margin-top: -15px;
}

.mb--15 {
  margin-bottom: -15px;
}

.ml--15 {
  margin-left: -15px;
}

.mr--15 {
  margin-right: -15px;
}

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

.pt--15 {
  padding-top: -15px;
}

.pl--15 {
  padding-left: -15px;
}

.pr--15 {
  padding-right: -15px;
}

.mt--10 {
  margin-top: -10px;
}

.mb--10 {
  margin-bottom: -10px;
}

.ml--10 {
  margin-left: -10px;
}

.mr--10 {
  margin-right: -10px;
}

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

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

.pl--10 {
  padding-left: -10px;
}

.pr--10 {
  padding-right: -10px;
}

.mt--5 {
  margin-top: -5px;
}

.mb--5 {
  margin-bottom: -5px;
}

.ml--5 {
  margin-left: -5px;
}

.mr--5 {
  margin-right: -5px;
}

.pb--5 {
  padding-bottom: -5px;
}

.pt--5 {
  padding-top: -5px;
}

.pl--5 {
  padding-left: -5px;
}

.pr--5 {
  padding-right: -5px;
}

.p-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.ph-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.p-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.ph-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

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

.ph-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

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

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

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

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

.ph-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

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

.pt-15 {
  padding-top: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.p-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.ph-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

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

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

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.p-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.ph-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.ml-25 {
  margin-left: 25px;
}

.mr-25 {
  margin-right: 25px;
}

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

.pt-25 {
  padding-top: 25px;
}

.pl-25 {
  padding-left: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.p-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.ph-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

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

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

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.p-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.ph-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

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

.pt-40 {
  padding-top: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.p-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.ph-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.mt-45 {
  margin-top: 45px;
}

.mb-45 {
  margin-bottom: 45px;
}

.ml-45 {
  margin-left: 45px;
}

.mr-45 {
  margin-right: 45px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pt-45 {
  padding-top: 45px;
}

.pl-45 {
  padding-left: 45px;
}

.pr-45 {
  padding-right: 45px;
}

.p-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ph-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.ml-50 {
  margin-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.p-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ph-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pt-60 {
  padding-top: 60px;
}

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

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

.p-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.ph-70 {
  padding-left: 70px;
  padding-right: 70px;
}

.mt-70 {
  margin-top: 70px;
}

.mb-70 {
  margin-bottom: 70px;
}

.ml-70 {
  margin-left: 70px;
}

.mr-70 {
  margin-right: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pl-70 {
  padding-left: 70px;
}

.pr-70 {
  padding-right: 70px;
}

.p-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ph-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.p-85 {
  padding-top: 85px;
  padding-bottom: 85px;
}

.ph-85 {
  padding-left: 85px;
  padding-right: 85px;
}

.mt-85 {
  margin-top: 85px;
}

.mb-85 {
  margin-bottom: 85px;
}

.ml-85 {
  margin-left: 85px;
}

.mr-85 {
  margin-right: 85px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pt-85 {
  padding-top: 85px;
}

.pl-85 {
  padding-left: 85px;
}

.pr-85 {
  padding-right: 85px;
}

.p-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.ph-90 {
  padding-left: 90px;
  padding-right: 90px;
}

.mt-90 {
  margin-top: 90px;
}

.mb-90 {
  margin-bottom: 90px;
}

.ml-90 {
  margin-left: 90px;
}

.mr-90 {
  margin-right: 90px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pt-90 {
  padding-top: 90px;
}

.pl-90 {
  padding-left: 90px;
}

.pr-90 {
  padding-right: 90px;
}

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

.ph-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-100 {
  margin-right: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.p-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.ph-110 {
  padding-left: 110px;
  padding-right: 110px;
}

.mt-110 {
  margin-top: 110px;
}

.mb-110 {
  margin-bottom: 110px;
}

.ml-110 {
  margin-left: 110px;
}

.mr-110 {
  margin-right: 110px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pt-110 {
  padding-top: 110px;
}

.pl-110 {
  padding-left: 110px;
}

.pr-110 {
  padding-right: 110px;
}

.p-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.ph-120 {
  padding-left: 120px;
  padding-right: 120px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-120 {
  margin-bottom: 120px;
}

.ml-120 {
  margin-left: 120px;
}

.mr-120 {
  margin-right: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-120 {
  padding-top: 120px;
}

.pl-120 {
  padding-left: 120px;
}

.pr-120 {
  padding-right: 120px;
}

.p-130 {
  padding-top: 130px;
  padding-bottom: 130px;
}

.ph-130 {
  padding-left: 130px;
  padding-right: 130px;
}

.mt-130 {
  margin-top: 130px;
}

.mb-130 {
  margin-bottom: 130px;
}

.ml-130 {
  margin-left: 130px;
}

.mr-130 {
  margin-right: 130px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pt-130 {
  padding-top: 130px;
}

.pl-130 {
  padding-left: 130px;
}

.pr-130 {
  padding-right: 130px;
}

.p-140 {
  padding-top: 140px;
  padding-bottom: 140px;
}

.ph-140 {
  padding-left: 140px;
  padding-right: 140px;
}

.mt-140 {
  margin-top: 140px;
}

.mb-140 {
  margin-bottom: 140px;
}

.ml-140 {
  margin-left: 140px;
}

.mr-140 {
  margin-right: 140px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pt-140 {
  padding-top: 140px;
}

.pl-140 {
  padding-left: 140px;
}

.pr-140 {
  padding-right: 140px;
}

.p-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.ph-150 {
  padding-left: 150px;
  padding-right: 150px;
}

.mt-150 {
  margin-top: 150px;
}

.mb-150 {
  margin-bottom: 150px;
}

.ml-150 {
  margin-left: 150px;
}

.mr-150 {
  margin-right: 150px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pt-150 {
  padding-top: 150px;
}

.pl-150 {
  padding-left: 150px;
}

.pr-150 {
  padding-right: 150px;
}

.p-160 {
  padding-top: 160px;
  padding-bottom: 160px;
}

.ph-160 {
  padding-left: 160px;
  padding-right: 160px;
}

.mt-160 {
  margin-top: 160px;
}

.mb-160 {
  margin-bottom: 160px;
}

.ml-160 {
  margin-left: 160px;
}

.mr-160 {
  margin-right: 160px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pt-160 {
  padding-top: 160px;
}

.pl-160 {
  padding-left: 160px;
}

.pr-160 {
  padding-right: 160px;
}

.p-170 {
  padding-top: 170px;
  padding-bottom: 170px;
}

.ph-170 {
  padding-left: 170px;
  padding-right: 170px;
}

.mt-170 {
  margin-top: 170px;
}

.mb-170 {
  margin-bottom: 170px;
}

.ml-170 {
  margin-left: 170px;
}

.mr-170 {
  margin-right: 170px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pt-170 {
  padding-top: 170px;
}

.pl-170 {
  padding-left: 170px;
}

.pr-170 {
  padding-right: 170px;
}

.p-180 {
  padding-top: 180px;
  padding-bottom: 180px;
}

.ph-180 {
  padding-left: 180px;
  padding-right: 180px;
}

.mt-180 {
  margin-top: 180px;
}

.mb-180 {
  margin-bottom: 180px;
}

.ml-180 {
  margin-left: 180px;
}

.mr-180 {
  margin-right: 180px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pt-180 {
  padding-top: 180px;
}

.pl-180 {
  padding-left: 180px;
}

.pr-180 {
  padding-right: 180px;
}

.p-190 {
  padding-top: 190px;
  padding-bottom: 190px;
}

.ph-190 {
  padding-left: 190px;
  padding-right: 190px;
}

.mt-190 {
  margin-top: 190px;
}

.mb-190 {
  margin-bottom: 190px;
}

.ml-190 {
  margin-left: 190px;
}

.mr-190 {
  margin-right: 190px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pt-190 {
  padding-top: 190px;
}

.pl-190 {
  padding-left: 190px;
}

.pr-190 {
  padding-right: 190px;
}

.p-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.ph-200 {
  padding-left: 200px;
  padding-right: 200px;
}

.mt-200 {
  margin-top: 200px;
}

.mb-200 {
  margin-bottom: 200px;
}

.ml-200 {
  margin-left: 200px;
}

.mr-200 {
  margin-right: 200px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pt-200 {
  padding-top: 200px;
}

.pl-200 {
  padding-left: 200px;
}

.pr-200 {
  padding-right: 200px;
}

.p-220 {
  padding-top: 220px;
  padding-bottom: 220px;
}

.ph-220 {
  padding-left: 220px;
  padding-right: 220px;
}

.mt-220 {
  margin-top: 220px;
}

.mb-220 {
  margin-bottom: 220px;
}

.ml-220 {
  margin-left: 220px;
}

.mr-220 {
  margin-right: 220px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pt-220 {
  padding-top: 220px;
}

.pl-220 {
  padding-left: 220px;
}

.pr-220 {
  padding-right: 220px;
}

.p-240 {
  padding-top: 240px;
  padding-bottom: 240px;
}

.ph-240 {
  padding-left: 240px;
  padding-right: 240px;
}

.mt-240 {
  margin-top: 240px;
}

.mb-240 {
  margin-bottom: 240px;
}

.ml-240 {
  margin-left: 240px;
}

.mr-240 {
  margin-right: 240px;
}

.pb-240 {
  padding-bottom: 240px;
}

.pt-240 {
  padding-top: 240px;
}

.pl-240 {
  padding-left: 240px;
}

.pr-240 {
  padding-right: 240px;
}

.p-260 {
  padding-top: 260px;
  padding-bottom: 260px;
}

.ph-260 {
  padding-left: 260px;
  padding-right: 260px;
}

.mt-260 {
  margin-top: 260px;
}

.mb-260 {
  margin-bottom: 260px;
}

.ml-260 {
  margin-left: 260px;
}

.mr-260 {
  margin-right: 260px;
}

.pb-260 {
  padding-bottom: 260px;
}

.pt-260 {
  padding-top: 260px;
}

.pl-260 {
  padding-left: 260px;
}

.pr-260 {
  padding-right: 260px;
}

.h-40 {
  height: 40px;
}

.w-40 {
  width: 40px;
}

.h-42 {
  height: 42px;
}

.w-42 {
  width: 42px;
}

.h-50 {
  height: 50px;
}

.w-50 {
  width: 50px;
}

.h-70 {
  height: 70px;
}

.w-70 {
  width: 70px;
}

.h-80 {
  height: 80px;
}

.w-80 {
  width: 80px;
}

.h-90 {
  height: 90px;
}

.w-90 {
  width: 90px;
}

.h-100 {
  height: 100px;
}

.w-100 {
  width: 100px;
}

.h-240 {
  height: 240px;
}

.w-240 {
  width: 240px;
}

.h-260 {
  height: 260px;
}

.w-260 {
  width: 260px;
}

.h-300 {
  height: 300px;
}

.w-300 {
  width: 300px;
}

.h-310 {
  height: 310px;
}

.w-310 {
  width: 310px;
}

.h-340 {
  height: 340px;
}

.w-340 {
  width: 340px;
}

.h-360 {
  height: 360px;
}

.w-360 {
  width: 360px;
}

.h-400 {
  height: 400px;
}

.w-400 {
  width: 400px;
}

.h-450 {
  height: 450px;
}

.w-450 {
  width: 450px;
}

.h-540 {
  height: 540px;
}

.w-540 {
  width: 540px;
}

.h-555 {
  height: 555px;
}

.w-555 {
  width: 555px;
}

.h-600 {
  height: 600px;
}

.w-600 {
  width: 600px;
}

.h-700 {
  height: 700px;
}

.w-700 {
  width: 700px;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.h-50v {
  min-height: 100vw;
}

.bt {
  border-top: 1px solid #e4f1fd;
}

.br {
  border-right: 1px solid #e4f1fd;
}

.bb {
  border-bottom: 1px solid #e4f1fd;
}

.bb-light {
  border-bottom: 1px solid #9dd0fb;
}

h2 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
}

h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}

h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  opacity: 1;
  margin-top: 0;
  margin-bottom: 0;
}

h5 {
  font-size: 16px;
  line-height: 1.19em;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}

.headers.bg-iphone-left {
  background-position: 25% 154px;
}

.headers.bg-iphone-right {
  background-position: 75% 154px;
}

.headers .bg-browser {
  background-image: url("./img/browserframe.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
.headers .bg-browser::after {
  content: "";
  display: block;
  padding-top: 30%;
}
.headers .bg-ipad {
  background-image: url("./img/ipad.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
.headers .bg-ipad::after {
  content: "";
  display: block;
  padding-top: 35%;
}
.headers .striked-header span {
  background: #e4f1fd;
  padding: 0 25px;
}
.headers .striked-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 13px;
  border-bottom: 1px solid #9dd0fb;
}

.contents .divided-item:first-child {
  border-bottom: 1px solid #e4f1fd;
}

.contents.bg-iphone-left {
  background-repeat: no-repeat;
}

.contents.bg-iphone-right {
  background-repeat: no-repeat;
}

.contents.bg-devices {
  background-image: url("./img/bg/ipads.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contents.bg-macbook {
  background-repeat: no-repeat;
  background-position: center;
}

.sliders .bg-iphone {
  padding: 53px 0 62px;
  background: #fff url("./img/bg/iphone-330-noscreen.svg") no-repeat;
  background-position: center top;
  background-size: auto 462px;
}
.sliders .iphone-screen {
  height: 346px;
  width: 200px;
  margin: 0 auto;
  transition: 0.5s ease background, 0.5s ease border;
  border: 2px solid transparent;
}
.sliders .is-selected .iphone-screen {
  background-color: #fff;
  border: 1px solid #3fa2f7;
}
.sliders .slider-fluid .slider-item {
  max-width: calc(100% - 30px);
  opacity: 0.3;
  transition: 0.5s ease opacity;
}
.sliders .slider-fluid .slider-item.is-selected {
  opacity: 1;
}

.features.bg-iphone-left {
  background-repeat: no-repeat;
}

.features.bg-iphone-center {
  background-repeat: no-repeat;
}

.features.bg-iphone-right {
  background-repeat: no-repeat;
}

.features.bg-iphone-right-top {
  background-repeat: no-repeat;
}

.features.bg-macbook-left {
  background-repeat: no-repeat;
}

.features .bg-macbook-center {
  background-size: 121% auto;
  background-position: center top;
  background-image: url("./img/bg/macbook-full.svg");
}
.features .bg-macbook-center::after {
  content: "";
  display: block;
  padding-top: 40%;
}
.features .feature-tooltips {
  display: inline-block;
  position: relative;
}
.features .icon-feature {
  border: 2px solid #e4f1fd;
  position: absolute;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  transition: 0.3s ease border;
  cursor: pointer;
  margin: -16px 0 0 -16px;
  background: url("./img/icons/plus.svg") center no-repeat #fff;
}
.features .icon-feature:hover {
  border-color: #3fa2f7;
}
.features .icon-feature:hover + .feature-tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 3;
}
.features .feature-tooltip {
  width: 100%;
  top: 50%;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  margin-top: -16px;
}
.features .feature-tooltip-overlay {
  position: absolute;
  height: 300px;
  top: -134px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.5s ease opacity;
  pointer-events: none;
}
.features .feature-tooltip-overlay .inner {
  border: 2px solid #e4f1fd;
  width: 100%;
  border-radius: 4px;
  background: #fff;
  padding: 30px;
}
.features .percentage {
  width: 230px;
  height: 230px;
}
.features .percentage__circle {
  position: absolute;
}
.features .percentage__content {
  height: 230px;
}
.features .striked-vertical::before {
  content: "";
  position: absolute;
  border-left: 2px solid #e4f1fd;
  left: 31px;
  top: 15px;
  bottom: 0;
}
.features .feature-callout::before {
  width: 10px;
  height: 10px;
  background: #3fa2f7;
  border-radius: 5px;
  top: 22px;
}
.features .feature-callout::after {
  border-top: 2px solid #3fa2f7;
  top: 26px;
  right: 100%;
}
.features .feature-callout:nth-child(1)::after {
  left: -75%;
}
.features .feature-callout:nth-child(1)::before {
  left: -75%;
}
.features .feature-callout:nth-child(2)::after {
  left: -65%;
}
.features .feature-callout:nth-child(2)::before {
  left: -65%;
}
.features .feature-callout:nth-child(3)::after {
  left: -103%;
}
.features .feature-callout:nth-child(3)::before {
  left: -103%;
}
.features .plain-tabs::before {
  content: "";
  position: absolute;
  border-left: 4px solid #e4f1fd;
  left: 0;
  top: 0;
  bottom: 0;
}
.features .plain-tab {
  padding-left: 26px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.features .plain-tab::before {
  content: "";
  position: absolute;
  border-left: 4px solid #e4f1fd;
  left: 0;
  top: 0;
  bottom: 0;
}
.features .plain-tab.active::before {
  border-left: 4px solid #3fa2f7;
}
.features .feature-dot {
  width: 10px;
  height: 10px;
  background: #e4f1fd;
  border-radius: 5px;
  margin: 0 auto 20px;
}
.features .active .feature-dot {
  background: #3fa2f7;
}
.features .feature-tablet {
  max-width: 100%;
}

.ecommerces .colors span {
  border-radius: 50%;
  height: 24px;
  width: 24px;
  display: inline-block;
  margin: 0 7px;
}
.ecommerces .colors span.bg-accent-dark {
  background: #297fca;
}
.ecommerces .colors span.bg-accent {
  background: #3fa2f7;
}
.ecommerces .colors span.bg-white {
  background: #e4f1fd;
  background: #fff;
}
.ecommerces .additional-row {
  border-top: 1px solid #e4f1fd;
  border-bottom: 1px solid #e4f1fd;
  line-height: 40px;
  margin-bottom: -1px;
}
.ecommerces .rating-stars {
  margin-left: -2px;
  margin-right: -2px;
}
.ecommerces .rating-stars .glyphicon {
  margin: 0 2px;
}
.ecommerces .more {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  border: none;
  padding: 0;
  margin: 0;
  width: 33px;
  height: 30px;
  border-radius: 0 6px 0 0;
  background: #e4f1fd;
}
.ecommerces .more:focus {
  outline: none;
}
.ecommerces .more::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: -10px;
  width: 10px;
  height: 56px;
  background: #fff;
}
.ecommerces .more::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 13px;
  width: 7px;
  height: 7px;
  transform: rotate(-45deg);
  border-top: 2px solid #3fa2f7;
  border-right: 2px solid #3fa2f7;
}
.ecommerces .less {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  border: none;
  padding: 0;
  margin: 0;
  width: 33px;
  height: 30px;
  border-radius: 0 6px 0 0;
  background: #e4f1fd;
}
.ecommerces .less:focus {
  outline: none;
}
.ecommerces .less::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: -10px;
  width: 10px;
  height: 56px;
  background: #fff;
}
.ecommerces .less::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 13px;
  width: 7px;
  height: 7px;
  transform: rotate(-45deg);
  border-top: 2px solid #3fa2f7;
  border-right: 2px solid #3fa2f7;
}
.ecommerces .more.less {
  top: 30px;
  border-radius: 0 0 6px 0;
  border-top: 1px solid rgba(63, 162, 247, 0.25);
}
.ecommerces .more.less::before {
  content: none;
}
.ecommerces .more.less::after {
  top: 9px;
  border-top: none;
  border-right: none;
  border-bottom: 2px solid #3fa2f7;
  border-left: 2px solid #3fa2f7;
}
.ecommerces .less.less {
  top: 30px;
  border-radius: 0 0 6px 0;
  border-top: 1px solid rgba(63, 162, 247, 0.25);
}
.ecommerces .less.less::before {
  content: none;
}
.ecommerces .less.less::after {
  top: 9px;
  border-top: none;
  border-right: none;
  border-bottom: 2px solid #3fa2f7;
  border-left: 2px solid #3fa2f7;
}

.blogs .post-footer {
  border-top: 1px solid #e4f1fd;
  color: #3fa2f7;
}
.blogs .post-footer a {
  color: #3fa2f7;
}
.blogs .features {
  border-top: 1px solid #e4f1fd;
  border-bottom: 1px solid #e4f1fd;
}
.blogs .comments > div {
  border-bottom: 1px solid #e4f1fd;
}
.blogs .comments > div:last-child {
  border: none;
}

.prices .faded-items div {
  border-bottom: 1px solid #e4f1fd;
  line-height: 42px;
}
.prices .faded-items div:nth-child(1) {
  opacity: 1;
}
.prices .faded-items div:nth-child(2) {
  opacity: 0.9;
}
.prices .faded-items div:nth-child(3) {
  opacity: 0.8;
}
.prices .faded-items div:nth-child(4) {
  opacity: 0.7;
}
.prices .faded-items div:nth-child(5) {
  opacity: 0.6;
}
.prices .value-bar {
  display: inline-block;
  width: auto;
  height: 8px;
  background: #3fa2f7;
  border-radius: 4px;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 4;
}
.prices input[type=range] {
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  z-index: 2;
}
.prices input[type=range]:focus {
  outline: none;
}
.prices input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  position: relative;
  top: -6px;
  background: #3fa2f7;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.prices input[type=range]::-webkit-slider-thumb:focus {
  outline: none;
}
.prices input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e4f1fd;
}
.prices input[type=range]::-webkit-slider-runnable-track:focus {
  outline: none;
}
.prices input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.call-to-actions.bg-iphone {
  background: url("./img/iPhone.svg") center bottom -95px no-repeat;
  padding-bottom: 350px;
  background-size: 224px auto;
}

.teams .team-userpics {
  margin-left: -10px;
  margin-right: -10px;
}
.teams .team-userpics img {
  margin: 0 10px 10px;
}
.teams .slider-full-three .slider-item {
  max-width: 380px;
}
.teams .slider-full-three .slider-item.is-selected {
  opacity: 1;
}
.teams .slider-nav {
  background: #e4f1fd;
}
.teams .slider-nav .flickity-viewport {
  padding-top: 8px;
  top: -8px;
}
.teams .slider-nav .slider-item {
  line-height: 140px;
}
.teams .slider-nav .is-selected::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #e4f1fd transparent;
}

.forms.bg-macbook {
  background-repeat: no-repeat;
  background-position: center;
}

.forms.bg-devices {
  background-image: url("./img/bg/ipads.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.forms .checkbox {
  display: inline-block;
}
.forms .checkbox input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.forms .checkbox input:checked ~ .check-pointer {
  background: url("./img/icons/verification-mark.svg") center no-repeat;
  background-size: 80%;
}
.forms .checkbox .check-pointer {
  width: 25px;
  height: 25px;
  border-radius: 4px;
  border: solid 2px #e4f1fd;
  position: absolute;
}
.forms .checkbox .checkbox-label {
  opacity: 0.8;
  padding-left: 35px;
  text-align: left;
}
.forms .mail-link {
  font-size: 20px;
  border-bottom: 1px solid;
}

.testimonials .slider-fluid .slider-item {
  max-width: calc(100% - 30px);
  opacity: 0.3;
  transition: 0.5s ease opacity;
}
.testimonials .slider-fluid .slider-item .slider-skeleton {
  color: transparent;
  background: linear-gradient(to top, #3fa2f7, #3fa2f7) repeat-x;
  background-size: 1px 12px;
  background-position: center;
  transition: 0.5s ease all;
}
.testimonials .slider-fluid .slider-item.is-selected {
  opacity: 1;
}
.testimonials .slider-fluid .slider-item.is-selected .slider-skeleton {
  color: inherit;
  font-size: inherit;
  background-image: linear-gradient(to top, transparent, transparent);
}
.testimonials .slider-subnav .slider-item {
  opacity: 0.3;
}
.testimonials .slider-subnav .is-selected {
  opacity: 1;
}
.testimonials .slider-nav {
  background: #e4f1fd;
}
.testimonials .slider-nav .slider-item {
  opacity: 0.3;
  line-height: 140px;
}
.testimonials .slider-nav .is-selected {
  opacity: 1;
}
.testimonials .slider-nav .is-selected::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #e4f1fd transparent;
}
.testimonials .slider-nav .flickity-viewport {
  padding-top: 8px;
  top: -8px;
}
.testimonials .rating-stars {
  margin: 0 -2px;
}
.testimonials .rating-stars .glyphicon {
  margin: 0 2px;
}
.testimonials .rating-stars .disabled-star {
  color: #e4f1fd;
}

.contacts .bg-map-right {
  background: url("./img/maps/map-1.png") no-repeat;
  background-size: cover;
  min-height: calc(100vw - 30px);
  border-radius: 4px;
}
.contacts .bg-map-left {
  background-image: url("./img/maps/map-2.png");
  background-size: cover;
  border-radius: 4px;
  min-height: calc(100vw - 30px);
}
.contacts .bg-square-map {
  background-image: url("./img/maps/map-4.png");
  border-radius: 4px;
  background-size: cover;
}
.contacts .bg-full-map {
  background-image: url("./img/maps/map-3.png");
  background-size: cover;
}
.contacts .pin {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -34px 0 0 -10px;
  width: 21px;
  height: 34px;
}
.contacts .baloon {
  text-align: left;
  width: 300px;
  position: absolute;
  background: #fff;
  border-radius: 4px;
  padding: 30px;
  left: 50%;
  top: 50%;
  margin-left: -150px;
  margin-top: -85px;
}
.contacts .baloon::after {
  content: "";
  left: 50%;
  margin-left: -10px;
  top: 100%;
  border: 10px solid transparent;
  border-width: 10px 10px 0 10px;
  border-top-color: #fff;
  position: absolute;
}
.contacts .baloon.baloon-on-map {
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  margin: -190px auto 0 auto;
  top: 50%;
  opacity: 0;
  display: none;
}
.contacts .baloon.baloon-on-map::after {
  display: none;
}
.contacts .map-pin {
  position: absolute;
}
.contacts .map-pin:hover + .baloon.baloon-on-map {
  display: block;
  opacity: 1;
  z-index: 3;
}
.contacts .baloon-content img {
  float: left;
  margin-right: 15px;
}
.contacts .baloon-content-text {
  overflow: hidden;
}

.form-control {
  font-family: inherit;
  font-size: 16px;
  line-height: 20px;
  padding: 20px;
  font-weight: 400;
  min-height: 60px;
  color: #3fa2f7;
  border: none;
  box-shadow: none;
  border-radius: 4px;
  display: block;
  width: 100%;
  outline: none;
  resize: none;
}
.form-control::-webkit-input-placeholder {
  color: #5499d5;
}
.form-control::-moz-placeholder {
  color: #5499d5;
}
.form-control:-moz-placeholder {
  color: #5499d5;
}
.form-control:-ms-input-placeholder {
  color: #5499d5;
}

.form-control-light {
  background: #e4f1fd;
}

.form-control-white {
  background: #fff;
  border: 2px solid #e4f1fd;
  padding: 18px;
}

.form-control-small {
  height: 42px;
  min-height: 42px;
  padding: 11px 20px;
}

.form-control.icon-left {
  padding-left: 52px;
}

.form-control.icon-right {
  padding-right: 52px;
}

.btn {
  font-family: inherit;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.6em;
  padding: 14px 25px;
  font-weight: 500;
  border-radius: 0px;
  text-align: center;
  border: none;
  width: 100%;
}
@media all and (min-width: 62em) {
  .btn {
    width: auto;
  }
}
.btn.btn-1 {
  background: #00aeef;
  transition: 0.2s;
  color: #fff;
  border: 2px solid #00aeef;
}
.btn.btn-1:hover {
  color: #00aeef;
  transition: 0.2s;
  background: transparent;
}
.btn.btn-2 {
  background: transparent;
  border: 2px solid #00aeef;
  transition: 0.2s;
  color: #00aeef;
}
.btn.btn-2:hover {
  background: #00aeef;
  transition: 0.2s;
  color: #fff;
}
.btn.btn-3 {
  background: transparent;
  border: 2px solid #fff;
  transition: 0.2s;
  color: #fff;
}
.btn.btn-3:hover {
  background: #fff;
  transition: 0.2s;
  color: #000;
}

.btn.btn-small {
  padding: 13px 30px;
  line-height: 1;
  height: auto;
}

.btn.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.form-group .form-control {
  border-radius: 4px 0 0 4px;
}
.form-group .btn {
  border-radius: 0 4px 4px 0;
  padding-left: 0;
  padding-right: 0;
}

.form-control-feedback {
  position: absolute;
  top: 15px;
  right: 9px;
  opacity: 0.4;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.nav-tabs {
  border: none;
  font-weight: 500;
  padding: 0;
  margin-left: -2px;
  margin-right: -2px;
}
.nav-tabs > li {
  float: none;
  background: transparent;
  display: inline-block;
  margin: 0 2px 10px;
}
.nav-tabs > li > a {
  display: inline-block;
  padding: 0 25px;
  height: 42px;
  line-height: 38px;
  border-radius: 32px;
  border: 2px solid #e4f1fd;
  text-align: center;
  opacity: 1;
  cursor: pointer;
}
.nav-tabs > li > a:hover {
  display: inline-block;
  padding: 0 25px;
  height: 42px;
  line-height: 38px;
  border-radius: 32px;
  border: 2px solid #e4f1fd;
  text-align: center;
  opacity: 1;
  cursor: pointer;
}
.nav-tabs > li > a:focus {
  display: inline-block;
  padding: 0 25px;
  height: 42px;
  line-height: 38px;
  border-radius: 32px;
  border: 2px solid #e4f1fd;
  text-align: center;
  opacity: 1;
  cursor: pointer;
}
.nav-tabs > li .badge-light {
  margin: 0 12px 0 -12px;
}
.nav-tabs > li.active {
  float: none;
  background: transparent;
  display: inline-block;
  margin: 0 2px 10px;
}
.nav-tabs > li.active > a {
  border-radius: 32px;
  border: 2px solid #3fa2f7;
  text-align: center;
  opacity: 1;
  cursor: pointer;
  color: #00aeef;
}
.nav-tabs > li.active > a:hover {
  border-radius: 32px;
  border: 2px solid #3fa2f7;
  text-align: center;
  opacity: 1;
  cursor: pointer;
  color: #00aeef;
}
.nav-tabs > li.active > a:focus {
  border-radius: 32px;
  border: 2px solid #3fa2f7;
  text-align: center;
  opacity: 1;
  cursor: pointer;
  color: #00aeef;
}

.tabs-content > .tab-panel {
  display: none;
}
.tabs-content > .tab-panel.active {
  display: block;
}

.navbar {
  margin-left: -15px;
  margin-right: -15px;
  text-align: center;
}
.navbar > a {
  margin-left: 15px;
  margin-right: 15px;
  display: inline-block;
}
.navbar > .dropdown {
  margin-left: 15px;
  margin-right: 15px;
  display: inline-block;
}

.badge-round {
  width: 32px;
  height: 32px;
  border: 2px solid #e4f1fd;
  background: #fff;
  border-radius: 50%;
  line-height: 28px;
  text-align: center;
  display: inline-block;
}

.badge-light {
  font-size: 12px;
  width: 20px;
  height: 20px;
  background: #e4f1fd;
  color: #3fa2f7;
  border-radius: 50%;
  line-height: 20px;
  text-align: center;
  display: inline-block;
  font-weight: 700;
  vertical-align: baseline;
}

.badge-dark {
  font-size: 12px;
  width: 20px;
  height: 20px;
  background: #e4f1fd;
  color: #3fa2f7;
  border-radius: 50%;
  line-height: 20px;
  text-align: center;
  display: inline-block;
  font-weight: 700;
  vertical-align: baseline;
  color: #fff;
  background: #3fa2f7;
}

.dropdown {
  display: inline-block;
}
.dropdown > a {
  display: inline-block;
  padding-right: 14px;
}
.dropdown > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
  width: 6px;
  height: 11px;
  background: url("./img/icons/arrow-xs-right.svg") no-repeat;
  transform: rotate(90deg);
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu {
  z-index: 3;
  position: absolute;
  border: 1px solid #e4f1fd;
  background: #fff;
  white-space: nowrap;
  min-width: 100%;
  border-radius: 4px;
  top: 100%;
  margin-top: 10px;
  overflow: hidden;
  padding: 3px 0;
  left: 0;
  right: auto;
  display: none;
}
.dropdown-menu .dropdown-divider {
  margin: 3px 0;
  border-top: 1px solid #e4f1fd;
}
.dropdown-menu a {
  display: block;
  padding: 3px 20px;
}
.dropdown-menu a:hover {
  background: #e4f1fd;
}

.dropdown-right .dropdown-menu {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .ratio-1-1 {
    min-height: 0;
  }
  .ratio-1-1::after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .ratio-1-1 > div {
    min-height: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .ratio-2-1 {
    min-height: 0;
  }
  .ratio-2-1::after {
    content: "";
    display: block;
    padding-bottom: 100%;
    padding-bottom: calc(50% - 15px);
  }
  .ratio-2-1 > div {
    min-height: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .ratio-4-3 {
    min-height: 0;
  }
  .ratio-4-3::after {
    content: "";
    display: block;
  }
  .ratio-4-3 > div {
    min-height: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .ratio-sm-1-1 {
    min-height: 0;
  }
  .ratio-sm-1-1::after {
    content: "";
    display: block;
  }
  .ratio-sm-1-1 > div {
    min-height: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .mt-sm--60 {
    margin-top: -60px !important;
  }

  .mb-sm--60 {
    margin-bottom: -60px !important;
  }

  .ml-sm--60 {
    margin-left: -60px !important;
  }

  .mr-sm--60 {
    margin-right: -60px !important;
  }

  .pb-sm--60 {
    padding-bottom: -60px !important;
  }

  .pt-sm--60 {
    padding-top: -60px !important;
  }

  .pl-sm--60 {
    padding-left: -60px !important;
  }

  .pr-sm--60 {
    padding-right: -60px !important;
  }

  .mt-sm--50 {
    margin-top: -50px !important;
  }

  .mb-sm--50 {
    margin-bottom: -50px !important;
  }

  .ml-sm--50 {
    margin-left: -50px !important;
  }

  .mr-sm--50 {
    margin-right: -50px !important;
  }

  .pb-sm--50 {
    padding-bottom: -50px !important;
  }

  .pt-sm--50 {
    padding-top: -50px !important;
  }

  .pl-sm--50 {
    padding-left: -50px !important;
  }

  .pr-sm--50 {
    padding-right: -50px !important;
  }

  .mt-sm--40 {
    margin-top: -40px !important;
  }

  .mb-sm--40 {
    margin-bottom: -40px !important;
  }

  .ml-sm--40 {
    margin-left: -40px !important;
  }

  .mr-sm--40 {
    margin-right: -40px !important;
  }

  .pb-sm--40 {
    padding-bottom: -40px !important;
  }

  .pt-sm--40 {
    padding-top: -40px !important;
  }

  .pl-sm--40 {
    padding-left: -40px !important;
  }

  .pr-sm--40 {
    padding-right: -40px !important;
  }

  .mt-sm--30 {
    margin-top: -30px !important;
  }

  .mb-sm--30 {
    margin-bottom: -30px !important;
  }

  .ml-sm--30 {
    margin-left: -30px !important;
  }

  .mr-sm--30 {
    margin-right: -30px !important;
  }

  .pb-sm--30 {
    padding-bottom: -30px !important;
  }

  .pt-sm--30 {
    padding-top: -30px !important;
  }

  .pl-sm--30 {
    padding-left: -30px !important;
  }

  .pr-sm--30 {
    padding-right: -30px !important;
  }

  .mt-sm--20 {
    margin-top: -20px !important;
  }

  .mb-sm--20 {
    margin-bottom: -20px !important;
  }

  .ml-sm--20 {
    margin-left: -20px !important;
  }

  .mr-sm--20 {
    margin-right: -20px !important;
  }

  .pb-sm--20 {
    padding-bottom: -20px !important;
  }

  .pt-sm--20 {
    padding-top: -20px !important;
  }

  .pl-sm--20 {
    padding-left: -20px !important;
  }

  .pr-sm--20 {
    padding-right: -20px !important;
  }

  .mt-sm--15 {
    margin-top: -15px !important;
  }

  .mb-sm--15 {
    margin-bottom: -15px !important;
  }

  .ml-sm--15 {
    margin-left: -15px !important;
  }

  .mr-sm--15 {
    margin-right: -15px !important;
  }

  .pb-sm--15 {
    padding-bottom: -15px !important;
  }

  .pt-sm--15 {
    padding-top: -15px !important;
  }

  .pl-sm--15 {
    padding-left: -15px !important;
  }

  .pr-sm--15 {
    padding-right: -15px !important;
  }

  .mt-sm--10 {
    margin-top: -10px !important;
  }

  .mb-sm--10 {
    margin-bottom: -10px !important;
  }

  .ml-sm--10 {
    margin-left: -10px !important;
  }

  .mr-sm--10 {
    margin-right: -10px !important;
  }

  .pb-sm--10 {
    padding-bottom: -10px !important;
  }

  .pt-sm--10 {
    padding-top: -10px !important;
  }

  .pl-sm--10 {
    padding-left: -10px !important;
  }

  .pr-sm--10 {
    padding-right: -10px !important;
  }

  .mt-sm--5 {
    margin-top: -5px !important;
  }

  .mb-sm--5 {
    margin-bottom: -5px !important;
  }

  .ml-sm--5 {
    margin-left: -5px !important;
  }

  .mr-sm--5 {
    margin-right: -5px !important;
  }

  .pb-sm--5 {
    padding-bottom: -5px !important;
  }

  .pt-sm--5 {
    padding-top: -5px !important;
  }

  .pl-sm--5 {
    padding-left: -5px !important;
  }

  .pr-sm--5 {
    padding-right: -5px !important;
  }

  .p-sm-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .ph-sm-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .mt-sm-0 {
    margin-top: 0px !important;
  }

  .mb-sm-0 {
    margin-bottom: 0px !important;
  }

  .ml-sm-0 {
    margin-left: 0px !important;
  }

  .mr-sm-0 {
    margin-right: 0px !important;
  }

  .pb-sm-0 {
    padding-bottom: 0px !important;
  }

  .pt-sm-0 {
    padding-top: 0px !important;
  }

  .pl-sm-0 {
    padding-left: 0px !important;
  }

  .pr-sm-0 {
    padding-right: 0px !important;
  }

  .p-sm-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .ph-sm-5 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .mt-sm-5 {
    margin-top: 5px !important;
  }

  .mb-sm-5 {
    margin-bottom: 5px !important;
  }

  .ml-sm-5 {
    margin-left: 5px !important;
  }

  .mr-sm-5 {
    margin-right: 5px !important;
  }

  .pb-sm-5 {
    padding-bottom: 5px !important;
  }

  .pt-sm-5 {
    padding-top: 5px !important;
  }

  .pl-sm-5 {
    padding-left: 5px !important;
  }

  .pr-sm-5 {
    padding-right: 5px !important;
  }

  .p-sm-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .ph-sm-10 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .mt-sm-10 {
    margin-top: 10px !important;
  }

  .mb-sm-10 {
    margin-bottom: 10px !important;
  }

  .ml-sm-10 {
    margin-left: 10px !important;
  }

  .mr-sm-10 {
    margin-right: 10px !important;
  }

  .pb-sm-10 {
    padding-bottom: 10px !important;
  }

  .pt-sm-10 {
    padding-top: 10px !important;
  }

  .pl-sm-10 {
    padding-left: 10px !important;
  }

  .pr-sm-10 {
    padding-right: 10px !important;
  }

  .p-sm-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .ph-sm-15 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .mt-sm-15 {
    margin-top: 15px !important;
  }

  .mb-sm-15 {
    margin-bottom: 15px !important;
  }

  .ml-sm-15 {
    margin-left: 15px !important;
  }

  .mr-sm-15 {
    margin-right: 15px !important;
  }

  .pb-sm-15 {
    padding-bottom: 15px !important;
  }

  .pt-sm-15 {
    padding-top: 15px !important;
  }

  .pl-sm-15 {
    padding-left: 15px !important;
  }

  .pr-sm-15 {
    padding-right: 15px !important;
  }

  .p-sm-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .ph-sm-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mt-sm-20 {
    margin-top: 20px !important;
  }

  .mb-sm-20 {
    margin-bottom: 20px !important;
  }

  .ml-sm-20 {
    margin-left: 20px !important;
  }

  .mr-sm-20 {
    margin-right: 20px !important;
  }

  .pb-sm-20 {
    padding-bottom: 20px !important;
  }

  .pt-sm-20 {
    padding-top: 20px !important;
  }

  .pl-sm-20 {
    padding-left: 20px !important;
  }

  .pr-sm-20 {
    padding-right: 20px !important;
  }

  .p-sm-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .ph-sm-25 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .mt-sm-25 {
    margin-top: 25px !important;
  }

  .mb-sm-25 {
    margin-bottom: 25px !important;
  }

  .ml-sm-25 {
    margin-left: 25px !important;
  }

  .mr-sm-25 {
    margin-right: 25px !important;
  }

  .pb-sm-25 {
    padding-bottom: 25px !important;
  }

  .pt-sm-25 {
    padding-top: 25px !important;
  }

  .pl-sm-25 {
    padding-left: 25px !important;
  }

  .pr-sm-25 {
    padding-right: 25px !important;
  }

  .p-sm-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .ph-sm-30 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .mt-sm-30 {
    margin-top: 30px !important;
  }

  .mb-sm-30 {
    margin-bottom: 30px !important;
  }

  .ml-sm-30 {
    margin-left: 30px !important;
  }

  .mr-sm-30 {
    margin-right: 30px !important;
  }

  .pb-sm-30 {
    padding-bottom: 30px !important;
  }

  .pt-sm-30 {
    padding-top: 30px !important;
  }

  .pl-sm-30 {
    padding-left: 30px !important;
  }

  .pr-sm-30 {
    padding-right: 30px !important;
  }

  .p-sm-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ph-sm-40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .mt-sm-40 {
    margin-top: 40px !important;
  }

  .mb-sm-40 {
    margin-bottom: 40px !important;
  }

  .ml-sm-40 {
    margin-left: 40px !important;
  }

  .mr-sm-40 {
    margin-right: 40px !important;
  }

  .pb-sm-40 {
    padding-bottom: 40px !important;
  }

  .pt-sm-40 {
    padding-top: 40px !important;
  }

  .pl-sm-40 {
    padding-left: 40px !important;
  }

  .pr-sm-40 {
    padding-right: 40px !important;
  }

  .p-sm-45 {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .ph-sm-45 {
    padding-left: 45px;
    padding-right: 45px;
  }

  .mt-sm-45 {
    margin-top: 45px !important;
  }

  .mb-sm-45 {
    margin-bottom: 45px !important;
  }

  .ml-sm-45 {
    margin-left: 45px !important;
  }

  .mr-sm-45 {
    margin-right: 45px !important;
  }

  .pb-sm-45 {
    padding-bottom: 45px !important;
  }

  .pt-sm-45 {
    padding-top: 45px !important;
  }

  .pl-sm-45 {
    padding-left: 45px !important;
  }

  .pr-sm-45 {
    padding-right: 45px !important;
  }

  .p-sm-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ph-sm-50 {
    padding-left: 50px;
    padding-right: 50px;
  }

  .mt-sm-50 {
    margin-top: 50px !important;
  }

  .mb-sm-50 {
    margin-bottom: 50px !important;
  }

  .ml-sm-50 {
    margin-left: 50px !important;
  }

  .mr-sm-50 {
    margin-right: 50px !important;
  }

  .pb-sm-50 {
    padding-bottom: 50px !important;
  }

  .pt-sm-50 {
    padding-top: 50px !important;
  }

  .pl-sm-50 {
    padding-left: 50px !important;
  }

  .pr-sm-50 {
    padding-right: 50px !important;
  }

  .p-sm-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .ph-sm-60 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .mt-sm-60 {
    margin-top: 60px !important;
  }

  .mb-sm-60 {
    margin-bottom: 60px !important;
  }

  .ml-sm-60 {
    margin-left: 60px !important;
  }

  .mr-sm-60 {
    margin-right: 60px !important;
  }

  .pb-sm-60 {
    padding-bottom: 60px !important;
  }

  .pt-sm-60 {
    padding-top: 60px !important;
  }

  .pl-sm-60 {
    padding-left: 60px !important;
  }

  .pr-sm-60 {
    padding-right: 60px !important;
  }

  .p-sm-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .ph-sm-70 {
    padding-left: 70px;
    padding-right: 70px;
  }

  .mt-sm-70 {
    margin-top: 70px !important;
  }

  .mb-sm-70 {
    margin-bottom: 70px !important;
  }

  .ml-sm-70 {
    margin-left: 70px !important;
  }

  .mr-sm-70 {
    margin-right: 70px !important;
  }

  .pb-sm-70 {
    padding-bottom: 70px !important;
  }

  .pt-sm-70 {
    padding-top: 70px !important;
  }

  .pl-sm-70 {
    padding-left: 70px !important;
  }

  .pr-sm-70 {
    padding-right: 70px !important;
  }

  .p-sm-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .ph-sm-80 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .mt-sm-80 {
    margin-top: 80px !important;
  }

  .mb-sm-80 {
    margin-bottom: 80px !important;
  }

  .ml-sm-80 {
    margin-left: 80px !important;
  }

  .mr-sm-80 {
    margin-right: 80px !important;
  }

  .pb-sm-80 {
    padding-bottom: 80px !important;
  }

  .pt-sm-80 {
    padding-top: 80px !important;
  }

  .pl-sm-80 {
    padding-left: 80px !important;
  }

  .pr-sm-80 {
    padding-right: 80px !important;
  }

  .p-sm-85 {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .ph-sm-85 {
    padding-left: 85px;
    padding-right: 85px;
  }

  .mt-sm-85 {
    margin-top: 85px !important;
  }

  .mb-sm-85 {
    margin-bottom: 85px !important;
  }

  .ml-sm-85 {
    margin-left: 85px !important;
  }

  .mr-sm-85 {
    margin-right: 85px !important;
  }

  .pb-sm-85 {
    padding-bottom: 85px !important;
  }

  .pt-sm-85 {
    padding-top: 85px !important;
  }

  .pl-sm-85 {
    padding-left: 85px !important;
  }

  .pr-sm-85 {
    padding-right: 85px !important;
  }

  .p-sm-90 {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .ph-sm-90 {
    padding-left: 90px;
    padding-right: 90px;
  }

  .mt-sm-90 {
    margin-top: 90px !important;
  }

  .mb-sm-90 {
    margin-bottom: 90px !important;
  }

  .ml-sm-90 {
    margin-left: 90px !important;
  }

  .mr-sm-90 {
    margin-right: 90px !important;
  }

  .pb-sm-90 {
    padding-bottom: 90px !important;
  }

  .pt-sm-90 {
    padding-top: 90px !important;
  }

  .pl-sm-90 {
    padding-left: 90px !important;
  }

  .pr-sm-90 {
    padding-right: 90px !important;
  }

  .p-sm-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .ph-sm-100 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .mt-sm-100 {
    margin-top: 100px !important;
  }

  .mb-sm-100 {
    margin-bottom: 100px !important;
  }

  .ml-sm-100 {
    margin-left: 100px !important;
  }

  .mr-sm-100 {
    margin-right: 100px !important;
  }

  .pb-sm-100 {
    padding-bottom: 100px !important;
  }

  .pt-sm-100 {
    padding-top: 100px !important;
  }

  .pl-sm-100 {
    padding-left: 100px !important;
  }

  .pr-sm-100 {
    padding-right: 100px !important;
  }

  .p-sm-110 {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .ph-sm-110 {
    padding-left: 110px;
    padding-right: 110px;
  }

  .mt-sm-110 {
    margin-top: 110px !important;
  }

  .mb-sm-110 {
    margin-bottom: 110px !important;
  }

  .ml-sm-110 {
    margin-left: 110px !important;
  }

  .mr-sm-110 {
    margin-right: 110px !important;
  }

  .pb-sm-110 {
    padding-bottom: 110px !important;
  }

  .pt-sm-110 {
    padding-top: 110px !important;
  }

  .pl-sm-110 {
    padding-left: 110px !important;
  }

  .pr-sm-110 {
    padding-right: 110px !important;
  }

  .p-sm-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .ph-sm-120 {
    padding-left: 120px;
    padding-right: 120px;
  }

  .mt-sm-120 {
    margin-top: 120px !important;
  }

  .mb-sm-120 {
    margin-bottom: 120px !important;
  }

  .ml-sm-120 {
    margin-left: 120px !important;
  }

  .mr-sm-120 {
    margin-right: 120px !important;
  }

  .pb-sm-120 {
    padding-bottom: 120px !important;
  }

  .pt-sm-120 {
    padding-top: 120px !important;
  }

  .pl-sm-120 {
    padding-left: 120px !important;
  }

  .pr-sm-120 {
    padding-right: 120px !important;
  }

  .p-sm-130 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .ph-sm-130 {
    padding-left: 130px;
    padding-right: 130px;
  }

  .mt-sm-130 {
    margin-top: 130px !important;
  }

  .mb-sm-130 {
    margin-bottom: 130px !important;
  }

  .ml-sm-130 {
    margin-left: 130px !important;
  }

  .mr-sm-130 {
    margin-right: 130px !important;
  }

  .pb-sm-130 {
    padding-bottom: 130px !important;
  }

  .pt-sm-130 {
    padding-top: 130px !important;
  }

  .pl-sm-130 {
    padding-left: 130px !important;
  }

  .pr-sm-130 {
    padding-right: 130px !important;
  }

  .p-sm-140 {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .ph-sm-140 {
    padding-left: 140px;
    padding-right: 140px;
  }

  .mt-sm-140 {
    margin-top: 140px !important;
  }

  .mb-sm-140 {
    margin-bottom: 140px !important;
  }

  .ml-sm-140 {
    margin-left: 140px !important;
  }

  .mr-sm-140 {
    margin-right: 140px !important;
  }

  .pb-sm-140 {
    padding-bottom: 140px !important;
  }

  .pt-sm-140 {
    padding-top: 140px !important;
  }

  .pl-sm-140 {
    padding-left: 140px !important;
  }

  .pr-sm-140 {
    padding-right: 140px !important;
  }

  .p-sm-150 {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .ph-sm-150 {
    padding-left: 150px;
    padding-right: 150px;
  }

  .mt-sm-150 {
    margin-top: 150px !important;
  }

  .mb-sm-150 {
    margin-bottom: 150px !important;
  }

  .ml-sm-150 {
    margin-left: 150px !important;
  }

  .mr-sm-150 {
    margin-right: 150px !important;
  }

  .pb-sm-150 {
    padding-bottom: 150px !important;
  }

  .pt-sm-150 {
    padding-top: 150px !important;
  }

  .pl-sm-150 {
    padding-left: 150px !important;
  }

  .pr-sm-150 {
    padding-right: 150px !important;
  }

  .p-sm-160 {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .ph-sm-160 {
    padding-left: 160px;
    padding-right: 160px;
  }

  .mt-sm-160 {
    margin-top: 160px !important;
  }

  .mb-sm-160 {
    margin-bottom: 160px !important;
  }

  .ml-sm-160 {
    margin-left: 160px !important;
  }

  .mr-sm-160 {
    margin-right: 160px !important;
  }

  .pb-sm-160 {
    padding-bottom: 160px !important;
  }

  .pt-sm-160 {
    padding-top: 160px !important;
  }

  .pl-sm-160 {
    padding-left: 160px !important;
  }

  .pr-sm-160 {
    padding-right: 160px !important;
  }

  .p-sm-170 {
    padding-top: 170px;
    padding-bottom: 170px;
  }

  .ph-sm-170 {
    padding-left: 170px;
    padding-right: 170px;
  }

  .mt-sm-170 {
    margin-top: 170px !important;
  }

  .mb-sm-170 {
    margin-bottom: 170px !important;
  }

  .ml-sm-170 {
    margin-left: 170px !important;
  }

  .mr-sm-170 {
    margin-right: 170px !important;
  }

  .pb-sm-170 {
    padding-bottom: 170px !important;
  }

  .pt-sm-170 {
    padding-top: 170px !important;
  }

  .pl-sm-170 {
    padding-left: 170px !important;
  }

  .pr-sm-170 {
    padding-right: 170px !important;
  }

  .p-sm-180 {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .ph-sm-180 {
    padding-left: 180px;
    padding-right: 180px;
  }

  .mt-sm-180 {
    margin-top: 180px !important;
  }

  .mb-sm-180 {
    margin-bottom: 180px !important;
  }

  .ml-sm-180 {
    margin-left: 180px !important;
  }

  .mr-sm-180 {
    margin-right: 180px !important;
  }

  .pb-sm-180 {
    padding-bottom: 180px !important;
  }

  .pt-sm-180 {
    padding-top: 180px !important;
  }

  .pl-sm-180 {
    padding-left: 180px !important;
  }

  .pr-sm-180 {
    padding-right: 180px !important;
  }

  .p-sm-190 {
    padding-top: 190px;
    padding-bottom: 190px;
  }

  .ph-sm-190 {
    padding-left: 190px;
    padding-right: 190px;
  }

  .mt-sm-190 {
    margin-top: 190px !important;
  }

  .mb-sm-190 {
    margin-bottom: 190px !important;
  }

  .ml-sm-190 {
    margin-left: 190px !important;
  }

  .mr-sm-190 {
    margin-right: 190px !important;
  }

  .pb-sm-190 {
    padding-bottom: 190px !important;
  }

  .pt-sm-190 {
    padding-top: 190px !important;
  }

  .pl-sm-190 {
    padding-left: 190px !important;
  }

  .pr-sm-190 {
    padding-right: 190px !important;
  }

  .p-sm-200 {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .ph-sm-200 {
    padding-left: 200px;
    padding-right: 200px;
  }

  .mt-sm-200 {
    margin-top: 200px !important;
  }

  .mb-sm-200 {
    margin-bottom: 200px !important;
  }

  .ml-sm-200 {
    margin-left: 200px !important;
  }

  .mr-sm-200 {
    margin-right: 200px !important;
  }

  .pb-sm-200 {
    padding-bottom: 200px !important;
  }

  .pt-sm-200 {
    padding-top: 200px !important;
  }

  .pl-sm-200 {
    padding-left: 200px !important;
  }

  .pr-sm-200 {
    padding-right: 200px !important;
  }

  .p-sm-220 {
    padding-top: 220px;
    padding-bottom: 220px;
  }

  .ph-sm-220 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .mt-sm-220 {
    margin-top: 220px !important;
  }

  .mb-sm-220 {
    margin-bottom: 220px !important;
  }

  .ml-sm-220 {
    margin-left: 220px !important;
  }

  .mr-sm-220 {
    margin-right: 220px !important;
  }

  .pb-sm-220 {
    padding-bottom: 220px !important;
  }

  .pt-sm-220 {
    padding-top: 220px !important;
  }

  .pl-sm-220 {
    padding-left: 220px !important;
  }

  .pr-sm-220 {
    padding-right: 220px !important;
  }

  .p-sm-240 {
    padding-top: 240px;
    padding-bottom: 240px;
  }

  .ph-sm-240 {
    padding-left: 240px;
    padding-right: 240px;
  }

  .mt-sm-240 {
    margin-top: 240px !important;
  }

  .mb-sm-240 {
    margin-bottom: 240px !important;
  }

  .ml-sm-240 {
    margin-left: 240px !important;
  }

  .mr-sm-240 {
    margin-right: 240px !important;
  }

  .pb-sm-240 {
    padding-bottom: 240px !important;
  }

  .pt-sm-240 {
    padding-top: 240px !important;
  }

  .pl-sm-240 {
    padding-left: 240px !important;
  }

  .pr-sm-240 {
    padding-right: 240px !important;
  }

  .p-sm-260 {
    padding-top: 260px;
    padding-bottom: 260px;
  }

  .ph-sm-260 {
    padding-left: 260px;
    padding-right: 260px;
  }

  .mt-sm-260 {
    margin-top: 260px !important;
  }

  .mb-sm-260 {
    margin-bottom: 260px !important;
  }

  .ml-sm-260 {
    margin-left: 260px !important;
  }

  .mr-sm-260 {
    margin-right: 260px !important;
  }

  .pb-sm-260 {
    padding-bottom: 260px !important;
  }

  .pt-sm-260 {
    padding-top: 260px !important;
  }

  .pl-sm-260 {
    padding-left: 260px !important;
  }

  .pr-sm-260 {
    padding-right: 260px !important;
  }

  .h-sm-40 {
    height: 40px;
  }

  .w-sm-40 {
    width: 40px;
  }

  .h-sm-42 {
    height: 42px;
  }

  .w-sm-42 {
    width: 42px;
  }

  .h-sm-50 {
    height: 50px;
  }

  .w-sm-50 {
    width: 50px;
  }

  .h-sm-70 {
    height: 70px;
  }

  .w-sm-70 {
    width: 70px;
  }

  .h-sm-80 {
    height: 80px;
  }

  .w-sm-80 {
    width: 80px;
  }

  .h-sm-90 {
    height: 90px;
  }

  .w-sm-90 {
    width: 90px;
  }

  .h-sm-100 {
    height: 100px;
  }

  .w-sm-100 {
    width: 100px;
  }

  .h-sm-240 {
    height: 240px;
  }

  .w-sm-240 {
    width: 240px;
  }

  .h-sm-260 {
    height: 260px;
  }

  .w-sm-260 {
    width: 260px;
  }

  .h-sm-300 {
    height: 300px;
  }

  .w-sm-300 {
    width: 300px;
  }

  .h-sm-310 {
    height: 310px;
  }

  .w-sm-310 {
    width: 310px;
  }

  .h-sm-340 {
    height: 340px;
  }

  .w-sm-340 {
    width: 340px;
  }

  .h-sm-360 {
    height: 360px;
  }

  .w-sm-360 {
    width: 360px;
  }

  .h-sm-400 {
    height: 400px;
  }

  .w-sm-400 {
    width: 400px;
  }

  .h-sm-450 {
    height: 450px;
  }

  .w-sm-450 {
    width: 450px;
  }

  .h-sm-540 {
    height: 540px;
  }

  .w-sm-540 {
    width: 540px;
  }

  .h-sm-555 {
    height: 555px;
  }

  .w-sm-555 {
    width: 555px;
  }

  .h-sm-600 {
    height: 600px;
  }

  .w-sm-600 {
    width: 600px;
  }

  .h-sm-700 {
    height: 700px;
  }

  .w-sm-700 {
    width: 700px;
  }

  .w-sm-auto {
    width: auto;
  }

  .w-sm-full {
    width: 100%;
  }

  .h-50v {
    min-height: 50vw;
  }

  .contents.bg-macbook {
    background-image: url("./img/bg/macbook.svg");
    background-size: 473px 280px;
    background-position-x: calc(50% + 55px);
  }

  .sliders .bg-iphone {
    padding: 78px 0 90px;
    background-size: auto 670px;
  }
  .sliders .iphone-screen {
    height: 502px;
    width: 290px;
  }
  .sliders .is-selected .iphone-screen {
    border: 2px solid #3fa2f7;
  }
  .sliders .slider-fluid .slider-item {
    max-width: 80%;
  }

  .features.bg-iphone-left {
    background-image: url("./img/bg/iphone-lg.svg");
    background-size: 280px 568px;
    background-position: calc(33% - 140px) 50%;
  }

  .features.bg-iphone-center {
    background-image: url("./img/bg/iphone-lg.svg");
    background-size: 280px 568px;
    background-image: none;
  }

  .features.bg-iphone-right {
    background-image: url("./img/bg/iphone-lg.svg");
    background-size: 280px 568px;
    background-position: calc(50% + 170px) 140px;
  }

  .features.bg-iphone-right-top {
    background-image: url("./img/bg/iphone-lg.svg");
    background-size: 280px 568px;
    background-position: calc(50% + 170px) 60px;
  }

  .features.bg-macbook-left {
    background-image: url("./img/bg/iphone-lg.svg");
    background-size: 280px 568px;
    background-image: url("./img/bg/macbook-full.svg");
    background-size: 594px 342px;
    background-position: calc(50% - 372px) center;
  }

  .features .feature-tooltip-overlay {
    width: 315px;
    left: 50%;
    margin-left: -162px;
  }
  .features .plain-tabs::before {
    bottom: auto;
    right: 15px;
    left: 15px;
    border-left: none;
    border-top: 4px solid #e4f1fd;
  }
  .features .plain-tab {
    padding: 30px 15px 0;
  }
  .features .plain-tab::before {
    bottom: auto;
    right: 15px;
    left: 15px;
    border-left: none;
    border-top: 4px solid #e4f1fd;
  }
  .features .plain-tab.active::before {
    border-left: none;
    border-top: 4px solid #3fa2f7;
  }
  .features .feature-dots::before {
    top: 61px;
    content: "";
    position: absolute;
    border-bottom: 1px solid #e4f1fd;
    left: 0;
    right: 0;
  }
  .features .features-striked-horizontal::before {
    top: 165px;
    content: "";
    position: absolute;
    border-bottom: 2px solid #e4f1fd;
    left: 0;
    right: 0;
  }

  .blogs .splited-text {
    column-count: 2;
    column-gap: 30px;
  }

  .prices .card-group > div:first-child .card {
    border-right: none;
    border-radius: 4px 0 0 4px;
  }
  .prices .card-group > div:last-child .card {
    border-left: none;
    border-radius: 0 4px 4px 0;
  }
  .prices .card-group.card-group-line .card {
    border-radius: 0;
  }

  .footers .country {
    padding-right: 18px;
    border-right: 2px solid #e4f1fd;
  }
  .footers .splited-columns .col-12 {
    border-right: 1px solid #e4f1fd;
  }
  .footers .splited-columns .col-12:last-child {
    border-right: none;
  }

  .call-to-actions.bg-iphone {
    background-position: center bottom -145px;
    background-size: 324px auto;
    padding-bottom: 475px;
  }

  .forms.bg-macbook {
    background-image: url("./img/bg/macbook-full.svg");
    background-size: 600px auto;
    background-position-x: calc(80% + 315px);
  }

  .testimonials .slider-fluid .slider-item {
    max-width: 60%;
  }

  .contacts .bg-map-right {
    min-height: 50%;
  }
  .contacts .bg-map-left {
    min-height: 100%;
  }
  .contacts .baloon {
    width: 360px;
    margin-left: -180px;
  }
  .contacts .baloon.baloon-on-map {
    margin: -100px auto 0 auto;
  }

  .nav-tabs {
    margin-left: -7px;
    margin-right: -7px;
  }
  .nav-tabs > li {
    margin: 0 7px 10px;
  }
  .nav-tabs > li.active {
    margin: 0 7px 10px;
  }

  .dropdown-right .dropdown-menu {
    left: 0;
    right: auto;
  }
}
@media (min-width: 992px) {
  .ratio-lg-2-1::after {
    padding-bottom: calc(50% - 15px);
  }

  .socials-lg img {
    margin: 0 24px;
  }

  .flickity-prev-next-button {
    display: block;
  }
  .flickity-prev-next-button:hover {
    display: block;
  }

  .flickity-page-dots {
    bottom: -53px;
  }

  .mt-lg--60 {
    margin-top: -60px !important;
  }

  .mb-lg--60 {
    margin-bottom: -60px !important;
  }

  .ml-lg--60 {
    margin-left: -60px !important;
  }

  .mr-lg--60 {
    margin-right: -60px !important;
  }

  .pb-lg--60 {
    padding-bottom: -60px !important;
  }

  .pt-lg--60 {
    padding-top: -60px !important;
  }

  .pl-lg--60 {
    padding-left: -60px !important;
  }

  .pr-lg--60 {
    padding-right: -60px !important;
  }

  .mt-lg--50 {
    margin-top: -50px !important;
  }

  .mb-lg--50 {
    margin-bottom: -50px !important;
  }

  .ml-lg--50 {
    margin-left: -50px !important;
  }

  .mr-lg--50 {
    margin-right: -50px !important;
  }

  .pb-lg--50 {
    padding-bottom: -50px !important;
  }

  .pt-lg--50 {
    padding-top: -50px !important;
  }

  .pl-lg--50 {
    padding-left: -50px !important;
  }

  .pr-lg--50 {
    padding-right: -50px !important;
  }

  .mt-lg--40 {
    margin-top: -40px !important;
  }

  .mb-lg--40 {
    margin-bottom: -40px !important;
  }

  .ml-lg--40 {
    margin-left: -40px !important;
  }

  .mr-lg--40 {
    margin-right: -40px !important;
  }

  .pb-lg--40 {
    padding-bottom: -40px !important;
  }

  .pt-lg--40 {
    padding-top: -40px !important;
  }

  .pl-lg--40 {
    padding-left: -40px !important;
  }

  .pr-lg--40 {
    padding-right: -40px !important;
  }

  .mt-lg--30 {
    margin-top: -30px !important;
  }

  .mb-lg--30 {
    margin-bottom: -30px !important;
  }

  .ml-lg--30 {
    margin-left: -30px !important;
  }

  .mr-lg--30 {
    margin-right: -30px !important;
  }

  .pb-lg--30 {
    padding-bottom: -30px !important;
  }

  .pt-lg--30 {
    padding-top: -30px !important;
  }

  .pl-lg--30 {
    padding-left: -30px !important;
  }

  .pr-lg--30 {
    padding-right: -30px !important;
  }

  .mt-lg--20 {
    margin-top: -20px !important;
  }

  .mb-lg--20 {
    margin-bottom: -20px !important;
  }

  .ml-lg--20 {
    margin-left: -20px !important;
  }

  .mr-lg--20 {
    margin-right: -20px !important;
  }

  .pb-lg--20 {
    padding-bottom: -20px !important;
  }

  .pt-lg--20 {
    padding-top: -20px !important;
  }

  .pl-lg--20 {
    padding-left: -20px !important;
  }

  .pr-lg--20 {
    padding-right: -20px !important;
  }

  .mt-lg--15 {
    margin-top: -15px !important;
  }

  .mb-lg--15 {
    margin-bottom: -15px !important;
  }

  .ml-lg--15 {
    margin-left: -15px !important;
  }

  .mr-lg--15 {
    margin-right: -15px !important;
  }

  .pb-lg--15 {
    padding-bottom: -15px !important;
  }

  .pt-lg--15 {
    padding-top: -15px !important;
  }

  .pl-lg--15 {
    padding-left: -15px !important;
  }

  .pr-lg--15 {
    padding-right: -15px !important;
  }

  .mt-lg--10 {
    margin-top: -10px !important;
  }

  .mb-lg--10 {
    margin-bottom: -10px !important;
  }

  .ml-lg--10 {
    margin-left: -10px !important;
  }

  .mr-lg--10 {
    margin-right: -10px !important;
  }

  .pb-lg--10 {
    padding-bottom: -10px !important;
  }

  .pt-lg--10 {
    padding-top: -10px !important;
  }

  .pl-lg--10 {
    padding-left: -10px !important;
  }

  .pr-lg--10 {
    padding-right: -10px !important;
  }

  .mt-lg--5 {
    margin-top: -5px !important;
  }

  .mb-lg--5 {
    margin-bottom: -5px !important;
  }

  .ml-lg--5 {
    margin-left: -5px !important;
  }

  .mr-lg--5 {
    margin-right: -5px !important;
  }

  .pb-lg--5 {
    padding-bottom: -5px !important;
  }

  .pt-lg--5 {
    padding-top: -5px !important;
  }

  .pl-lg--5 {
    padding-left: -5px !important;
  }

  .pr-lg--5 {
    padding-right: -5px !important;
  }

  .p-lg-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .ph-lg-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .mt-lg-0 {
    margin-top: 0px !important;
  }

  .mb-lg-0 {
    margin-bottom: 0px !important;
  }

  .ml-lg-0 {
    margin-left: 0px !important;
  }

  .mr-lg-0 {
    margin-right: 0px !important;
  }

  .pb-lg-0 {
    padding-bottom: 0px !important;
  }

  .pt-lg-0 {
    padding-top: 0px !important;
  }

  .pl-lg-0 {
    padding-left: 0px !important;
  }

  .pr-lg-0 {
    padding-right: 0px !important;
  }

  .p-lg-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .ph-lg-5 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .mt-lg-5 {
    margin-top: 5px !important;
  }

  .mb-lg-5 {
    margin-bottom: 5px !important;
  }

  .ml-lg-5 {
    margin-left: 5px !important;
  }

  .mr-lg-5 {
    margin-right: 5px !important;
  }

  .pb-lg-5 {
    padding-bottom: 5px !important;
  }

  .pt-lg-5 {
    padding-top: 5px !important;
  }

  .pl-lg-5 {
    padding-left: 5px !important;
  }

  .pr-lg-5 {
    padding-right: 5px !important;
  }

  .p-lg-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .ph-lg-10 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .mt-lg-10 {
    margin-top: 10px !important;
  }

  .mb-lg-10 {
    margin-bottom: 10px !important;
  }

  .ml-lg-10 {
    margin-left: 10px !important;
  }

  .mr-lg-10 {
    margin-right: 10px !important;
  }

  .pb-lg-10 {
    padding-bottom: 10px !important;
  }

  .pt-lg-10 {
    padding-top: 10px !important;
  }

  .pl-lg-10 {
    padding-left: 10px !important;
  }

  .pr-lg-10 {
    padding-right: 10px !important;
  }

  .p-lg-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .ph-lg-15 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .mt-lg-15 {
    margin-top: 15px !important;
  }

  .mb-lg-15 {
    margin-bottom: 15px !important;
  }

  .ml-lg-15 {
    margin-left: 15px !important;
  }

  .mr-lg-15 {
    margin-right: 15px !important;
  }

  .pb-lg-15 {
    padding-bottom: 15px !important;
  }

  .pt-lg-15 {
    padding-top: 15px !important;
  }

  .pl-lg-15 {
    padding-left: 15px !important;
  }

  .pr-lg-15 {
    padding-right: 15px !important;
  }

  .p-lg-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .ph-lg-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mt-lg-20 {
    margin-top: 20px !important;
  }

  .mb-lg-20 {
    margin-bottom: 20px !important;
  }

  .ml-lg-20 {
    margin-left: 20px !important;
  }

  .mr-lg-20 {
    margin-right: 20px !important;
  }

  .pb-lg-20 {
    padding-bottom: 20px !important;
  }

  .pt-lg-20 {
    padding-top: 20px !important;
  }

  .pl-lg-20 {
    padding-left: 20px !important;
  }

  .pr-lg-20 {
    padding-right: 20px !important;
  }

  .p-lg-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .ph-lg-25 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .mt-lg-25 {
    margin-top: 25px !important;
  }

  .mb-lg-25 {
    margin-bottom: 25px !important;
  }

  .ml-lg-25 {
    margin-left: 25px !important;
  }

  .mr-lg-25 {
    margin-right: 25px !important;
  }

  .pb-lg-25 {
    padding-bottom: 25px !important;
  }

  .pt-lg-25 {
    padding-top: 25px !important;
  }

  .pl-lg-25 {
    padding-left: 25px !important;
  }

  .pr-lg-25 {
    padding-right: 25px !important;
  }

  .p-lg-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .ph-lg-30 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .mt-lg-30 {
    margin-top: 30px !important;
  }

  .mb-lg-30 {
    margin-bottom: 30px !important;
  }

  .ml-lg-30 {
    margin-left: 30px !important;
  }

  .mr-lg-30 {
    margin-right: 30px !important;
  }

  .pb-lg-30 {
    padding-bottom: 30px !important;
  }

  .pt-lg-30 {
    padding-top: 30px !important;
  }

  .pl-lg-30 {
    padding-left: 30px !important;
  }

  .pr-lg-30 {
    padding-right: 30px !important;
  }

  .p-lg-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ph-lg-40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .mt-lg-40 {
    margin-top: 40px !important;
  }

  .mb-lg-40 {
    margin-bottom: 40px !important;
  }

  .ml-lg-40 {
    margin-left: 40px !important;
  }

  .mr-lg-40 {
    margin-right: 40px !important;
  }

  .pb-lg-40 {
    padding-bottom: 40px !important;
  }

  .pt-lg-40 {
    padding-top: 40px !important;
  }

  .pl-lg-40 {
    padding-left: 40px !important;
  }

  .pr-lg-40 {
    padding-right: 40px !important;
  }

  .p-lg-45 {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .ph-lg-45 {
    padding-left: 45px;
    padding-right: 45px;
  }

  .mt-lg-45 {
    margin-top: 45px !important;
  }

  .mb-lg-45 {
    margin-bottom: 45px !important;
  }

  .ml-lg-45 {
    margin-left: 45px !important;
  }

  .mr-lg-45 {
    margin-right: 45px !important;
  }

  .pb-lg-45 {
    padding-bottom: 45px !important;
  }

  .pt-lg-45 {
    padding-top: 45px !important;
  }

  .pl-lg-45 {
    padding-left: 45px !important;
  }

  .pr-lg-45 {
    padding-right: 45px !important;
  }

  .p-lg-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ph-lg-50 {
    padding-left: 50px;
    padding-right: 50px;
  }

  .mt-lg-50 {
    margin-top: 50px !important;
  }

  .mb-lg-50 {
    margin-bottom: 50px !important;
  }

  .ml-lg-50 {
    margin-left: 50px !important;
  }

  .mr-lg-50 {
    margin-right: 50px !important;
  }

  .pb-lg-50 {
    padding-bottom: 50px !important;
  }

  .pt-lg-50 {
    padding-top: 50px !important;
  }

  .pl-lg-50 {
    padding-left: 50px !important;
  }

  .pr-lg-50 {
    padding-right: 50px !important;
  }

  .p-lg-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .ph-lg-60 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .mt-lg-60 {
    margin-top: 60px !important;
  }

  .mb-lg-60 {
    margin-bottom: 60px !important;
  }

  .ml-lg-60 {
    margin-left: 60px !important;
  }

  .mr-lg-60 {
    margin-right: 60px !important;
  }

  .pb-lg-60 {
    padding-bottom: 60px !important;
  }

  .pt-lg-60 {
    padding-top: 60px !important;
  }

  .pl-lg-60 {
    padding-left: 60px !important;
  }

  .pr-lg-60 {
    padding-right: 60px !important;
  }

  .p-lg-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .ph-lg-70 {
    padding-left: 70px;
    padding-right: 70px;
  }

  .mt-lg-70 {
    margin-top: 70px !important;
  }

  .mb-lg-70 {
    margin-bottom: 70px !important;
  }

  .ml-lg-70 {
    margin-left: 70px !important;
  }

  .mr-lg-70 {
    margin-right: 70px !important;
  }

  .pb-lg-70 {
    padding-bottom: 70px !important;
  }

  .pt-lg-70 {
    padding-top: 70px !important;
  }

  .pl-lg-70 {
    padding-left: 70px !important;
  }

  .pr-lg-70 {
    padding-right: 70px !important;
  }

  .p-lg-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .ph-lg-80 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .mt-lg-80 {
    margin-top: 80px !important;
  }

  .mb-lg-80 {
    margin-bottom: 80px !important;
  }

  .ml-lg-80 {
    margin-left: 80px !important;
  }

  .mr-lg-80 {
    margin-right: 80px !important;
  }

  .pb-lg-80 {
    padding-bottom: 80px !important;
  }

  .pt-lg-80 {
    padding-top: 80px !important;
  }

  .pl-lg-80 {
    padding-left: 80px !important;
  }

  .pr-lg-80 {
    padding-right: 80px !important;
  }

  .p-lg-85 {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .ph-lg-85 {
    padding-left: 85px;
    padding-right: 85px;
  }

  .mt-lg-85 {
    margin-top: 85px !important;
  }

  .mb-lg-85 {
    margin-bottom: 85px !important;
  }

  .ml-lg-85 {
    margin-left: 85px !important;
  }

  .mr-lg-85 {
    margin-right: 85px !important;
  }

  .pb-lg-85 {
    padding-bottom: 85px !important;
  }

  .pt-lg-85 {
    padding-top: 85px !important;
  }

  .pl-lg-85 {
    padding-left: 85px !important;
  }

  .pr-lg-85 {
    padding-right: 85px !important;
  }

  .p-lg-90 {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .ph-lg-90 {
    padding-left: 90px;
    padding-right: 90px;
  }

  .mt-lg-90 {
    margin-top: 90px !important;
  }

  .mb-lg-90 {
    margin-bottom: 90px !important;
  }

  .ml-lg-90 {
    margin-left: 90px !important;
  }

  .mr-lg-90 {
    margin-right: 90px !important;
  }

  .pb-lg-90 {
    padding-bottom: 90px !important;
  }

  .pt-lg-90 {
    padding-top: 90px !important;
  }

  .pl-lg-90 {
    padding-left: 90px !important;
  }

  .pr-lg-90 {
    padding-right: 90px !important;
  }

  .p-lg-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .ph-lg-100 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .mt-lg-100 {
    margin-top: 100px !important;
  }

  .mb-lg-100 {
    margin-bottom: 100px !important;
  }

  .ml-lg-100 {
    margin-left: 100px !important;
  }

  .mr-lg-100 {
    margin-right: 100px !important;
  }

  .pb-lg-100 {
    padding-bottom: 100px !important;
  }

  .pt-lg-100 {
    padding-top: 100px !important;
  }

  .pl-lg-100 {
    padding-left: 100px !important;
  }

  .pr-lg-100 {
    padding-right: 100px !important;
  }

  .p-lg-110 {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .ph-lg-110 {
    padding-left: 110px;
    padding-right: 110px;
  }

  .mt-lg-110 {
    margin-top: 110px !important;
  }

  .mb-lg-110 {
    margin-bottom: 110px !important;
  }

  .ml-lg-110 {
    margin-left: 110px !important;
  }

  .mr-lg-110 {
    margin-right: 110px !important;
  }

  .pb-lg-110 {
    padding-bottom: 110px !important;
  }

  .pt-lg-110 {
    padding-top: 110px !important;
  }

  .pl-lg-110 {
    padding-left: 110px !important;
  }

  .pr-lg-110 {
    padding-right: 110px !important;
  }

  .p-lg-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .ph-lg-120 {
    padding-left: 120px;
    padding-right: 120px;
  }

  .mt-lg-120 {
    margin-top: 120px !important;
  }

  .mb-lg-120 {
    margin-bottom: 120px !important;
  }

  .ml-lg-120 {
    margin-left: 120px !important;
  }

  .mr-lg-120 {
    margin-right: 120px !important;
  }

  .pb-lg-120 {
    padding-bottom: 120px !important;
  }

  .pt-lg-120 {
    padding-top: 120px !important;
  }

  .pl-lg-120 {
    padding-left: 120px !important;
  }

  .pr-lg-120 {
    padding-right: 120px !important;
  }

  .p-lg-130 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .ph-lg-130 {
    padding-left: 130px;
    padding-right: 130px;
  }

  .mt-lg-130 {
    margin-top: 130px !important;
  }

  .mb-lg-130 {
    margin-bottom: 130px !important;
  }

  .ml-lg-130 {
    margin-left: 130px !important;
  }

  .mr-lg-130 {
    margin-right: 130px !important;
  }

  .pb-lg-130 {
    padding-bottom: 130px !important;
  }

  .pt-lg-130 {
    padding-top: 130px !important;
  }

  .pl-lg-130 {
    padding-left: 130px !important;
  }

  .pr-lg-130 {
    padding-right: 130px !important;
  }

  .p-lg-140 {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .ph-lg-140 {
    padding-left: 140px;
    padding-right: 140px;
  }

  .mt-lg-140 {
    margin-top: 140px !important;
  }

  .mb-lg-140 {
    margin-bottom: 140px !important;
  }

  .ml-lg-140 {
    margin-left: 140px !important;
  }

  .mr-lg-140 {
    margin-right: 140px !important;
  }

  .pb-lg-140 {
    padding-bottom: 140px !important;
  }

  .pt-lg-140 {
    padding-top: 140px !important;
  }

  .pl-lg-140 {
    padding-left: 140px !important;
  }

  .pr-lg-140 {
    padding-right: 140px !important;
  }

  .p-lg-150 {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .ph-lg-150 {
    padding-left: 150px;
    padding-right: 150px;
  }

  .mt-lg-150 {
    margin-top: 150px !important;
  }

  .mb-lg-150 {
    margin-bottom: 150px !important;
  }

  .ml-lg-150 {
    margin-left: 150px !important;
  }

  .mr-lg-150 {
    margin-right: 150px !important;
  }

  .pb-lg-150 {
    padding-bottom: 150px !important;
  }

  .pt-lg-150 {
    padding-top: 150px !important;
  }

  .pl-lg-150 {
    padding-left: 150px !important;
  }

  .pr-lg-150 {
    padding-right: 150px !important;
  }

  .p-lg-160 {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .ph-lg-160 {
    padding-left: 160px;
    padding-right: 160px;
  }

  .mt-lg-160 {
    margin-top: 160px !important;
  }

  .mb-lg-160 {
    margin-bottom: 160px !important;
  }

  .ml-lg-160 {
    margin-left: 160px !important;
  }

  .mr-lg-160 {
    margin-right: 160px !important;
  }

  .pb-lg-160 {
    padding-bottom: 160px !important;
  }

  .pt-lg-160 {
    padding-top: 160px !important;
  }

  .pl-lg-160 {
    padding-left: 160px !important;
  }

  .pr-lg-160 {
    padding-right: 160px !important;
  }

  .p-lg-170 {
    padding-top: 170px;
    padding-bottom: 170px;
  }

  .ph-lg-170 {
    padding-left: 170px;
    padding-right: 170px;
  }

  .mt-lg-170 {
    margin-top: 170px !important;
  }

  .mb-lg-170 {
    margin-bottom: 170px !important;
  }

  .ml-lg-170 {
    margin-left: 170px !important;
  }

  .mr-lg-170 {
    margin-right: 170px !important;
  }

  .pb-lg-170 {
    padding-bottom: 170px !important;
  }

  .pt-lg-170 {
    padding-top: 170px !important;
  }

  .pl-lg-170 {
    padding-left: 170px !important;
  }

  .pr-lg-170 {
    padding-right: 170px !important;
  }

  .p-lg-180 {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .ph-lg-180 {
    padding-left: 180px;
    padding-right: 180px;
  }

  .mt-lg-180 {
    margin-top: 180px !important;
  }

  .mb-lg-180 {
    margin-bottom: 180px !important;
  }

  .ml-lg-180 {
    margin-left: 180px !important;
  }

  .mr-lg-180 {
    margin-right: 180px !important;
  }

  .pb-lg-180 {
    padding-bottom: 180px !important;
  }

  .pt-lg-180 {
    padding-top: 180px !important;
  }

  .pl-lg-180 {
    padding-left: 180px !important;
  }

  .pr-lg-180 {
    padding-right: 180px !important;
  }

  .p-lg-190 {
    padding-top: 190px;
    padding-bottom: 190px;
  }

  .ph-lg-190 {
    padding-left: 190px;
    padding-right: 190px;
  }

  .mt-lg-190 {
    margin-top: 190px !important;
  }

  .mb-lg-190 {
    margin-bottom: 190px !important;
  }

  .ml-lg-190 {
    margin-left: 190px !important;
  }

  .mr-lg-190 {
    margin-right: 190px !important;
  }

  .pb-lg-190 {
    padding-bottom: 190px !important;
  }

  .pt-lg-190 {
    padding-top: 190px !important;
  }

  .pl-lg-190 {
    padding-left: 190px !important;
  }

  .pr-lg-190 {
    padding-right: 190px !important;
  }

  .p-lg-200 {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .ph-lg-200 {
    padding-left: 200px;
    padding-right: 200px;
  }

  .mt-lg-200 {
    margin-top: 200px !important;
  }

  .mb-lg-200 {
    margin-bottom: 200px !important;
  }

  .ml-lg-200 {
    margin-left: 200px !important;
  }

  .mr-lg-200 {
    margin-right: 200px !important;
  }

  .pb-lg-200 {
    padding-bottom: 200px !important;
  }

  .pt-lg-200 {
    padding-top: 200px !important;
  }

  .pl-lg-200 {
    padding-left: 200px !important;
  }

  .pr-lg-200 {
    padding-right: 200px !important;
  }

  .p-lg-220 {
    padding-top: 220px;
    padding-bottom: 220px;
  }

  .ph-lg-220 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .mt-lg-220 {
    margin-top: 220px !important;
  }

  .mb-lg-220 {
    margin-bottom: 220px !important;
  }

  .ml-lg-220 {
    margin-left: 220px !important;
  }

  .mr-lg-220 {
    margin-right: 220px !important;
  }

  .pb-lg-220 {
    padding-bottom: 220px !important;
  }

  .pt-lg-220 {
    padding-top: 220px !important;
  }

  .pl-lg-220 {
    padding-left: 220px !important;
  }

  .pr-lg-220 {
    padding-right: 220px !important;
  }

  .p-lg-240 {
    padding-top: 240px;
    padding-bottom: 240px;
  }

  .ph-lg-240 {
    padding-left: 240px;
    padding-right: 240px;
  }

  .mt-lg-240 {
    margin-top: 240px !important;
  }

  .mb-lg-240 {
    margin-bottom: 240px !important;
  }

  .ml-lg-240 {
    margin-left: 240px !important;
  }

  .mr-lg-240 {
    margin-right: 240px !important;
  }

  .pb-lg-240 {
    padding-bottom: 240px !important;
  }

  .pt-lg-240 {
    padding-top: 240px !important;
  }

  .pl-lg-240 {
    padding-left: 240px !important;
  }

  .pr-lg-240 {
    padding-right: 240px !important;
  }

  .p-lg-260 {
    padding-top: 260px;
    padding-bottom: 260px;
  }

  .ph-lg-260 {
    padding-left: 260px;
    padding-right: 260px;
  }

  .mt-lg-260 {
    margin-top: 260px !important;
  }

  .mb-lg-260 {
    margin-bottom: 260px !important;
  }

  .ml-lg-260 {
    margin-left: 260px !important;
  }

  .mr-lg-260 {
    margin-right: 260px !important;
  }

  .pb-lg-260 {
    padding-bottom: 260px !important;
  }

  .pt-lg-260 {
    padding-top: 260px !important;
  }

  .pl-lg-260 {
    padding-left: 260px !important;
  }

  .pr-lg-260 {
    padding-right: 260px !important;
  }

  .h-lg-40 {
    height: 40px;
  }

  .w-lg-40 {
    width: 40px;
  }

  .h-lg-42 {
    height: 42px;
  }

  .w-lg-42 {
    width: 42px;
  }

  .h-lg-50 {
    height: 50px;
  }

  .w-lg-50 {
    width: 50px;
  }

  .h-lg-70 {
    height: 70px;
  }

  .w-lg-70 {
    width: 70px;
  }

  .h-lg-80 {
    height: 80px;
  }

  .w-lg-80 {
    width: 80px;
  }

  .h-lg-90 {
    height: 90px;
  }

  .w-lg-90 {
    width: 90px;
  }

  .h-lg-100 {
    height: 100px;
  }

  .w-lg-100 {
    width: 100px;
  }

  .h-lg-240 {
    height: 240px;
  }

  .w-lg-240 {
    width: 240px;
  }

  .h-lg-260 {
    height: 260px;
  }

  .w-lg-260 {
    width: 260px;
  }

  .h-lg-300 {
    height: 300px;
  }

  .w-lg-300 {
    width: 300px;
  }

  .h-lg-310 {
    height: 310px;
  }

  .w-lg-310 {
    width: 310px;
  }

  .h-lg-340 {
    height: 340px;
  }

  .w-lg-340 {
    width: 340px;
  }

  .h-lg-360 {
    height: 360px;
  }

  .w-lg-360 {
    width: 360px;
  }

  .h-lg-400 {
    height: 400px;
  }

  .w-lg-400 {
    width: 400px;
  }

  .h-lg-450 {
    height: 450px;
  }

  .w-lg-450 {
    width: 450px;
  }

  .h-lg-540 {
    height: 540px;
  }

  .w-lg-540 {
    width: 540px;
  }

  .h-lg-555 {
    height: 555px;
  }

  .w-lg-555 {
    width: 555px;
  }

  .h-lg-600 {
    height: 600px;
  }

  .w-lg-600 {
    width: 600px;
  }

  .h-lg-700 {
    height: 700px;
  }

  .w-lg-700 {
    width: 700px;
  }

  h1 {
    font-size: 52px;
    line-height: 58px;
  }

  .headers.bg-iphone-left {
    background-image: url("./img/bg/iphone-lg.svg");
    background-repeat: no-repeat;
    background-size: 412px auto;
  }

  .headers.bg-iphone-right {
    background-image: url("./img/bg/iphone-lg.svg");
    background-repeat: no-repeat;
    background-size: 412px auto;
  }

  .headers .bg-iphone-left-small {
    background-image: url("./img/iphone-330.svg");
    background-repeat: no-repeat;
    background-size: 330px auto;
    background-position: center;
  }

  .headers.bg-macbook-left {
    background-image: url("./img/bg/macbook-full.svg");
    background-repeat: no-repeat;
    background-position: -5vw 18vh;
    background-size: 50vw auto;
  }

  .headers.bg-devices {
    background-image: url("./img/ipad-iphone.svg");
    background-repeat: no-repeat;
    background-position: right 190px;
    background-size: 50% auto;
  }

  .contents .divided-item:first-child {
    border-bottom: none;
    border-right: 1px solid #e4f1fd;
  }

  .contents.bg-iphone-left {
    background-image: url("./img/bg/iphone-lg.svg");
    background-size: 420px 853px;
    background-position: calc(50% - 290px) 100px;
  }

  .contents.bg-iphone-right {
    background-image: url("./img/bg/iphone-lg.svg");
    background-size: 420px 853px;
    background-position: calc(50% + 290px) 100px;
  }

  .contents.bg-macbook {
    background-size: 723px 429px;
    background-position-x: calc(50% + 220px);
  }

  .sliders.bg-macbook {
    background: url("./img/bg/macbook-full.svg") no-repeat;
    background-size: 760px 439px;
    background-position: calc(50% - 500px) center;
  }

  .sliders .slider-fluid .slider-item {
    max-width: 950px;
  }

  .features.bg-iphone-left {
    background-size: 420px 853px;
    background-position: calc(50% - 290px) 100px;
  }

  .features.bg-iphone-center {
    background-size: 420px 853px;
    background-image: url("./img/bg/iphone-lg.svg");
    background-position: 50% 260px;
  }

  .features.bg-iphone-right {
    background-size: 420px 853px;
    background-position: calc(50% + 290px) 220px;
  }

  .features.bg-iphone-right-top {
    background-size: 420px 853px;
    background-position: calc(50% + 290px) 100px;
  }

  .features.bg-macbook-left {
    background-size: 420px 853px;
    background-image: url("./img/bg/macbook-full.svg");
    background-size: 890px 514px;
    background-position: calc(50% - 475px) 268px;
  }

  .features .feature-tooltip {
    width: 0;
    height: 32px;
  }
  .features .feature-tooltip.tooltip-1 {
    left: 10%;
    top: 16%;
  }
  .features .feature-tooltip.tooltip-2 {
    left: 91%;
    top: 32%;
  }
  .features .feature-tooltip.tooltip-3 {
    left: 19%;
    top: 75%;
  }
  .features .feature-tooltip.tooltip-4 {
    left: 76%;
    top: 93%;
  }
  .features .feature-tooltip-overlay {
    left: 50px;
    margin-left: 0;
  }
  .features .feature-tooltip-overlay .inner::after {
    content: "";
    border: 10px solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent;
    position: absolute;
    left: -10px;
    width: 0;
    height: 0;
    top: 50%;
    margin-top: -10px;
    border-right-color: #fff;
    margin-left: 3px;
  }
  .features .feature-tooltip-overlay .inner::before {
    content: "";
    border: 10px solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent;
    position: absolute;
    left: -10px;
    width: 0;
    height: 0;
    top: 50%;
    margin-top: -10px;
    border-right-color: #e4f1fd;
  }
  .features .feature-callout::before {
    content: "";
    position: absolute;
  }
  .features .feature-callout::after {
    content: "";
    position: absolute;
  }

  .call-to-actions.bg-iphone {
    background-position: center bottom -170px;
  }

  .teams .slider-full-three .slider-item {
    opacity: 0.3;
  }

  .forms.bg-macbook {
    background-size: 890px auto;
    background-position-x: calc(50% + 460px);
  }

  .testimonials .slider-fluid .slider-item {
    max-width: 554px;
  }

  .contacts .baloon.left-tail {
    margin-left: 15px;
  }
  .contacts .baloon.left-tail::after {
    left: 40px;
    margin-left: 0;
  }
  .contacts .baloon.baloon-on-map {
    margin: 20px 0 0 -45px;
    transition: 0.3s ease opacity;
  }
  .contacts .baloon.baloon-on-map::after {
    display: block;
    left: 35px;
    margin-left: 0;
    top: -10px;
    border-width: 0 10px 10px 10px;
    border-top-color: transparent;
    border-bottom-color: #fff;
  }
  .contacts .baloon.baloon-on-map.baloon-1 {
    left: 26%;
    top: 33%;
  }
  .contacts .baloon.baloon-on-map.baloon-2 {
    left: 57.5%;
    top: 28%;
  }
  .contacts .baloon.baloon-on-map.baloon-3 {
    left: 85.5%;
    top: 43%;
  }
  .contacts .baloon.baloon-on-map.baloon-4 {
    left: 21.5%;
    top: 55.5%;
  }
  .contacts .baloon.baloon-on-map.baloon-5 {
    left: 55%;
    top: 52.5%;
  }
}
@media (min-width: 768px) {
  .mt-md--60 {
    margin-top: -60px !important;
  }

  .mb-md--60 {
    margin-bottom: -60px !important;
  }

  .ml-md--60 {
    margin-left: -60px !important;
  }

  .mr-md--60 {
    margin-right: -60px !important;
  }

  .pb-md--60 {
    padding-bottom: -60px !important;
  }

  .pt-md--60 {
    padding-top: -60px !important;
  }

  .pl-md--60 {
    padding-left: -60px !important;
  }

  .pr-md--60 {
    padding-right: -60px !important;
  }

  .mt-md--50 {
    margin-top: -50px !important;
  }

  .mb-md--50 {
    margin-bottom: -50px !important;
  }

  .ml-md--50 {
    margin-left: -50px !important;
  }

  .mr-md--50 {
    margin-right: -50px !important;
  }

  .pb-md--50 {
    padding-bottom: -50px !important;
  }

  .pt-md--50 {
    padding-top: -50px !important;
  }

  .pl-md--50 {
    padding-left: -50px !important;
  }

  .pr-md--50 {
    padding-right: -50px !important;
  }

  .mt-md--40 {
    margin-top: -40px !important;
  }

  .mb-md--40 {
    margin-bottom: -40px !important;
  }

  .ml-md--40 {
    margin-left: -40px !important;
  }

  .mr-md--40 {
    margin-right: -40px !important;
  }

  .pb-md--40 {
    padding-bottom: -40px !important;
  }

  .pt-md--40 {
    padding-top: -40px !important;
  }

  .pl-md--40 {
    padding-left: -40px !important;
  }

  .pr-md--40 {
    padding-right: -40px !important;
  }

  .mt-md--30 {
    margin-top: -30px !important;
  }

  .mb-md--30 {
    margin-bottom: -30px !important;
  }

  .ml-md--30 {
    margin-left: -30px !important;
  }

  .mr-md--30 {
    margin-right: -30px !important;
  }

  .pb-md--30 {
    padding-bottom: -30px !important;
  }

  .pt-md--30 {
    padding-top: -30px !important;
  }

  .pl-md--30 {
    padding-left: -30px !important;
  }

  .pr-md--30 {
    padding-right: -30px !important;
  }

  .mt-md--20 {
    margin-top: -20px !important;
  }

  .mb-md--20 {
    margin-bottom: -20px !important;
  }

  .ml-md--20 {
    margin-left: -20px !important;
  }

  .mr-md--20 {
    margin-right: -20px !important;
  }

  .pb-md--20 {
    padding-bottom: -20px !important;
  }

  .pt-md--20 {
    padding-top: -20px !important;
  }

  .pl-md--20 {
    padding-left: -20px !important;
  }

  .pr-md--20 {
    padding-right: -20px !important;
  }

  .mt-md--15 {
    margin-top: -15px !important;
  }

  .mb-md--15 {
    margin-bottom: -15px !important;
  }

  .ml-md--15 {
    margin-left: -15px !important;
  }

  .mr-md--15 {
    margin-right: -15px !important;
  }

  .pb-md--15 {
    padding-bottom: -15px !important;
  }

  .pt-md--15 {
    padding-top: -15px !important;
  }

  .pl-md--15 {
    padding-left: -15px !important;
  }

  .pr-md--15 {
    padding-right: -15px !important;
  }

  .mt-md--10 {
    margin-top: -10px !important;
  }

  .mb-md--10 {
    margin-bottom: -10px !important;
  }

  .ml-md--10 {
    margin-left: -10px !important;
  }

  .mr-md--10 {
    margin-right: -10px !important;
  }

  .pb-md--10 {
    padding-bottom: -10px !important;
  }

  .pt-md--10 {
    padding-top: -10px !important;
  }

  .pl-md--10 {
    padding-left: -10px !important;
  }

  .pr-md--10 {
    padding-right: -10px !important;
  }

  .mt-md--5 {
    margin-top: -5px !important;
  }

  .mb-md--5 {
    margin-bottom: -5px !important;
  }

  .ml-md--5 {
    margin-left: -5px !important;
  }

  .mr-md--5 {
    margin-right: -5px !important;
  }

  .pb-md--5 {
    padding-bottom: -5px !important;
  }

  .pt-md--5 {
    padding-top: -5px !important;
  }

  .pl-md--5 {
    padding-left: -5px !important;
  }

  .pr-md--5 {
    padding-right: -5px !important;
  }

  .p-md-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .ph-md-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .mt-md-0 {
    margin-top: 0px !important;
  }

  .mb-md-0 {
    margin-bottom: 0px !important;
  }

  .ml-md-0 {
    margin-left: 0px !important;
  }

  .mr-md-0 {
    margin-right: 0px !important;
  }

  .pb-md-0 {
    padding-bottom: 0px !important;
  }

  .pt-md-0 {
    padding-top: 0px !important;
  }

  .pl-md-0 {
    padding-left: 0px !important;
  }

  .pr-md-0 {
    padding-right: 0px !important;
  }

  .p-md-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .ph-md-5 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .mt-md-5 {
    margin-top: 5px !important;
  }

  .mb-md-5 {
    margin-bottom: 5px !important;
  }

  .ml-md-5 {
    margin-left: 5px !important;
  }

  .mr-md-5 {
    margin-right: 5px !important;
  }

  .pb-md-5 {
    padding-bottom: 5px !important;
  }

  .pt-md-5 {
    padding-top: 5px !important;
  }

  .pl-md-5 {
    padding-left: 5px !important;
  }

  .pr-md-5 {
    padding-right: 5px !important;
  }

  .p-md-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .ph-md-10 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .mt-md-10 {
    margin-top: 10px !important;
  }

  .mb-md-10 {
    margin-bottom: 10px !important;
  }

  .ml-md-10 {
    margin-left: 10px !important;
  }

  .mr-md-10 {
    margin-right: 10px !important;
  }

  .pb-md-10 {
    padding-bottom: 10px !important;
  }

  .pt-md-10 {
    padding-top: 10px !important;
  }

  .pl-md-10 {
    padding-left: 10px !important;
  }

  .pr-md-10 {
    padding-right: 10px !important;
  }

  .p-md-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .ph-md-15 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .mt-md-15 {
    margin-top: 15px !important;
  }

  .mb-md-15 {
    margin-bottom: 15px !important;
  }

  .ml-md-15 {
    margin-left: 15px !important;
  }

  .mr-md-15 {
    margin-right: 15px !important;
  }

  .pb-md-15 {
    padding-bottom: 15px !important;
  }

  .pt-md-15 {
    padding-top: 15px !important;
  }

  .pl-md-15 {
    padding-left: 15px !important;
  }

  .pr-md-15 {
    padding-right: 15px !important;
  }

  .p-md-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .ph-md-20 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mt-md-20 {
    margin-top: 20px !important;
  }

  .mb-md-20 {
    margin-bottom: 20px !important;
  }

  .ml-md-20 {
    margin-left: 20px !important;
  }

  .mr-md-20 {
    margin-right: 20px !important;
  }

  .pb-md-20 {
    padding-bottom: 20px !important;
  }

  .pt-md-20 {
    padding-top: 20px !important;
  }

  .pl-md-20 {
    padding-left: 20px !important;
  }

  .pr-md-20 {
    padding-right: 20px !important;
  }

  .p-md-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .ph-md-25 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .mt-md-25 {
    margin-top: 25px !important;
  }

  .mb-md-25 {
    margin-bottom: 25px !important;
  }

  .ml-md-25 {
    margin-left: 25px !important;
  }

  .mr-md-25 {
    margin-right: 25px !important;
  }

  .pb-md-25 {
    padding-bottom: 25px !important;
  }

  .pt-md-25 {
    padding-top: 25px !important;
  }

  .pl-md-25 {
    padding-left: 25px !important;
  }

  .pr-md-25 {
    padding-right: 25px !important;
  }

  .p-md-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .ph-md-30 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .mt-md-30 {
    margin-top: 30px !important;
  }

  .mb-md-30 {
    margin-bottom: 30px !important;
  }

  .ml-md-30 {
    margin-left: 30px !important;
  }

  .mr-md-30 {
    margin-right: 30px !important;
  }

  .pb-md-30 {
    padding-bottom: 30px !important;
  }

  .pt-md-30 {
    padding-top: 30px !important;
  }

  .pl-md-30 {
    padding-left: 30px !important;
  }

  .pr-md-30 {
    padding-right: 30px !important;
  }

  .p-md-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ph-md-40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .mt-md-40 {
    margin-top: 40px !important;
  }

  .mb-md-40 {
    margin-bottom: 40px !important;
  }

  .ml-md-40 {
    margin-left: 40px !important;
  }

  .mr-md-40 {
    margin-right: 40px !important;
  }

  .pb-md-40 {
    padding-bottom: 40px !important;
  }

  .pt-md-40 {
    padding-top: 40px !important;
  }

  .pl-md-40 {
    padding-left: 40px !important;
  }

  .pr-md-40 {
    padding-right: 40px !important;
  }

  .p-md-45 {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .ph-md-45 {
    padding-left: 45px;
    padding-right: 45px;
  }

  .mt-md-45 {
    margin-top: 45px !important;
  }

  .mb-md-45 {
    margin-bottom: 45px !important;
  }

  .ml-md-45 {
    margin-left: 45px !important;
  }

  .mr-md-45 {
    margin-right: 45px !important;
  }

  .pb-md-45 {
    padding-bottom: 45px !important;
  }

  .pt-md-45 {
    padding-top: 45px !important;
  }

  .pl-md-45 {
    padding-left: 45px !important;
  }

  .pr-md-45 {
    padding-right: 45px !important;
  }

  .p-md-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ph-md-50 {
    padding-left: 50px;
    padding-right: 50px;
  }

  .mt-md-50 {
    margin-top: 50px !important;
  }

  .mb-md-50 {
    margin-bottom: 50px !important;
  }

  .ml-md-50 {
    margin-left: 50px !important;
  }

  .mr-md-50 {
    margin-right: 50px !important;
  }

  .pb-md-50 {
    padding-bottom: 50px !important;
  }

  .pt-md-50 {
    padding-top: 50px !important;
  }

  .pl-md-50 {
    padding-left: 50px !important;
  }

  .pr-md-50 {
    padding-right: 50px !important;
  }

  .p-md-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .ph-md-60 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .mt-md-60 {
    margin-top: 60px !important;
  }

  .mb-md-60 {
    margin-bottom: 60px !important;
  }

  .ml-md-60 {
    margin-left: 60px !important;
  }

  .mr-md-60 {
    margin-right: 60px !important;
  }

  .pb-md-60 {
    padding-bottom: 60px !important;
  }

  .pt-md-60 {
    padding-top: 60px !important;
  }

  .pl-md-60 {
    padding-left: 60px !important;
  }

  .pr-md-60 {
    padding-right: 60px !important;
  }

  .p-md-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .ph-md-70 {
    padding-left: 70px;
    padding-right: 70px;
  }

  .mt-md-70 {
    margin-top: 70px !important;
  }

  .mb-md-70 {
    margin-bottom: 70px !important;
  }

  .ml-md-70 {
    margin-left: 70px !important;
  }

  .mr-md-70 {
    margin-right: 70px !important;
  }

  .pb-md-70 {
    padding-bottom: 70px !important;
  }

  .pt-md-70 {
    padding-top: 70px !important;
  }

  .pl-md-70 {
    padding-left: 70px !important;
  }

  .pr-md-70 {
    padding-right: 70px !important;
  }

  .p-md-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .ph-md-80 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .mt-md-80 {
    margin-top: 80px !important;
  }

  .mb-md-80 {
    margin-bottom: 80px !important;
  }

  .ml-md-80 {
    margin-left: 80px !important;
  }

  .mr-md-80 {
    margin-right: 80px !important;
  }

  .pb-md-80 {
    padding-bottom: 80px !important;
  }

  .pt-md-80 {
    padding-top: 80px !important;
  }

  .pl-md-80 {
    padding-left: 80px !important;
  }

  .pr-md-80 {
    padding-right: 80px !important;
  }

  .p-md-85 {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .ph-md-85 {
    padding-left: 85px;
    padding-right: 85px;
  }

  .mt-md-85 {
    margin-top: 85px !important;
  }

  .mb-md-85 {
    margin-bottom: 85px !important;
  }

  .ml-md-85 {
    margin-left: 85px !important;
  }

  .mr-md-85 {
    margin-right: 85px !important;
  }

  .pb-md-85 {
    padding-bottom: 85px !important;
  }

  .pt-md-85 {
    padding-top: 85px !important;
  }

  .pl-md-85 {
    padding-left: 85px !important;
  }

  .pr-md-85 {
    padding-right: 85px !important;
  }

  .p-md-90 {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .ph-md-90 {
    padding-left: 90px;
    padding-right: 90px;
  }

  .mt-md-90 {
    margin-top: 90px !important;
  }

  .mb-md-90 {
    margin-bottom: 90px !important;
  }

  .ml-md-90 {
    margin-left: 90px !important;
  }

  .mr-md-90 {
    margin-right: 90px !important;
  }

  .pb-md-90 {
    padding-bottom: 90px !important;
  }

  .pt-md-90 {
    padding-top: 90px !important;
  }

  .pl-md-90 {
    padding-left: 90px !important;
  }

  .pr-md-90 {
    padding-right: 90px !important;
  }

  .p-md-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .ph-md-100 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .mt-md-100 {
    margin-top: 100px !important;
  }

  .mb-md-100 {
    margin-bottom: 100px !important;
  }

  .ml-md-100 {
    margin-left: 100px !important;
  }

  .mr-md-100 {
    margin-right: 100px !important;
  }

  .pb-md-100 {
    padding-bottom: 100px !important;
  }

  .pt-md-100 {
    padding-top: 100px !important;
  }

  .pl-md-100 {
    padding-left: 100px !important;
  }

  .pr-md-100 {
    padding-right: 100px !important;
  }

  .p-md-110 {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .ph-md-110 {
    padding-left: 110px;
    padding-right: 110px;
  }

  .mt-md-110 {
    margin-top: 110px !important;
  }

  .mb-md-110 {
    margin-bottom: 110px !important;
  }

  .ml-md-110 {
    margin-left: 110px !important;
  }

  .mr-md-110 {
    margin-right: 110px !important;
  }

  .pb-md-110 {
    padding-bottom: 110px !important;
  }

  .pt-md-110 {
    padding-top: 110px !important;
  }

  .pl-md-110 {
    padding-left: 110px !important;
  }

  .pr-md-110 {
    padding-right: 110px !important;
  }

  .p-md-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .ph-md-120 {
    padding-left: 120px;
    padding-right: 120px;
  }

  .mt-md-120 {
    margin-top: 120px !important;
  }

  .mb-md-120 {
    margin-bottom: 120px !important;
  }

  .ml-md-120 {
    margin-left: 120px !important;
  }

  .mr-md-120 {
    margin-right: 120px !important;
  }

  .pb-md-120 {
    padding-bottom: 120px !important;
  }

  .pt-md-120 {
    padding-top: 120px !important;
  }

  .pl-md-120 {
    padding-left: 120px !important;
  }

  .pr-md-120 {
    padding-right: 120px !important;
  }

  .p-md-130 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .ph-md-130 {
    padding-left: 130px;
    padding-right: 130px;
  }

  .mt-md-130 {
    margin-top: 130px !important;
  }

  .mb-md-130 {
    margin-bottom: 130px !important;
  }

  .ml-md-130 {
    margin-left: 130px !important;
  }

  .mr-md-130 {
    margin-right: 130px !important;
  }

  .pb-md-130 {
    padding-bottom: 130px !important;
  }

  .pt-md-130 {
    padding-top: 130px !important;
  }

  .pl-md-130 {
    padding-left: 130px !important;
  }

  .pr-md-130 {
    padding-right: 130px !important;
  }

  .p-md-140 {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .ph-md-140 {
    padding-left: 140px;
    padding-right: 140px;
  }

  .mt-md-140 {
    margin-top: 140px !important;
  }

  .mb-md-140 {
    margin-bottom: 140px !important;
  }

  .ml-md-140 {
    margin-left: 140px !important;
  }

  .mr-md-140 {
    margin-right: 140px !important;
  }

  .pb-md-140 {
    padding-bottom: 140px !important;
  }

  .pt-md-140 {
    padding-top: 140px !important;
  }

  .pl-md-140 {
    padding-left: 140px !important;
  }

  .pr-md-140 {
    padding-right: 140px !important;
  }

  .p-md-150 {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .ph-md-150 {
    padding-left: 150px;
    padding-right: 150px;
  }

  .mt-md-150 {
    margin-top: 150px !important;
  }

  .mb-md-150 {
    margin-bottom: 150px !important;
  }

  .ml-md-150 {
    margin-left: 150px !important;
  }

  .mr-md-150 {
    margin-right: 150px !important;
  }

  .pb-md-150 {
    padding-bottom: 150px !important;
  }

  .pt-md-150 {
    padding-top: 150px !important;
  }

  .pl-md-150 {
    padding-left: 150px !important;
  }

  .pr-md-150 {
    padding-right: 150px !important;
  }

  .p-md-160 {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .ph-md-160 {
    padding-left: 160px;
    padding-right: 160px;
  }

  .mt-md-160 {
    margin-top: 160px !important;
  }

  .mb-md-160 {
    margin-bottom: 160px !important;
  }

  .ml-md-160 {
    margin-left: 160px !important;
  }

  .mr-md-160 {
    margin-right: 160px !important;
  }

  .pb-md-160 {
    padding-bottom: 160px !important;
  }

  .pt-md-160 {
    padding-top: 160px !important;
  }

  .pl-md-160 {
    padding-left: 160px !important;
  }

  .pr-md-160 {
    padding-right: 160px !important;
  }

  .p-md-170 {
    padding-top: 170px;
    padding-bottom: 170px;
  }

  .ph-md-170 {
    padding-left: 170px;
    padding-right: 170px;
  }

  .mt-md-170 {
    margin-top: 170px !important;
  }

  .mb-md-170 {
    margin-bottom: 170px !important;
  }

  .ml-md-170 {
    margin-left: 170px !important;
  }

  .mr-md-170 {
    margin-right: 170px !important;
  }

  .pb-md-170 {
    padding-bottom: 170px !important;
  }

  .pt-md-170 {
    padding-top: 170px !important;
  }

  .pl-md-170 {
    padding-left: 170px !important;
  }

  .pr-md-170 {
    padding-right: 170px !important;
  }

  .p-md-180 {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .ph-md-180 {
    padding-left: 180px;
    padding-right: 180px;
  }

  .mt-md-180 {
    margin-top: 180px !important;
  }

  .mb-md-180 {
    margin-bottom: 180px !important;
  }

  .ml-md-180 {
    margin-left: 180px !important;
  }

  .mr-md-180 {
    margin-right: 180px !important;
  }

  .pb-md-180 {
    padding-bottom: 180px !important;
  }

  .pt-md-180 {
    padding-top: 180px !important;
  }

  .pl-md-180 {
    padding-left: 180px !important;
  }

  .pr-md-180 {
    padding-right: 180px !important;
  }

  .p-md-190 {
    padding-top: 190px;
    padding-bottom: 190px;
  }

  .ph-md-190 {
    padding-left: 190px;
    padding-right: 190px;
  }

  .mt-md-190 {
    margin-top: 190px !important;
  }

  .mb-md-190 {
    margin-bottom: 190px !important;
  }

  .ml-md-190 {
    margin-left: 190px !important;
  }

  .mr-md-190 {
    margin-right: 190px !important;
  }

  .pb-md-190 {
    padding-bottom: 190px !important;
  }

  .pt-md-190 {
    padding-top: 190px !important;
  }

  .pl-md-190 {
    padding-left: 190px !important;
  }

  .pr-md-190 {
    padding-right: 190px !important;
  }

  .p-md-200 {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .ph-md-200 {
    padding-left: 200px;
    padding-right: 200px;
  }

  .mt-md-200 {
    margin-top: 200px !important;
  }

  .mb-md-200 {
    margin-bottom: 200px !important;
  }

  .ml-md-200 {
    margin-left: 200px !important;
  }

  .mr-md-200 {
    margin-right: 200px !important;
  }

  .pb-md-200 {
    padding-bottom: 200px !important;
  }

  .pt-md-200 {
    padding-top: 200px !important;
  }

  .pl-md-200 {
    padding-left: 200px !important;
  }

  .pr-md-200 {
    padding-right: 200px !important;
  }

  .p-md-220 {
    padding-top: 220px;
    padding-bottom: 220px;
  }

  .ph-md-220 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .mt-md-220 {
    margin-top: 220px !important;
  }

  .mb-md-220 {
    margin-bottom: 220px !important;
  }

  .ml-md-220 {
    margin-left: 220px !important;
  }

  .mr-md-220 {
    margin-right: 220px !important;
  }

  .pb-md-220 {
    padding-bottom: 220px !important;
  }

  .pt-md-220 {
    padding-top: 220px !important;
  }

  .pl-md-220 {
    padding-left: 220px !important;
  }

  .pr-md-220 {
    padding-right: 220px !important;
  }

  .p-md-240 {
    padding-top: 240px;
    padding-bottom: 240px;
  }

  .ph-md-240 {
    padding-left: 240px;
    padding-right: 240px;
  }

  .mt-md-240 {
    margin-top: 240px !important;
  }

  .mb-md-240 {
    margin-bottom: 240px !important;
  }

  .ml-md-240 {
    margin-left: 240px !important;
  }

  .mr-md-240 {
    margin-right: 240px !important;
  }

  .pb-md-240 {
    padding-bottom: 240px !important;
  }

  .pt-md-240 {
    padding-top: 240px !important;
  }

  .pl-md-240 {
    padding-left: 240px !important;
  }

  .pr-md-240 {
    padding-right: 240px !important;
  }

  .p-md-260 {
    padding-top: 260px;
    padding-bottom: 260px;
  }

  .ph-md-260 {
    padding-left: 260px;
    padding-right: 260px;
  }

  .mt-md-260 {
    margin-top: 260px !important;
  }

  .mb-md-260 {
    margin-bottom: 260px !important;
  }

  .ml-md-260 {
    margin-left: 260px !important;
  }

  .mr-md-260 {
    margin-right: 260px !important;
  }

  .pb-md-260 {
    padding-bottom: 260px !important;
  }

  .pt-md-260 {
    padding-top: 260px !important;
  }

  .pl-md-260 {
    padding-left: 260px !important;
  }

  .pr-md-260 {
    padding-right: 260px !important;
  }

  .h-md-40 {
    height: 40px;
  }

  .w-md-40 {
    width: 40px;
  }

  .h-md-42 {
    height: 42px;
  }

  .w-md-42 {
    width: 42px;
  }

  .h-md-50 {
    height: 50px;
  }

  .w-md-50 {
    width: 50px;
  }

  .h-md-70 {
    height: 70px;
  }

  .w-md-70 {
    width: 70px;
  }

  .h-md-80 {
    height: 80px;
  }

  .w-md-80 {
    width: 80px;
  }

  .h-md-90 {
    height: 90px;
  }

  .w-md-90 {
    width: 90px;
  }

  .h-md-100 {
    height: 100px;
  }

  .w-md-100 {
    width: 100px;
  }

  .h-md-240 {
    height: 240px;
  }

  .w-md-240 {
    width: 240px;
  }

  .h-md-260 {
    height: 260px;
  }

  .w-md-260 {
    width: 260px;
  }

  .h-md-300 {
    height: 300px;
  }

  .w-md-300 {
    width: 300px;
  }

  .h-md-310 {
    height: 310px;
  }

  .w-md-310 {
    width: 310px;
  }

  .h-md-340 {
    height: 340px;
  }

  .w-md-340 {
    width: 340px;
  }

  .h-md-360 {
    height: 360px;
  }

  .w-md-360 {
    width: 360px;
  }

  .h-md-400 {
    height: 400px;
  }

  .w-md-400 {
    width: 400px;
  }

  .h-md-450 {
    height: 450px;
  }

  .w-md-450 {
    width: 450px;
  }

  .h-md-540 {
    height: 540px;
  }

  .w-md-540 {
    width: 540px;
  }

  .h-md-555 {
    height: 555px;
  }

  .w-md-555 {
    width: 555px;
  }

  .h-md-600 {
    height: 600px;
  }

  .w-md-600 {
    width: 600px;
  }

  .h-md-700 {
    height: 700px;
  }

  .w-md-700 {
    width: 700px;
  }
}
.full {
  width: 100%;
}

#Headers {
  fill: #ff0042 !important;
}

.telguard-header {
  background: #000;
}

.telguard-slider .slider-item {
  width: 100%;
  background: #dedede;
}
.telguard-slider .slider-item img {
  width: 100%;
}
.telguard-slider .slider-item.is-selected .caption {
  opacity: 1;
  transform: translateY(-50%);
  transition: 1s;
  transition-delay: 0.3s;
}
.telguard-slider .slider-item .caption {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-68%);
  padding: 0 7%;
  opacity: 0;
}
@media all and (min-width: 62em) {
  .telguard-slider .slider-item .caption {
    padding: 0 20%;
  }
}
.telguard-slider .slider-item .caption .mb-20 {
  color: #fff;
}
.telguard-slider .slider-item .caption .mb-40 {
  color: #fff;
}
.telguard-slider .flickity-prev-next-button.previous {
  left: 40px;
}
.telguard-slider .flickity-prev-next-button.next {
  right: 40px;
}
.telguard-slider .flickity-page-dots {
  bottom: 40px;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: "Gotham A", "Gotham B";
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: "Gotham A", "Gotham B";
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}
button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: inherit;
}
a:visited {
  color: inherit;
}
a:hover, a:focus, a:active {
  color: inherit;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
  background: #00aeef;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
  left: 100%;
  color: #fff;
}
.main-navigation ul ul li:hover > ul a, .main-navigation ul ul li.focus > ul a {
  color: #fff;
}
.main-navigation ul ul li:last-of-type a {
  border-bottom: none;
}
.main-navigation ul ul a {
  width: 200px;
  padding: 8px 10px !important;
  display: inline-block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation li {
  float: left;
  position: relative;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }

  .main-navigation ul {
    display: block;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translate(0);
}

[data-aos=fade-up] {
  transform: translateY(100px);
}

[data-aos=fade-down] {
  transform: translateY(-100px);
}

[data-aos=fade-right] {
  transform: translate(-100px);
}

[data-aos=fade-left] {
  transform: translate(100px);
}

[data-aos=fade-up-right] {
  transform: translate(-100px, 100px);
}

[data-aos=fade-up-left] {
  transform: translate(100px, 100px);
}

[data-aos=fade-down-right] {
  transform: translate(-100px, -100px);
}

[data-aos=fade-down-left] {
  transform: translate(100px, -100px);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translateY(100px) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translateY(-100px) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate(-100px) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate(100px) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translateY(100px) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translateY(-100px) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate(-100px) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate(100px) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translate(0);
}

[data-aos=slide-up] {
  transform: translateY(100%);
}

[data-aos=slide-down] {
  transform: translateY(-100%);
}

[data-aos=slide-right] {
  transform: translateX(-100%);
}

[data-aos=slide-left] {
  transform: translateX(100%);
}

[data-aos^=flip][data-aos^=flip] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}
.xxspace {
  padding: 40px 0;
}

button[type=submit],
div.wpforms-container-full .wpforms-form .wpforms-page-button {
  background-color: none;
  border: 1px solid none;
  color: inherit;
  font-size: inherit;
  padding: inherit;
}

p a {
  color: #00aeef;
}
p a:hover {
  opacity: 0.9;
  color: #00aeef;
}
p a:visited {
  color: #00aeef;
}

.space {
  padding-top: 50px;
}

h1 {
  text-transform: uppercase;
  font-size: 1.8em;
  letter-spacing: 1px;
  margin: 10px 0;
  line-height: 120%;
  font-family: "Gotham A", "Gotham B";
}
@media all and (min-width: 62em) {
  h1 {
    font-size: 2.3em;
  }
}

h2 {
  text-transform: uppercase;
  margin: 20px 0;
  font-family: "Gotham A", "Gotham B";
}
h2.mixed {
  text-transform: none;
  margin: 20px 0;
  font-family: "Gotham A", "Gotham B";
}

h4 {
  font-size: 1em;
}
@media all and (min-width: 62em) {
  h4 {
    font-size: 20px;
  }
}

.no-mt {
  margin-top: 0;
}

.close-utility img {
  max-width: 13px;
}

.fa-star {
  color: #00aeef;
}

.blue-bg {
  background: url("./img/blue-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

.fire-bg {
  background: url("./img/fire-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
}

.device-bg {
  background: url("./img/sunset-hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

.home-bg {
  background: url("./img/house-blue-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

.grey-bg {
  background: url("./img/grey-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.flex-hub {
  background: url("./img/hc-flex-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

.take-over {
  background: url("./img/takeover-mobile.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media all and (min-width: 62em) {
  .take-over {
    background: url("./img/takeover.png");
    background-position: top right;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.pers-bg {
  background: url("./img/pers-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.black-bg {
  background: #000;
}

.white-text {
  color: #fff;
}

.dark-text {
  color: #000;
}

.arlo {
  text-align: center;
}
.arlo img {
  padding-top: 20px;
}

.blue-arrows .flickity-prev-next-button.previous {
  background-image: url(./img/icons/arrow-left-blue.svg);
  left: -80px;
}
.blue-arrows .flickity-prev-next-button.next {
  background-image: url(./img/icons/arrow-right-blue.svg);
  right: -80px;
}

.telguard-header {
  position: relative;
  z-index: 99999;
}

.telguard-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.telguard-footer ul li a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  font-size: 1em;
  padding: 10px 0;
}
.telguard-footer ul li a:hover {
  color: #00aeef;
}

.main-navigation ul li a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  font-size: 0.83em;
  padding: 5px 8px;
  text-transform: uppercase;
  outline: none;
}
@media all and (min-width: 75em) {
  .main-navigation ul li a {
    display: inline-block;
    padding: 5px 6px;
  }
}
.main-navigation ul li a.login {
  color: #fff;
  text-transform: initial;
}
.main-navigation ul li a.utility-sales {
  color: #00aeef;
  text-transform: initial;
}
.main-navigation ul li a:hover {
  color: #00aeef;
  transition: 0.2s;
}
.main-navigation ul li a.mobile-btn {
  display: inline-block;
}
@media all and (min-width: 78.4375em) {
  .main-navigation ul li a.mobile-btn {
    display: none;
  }
}
.main-navigation ul li a.hide-mobile {
  display: none;
}
@media all and (min-width: 75em) {
  .main-navigation ul li a.hide-mobile {
    display: inline-block;
  }
}
.main-navigation ul li.hide-mobile {
  display: none;
}
@media all and (min-width: 75em) {
  .main-navigation ul li.hide-mobile {
    display: inline-block;
  }
}
.main-navigation ul li .phone {
  display: inline-block;
}
.main-navigation ul li .phone img {
  width: 14px;
}
@media all and (min-width: 75em) {
  .main-navigation ul li .phone {
    display: none;
  }
}
.main-navigation ul li .search img {
  width: 18px;
}

.feature {
  padding: 0 30px;
}
.feature ul {
  margin-right: 10px;
  padding: 0;
}

.login-screen {
  position: absolute;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  right: 0px;
  top: 100%;
  max-height: 0px;
  z-index: 9999;
  padding: 50px;
  box-shadow: -10px 10px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid #dedede;
  opacity: 0;
  transform: translateY(-500px);
  transition: 0.6s;
}
@media all and (min-width: 62em) {
  .login-screen {
    width: auto;
    min-width: 400px;
    right: 20px;
  }
}
.login-screen.open {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0px);
}

@media all and (min-width: 75em) {
  .show-mobile {
    display: none;
  }
}

.hide-mobile {
  display: none;
}
@media all and (min-width: 75em) {
  .hide-mobile {
    display: inline-block;
  }
}

.mobile-logo {
  max-width: 100px;
}

.mobile-nav {
  padding-left: 0px;
}

.mobile-navigation {
  position: absolute;
  width: 100%;
  background: #00aeef;
  right: 0px;
  top: 100%;
  z-index: 9999;
  padding: 20px 0px;
  display: none;
}
.mobile-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.mobile-navigation ul li a {
  display: inline-block;
  color: #fff;
  width: 100%;
  padding: 8px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

p a {
  color: #00aeef;
}

.tab {
  margin-bottom: 15px;
}
.tab-header {
  background: #00aeef;
  color: #fff;
  padding: 8px 20px;
  position: relative;
}
.tab-header h4 {
  font-size: 1em;
  font-weight: bold;
  color: #fff;
}
.tab-header-btn {
  color: #fff;
  font-size: 2.1em;
  position: absolute;
  display: inline-block;
  height: 20px;
  width: 20px;
  right: 20px;
  bottom: 12px;
  line-height: 0.5em;
  transform-origin: center center;
  transition: transform 0.2s;
  transition-delay: 0.1s;
}
.tab-header:hover {
  cursor: pointer;
}
.tab-content {
  background: #fff;
  max-height: 0px;
  overflow: hidden;
  transition: 0.5s ease-out;
}
.tab-content-inner {
  padding: 30px;
  border: 2px solid #00aeef;
}

.tab.open .tab-header-btn {
  transform: rotate(45deg);
}
.tab.open .tab-content {
  max-height: 800px;
  overflow-y: hidden;
  transition: 0.5s ease-in;
}

.related-products {
  background: #00aeef;
  color: #fff;
}

.dark-text {
  color: #000;
}

.half-blue-bg {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1cabe8+0,1cabe8+49,1cabe8+49,1cabe8+50,ffffff+50,ffffff+99 */
  background: #1cabe8;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #1cabe8 0%, #1cabe8 49%, #1cabe8 49%, #1cabe8 50%, #ffffff 50%, #ffffff 99%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1cabe8", endColorstr="#ffffff", GradientType=0);
  /* IE6-9 */
}

.product-header {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
}
@media all and (min-width: 75em) {
  .product-header {
    background-position: right center;
  }
}
.product-header.arlo {
  min-height: 550px;
}
.product-header h2 {
  color: #fff;
}
.product-header h2.dark-text {
  color: #000;
}

.center {
  text-align: center;
  margin-top: 20px;
}

.space {
  margin-top: 30px;
}

.product .card {
  background: #000;
  border: none;
  border-radius: 0px;
  color: #fff;
  padding: 50px 0 0 0;
}
.product .card h2 {
  margin-top: 0px;
}
.product .card h1 {
  font-size: 2em;
  font-weight: 500;
}
.product .card img {
  height: auto;
  max-width: 80%;
  max-height: 300px;
  width: auto;
}
@media all and (min-width: 75em) {
  .product .card img {
    max-width: 200px;
  }
}
.product .card h2 {
  font-size: 1.9em;
}
.product .card h2 a {
  color: #fff;
}
.product .card h2 a:visited {
  color: #fff;
}
.product .card h2 a:hover {
  color: #00aeef;
  cursor: pointer;
}
.product .card a {
  color: #00aeef;
  display: inline-block;
  font-weight: 500;
}
.product .card a:visited {
  color: #00aeef;
}
.product .card a:hover {
  color: #fff;
  cursor: pointer;
}

.sm-center {
  text-align: center;
}
@media all and (min-width: 62em) {
  .sm-center {
    text-align: inherit;
  }
}

.team-section .card {
  border: none;
}
.team-section .card img {
  border-radius: 0px;
}

.blue-text {
  color: #00aeef;
}

.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
}

.utility-nav {
  background: #00aeef;
  padding: 15px 0;
  font-size: 0.9em;
  position: relative;
  z-index: 99999;
  display: none;
}
.utility-nav.open {
  display: block;
}
.utility-nav span {
  width: 80%;
  padding: 0 0 0 10px;
}
@media all and (min-width: 75em) {
  .utility-nav span {
    width: 100%;
  }
}
.utility-nav .close-utility {
  display: inline-block;
  color: #000;
  right: 20px;
  top: 0px;
  position: absolute;
}

.partner-logos {
  list-style: none;
  margin: 0;
  padding: 0;
}
.partner-logos li {
  width: 45%;
  text-align: center;
  display: inline-block;
  padding: 10px;
}
.partner-logos li img {
  max-width: 100%;
}
@media all and (min-width: 30em) {
  .partner-logos li img {
    max-width: 200px;
    max-height: 120px;
  }
}
@media all and (min-width: 62em) {
  .partner-logos li {
    width: auto;
    max-width: calc((100% / 6) - 8px);
    padding: 10px 15px;
  }
  .partner-logos li img {
    max-width: 100%;
  }
  .partner-logos li:first-of-type {
    padding-left: 0px;
  }
  .partner-logos li:last-of-type {
    padding-right: 0px;
  }
}

.resources-download-section {
  background-color: #00aeef;
  background-repeat: no-repeat;
  background-position: right center;
}
@media all and (min-width: 62em) {
  .resources-download-section {
    background-image: url(./img/macbook.png);
  }
}

.p-lr {
  padding: 0px;
}
@media all and (min-width: 62em) {
  .p-lr {
    padding-left: 10%;
    padding-right: 10%;
  }
}

.related-products a {
  color: #fff;
}

.related-product-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.advantage-table .container {
  overflow: hidden;
}
.advantage-table p {
  font-size: 0.8em;
}
.advantage-table .blue-header {
  text-align: center;
  background: #00aeef;
  color: #fff;
  padding: 8px 0;
}
.advantage-table .table {
  width: 100%;
  margin-right: 10px;
  border: 2px solid #999;
  border-radius: 5px;
  margin-bottom: 10px;
}
@media all and (min-width: 62em) {
  .advantage-table .table {
    width: calc(48% - 8px);
    float: left;
    margin-bottom: 10px;
  }
}
@media all and (min-width: 75em) {
  .advantage-table .table {
    width: calc(20% - 8px);
    float: left;
    margin-bottom: 10px;
  }
}
.advantage-table .table:last-of-type {
  margin-right: 0px;
}
.advantage-table .table h4 {
  font-weight: 500;
  padding: 8px 0 5px;
  color: #000;
}
.advantage-table .table .table-left {
  font-size: 0.9em;
}
.advantage-table .table .table-right {
  font-size: 0.9em;
}
.advantage-table .table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.advantage-table .table ul li {
  padding: 6px 0;
}
.advantage-table .table ul li:nth-child(even) {
  background: #dedede;
}

.error-404 {
  margin-top: 30px;
}
.error-404 h1 {
  margin-bottom: 40px;
}
.error-404 input[type=search] {
  border-radius: 0px;
  border: 0px;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  font-size: 1em;
  display: inline-block;
  background: #efefef;
  width: 70%;
}
.error-404 input[type=search]:active {
  outline: 0;
}
.error-404 input[type=submit] {
  border-radius: 0px;
  border: 0px;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  background: #000;
  font-size: 1em;
  color: #fff;
  display: inline-block;
  margin-left: -5px;
}

.search-section {
  text-align: center;
  background: #00aeef;
  overflow: hidden;
  position: absolute;
  padding: 20px 0;
  left: 0;
  width: 100%;
  box-shadow: 0px -5px 10px black;
  display: none;
}
.search-section-container {
  margin: 0 auto;
}
.search-section input[type=search] {
  border-radius: 0px;
  border: 0px;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  font-size: 1em;
  display: inline-block;
  width: 70%;
}
.search-section input[type=search]:active {
  outline: 0;
}
.search-section input[type=submit] {
  border-radius: 0px;
  border: 0px;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  background: #000;
  font-size: 1em;
  color: #fff;
  display: inline-block;
  margin-left: -5px;
}

.mapsvg-wrap {
  border: 2px solid #dedede;
}

.mapsvg-directory-item img {
  float: left;
  max-width: 25%;
  clear: both;
  margin-right: 10px;
}
.mapsvg-directory-item h3 {
  font-size: 0.9em;
  line-height: 1.2em;
}
.mapsvg-directory-item p {
  font-size: 0.9em;
  clear: right;
}

.Login_Form a {
  color: #00aeef;
}
.Login_Form .form-control {
  padding: 12px 8px;
  min-height: auto;
  border-radius: 0px;
  border: 1px solid #999;
}
.Login_Form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #00aeef;
}
.Login_Form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #00aeef;
}
.Login_Form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #00aeef;
}
.Login_Form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #00aeef;
}
.Login_Form .icon {
  display: none;
}

#btn-login {
  font-family: inherit;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.6em;
  padding: 9px 25px;
  font-weight: 500;
  border-radius: 0px;
  text-align: center;
  border: none;
  margin: 10px 0px;
  width: 100%;
}
@media all and (min-width: 62em) {
  #btn-login {
    width: auto;
  }
}
#btn-login.btn-1 {
  background: #00aeef;
  transition: 0.2s;
  color: #fff;
  border: 2px solid #00aeef;
}
#btn-login.btn-1:hover {
  color: #00aeef;
  transition: 0.2s;
  background: transparent;
}

#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  background: #f5f5f5;
  color: #444;
  cursor: pointer;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
  opacity: 0;
}

#back-to-top:hover {
  background: #e9ebec;
}

#back-to-top.show {
  opacity: 1;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .site-content {
  padding-top: 60px;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #000;
  border: 1px solid #000;
  border-radius: 0px;
  padding: 8px 5px;
}

.gform_wrapper label.gfield_label {
  font-weight: 500 !important;
}

.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type=submit] {
  font-family: inherit;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.6em;
  padding: 9px 25px;
  font-weight: 500;
  border-radius: 0px;
  text-align: center;
  border: none;
  margin: 10px 0px;
  width: 100%;
  background: #00aeef;
  transition: 0.2s;
  color: #fff;
  border: 2px solid #00aeef;
}
@media all and (min-width: 62em) {
  .gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type=submit] {
    width: auto;
  }
}
.gform_wrapper .gform_footer input.button:hover,
.gform_wrapper .gform_footer input[type=submit]:hover {
  color: #00aeef;
  transition: 0.2s;
  background: transparent;
}

.white-form-button .gform_footer input.button,
.white-form-button .gform_footer input[type=submit] {
  font-family: inherit;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.6em;
  padding: 9px 25px;
  font-weight: 500;
  border-radius: 0px;
  text-align: center;
  border: none;
  margin: 10px 0px;
  width: 100%;
  background: #fff;
  transition: 0.2s;
  color: #000;
  border: 2px solid #fff;
}
@media all and (min-width: 62em) {
  .white-form-button .gform_footer input.button,
.white-form-button .gform_footer input[type=submit] {
    width: auto;
  }
}
.white-form-button .gform_footer input.button:hover,
.white-form-button .gform_footer input[type=submit]:hover {
  color: #fff;
  transition: 0.2s;
  background: transparent;
}
.white-form-button .gfield_label {
  color: #fff;
  font-size: 0.9em;
}
.white-form-button input[type=text],
.white-form-button input[type=email],
.white-form-button input[type=url],
.white-form-button input[type=password],
.white-form-button input[type=search],
.white-form-button input[type=number],
.white-form-button input[type=tel],
.white-form-button input[type=range],
.white-form-button input[type=date],
.white-form-button input[type=month],
.white-form-button input[type=week],
.white-form-button input[type=time],
.white-form-button input[type=datetime],
.white-form-button input[type=datetime-local],
.white-form-button input[type=color],
.white-form-button textarea {
  color: #000;
  border: 1px solid #fff;
  border-radius: 0px;
  padding: 8px 5px;
}

.gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield select {
  margin-left: 1px;
  padding: 6px;
  border-radius: 0px;
  -webkit-appearance: none;
}
.gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield select:focus {
  outline: none;
}

.telguard-popover img {
  padding: 0 0 10px 0;
}
.telguard-popover h3 {
  font-weight: 600;
}
.telguard-popover p {
  margin: 7px 0;
}

.slider-item p a {
  color: #fff;
}
.slider-item p a:hover {
  color: #000;
}
.slider-item p a:visited {
  color: #fff;
}

.sales-people h2 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 30px;
}

.telguard-popover {
  background: #fff;
  border: 1px solid #dedede;
  padding: 20px 5px;
  margin: 10px 0;
  position: relative;
  display: none;
}
@media all and (min-width: 62em) {
  .telguard-popover {
    padding: 30px 15px;
    position: absolute;
  }
  .telguard-popover:after {
    position: absolute;
    content: " ";
    background: #fff;
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    width: 30px;
    height: 30px;
    top: 30px;
    left: -15px;
    transform: rotate(135deg);
  }
}
.telguard-popover img {
  max-width: 125px;
  width: 100%;
}
@media all and (min-width: 62em) {
  .telguard-popover img {
    max-width: 100%;
    width: 100%;
  }
}
.telguard-popover p {
  word-break: keep-all;
}
.telguard-popover.open {
  display: flex;
}
@media all and (min-width: 75em) {
  .telguard-popover.open {
    top: 50%;
    transform: translateY(-50%);
  }
}

.socials a img {
  max-width: 25px;
  max-height: 18px;
}

.lower {
  text-transform: lowercase;
}

.close-login {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 5px;
  right: 10px;
}
.close-login img {
  width: 100%;
}

.thankyou-icons {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.thankyou-icons li {
  display: inline-block;
}
.thankyou-icons li a {
  color: #00aeef;
  display: inline-block;
  padding: 20px;
}

.flickity-viewport {
  transition: height 0.2s;
}

.news-section h2 a {
  color: #333;
  font-weight: 300;
}
.news-section a {
  color: #00aeef;
}

.tel-adv .flickity-page-dots {
  bottom: 40px;
}
.tel-adv .flickity-page-dots .dot {
  background: #000;
}
.tel-adv .flickity-page-dots .dot.is-selected {
  background: #00aeef;
}

.news-slider-item {
  width: 100%;
  background: #dedede;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
}
@media all and (min-width: 62em) {
  .news-slider-item {
    min-height: 500px;
  }
}
.news-slider-item img {
  width: 100%;
}
.news-slider-item.is-selected .caption {
  opacity: 1;
  transition: 1s;
  transition-delay: 0.3s;
}
.news-slider-item a {
  color: #fff;
  font-weight: 300;
}
.news-slider-item .caption {
  width: 100%;
  text-align: left;
  padding: 50px 7%;
  opacity: 0;
  position: relative;
  z-index: 99;
}
.news-slider-item .caption h2 {
  color: #fff;
  font-weight: 300;
}
.news-slider-item .caption h2 a {
  color: #fff;
  font-weight: 300;
}
@media all and (min-width: 62em) {
  .news-slider-item .caption {
    padding: 50px 20%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
.news-slider-item .caption .mb-20 {
  color: #fff;
}
.news-slider-item .caption .mb-40 {
  color: #fff;
}
.news-slider .flickity-prev-next-button.previous {
  left: 40px;
}
.news-slider .flickity-prev-next-button.next {
  right: 40px;
}
.news-slider .flickity-page-dots {
  bottom: 40px;
}

.news-section-single-hero {
  width: 100%;
  background: #dedede;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
}
@media all and (min-width: 62em) {
  .news-section-single-hero {
    min-height: 500px;
  }
}
.news-section-single-hero img {
  width: 100%;
}
.news-section-single-hero a {
  color: #fff;
  font-weight: 300;
}
.news-section-single-hero .caption {
  width: 100%;
  text-align: left;
  padding: 50px 7%;
  position: relative;
  z-index: 99;
}
.news-section-single-hero .caption h2 {
  color: #fff;
  font-weight: 300;
}
.news-section-single-hero .caption h2 a {
  color: #fff;
  font-weight: 300;
}
@media all and (min-width: 62em) {
  .news-section-single-hero .caption {
    padding: 50px 10%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

/**************Mammoth CSS**************/
/***************************************
Font 
***************************************/
/**************Mammoth CSS**************/
/***************************************
Font 
***************************************/
/*@font-face {
  font-family: 'Gotham Alternative';
  src: url("fonts/Gotham-Light.eot");
  src: local("Gotham Light"), local("Gotham-Light"), url("fonts/Gotham-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Gotham-Light.woff2") format("woff2"), url("fonts/Gotham-Light.woff") format("woff"), url("fonts/Gotham-Light.ttf") format("truetype"), url("fonts/Gotham-Light.svg#Gotham-Light") format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Gotham Book';
  src: url("fonts/Gotham-Book.eot");
  src: local("Gotham Book"), local("Gotham-Book"), url("fonts/Gotham-Book.eot?#iefix") format("embedded-opentype"), url("fonts/Gotham-Book.woff2") format("woff2"), url("fonts/Gotham-Book.woff") format("woff"), url("fonts/Gotham-Book.ttf") format("truetype"), url("fonts/Gotham-Book.svg#Gotham-Book") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Gotham Alternative';
  src: url("fonts/Gotham-Medium.eot");
  src: local("Gotham Medium"), local("Gotham-Medium"), url("fonts/Gotham-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Gotham-Medium.woff2") format("woff2"), url("fonts/Gotham-Medium.woff") format("woff"), url("fonts/Gotham-Medium.ttf") format("truetype"), url("fonts/Gotham-Medium.svg#Gotham-Medium") format("svg");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Gotham Alternative';
  src: url("fonts/Gotham-Bold.eot");
  src: local("Gotham Bold"), local("Gotham-Bold"), url("fonts/Gotham-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Gotham-Bold.woff2") format("woff2"), url("fonts/Gotham-Bold.woff") format("woff"), url("fonts/Gotham-Bold.ttf") format("truetype"), url("fonts/Gotham-Bold.svg#Gotham-Bold") format("svg");
  font-weight: 700;
  font-style: normal; }*/
/***************************************
Cool timeline 
***************************************/
.cool-timeline {
  padding: 20px 15%;
}

.timeline-main-title {
  display: none;
}

.cool-timeline .timeline-year .icon-placeholder span {
  font-family: "Gotham A", "Gotham B", arial, sans-serif !important;
  /*color: #1DAEEC;*/
  font-weight: 100;
  letter-spacing: 2px;
}

.cool-timeline .timeline-post .timeline-content .content-details,
.ctl-popup-content {
  font-family: "Gotham A", "Gotham B", arial, sans-serif !important;
}

.clean-skin-tm .cool-timeline.white-timeline .timeline-post.even .timeline-content h2.content-title,
.clean-skin-tm .cool-timeline.white-timeline .timeline-post.odd .timeline-content h2.content-title {
  display: none;
}

.clean-skin-tm .cool-timeline .timeline-post.even .timeline-meta,
.clean-skin-tm .cool-timeline .timeline-post.odd .timeline-meta {
  display: none;
}

.cool-timeline.white-timeline .timeline-post.even .icon-dot-full,
.cool-timeline.white-timeline .timeline-post.odd .icon-dot-full {
  display: none !important;
}

.cool-timeline .timeline-post {
  margin-bottom: 50px !important;
}

.cool-timeline .timeline-year {
  margin: 22px 0 0;
}

.cool-timeline.white-timeline .timeline-year {
  background: white;
  box-shadow: none;
}

.cool-timeline .timeline-year .icon-placeholder span {
  top: 10px;
}

.cool-timeline .timeline-year {
  height: 40px;
}

.cool-timeline:before {
  background-color: #C1C1C1 !important;
  background-image: -ms-linear-gradient(top, #EAF0F2 0, #C1C1C1 8%, #C1C1C1 92%, #EAF0F2 100%) !important;
  width: 2px;
}

.cool-timeline.white-timeline:before, .cool-timeline.white-timeline.one-sided:before {
  background-color: #C1C1C1 !important;
  background-image: -ms-linear-gradient(top, #EAF0F2 0, #C1C1C1 8%, #C1C1C1 92%, #EAF0F2 100%) !important;
}

.cool-timeline .timeline-post.even,
.cool-timeline .timeline-post.odd {
  border-top: 2px;
  border-style: solid;
  border-color: #C1C1C1;
}

.ultimate-style .timeline-post .timeline-content .content-details {
  padding: 35px 15px 15px;
}

/************************************
* Search result
************************************/
.search-section-noresult {
  text-align: center;
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  display: none;
}

.search-section-noresult input[type=submit] {
  border-radius: 0px;
  border: 0px;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  background: #000;
  font-size: 1em;
  color: #fff;
  display: inline-block;
  margin-left: -5px;
}

/************************************
* mobile
************************************/
@media only screen and (max-width: 574px) {
  .tablet-logo,
.logo2-footer {
    display: none;
  }

  .mobile-logo {
    max-width: 110px;
  }
}
@media only screen and (min-width: 575px) and (max-width: 740px) {
  .tablet-logo,
.logo1-footer {
    display: none;
  }

  .mobile-logo {
    max-width: 110px;
  }
}
@media only screen and (min-width: 741px) and (max-width: 767px) {
  /* Add your Mobile Styles here */
  .desktop-only {
    display: none !important;
  }

  .tablet-only {
    display: none !important;
  }

  .tabletanddesktop {
    display: none !important;
  }

  .tablet-logo,
.logo1-footer {
    display: none;
  }

  .mobile-logo {
    max-width: 110px;
  }

  .cool-timeline {
    padding: 0px 15px;
  }

  .cool-timeline .timeline-post,
.cool-timeline .timeline-post.even {
    padding: 0 0 25px 20px;
  }

  .cool-timeline .timeline-year {
    width: calc(90% - 64px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* Add your Tablet Styles here */
  .mobile-only {
    display: none !important;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-logo,
.logo2-footer {
    display: none;
  }
}
@media only screen and (min-width: 1025px) {
  /* Add your Desktop Styles here */
  .mobile-only {
    display: none !important;
  }

  .tablet-only {
    display: none !important;
  }

  .tabletandmobile {
    display: none !important;
  }

  .mobile-logo,
.logo2-footer {
    display: none;
  }
}
.new-header-logo-svg {
  max-width: 280px;
  display: none;
}
@media all and (min-width: 30em) {
  .new-header-logo-svg {
    max-width: 230px;
    display: inline-block;
  }
}
@media all and (min-width: 62em) {
  .new-header-logo-svg {
    max-width: 280px;
  }
}
.new-header-logo-svg img {
  width: 100%;
}
.new-header-logo-svg-mobile img {
  width: 130px;
}
@media all and (min-width: 30em) {
  .new-header-logo-svg-mobile img {
    display: none;
  }
}
@media screen and (max-width: 350px) {
  .new-header-logo-svg-mobile img {
    width: 97px;
  }
}
@media all and (min-width: 30em) {
  .new-header-logo-svg-mobile {
    display: none;
  }
}

.privacy-policy {
  background: #00aeef;
  padding: 12px 30px;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 2147483647;
  display: none;
  box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.2);
}
.privacy-policy.open {
  display: block;
}
.privacy-policy a.white-text {
  color: #fff !important;
  text-decoration: underline;
}
.privacy-policy p {
  margin-bottom: 0px;
  font-size: 0.9em;
}
.privacy-policy .privacy-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  font-size: 0.9em;
  text-transform: uppercase;
}

.new-footer-logo-svg img {
  width: 100%;
}

.unsubscribe-link {
  color: #fff !important;
  text-decoration: underline;
  font-size: 0.9em;
}

.solid-blue-bg {
  background: #00aeef;
}

.black-text {
  color: #000;
}

.result.active {
  background: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
  padding: 20px 0;
  border: 2px solid #00aeef;
  border-radius: 3px;
}

.promo-3-columns h2 {
  font-weight: 600;
}
.promo-3-columns h2,
.promo-3-columns h4 {
  color: #000;
}
.promo-3-columns-promo {
  padding: 50px 30px;
}
@media all and (min-width: 62em) {
  .promo-3-columns-promo {
    padding: 0 50px;
    display: flex;
    justify-content: center;
  }
}
.promo-3-columns-promo:not(:last-of-type) {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
@media all and (min-width: 62em) {
  .promo-3-columns-promo:not(:last-of-type) {
    border-right: 2px solid rgba(0, 0, 0, 0.1);
    border-bottom: 0px solid rgba(0, 0, 0, 0.1);
  }
}
.promo-3-columns-promo-center {
  justify-self: center;
}
.promo-3-columns .btn-4 {
  background: #00aeef;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 30px;
}

.promo-3-columns-btn {
  font-size: 1.3em;
  display: inline-block;
}
.promo-3-columns-btn span {
  margin-left: 10px;
  position: relative;
  display: inline-block;
  top: 0px;
  transition: all 0.2s ease-in-out;
}
.promo-3-columns-btn:hover span {
  transform: translateX(4px);
  transition: all 0.2s ease-in-out;
}

.promo-3-columns-icon {
  position: relative;
}
.promo-3-columns-icon .info-content {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  width: 250px;
  color: #fff;
  position: absolute;
  top: calc(50% + 20px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  display: none;
}
.promo-3-columns-icon .info-content:after {
  content: " ";
  position: absolute;
  width: 0px;
  height: 0px;
  background: transparent;
  top: -12px;
  left: calc(50% - 10px);
  border-top: 0px solid blue;
  border-left: 10px solid transparent;
  border-bottom: 12px solid rgba(0, 0, 0, 0.8);
  border-right: 10px solid transparent;
}
.promo-3-columns-icon:hover .info-content {
  display: block;
}

.promo-3-columns-icon {
  display: inline-block;
  margin-left: 5px;
}
.promo-3-columns-icon:hover {
  cursor: pointer;
}

.promo-section {
  background: #e8e8e9;
}
.promo-section h6 {
  font-size: 17px;
  font-weight: normal;
  margin-bottom: 30px;
  margin-top: 0px;
  color: #000;
  text-transform: uppercase;
}
.promo-section p {
  color: #000;
}
.promo-section h2 {
  color: #000;
}
.promo-section h3 {
  text-transform: uppercase;
  font-size: 20px;
  color: #000;
  margin-bottom: 8px;
}
.promo-section h4 {
  font-size: 25px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}
.promo-section .btn-4 {
  background: #00aeef;
  color: #fff;
  margin-top: 5px;
  margin-bottom: 30px;
}

.buy-3-section h6 {
  font-size: 17px;
  font-weight: normal;
  margin-bottom: 30px;
  margin-top: 0px;
}
.buy-3-section h3 {
  text-transform: uppercase;
  font-size: 20px;
}
.buy-3-section h4 {
  font-size: 25px;
  font-weight: 500;
}
.buy-3-section .btn-4 {
  background: #fff;
  color: #00aeef;
}

.save-section {
  background-size: cover;
  background-position: center right;
}
.save-section h6 {
  font-size: 17px;
  font-weight: normal;
  margin-bottom: 30px;
  margin-top: 0px;
}
.save-section h3 {
  text-transform: uppercase;
  font-size: 20px;
}
.save-section h4 {
  font-size: 25px;
  font-weight: 500;
}
.save-section .btn-4 {
  background: #fff;
  color: #00aeef;
}

.cat-special {
  font-size: 58px;
  line-height: 110%;
}

.serial-form-container {
  width: 100%;
  background: #ff0024;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
@media all and (min-width: 62em) {
  .serial-form-container {
    width: 60%;
  }
}
.serial-form-container form {
  width: 100%;
  background: #bada55;
}
.serial-form-container form input {
  width: 100%;
  height: 45px;
  padding: 0 10px;
  outline: none !important;
  box-shadow: none !important;
  border: none;
}
.serial-form-container .serial-number {
  width: 100%;
}
.serial-form-container #serial-button {
  position: absolute;
  height: 45px;
  background: #00aeef;
  padding: 0 15px;
  top: 0px;
  right: 0px;
  display: inline-block;
  line-height: 45px;
}
.serial-form-container #serial-button img {
  width: 20px;
}

.sunset-info h3 {
  font-size: 1.6em;
  font-weight: 400;
  text-transform: uppercase;
  padding: 30px;
}
.sunset-info p {
  padding: 0 30px;
}
.sunset-info img {
  max-height: 72px;
}
.sunset-info-left {
  position: relative;
}
.sunset-info-left:after {
  position: absolute;
  content: " ";
  height: 80%;
  width: 0px;
  background: #ccc;
  top: 10%;
  right: 0px;
}
@media all and (min-width: 62em) {
  .sunset-info-left:after {
    width: 1px;
  }
}

.copy-info p {
  font-size: 14px;
  top: 5px;
}

.main-navigation .top-nav {
  float: right;
  overflow: hidden;
  text-align: right;
}
.main-navigation .top-nav li {
  text-align: right;
}
.main-navigation .bottom-nav {
  width: 100%;
  float: right;
  clear: right;
}
.main-navigation .sub-menu li {
  width: 100%;
}
.main-navigation ul li:not(.k-mobile) {
  display: none;
}
@media all and (min-width: 78.4375em) {
  .main-navigation ul li:not(.k-mobile) {
    display: block;
  }
}
.main-navigation ul li.menu-item-has-children > a {
  position: relative;
  margin-right: 20px;
}
.main-navigation ul li.menu-item-has-children > a:after {
  position: absolute;
  content: " ";
  width: 10px;
  height: 10px;
  background: url(./img/icons/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
  right: -10px;
  top: 12px;
}

.mobile-navigation ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-navigation ul li a {
  display: inline-block;
  padding: 8px 0px;
  border-bottom: none;
  width: auto;
}
.mobile-navigation .menu-item-has-children {
  overflow: hidden;
  position: relative;
}
.mobile-navigation .menu-item-has-children:after {
  position: absolute;
  content: " ";
  width: 15px;
  height: 15px;
  background: url(./img/icons/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
  right: 20px;
  top: 10px;
}
.mobile-navigation .menu-item-has-children:hover .sub-menu {
  max-height: 300px;
  transition: 0.3s;
}
.mobile-navigation .menu-item-has-children:active .sub-menu {
  max-height: 300px;
  transition: 0.3s;
}
.mobile-navigation .sub-menu {
  max-height: 0px;
  background: #0094cb;
  transition: 0.3s;
}

@media all and (max-width: 29.9375em) {
  .astronaut {
    top: 80% !important;
  }
}

/**************************************
 * Mammoth Solutions
 **************************************/
/******* Drop Down menu *******/
.main-navigation ul ul {
  background: #000;
  padding-top: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 35px 0px, rgba(0, 0, 0, 0.07) 0px 3px 10px 0px;
}

.main-navigation ul ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.main-navigation ul ul a {
  width: 240px;
  padding: 12px 10px !important;
}

.main-navigation ul ul a:hover {
  color: #00aeef !important;
}

.intrusion-links {
  margin-bottom: 20px;
}
.intrusion-links a {
  margin-bottom: 10px;
}
.intrusion-links a.is-checked {
  background: #000;
  border: 2px solid #000;
}
.intrusion-links a.is-checked:hover {
  border: 2px solid #00aeef;
}
.intrusion-links .reset-sort-link {
  outline: none !important;
  font-weight: 400;
  text-decoration: underline;
}
@media all and (min-width: 62em) {
  .intrusion-links {
    margin-bottom: 0px;
  }
}