@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700;900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none !important;
  transition: ease all 0.5s;
  -webkit-transition: ease all 0.5s;
  -moz-transition: ease all 0.5s;
  -ms-transition: ease all 0.5s;
  -o-transition: ease all 0.5s;
}

input,
button,
select,
textarea {
  outline: none !important;
  font-family: "Source Sans Pro", sans-serif;
}

/*TEXT STYLES*/
h1,
h2,
h3,
h4 {
  font-family: "Source Sans Pro", sans-serif;
}

.dark {
  color: #50535a;
}

.med {
  color: #626c7a;
}

.light {
  color: #a87b4f;
}

.bold {
  font-weight: 600;
}

.grey {
  background: #F5F6F7;
}

.white {
  color: #fff;
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 25px;
}

.underline {
  border-bottom: 1px solid #E7E7E7;
  margin-bottom: 20px;
}

.shadow {
  box-shadow: 1px 3px 5px #CCC, 1px -3px 5px #CCC;
}

a:hover {
  text-decoration: none;
}

.fullheight {
  height: 100%;
}

/*PAGE SECTION SIZES*/
/*LOGO*/
nav {
  /*	position: absolute;*/
  z-index: 999;
}

nav img {
  /*	margin-left: 52px;
  position: absolute;*/
  z-index: 999;
}

/* ul { */
/* 	text-align: right; */
/* 	height: 57px; */
/* 	padding-top: 10px; */
/* } */
.top-menu-item {
  list-style: none;
  display: inline-block;
  height: 100%;
}

.top-menu-item a {
  font-size: 1.3em;
  letter-spacing: 0.1em;
  font-weight: 300;
  padding: 20px 25px;
}

.btn-primary {
  background: #6083a7;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 7px 25px;
  border-radius: 5px;
  border: none;
}

.btn-primary:hover {
  color: #fff;
  background: #1e3c57;
}

.btn-warning:hover {
  color: #fff;
  background-color: #eea236;
  border-color: #BD812B;
}

.btn-blue {
  background: rgb(96, 131, 167);
  border: none;
  padding: 8px 15px;
  color: #fff;
  text-transform: none;
}

.btn-blue.focus,
.btn-blue:focus,
.btn-blue:hover {
  background: rgb(74, 104, 134);
  color: #DADADA;
  text-decoration: none;
}

.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}

.mainBox {
  height: 100%;
  background: #eee;
}

.description {
  margin-top: 4%;
}

.description h1 {
  font-size: 2.2em;
}

.description h3 {
  margin-right: 10%;
}

.description .btn {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 23px;
}

.space {
  margin-left: 20px;
}

.mainimg {
  margin-left: 80px;
  margin-top: 30px;
  width: 80%;
  position: relative;
  max-width: 700px;
}

.featureBox {
  background: #F5F6F7;
  color: #50535a;
  bottom: 0;
  padding-top: 60px;
  padding-bottom: 50px;
  vertical-align: bottom;
  position: fixed;
  width: 100%;
  z-index: 99;
}

.feature {
  text-align: center;
}

.feature img {
  height: 100px;
}

.feature p {
  text-align: left;
  width: 75%;
  margin: 0 auto;
  font-size: 1.1em;
  text-indent: 20px;
}

.features-section {
  margin-top: 60px;
  margin-bottom: 60px;
  background: #fff;
  padding-top: 20px;
  padding-bottom: 40px;
  -webkit-box-shadow: 1px 1px 4px 0px rgb(115, 115, 115);
  -moz-box-shadow: 1px 1px 4px 0px rgb(115, 115, 115);
  box-shadow: 1px 1px 4px 0px rgb(115, 115, 115);
}

.features-section h2 {
  padding: 20px 0 30px 0;
}

/*FLIP ANIMATION*/
.flip {
  -webkit-perspective: 800;
  perspective: 800;
  -ms-perspective: 800;
}

.flip .card.flipped {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
  -ms-transform: rotateX(-180deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}

.flip .card {
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -webkit-transition: 1s;
  transition: 1s;
  -ms-transition: 1s;
}

.flip .card .face {
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  ms-backface-visibility: hidden;
  z-index: 2;
}

.flip .card .front {
  z-index: 1;
  background: #F5F5F5;
}

.flip .card .back {
  -webkit-transform: rotatex(-180deg);
  transform: rotatex(-180deg);
  -ms-transform: rotatex(-180deg);
  color: #000;
  margin-top: -100px;
}

.intro-list {
  margin: 30px 0;
}

.img-container {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin-top: 0;
  overflow: visible;
  padding-top: 50px;
}

.img-container .bg {
  width: 100%;
  position: absolute;
  left: 0;
  display: none;
}

.map {
  z-index: -1;
}

.caption {
  background: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  padding: 15px;
  border: 1px solid #D0CBCB;
  position: absolute;
  display: none;
}

.caption h4 {
  font-size: 15px;
  line-height: 10px;
  margin: 0;
}

.caption img {
  width: 30px;
  height: auto;
}

.monitor-text {
  font-size: 1.5em;
  padding: 15px;
  text-align: center;
  color: #FFF;
  background: rgb(67, 69, 73);
  border: 1px solid rgb(67, 69, 73);
  color: #FFF;
  border-radius: 5px 5px 0px 0px;
}

.road-text {
  margin-top: 10%;
  margin-left: 1%;
}

.on-text {
  margin-top: 10%;
  margin-left: 16%;
}

.cpt-text {
  margin-top: 14%;
  margin-left: 1%;
}

.restrict-text {
  margin-top: 18%;
  margin-left: 1%;
}

.alerts-text {
  margin-top: 1%;
  margin-left: 11%;
}

.message-text {
  margin-top: 15%;
  margin-left: 33%;
}

.caption p {
  margin: 0;
  line-height: 20px;
  margin-left: 30px;
  color: #666;
}

.screen {
  line-height: 20px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #D0CBCB;
  margin-top: -50px;
  border-radius: 5px;
  display: none;
  min-width: 600px;
  position: absolute;
  right: 0;
  top: 50px;
}

.screen img {
  width: 20px;
}

.screen span {
  font-weight: 600;
}

.progress {
  padding: 0;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: inline-block;
}

.min {
  background: #fdd766;
}

.max {
  background: #92c27d;
}

.exit {
  background: #de6666;
}

ul#services {
  list-style: none;
  padding: 15px 0;
}

ul#services li {
  margin: 0;
  padding: 0px 0px 15px 50px;
  vertical-align: middle;
  list-style-position: outside;
}

ul#services .shipping {
  background: url(../images/truckcontour-01.png) no-repeat left top;
}

ul#services .delivery {
  background: url(../images/boxcontour-01.png) no-repeat left top;
}

ul#services .touring {
  background: url(../images/mapcontour-01.png) no-repeat left top;
}

ul#services .personal {
  background: url(../images/eyecontour-01.png) no-repeat left top;
}

ul#services .corporate {
  background: url(../images/corpcontour-01.png) no-repeat left top;
}

/*MEDIA QUERIES Also added a max-width to mainimg class above screen*/
@media screen and (max-width: 1280px), screen and (max-height: 850px) {
  .description h1 {
    font-size: 1.5em;
  }
  .description h2 {
    font-size: 0.8em;
  }
  .description h3 {
    font-size: 0.5em;
  }
  .description .btn {
    margin-top: -20px;
    font-size: 0.5em;
  }
  .description {
    margin-top: 10px;
  }
  .mainimg {
    margin-left: 40px;
  }
  .featureBox {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .card .back {
    zoom: 0.7;
    -ms-zoom: 0.7;
    -webkit-zoom: 0.7;
  }
}
@media screen and (min-width: 1920px) {
  .feature p {
    display: inline;
  }
  .description {
    margin-top: 5%;
  }
  .mainimg {
    margin-top: 5%;
  }
}
@media screen and (max-height: 800px) {
  .featureBox {
    position: absolute;
    top: 580px;
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .menu-offset {
    margin-left: 299px;
  }
}
@media screen and (min-width: 1475px) {
  .col-xlg-1 {
    width: 8.33333333%;
  }
  .col-xlg-2 {
    width: 16.66666667%;
  }
  .col-xlg-3 {
    width: 25%;
  }
  .col-xlg-4 {
    width: 33.33333333%;
  }
  .col-xlg-5 {
    width: 41.66666667%;
  }
  .col-xlg-6 {
    width: 50%;
  }
  .col-xlg-7 {
    width: 58.33333333%;
  }
  .col-xlg-8 {
    width: 66.66666667%;
  }
  .col-xlg-9 {
    width: 75%;
  }
  .col-xlg-10 {
    width: 83.33333333%;
  }
  .col-xlg-11 {
    width: 91.66666667%;
  }
  .col-xlg-12 {
    width: 100%;
  }
}
/* FIX for browsers with no 3d transform or refect */
.no-csstransforms3d nav a span:after {
  display: none;
}

.no-csstransforms3d nav a:hover span {
  color: #fff;
  background: #3D4149;
}

.no-csstransforms3d nav a:hover span {
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
}

/* ie10 fix */
.no-cssreflections nav a span:after {
  display: none;
}

.no-cssreflections nav a:hover span {
  color: #fff;
  background: #3D4149;
}

.no-cssreflections nav a:hover span {
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
}

html,
body {
  color: #898989;
  font-size: 15px;
  font-family: "Source Sans Pro", sans-serif;
  line-height: normal;
  font-weight: 400;
  overflow-x: hidden !important;
  background-color: #ffffff;
}

body {
  overflow-y: visible;
}

a {
  color: #1f1f1f;
  text-decoration: none !important;
  outline: none !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
a:hover, a:focus {
  color: #252525;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  font-weight: normal;
  position: relative;
  padding: 0;
  line-height: normal;
  color: #ff753a;
  margin: 0;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #000000;
  text-decoration: none !important;
}

h1 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.2em;
}

h2 {
  font-size: 54px;
  font-weight: 500;
  letter-spacing: -2px;
  margin-bottom: 25px;
  line-height: 50px;
}

h3 {
  font-size: 32px;
  color: #000000;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
}

h4 {
  font-size: 24px;
  color: #000000;
  line-height: 21px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 30px 0 20px;
}

h5 {
  font-size: 18px;
  color: #000000;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
}

h6 {
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #000000;
}

.small_heading.main-heading {
  margin-bottom: 20px;
  width: 100%;
}
.small_heading.main-heading h2 {
  font-size: 21px;
}
.small_heading.main-heading::after {
  top: 18px;
}

p {
  color: #999;
  font-size: 14px;
  line-height: 21px;
  font-weight: 300;
  margin-bottom: 15px;
}
p.large {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
}
p.large_2 {
  font-weight: 500;
  font-size: 14px;
  color: #000000;
}

.lead {
  font-size: 18px;
  line-height: 30px;
  color: #767676;
  margin: 0 0 15px;
}

blockquote {
  margin: 20px 0;
  padding: 30px;
}

ol,
ul {
  list-style: none;
  margin: 0;
}

.list-check {
  list-style: none !important;
}
.list-check i {
  margin-left: -20px;
}

.text-underline {
  text-decoration: underline;
}

.color_black p,
.color_black p.large,
.color_black ul,
.color_black ul li {
  color: #000;
}

.black_color {
  color: #000 !important;
}

.white_fonts p,
.white_fonts h1,
.white_fonts h2,
.white_fonts h3,
.white_fonts h4,
.white_fonts h5,
.white_fonts h6,
.white_fonts ul,
.white_fonts ul li,
.white_fonts ul li a,
.white_fonts ul i,
.white_fonts .post_info i,
.white_fonts div,
.white_fonts a.read_more,
.white_fonts h2 span {
  color: #fff !important;
}

.light_gray_fonts p,
.light_gray_fonts h1,
.light_gray_fonts h2,
.light_gray_fonts h3,
.light_gray_fonts h4,
.light_gray_fonts h5,
.light_gray_fonts h6,
.light_gray_fonts ul,
.light_gray_fonts ul li,
.light_gray_fonts ul li a,
.light_gray_fonts ul i,
.light_gray_fonts .post_info i,
.light_gray_fonts div,
.light_gray_fonts a.read_more {
  color: #898989 !important;
}

.extra_light_font {
  font-weight: 300 !important;
}

.light_font {
  font-weight: 300 !important;
}

.normal_font {
  font-weight: 400 !important;
}

.semi_bold_font {
  font-weight: 600 !important;
}

.bold_font {
  font-weight: 700 !important;
}

.extra_bold_font {
  font-weight: 900 !important;
}

.text_align_left {
  text-align: left;
}

.text_align_right {
  text-align: right;
}

.text_align_center {
  text-align: center;
}

.center {
  width: 100%;
  display: flex;
  justify-content: center;
}

.margin_0 {
  margin: 0 !important;
}

.padding_0 {
  padding: 0 !important;
}

.padding-top_0 {
  padding-top: 0 !important;
}

.padding-bottom_0 {
  padding-bottom: 0 !important;
}

.padding-bottom_1 {
  padding-bottom: 10px !important;
}

.padding-bottom_2 {
  padding-bottom: 20px !important;
}

.padding-bottom_3 {
  padding-bottom: 30px !important;
}

.padding-bottom_4 {
  padding-bottom: 40px !important;
}

.padding-bottom_5 {
  padding-bottom: 50px !important;
}

.margin_top_0 {
  margin-top: 0 !important;
}

.margin_top_30 {
  margin-top: 30px;
}

.margin_bottom_30 {
  margin-bottom: 30px;
}

a,
.btn {
  text-decoration: none !important;
  outline: none !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 50px;
  border-radius: 100px;
  padding: 0 32px;
  text-align: center;
  line-height: 52px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 10px;
  color: #fff;
  border: 1px solid transparent;
  background-color: #ff753a;
  cursor: pointer;
}
.btn:hover, .btn:focus {
  background: #252525;
  color: #fff;
}
.btn-custom {
  margin-top: 20px;
  background-color: transparent;
  border: 2px solid #ddd;
  padding: 12px 40px;
  font-size: 16px;
  color: #000000;
}

.btn-green,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-green {
  background-color: #34a853;
  color: #fff;
  border-color: #34a853;
}
.btn-green:hover, .btn-green:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-green:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-green:focus {
  background: transparent;
  color: #34a853;
}

.btn-orange,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-orange {
  background-color: #f0a116;
  color: #fff;
  border-color: #f0a116;
}
.btn-orange:hover, .btn-orange:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-orange:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-orange:focus {
  background: transparent;
  color: #f0a116;
}

.btn-dark-cyan,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-dark-cyan {
  background-color: #132f4a;
  color: #fff;
  border-color: #132f4a;
}
.btn-dark-cyan:hover, .btn-dark-cyan:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-dark-cyan:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-dark-cyan:focus {
  background: transparent;
  color: #132f4a;
}

.btn-transparent,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-transparent {
  background-color: transparent;
  color: #487399;
  border-color: #487399;
}
.btn-transparent:hover, .btn-transparent:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-transparent:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-transparent:focus {
  background: #487399;
  color: #fff;
}

button {
  transition: ease all 0.5s;
  cursor: pointer;
}

.bt_main {
  color: #fff;
  font-size: 14px;
  min-width: 148px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  line-height: 50px;
  font-weight: 500;
  border: none;
  padding: 0 35px;
  background: #ff3d00;
  border-radius: 100px;
}
.bt_main:hover, .bt_main:focus {
  color: #fff;
  background: #252525;
}
.bt_main.white_bt {
  background: #fff;
  color: #000000;
}
.bt_main.white_bt:hover, .bt_main.white_bt:focus {
  color: #fff;
  background: #ff753a;
}

.field button {
  padding: 0 35px;
  background: #c30000;
  color: #fff;
  font-size: 14px;
  min-width: 148px;
  height: 48px;
  line-height: 50px;
  font-weight: 500;
  border: none;
  margin-top: 15px;
  border-radius: 5px;
  transition: ease all 0.5s;
}
.field button:hover, .field button:focus {
  background: #fff;
  color: #ff753a;
}
.field input {
  width: 100% !important;
  margin-top: 10px;
  border: none;
  min-height: 45px;
  padding: 0 25px;
  line-height: 45px;
  font-size: 14px;
}
.field textarea {
  width: 100%;
  margin-top: 10px;
  border: none;
  font-size: 14px;
  min-height: 100px;
  padding: 30px 25px;
  line-height: 1.6;
}

.border_circle_bt {
  border-radius: 50px;
}

.img-responsive {
  max-width: 100%;
}

button,
input,
select,
textarea,
option {
  font-family: "Source Sans Pro", sans-serif;
}

.text_align_left {
  text-align: left;
}

.text_align_right {
  text-align: right;
}

.text_align_center {
  text-align: center;
}

@media screen and (max-width: 992px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 42px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 14px;
  }
  p {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 14px;
  }
  h6 {
    font-size: 12px;
  }
  p {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 13px;
  }
  h6 {
    font-size: 12px;
  }
  p {
    font-size: 14px;
  }
}
/* ================================================================ *\
	#Reset
\* ================================================================ */
* {
  padding: 0;
  margin: 0;
  outline: 0;
}

/* ================================================================ *\
	#Base
\* ================================================================ */
article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

html,
body {
  height: 100%;
}

html {
  overflow-y: auto;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background: #15141a;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  color: #999;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  border: 0;
  vertical-align: middle;
}

strong {
  font-weight: bold;
}

h1,
h2,
h3,
h4 {
  color: #1a1a1a;
  font-weight: 600;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h5 {
  margin: 7px 0 13px;
}

button,
input,
select,
textarea {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: inherit;
  color: inherit;
  -webkit-font-smoothing: antialiased;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
}

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

button {
  overflow: visible;
}

textarea {
  overflow: auto;
  resize: none;
}

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

th,
td {
  padding: 0;
}

/* ================================================================ *\
	#Helpers
\* ================================================================ */
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.hidden {
  display: none;
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

/* ================================================================ *\
	#Icons
\* ================================================================ */
.ico {
  display: inline-block;
  vertical-align: middle;
}

.ico-bolt {
  width: 16px;
  height: 16px;
  background-position: -125px 0px;
}

.ico-cup {
  width: 16px;
  height: 16px;
  background-position: -146px 0px;
}

.ico-device {
  width: 32px;
  height: 32px;
  background-position: -167px 0px;
}

.ico-gauge {
  width: 16px;
  height: 16px;
  background-position: -204px 0px;
}

.ico-gear {
  width: 32px;
  height: 32px;
  background-position: -225px 0px;
}

.ico-envelope {
  width: 32px;
  height: 32px;
  background-position: -262px 0px;
}

.ico-marker {
  width: 32px;
  height: 32px;
  background-position: -299px 0px;
}

.ico-monitor {
  width: 32px;
  height: 32px;
  background-position: -336px 0px;
}

.ico-mouse {
  width: 16px;
  height: 16px;
  background-position: -373px 0px;
}

.ico-thumb {
  width: 33px;
  height: 32px;
  background-position: -394px 0px;
}

.icon-bar {
  background: #fff;
}

/* ================================================================ *\
	#Buttons
\* ================================================================ */
.btn {
  padding: 14px 26px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.btn {
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.btn-default {
  color: #512DA8;
  border: 1px solid #e0e0e0;
}

.btn-default:hover {
  color: #fff;
  background: #512DA8;
  border: 1px solid #512DA8;
}

.btn-primary {
  background: #512DA8;
  border: 1px solid #512DA8;
}

.btn-primary:hover {
  background: #8559DA;
  border-color: #8559DA;
}

.btn-dark {
  padding: 14px 30px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-dark:hover {
  background: #fff;
  color: #512DA8;
}

/* ================================================================ *\
	#Containers
\* ================================================================ */
.wrapper {
  background: rgb(255, 255, 255);
  min-height: 100vh;
}

/* ================================================================ *\
	#Forms
\* ================================================================ */
.form-control {
  height: 50px;
  padding: 14px 17px;
  text-transform: uppercase;
  background: #fff;
  border: 1px solid #d0d0d1;
}

.form-control:focus {
  box-shadow: none;
  border-color: #512DA8;
}

/* ================================================================ *\
	#Header
\* ================================================================ */
.header {
  min-height: 170px;
  background: #15141a;
  background-size: cover;
}

.home .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: auto;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.home .header .navbar {
  background: transparent;
  margin-bottom: 0;
}

.home .header.is-scrolled {
  background: rgba(21, 20, 26, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.admin-bar.home .header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar.home .header {
    top: 46px;
  }
}
.navbar {
  margin-bottom: 26px;
}

.nav {
  font-size: 16px;
  font-weight: 600;
  margin: 27px 0 0 0;
}

.nav > li > a {
  color: #fffefe;
  padding: 10px 11px;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background: transparent;
}

.nav > li > a:after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 8px auto 0;
  background: transparent;
  border-width: 0 20px;
  border-style: solid;
  border-color: transparent;
}

.nav > li > a:after {
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.nav > .active > a:after,
.nav > li > a:hover:after,
.nav > li > a:focus:after {
  border-color: #512DA8;
}

.navbar-toggle {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-toggle:active {
  background: rgba(255, 255, 255, 0.2);
}

.jumbotron {
  background: transparent;
  padding: 0;
  margin: 0;
  min-height: 535px;
}

.hero-banner {
  background-color: #15141a;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  padding-top: 140px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: hidden;
}

@media (max-width: 991px) {
  .hero-banner {
    padding-top: 100px;
  }
}
.jumbotron-content {
  padding-top: 48px;
}

.jumbotron-image {
  padding-left: 97px;
  display: table-cell;
  height: 535px;
  text-align: right;
  width: 100%;
  vertical-align: bottom;
}

.jumbotron-image img {
  max-width: 100%;
}

.jumbotron h5 {
  color: #512DA8;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.jumbotron h1 {
  margin: 15px 0 19px;
  color: #fff;
  font-size: 60px;
}

.jumbotron p {
  font-size: 18px;
  margin-right: 20px;
}

.jumbotron-actions {
  margin-top: 60px;
  font-size: 0;
}

.jumbotron-actions .btn + .btn {
  margin-left: 20px;
}

.jumbotron-form-contacts {
  margin: 17px 0;
  padding: 27px 40px;
  background: #fff;
}

.jumbotron-form-contacts .form-head {
  margin-bottom: 31px;
}

.jumbotron-form-contacts .form-head p {
  font-size: 14px;
}

.jumbotron-form-contacts .form-head h3 {
  margin: 0;
}

.jumbotron-form-contacts .form-group {
  margin: 20px 0 0;
}

.jumbotron-form-contacts .form-body {
  margin-bottom: 15px;
}

.subscribe {
  margin: 53px 0 20px;
}

.form-control-subscribe {
  display: inline-block;
  vertical-align: middle;
  margin: 10px 6px;
  max-width: 230px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.2);
  text-transform: none;
}

.form-control-subscribe:focus {
  border-color: #fff;
  color: #fff;
}

/* ================================================================ *\
	#Section
\* ================================================================ */
.section {
  padding: 56px 0 30px;
}

.section-title {
  margin: 9px 0 0;
}

.section-image img {
  max-width: 100%;
}

.section-head {
  margin-bottom: 25px;
}

.section-head h5 {
  color: #512DA8;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-head h2:after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 36px 0 0;
  background: transparent;
  border-width: 0 20px;
  border-style: solid;
  border-color: #512DA8;
}

/* ================================================================ *\
	#Features
\* ================================================================ */
.section-features {
  text-align: center;
  border-bottom: 1px solid #ededed;
}

.section-features .section-head h2:after {
  margin-left: auto;
  margin-right: auto;
}

.features {
  padding: 49px 0 30px;
}

.feature-image {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto;
  border-radius: 50%;
}

.feature-image .ico {
  position: absolute;
  left: 50%;
  top: 50%;
}

.feature-image .ico {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.feature-title {
  margin: 31px 0 12px;
}

.feature-entry {
  padding: 0 15px;
}

/* ================================================================ *\
	#About
\* ================================================================ */
.section-about {
  padding: 56px 0 45px;
}

.section-about .section-content {
  padding-top: 54px;
}

.section-about .section-title:after {
  margin: 27px 0 0;
}

.section-about-alt {
  padding: 52px 0 45px;
  background: #f2f2f2;
}

.section-about-alt .section-content {
  padding-top: 71px;
}

.section-about-alt .section-title {
  margin: 10px 0;
}

.list-features {
  padding: 13px 0;
  list-style: none outside none;
  color: #1b1b1b;
}

.list-features li {
  padding: 5px 0 6px;
}

.list-features .ico {
  margin-right: 5px;
}

/* ================================================================ *\
	#Callout
\* ================================================================ */
.callout {
  padding: 43px 0 58px;
  background: #15141a;
  overflow: hidden;
}

.callout-title {
  float: left;
  color: #fff;
  font-weight: 300;
}

.callout-title strong {
  font-weight: 600;
}

.callout-actions {
  float: right;
  margin-top: 17px;
  font-size: 0;
}

.callout-actions .btn + .btn {
  margin-left: 20px;
}

/* ================================================================ *\
	#Pricing
\* ================================================================ */
.section-pricing {
  text-align: center;
  padding: 51px 0 30px;
}

.section-pricing .section-entry p {
  font-size: 18px;
  font-weight: 400;
}

.section-pricing .section-title:after {
  margin: 30px auto 0;
}

.plans {
  padding: 45px 0 30px;
}

.plans a {
  font-size: 20px;
  color: #337ab7;
}

.plans a:hover,
.plans a:focus {
  text-decoration: underline !important;
}

.plan {
  border-radius: 2px;
  border: 1px solid #e0e0e0;
}

.plan-head {
  border-bottom: 1px solid #e0e0e0;
}

.plan-title {
  height: 100px;
  margin: 0;
  padding: 24px 0 19px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1px solid #e0e0e0;
}

.plan-highlight .plan-title {
  color: #512DA8;
  border-color: #512DA8;
}

.plan-price {
  padding: 32px 0 35px;
}

.plan-highlight .plan-price {
  background: #512DA8;
  color: #fff;
}

.plan-price small {
  line-height: 1;
  display: block;
  font-size: 18px;
  margin-top: 5px;
}

.plan-highlight .plan-price small {
  color: #fff;
}

.plan-price span {
  color: #1a1a1a;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
}

.plan-highlight .plan-price span {
  color: #fff;
}

.plan-price em {
  vertical-align: super;
  font-size: 28px;
  font-style: normal;
}

.plan-body {
  padding: 45px 20px 29px;
}

.plan-entry {
  height: 104px;
  margin-bottom: 41px;
}

.plan-actions .btn {
  padding: 14px 40px;
}

/* ================================================================ *\
	#Contacts
\* ================================================================ */
.section-contacts {
  padding: 50px 0 0;
  background: #63727B;
  text-align: center;
}

.section-contacts .section-title:after {
  margin: 30px auto;
}

.contacts {
  padding: 30px 0 59px;
}

.section-contacts .contacts,
.section-contacts .contacts p,
.section-contacts .contacts a {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.section-contacts .contacts a:hover {
  color: #fff;
  text-decoration: underline;
}

.contacts .ico {
  margin-bottom: 26px;
}

.contacts a {
  color: #999;
}

.contacts a:hover {
  color: #512DA8;
  text-decoration: none;
}

.form-contacts-outer {
  position: relative;
  z-index: 50;
}

.form-contacts {
  margin-bottom: -50px;
  width: 100%;
  padding: 60px 72px 40px;
  background: #37474F;
}

.form-contacts .form-group {
  margin-bottom: 20px;
}

.form-contacts .form-control {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.2);
}

.form-contacts textarea.form-control {
  height: 190px;
}

.form-contacts .form-control:focus {
  border-color: #fff;
  color: #fff;
}

.form-contacts .has-error .form-controls > * {
  border-color: #f00;
}

.form-contacts .form-actions {
  text-align: right;
}

.map {
  height: 370px;
}

/* ================================================================ *\
	#Fotoer
\* ================================================================ */
.footer {
  background-color: #15141a !important;
  color: #444348;
  text-align: center;
  padding: 95px 0 45px 0;
}

.copyright {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.copyright a {
  color: #444348;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}

.copyright a:hover {
  color: #fff;
}

.footer-socials {
  margin-bottom: 16px;
}

.footer-socials ul {
  display: inline-block;
  list-style: none outside none;
  font-size: 0;
}

.footer-socials li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 17px;
}

.footer-socials a {
  display: block;
  background-image: url("../pictures/sprite.png");
  font-size: 0;
  line-height: 0;
  text-indent: -4000px;
}

.footer-socials .link-behance {
  width: 19px;
  height: 13px;
  background-position: -456px 0px;
}

.footer-socials .link-behance:hover {
  background-position: -432px 0px;
}

.footer-socials .link-dribble {
  width: 18px;
  height: 18px;
  background-position: -503px 0px;
}

.footer-socials .link-dribble:hover {
  background-position: -480px 0;
}

.footer-socials .link-facebook {
  width: 10px;
  height: 18px;
  background-position: -541px 0px;
}

.footer-socials .link-facebook:hover {
  background-position: -526px 0px;
}

.footer-socials .link-linkedin {
  width: 18px;
  height: 18px;
  background-position: -579px 0px;
}

.footer-socials .link-linkedin:hover {
  background-position: -556px 0px;
}

.footer-socials .link-twitter {
  width: 18px;
  height: 14px;
  background-position: -625px 0px;
}

.footer-socials .link-twitter:hover {
  background-position: -602px 0px;
}

/* ================================================================ *\
	#Camera
\* ================================================================ */
#section-camera {
  padding-bottom: 90px;
  position: relative;
}
#section-camera .section-body {
  display: flex;
  flex-wrap: wrap;
}
#section-camera .section-body p {
  font-size: 18px;
  font-weight: 400;
}
#section-camera .badge-new {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
}

.camera-image {
  max-width: 555px;
  flex: 1 0 100%;
}
.camera-image img {
  margin: -34% 0 -20% -52%;
}

.btn-outline-primary {
  padding: 17px 53px;
  border: 1px solid #512EA5;
  color: #512EA5;
  background: transparent;
  font-weight: 600;
  font-size: 20px;
}
.btn-outline-primary:hover {
  background: #512EA5;
  color: #fff;
  text-decoration: none;
}

/* ================================================================ *\
	#Responsive
\* ================================================================ */
@media only screen and (max-width: 1199px) {
  /* ================================================================ *\
        #Callout
    \* ================================================================ */
  .callout-title,
  .callout-actions {
    float: none;
    text-align: center;
  }
  .callout-actions {
    margin-top: 20px;
  }
  .callout-actions .btn,
  .callout-actions .btn + .btn {
    margin: 10px;
  }
}
@media only screen and (max-width: 991px) {
  /* ================================================================ *\
        #Base
    \* ================================================================ */
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
  /* ================================================================ *\
        #Header
    \* ================================================================ */
  .jumbotron-image {
    display: block;
    height: auto;
    padding-top: 50px;
    text-align: center;
  }
  .jumbotron-image img {
    height: auto;
  }
  /* ================================================================ *\
        #Section
    \* ================================================================ */
  .section-image {
    text-align: center;
  }
  /* ================================================================ *\
        #Features
    \* ================================================================ */
  .feature {
    padding-bottom: 40px;
  }
  /* ================================================================ *\
        #Testimonials
    \* ================================================================ */
  .section-testimonials {
    height: auto;
  }
  .slider-testimoinals {
    padding: 30px 0;
  }
  .slider-testimoinals .bx-controls {
    margin-top: 30px;
  }
  .testimonial {
    padding: 20px 40px;
  }
  /* ================================================================ *\
        #Plans
    \* ================================================================ */
  .plan {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  /* ================================================================ *\
        #Header
    \* ================================================================ */
  .nav {
    margin-top: 0;
    text-align: center;
  }
  .nav > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .nav > li > a {
    padding: 11px 0 5px;
  }
  .nav > li > a:after {
    margin-top: 6px;
  }
  .navbar > .container .navbar-brand {
    margin: 17px 0 0 15px;
  }
  .jumbotron-actions {
    margin-top: 20px;
    float: none;
    text-align: center;
  }
  .jumbotron-actions .btn,
  .jumbotron-actions .btn + .btn {
    margin: 10px;
  }
  .jumbotron-form-contacts .form-actions {
    text-align: center;
  }
  /* ================================================================ *\
        #Testimonials
    \* ================================================================ */
  .testimonial {
    padding: 40px 20px 0;
  }
  .testimonial-entry {
    text-align: center;
  }
  .testimoinal-author-avatar {
    display: block;
    margin: 0 auto 20px;
  }
  .testimonial-author-name {
    display: block;
    text-align: center;
  }
  /* ================================================================ *\
        #Contacts
    \* ================================================================ */
  .contacts .ico {
    margin-bottom: 10px;
  }
  .contacts p {
    margin-bottom: 35px;
  }
  .form-contacts-outer {
    height: 500px;
  }
  .form-contacts {
    padding: 30px;
  }
  .form-contacts .form-actions {
    text-align: center;
  }
  #section-camera {
    padding-bottom: 40px;
  }
  #section-camera .camera-image img {
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  #section-camera .btn-outline-primary {
    width: 100%;
    margin-top: 24px;
  }
}
/* ================================================================ *\
	#Utilities
\* ================================================================ */
.navbar-brand {
  width: 250px;
}

.navbar-brand > img,
.img {
  height: auto;
  width: 100%;
}

.jumbotron-actions a {
  display: inline-block;
  width: 190px;
}

.mb-2 {
  margin-bottom: 2rem;
}

.text-light {
  color: #fff;
}

.contacts img {
  height: 70px;
  width: auto;
}

.screens > div {
  padding: 5px;
}

.navbar-brand {
  height: 140px;
}

body.doc {
  background: #fff;
  color: #333;
  font-size: 15px;
}

/*# sourceMappingURL=main.css.map */
