/* Filter Grayscale */
/* Clip path */
/* Transition */
/* Border radius */
/* CLEAR COTNENT */
.new-design .cl:before,
.new-design .cl:after {
  display: table;
  content: " ";
}

.new-design .cl:after {
  clear: both;
}

.new-design .cl {
  clear: both;
}

/* IMAGES */
.new-design .img-full {
  width: 100%;
  display: block;
}

/* HR Lines*/
.new-design hr {
  margin: 0px;
  border: 0;
  border-top: 1px solid rgba(37, 16, 16, 0.1);
}

/* ROWS */
@media screen and (min-width: 600px) {
  .new-design .row-center-xxs {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 767px) {
  .new-design .row-center-xs {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .new-design .row-center-sm {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .new-design .row-center-md {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
  }
}
/* DISPLAY */
.new-design .hide {
  display: none;
}

.new-design .show-lg,
.new-design .show-md,
.new-design .show-sm,
.new-design .show-xs {
  display: none;
}

@media screen and (max-width: 1200px) {
  .new-design .show-lg {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  .new-design .show-md {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .new-design .show-sm {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .new-design .show-xs {
    display: block;
  }
}
/* TEXT ALIGN */
.new-design .text-center {
  text-align: center;
}

.new-design .text-right {
  text-align: right;
}

@media screen and (max-width: 992px) {
  .new-design .text-center-md {
    text-align: center;
  }
  .new-design .text-left-md {
    text-align: left;
  }
  .new-design .text-right-md {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .new-design .text-center-sm {
    text-align: center;
  }
  .new-design .text-left-sm {
    text-align: left;
  }
  .new-design .text-right-sm {
    text-align: right;
  }
}
@media screen and (max-width: 600px) {
  .new-design .text-center-xs {
    text-align: center;
  }
  .new-design .text-left-xs {
    text-align: left;
  }
  .new-design .text-right-xs {
    text-align: right;
  }
}
/* TEXT TRANSFORM */
.new-design .text-upper {
  text-transform: uppercase;
}

/* BACKGROUND COLORS */
.new-design .bg-blue {
  background-color: #0038FF;
}

.new-design .bg-white {
  background-color: #fff;
}

.new-design .bg-black {
  background-color: #000;
}

/* COLORS */
.new-design .color-black {
  color: #000;
}

.new-design .color-black-05 {
  color: rgba(0, 0, 0, 0.05);
}

.new-design .color-black-1 {
  color: rgba(37, 16, 16, 0.1);
}

.new-design .color-black-2 {
  color: rgba(0, 0, 0, 0.2);
}

.new-design .color-black-3 {
  color: rgba(0, 0, 0, 0.3);
}

.new-design .color-black-4 {
  color: rgba(0, 0, 0, 0.4);
}

.new-design .color-black-5 {
  color: rgba(0, 0, 0, 0.5);
}

.new-design .color-black-6 {
  color: rgba(0, 0, 0, 0.6);
}

.new-design .color-black-7 {
  color: rgba(0, 0, 0, 0.7);
}

.new-design .color-black-8 {
  color: rgba(0, 0, 0, 0.8);
}

.new-design .color-black-9 {
  color: rgba(0, 0, 0, 0.9);
}

.new-design .color-blue {
  color: #0038FF;
}

.new-design .color-white {
  color: #fff;
}

.new-design .color-linear {
  background: linear-gradient(to right, #EF324C 30%, #FEA91F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* MARGINS */
.new-design .m-auto {
  margin: auto;
}

.new-design .mt-0 {
  margin-top: 0px;
}

.new-design .mt-5 {
  margin-top: 5px;
}

.new-design .mt-10 {
  margin-top: 10px;
}

.new-design .mt-15 {
  margin-top: 15px;
}

.new-design .mt-20 {
  margin-top: 20px;
}

.new-design .mt-30 {
  margin-top: 30px;
}

.new-design .mt-40 {
  margin-top: 40px;
}

.new-design .mt-50 {
  margin-top: 50px;
}

.new-design .mt-60 {
  margin-top: 60px;
}

.new-design .mt-70 {
  margin-top: 70px;
}

.new-design .mt-80 {
  margin-top: 80px;
}

.new-design .mt-100 {
  margin-top: 100px;
}

.new-design .mt-120 {
  margin-top: 120px;
}

.new-design .mt-140 {
  margin-top: 140px;
}

.new-design .mt-160 {
  margin-top: 160px;
}

@media screen and (min-width: 767px) {
  .new-design .mt-20-negative {
    margin-top: -20px;
  }
  .new-design .mt-40-negative {
    margin-top: -40px;
  }
}
@media screen and (max-width: 992px) {
  .new-design .mt-0-md {
    margin-top: 0;
  }
  .new-design .mt-10-md {
    margin-top: 10px;
  }
  .new-design .mt-20-md {
    margin-top: 20px;
  }
  .new-design .mt-40-md {
    margin-top: 40px;
  }
  .new-design .mt-60-md {
    margin-top: 60px;
  }
  .new-design .mt-80-md {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .new-design .mt-0-sm {
    margin-top: 0;
  }
  .new-design .mt-10-sm {
    margin-top: 10px;
  }
  .new-design .mt-20-sm {
    margin-top: 20px;
  }
  .new-design .mt-40-sm {
    margin-top: 40px;
  }
  .new-design .mt-60-sm {
    margin-top: 60px;
  }
  .new-design .mt-80-sm {
    margin-top: 80px;
  }
}
@media screen and (max-width: 600px) {
  .new-design .mt-0-xs {
    margin-top: 0;
  }
  .new-design .mt-10-xs {
    margin-top: 10px;
  }
  .new-design .mt-20-xs {
    margin-top: 20px;
  }
  .new-design .mt-40-xs {
    margin-top: 40px;
  }
  .new-design .mt-60-xs {
    margin-top: 60px;
  }
  .new-design .mt-80-xs {
    margin-top: 80px;
  }
}
.new-design .mb-0 {
  margin-bottom: 0px;
}

.new-design .mb-5 {
  margin-bottom: 5px;
}

.new-design .mb-10 {
  margin-bottom: 10px;
}

.new-design .mb-15 {
  margin-bottom: 15px;
}

.new-design .mb-20 {
  margin-bottom: 20px;
}

.new-design .mb-30 {
  margin-bottom: 30px;
}

.new-design .mb-40 {
  margin-bottom: 40px;
}

.new-design .mb-50 {
  margin-bottom: 50px;
}

.new-design .mb-60 {
  margin-bottom: 60px;
}

.new-design .mb-70 {
  margin-bottom: 70px;
}

.new-design .mb-80 {
  margin-bottom: 80px;
}

.new-design .mb-100 {
  margin-bottom: 100px;
}

.new-design .mb-120 {
  margin-bottom: 120px;
}

.new-design .mb-140 {
  margin-bottom: 140px;
}

.new-design .mb-160 {
  margin-bottom: 160px;
}

@media screen and (max-width: 1200px) {
  .new-design .mb-0-lg {
    margin-bottom: 0;
  }
  .new-design .mb-10-lg {
    margin-bottom: 10px;
  }
  .new-design .mb-20-lg {
    margin-bottom: 20px;
  }
  .new-design .mb-40-lg {
    margin-bottom: 40px;
  }
  .new-design .mb-60-lg {
    margin-bottom: 60px;
  }
  .new-design .mb-80-lg {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 992px) {
  .new-design .mb-0-md {
    margin-bottom: 0;
  }
  .new-design .mb-10-md {
    margin-bottom: 10px;
  }
  .new-design .mb-20-md {
    margin-bottom: 20px;
  }
  .new-design .mb-40-md {
    margin-bottom: 40px;
  }
  .new-design .mb-60-md {
    margin-bottom: 60px;
  }
  .new-design .mb-80-md {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .new-design .mb-0-sm {
    margin-bottom: 0;
  }
  .new-design .mb-10-sm {
    margin-bottom: 10px;
  }
  .new-design .mb-20-sm {
    margin-bottom: 20px;
  }
  .new-design .mb-40-sm {
    margin-bottom: 40px;
  }
  .new-design .mb-60-sm {
    margin-bottom: 60px;
  }
  .new-design .mb-80-sm {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 600px) {
  .new-design .mb-0-xs {
    margin-bottom: 0;
  }
  .new-design .mb-10-xs {
    margin-bottom: 10px;
  }
  .new-design .mb-20-xs {
    margin-bottom: 20px;
  }
  .new-design .mb-40-xs {
    margin-bottom: 40px;
  }
  .new-design .mb-60-xs {
    margin-bottom: 60px;
  }
  .new-design .mb-80-xs {
    margin-bottom: 80px;
  }
}
/* PADDINGS */
.new-design .pt-0 {
  padding-top: 0px;
}

.new-design .pt-5 {
  padding-top: 5px;
}

.new-design .pt-10 {
  padding-top: 10px;
}

.new-design .pt-15 {
  padding-top: 15px;
}

.new-design .pt-20 {
  padding-top: 20px;
}

.new-design .pt-30 {
  padding-top: 30px;
}

.new-design .pt-40 {
  padding-top: 40px;
}

.new-design .pt-50 {
  padding-top: 50px;
}

.new-design .pt-60 {
  padding-top: 60px;
}

.new-design .pt-70 {
  padding-top: 70px;
}

.new-design .pt-80 {
  padding-top: 80px;
}

.new-design .pt-90 {
  padding-top: 90px;
}

.new-design .pt-100 {
  padding-top: 100px;
}

.new-design .pb-0 {
  padding-bottom: 0px;
}

.new-design .pb-5 {
  padding-bottom: 5px;
}

.new-design .pb-10 {
  padding-bottom: 10px;
}

.new-design .pb-15 {
  padding-bottom: 15px;
}

.new-design .pb-20 {
  padding-bottom: 20px;
}

.new-design .pb-30 {
  padding-bottom: 30px;
}

.new-design .pb-40 {
  padding-bottom: 40px;
}

.new-design .pb-50 {
  padding-bottom: 50px;
}

.new-design .pb-60 {
  padding-bottom: 60px;
}

.new-design .pb-70 {
  padding-bottom: 70px;
}

.new-design .pb-80 {
  padding-bottom: 80px;
}

.new-design .pb-90 {
  padding-bottom: 90px;
}

.new-design .pb-100 {
  padding-bottom: 100px;
}

.new-design .padded20 {
  padding: 20px 0px;
}

.new-design .padded40 {
  padding: 40px 0px;
}

.new-design .padded60,
.new-design .padded80,
.new-design .padded100,
.new-design .padded120,
.new-design .padded140,
.new-design .padded160 {
  padding: 20px 0px;
}

@media screen and (min-width: 992px) {
  .new-design .padded60 {
    padding: 60px 0px;
  }
  .new-design .padded80 {
    padding: 80px 0px;
  }
  .new-design .padded100 {
    padding: 100px 0px;
  }
  .new-design .padded120 {
    padding: 120px 0px;
  }
  .new-design .padded140 {
    padding: 140px 0px;
  }
  .new-design .padded160 {
    padding: 160px 0px;
  }
}
/* FONT WEIGHTS */
.new-design .font100 {
  font-weight: 100;
}

.new-design .font200 {
  font-weight: 200;
}

.new-design .font300 {
  font-weight: 300;
}

.new-design .font400 {
  font-weight: 400;
}

.new-design .font500 {
  font-weight: 500;
}

.new-design .font600 {
  font-weight: 600;
}

.new-design .font700 {
  font-weight: 700;
}

.new-design .font800 {
  font-weight: 800;
}

.new-design .font900 {
  font-weight: 900;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
.new-design html,
body,
.new-design div,
.new-design span,
.new-design applet,
.new-design object,
.new-design iframe,
.new-design h1,
.new-design h2,
.new-design h3,
.new-design h4,
.new-design h5,
.new-design h6,
.new-design p,
.new-design blockquote,
.new-design pre,
.new-design a,
.new-design abbr,
.new-design acronym,
.new-design address,
.new-design big,
.new-design cite,
.new-design code,
.new-design del,
.new-design dfn,
.new-design em,
.new-design img,
.new-design ins,
.new-design kbd,
.new-design q,
.new-design s,
.new-design samp,
.new-design small,
.new-design strike,
.new-design strong,
.new-design sub,
.new-design sup,
.new-design tt,
.new-design var,
.new-design b,
.new-design u,
.new-design i,
.new-design center,
.new-design dl,
.new-design dt,
.new-design dd,
.new-design ol,
.new-design ul,
.new-design li,
.new-design fieldset,
.new-design form,
.new-design label,
.new-design legend,
.new-design table,
.new-design caption,
.new-design tbody,
.new-design tfoot,
.new-design thead,
.new-design tr,
.new-design th,
.new-design td,
.new-design article,
.new-design aside,
.new-design canvas,
.new-design details,
.new-design embed,
.new-design figure,
.new-design figcaption,
.new-design footer,
.new-design header,
.new-design hgroup,
.new-design menu,
.new-design nav,
.new-design output,
.new-design ruby,
.new-design section,
.new-design summary,
.new-design time,
.new-design mark,
.new-design audio,
.new-design video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
.new-design article,
.new-design aside,
.new-design details,
.new-design figcaption,
.new-design figure,
.new-design footer,
.new-design header,
.new-design hgroup,
.new-design menu,
.new-design nav,
.new-design section {
  display: block;
}

body {
  line-height: 1;
}

.new-design ol,
.new-design ul {
  list-style: none;
}

.new-design blockquote,
.new-design q {
  quotes: none;
}

.new-design blockquote:before,
.new-design blockquote:after,
.new-design q:before,
.new-design q:after {
  content: "";
  content: none;
}

.new-design table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
  color: #000;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
}

body.no-scroll {
  overflow: hidden;
}

.new-design html {
  height: 100%;
}

.new-design section,
.new-design header,
.new-design footer {
  position: relative;
  outline: 0;
  border: 0;
}

@media screen and (max-width: 767px) {
  .new-design section {
    overflow: hidden;
  }
}
.new-design ::-webkit-scrollbar {
  width: 8px;
}

.new-design ::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.05);
}

.new-design ::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}

.new-design ::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.new-design img {
  max-width: 100%;
  display: block;
}

.new-design b,
.new-design strong {
  font-weight: 700;
}

.new-design i,
.new-design em {
  font-style: italic;
}

.new-design h1,
.new-design h2,
.new-design h3,
.new-design h4,
.new-design h5 {
  margin: 0;
  color: #000;
  z-index: 1;
  position: relative;
  margin-bottom: 15px;
}
@media screen and (min-width: 600px) {
  .new-design h1,
  .new-design h2,
  .new-design h3,
  .new-design h4,
  .new-design h5 {
    margin-bottom: 20px;
  }
}

.new-design h1 {
  font-family: "Lato", sans-serif;
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .new-design h1 {
    font-size: 44px;
    line-height: 54px;
  }
}
@media screen and (min-width: 1200px) {
  .new-design h1 {
    font-size: 58px;
    line-height: 68px;
  }
}

.new-design h2 {
  font-family: "Lato", sans-serif;
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .new-design h2 {
    font-size: 34px;
    line-height: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .new-design h2 {
    font-size: 44px;
    line-height: 54px;
  }
}

.new-design h3 {
  font-family: "Lato", sans-serif;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
}
@media screen and (min-width: 767px) {
  .new-design h3 {
    font-size: 28px;
    line-height: 38px;
  }
}
@media screen and (min-width: 1200px) {
  .new-design h3 {
    font-size: 34px;
    line-height: 44px;
  }
}

.new-design h4 {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
@media screen and (min-width: 767px) {
  .new-design h4 {
    font-size: 24px;
    line-height: 34px;
  }
}
@media screen and (min-width: 1200px) {
  .new-design h4 {
    font-size: 26px;
    line-height: 36px;
  }
}

.new-design h5 {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
@media screen and (min-width: 767px) {
  .new-design h5 {
    font-size: 18px;
    line-height: 28px;
  }
}

.new-design p {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 22px;
  position: relative;
  z-index: 1;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
}
@media screen and (min-width: 600px) {
  .new-design p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 992px) {
  .new-design p {
    font-size: 18px;
    line-height: 30px;
  }
}
.new-design p a {
  color: #0038FF;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  text-decoration: underline;
}
@media screen and (min-width: 600px) {
  .new-design p a {
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (min-width: 992px) {
  .new-design p a {
    font-size: 18px;
    line-height: 30px;
  }
}

.new-design .small {
  font-size: 12px;
  line-height: 18px;
}
@media screen and (min-width: 600px) {
  .new-design .small {
    font-size: 16px;
    line-height: 24px;
  }
}
.new-design .small a {
  text-decoration: underline;
  font-size: 12px;
  line-height: 18px;
  color: #0038FF;
}
@media screen and (min-width: 600px) {
  .new-design .small a {
    font-size: 16px;
    line-height: 24px;
  }
}

.new-design .container {
  width: auto;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .new-design .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 767px) {
  .new-design .container {
    width: 740px;
  }
}
@media screen and (min-width: 992px) {
  .new-design .container {
    width: 970px;
  }
}
@media screen and (min-width: 1200px) {
  .new-design .container {
    width: 1170px;
  }
}
@media screen and (min-width: 1300px) {
  .new-design .container {
    width: 1270px;
  }
}
@media screen and (min-width: 1500px) {
  .new-design .container {
    width: 1470px;
  }
}

.new-design .row {
  margin-left: -10px;
  margin-right: -10px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .new-design .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.new-design .row > * {
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .new-design .row > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.new-design * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.new-design *:before,
.new-design *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.new-design .col-xs-1,
.new-design .col-sm-1,
.new-design .col-md-1,
.new-design .col-lg-1,
.new-design .col-xl-1,
.new-design .col-xs-2,
.new-design .col-sm-2,
.new-design .col-md-2,
.new-design .col-lg-2,
.new-design .col-xl-2,
.new-design .col-xs-3,
.new-design .col-sm-3,
.new-design .col-md-3,
.new-design .col-lg-3,
.new-design .col-xl-3,
.new-design .col-xs-4,
.new-design .col-sm-4,
.new-design .col-md-4,
.new-design .col-lg-4,
.new-design .col-xl-4,
.new-design .col-xs-5,
.new-design .col-sm-5,
.new-design .col-md-5,
.new-design .col-lg-5,
.new-design .col-xl-5,
.new-design .col-xs-6,
.new-design .col-sm-6,
.new-design .col-md-6,
.new-design .col-lg-6,
.new-design .col-xl-6,
.new-design .col-xs-7,
.new-design .col-sm-7,
.new-design .col-md-7,
.new-design .col-lg-7,
.new-design .col-xl-7,
.new-design .col-xs-8,
.new-design .col-sm-8,
.new-design .col-md-8,
.new-design .col-lg-8,
.new-design .col-xl-8,
.new-design .col-xs-9,
.new-design .col-sm-9,
.new-design .col-md-9,
.new-design .col-lg-9,
.new-design .col-xl-9,
.new-design .col-xs-10,
.new-design .col-sm-10,
.new-design .col-md-10,
.new-design .col-lg-10,
.new-design .col-xl-10,
.new-design .col-xs-11,
.new-design .col-sm-11,
.new-design .col-md-11,
.new-design .col-lg-11,
.new-design .col-xl-11,
.new-design .col-xs-12,
.new-design .col-sm-12,
.new-design .col-md-12,
.new-design .col-lg-12,
.new-design .col-xl-12 {
  position: relative;
  min-height: 1px;
}

.new-design .col-xs-1,
.new-design .col-xs-2,
.new-design .col-xs-3,
.new-design .col-xs-4,
.new-design .col-xs-5,
.new-design .col-xs-6,
.new-design .col-xs-7,
.new-design .col-xs-8,
.new-design .col-xs-9,
.new-design .col-xs-10,
.new-design .col-xs-11,
.new-design .col-xs-12 {
  float: left;
}

.new-design .col-xs-12 {
  width: 100%;
}

.new-design .col-xs-11 {
  width: 91.66666667%;
}

.new-design .col-xs-10 {
  width: 83.33333333%;
}

.new-design .col-xs-9 {
  width: 75%;
}

.new-design .col-xs-8 {
  width: 66.66666667%;
}

.new-design .col-xs-7 {
  width: 58.33333333%;
}

.new-design .col-xs-6 {
  width: 50%;
}

.new-design .col-xs-5 {
  width: 41.66666667%;
}

.new-design .col-xs-4 {
  width: 33.33333333%;
}

.new-design .col-xs-3 {
  width: 25%;
}

.new-design .col-xs-2 {
  width: 16.66666667%;
}

.new-design .col-xs-1 {
  width: 8.33333333%;
}

.new-design .col-xs-pull-12 {
  right: 100%;
}

.new-design .col-xs-pull-11 {
  right: 91.66666667%;
}

.new-design .col-xs-pull-10 {
  right: 83.33333333%;
}

.new-design .col-xs-pull-9 {
  right: 75%;
}

.new-design .col-xs-pull-8 {
  right: 66.66666667%;
}

.new-design .col-xs-pull-7 {
  right: 58.33333333%;
}

.new-design .col-xs-pull-6 {
  right: 50%;
}

.new-design .col-xs-pull-5 {
  right: 41.66666667%;
}

.new-design .col-xs-pull-4 {
  right: 33.33333333%;
}

.new-design .col-xs-pull-3 {
  right: 25%;
}

.new-design .col-xs-pull-2 {
  right: 16.66666667%;
}

.new-design .col-xs-pull-1 {
  right: 8.33333333%;
}

.new-design .col-xs-pull-0 {
  right: auto;
}

.new-design .col-xs-push-12 {
  left: 100%;
}

.new-design .col-xs-push-11 {
  left: 91.66666667%;
}

.new-design .col-xs-push-10 {
  left: 83.33333333%;
}

.new-design .col-xs-push-9 {
  left: 75%;
}

.new-design .col-xs-push-8 {
  left: 66.66666667%;
}

.new-design .col-xs-push-7 {
  left: 58.33333333%;
}

.new-design .col-xs-push-6 {
  left: 50%;
}

.new-design .col-xs-push-5 {
  left: 41.66666667%;
}

.new-design .col-xs-push-4 {
  left: 33.33333333%;
}

.new-design .col-xs-push-3 {
  left: 25%;
}

.new-design .col-xs-push-2 {
  left: 16.66666667%;
}

.new-design .col-xs-push-1 {
  left: 8.33333333%;
}

.new-design .col-xs-push-0 {
  left: auto;
}

.new-design .col-xs-offset-12 {
  margin-left: 100%;
}

.new-design .col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.new-design .col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.new-design .col-xs-offset-9 {
  margin-left: 75%;
}

.new-design .col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.new-design .col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.new-design .col-xs-offset-6 {
  margin-left: 50%;
}

.new-design .col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.new-design .col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.new-design .col-xs-offset-3 {
  margin-left: 25%;
}

.new-design .col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.new-design .col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.new-design .col-xs-offset-0 {
  margin-left: 0%;
}

@media screen and (min-width: 767px) {
  .new-design .col-sm-1,
  .new-design .col-sm-2,
  .new-design .col-sm-3,
  .new-design .col-sm-4,
  .new-design .col-sm-5,
  .new-design .col-sm-6,
  .new-design .col-sm-7,
  .new-design .col-sm-8,
  .new-design .col-sm-9,
  .new-design .col-sm-10,
  .new-design .col-sm-11,
  .new-design .col-sm-12 {
    float: left;
  }
  .new-design .col-sm-12 {
    width: 100%;
  }
  .new-design .col-sm-11 {
    width: 91.66666667%;
  }
  .new-design .col-sm-10 {
    width: 83.33333333%;
  }
  .new-design .col-sm-9 {
    width: 75%;
  }
  .new-design .col-sm-8 {
    width: 66.66666667%;
  }
  .new-design .col-sm-7 {
    width: 58.33333333%;
  }
  .new-design .col-sm-6 {
    width: 50%;
  }
  .new-design .col-sm-5 {
    width: 41.66666667%;
  }
  .new-design .col-sm-4 {
    width: 33.33333333%;
  }
  .new-design .col-sm-3 {
    width: 25%;
  }
  .new-design .col-sm-2 {
    width: 16.66666667%;
  }
  .new-design .col-sm-1 {
    width: 8.33333333%;
  }
  .new-design .col-sm-pull-12 {
    right: 100%;
  }
  .new-design .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .new-design .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .new-design .col-sm-pull-9 {
    right: 75%;
  }
  .new-design .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .new-design .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .new-design .col-sm-pull-6 {
    right: 50%;
  }
  .new-design .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .new-design .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .new-design .col-sm-pull-3 {
    right: 25%;
  }
  .new-design .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .new-design .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .new-design .col-sm-pull-0 {
    right: auto;
  }
  .new-design .col-sm-push-12 {
    left: 100%;
  }
  .new-design .col-sm-push-11 {
    left: 91.66666667%;
  }
  .new-design .col-sm-push-10 {
    left: 83.33333333%;
  }
  .new-design .col-sm-push-9 {
    left: 75%;
  }
  .new-design .col-sm-push-8 {
    left: 66.66666667%;
  }
  .new-design .col-sm-push-7 {
    left: 58.33333333%;
  }
  .new-design .col-sm-push-6 {
    left: 50%;
  }
  .new-design .col-sm-push-5 {
    left: 41.66666667%;
  }
  .new-design .col-sm-push-4 {
    left: 33.33333333%;
  }
  .new-design .col-sm-push-3 {
    left: 25%;
  }
  .new-design .col-sm-push-2 {
    left: 16.66666667%;
  }
  .new-design .col-sm-push-1 {
    left: 8.33333333%;
  }
  .new-design .col-sm-push-0 {
    left: auto;
  }
  .new-design .col-sm-offset-12 {
    margin-left: 100%;
  }
  .new-design .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .new-design .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .new-design .col-sm-offset-9 {
    margin-left: 75%;
  }
  .new-design .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .new-design .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .new-design .col-sm-offset-6 {
    margin-left: 50%;
  }
  .new-design .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .new-design .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .new-design .col-sm-offset-3 {
    margin-left: 25%;
  }
  .new-design .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .new-design .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .new-design .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media screen and (min-width: 992px) {
  .new-design .col-md-1,
  .new-design .col-md-2,
  .new-design .col-md-3,
  .new-design .col-md-4,
  .new-design .col-md-5,
  .new-design .col-md-6,
  .new-design .col-md-7,
  .new-design .col-md-8,
  .new-design .col-md-9,
  .new-design .col-md-10,
  .new-design .col-md-11,
  .new-design .col-md-12 {
    float: left;
  }
  .new-design .col-md-12 {
    width: 100%;
  }
  .new-design .col-md-11 {
    width: 91.66666667%;
  }
  .new-design .col-md-10 {
    width: 83.33333333%;
  }
  .new-design .col-md-9 {
    width: 75%;
  }
  .new-design .col-md-8 {
    width: 66.66666667%;
  }
  .new-design .col-md-7 {
    width: 58.33333333%;
  }
  .new-design .col-md-6 {
    width: 50%;
  }
  .new-design .col-md-5 {
    width: 41.66666667%;
  }
  .new-design .col-md-4 {
    width: 33.33333333%;
  }
  .new-design .col-md-3 {
    width: 25%;
  }
  .new-design .col-md-2 {
    width: 16.66666667%;
  }
  .new-design .col-md-1 {
    width: 8.33333333%;
  }
  .new-design .col-md-pull-12 {
    right: 100%;
  }
  .new-design .col-md-pull-11 {
    right: 91.66666667%;
  }
  .new-design .col-md-pull-10 {
    right: 83.33333333%;
  }
  .new-design .col-md-pull-9 {
    right: 75%;
  }
  .new-design .col-md-pull-8 {
    right: 66.66666667%;
  }
  .new-design .col-md-pull-7 {
    right: 58.33333333%;
  }
  .new-design .col-md-pull-6 {
    right: 50%;
  }
  .new-design .col-md-pull-5 {
    right: 41.66666667%;
  }
  .new-design .col-md-pull-4 {
    right: 33.33333333%;
  }
  .new-design .col-md-pull-3 {
    right: 25%;
  }
  .new-design .col-md-pull-2 {
    right: 16.66666667%;
  }
  .new-design .col-md-pull-1 {
    right: 8.33333333%;
  }
  .new-design .col-md-pull-0 {
    right: auto;
  }
  .new-design .col-md-push-12 {
    left: 100%;
  }
  .new-design .col-md-push-11 {
    left: 91.66666667%;
  }
  .new-design .col-md-push-10 {
    left: 83.33333333%;
  }
  .new-design .col-md-push-9 {
    left: 75%;
  }
  .new-design .col-md-push-8 {
    left: 66.66666667%;
  }
  .new-design .col-md-push-7 {
    left: 58.33333333%;
  }
  .new-design .col-md-push-6 {
    left: 50%;
  }
  .new-design .col-md-push-5 {
    left: 41.66666667%;
  }
  .new-design .col-md-push-4 {
    left: 33.33333333%;
  }
  .new-design .col-md-push-3 {
    left: 25%;
  }
  .new-design .col-md-push-2 {
    left: 16.66666667%;
  }
  .new-design .col-md-push-1 {
    left: 8.33333333%;
  }
  .new-design .col-md-push-0 {
    left: auto;
  }
  .new-design .col-md-offset-12 {
    margin-left: 100%;
  }
  .new-design .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .new-design .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .new-design .col-md-offset-9 {
    margin-left: 75%;
  }
  .new-design .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .new-design .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .new-design .col-md-offset-6 {
    margin-left: 50%;
  }
  .new-design .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .new-design .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .new-design .col-md-offset-3 {
    margin-left: 25%;
  }
  .new-design .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .new-design .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .new-design .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media screen and (min-width: 1200px) {
  .new-design .col-lg-1,
  .new-design .col-lg-2,
  .new-design .col-lg-3,
  .new-design .col-lg-4,
  .new-design .col-lg-5,
  .new-design .col-lg-6,
  .new-design .col-lg-7,
  .new-design .col-lg-8,
  .new-design .col-lg-9,
  .new-design .col-lg-10,
  .new-design .col-lg-11,
  .new-design .col-lg-12 {
    float: left;
  }
  .new-design .col-lg-12 {
    width: 100%;
  }
  .new-design .col-lg-11 {
    width: 91.66666667%;
  }
  .new-design .col-lg-10 {
    width: 83.33333333%;
  }
  .new-design .col-lg-9 {
    width: 75%;
  }
  .new-design .col-lg-8 {
    width: 66.66666667%;
  }
  .new-design .col-lg-7 {
    width: 58.33333333%;
  }
  .new-design .col-lg-6 {
    width: 50%;
  }
  .new-design .col-lg-5 {
    width: 41.66666667%;
  }
  .new-design .col-lg-4 {
    width: 33.33333333%;
  }
  .new-design .col-lg-3 {
    width: 25%;
  }
  .new-design .col-lg-2 {
    width: 16.66666667%;
  }
  .new-design .col-lg-1 {
    width: 8.33333333%;
  }
  .new-design .col-lg-pull-12 {
    right: 100%;
  }
  .new-design .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .new-design .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .new-design .col-lg-pull-9 {
    right: 75%;
  }
  .new-design .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .new-design .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .new-design .col-lg-pull-6 {
    right: 50%;
  }
  .new-design .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .new-design .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .new-design .col-lg-pull-3 {
    right: 25%;
  }
  .new-design .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .new-design .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .new-design .col-lg-pull-0 {
    right: auto;
  }
  .new-design .col-lg-push-12 {
    left: 100%;
  }
  .new-design .col-lg-push-11 {
    left: 91.66666667%;
  }
  .new-design .col-lg-push-10 {
    left: 83.33333333%;
  }
  .new-design .col-lg-push-9 {
    left: 75%;
  }
  .new-design .col-lg-push-8 {
    left: 66.66666667%;
  }
  .new-design .col-lg-push-7 {
    left: 58.33333333%;
  }
  .new-design .col-lg-push-6 {
    left: 50%;
  }
  .new-design .col-lg-push-5 {
    left: 41.66666667%;
  }
  .new-design .col-lg-push-4 {
    left: 33.33333333%;
  }
  .new-design .col-lg-push-3 {
    left: 25%;
  }
  .new-design .col-lg-push-2 {
    left: 16.66666667%;
  }
  .new-design .col-lg-push-1 {
    left: 8.33333333%;
  }
  .new-design .col-lg-push-0 {
    left: auto;
  }
  .new-design .col-lg-offset-12 {
    margin-left: 100%;
  }
  .new-design .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .new-design .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .new-design .col-lg-offset-9 {
    margin-left: 75%;
  }
  .new-design .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .new-design .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .new-design .col-lg-offset-6 {
    margin-left: 50%;
  }
  .new-design .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .new-design .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .new-design .col-lg-offset-3 {
    margin-left: 25%;
  }
  .new-design .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .new-design .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .new-design .col-lg-offset-0 {
    margin-left: 0%;
  }
}
@media screen and (min-width: 1500px) {
  .new-design .col-xl-1,
  .new-design .col-xl-2,
  .new-design .col-xl-3,
  .new-design .col-xl-4,
  .new-design .col-xl-5,
  .new-design .col-xl-6,
  .new-design .col-xl-7,
  .new-design .col-xl-8,
  .new-design .col-xl-9,
  .new-design .col-xl-10,
  .new-design .col-xl-11,
  .new-design .col-xl-12 {
    float: left;
  }
  .new-design .col-xl-12 {
    width: 100%;
  }
  .new-design .col-xl-11 {
    width: 91.66666667%;
  }
  .new-design .col-xl-10 {
    width: 83.33333333%;
  }
  .new-design .col-xl-9 {
    width: 75%;
  }
  .new-design .col-xl-8 {
    width: 66.66666667%;
  }
  .new-design .col-xl-7 {
    width: 58.33333333%;
  }
  .new-design .col-xl-6 {
    width: 50%;
  }
  .new-design .col-xl-5 {
    width: 41.66666667%;
  }
  .new-design .col-xl-4 {
    width: 33.33333333%;
  }
  .new-design .col-xl-3 {
    width: 25%;
  }
  .new-design .col-xl-2 {
    width: 16.66666667%;
  }
  .new-design .col-xl-1 {
    width: 8.33333333%;
  }
  .new-design .col-xl-pull-12 {
    right: 100%;
  }
  .new-design .col-xl-pull-11 {
    right: 91.66666667%;
  }
  .new-design .col-xl-pull-10 {
    right: 83.33333333%;
  }
  .new-design .col-xl-pull-9 {
    right: 75%;
  }
  .new-design .col-xl-pull-8 {
    right: 66.66666667%;
  }
  .new-design .col-xl-pull-7 {
    right: 58.33333333%;
  }
  .new-design .col-xl-pull-6 {
    right: 50%;
  }
  .new-design .col-xl-pull-5 {
    right: 41.66666667%;
  }
  .new-design .col-xl-pull-4 {
    right: 33.33333333%;
  }
  .new-design .col-xl-pull-3 {
    right: 25%;
  }
  .new-design .col-xl-pull-2 {
    right: 16.66666667%;
  }
  .new-design .col-xl-pull-1 {
    right: 8.33333333%;
  }
  .new-design .col-xl-pull-0 {
    right: auto;
  }
  .new-design .col-xl-push-12 {
    left: 100%;
  }
  .new-design .col-xl-push-11 {
    left: 91.66666667%;
  }
  .new-design .col-xl-push-10 {
    left: 83.33333333%;
  }
  .new-design .col-xl-push-9 {
    left: 75%;
  }
  .new-design .col-xl-push-8 {
    left: 66.66666667%;
  }
  .new-design .col-xl-push-7 {
    left: 58.33333333%;
  }
  .new-design .col-xl-push-6 {
    left: 50%;
  }
  .new-design .col-xl-push-5 {
    left: 41.66666667%;
  }
  .new-design .col-xl-push-4 {
    left: 33.33333333%;
  }
  .new-design .col-xl-push-3 {
    left: 25%;
  }
  .new-design .col-xl-push-2 {
    left: 16.66666667%;
  }
  .new-design .col-xl-push-1 {
    left: 8.33333333%;
  }
  .new-design .col-xl-push-0 {
    left: auto;
  }
  .new-design .col-xl-offset-12 {
    margin-left: 100%;
  }
  .new-design .col-xl-offset-11 {
    margin-left: 91.66666667%;
  }
  .new-design .col-xl-offset-10 {
    margin-left: 83.33333333%;
  }
  .new-design .col-xl-offset-9 {
    margin-left: 75%;
  }
  .new-design .col-xl-offset-8 {
    margin-left: 66.66666667%;
  }
  .new-design .col-xl-offset-7 {
    margin-left: 58.33333333%;
  }
  .new-design .col-xl-offset-6 {
    margin-left: 50%;
  }
  .new-design .col-xl-offset-5 {
    margin-left: 41.66666667%;
  }
  .new-design .col-xl-offset-4 {
    margin-left: 33.33333333%;
  }
  .new-design .col-xl-offset-3 {
    margin-left: 25%;
  }
  .new-design .col-xl-offset-2 {
    margin-left: 16.66666667%;
  }
  .new-design .col-xl-offset-1 {
    margin-left: 8.33333333%;
  }
  .new-design .col-xl-offset-0 {
    margin-left: 0%;
  }
}
.new-design .clearfix:before,
.new-design .clearfix:after,
.new-design .container:before,
.new-design .container:after,
.new-design .row:before,
.new-design .row:after {
  content: " ";
  display: table;
}

.new-design .clearfix:after,
.new-design .container:after,
.new-design .row:after {
  clear: both;
}

.new-design .header {
  display: block;
  z-index: 10;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 60px;
}
@media screen and (min-width: 600px) {
  .new-design .header {
    height: 80px;
  }
}
@media screen and (min-width: 992px) {
  .new-design .header {
    position: absolute;
    height: 100px;
  }
}
@media screen and (max-width: 992px) {
  .new-design .header {
    background-color: #fff;
    -webkit-box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
  }
}
.new-design .header .container {
  height: 60px;
}
@media screen and (min-width: 600px) {
  .new-design .header .container {
    height: 80px;
  }
}
@media screen and (min-width: 992px) {
  .new-design .header .container {
    height: 100px;
  }
}
.new-design .header .logo {
  z-index: 10;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .new-design .header .logo {
    left: 15px;
  }
}
.new-design .header-menu {
  position: relative;
}
@media screen and (min-width: 992px) {
  .new-design .header-menu {
    margin-left: 240px;
  }
}
@media screen and (max-width: 992px) {
  .new-design .header-menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0px;
    bottom: 0;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.95);
  }
}
.new-design .header-menu > ul {
  position: relative;
}
@media screen and (max-width: 992px) {
  .new-design .header-menu > ul {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
  }
}
.new-design .header-menu > ul > li {
  position: relative;
  display: block;
}
@media screen and (min-width: 992px) {
  .new-design .header-menu > ul > li {
    display: inline-block;
  }
}
.new-design .header-menu > ul > li > a {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  display: block;
  color: #000;
  padding: 28px 0px;
  position: relative;
  text-align: center;
  font-size: 30px;
  line-height: 30px;
  text-decoration: none;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 992px) {
  .new-design .header-menu > ul > li > a {
    font-size: 18px;
    line-height: 24px;
    padding: 38px 6px;
  }
}
@media screen and (min-width: 1200px) {
  .new-design .header-menu > ul > li > a {
    padding: 38px 10px;
  }
}
@media screen and (min-width: 1300px) {
  .new-design .header-menu > ul > li > a {
    padding: 38px 16px;
  }
}
.new-design .header-menu > ul > li > a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 6px;
  right: 6px;
  height: 4px;
  display: none;
  background-color: #0038FF;
  opacity: 0;
}
@media screen and (min-width: 992px) {
  .new-design .header-menu > ul > li > a:after {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .new-design .header-menu > ul > li > a:after {
    left: 10px;
    right: 10px;
  }
}
@media screen and (min-width: 1300px) {
  .new-design .header-menu > ul > li > a:after {
    left: 16px;
    right: 16px;
  }
}
.new-design .header-menu > ul > li > a:hover, .new-design .header-menu > ul > li > a:focus {
  color: #0038FF;
  text-decoration: none;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .header-menu > ul > li.current a {
  color: #0038FF;
  font-weight: 700;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .header-menu > ul > li.current a:after {
  opacity: 1;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .header-help-menu {
  position: absolute;
  right: 95px;
  top: 10px;
  z-index: 10;
}
@media screen and (min-width: 600px) {
  .new-design .header-help-menu {
    top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .new-design .header-help-menu {
    top: 25px;
    right: 15px;
  }
}
.new-design .header-help-menu > ul {
  position: relative;
}
.new-design .header-help-menu > ul > li {
  position: relative;
  display: inline-block;
}
.new-design .header-help-menu > ul > li > a {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  display: block;
  padding: 6px 12px 6px 30px;
  position: relative;
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (max-width: 600px) {
  .new-design .header-help-menu > ul > li > a {
    text-indent: -9999px;
    padding: 6px 0px;
    width: 40px;
  }
}
@media screen and (min-width: 992px) {
  .new-design .header-help-menu > ul > li > a {
    padding: 12px 16px 12px 36px;
  }
}
@media screen and (min-width: 1200px) {
  .new-design .header-help-menu > ul > li > a {
    font-size: 16px;
    padding: 12px 24px 12px 48px;
  }
}
.new-design .header-help-menu > ul > li > a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 8px;
  display: block;
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (max-width: 600px) {
  .new-design .header-help-menu > ul > li > a:after {
    left: 0px;
    right: 0;
    margin: auto;
  }
}
@media screen and (min-width: 992px) {
  .new-design .header-help-menu > ul > li > a:after {
    left: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .new-design .header-help-menu > ul > li > a:after {
    left: 16px;
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }
}
.new-design .header-help-menu > ul > li > a:hover, .new-design .header-help-menu > ul > li > a:focus {
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .header-help-menu > ul > li > a:hover:after, .new-design .header-help-menu > ul > li > a:focus:after {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .header-help-menu > ul > li.help-menu-support a {
  color: #000;
  text-decoration: underline;
  font-weight: 400;
}
.new-design .header-help-menu > ul > li.help-menu-support a:after {
  background-image: url(../../assets/images/icons/icn-support-black.svg);
}
.new-design .header-help-menu > ul > li.help-menu-support a:hover, .new-design .header-help-menu > ul > li.help-menu-support a:focus {
  color: #0038FF;
}
.new-design .header-help-menu > ul > li.help-menu-support a:hover:after, .new-design .header-help-menu > ul > li.help-menu-support a:focus:after {
  background-image: url(../../assets/images/icons/icn-support-blue.svg);
}
.new-design .header-help-menu > ul > li.help-menu-my-account a {
  color: #fff;
  background-color: #0038FF;
  text-decoration: none;
  font-weight: 600;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.new-design .header-help-menu > ul > li.help-menu-my-account a:after {
  background-image: url(../../assets/images/icons/icn-my-account-white.svg);
}
.new-design .header-help-menu > ul > li.help-menu-my-account a:hover, .new-design .header-help-menu > ul > li.help-menu-my-account a:focus {
  background-color: #000;
}
.new-design .header-mobile-menu {
  display: none;
}
@media screen and (max-width: 992px) {
  .new-design .header-mobile-menu {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    right: 15px;
    z-index: 10;
    -webkit-transition: all 300ms ease 0ms;
    -moz-transition: all 300ms ease 0ms;
    -o-transition: all 300ms ease 0ms;
    transition: all 300ms ease 0ms;
  }
  .new-design .header-mobile-menu span {
    position: absolute;
    right: 25px;
    width: 30px;
    height: 2px;
    display: block;
    background-color: #0038FF;
    -webkit-transition: all 300ms ease 0ms;
    -moz-transition: all 300ms ease 0ms;
    -o-transition: all 300ms ease 0ms;
    transition: all 300ms ease 0ms;
  }
  .new-design .header-mobile-menu span:nth-child(1) {
    top: 26px;
  }
  .new-design .header-mobile-menu span:nth-child(2) {
    top: 36px;
  }
  .new-design .header-mobile-menu span:nth-child(3) {
    top: 46px;
    width: 15px;
  }
  .new-design .header-mobile-menu.header-mobile-menu-open span {
    -webkit-transition: all 300ms ease 0ms;
    -moz-transition: all 300ms ease 0ms;
    -o-transition: all 300ms ease 0ms;
    transition: all 300ms ease 0ms;
  }
  .new-design .header-mobile-menu.header-mobile-menu-open span:nth-child(1) {
    top: 36px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 300ms ease 0ms;
    -moz-transition: all 300ms ease 0ms;
    -o-transition: all 300ms ease 0ms;
    transition: all 300ms ease 0ms;
  }
  .new-design .header-mobile-menu.header-mobile-menu-open span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 300ms ease 0ms;
    -moz-transition: all 300ms ease 0ms;
    -o-transition: all 300ms ease 0ms;
    transition: all 300ms ease 0ms;
  }
  .new-design .header-mobile-menu.header-mobile-menu-open span:nth-child(3) {
    opacity: 0;
    -webkit-transition: all 300ms ease 0ms;
    -moz-transition: all 300ms ease 0ms;
    -o-transition: all 300ms ease 0ms;
    transition: all 300ms ease 0ms;
  }
}
@media screen and (max-width: 600px) {
  .new-design .header-mobile-menu {
    right: 10px;
  }
  .new-design .header-mobile-menu span:nth-child(1) {
    top: 18px;
  }
  .new-design .header-mobile-menu span:nth-child(2) {
    top: 28px;
  }
  .new-design .header-mobile-menu span:nth-child(3) {
    top: 38px;
  }
  .new-design .header-mobile-menu.header-mobile-menu-open span:nth-child(1) {
    top: 28px;
  }
}

.new-design .header + section {
  padding-top: 100px;
}
@media screen and (min-width: 600px) {
  .new-design .header + section {
    padding-top: 120px;
  }
}
@media screen and (min-width: 767px) {
  .new-design .header + section {
    padding-top: 160px;
  }
}
@media screen and (min-width: 992px) {
  .new-design .header + section {
    padding-top: 180px;
  }
}

.new-design .footer {
  padding: 60px 0px 20px 0px;
}
.new-design .footer-menu {
  position: relative;
}
.new-design .footer-menu li {
  position: relative;
  display: block;
}
.new-design .footer-menu li a {
  font-family: "Lato", sans-serif;
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-bottom: 15px;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: underline;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .footer-menu li a:hover, .new-design .footer-menu li a:focus {
  padding-left: 4px;
  color: #0038FF;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .footer-menu li:last-child a {
  padding-bottom: 0px;
}
.new-design .footer .scroll-to-top {
  position: relative;
  display: block;
  cursor: pointer;
  z-index: 1;
  text-align: center;
  margin-bottom: 30px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .footer .scroll-to-top {
    margin-bottom: 60px;
  }
}
.new-design .footer .scroll-to-top:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(37, 16, 16, 0.1);
  display: block;
  height: 1px;
}
.new-design .footer .scroll-to-top-arrow {
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .footer .scroll-to-top-arrow:after, .new-design .footer .scroll-to-top-arrow:before {
  content: "";
  position: absolute;
  top: -10px;
  width: 8px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .footer .scroll-to-top-arrow:after {
  left: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.new-design .footer .scroll-to-top-arrow:before {
  right: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.new-design .footer .scroll-to-top-title {
  font-family: "Lato", sans-serif;
  display: inline-block;
  position: relative;
  padding: 0px 15px;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  background-color: #fff;
  z-index: 2;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .footer .scroll-to-top-title {
    padding: 0px 30px;
    font-size: 16px;
  }
}
.new-design .footer .scroll-to-top:hover, .new-design .footer .scroll-to-top:focus {
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .footer .scroll-to-top:hover .scroll-to-top-title, .new-design .footer .scroll-to-top:focus .scroll-to-top-title {
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .footer .scroll-to-top:hover .scroll-to-top-arrow, .new-design .footer .scroll-to-top:focus .scroll-to-top-arrow {
  top: 0px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .footer .scroll-to-top:hover .scroll-to-top-arrow:after, .new-design .footer .scroll-to-top:hover .scroll-to-top-arrow:before, .new-design .footer .scroll-to-top:focus .scroll-to-top-arrow:after, .new-design .footer .scroll-to-top:focus .scroll-to-top-arrow:before {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

.new-design ::-webkit-input-placeholder {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: rgba(37, 16, 16, 0.1);
}
@media screen and (min-width: 767px) {
  .new-design ::-webkit-input-placeholder {
    font-size: 16px;
  }
}

.new-design ::-moz-placeholder {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: rgba(37, 16, 16, 0.1);
}
@media screen and (min-width: 767px) {
  .new-design ::-moz-placeholder {
    font-size: 16px;
  }
}

.new-design :-ms-input-placeholder {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: rgba(37, 16, 16, 0.1);
}
@media screen and (min-width: 767px) {
  .new-design :-ms-input-placeholder {
    font-size: 16px;
  }
}

.new-design :-moz-placeholder {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: rgba(37, 16, 16, 0.1);
}
@media screen and (min-width: 767px) {
  .new-design :-moz-placeholder {
    font-size: 16px;
  }
}

.new-design .form-control {
  font-family: "Lato", sans-serif;
  width: 100%;
  z-index: 1;
  box-sizing: border-box;
  outline: 0;
  background-color: #fff;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #000;
  font-weight: 600;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}
@media screen and (min-width: 767px) {
  .new-design .form-control {
    padding: 10px 20px;
    font-size: 16px;
  }
}
.new-design .form-control:hover, .new-design .form-control:focus {
  border-color: #0038FF;
  -webkit-box-shadow: 0 2px 10px 4px rgba(0, 56, 255, 0.1);
  -moz-box-shadow: 0 2px 10px 4px rgba(0, 56, 255, 0.1);
  box-shadow: 0 2px 10px 4px rgba(0, 56, 255, 0.1);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

/* Remove X icon */
.new-design input[type=search]::-webkit-search-cancel-button,
.new-design input[type=search]::-webkit-search-decoration,
.new-design input[type=search]::-webkit-search-results-button,
.new-design input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.new-design input[type=search]::-ms-clear {
  display: none;
  height: 0;
  width: 0;
}

.new-design input[type=search]::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}

.new-design textarea.form-control {
  resize: vertical;
  min-height: 120px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
}
@media screen and (min-width: 767px) {
  .new-design textarea.form-control {
    min-height: 160px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
  }
}
@media screen and (min-width: 992px) {
  .new-design textarea.form-control {
    min-height: 180px;
  }
}

.new-design .form-group {
  margin-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 767px) {
  .new-design .form-group {
    margin-bottom: 20px;
  }
}
.new-design .form-group.form-group-0 {
  margin-bottom: 0px;
}

.new-design select {
  cursor: pointer;
  background-image: url(../../assets/images/icons/icn-select-arrow.svg);
  background-repeat: no-repeat;
  background-position: center right 16px;
}

.new-design .btn {
  font-family: "Lato", sans-serif;
  outline: 0;
  border: 1px solid transparent;
  text-align: center;
  font-weight: 600;
  padding: 6px 10px;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  z-index: 1;
  letter-spacing: 0.5px;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
  /*Blue*/
  /*Block*/
}
@media screen and (min-width: 767px) {
  .new-design .btn {
    padding: 12px 30px;
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (min-width: 992px) {
  .new-design .btn {
    padding: 14px 46px;
  }
}
@media screen and (min-width: 1300px) {
  .new-design .btn {
    padding: 14px 54px;
  }
}
.new-design .btn span {
  position: relative;
  z-index: 2;
  text-align: center;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .btn span {
    gap: 15px;
  }
}
.new-design .btn span img {
  z-index: 1;
  width: 14px;
  height: auto;
  display: block;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .btn span img {
    width: 18px;
  }
}
.new-design .btn:hover, .new-design .btn:focus {
  text-decoration: none;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .btn:hover span, .new-design .btn:focus span {
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .btn:hover span img, .new-design .btn:focus span img {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .btn.btn-blue {
  background-color: #0038FF;
  color: #fff;
  border-color: #0038FF;
}
.new-design .btn.btn-blue:hover, .new-design .btn.btn-blue:focus {
  color: #fff;
  border-color: #000;
  background-color: #000;
}
.new-design .btn.btn-block {
  display: block;
  width: 100%;
}

.new-design .btn-link {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 20px;
  text-decoration: underline;
  color: #0038FF;
  font-weight: 600;
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .btn-link:hover, .new-design .btn-link:focus {
  color: #000;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

.new-design .logo {
  z-index: 1;
  position: relative;
  padding-left: 54px;
  font-size: 18px;
  line-height: 24px;
  display: inline-block;
  text-decoration: none;
}
@media screen and (min-width: 600px) {
  .new-design .logo {
    font-size: 24px;
    line-height: 56px;
  }
}
.new-design .logo:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/logo.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 44px;
  height: 38px;
  background-size: 44px 38px;
  display: block;
}

/*List social*/
.new-design .list-social {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 5px;
}
@media screen and (min-width: 600px) {
  .new-design .list-social {
    gap: 10px;
  }
}
.new-design .list-social li {
  display: block;
  position: relative;
}
.new-design .list-social li a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 56, 255, 0.2);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .list-social li a img {
  width: 18px;
  height: auto;
  display: block;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .list-social li a:hover, .new-design .list-social li a:focus {
  background-color: rgba(0, 56, 255, 0.1);
  border-color: rgba(0, 56, 255, 0.3);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .list-social li a:hover img, .new-design .list-social li a:focus img {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

/*List languages*/
.new-design .list-languages {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 5px;
}
@media screen and (min-width: 600px) {
  .new-design .list-languages {
    gap: 10px;
  }
}
.new-design .list-languages li {
  display: block;
  position: relative;
}
.new-design .list-languages li a {
  position: relative;
  cursor: pointer;
  display: block;
  padding: 2px;
  border: 2px solid transparent;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .list-languages li a img {
  width: 24px;
  height: auto;
  display: block;
  opacity: 0.4;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .list-languages li a:hover, .new-design .list-languages li a:focus {
  border-color: rgba(0, 56, 255, 0.2);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .list-languages li a:hover img, .new-design .list-languages li a:focus img {
  opacity: 1;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .list-languages li.current a {
  border-color: #0038FF;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .list-languages li.current a img {
  opacity: 1;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

.new-design .list-check {
  position: relative;
  display: block;
}
.new-design .list-check li {
  font-family: "Lato", sans-serif;
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 10px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .new-design .list-check li {
    gap: 10px;
    font-size: 18px;
    line-height: 24px;
  }
}
.new-design .list-check li:last-child {
  padding-bottom: 0;
}
.new-design .list-check li img {
  width: 14px;
  height: auto;
  display: block;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .new-design .list-check li img {
    width: 18px;
  }
}
.new-design .list-check li:hover, .new-design .list-check li:focus {
  color: #0038FF;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

.new-design .text-stat {
  text-align: center;
  position: relative;
  display: block;
  padding: 0px 20px;
}
.new-design .text-stat-box {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 767px) {
  .new-design .text-stat-box {
    font-size: 2.2vw;
    line-height: 100%;
    text-transform: uppercase;
  }
}
.new-design .text-stat-box span {
  font-weight: 800;
  font-family: "Lato", sans-serif;
}
.new-design .text-stat-box:after, .new-design .text-stat-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 20%;
  display: block;
}
@media screen and (min-width: 767px) {
  .new-design .text-stat-box:after, .new-design .text-stat-box:before {
    width: 30%;
  }
}
.new-design .text-stat-box:after {
  left: 0;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.new-design .text-stat-box:before {
  right: 0;
  background: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.new-design .accordion {
  position: relative;
  display: block;
}
.new-design .accordion .accordion-item {
  position: relative;
  display: block;
  background-color: #fff;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .new-design .accordion .accordion-item {
    margin-bottom: 20px;
    -webkit-box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
  }
}
.new-design .accordion .accordion-item .accordion-item-title {
  font-family: "Lato", sans-serif;
  cursor: pointer;
  padding: 10px 30px 10px 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  display: block;
  color: #000;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .new-design .accordion .accordion-item .accordion-item-title {
    padding: 16px 40px 16px 28px;
    font-size: 20px;
    line-height: 30px;
  }
}
.new-design .accordion .accordion-item .accordion-item-title span {
  position: absolute;
  top: 0px;
  bottom: 0;
  margin: auto;
  right: 16px;
  width: 12px;
  height: 12px;
  display: block;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .accordion .accordion-item .accordion-item-title span {
    right: 22px;
    width: 12px;
    height: 12px;
  }
}
.new-design .accordion .accordion-item .accordion-item-title span:after, .new-design .accordion .accordion-item .accordion-item-title span:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 2px;
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .accordion .accordion-item .accordion-item-title span:after, .new-design .accordion .accordion-item .accordion-item-title span:before {
    width: 16px;
  }
}
.new-design .accordion .accordion-item .accordion-item-title span:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.new-design .accordion .accordion-item .accordion-item-title:hover, .new-design .accordion .accordion-item .accordion-item-title:focus {
  color: #0038FF;
  text-decoration: none;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .accordion .accordion-item .accordion-item-title:hover span:after, .new-design .accordion .accordion-item .accordion-item-title:hover span:before, .new-design .accordion .accordion-item .accordion-item-title:focus span:after, .new-design .accordion .accordion-item .accordion-item-title:focus span:before {
  background-color: #000;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .accordion .accordion-item .accordion-item-title.accordion-item-title-active {
  color: #0038FF;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .accordion .accordion-item .accordion-item-title.accordion-item-title-active span:before {
  background-color: #0038FF;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .accordion .accordion-item .accordion-item-title.accordion-item-title-active span:after {
  opacity: 0;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .accordion .accordion-item .accordion-item-content {
  position: relative;
  display: none;
  padding: 0px 20px;
}
@media screen and (min-width: 600px) {
  .new-design .accordion .accordion-item .accordion-item-content {
    padding: 0px 28px;
  }
}
.new-design .accordion .accordion-item .accordion-item-content:before, .new-design .accordion .accordion-item .accordion-item-content:after {
  display: table;
  content: " ";
}
.new-design .accordion .accordion-item .accordion-item-content:after {
  clear: both;
}
.new-design .accordion .accordion-item .accordion-item-content p {
  display: block;
  color: rgba(0, 0, 0, 0.7);
}

.new-design .body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 8;
  display: none;
}

.new-design .how-it-works {
  position: relative;
}
@media screen and (min-width: 767px) {
  .new-design .how-it-works {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .new-design .how-it-works {
    gap: 40px;
  }
}
.new-design .how-it-works-item {
  flex-basis: 100%;
}
@media screen and (max-width: 767px) {
  .new-design .how-it-works-item {
    margin-bottom: 20px;
  }
}

.new-design .how-it-works-item {
  position: relative;
  display: block;
  text-align: center;
  background-color: #fff;
  padding: 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 992px) {
  .new-design .how-it-works-item {
    padding: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .new-design .how-it-works-item {
    padding: 40px;
  }
}
.new-design .how-it-works-item-image {
  background-color: rgba(0, 56, 255, 0.1);
  width: 60px;
  height: 60px;
  display: block;
  position: relative;
  margin: auto auto 10px auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .how-it-works-item-image {
    width: 74px;
    height: 74px;
    margin: auto auto 20px auto;
  }
}
.new-design .how-it-works-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: auto;
  display: block;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .how-it-works-item-image img {
    width: 20px;
  }
}
.new-design .how-it-works-item-image img:nth-child(2) {
  opacity: 0;
}
.new-design .how-it-works-item h1,
.new-design .how-it-works-item h2,
.new-design .how-it-works-item h3,
.new-design .how-it-works-item h4,
.new-design .how-it-works-item h5 {
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .how-it-works-item p {
  color: rgba(0, 0, 0, 0.5);
}
.new-design .how-it-works-item:hover, .new-design .how-it-works-item:focus {
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
  -webkit-box-shadow: 0 8px 22px 4px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 8px 22px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 22px 4px rgba(0, 0, 0, 0.05);
}
.new-design .how-it-works-item:hover .how-it-works-item-image, .new-design .how-it-works-item:focus .how-it-works-item-image {
  background-color: #0038FF;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .how-it-works-item:hover .how-it-works-item-image img, .new-design .how-it-works-item:focus .how-it-works-item-image img {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.new-design .how-it-works-item:hover .how-it-works-item-image img:nth-child(1), .new-design .how-it-works-item:focus .how-it-works-item-image img:nth-child(1) {
  opacity: 0;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .how-it-works-item:hover .how-it-works-item-image img:nth-child(2), .new-design .how-it-works-item:focus .how-it-works-item-image img:nth-child(2) {
  opacity: 1;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .how-it-works-item:hover h1,
.new-design .how-it-works-item:hover h2,
.new-design .how-it-works-item:hover h3,
.new-design .how-it-works-item:hover h4,
.new-design .how-it-works-item:hover h5,
.new-design .how-it-works-item:focus h1,
.new-design .how-it-works-item:focus h2,
.new-design .how-it-works-item:focus h3,
.new-design .how-it-works-item:focus h4,
.new-design .how-it-works-item:focus h5 {
  color: #0038FF;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

.new-design .builder {
  position: relative;
  display: block;
  padding: 15px 15px 10px 15px;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .builder {
    padding: 20px 20px 10px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .new-design .builder {
    padding: 40px 40px 15px 40px;
  }
}
.new-design .builder-placeholder {
  position: relative;
  display: block;
  text-align: center;
  padding: 15px;
  border: 2px dashed rgba(37, 16, 16, 0.1);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .builder-placeholder {
    padding: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .new-design .builder-placeholder {
    padding: 40px;
  }
}
.new-design .builder-placeholder-img {
  margin: auto auto 10px auto;
  opacity: 0.1;
  width: 32px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .builder-placeholder-img {
    width: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .new-design .builder-placeholder-img {
    margin: auto auto 20px auto;
  }
}
.new-design .builder-items {
  position: relative;
  display: block;
  margin-top: 10px;
}
.new-design .builder-items .owl-carousel {
  padding: 0px 10px;
}
.new-design .builder-items .owl-carousel .owl-item .item {
  padding: 10px;
  position: relative;
}
.new-design .builder-items .owl-carousel .owl-item .item .builder-item {
  position: relative;
  display: block;
  padding: 15px 5px 10px 5px;
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 1200px) {
  .new-design .builder-items .owl-carousel .owl-item .item .builder-item {
    padding: 20px 10px 15px 10px;
  }
}
.new-design .builder-items .owl-carousel .owl-item .item .builder-item-image {
  display: block;
  width: 24px;
  height: 24px;
  margin: auto auto 5px auto;
  position: relative;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .builder-items .owl-carousel .owl-item .item .builder-item-image {
    width: 32px;
    height: 32px;
    margin: auto auto 10px auto;
  }
}
.new-design .builder-items .owl-carousel .owl-item .item .builder-item-image img {
  position: absolute;
  left: 0;
  top: 0px;
  right: 0;
}
.new-design .builder-items .owl-carousel .owl-item .item .builder-item-image img:nth-child(1) {
  opacity: 0.4;
}
.new-design .builder-items .owl-carousel .owl-item .item .builder-item-image img:nth-child(2) {
  opacity: 0;
}
.new-design .builder-items .owl-carousel .owl-item .item .builder-item-title {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  text-decoration: underline;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .builder-items .owl-carousel .owl-item .item .builder-item-title {
    font-size: 16px;
  }
}
.new-design .builder-items .owl-carousel .owl-item .item .builder-item:hover, .new-design .builder-items .owl-carousel .owl-item .item .builder-item:focus {
  -webkit-box-shadow: 0 4px 14px 0px rgba(37, 16, 16, 0.1);
  -moz-box-shadow: 0 4px 14px 0px rgba(37, 16, 16, 0.1);
  box-shadow: 0 4px 14px 0px rgba(37, 16, 16, 0.1);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .builder-items .owl-carousel .owl-item .item .builder-item:hover .builder-item-image img, .new-design .builder-items .owl-carousel .owl-item .item .builder-item:focus .builder-item-image img {
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .builder-items .owl-carousel .owl-item .item .builder-item:hover .builder-item-image img:nth-child(1), .new-design .builder-items .owl-carousel .owl-item .item .builder-item:focus .builder-item-image img:nth-child(1) {
  opacity: 0;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .builder-items .owl-carousel .owl-item .item .builder-item:hover .builder-item-image img:nth-child(2), .new-design .builder-items .owl-carousel .owl-item .item .builder-item:focus .builder-item-image img:nth-child(2) {
  opacity: 1;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .builder-items .owl-carousel .owl-item .item .builder-item:hover .builder-item-title, .new-design .builder-items .owl-carousel .owl-item .item .builder-item:focus .builder-item-title {
  color: #0038FF;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .builder-items .owl-carousel .owl-nav .owl-prev,
.new-design .builder-items .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  outline: 0;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .builder-items .owl-carousel .owl-nav .owl-prev.disabled,
.new-design .builder-items .owl-carousel .owl-nav .owl-next.disabled {
  opacity: 0;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-prev,
.new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-next,
.new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-prev,
.new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-next {
  width: 30px;
  height: 30px;
  position: relative;
  display: block;
}
.new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-prev:after, .new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-prev:before, .new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-next:after, .new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-next:before, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-prev:after, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-prev:before, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-next:after, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-next:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  display: block;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-prev:after,
.new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-next:after,
.new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-prev:after,
.new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-next:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-prev:before,
.new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-next:before,
.new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-prev:before,
.new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-next:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-prev:hover, .new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-prev:focus, .new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-next:hover, .new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-next:focus, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-prev:hover, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-prev:focus, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-next:hover, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-next:focus {
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-prev:hover:after, .new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-prev:hover:before, .new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-prev:focus:after, .new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-prev:focus:before, .new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-next:hover:after, .new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-next:hover:before, .new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-next:focus:after, .new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-next:focus:before, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-prev:hover:after, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-prev:hover:before, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-prev:focus:after, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-prev:focus:before, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-next:hover:after, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-next:hover:before, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-next:focus:after, .new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-next:focus:before {
  background-color: #000;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-prev:after,
.new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-prev:after {
  top: 10px;
}
.new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-prev:before,
.new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-prev:before {
  bottom: 10px;
}
.new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-next:after,
.new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-next:after {
  bottom: 10px;
}
.new-design .builder-items .owl-carousel .owl-nav .owl-prev .slide-next:before,
.new-design .builder-items .owl-carousel .owl-nav .owl-next .slide-next:before {
  top: 10px;
}
.new-design .builder-items .owl-carousel .owl-nav .owl-prev {
  left: -15px;
}
@media screen and (min-width: 1200px) {
  .new-design .builder-items .owl-carousel .owl-nav .owl-prev {
    left: -25px;
  }
}
.new-design .builder-items .owl-carousel .owl-nav .owl-next {
  right: -15px;
}
@media screen and (min-width: 1200px) {
  .new-design .builder-items .owl-carousel .owl-nav .owl-next {
    right: -25px;
  }
}
.new-design .builder:hover, .new-design .builder:focus {
  -webkit-box-shadow: 0 4px 14px 0px rgba(37, 16, 16, 0.1);
  -moz-box-shadow: 0 4px 14px 0px rgba(37, 16, 16, 0.1);
  box-shadow: 0 4px 14px 0px rgba(37, 16, 16, 0.1);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .builder:hover .builder-placeholder, .new-design .builder:focus .builder-placeholder {
  border-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .builder:hover .builder-placeholder-img, .new-design .builder:focus .builder-placeholder-img {
  opacity: 0.3;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

.new-design .shape-squares:after {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 40px;
  opacity: 0.1;
  z-index: -1;
  background-image: url(../../assets/images/shapes/shape-squares.svg);
  background-position: center;
  background-repeat: repeat;
}

.new-design .badge {
  font-family: "Lato", sans-serif;
  padding: 4px 10px;
  display: inline-block;
  position: relative;
  background-color: rgba(0, 56, 255, 0.05);
  color: #0038FF;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
@media screen and (min-width: 767px) {
  .new-design .badge {
    padding: 6px 18px;
    font-size: 14px;
  }
}

.new-design .tools {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .new-design .tools {
    gap: 10px;
  }
}
.new-design .tools-item {
  margin-bottom: 10px;
  width: calc(50% - 5px);
}
@media screen and (min-width: 600px) {
  .new-design .tools-item {
    width: calc(50% - 10px);
  }
}

.new-design .tools-item {
  font-family: "Lato", sans-serif;
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #fff;
  text-decoration: none;
  padding: 10px 34px 10px 8px;
  -webkit-box-shadow: 0 2px 10px 0px rgba(37, 16, 16, 0.1);
  -moz-box-shadow: 0 2px 10px 0px rgba(37, 16, 16, 0.1);
  box-shadow: 0 2px 10px 0px rgba(37, 16, 16, 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .tools-item {
    padding: 18px 30px 18px 18px;
    gap: 10px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
  }
}
.new-design .tools-item:after, .new-design .tools-item:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  right: 6px;
  margin: auto;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .tools-item:after, .new-design .tools-item:before {
    width: 14px;
    height: 2px;
    right: 14px;
  }
}
.new-design .tools-item:before {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.new-design .tools-item-icon {
  position: relative;
  display: block;
  width: 16px;
  height: auto;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .tools-item-icon {
    width: 24px;
  }
}
.new-design .tools-item-icon img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .tools-item-icon img:nth-child(1) {
  opacity: 1;
}
.new-design .tools-item-icon img:nth-child(2) {
  opacity: 0;
}
.new-design .tools-item-title {
  position: relative;
  display: block;
  color: #000;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .new-design .tools-item-title {
    font-size: 16px;
    line-height: 20px;
  }
}
.new-design .tools-item:hover, .new-design .tools-item:focus {
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .tools-item:hover:after, .new-design .tools-item:hover:before, .new-design .tools-item:focus:after, .new-design .tools-item:focus:before {
  background-color: #0038FF;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .tools-item:hover:after, .new-design .tools-item:focus:after {
  top: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (min-width: 767px) {
  .new-design .tools-item:hover:after, .new-design .tools-item:focus:after {
    top: 10px;
  }
}
.new-design .tools-item:hover:before, .new-design .tools-item:focus:before {
  bottom: 6px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 767px) {
  .new-design .tools-item:hover:before, .new-design .tools-item:focus:before {
    bottom: 10px;
  }
}
.new-design .tools-item:hover .tools-item-icon, .new-design .tools-item:focus .tools-item-icon {
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .tools-item:hover .tools-item-icon img, .new-design .tools-item:focus .tools-item-icon img {
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .tools-item:hover .tools-item-icon img:nth-child(1), .new-design .tools-item:focus .tools-item-icon img:nth-child(1) {
  opacity: 0;
}
.new-design .tools-item:hover .tools-item-icon img:nth-child(2), .new-design .tools-item:focus .tools-item-icon img:nth-child(2) {
  opacity: 1;
}
.new-design .tools-item:hover .tools-item-title, .new-design .tools-item:focus .tools-item-title {
  color: #0038FF;
  padding-left: 4px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

.new-design .tools-list {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .new-design .tools-list {
    gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .new-design .tools-list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 992px) {
  .new-design .tools-list-item {
    width: calc(33.3333% - 10px);
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .new-design .tools-list-item {
    width: calc(50% - 10px);
  }
}

.new-design .tools-list-item {
  position: relative;
  display: block;
}
.new-design .tools-list-item ul {
  position: relative;
  display: block;
}
.new-design .tools-list-item ul li {
  position: relative;
  display: block;
}
.new-design .tools-list-item ul li a {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 20px;
  display: block;
  font-weight: 500;
  color: #000;
  padding-bottom: 12px;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .tools-list-item ul li a {
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 18px;
  }
}
.new-design .tools-list-item ul li a:hover, .new-design .tools-list-item ul li a:focus {
  color: #0038FF;
  padding-left: 4px;
  text-decoration: underline;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

.new-design .owl-carousel-features .owl-dots {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 10px;
  position: relative;
  justify-content: center;
  margin-top: 40px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .owl-carousel-features .owl-dots .owl-dot {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .owl-carousel-features .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  display: block;
  position: relative;
  background-color: rgba(0, 56, 255, 0.3);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .owl-carousel-features .owl-dots .owl-dot span:after {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
  display: block;
  border: 1px solid #0038FF;
  opacity: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .owl-carousel-features .owl-dots .owl-dot span:hover, .new-design .owl-carousel-features .owl-dots .owl-dot span:focus {
  background-color: rgba(0, 56, 255, 0.6);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .owl-carousel-features .owl-dots .owl-dot span:hover:after, .new-design .owl-carousel-features .owl-dots .owl-dot span:focus:after {
  opacity: 0.2;
}
.new-design .owl-carousel-features .owl-dots .owl-dot.active span {
  background-color: #0038FF;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .owl-carousel-features .owl-dots .owl-dot.active span:after {
  opacity: 1;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

.new-design .pricing {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  justify-content: center;
}
.new-design .pricing-item {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .new-design .pricing-item {
    width: 460px;
  }
}

.new-design .pricing-item {
  position: relative;
  padding: 15px;
  text-align: center;
  background-color: #fff;
  border: 1px solid rgba(37, 16, 16, 0.1);
  -webkit-box-shadow: 0 4px 14px 0px rgba(37, 16, 16, 0.1);
  -moz-box-shadow: 0 4px 14px 0px rgba(37, 16, 16, 0.1);
  box-shadow: 0 4px 14px 0px rgba(37, 16, 16, 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .new-design .pricing-item {
    padding: 30px;
  }
}
.new-design .pricing-item-no {
  font-family: "Lato", sans-serif;
  position: relative;
  font-size: 26px;
  line-height: 26px;
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .new-design .pricing-item-no {
    font-size: 44px;
    line-height: 44px;
  }
}
.new-design .pricing-item-no span {
  color: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  font-weight: 500;
  padding-left: 6px;
}
@media screen and (min-width: 600px) {
  .new-design .pricing-item-no span {
    font-size: 22px;
  }
}
.new-design .pricing-item:hover, .new-design .pricing-item:focus {
  -webkit-box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .pricing-item:hover .btn-blue, .new-design .pricing-item:focus .btn-blue {
  color: #fff;
  border-color: #000;
  background-color: #000;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

.new-design .online-chat {
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 10;
  width: 60px;
  height: 60px;
  display: block;
  cursor: pointer;
  background: linear-gradient(to right, #EF324C 30%, #FEA91F 100%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .online-chat {
    width: 74px;
    height: 74px;
    right: 20px;
  }
}
.new-design .online-chat:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-image: url(../../assets/images/icons/icn-chat-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .online-chat:after {
    width: 34px;
    height: 34px;
    background-size: 34px 34px;
  }
}
.new-design .online-chat:hover, .new-design .online-chat:focus {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

.new-design .nav-tabs {
  position: relative;
}
.new-design .nav-tabs > li {
  position: relative;
}
.new-design .nav-tabs > li > a {
  position: relative;
}

.new-design .nav-tab-content {
  position: relative;
}
.new-design .nav-tab-content .nav-tab-pane {
  display: none;
  position: relative;
}
.new-design .nav-tab-content .nav-tab-pane:first-child {
  display: block;
}

.new-design .nav-tabs-tools {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid rgba(37, 16, 16, 0.1);
}
@media screen and (max-width: 767px) {
  .new-design .nav-tabs-tools {
    display: none;
  }
}
.new-design .nav-tabs-tools > li {
  position: relative;
  display: block;
}
.new-design .nav-tabs-tools > li > a {
  font-family: "Lato", sans-serif;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .new-design .nav-tabs-tools > li > a {
    font-size: 14px;
    line-height: 28px;
    font-weight: 500;
  }
}
@media screen and (min-width: 992px) {
  .new-design .nav-tabs-tools > li > a {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
  }
}
.new-design .nav-tabs-tools > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  z-index: 1;
  height: 3px;
  width: 0;
  background-color: #0038FF;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .nav-tabs-tools > li > a:hover, .new-design .nav-tabs-tools > li > a:focus {
  color: #0038FF;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .nav-tabs-tools > li > a.nav-tab-current {
  color: #0038FF;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.new-design .nav-tabs-tools > li > a.nav-tab-current:after {
  width: 100%;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

@media screen and (max-width: 767px) {
  .new-design .nav-tab-content-tools .nav-tab-pane {
    display: block !important;
    margin-bottom: 30px;
  }
}

/*# sourceMappingURL=prefixed-style.css.map */