/*
 * Vendor Prefix generator
 */
/*
 * a small mixin for easy use of rem with px as fallback
 * usage: @include x-rem(font-size, 14px)
 * usage: @include x-rem(margin, 0 12px 2 1.2)
 * usage: @include x-rem(padding, 1.5 24px)
 *
 * thanks to Eric Meyer for https://github.com/ericam/susy
 * and Hans Christian Reinl for http://drublic.de/blog/rem-fallback-sass-less/
 */
/*
 * Linear gradient generator. 'start' is top, 'end' is bottom. IE9 support not included using CSS SVG include.
 *
 * Use http://www.colorzilla.com/gradient-editor/ to generate IE9 SVG element
 *
 */
/****************** BUTTONS **************************/
/*
 * Linear gradient generator. 'start' is top, 'end' is bottom. IE9 support not included using CSS SVG include.
 *
 * Use http://www.colorzilla.com/gradient-editor/ to generate IE9 SVG element
 *
 */
.alert[style*=inline] {
  display: block !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #5A5A5A;
}

h1, .h1 {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  line-height: 56px;
  color: #041B29;
}

h2, .h2 {
  color: #000000;
  position: relative;
  font-family: "Fira Sans";
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  text-transform: capitalize;
}

h3 {
  color: #000000;
  font-family: "Fira Sans";
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 22px;
}

h4 {
  color: #000000;
  font-family: "Fira Sans";
  font-size: 34px;
  font-weight: 800;
  line-height: 60px;
}

p {
  margin: 0 0 20px;
  color: #000000;
  font-family: "Open Sans";
  font-style: normal;
  letter-spacing: normal;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
}

.btn-default {
  border-radius: 8px !important;
  color: #5A5A5A !important;
  border: solid 2px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #4DAFB6 0%, #6D67A8 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #fff inset !important;
  height: 45px !important;
  min-width: 120px !important;
  text-transform: capitalize !important;
  transition: 0.5s;
  text-align: center;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}
.btn-default:hover {
  box-shadow: 0 0 0 #fff inset !important;
  color: #ffffff !important;
  transition: 0.5s;
}
.btn-default:before {
  display: none;
}

.btn-arrow {
  height: 45px !important;
  min-width: 80px !important;
  text-transform: capitalize !important;
  position: relative;
  box-shadow: unset !important;
  background-color: transparent !important;
  padding: 10px 0;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #5A5A5A !important;
}
.btn-arrow:after {
  content: url("../img/btn-right-arrow.svg");
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  right: -24px;
  box-shadow: unset !important;
}
.btn-arrow:hover:after {
  content: url("../img/btn-right-arrow-hover.svg");
}
.btn-arrow:before {
  display: none;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 30px !important;
    line-height: 34px !important;
  }

  h2 {
    font-size: 25px !important;
    line-height: 35px !important;
  }

  h3 {
    font-size: 20px !important;
    line-height: 25px !important;
  }

  p {
    font-size: 16px !important;
    line-height: 26px !important;
  }
  p br {
    display: none;
  }

  a {
    font-size: 14px !important;
  }
}
a {
  color: #000000;
}
a:hover {
  color: #59A2CB;
}

img {
  max-width: 100%;
}

.social-links {
  list-style: none;
  padding: 0;
}
.social-links li {
  display: inline-block;
}

.btn-style {
  display: inline-block;
  position: relative;
  transition: 0.5s;
  border: 2px solid #EB742A;
  height: 55px;
  padding: 17px 50px 14px;
  text-align: center;
  background: #EB742A;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  min-width: 175px;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Open Sans";
  letter-spacing: 0.84px;
  text-decoration: none;
  box-shadow: 0 0 0 8px rgba(235, 116, 42, 0.3), 0 1px 6px rgba(0, 0, 0, 0.3);
  /*  &:before {
      content: "";
      position: absolute;
      background: $orange;
      width: 96%;
      height: 80%;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      z-index: -1;
      //box-shadow: 0 3px 8px rgb(0, 0, 0, 27%);
      transition: .5s;
    }*/
}
.btn-style:hover, .btn-style:focus, .btn-style:active {
  color: #EB742A;
  text-decoration: none;
  background: #ffffff;
}
.btn-style:hover:before, .btn-style:focus:before, .btn-style:active:before {
  background: #fff;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.btn-style.black {
  border: 2px solid #f9f9f9;
  text-align: center;
  background: #f9f9f9;
  color: #ffffff;
  box-shadow: none;
}
.btn-style.black:hover, .btn-style.black:focus, .btn-style.black:active {
  color: #f9f9f9;
  text-decoration: none;
  background-color: #ffffff;
}
.btn-style.black:hover:before, .btn-style.black:focus:before, .btn-style.black:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.btn-style.white {
  border: 2px solid #FF985A;
  text-align: center;
  background: #ffffff;
  color: #FF985A;
  box-shadow: none;
}
.btn-style.white:hover, .btn-style.white:focus, .btn-style.white:active {
  color: #ffffff;
  text-decoration: none;
  background: #FF985A;
}
.btn-style.white:hover:before, .btn-style.white:focus:before, .btn-style.white:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.btn-link {
  color: #5A5A5A;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

label {
  line-height: 26px;
  color: #5A5A5A;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  label {
    font-size: 14px !important;
    margin: 0;
    line-height: 16px !important;
  }
}

.form-control {
  border: 0 solid #eeeeee;
  background-color: rgba(69, 69, 69, 0.05);
  box-shadow: none;
  height: 54px;
  border-radius: 0;
  padding-left: 15px;
  font-family: "Open Sans";
  color: #59A2CB;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}
.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}
.form-control:-ms-input-placeholder {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .form-control {
    height: 40px;
  }
}
.form-control:focus, .form-control:active, .form-control:hover {
  color: #59A2CB;
  outline: none;
  box-shadow: none;
  background-color: rgba(69, 69, 69, 0.05);
}

.form-group {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .form-group {
    margin-bottom: 15px;
  }
}

textarea.form-control {
  padding-top: 15px;
  padding-bottom: 15px;
  min-height: 150px;
  max-height: 200px;
  resize: none;
}
@media screen and (max-width: 767px) {
  textarea.form-control {
    min-height: 100px;
    max-height: 100px;
  }
}

.screen-reader-response, .wpcf7-validation-errors {
  display: none;
}

.wpcf7-not-valid-tip {
  color: #5A5A5A;
  text-shadow: 0 0 0;
  line-height: 47px;
  font-size: 12px;
  font-weight: normal;
  display: block;
  margin-top: 8px;
}

.wpcf7-mail-sent-ok {
  text-align: center;
  padding: 10px !important;
  margin: 20px auto 0;
  font-weight: 600;
  width: 100%;
  display: block;
  max-width: 100%;
  clear: both;
  margin-top: 90px;
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

div.wpcf7-validation-errors {
  border: 2px solid #f7e700;
  text-align: center;
  padding: 10px 30px !important;
  font-weight: 600;
  width: 100%;
  display: block;
  max-width: 100%;
  clear: both;
}

.pagination {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px;
  display: inline-block;
}
.pagination li {
  display: inline-block;
  margin: 0 3px;
}
.pagination li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
  display: inline-block;
  height: 34px;
  width: 34px;
  padding: 2px;
  border: 1px solid #b21212;
  color: #b21212;
  transition: 0.5s;
  padding-top: 6px;
}
.pagination li a:hover, .pagination li a:focus, .pagination li a:active {
  background: #b21212;
  color: #ffffff;
  border: 1px solid #b21212;
  text-decoration: none;
}
.pagination li.active a {
  background: #b21212;
  color: #ffffff;
  border: 1px solid #b21212;
}
.pagination li.active a:hover {
  background: #b21212;
  color: #ffffff;
  border: 1px solid #b21212;
  text-decoration: none;
}

.wpcf7-not-valid-tip {
  color: red;
  line-height: 20px;
  font-size: 12px !important;
  font-weight: normal;
  margin-top: 8px;
}

iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.container.smaller {
  max-width: 900px;
}

.container.more-smaller {
  max-width: 700px;
}

.blue-bg {
  background: #59A2CB;
}

.silver-bg {
  background: #f9f9f9;
}

.red-bg {
  background: #b21212;
}
.red-bg .btn-style {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.red-bg .btn-style:before {
  background: #ffffff;
}
.red-bg .btn-style:hover, .red-bg .btn-style:active, .red-bg .btn-style:focus {
  color: #b21212;
}

section {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 40px 0;
  }
}

.no-style-submit {
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  padding: 14px 20px;
  width: 100%;
  text-indent: 0;
  z-index: 9999;
  font-weight: 500;
  transition: 0.5s;
}

.container > h2 {
  text-align: center;
  position: relative;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .container > h2 {
    margin-bottom: 30px;
  }
}

.owl-dot:hover, .owl-dot:focus, .owl-dot:active, .owl-nav button:hover, .owl-nav button:focus, .owl-nav button:active {
  outline: none;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-list li {
  display: inline-block;
}

.owl-dots {
  display: none !important;
}

.owl-carousel .owl-nav span {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .owl-carousel .owl-nav {
    display: none !important;
  }
}
.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  margin: auto;
  text-indent: -99px;
  padding: 0;
  right: 35px;
}
.owl-carousel .owl-nav .owl-prev:before {
  content: url("../img/slider-left-arrow-dim.svg");
  margin: auto;
  top: -1px;
  position: relative;
}
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  margin: auto;
  text-indent: -99px;
  padding: 0;
}
.owl-carousel .owl-nav .owl-next:before {
  content: url("../img/slider-right-arrow.svg");
  margin: auto;
}

img.float-left {
  margin-right: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  img.float-left {
    margin-right: 0;
    width: 100%;
  }
}

img.float-right {
  margin-left: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  img.float-right {
    margin-left: 0;
    width: 100%;
  }
}

.image-wrapper {
  overflow: hidden;
}
.image-wrapper img {
  transition: 0.5s;
}
.image-wrapper:hover img, .image-wrapper:focus img, .image-wrapper:active img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

#menu-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  #menu-btn {
    display: block;
    position: absolute;
    top: 40px;
    right: 15px;
    height: 30px;
    width: 30px;
    background: url("../img/002-menu.svg") no-repeat;
    background-size: 100%;
    z-index: 9999;
  }
  #menu-btn.active {
    background: url("../img/002-cancel.svg") no-repeat;
    background-size: 100%;
    z-index: 99999;
    position: fixed;
    top: 45px;
    right: 20px;
    left: auto;
    margin: auto;
    height: 50px;
    width: 20px;
  }
}

#main-menu {
  display: block;
}
@media screen and (max-width: 767px) {
  #main-menu {
    display: none;
    background: #000000;
    margin-top: 0;
    position: fixed;
    height: 100%;
    text-align: center !important;
    z-index: 999;
    padding: 20px 0;
    left: 0;
    width: 100%;
    top: 0;
    padding-top: 0;
  }
  #main-menu ul {
    padding-top: 100px;
    top: 0;
    width: 100%;
  }
  #main-menu ul li {
    display: block;
    text-align: center;
  }
  #main-menu ul li a {
    display: block;
    color: #ffffff !important;
  }
  #main-menu.active {
    display: block;
  }
}

.captcha-image {
  border-color: #eeeeee !important;
  width: 100%;
}

.split2 {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
@media screen and (max-width: 767px) {
  .split2 {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

.split3 {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
}
@media screen and (max-width: 767px) {
  .split3 {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

.gray-bg {
  background: #f9f9f9;
}

.text-black {
  color: #000000 !important;
}

[class^=icon-], [class^=svg-] {
  display: inline-block;
}

@media screen and (max-width: 991px) {
  [class^=svg-b] {
    display: none !important;
  }
}

.ekko-lightbox-nav-overlay {
  display: flex !important;
  z-index: 999999;
}

.standard-content {
  font-size: 16px;
  line-height: 24px;
  /*  > * {
      line-height: 1.75;
      text-align: left !important;
      &:last-child {
        margin-bottom: 0;
      }
    }*/
}
.standard-content h3, .standard-content h4, .standard-content h5, .standard-content h6 {
  margin: 0 0 10px;
}
.standard-content h3 {
  font-weight: 700;
  margin: 35px 0 5px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .standard-content h3 {
    font-size: 16px;
    line-height: 24px;
    margin: 25px 0 5px;
  }
}
.standard-content h4 {
  font-weight: 600;
  padding: 12px 0 5px;
  margin: 0;
}
.standard-content hr {
  margin: 0 0 15px;
  border-top: 1px solid #d6dfe8;
}
.standard-content p {
  font-size: 16px;
  margin: 0 0 20px;
}
.standard-content ol, .standard-content ul {
  font-size: 16px;
}
.standard-content ol.wrapped li, .standard-content ul.wrapped li {
  font-weight: 600;
  color: #5A5A5A;
  font-size: 16px;
}
.standard-content ol.wrapped li span, .standard-content ul.wrapped li span {
  font-weight: 400;
  color: #5A5A5A;
  display: inline-block;
  vertical-align: top;
}
.standard-content ol.wrapped li span {
  margin-left: 3px;
}
.standard-content ul {
  padding: 0;
  margin: 20px 0;
  padding-left: 20px;
  list-style: none;
  font-size: 16px;
}
.standard-content ul li {
  font-size: 16px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.standard-content ul li ul {
  margin: 0;
  font-size: 16px;
}
.standard-content ul li:before {
  content: "";
  left: 0;
  top: 9px;
  background: #ffffff;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  border: 2px solid #b21212;
  display: block;
  position: absolute;
  transition: 0.1s;
}
.standard-content img {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
  margin: 20px 0;
}
.standard-content img.left, .standard-content img[style*="float: left;"], .standard-content img[style*="float:left;"] {
  width: auto;
  height: auto;
  float: left;
  margin: 7px 15px 10px 0;
}
@media screen and (max-width: 767px) {
  .standard-content img.left, .standard-content img[style*="float: left;"], .standard-content img[style*="float:left;"] {
    float: none !important;
    display: block;
    margin: 20px 0 20px 0;
  }
}
.standard-content img.right, .standard-content img[style*="float: right;"], .standard-content img[style*="float:right;"] {
  width: auto;
  height: auto;
  float: right;
  margin: 7px 0 10px 15px;
}
@media screen and (max-width: 767px) {
  .standard-content img.right, .standard-content img[style*="float: right;"], .standard-content img[style*="float:right;"] {
    float: none !important;
    display: block;
    margin: 20px 0 20px 0;
  }
}
.standard-content img.kv-play-icon {
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  margin: auto !important;
}
.standard-content figure {
  margin: 0 0 10px;
}
.standard-content figure figcaption {
  text-align: center;
  font-style: italic;
  font-size: 12px;
}
.standard-content dl {
  margin: 0 0 10px;
  font-size: 16px;
}
.standard-content dl dd {
  padding: 0 0 0 10px;
  margin: 0 0 10px;
  font-size: 16px;
}
.standard-content meter {
  width: 100%;
  margin: 0 0 10px;
}
.standard-content progress {
  width: 100%;
  margin: 0 0 10px;
}
.standard-content details {
  margin: 0 0 10px;
}
.standard-content details summary {
  font-weight: bold;
}
.standard-content details p {
  margin-left: 15px;
}
.standard-content blockquote {
  margin: 0 0 30px;
}
.standard-content blockquote:before, .standard-content blockquote:after {
  font-size: 20px;
  content: '"';
}
.standard-content table {
  visibility: hidden;
}
.standard-content table.table {
  visibility: visible;
}
.standard-content .table-wrapper {
  width: 100%;
  overflow-y: auto;
  padding-bottom: 6px;
  margin: 25px 0 20px;
}
@media screen and (max-width: 767px) {
  .standard-content .table-wrapper {
    margin: 15px 0 15px;
  }
}
.standard-content .table-wrapper::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
}
.standard-content .table-wrapper::-webkit-scrollbar-thumb {
  border: 1px solid #eeeeee;
  background-color: #eeeeee;
}
.standard-content .table-wrapper table {
  visibility: visible;
  width: 100%;
  margin: 0;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .standard-content .table-wrapper table {
    width: 1200px;
    font-size: 17px;
  }
}
.standard-content .table-wrapper table caption {
  display: none;
}
.standard-content .table-wrapper table thead {
  background-color: #b21212;
}
.standard-content .table-wrapper table thead tr th {
  color: #ffffff;
  line-height: 28px;
  font-weight: 600;
  border-bottom: 0;
  padding: 12px 15px;
  text-transform: uppercase;
  font-size: 16px;
}
.standard-content .table-wrapper table tbody tr td {
  padding: 15px 15px;
  font-weight: 500;
  font-size: 16px;
}
.standard-content .table-wrapper table tbody tr:last-of-type {
  border-bottom: 1px solid #eeeeee;
}
.standard-content iframe {
  display: block;
}
.standard-content .embed-responsive {
  margin-top: 25px;
  margin-bottom: 25px;
}
.standard-content .embed-responsive iframe {
  visibility: visible;
}
.standard-content .show-iframe iframe {
  visibility: visible;
  width: 100%;
  height: 530px;
}
@media screen and (max-width: 767px) {
  .standard-content .show-iframe iframe {
    height: 257px;
  }
}
.standard-content .show-iframe iframe[src*="/slideshows/"] {
  width: 100% !important;
  max-width: 100% !important;
  height: 530px !important;
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .standard-content .show-iframe iframe[src*="/slideshows/"] {
    height: 257px !important;
  }
}
.standard-content iframe.cke_wysiwyg_frame.cke_reset {
  visibility: visible;
}
.standard-content a.btn {
  margin: 0 10px 0 0;
}
@media screen and (max-width: 767px) {
  .standard-content a.btn {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.standard-content a.btn-download span, .standard-content a.btn-download strong {
  display: inline-block;
  margin-right: 10px;
}
.standard-content #h5 {
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .standard-content #h5[style*=width] {
    width: 0 !important;
    height: 0 !important;
    overflow: hidden;
  }
}
.standard-content .centered-image img {
  left: auto !important;
  transform: none;
}

.alert[style*=inline] {
  display: block !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #5A5A5A;
}

h1, .h1 {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  line-height: 56px;
  color: #041B29;
}

h2, .h2 {
  color: #000000;
  position: relative;
  font-family: "Fira Sans";
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  text-transform: capitalize;
}

h3 {
  color: #000000;
  font-family: "Fira Sans";
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 22px;
}

h4 {
  color: #000000;
  font-family: "Fira Sans";
  font-size: 34px;
  font-weight: 800;
  line-height: 60px;
}

p {
  margin: 0 0 20px;
  color: #000000;
  font-family: "Open Sans";
  font-style: normal;
  letter-spacing: normal;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
}

.btn-default {
  border-radius: 8px !important;
  color: #5A5A5A !important;
  border: solid 2px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #4DAFB6 0%, #6D67A8 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #fff inset !important;
  height: 45px !important;
  min-width: 120px !important;
  text-transform: capitalize !important;
  transition: 0.5s;
  text-align: center;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}
.btn-default:hover {
  box-shadow: 0 0 0 #fff inset !important;
  color: #ffffff !important;
  transition: 0.5s;
}
.btn-default:before {
  display: none;
}

.btn-arrow {
  height: 45px !important;
  min-width: 80px !important;
  text-transform: capitalize !important;
  position: relative;
  box-shadow: unset !important;
  background-color: transparent !important;
  padding: 10px 0;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #5A5A5A !important;
}
.btn-arrow:after {
  content: url("../img/btn-right-arrow.svg");
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  right: -24px;
  box-shadow: unset !important;
}
.btn-arrow:hover:after {
  content: url("../img/btn-right-arrow-hover.svg");
}
.btn-arrow:before {
  display: none;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 30px !important;
    line-height: 34px !important;
  }

  h2 {
    font-size: 25px !important;
    line-height: 35px !important;
  }

  h3 {
    font-size: 20px !important;
    line-height: 25px !important;
  }

  p {
    font-size: 16px !important;
    line-height: 26px !important;
  }
  p br {
    display: none;
  }

  a {
    font-size: 14px !important;
  }
}
a {
  color: #000000;
}
a:hover {
  color: #59A2CB;
}

img {
  max-width: 100%;
}

.social-links {
  list-style: none;
  padding: 0;
}
.social-links li {
  display: inline-block;
}

.btn-style {
  display: inline-block;
  position: relative;
  transition: 0.5s;
  border: 2px solid #EB742A;
  height: 55px;
  padding: 17px 50px 14px;
  text-align: center;
  background: #EB742A;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  min-width: 175px;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Open Sans";
  letter-spacing: 0.84px;
  text-decoration: none;
  box-shadow: 0 0 0 8px rgba(235, 116, 42, 0.3), 0 1px 6px rgba(0, 0, 0, 0.3);
  /*  &:before {
      content: "";
      position: absolute;
      background: $orange;
      width: 96%;
      height: 80%;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      z-index: -1;
      //box-shadow: 0 3px 8px rgb(0, 0, 0, 27%);
      transition: .5s;
    }*/
}
.btn-style:hover, .btn-style:focus, .btn-style:active {
  color: #EB742A;
  text-decoration: none;
  background: #ffffff;
}
.btn-style:hover:before, .btn-style:focus:before, .btn-style:active:before {
  background: #fff;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.btn-style.black {
  border: 2px solid #f9f9f9;
  text-align: center;
  background: #f9f9f9;
  color: #ffffff;
  box-shadow: none;
}
.btn-style.black:hover, .btn-style.black:focus, .btn-style.black:active {
  color: #f9f9f9;
  text-decoration: none;
  background-color: #ffffff;
}
.btn-style.black:hover:before, .btn-style.black:focus:before, .btn-style.black:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.btn-style.white {
  border: 2px solid #FF985A;
  text-align: center;
  background: #ffffff;
  color: #FF985A;
  box-shadow: none;
}
.btn-style.white:hover, .btn-style.white:focus, .btn-style.white:active {
  color: #ffffff;
  text-decoration: none;
  background: #FF985A;
}
.btn-style.white:hover:before, .btn-style.white:focus:before, .btn-style.white:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.btn-link {
  color: #5A5A5A;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

label {
  line-height: 26px;
  color: #5A5A5A;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  label {
    font-size: 14px !important;
    margin: 0;
    line-height: 16px !important;
  }
}

.form-control {
  border: 0 solid #eeeeee;
  background-color: rgba(69, 69, 69, 0.05);
  box-shadow: none;
  height: 54px;
  border-radius: 0;
  padding-left: 15px;
  font-family: "Open Sans";
  color: #59A2CB;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}
.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}
.form-control:-ms-input-placeholder {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .form-control {
    height: 40px;
  }
}
.form-control:focus, .form-control:active, .form-control:hover {
  color: #59A2CB;
  outline: none;
  box-shadow: none;
  background-color: rgba(69, 69, 69, 0.05);
}

.form-group {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .form-group {
    margin-bottom: 15px;
  }
}

textarea.form-control {
  padding-top: 15px;
  padding-bottom: 15px;
  min-height: 150px;
  max-height: 200px;
  resize: none;
}
@media screen and (max-width: 767px) {
  textarea.form-control {
    min-height: 100px;
    max-height: 100px;
  }
}

.screen-reader-response, .wpcf7-validation-errors {
  display: none;
}

.wpcf7-not-valid-tip {
  color: #5A5A5A;
  text-shadow: 0 0 0;
  line-height: 47px;
  font-size: 12px;
  font-weight: normal;
  display: block;
  margin-top: 8px;
}

.wpcf7-mail-sent-ok {
  text-align: center;
  padding: 10px !important;
  margin: 20px auto 0;
  font-weight: 600;
  width: 100%;
  display: block;
  max-width: 100%;
  clear: both;
  margin-top: 90px;
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

div.wpcf7-validation-errors {
  border: 2px solid #f7e700;
  text-align: center;
  padding: 10px 30px !important;
  font-weight: 600;
  width: 100%;
  display: block;
  max-width: 100%;
  clear: both;
}

.pagination {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px;
  display: inline-block;
}
.pagination li {
  display: inline-block;
  margin: 0 3px;
}
.pagination li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
  display: inline-block;
  height: 34px;
  width: 34px;
  padding: 2px;
  border: 1px solid #b21212;
  color: #b21212;
  transition: 0.5s;
  padding-top: 6px;
}
.pagination li a:hover, .pagination li a:focus, .pagination li a:active {
  background: #b21212;
  color: #ffffff;
  border: 1px solid #b21212;
  text-decoration: none;
}
.pagination li.active a {
  background: #b21212;
  color: #ffffff;
  border: 1px solid #b21212;
}
.pagination li.active a:hover {
  background: #b21212;
  color: #ffffff;
  border: 1px solid #b21212;
  text-decoration: none;
}

.wpcf7-not-valid-tip {
  color: red;
  line-height: 20px;
  font-size: 12px !important;
  font-weight: normal;
  margin-top: 8px;
}

iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.container.smaller {
  max-width: 900px;
}

.container.more-smaller {
  max-width: 700px;
}

.blue-bg {
  background: #59A2CB;
}

.silver-bg {
  background: #f9f9f9;
}

.red-bg {
  background: #b21212;
}
.red-bg .btn-style {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.red-bg .btn-style:before {
  background: #ffffff;
}
.red-bg .btn-style:hover, .red-bg .btn-style:active, .red-bg .btn-style:focus {
  color: #b21212;
}

section {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 40px 0;
  }
}

.no-style-submit {
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  padding: 14px 20px;
  width: 100%;
  text-indent: 0;
  z-index: 9999;
  font-weight: 500;
  transition: 0.5s;
}

.container > h2 {
  text-align: center;
  position: relative;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .container > h2 {
    margin-bottom: 30px;
  }
}

.owl-dot:hover, .owl-dot:focus, .owl-dot:active, .owl-nav button:hover, .owl-nav button:focus, .owl-nav button:active {
  outline: none;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-list li {
  display: inline-block;
}

.owl-dots {
  display: none !important;
}

.owl-carousel .owl-nav span {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .owl-carousel .owl-nav {
    display: none !important;
  }
}
.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  margin: auto;
  text-indent: -99px;
  padding: 0;
  right: 35px;
}
.owl-carousel .owl-nav .owl-prev:before {
  content: url("../img/slider-left-arrow-dim.svg");
  margin: auto;
  top: -1px;
  position: relative;
}
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  margin: auto;
  text-indent: -99px;
  padding: 0;
}
.owl-carousel .owl-nav .owl-next:before {
  content: url("../img/slider-right-arrow.svg");
  margin: auto;
}

img.float-left {
  margin-right: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  img.float-left {
    margin-right: 0;
    width: 100%;
  }
}

img.float-right {
  margin-left: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  img.float-right {
    margin-left: 0;
    width: 100%;
  }
}

.image-wrapper {
  overflow: hidden;
}
.image-wrapper img {
  transition: 0.5s;
}
.image-wrapper:hover img, .image-wrapper:focus img, .image-wrapper:active img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

#menu-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  #menu-btn {
    display: block;
    position: absolute;
    top: 40px;
    right: 15px;
    height: 30px;
    width: 30px;
    background: url("../img/002-menu.svg") no-repeat;
    background-size: 100%;
    z-index: 9999;
  }
  #menu-btn.active {
    background: url("../img/002-cancel.svg") no-repeat;
    background-size: 100%;
    z-index: 99999;
    position: fixed;
    top: 45px;
    right: 20px;
    left: auto;
    margin: auto;
    height: 50px;
    width: 20px;
  }
}

#main-menu {
  display: block;
}
@media screen and (max-width: 767px) {
  #main-menu {
    display: none;
    background: #000000;
    margin-top: 0;
    position: fixed;
    height: 100%;
    text-align: center !important;
    z-index: 999;
    padding: 20px 0;
    left: 0;
    width: 100%;
    top: 0;
    padding-top: 0;
  }
  #main-menu ul {
    padding-top: 100px;
    top: 0;
    width: 100%;
  }
  #main-menu ul li {
    display: block;
    text-align: center;
  }
  #main-menu ul li a {
    display: block;
    color: #ffffff !important;
  }
  #main-menu.active {
    display: block;
  }
}

.captcha-image {
  border-color: #eeeeee !important;
  width: 100%;
}

.split2 {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
@media screen and (max-width: 767px) {
  .split2 {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

.split3 {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
}
@media screen and (max-width: 767px) {
  .split3 {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

.gray-bg {
  background: #f9f9f9;
}

.text-black {
  color: #000000 !important;
}

[class^=icon-], [class^=svg-] {
  display: inline-block;
}

@media screen and (max-width: 991px) {
  [class^=svg-b] {
    display: none !important;
  }
}

.ekko-lightbox-nav-overlay {
  display: flex !important;
  z-index: 999999;
}

section {
  padding: 160px 0;
}
section .container {
  max-width: 1140px;
}
@media screen and (max-width: 767px) {
  section {
    padding: 50px 0;
  }
}

header {
  position: absolute;
  width: 100%;
  z-index: 9999;
}
header .col-sm-6 {
  align-self: center;
}
header .col-sm-6 ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  header .col-sm-6 ul {
    padding-left: 20px;
  }
}
header .col-sm-6 ul li {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  header .col-sm-6 ul li {
    text-align: left !important;
  }
}
header .col-sm-6 ul li:not(:last-of-type) {
  margin-right: 44px;
}
@media screen and (max-width: 767px) {
  header .col-sm-6 ul li:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  header .col-sm-6 ul li:not(:last-of-type) {
    margin-right: 18px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  header .col-sm-6 ul li:not(:last-of-type) {
    margin-right: 24px;
  }
}
header .col-sm-6 ul li a.router-link-exact-active {
  position: relative;
}
header .col-sm-6 ul li a.router-link-exact-active:before {
  content: "";
  position: absolute;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #4DAFB6 0%, #6D67A8 100%);
  width: 50%;
  height: 2px;
  bottom: -7px;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  header .col-sm-6 ul li a.router-link-exact-active:before {
    width: 12%;
  }
}
header .col-sm-6 ul li a {
  text-decoration: none;
  color: #000000;
}
header .col-sm-4 {
  align-self: center;
  text-align: right;
  position: relative;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  header .col-sm-4 button {
    padding: 0 12px !important;
  }
}
header .col-sm-4 .search {
  position: relative;
  top: 5px;
  border-right: 1px solid #EBEBEB;
  padding: 0 20px 0 0;
  margin-right: 10px !important;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  header .col-sm-4 .search {
    padding: 0 10px 0 0;
  }
}
header .col-sm-4 .v-menu {
  display: inline-block !important;
}
header .col-sm-4 .v-menu .v-menu__content .v-list .v-list-item {
  padding: 0;
  text-align: center;
}
header .col-sm-4 .lang {
  padding: 0;
  background-color: unset !important;
  box-shadow: unset !important;
  margin-right: 30px;
  position: relative;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  header .col-sm-4 .lang {
    margin-right: 16px;
    min-width: 40px !important;
  }
}
header .col-sm-4 .lang:before {
  display: none;
}
header .col-sm-4 .lang:after {
  content: url("../img/down-arrow.svg");
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 5px;
  box-shadow: unset !important;
  width: 10px;
  height: 22px;
}
header .col-sm-4 .v-input {
  padding: 0;
  margin: 0;
  position: absolute;
  left: -50px;
  width: 54%;
  top: 15px;
}
header .col-sm-4 .v-input .v-input__slot {
  margin: 0;
}
header .col-sm-4 .v-input .v-input__slot:after, header .col-sm-4 .v-input .v-input__slot:before {
  display: none;
}
header .col-sm-4 .v-input .v-input__slot input {
  min-height: 40px;
  border: 1px solid #AFAFAF;
  padding: 6px;
}

#banner {
  background: url("../img/home-banner-bg.svg") no-repeat, linear-gradient(0deg, #F7F7F7 -17.78%, rgba(255, 255, 255, 0) 128.06%);
  padding: 300px 0 226px;
  background-position: top right;
  position: relative;
}
@media screen and (max-width: 767px) {
  #banner {
    padding: 150px 0 80px;
  }
  #banner .btn-default {
    display: inline-block !important;
  }
  #banner:before, #banner:after {
    display: none;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #banner {
    padding: 190px 0 140px;
  }
  #banner:before, #banner:after {
    display: none;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #banner {
    padding: 220px 0 160px;
  }
  #banner:before, #banner:after {
    display: none;
  }
}
#banner .btn-default {
  margin-top: 48px;
  display: none;
}
#banner .mouse {
  background: url("../img/mouse-icon.svg");
  display: block;
  background-size: 100%;
  position: absolute;
  cursor: pointer;
  width: 15px;
  height: 24px;
  bottom: 120px;
  left: 70px;
}
@media screen and (max-width: 767px) {
  #banner .mouse {
    display: none;
  }
}
#banner:after {
  content: "";
  position: absolute;
  height: 225px;
  width: 1px;
  background: #AFAFAF;
  bottom: 170px;
  left: 77.4px;
}
@media screen and (max-width: 767px) {
  #banner:after {
    display: none;
  }
}
#banner .container {
  max-width: 1000px;
}
#banner .container h1 {
  max-width: 521px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  #banner .container h1 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  #banner .container p {
    margin-bottom: 0;
  }
}

#about {
  padding: 160px 0;
}
@media screen and (max-width: 767px) {
  #about {
    padding: 60px 0 30px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #about {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  #about .col-sm-6:first-of-type {
    order: 2;
    margin-top: 30px;
  }
  #about .col-sm-6:first-of-type img {
    max-width: 300px;
    margin: auto;
    display: block;
  }
}
#about .col-sm-6:last-of-type h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #about .col-sm-6:last-of-type h2 {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #about .col-sm-6:last-of-type h2 {
    margin-bottom: 35px;
  }
}
#about .col-sm-6:last-of-type h3 {
  margin-bottom: 24px;
}
#about .col-sm-6:last-of-type p:first-of-type {
  margin-bottom: 48px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #about .col-sm-6:last-of-type p:first-of-type {
    margin-bottom: 30px;
  }
}
#about .col-sm-6:last-of-type p:last-of-type {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #about .col-sm-6:last-of-type p:last-of-type {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #about .col-sm-6:last-of-type p:last-of-type {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  #about .col-sm-6:last-of-type .btn-default {
    margin-bottom: 48px;
  }
}

#new-bread {
  background: url("../img/new-breed-bg.svg") no-repeat #F8F8F8;
  background-position: top left;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  #new-bread {
    padding: 40px 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #new-bread {
    padding: 80px 0;
  }
}
#new-bread .container > h2 {
  text-align: left;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #new-bread .container > h2 {
    margin-bottom: 48px;
  }
}
#new-bread .col-sm-6:last-of-type .mx-auto:last-of-type {
  min-height: 386px;
}
#new-bread .mx-auto {
  padding: 48px;
  margin-bottom: 30px;
  box-shadow: unset !important;
}
@media screen and (max-width: 767px) {
  #new-bread .mx-auto {
    padding: 24px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #new-bread .mx-auto {
    padding: 20px;
  }
}
#new-bread .mx-auto:hover {
  box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.08) !important;
  border-radius: 6px;
}
#new-bread .mx-auto:hover:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #4DAFB6 0%, #6D67A8 100%);
  top: 0;
  left: 0;
  border-radius: 50px;
}
#new-bread .mx-auto:hover .btn-arrow:after {
  content: url("../img/btn-right-arrow-hover.svg");
}
#new-bread .mx-auto .v-card__text, #new-bread .mx-auto .v-card__actions {
  padding: 0;
}
#new-bread .mx-auto img {
  margin-bottom: 16px;
}
#new-bread .mx-auto h3, #new-bread .mx-auto p {
  margin-bottom: 24px;
}

#right-image {
  padding: 160px 0 117px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #right-image {
    padding: 60px 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #right-image {
    padding: 80px 0;
  }
}
#right-image:before {
  content: "";
  position: absolute;
  width: 82%;
  height: 1px;
  background: #EBEBEB;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#right-image .container > .row > .col-sm-6:first-of-type > h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #right-image .container > .row > .col-sm-6:first-of-type > h2 {
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #right-image .container > .row > .col-sm-6:first-of-type > h2 {
    margin-bottom: 35px;
  }
}
#right-image .container > .row > .col-sm-6:first-of-type > p {
  margin-bottom: 48px;
}
#right-image .container img {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  #right-image .container .text-right img {
    max-width: 300px;
    margin: auto;
    display: block;
  }
}
#right-image .container h3 {
  margin-bottom: 24px;
}
#right-image .container .btn-default {
  margin-top: 60px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #right-image .container .btn-default {
    margin: 48px 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #right-image .container .btn-default {
    margin-top: 30px;
  }
}

#tab-section {
  padding: 120px 0 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #tab-section {
    padding: 60px 0 40px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #tab-section {
    padding: 80px;
  }
}
#tab-section:before {
  content: "";
  position: absolute;
  width: 82%;
  height: 1px;
  background: #EBEBEB;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#tab-section .container > h2 {
  margin-bottom: 27px;
}
#tab-section .container .v-card {
  box-shadow: unset !important;
}
#tab-section .container .v-slide-group__content {
  justify-content: center;
  background: transparent;
}
#tab-section .container .v-slide-group {
  display: block;
  height: auto;
}
#tab-section .container .v-slide-group .v-slide-group__wrapper {
  contain: content;
  display: block;
  flex: inherit;
  overflow: visible;
  height: 75px;
  padding-top: 10px;
}
#tab-section .container .v-tabs-slider-wrapper {
  display: none;
}
#tab-section .container .v-tab {
  color: #AFAFAF;
  padding: 13px 16px;
  position: relative;
}
#tab-section .container .v-tab:before {
  display: none;
}
#tab-section .container .v-tab:after {
  content: "";
  width: 1px;
  height: 20px;
  background: #EBEBEB;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#tab-section .container .v-tab:last-of-type:after {
  display: none;
}
#tab-section .container .v-tab.v-tab--active {
  background: #ffffff;
  box-shadow: 0 5px 24px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  color: #5A5A5A;
}
#tab-section .container .v-tab.v-tab--active:after {
  content: "";
  width: 1px;
  height: 37px;
  background: #FFFFFF;
  position: absolute;
  right: -1px;
  left: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  opacity: 1;
}
#tab-section .container .v-tab.v-tab--active:before {
  content: "";
  width: 1px;
  height: 37px;
  background: #FFFFFF;
  position: absolute;
  left: -1px;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  opacity: 1;
}
#tab-section .container .v-window {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #tab-section .container .v-window {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  #tab-section .v-slide-group__prev {
    display: none;
  }
}
#tab-section .tab-content {
  background: url("../img/tab-content-bg.svg") no-repeat;
  background-size: cover;
  margin-bottom: 80px;
  padding: 144px 80px 172px 480px;
}
@media screen and (max-width: 767px) {
  #tab-section .tab-content {
    padding: 25px 25px 50px;
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #tab-section .tab-content {
    padding: 80px;
  }
}
#tab-section .tab-content h3 {
  margin-bottom: 40px;
}
#tab-section .tab-content p {
  margin-bottom: 60px;
}
#tab-section .btn-wrapper a:first-of-type {
  margin-right: 40px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #tab-section .btn-wrapper a:first-of-type {
    margin-right: 10px;
  }
}
#tab-section .list h3 {
  margin-bottom: 24px;
}
#tab-section .list ul {
  padding-left: 30px;
}
#tab-section .list ul li {
  position: relative;
  list-style-type: none;
}
#tab-section .list ul li:before {
  content: url("../img/tick.svg");
  position: absolute;
  left: -33px;
}
#tab-section .list ul li:not(:last-of-type) {
  margin-bottom: 16px;
}

#slider {
  padding: 120px 0 160px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #slider {
    padding: 40px 0 30px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #slider {
    padding: 80px 0 50px;
  }
}
#slider .container > h2 {
  text-align: left;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #slider .container > h2 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1199px) {
  #slider .owl-carousel {
    padding: 0 15px;
  }
}
#slider .owl-nav {
  display: block !important;
  position: absolute;
  top: -133px;
  right: 40px;
}
@media screen and (max-width: 767px) {
  #slider .owl-nav {
    top: -50px;
    right: -30px;
  }
}
#slider a {
  text-decoration: none;
  position: relative;
}
#slider a:hover {
  box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.08);
}
#slider a:hover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #4DAFB6 0%, #6D67A8 100%);
  top: 0;
  left: 0;
  border-radius: 50px;
}
#slider a:hover .element-card:before {
  content: url("../img/right-circle.svg");
}
#slider .element-card {
  padding: 48px 48px 110px;
  border: 1px solid #EBEBEB;
  box-sizing: border-box;
  border-radius: 6px;
  position: relative;
  height: 100%;
  display: block;
  min-height: 465px;
}
@media screen and (max-width: 767px) {
  #slider .element-card {
    padding: 20px 20px 100px;
    min-height: 414px;
  }
}
#slider .element-card:before {
  content: url("../img/right-circle-dim.svg");
  position: absolute;
  bottom: 30px;
  left: 48px;
}
#slider .element-card img {
  width: auto;
  display: unset;
  margin-bottom: 16px;
}
#slider .element-card h3 {
  margin-bottom: 24px;
}

#services {
  padding: 0 0 160px;
}
@media screen and (max-width: 767px) {
  #services {
    padding: 0 0 40px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #services {
    padding: 0 0 80px;
  }
}
#services .container h2 {
  margin-bottom: 40px;
}
#services .container p {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #services .container p {
    margin-bottom: 20px;
  }
}
#services .container .col-sm-4 {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  #services .container .col-sm-4 {
    border: 0 !important;
  }
}
#services .container .col-sm-4 .inner {
  padding-top: 22px;
  text-align: center;
  height: 100%;
}
#services .container .col-sm-4 .inner img {
  margin-bottom: 24px;
}
#services .container .col-sm-4 .inner h3 {
  margin-bottom: 16px;
}
#services .container .col-sm-4:nth-of-type(1) {
  border-bottom: 1px solid #EBEBEB;
}
#services .container .col-sm-4:nth-of-type(2) {
  border-left: 1px solid #EBEBEB;
  border-right: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
}
#services .container .col-sm-4:nth-of-type(3) {
  border-bottom: 1px solid #EBEBEB;
}
#services .container .col-sm-4:nth-of-type(5) {
  border-left: 1px solid #EBEBEB;
  border-right: 1px solid #EBEBEB;
}
#services .container .btn-default {
  text-align: center;
  margin: 96px auto 0;
}
@media screen and (max-width: 767px) {
  #services .container .btn-default {
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #services .container .btn-default {
    margin: 60px auto 0;
  }
}

#amet {
  background: #F8F8F8;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  #amet {
    padding: 40px 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #amet {
    padding: 80px 0;
  }
}
#amet .col-sm-6 .card-inner {
  background-color: #ffffff;
  padding: 24px 26px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #amet .col-sm-6 .card-inner {
    padding: 15px;
  }
}
#amet .col-sm-6 .card-inner:hover {
  box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.08);
}
#amet .col-sm-6 .card-inner:hover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #4DAFB6 0%, #6D67A8 100%);
  top: 0;
  left: 0;
  border-radius: 50px;
}
#amet .col-sm-6 .card-inner img {
  margin-bottom: 24px;
}
#amet .col-sm-6 .card-inner h3 {
  margin-bottom: 16px;
}
#amet .container > .row > .col-sm-6:last-of-type {
  padding-left: 100px;
}
@media screen and (max-width: 767px) {
  #amet .container > .row > .col-sm-6:last-of-type {
    padding-left: 15px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #amet .container > .row > .col-sm-6:last-of-type {
    padding-left: 30px;
  }
}
#amet .container > .row > .col-sm-6:last-of-type h2, #amet .container > .row > .col-sm-6:last-of-type p {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #amet .container > .row > .col-sm-6:last-of-type h2, #amet .container > .row > .col-sm-6:last-of-type p {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #amet .container > .row > .col-sm-6:last-of-type h2, #amet .container > .row > .col-sm-6:last-of-type p {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 767px) {
  #faqs {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #faqs {
    padding: 80px 0;
  }
}
#faqs .container h2 {
  margin-bottom: 40px;
}
#faqs .container p {
  text-align: center;
  margin-bottom: 24px;
}
#faqs .container .btn-arrow {
  text-align: center;
  margin: auto;
  display: block;
  width: 112px;
}
#faqs .container .btn-arrow:after {
  top: -3px;
}
#faqs .faq-inner {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  #faqs .faq-inner {
    margin-top: 20px;
  }
}
#faqs .faq-inner .v-expansion-panel:before {
  display: none;
}
#faqs .faq-inner .v-expansion-panel:after {
  display: none;
}
#faqs .faq-inner .v-expansion-panel.v-expansion-panel--active {
  margin-top: 0;
}
#faqs .faq-inner .v-expansion-panel-header {
  padding: 30px 35px 16px 10px;
  border-bottom: 1px solid #EBEBEB;
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 29px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #faqs .faq-inner .v-expansion-panel-header {
    padding: 16px 35px 16px 10px;
    font-size: 16px;
    line-height: 26px;
  }
}
#faqs .faq-inner .v-expansion-panel-header:focus:before {
  display: none;
}
#faqs .faq-inner .v-expansion-panel-header.v-expansion-panel-header--active .v-expansion-panel-header__icon:before {
  content: url("../img/minus.svg");
}
#faqs .faq-inner .v-expansion-panel-header__icon {
  position: relative;
  right: -35px;
}
#faqs .faq-inner .v-expansion-panel-header__icon:before {
  content: url("../img/plus.svg");
  position: absolute;
  width: 24px;
  height: 24px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#faqs .faq-inner .v-expansion-panel-content__wrap {
  padding: 25px 10px 15px;
}

#logos {
  padding: 0 0 160px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #logos {
    padding: 30px 0 40px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #logos {
    padding: 0 0 80px;
  }
}
#logos:before {
  content: "";
  position: absolute;
  width: 82%;
  height: 1px;
  background: #EBEBEB;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#logos .container h2 {
  margin-bottom: 30px;
}
#logos .container p {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #logos .container p {
    margin-bottom: 50px;
  }
}
#logos .container .img-div {
  text-align: center;
  box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.08);
  padding: 20px 45px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #logos .container .img-div {
    padding: 10px 20px;
  }
}

#partners .container .img-div {
  text-align: center;
  box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.08);
  padding: 20px 45px;
  height: 100%;
}
#partners .container p {
  text-align: center;
  margin-bottom: 80px;
}

#contact {
  padding: 120px 0 140px;
  background-image: url("../img/footer-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
@media screen and (max-width: 767px) {
  #contact {
    padding: 20px 0 48px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #contact {
    padding: 80px 0;
  }
}
#contact .col-sm-6:first-of-type h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #contact .col-sm-6:first-of-type h2 {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  #contact .col-sm-6:first-of-type p {
    margin-bottom: 24px;
  }
}
#contact .col-sm-6:first-of-type p:first-of-type {
  margin-bottom: 32px;
}
#contact .col-sm-6:first-of-type p:last-of-type {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #contact .col-sm-6:first-of-type p:last-of-type {
    margin-bottom: 20px;
  }
}
#contact .col-sm-6:first-of-type a {
  color: #5A5A5A;
  text-decoration: none;
  font-size: 16px;
  line-height: 26px;
}
#contact .col-sm-6:first-of-type .email {
  position: relative;
  padding-left: 30px;
  display: inline-block;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  #contact .col-sm-6:first-of-type .email {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #contact .col-sm-6:first-of-type .email {
    margin-right: 17px;
  }
}
#contact .col-sm-6:first-of-type .email:before {
  content: url("../img/email.svg");
  position: absolute;
  width: 19px;
  height: 19px;
  left: 0;
  top: 2px;
}
#contact .col-sm-6:first-of-type .phone {
  position: relative;
  padding-left: 30px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #contact .col-sm-6:first-of-type .phone {
    display: block;
  }
}
#contact .col-sm-6:first-of-type .phone:before {
  content: url("../img/phone.svg");
  position: absolute;
  width: 19px;
  height: 20px;
  left: 0;
}
#contact .col-sm-6:first-of-type .email-2 {
  position: relative;
  padding-left: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #contact .col-sm-6:first-of-type .email-2 {
    margin-top: 20px;
  }
}
#contact .col-sm-6:first-of-type .email-2 span {
  display: block;
  color: #AFAFAF;
}
@media screen and (max-width: 767px) {
  #contact .col-sm-6:first-of-type .email-2 span {
    font-size: 12px;
    line-height: 22px !important;
  }
}
#contact .col-sm-6:first-of-type .email-2:before {
  content: url("../img/email.svg");
  position: absolute;
  width: 19px;
  height: 19px;
  left: 0;
  top: 2px;
}
#contact .col-sm-6:last-of-type {
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  #contact .col-sm-6:last-of-type {
    padding-left: 15px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #contact .col-sm-6:last-of-type {
    padding-left: 30px;
  }
}
#contact .col-sm-6:last-of-type .form-outer {
  padding: 40px 24px;
  background: #ffffff;
  box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  #contact .col-sm-6:last-of-type .form-outer {
    padding: 20px 14px;
  }
}
#contact .col-sm-6:last-of-type .form-outer:hover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #4DAFB6 0%, #6D67A8 100%);
  top: 0;
  left: 0;
  border-radius: 50px;
}
#contact .col-sm-6:last-of-type .form-outer .v-card {
  box-shadow: unset !important;
}
#contact .col-sm-6:last-of-type .form-outer .v-card__text {
  padding: 0;
}
#contact .col-sm-6:last-of-type .form-outer h3 {
  margin-bottom: 24px;
}
#contact .col-sm-6:last-of-type .form-outer .v-text-field__slot {
  height: 52px;
}
#contact .col-sm-6:last-of-type .form-outer .v-input {
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
#contact .col-sm-6:last-of-type .form-outer .v-input.v-input--is-focused input, #contact .col-sm-6:last-of-type .form-outer .v-input.v-input--is-focused textarea {
  border: 2px solid #AFAFAF;
  border-radius: 8px;
}
#contact .col-sm-6:last-of-type .form-outer .v-select__slot input {
  background-image: url("../img/down-arrow.svg") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  padding-right: 41px !important;
}
#contact .col-sm-6:last-of-type .form-outer .v-input__append-inner {
  display: none;
  /*   position: relative;
     height: 52px;
     background: #FAFAFA;
     &:before {
       content: url("../img/down-arrow.svg");
       position: absolute;
       width: 20px;
       height: 19px;
       right: 0;
       top: 0;
       bottom: 0;
       margin: auto;
     }*/
}
#contact .col-sm-6:last-of-type .form-outer .v-input__slot {
  margin-bottom: 0;
}
#contact .col-sm-6:last-of-type .form-outer .v-input__slot:after, #contact .col-sm-6:last-of-type .form-outer .v-input__slot:before {
  display: none;
}
#contact .col-sm-6:last-of-type .form-outer .v-text-field__details {
  display: none;
}
#contact .col-sm-6:last-of-type .form-outer .text .v-text-field__slot {
  height: 110px;
}
#contact .col-sm-6:last-of-type .form-outer label {
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 0 15px;
}
#contact .col-sm-6:last-of-type .form-outer label.v-label--active {
  margin: unset;
}
#contact .col-sm-6:last-of-type .form-outer input {
  background: #FAFAFA;
  height: 52px;
  padding: 15px;
  max-height: unset !important;
  border: 2px solid #EBEBEB;
  border-radius: 8px;
}
#contact .col-sm-6:last-of-type .form-outer input.valid {
  background-image: url("../img/green-tick.svg") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  padding-right: 41px !important;
}
#contact .col-sm-6:last-of-type .form-outer textarea {
  background: #FAFAFA;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #EBEBEB;
}
#contact .col-sm-6:last-of-type .form-outer .btn-default {
  text-align: center;
  margin: 24px auto 0;
}

.footer {
  padding: 40px 0;
}
.footer footer {
  box-shadow: unset !important;
  background-color: transparent !important;
}
.footer footer .container, .footer footer .col-md-6 {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer footer .v-card__title {
    padding: 0;
  }
}
.footer footer .col-sm-6 {
  position: relative;
}
.footer footer .logo {
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .footer footer .logo {
    margin-right: 0;
    display: block;
    text-align: center;
    margin: 0 auto 16px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .footer footer .logo {
    margin-right: 8px;
  }
}
.footer footer p {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer footer p {
    font-size: 14px !important;
    padding: 0 8px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .footer footer p {
    font-size: 14px !important;
  }
}
.footer footer .links {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer footer .links {
    text-align: center;
  }
}
.footer footer .links .v-btn {
  padding: 0;
  background-color: unset;
  box-shadow: unset !important;
  margin-right: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer footer .links .v-btn {
    margin-right: 12px;
  }
}
.footer footer .links .v-btn:before {
  display: none;
}
.footer footer .links .v-btn:after {
  content: url("../img/down-arrow.svg");
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 5px;
  box-shadow: unset !important;
  width: 10px;
  height: 22px;
}
.footer footer .links a {
  text-decoration: none;
  color: #000000;
}
.footer footer .links a:first-of-type {
  position: relative;
  top: 5px;
  border-right: 1px solid #EBEBEB;
  padding: 0 20px 0 0;
  margin-right: 10px !important;
}
@media screen and (max-width: 767px) {
  .footer footer .links a:first-of-type {
    padding: 0 10px 0 0;
  }
}
.footer footer .links a:not(:last-of-type) {
  margin-right: 30px;
}
.footer footer .links .v-menu {
  display: inline-block !important;
}
.footer footer .links .v-menu .v-menu__content .v-list .v-list-item {
  padding: 0;
  text-align: center;
}
.footer footer .v-menu > .v-menu__content {
  top: auto !important;
  bottom: 0;
}
.footer footer .v-input {
  padding: 0;
  margin: 0;
  position: absolute;
  left: -50px;
  width: 47%;
  top: 12px;
}
.footer footer .v-input .v-input__slot {
  margin: 0;
}
.footer footer .v-input .v-input__slot:after, .footer footer .v-input .v-input__slot:before {
  display: none;
}
.footer footer .v-input .v-input__slot input {
  min-height: 40px;
  border: 1px solid #AFAFAF;
  padding: 6px;
}

#inner-banner {
  background: url("../img/home-banner-bg.svg") no-repeat, linear-gradient(0deg, #F7F7F7 -17.78%, rgba(255, 255, 255, 0) 128.06%);
  padding: 200px 0 120px;
  background-position: top right;
  position: relative;
}
@media screen and (max-width: 767px) {
  #inner-banner {
    padding: 150px 0 80px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #inner-banner {
    padding: 170px 0 100px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #inner-banner {
    padding: 170px 0 100px;
  }
}
#inner-banner .container {
  max-width: 1000px;
}
#inner-banner .container h1 {
  text-align: center;
}

.product-page {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .product-page {
    padding: 60px 0 30px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .product-page {
    padding: 80px 0;
  }
}
.product-page .col-sm-6 h2 {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .product-page .col-sm-6 h2 {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .product-page .col-sm-6 h2 {
    margin-bottom: 25px;
  }
}
.product-page .col-sm-6 ul {
  padding-left: 20px;
}
.product-page .col-sm-6 ul li:not(:last-of-type) {
  margin-bottom: 15px;
}
.product-page .performance {
  background: #F8F8F8;
  padding: 30px 15px;
  margin-top: 50px;
}
.product-page .docs {
  margin-top: 50px;
}

.product-page.sec {
  background: #F8F8F8;
}
@media screen and (max-width: 767px) {
  .product-page.sec .col-sm-6:first-of-type {
    order: 2;
  }
}

.product-third {
  padding: 0 0 100px;
}
@media screen and (max-width: 767px) {
  .product-third {
    padding: 60px 0 30px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .product-third {
    padding: 80px 0;
  }
}
.product-third .container > h2 {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .product-third .col-sm-6 h3 {
    position: relative;
    padding-left: 30px;
  }
}
.product-third .col-sm-6 h3 img {
  display: inline-block;
  vertical-align: sub;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .product-third .col-sm-6 h3 img {
    position: absolute;
    left: 0;
  }
}
.product-third .col-sm-6 > ul {
  padding-left: 62px;
  margin-top: 15px;
  margin-bottom: 30px;
}
.product-third .col-sm-6 > ul > li {
  position: relative;
  list-style-type: none;
}
.product-third .col-sm-6 > ul > li:not(:last-of-type) {
  margin-bottom: 12px;
}
.product-third .col-sm-6 > ul > li:before {
  content: url("../img/tick.svg");
  position: absolute;
  left: -28px;
}

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

.d-none {
  display: none;
}

@media screen and (min-width: 768px) {
  .d-sm-block, .d-none.d-sm-block {
    display: block;
  }
}

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