html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body.blur {
  overflow: hidden;
}

body.blur.start {
  overflow: visible;
}

body.blur header,
body.blur section,
body.blur footer,
body.blur .parallax-mirror {
  -webkit-filter: blur(5px);
          filter: blur(5px);
  pointer-events: none;
}

body {
  background-color: #fff;
  color: #333;
  font-family: QuattrocentoSans, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  overflow-x: hidden;
}

a {
  color: #55b3f3;
  text-decoration: none;
}

a:hover,
a:active {
  color: #0f84d3;
  outline: 0;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

section {
  position: relative;
}

.page-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.icon {
  display: inline-block;
}

.container-full {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-align-end {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-align-between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.flex-align-content-center {
  -ms-flex-line-pack: center;
      align-content: center;
}

.flex-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.new-line {
  display: block;
  font-size: 20px;
}

.dash {
  position: relative;
  padding-left: 93px;
  line-height: 48px;
}

.dash-white:before {
  background-color: #fff;
}

.dash-blue:before {
  background-color: #385990;
}

.dash:before {
  content: '';
  width: 0;
  height: 2px;
  display: inline-block;
  position: absolute;
  left: 9px;
  top: calc(50% - 1px);
  -webkit-transition: all .6s;
  transition: all .6s;
}

.dash.visible:before {
  width: 53px;
}

.visible .dash:before {
  width: 53px;
}

.dash-delay:before {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.agree.display-none {
  display: none;
}

.btn.box-shadow-none {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* Animate */

.animate-slideup {
  -webkit-transform: translate(0, 130px);
          transform: translate(0, 130px);
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.animate-slideleft {
  -webkit-transform: translate(-130px, 0);
          transform: translate(-130px, 0);
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.animate-slideright {
  -webkit-transform: translate(130px, 0);
          transform: translate(130px, 0);
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.animate-steps .animate-steps__row:first-of-type {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all .5s;
  transition: all .5s;
}

.animate-steps .animate-steps__row:last-of-type {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all .5s;
  transition: all .5s;
}

.visible .animate-slideup {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.visible .animate-slideleft {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.visible .animate-slideright {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.visible .animate-steps .animate-steps__row:first-of-type {
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
}

.visible .animate-steps .animate-steps__row:last-of-type {
  -webkit-transform: translate(0, -40px);
          transform: translate(0, -40px);
}

/* Animate end */

.hero-image_section {
  position: relative;
  height: 460px;
  background-size: cover !important;
  background-position: center !important;
}

.content-padding p {
  line-height: 36px;
  margin: 0;
  font-size: 17px;
  padding-left: 95px;
}

.blocks-padding p {
  line-height: 36px;
  margin: 0;
  font-size: 17px;
}

.blocks-padding .add-padding-l {
  padding-left: 95px;
}

.txtimg-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.txtimg-flex .txtimg__text {
  width: 655px;
  padding: 0 40px 0 0;
}

.txtimg-flex .txtimg__text p {
  margin: 20px 0 35px;
}

.txtimg-flex .txtimg__image {
  width: calc(100% - 655px);
}

.txtimg-flex .txtimg__image img {
  border: 5px solid white;
  -webkit-box-shadow: 0 3px 16px rgba(217, 229, 250, 0.77);
          box-shadow: 0 3px 16px rgba(217, 229, 250, 0.77);
}

@font-face {
  font-family: 'QuattrocentoSansBold';
  src: url("../fonts/QuattrocentoSans-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/QuattrocentoSans-Bold.woff") format("woff"), url("../fonts/QuattrocentoSans-Bold.ttf") format("truetype"), url("../fonts/QuattrocentoSans-Bold.svg#QuattrocentoSans-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'QuattrocentoSansBoldItalic';
  src: url("../fonts/QuattrocentoSans-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/QuattrocentoSans-BoldItalic.woff") format("woff"), url("../fonts/QuattrocentoSans-BoldItalic.ttf") format("truetype"), url("../fonts/QuattrocentoSans-BoldItalic.svg#QuattrocentoSans-BoldItalic") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'QuattrocentoSansItalic';
  src: url("../fonts/QuattrocentoSans-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/QuattrocentoSans-Italic.woff") format("woff"), url("../fonts/QuattrocentoSans-Italic.ttf") format("truetype"), url("../fonts/QuattrocentoSans-Italic.svg#QuattrocentoSans-Italic") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'QuattrocentoSans';
  src: url("../fonts/QuattrocentoSans.eot?#iefix") format("embedded-opentype"), url("../fonts/QuattrocentoSans.woff") format("woff"), url("../fonts/QuattrocentoSans.ttf") format("truetype"), url("../fonts/QuattrocentoSans.svg#QuattrocentoSans") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'QuattrocentoBold';
  src: url("../fonts/Quattrocento-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Quattrocento-Bold.woff") format("woff"), url("../fonts/Quattrocento-Bold.ttf") format("truetype"), url("../fonts/Quattrocento-Bold.svg#Quattrocento-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}

p {
  margin: 1rem auto;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: QuattrocentoBold, sans-serif;
  color: #385990;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 36px;
  font-family: QuattrocentoBold, sans-serif;
  line-height: 48px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

/*
Icon classes can be used entirely standalone. They are named after their original file names.

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/

.icon-check {
  background-image: url(../images/spritesheet.png);
  background-position: 0px 0px;
  width: 26px;
  height: 20px;
}

.icon-close {
  background-image: url(../images/spritesheet.png);
  background-position: -28px 0px;
  width: 20px;
  height: 20px;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='url'],
input[type='search'],
input[type='password'],
textarea,
select {
  width: 100%;
  height: 55px;
  padding: 0 10px;
  display: inline-block;
  background: #fff;
  -webkit-box-shadow: 0 0 15px 0 #cae2ff;
          box-shadow: 0 0 15px 0 #cae2ff;
  color: #999999;
  font-size: 17px;
  border: 0;
  border-right: 5px;
}

input[type='text']:focus,
input[type='text']:active,
input[type='email']:focus,
input[type='email']:active,
input[type='tel']:focus,
input[type='tel']:active,
input[type='url']:focus,
input[type='url']:active,
input[type='search']:focus,
input[type='search']:active,
input[type='password']:focus,
input[type='password']:active,
textarea:focus,
textarea:active,
select:focus,
select:active {
  outline: none;
}

form #acc-select-button {
  outline: none;
  height: 55px;
  line-height: 45px;
  padding: 0 10px;
  display: inline-block;
  background: #fff;
  -webkit-box-shadow: 0 0 15px 0 #cae2ff;
          box-shadow: 0 0 15px 0 #cae2ff;
  color: #999999;
  font-size: 17px;
  border: 1px solid #cae2ff;
  width: 405px;
  max-width: 100%;
  margin-bottom: 30px;
}

form #acc-select-button .ui-selectmenu-icon {
  outline: none;
  display: block;
  position: absolute;
  right: 10px;
  top: calc(50% - 5px);
  width: 16px;
  height: 10px;
  background: url("../images/account/chevron.png") no-repeat;
}

form #acc-select-button .ui-selectmenu-text {
  outline: none;
  line-height: 55px;
}

.checkboxSq {
  display: inline-block;
  width: 15px;
  height: 15px;
  position: relative;
}

.checkboxSq label {
  width: 15px;
  height: 15px;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  background: white;
  border: 1px solid #d1e0ed;
}

.checkboxSq label:after {
  content: '';
  width: 9px;
  height: 6px;
  position: absolute;
  top: 2px;
  left: 2px;
  border: 2px solid #5484d5;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.checkboxSq label:hover::after {
  opacity: 0.3;
}

.checkboxSq label.invalid-val {
  border-color: red;
}

.checkboxSq input[type=checkbox] {
  visibility: hidden;
}

.checkboxSq input[type=checkbox]:checked + label {
  border: 1px solid #d1e0ed;
}

.checkboxSq input[type=checkbox]:checked + label:after {
  opacity: 1;
}

.btn {
  display: inline-block;
  vertical-align: middle;
  background: none;
  outline: 0 none;
  border: 0 none;
  padding: 0 15px;
  text-transform: none;
  color: #fff;
  font-family: QuattrocentoSansBold, sans-serif;
  font-size: 18px;
  text-align: center;
  width: 188px;
  height: 51px;
  line-height: 51px;
  background-color: #5484d5;
  border-radius: 23px;
  -webkit-box-shadow: 0 4px 18px rgba(84, 132, 213, 0.66);
          box-shadow: 0 4px 18px rgba(84, 132, 213, 0.66);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn:hover {
  background-color: #4b7aca;
  color: #fff;
}

.btn.transparent {
  background-color: transparent;
  color: #5484d5;
  border: 1px solid #5484d5;
}

.btn.slide-up {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.btn.slide-up:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.btn-bordered {
  display: inline-block;
  min-width: 200px;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  border: 1px solid #5484d5;
  border-radius: 23px;
  color: #5484d5;
  text-align: center;
  font-family: QuattrocentoSansBold, sans-serif;
  font-size: 18px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-bordered:hover {
  color: #fff;
  background: #5484d5;
}

.btn-blue {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-blue:hover {
  -webkit-box-shadow: 0 -4px 18px rgba(84, 132, 213, 0.66);
          box-shadow: 0 -4px 18px rgba(84, 132, 213, 0.66);
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: .75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: .14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.page-header {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
          box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
}

.page-header .container-full {
  height: 101px;
  padding: 0 50px;
  position: relative;
}

.logo {
  width: 18%;
  padding-right: 30px;
}

.wrap-menu {
  width: 82%;
  flex-wrap: nowrap;
}

.menu {
  /*max-width: 430px;*/
  /*max-width: 770px;*/
  flex-wrap: nowrap;
  width: 100%;
  padding-left: 14px;
  line-height: 25px;
}
@media screen and (max-width: 1440px) {
  .menu {
    /*max-width: 740px;*/
  }
}
@media screen and (max-width: 1280px) {
  .menu {
    /*max-width: 665px;*/
  }
}

.menu > ul > li {
  list-style: none;
  color: rgba(255, 255, 255, 0);
  position: relative;
}

.menu > ul > li .submenu {
  display: none;
}

.menu a {
  color: #00112d;
  font-family: QuattrocentoSans, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
}

.menu a:hover {
  color: #5484d5;
}

.menu__right {
  width: 100%;
  max-width: 390px;
}

.social {
  max-width: 100px;
  width: 100%;
}

.social ul {
  line-height: 25px;
  width: 100%;
}

.social a {
  font-size: 25px;
  color: #cccccc;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.social a:hover {
  color: #5484d5;
}

.authorization .btn {
  font-size: 14px;
  text-transform: uppercase;
  height: 40px;
  padding: 0;
  line-height: 40px;
}
.authorization ul {
  flex-wrap: nowrap;
}
.authorization li:nth-of-type(1) .btn {
  width: 93px;
  margin-right: 20px;
}

.authorization li:nth-of-type(1) .btn:hover {
  color: #fff;
  background-color: #5484d5;
}

.authorization li:nth-of-type(2) .btn {
  width: 150px;
  border: 1px solid transparent;
}

.authorization li:nth-of-type(2) .btn:hover {
  color: #5484d5;
  background-color: #fff;
  border: 1px solid #5484d5;
}

.menu-show {
  display: none;
  height: 21px;
  width: 42px;
  position: relative;
  right: 0;
  z-index: 4;
}

.menu-show.active {
  background-size: contain;
}

.menu-show:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: #00112d;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.menu-show:after {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: #00112d;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.menu-show.active:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 9px;
}

.menu-show.active::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 9px;
}

.menu .active {
  color: #5484d5;
}

#acc-select-menu {
  height: 200px;
}

.menu-nz img {
  max-width: 20px;
  margin-top: -5px;
}

.page-footer {
  position: relative;
}

.banner {
  height: calc(100vh - 101px);
  min-height: 300px;
  position: relative;
}

.banner:after {
  content: "";
  background-color: rgba(0, 17, 45, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner h1 {
  color: #fff;
  font-family: QuattrocentoBold, sans-serif;
  font-size: 60px;
  line-height: 72px;
  position: relative;
  z-index: 2;
}

.section-right {
  margin-top: 93px;
  height: 396px;
  overflow: hidden;
  position: relative;
}

.section-right h2 {
  color: #385990;
  font-family: QuattrocentoBold, sans-serif;
}

.section-right .block-text {
  width: 58.3%;
}

.section-right .img-right {
  position: absolute;
  top: 6px;
  left: 56.5%;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section-right .img-right img {
  border: 5px solid #fff;
  -webkit-box-shadow: 0 3px 16px rgba(217, 229, 250, 0.77);
          box-shadow: 0 3px 16px rgba(217, 229, 250, 0.77);
}

.section-left {
  position: relative;
  height: 387px;
  margin-bottom: 143px;
}

.section-left .block-text {
  margin-left: 84px;
}

.section-left h5 {
  font-family: QuattrocentoBold, sans-serif;
  line-height: 37px;
  margin: 0 0;
  color: #385990;
  font-size: 24px;
}

.section-left p {
  font-size: 17px;
  font-family: QuattrocentoSans, sans-serif;
  color: #333;
  line-height: 36px;
  margin-bottom: 35px;
}

.section-left p:last-child {
  margin: 0;
}

.section-left .img-left {
  position: absolute;
  top: 0;
  right: calc(100% - ((100% - 1170px)/ 2) - 21px);
  width: 100%;
  height: 100%;
  text-align: right;
  pointer-events: none;
}

.section-left .img-left img {
  border: 5px solid #fff;
  border-left: none;
  -webkit-box-shadow: 0 3px 16px rgba(217, 229, 250, 0.77);
          box-shadow: 0 3px 16px rgba(217, 229, 250, 0.77);
}

.section-images {
  background: url("../images/bg1.png") no-repeat;
  background-position: center 232px;
  background-size: cover;
}

.section-images .block-img-left {
  width: 33%;
}

.section-images .block-img-left .wrap-block {
  margin-left: 7px;
  margin-right: 10px;
  margin-top: 15px;
  height: 100%;
  max-height: 755px;
  background-color: #fff;
}

.section-images .block-img-left .block-text {
  padding-top: 26px;
}

.section-images .block-img-right {
  width: 67%;
}

.section-images .block-img-right .wrap-img {
  width: 50%;
}

.section-images .block-img-right .block-text {
  width: 50%;
  background-color: #fff;
}

.section-images .block-img-right .block-text p {
  padding: 0 20px;
}

.section-images .block-img-right .wrap-block {
  margin-right: 0;
  margin-left: 23px;
}

.section-images .block-img-right .wrap-block:first-child {
  margin-bottom: 30px;
}

.section-images .block-img-right .wrap-block:first-child h3 {
  margin-top: 18px;
}

.section-images .wrap-block {
  margin: 15px;
  -webkit-box-shadow: 0 0 29px rgba(222, 236, 249, 0.77);
          box-shadow: 0 0 29px rgba(222, 236, 249, 0.77);
}

.section-images .wrap-img {
  overflow: hidden;
  background-color: #fff;
  max-width: 360px;
}

.section-images .wrap-img img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.section-images .wrap-img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.section-images .block-text h3 {
  color: #385990;
  font-family: QuattrocentoBold, sans-serif;
  line-height: 36px;
  text-align: center;
  position: relative;
  margin: 30px 0 10px 0;
}

.section-images .block-text h3:after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 53px;
  height: 2px;
  background-color: #385990;
}

.section-images .block-text p {
  color: #333;
  font-family: QuattrocentoSans, sans-serif;
  font-size: 17px;
  line-height: 36px;
  padding: 0 25px 0 35px;
}

.section-images .block-text p span {
  text-transform: uppercase;
}

.partners {
  padding-top: 139px;
  padding-bottom: 179px;
  position: relative;
  background: #f7fbff url("../images/bg2.png") no-repeat;
  background-position: center bottom;
  background-size: 100%;
}

.partners .block-right {
  width: 53%;
}

.partners .block-right > span {
  padding-left: 90px;
  font-family: QuattrocentoSansItalic, sans-serif;
  font-size: 16px;
  color: #000000;
  display: block;
}

.partners .block-right .btn {
  margin-top: 84px;
  margin-left: 96px;
}

.partners .img-left {
  position: absolute;
  bottom: 0;
  right: 49%;
  width: 100%;
}

.news {
  padding-top: 59px;
  background: url("../images/bg-new.png") center top/100% no-repeat;
}

.news .wrap-img img {
  width: 100%;
  max-width: 362px;
  -webkit-box-shadow: 0 0 29px rgba(222, 236, 249, 0.77);
          box-shadow: 0 0 29px rgba(222, 236, 249, 0.77);
}

.news .block-button {
  padding-top: 50px;
}

.news .block-button .btn {
  display: block;
  width: 200px;
  margin: 0 auto;
}

.newsletter {
  padding-top: 85px;
  padding-bottom: 70px;
  background: url("../images/bg-market.png") center/100% no-repeat;
  background-position-y: 165px;
}

.newsletter .btn {
  margin: 0 auto;
  display: block;
  margin-top: 78px;
  cursor: pointer;
}

.newsletter .newsletter__blocks {
  padding-top: 16px;
}

.newsletter .newsletter__block {
  text-align: center;
  -webkit-transition: all .6s;
  transition: all .6s;
  padding-right: 15px;
}

.newsletter .newsletter__block:last-child {
  padding-right: 0;
}

.newsletter .newsletter__block > a {
  cursor: pointer;
}

.newsletter .newsletter__block h3 {
  color: #385990;
  font-family: QuattrocentoBold, sans-serif;
  line-height: 36px;
  text-align: center;
  position: relative;
  margin: 32px 0 15px 0;
}

.newsletter .newsletter__block h3:after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 53px;
  height: 2px;
  background-color: #385990;
}

.newsletter .newsletter__block span {
  font-family: QuattrocentoSansItalic, sans-serif;
  font-size: 16px;
  color: #333;
  padding-top: 26px;
  display: inline-block;
}

.newsletter .newsletter__block .wrap-img {
  max-width: 360px;
  overflow: hidden;
}

.newsletter .newsletter__block .wrap-img .image {
  width: 360px;
  height: 327px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.newsletter .newsletter__block .wrap-img .image:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.newsletter .newsletter__block:nth-child(1) .wrap-img .image {
  background: url("../images/let1.jpg") center/cover no-repeat;
}

.newsletter .newsletter__block:nth-child(2) .wrap-img .image {
  background: url("../images/let2.jpg") center/cover no-repeat;
}

.newsletter .newsletter__block:nth-child(3) .wrap-img .image {
  background: url("../images/let3.jpg") center/cover no-repeat;
}

.newsletter.animated .newsletter__block:nth-child(1) {
  -webkit-transform: translateY(43px);
          transform: translateY(43px);
}

.newsletter.animated .newsletter__block:nth-child(3) {
  -webkit-transform: translateY(-43px);
          transform: translateY(-43px);
}

.footer-top {
  padding-top: 99px;
  padding-bottom: 30px;
}

.footer-top .block-contact {
  width: 20%;
  min-width: 215px;
}

.footer-top .block-contact a {
  display: block;
  color: #333;
  font-family: QuattrocentoSans, sans-serif;
  font-size: 16px;
  line-height: 30px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.footer-top .block-contact a:hover {
  color: #5484d5;
}

.footer-top .block-contact a .fa {
  font-size: 24px;
  margin-right: 11px;
  vertical-align: sub;
  width: 24px;
  color: #cccccc;
}

.footer-top .block-contact .logo {
  padding-bottom: 15px;
  width: auto;
  max-width: 194px;
}

.footer-top .block-contact .social {
  margin-top: 6px;
  max-width: 130px;
  margin-left: 0;
}

.footer-top .block-contact .social a {
  font-size: 20px;
}

.footer-top .block-contact .social a .fa {
  color: #333;
  width: auto;
}

.footer-top .blocks-info {
  width: 72%;
}

.footer-top .blocks-info .block-info h4 {
  font-family: QuattrocentoBold, sans-serif;
  line-height: 36px;
  color: #385990;
  margin-top: 0;
  margin-bottom: -3px;
}

.footer-top .blocks-info .block-info__list a,
.footer-top .blocks-info .block-info__list span {
  font-family: QuattrocentoSans, sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 30px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.footer-top .blocks-info .block-info__list a:hover,
.footer-top .blocks-info .block-info__list span:hover {
  color: #5484d5;
}

.footer-top .blocks-info .block-info__list span:hover {
  color: #333;
}

.footer-bottom {
  background-color: #00112d;
}

.footer-bottom p {
  color: #a9b9d3;
  font-family: QuattrocentoSans, sans-serif;
  font-size: 14px;
  line-height: 24px;
  margin-top: 37px;
}

.footer-bottom .block-text {
  width: 80%;
  padding-right: 25px;
}

.footer-bottom__image {
  width: 20%;
  text-align: right;
  padding-top: 42px;
}

.footer-bottom .copyright {
  width: 100%;
}

.footer-bottom .copyright p {
  margin-top: 14px;
  text-align: center;
  padding-bottom: 24px;
}

.contact-form {
  position: fixed;
  overflow: scroll;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}

.contact-form:before {
  content: "";
  -webkit-filter: blur(3px);
          filter: blur(3px);
  background: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: .7;
}

.contact-form__wrap {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 595px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 30px;
  background: #fff url("../images/bg-contact.jpg") center bottom no-repeat;
  -webkit-box-shadow: 0 4px 65px #869ec6;
          box-shadow: 0 4px 65px #869ec6;
  z-index: 999999;
  top: 10%;
}

.contact-form__wrap .btn {
  display: block;
  margin: 53px auto 70px auto;
  cursor: pointer;
}

.contact-form h3 {
  margin-top: 0;
  color: #333;
  font-family: QuattrocentoSans, sans-serif;
  line-height: 36px;
  padding-bottom: 8px;
  border-bottom: 1px solid #cccccc;
}

.contact-form h3 .close {
  background: url("../images/close.png") center no-repeat;
  padding: 16px;
  margin: 0 4px 0 0;
  float: right;
}

.contact-form input,
.contact-form textarea {
  background: none;
  border: none;
  border-bottom: 1px solid #cccccc;
  color: #999;
  font-family: QuattrocentoSans, sans-serif;
  font-size: 17px;
  height: 60px;
  line-height: 60px;
  padding: 0;
  margin-bottom: 7px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact-form input.invalid-val,
.contact-form textarea.invalid-val {
  border-color: #f00;
}

.contact-form form {
  max-width: 400px;
  margin: 0 auto;
  padding-top: 32px;
}

.contact-form .thanks-msg {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  text-align: center;
  color: #0f0;
}

.play-video {
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  background-color: rgba(2, 2, 2, 0.6);
  display: none;
}

.play-video .close {
  background: url("../images/close.png") center no-repeat;
  padding: 16px;
  position: fixed;
  right: 20px;
  top: 20px;
}

.agree {
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
}

.agree__wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 16%);
  max-height: 704px;
  max-width: 1006px;
  background: #fff url("../images/agree.png") center bottom no-repeat;
  -webkit-box-shadow: 0 4px 65px #869ec6;
          box-shadow: 0 4px 65px #869ec6;
  margin: 0 auto;
  padding: 15px 30px 49px 31px;
}

.agree__wrap ol {
  padding-left: 0;
  list-style: inside decimal;
}

.agree__wrap p,
.agree__wrap li {
  color: #333;
  font-family: QuattrocentoSans, sans-serif;
  font-size: 17px;
  line-height: 30px;
  margin-top: 22px;
  margin-bottom: 30px;
}

.agree__wrap li {
  margin: 0;
}

.agree__logo {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 13px;
}

.agree__logo img {
  max-width: 161px;
}

.agree__logo .close {
  background: url("../images/close.png") center no-repeat;
  padding: 16px;
  float: right;
  margin-right: -6px;
  pointer-events: none;
  cursor: default;
}

.agree__text-block {
  overflow: auto;
  margin-bottom: 20px;
}

.agree__buttons {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.agree__buttons .btn {
  margin: 0 14px;
  cursor: pointer;
}

.agree__buttons .btn[disabled] {
  background-color: #9eb2d4;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.agree__buttons .btn[disabled]:hover {
  background-color: #899bb9;
}

.performance-content {
  background: url("../images/performance/performance-bg.png") no-repeat;
  background-position: center 420px;
  background-size: 100% auto;
  overflow: hidden;
}

.performance-content p {
  line-height: 36px;
  margin: 0;
  font-size: 17px;
  padding-left: 95px;
}

.performance-section {
  padding: 100px 0 0;
}

.performance-section .performance-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.performance-section .performance-flex .performance__text {
  width: 655px;
  padding: 0 40px 0 0;
}

.performance-section .performance-flex .performance__text p {
  margin: 20px 0 35px;
}

.performance-section .performance-flex .performance__image {
  width: calc(100% - 655px);
}

.investment-section {
  padding: 75px 0 0;
}

.investment-section .table-main {
  margin: 45px 0 0 90px;
  background: #fff;
  border: 1px solid #e0ebf8;
  -webkit-box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
          box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
}

.investment-section .table-main table {
  width: 100%;
}

.investment-section .table-main table tr:nth-child(even) {
  background: #f8fbfe;
}

.investment-section .table-main table tr th,
.investment-section .table-main table tr td {
  padding: 27px 10px;
  color: #385990;
  font-size: 14px;
  font-weight: 400;
  border-right: 1px solid #e0ebf8;
}

.investment-section .table-main table tr th:last-of-type,
.investment-section .table-main table tr td:last-of-type {
  border-right: 0;
}

.investment-section .table-main table tr th:first-of-type,
.investment-section .table-main table tr td:first-of-type {
  padding: 27px 20px;
}

.investment-section .table-main table tr .bold {
  color: #00112d;
}

.investment-section .table-main table tr .grey {
  color: #999999;
}

.investment-section .table-main table #table-full {
  color: #00112d;
  background: #fff;
  border-top: 1px solid #e0ebf8;
  text-align: left;
  position: relative;
  padding: 20px 20px 40px;
}

.investment-section .table-main table #table-full span {
  display: inline-block;
  color: #fff;
  background: #5484d5;
  height: 30px;
  line-height: 30px;
  padding: 0 8px;
  margin-left: 10px;
}

.investment-section .table-main table #table-full .small-txt {
  /*position: absolute;*/
  /*bottom: 25px;*/
  left: 20px;
  font-size: 11px;
  padding-top: 10px;
  padding-right: 20px;
}

.investment-section .table-main table #table-full .small-txt.bottom {
  bottom: 10px;
}

.details-section {
  padding: 105px 0 0;
}

.details-section .details-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.details-section .details-flex .details__text {
  width: 605px;
  padding: 0 30px 0 0;
}

.details-section .details-flex .details__text h3 {
  margin-bottom: 15px;
}

.details-section .details-flex .details__text p {
  margin: 10px 0;
}

.details-section .details-flex .details__text p:last-of-type {
  margin-top: 20px;
}

.details-section .details-flex .details__image {
  width: calc(100% - 605px);
}

.details-section .details-flex .details__image img {
  -webkit-box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
          box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
}

.details-section .details-flex .details__image p {
  font-family: QuattrocentoSansBoldItalic, sans-serif;
  font-size: 14px;
  color: #00112d;
  padding-left: 0;
  margin: 15px 0 0;
}

.leartmore-section {
  text-align: center;
  padding: 95px 0 65px;
}

.leartmore-section a {
  font-size: 18px;
  color: #5484d5;
  font-family: QuattrocentoSans, sans-serif;
  padding: 0 0 5px;
  border-bottom: 1px dashed #5484d5;
}

.inner-txt-page section {
  padding: 50px 0 25px;
}

.inner-txt-page .hero-image_section {
  padding: 0;
  margin: 0 0 50px;
}

.inner-txt-page h1 {
  margin: 0 0 25px;
}

.inner-txt-page h2 {
  margin: 0 0 15px;
}

.inner-txt-page p {
  margin: 0 0 30px;
}

.inner-txt-page p a {
  color: #5484d5;
}

.inner-txt-page p a:hover {
  color: #5484d5;
}

.inner-txt-page .container p:last-of-type {
  margin-bottom: 0;
}

.inner-txt-page ul li {
  line-height: 36px;
  font-size: 17px;
  padding-left: 20px;
  margin: 0 0 30px 95px;
  position: relative;
}

.inner-txt-page ul li:before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: #5484d5;
  position: absolute;
  top: 14px;
  left: 0;
  border-radius: 50%;
}

.inner-txt-page ul li :last-of-type {
  margin-bottom: 0;
}

.inner-txt-page .numeric-ul {
  counter-reset: section;
}

.inner-txt-page .numeric-ul li {
  padding-left: 40px;
}

.inner-txt-page .numeric-ul li:before {
  counter-increment: section;
  content: counter(section);
  color: #fff;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 14px;
  top: 7px;
}

.inner-txt-page .small-p {
  font-size: 14px;
  line-height: 24px;
}

.full_img__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.full_img__flex .full_img__item-left {
  width: 670px;
  padding-right: 30px;
}

.full_img__flex .full_img__item-right {
  width: calc(100% - 670px);
  position: relative;
}

.full_img__flex .full_img__item-right .full_img__image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border: 5px solid #fff;
  border-right: 0;
  -webkit-box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
          box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
}

.about-content {
  background: url("../images/about/about-bg.png") no-repeat;
  background-position: center 45%;
  background-size: 100% auto;
  overflow: hidden;
}

.about-content .hero-image_section {
  background: url("../images/about/about-hero-image.jpg") no-repeat;
  padding: 0;
}

.about-content .full_img__flex .full_img__image {
  background: url("../images/about/we-are-image.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}

.we-are-section {
  position: relative;
}

.we-start-section {
  position: relative;
}

.we-start-section:after {
  content: '';
  background: url("../images/about/about-bottom-bg.png") no-repeat;
  background-position: center;
  background-size: 100% auto;
  display: block;
  position: absolute;
  top: -275px;
  left: 0;
  right: 0;
  width: 100%;
  height: 480px;
  z-index: -1;
}

.winvest-content {
  background: url("../images/why-invest/bg.png") no-repeat;
  background-position: center 42%;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
}

.winvest-content:after {
  content: '';
  background: url("../images/why-invest/bottom-bg.png") no-repeat;
  background-position: center;
  background-size: 100% auto;
  display: block;
  position: absolute;
  bottom: 300px;
  left: 0;
  right: 0;
  width: 100%;
  height: 480px;
  z-index: -1;
}

.winvest-content section {
  position: relative;
  z-index: 1;
}

.winvest-content .hero-image_section {
  background: url("../images/why-invest/hero-image.jpg") no-repeat;
  padding: 0;
}

.winvest-content .full_img__flex .full_img__image {
  background: url("../images/why-invest/full-img.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}

.winvest-content .open-section {
  text-align: center;
  padding: 55px 0 65px;
}

.winvest-content .open-section a {
  font-size: 18px;
  color: #5484d5;
  font-family: QuattrocentoSans, sans-serif;
  padding: 0 0 5px;
  border-bottom: 1px dashed #5484d5;
}

.contact-content .hero-image_section {
  background: url("../images/about/about-hero-image.jpg") no-repeat;
  padding: 0;
}

.contact-content .full_img__flex .full_img__item-left {
  width: 775px;
}

.contact-content .full_img__flex .full_img__item-right {
  width: calc(100% - 775px);
}

.contact-content .full_img__flex .full_img__image {
  background: url("../images/contact-us/contactus-img.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}

.contact-content h1 {
  margin-bottom: 15px;
}

.contact-section {
  padding-top: 100px;
}

.contact-section .half-cont-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.contact-section .half-cont-flex .half-cont__text {
  width: 655px;
  padding: 0 40px 0 0;
}

.contact-section .half-cont-flex .half-cont__image {
  width: calc(100% - 655px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact-section .half-cont-flex .half-cont__image img {
  border: 5px solid white;
  -webkit-box-shadow: 0 3px 16px rgba(217, 229, 250, 0.77);
          box-shadow: 0 3px 16px rgba(217, 229, 250, 0.77);
  width: 100%;
}

.contact-section {
  padding: 100px 0;
}

.contact-section .contact__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 60px;
}

.contact-section .contact__flex .contact__col .contact__row {
  margin-bottom: 35px;
}

.contact-section .contact__flex .contact__col .rem-bottom-margin {
  margin-bottom: 0;
}

.contact-section .contact__flex .contact__col-left {
  padding-right: 15px;
  width: calc(100% - 290px);
}

.contact-section .contact__flex .contact__col-right {
  width: 290px;
}

.contact-section .contact__text-right p {
  padding-left: 35px;
  position: relative;
}

.contact-section .contact__text-right .c-icon:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  display: block;
  width: 19px;
  height: 19px;
}

.contact-section .contact__text-right .c-phone:before {
  background: url("../images/phone.png") no-repeat;
  background-size: 100%;
}

.contact-section .contact__text-right .c-mail:before {
  background: url("../images/mail.png") no-repeat;
  background-size: 100%;
}

.contact-section .contact__text-right .c-geo:before {
  background: url("../images/geo.png") no-repeat;
  background-size: 100%;
}

.contact-map-section {
  padding: 0 0 30px;
}

.financial-content {
  background: url("../images/why-invest/bg.png") no-repeat;
  background-position: center 60%;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
}

.financial-content section {
  position: relative;
  z-index: 1;
}

.financial-content .hero-image_section {
  background: url("../images/financial-independence/hero-image.jpg") no-repeat;
  padding: 0;
}

.financial-content .open-section {
  text-align: center;
  padding: 55px 0 65px;
}

.financial-content .open-section a {
  font-size: 18px;
  color: #5484d5;
  font-family: QuattrocentoSans, sans-serif;
  padding: 0 0 5px;
  border-bottom: 1px dashed #5484d5;
}

.business-content {
  background: url("../images/why-invest/bg.png") no-repeat;
  background-position: center 60%;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
}

.business-content section {
  position: relative;
  z-index: 1;
}

.business-content .business-section {
  padding-top: 100px;
}

.business-content .business-section .business-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.business-content .business-section .business-flex .business__text {
  width: 655px;
  padding: 0 40px 0 0;
}

.business-content .business-section .business-flex .business__text p {
  margin: 20px 0 35px;
}

.business-content .business-section .business-flex .business__image {
  width: calc(100% - 655px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.business-content .business-section .business-flex .business__image img {
  border: 5px solid white;
  -webkit-box-shadow: 0 3px 16px rgba(217, 229, 250, 0.77);
          box-shadow: 0 3px 16px rgba(217, 229, 250, 0.77);
}

.business-content .open-section {
  text-align: center;
  padding: 55px 0 65px;
}

.business-content .open-section a {
  font-size: 18px;
  color: #5484d5;
  font-family: QuattrocentoSans, sans-serif;
  padding: 0 0 5px;
  border-bottom: 1px dashed #5484d5;
}

.business-content .container p:last-of-type {
  margin-bottom: 0;
}

.account-content {
  padding-top: 100px;
}

.account-content .txtimg__image img {
  border: 5px solid white;
  -webkit-box-shadow: 0 3px 16px rgba(217, 229, 250, 0.77);
          box-shadow: 0 3px 16px rgba(217, 229, 250, 0.77);
}

.account-content .file-upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 200px;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  border: 1px solid #5484d5;
  border-radius: 23px;
  color: #5484d5;
  text-align: center;
  font-family: QuattrocentoSansBold,sans-serif;
  font-size: 18px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.account-content .file-upload:hover {
  color: white;
  background: #5484d5;
}

.account-content .file-upload input[type="file"] {
  display: none;
}

.account-content .file-upload label {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#AccountPage .txtimg__text p {
  margin-bottom: 35px;
}

#AccountPage .account-section {
  padding-top: 0;
}

.account-section {
  background: url("../images/account/account-open-bg.png") no-repeat;
  background-position: center 90%;
  background-size: 100% auto;
}

.account-section form {
  max-width: 840px;
  margin: 0 auto;
  padding: 85px 0 75px;
}

.account-section form .input-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.account-section form .input-row input,
.account-section form .input-row select {
  border: 1px solid #cae2ff;
  width: 405px;
  margin-bottom: 30px;
}

.account-section form .input-row input.invalid-val,
.account-section form .input-row select.invalid-val {
  border-color: red;
}

.account-section form .checkbox-row {
  margin-bottom: 65px;
}

.account-section form .checkbox-row span {
  padding-left: 5px;
  line-height: 25px;
}

.account-section form .checkbox-row span a {
  color: #5484d5;
}

.account-section form .btn-row {
  margin-bottom: 30px;
}

.account-section form .submit {
  text-align: center;
  padding: 30px 0 0;
}

.account-confirm {
  background: url("../images/account/acc-openning.png") no-repeat;
  background-position: center 90%;
  background-size: 100% auto;
}

.account-confirm .container h1 {
  margin: 0 0 35px;
}

.account-confirm .container .thanks-h {
  margin: 0 0 20px;
}

.account-confirm .container h3 {
  padding-left: 95px;
}

.account-confirm .container .thanks-p {
  margin: 0 0 40px;
}

.account-confirm .container .thanks-inf {
  margin: 0 0 5px;
}

.account-page {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.manage-acc-content {
  overflow: hidden;
  background: url("../images/managed-acc/manage-acc-bg.png") no-repeat;
  background-position: center 550px;
  background-size: 100% auto;
}

.manage-acc-content p {
  line-height: 36px;
  margin: 0;
  font-size: 17px;
  padding-left: 95px;
}

.manage-acc-content p.italic {
  font-family: QuattrocentoSansItalic, sans-serif;
}

.manage-acc-content strong {
  font-family: QuattrocentoSansBold, sans-serif;
}

.manage-acc-content .txtimg__text p {
  padding-right: 25px;
}

.manage-acc-content .txtimg__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.manage-acc-content .txtimg__image img {
  width: 100%;
}

.manage-acc-content .manage-acc-section {
  padding: 100px 0 0;
}

.manage-acc-content #HWScheme p {
  padding: 0;
}

.manage-acc-content .smaller-p {
  font-size: 12px;
  margin-top: 0;
}

.manage-acc-content .rem-margin-bottom {
  margin-bottom: 0;
}

.how-work__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 95px;
  padding-top: 40px;
}

.how-work__flex p {
  padding-left: 0;
}

.how-work__flex p strong {
  text-transform: uppercase;
}

.how-work__flex .how-work__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.how-work__flex .how-work__row .how-work__main-row {
  background: #fff;
  border: 1px solid #e0ebf8;
  -webkit-box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
          box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
  text-align: center;
  padding: 25px 30px;
  width: 355px;
}

.how-work__flex .how-work__row .how-work__main-row h3 {
  position: relative;
  padding-bottom: 15px;
}

.how-work__flex .how-work__row .how-work__main-row h3:after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 55px;
  height: 2px;
  background: #385990;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.how-work__flex .how-work__row .how-work__main-row p {
  text-align: left;
}

.how-work__flex .how-work__item1 {
  max-width: 100%;
  width: 980px;
  position: relative;
  z-index: 2;
}

.how-work__flex .how-work__item1 .how-work__additional-row {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.how-work__flex .how-work__item1 .how-work__additional-row .arrow-box {
  width: 100%;
  padding-top: 60px;
}

.how-work__flex .how-work__item2 {
  max-width: 100%;
  width: 665px;
  margin-top: -30px;
  position: relative;
  z-index: 1;
}

.how-work__flex .how-work__item2 .how-work__additional-row {
  padding-top: 70px;
  width: 310px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.how-work__flex .how-work__item2 .how-work__additional-row p {
  max-width: 190px;
  text-align: left;
}

.how-work__flex .how-work__item2 .how-work__additional-row .arrow-box {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.managedacc-image {
  display: none;
  padding-top: 20px;
}

.imgLightbox {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 102;
  overflow: scroll;
}

.imgLightbox img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: rgba(255, 255, 255, 0.75);
}

.imgLightbox .close-lightbox {
  display: block;
  width: 25px;
  height: 25px;
  position: fixed;
  top: 10px;
  right: 10px;
}

.imgLightbox .close-lightbox:after,
.imgLightbox .close-lightbox:before {
  content: '';
  width: 25px;
  height: 3px;
  border-radius: 3px;
  background: #385990;
  display: block;
  position: absolute;
}

.imgLightbox .close-lightbox:before {
  left: 0;
  top: 11px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.imgLightbox .close-lightbox:after {
  left: 0;
  top: 11px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.how-work__image {
  max-width: 1080px;
  margin-top: 60px;
  padding-left: 95px;
}

.how-work__image img {
  border: 5px solid #fff;
  -webkit-box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
          box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
}

.fees-charge-section .margin-right strong {
  min-width: 175px;
  display: inline-block;
}

.fees-charge-section p {
  margin: 10px 0 15px;
}

.feauter-ben-section .numeric-list {
  counter-reset: section;
  padding-left: 95px;
}

.feauter-ben-section .numeric-list .numeric-row {
  padding-left: 40px;
  position: relative;
  margin: 10px 0 15px;
}

.feauter-ben-section .numeric-list .numeric-row:before {
  counter-increment: section;
  content: counter(section);
  display: block;
  background: #5484d5;
  position: absolute;
  left: 0;
  border-radius: 50%;
  color: #fff;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 14px;
  top: 7px;
}

.feauter-ben-section .numeric-list .numeric-row p {
  padding: 0;
}

.feauter-ben-section .right-img {
  position: relative;
  width: 280px;
}

.faq-section p {
  margin: 10px 0 15px;
}

#ManageAcc-img .txtimg-flex .txtimg__image img {
  max-width: 100%;
}

.ftrusts-content {
  overflow-x: hidden;
  background: url("../images/family-trust/bg.png") no-repeat;
  background-position: center 530px;
  background-size: 100% auto;
}

.ftrusts-content p {
  line-height: 36px;
  font-size: 17px;
  padding-left: 95px;
}

.ftrusts-content p.italic {
  font-family: QuattrocentoSansItalic, sans-serif;
}

.ftrusts-content strong {
  font-family: QuattrocentoSansBold, sans-serif;
}

.ftrusts-content .txtimg__text {
  width: 700px;
}

.ftrusts-content .txtimg__text p {
  padding-right: 135px;
}

.ftrusts-content .txtimg__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 700px);
}

.ftrusts-content .txtimg__image img {
  width: 100%;
}

.ftrusts-content .ftrusts-section {
  padding: 100px 0 0;
}

.ftrusts-content .ftrusts-second-section .txtimg-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 95px;
}

.ftrusts-content .ftrusts-second-section .txtimg-flex .txtimg__image {
  padding-left: 0;
}

.ftrusts-content .ftrusts-second-section .txtimg-flex .txtimg__image img {
  width: 100%;
}

.ftrusts-content .ftrusts-second-section .txtimg-flex .txtimg__text {
  padding: 0 0 0 20px;
}

.ftrusts-content .ftrusts-second-section .txtimg-flex .txtimg__text p {
  padding: 0;
  margin: 0;
}

.ftrusts-content ul li {
  margin-bottom: 10px;
}

.ftrusts-content ul li:last-of-type {
  margin-bottom: 0;
}

#family-trusts-page .txtimg__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 700px);
}

#family-trusts-page .txtimg__image img {
  width: 100%;
}

#family-trusts-page .ftrusts-section {
  padding: 100px 0 0;
}

#family-trusts-page .ftrusts-second-section .txtimg-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 95px;
}

#family-trusts-page .ftrusts-second-section .txtimg-flex .txtimg__image {
  padding-left: 0;
  width: calc(100% - 780px);
}

#family-trusts-page .ftrusts-second-section .txtimg-flex .txtimg__image img {
  width: 100%;
}

#family-trusts-page .ftrusts-second-section .txtimg-flex .txtimg__text {
  width: 780px;
  padding: 0 0 0 20px;
}

#family-trusts-page .ftrusts-second-section .txtimg-flex .txtimg__text p {
  padding: 0;
  margin: 0;
}

.mbuying-content .hero-image_section {
  background: url("../images/media-buy/hero-image.jpg") no-repeat;
  padding: 0;
}

.mbuying-content .partners-cols {
  padding-left: 95px;
}

.mbuying-content .partners-cols p {
  font-family: QuattrocentoSansBold, sans-serif;
  margin: 0;
  padding: 0;
}

.model-portf-content {
  background: url("../images/model-portf/bg.png") no-repeat;
  background-position: center 135px;
  background-size: 100% auto;
}

.model-portf-content p {
  line-height: 36px;
  padding: 0;
  font-size: 17px;
}

.model-portf-content p .italic {
  font-family: QuattrocentoSansItalic, sans-serif;
}

.model-portf-content #num-list p {
  margin: 0;
  padding-left: 0;
}

.model-portf-content #num-list .add-padding {
  padding-left: 40px;
}

.model-portf-content strong {
  font-family: QuattrocentoSansBold, sans-serif;
}

.model-portf-content .numeric-list {
  counter-reset: section;
}

.model-portf-content .numeric-list .numeric-row {
  padding-left: 40px;
  position: relative;
  margin: 10px 0 15px;
}

.model-portf-content .numeric-list .numeric-row:before {
  counter-increment: section;
  content: counter(section);
  display: block;
  background: #5484d5;
  position: absolute;
  left: 0;
  border-radius: 50%;
  color: #fff;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 14px;
  top: 7px;
}

.model-portf-content .numeric-list .numeric-row p {
  padding: 0;
}

.model-portf-content .model-portf-section {
  padding: 100px 0 0;
}

.model-portf-content .model-port-wrapp {
  padding-left: 95px;
}

.model-portf-content .images-box {
  display: block;
  max-width: 180px;
  border: 5px solid #fff;
  -webkit-box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
          box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
  float: right;
  margin: 0 0 30px 30px;
}

.open-section {
  text-align: center;
  padding: 55px 0 65px;
}

.open-section a {
  font-size: 18px;
  color: #5484d5;
  font-family: QuattrocentoSans, sans-serif;
  padding: 0 0 5px;
  border-bottom: 1px dashed #5484d5;
}

#landing-page {
  background: url("../images/retire-sooner/bg-top.png") no-repeat;
  background-position: center 46%;
  background-size: 100% auto;
  overflow: hidden;
  position: relative;
}

#landing-page:after {
  content: '';
  display: block;
  width: 100%;
  height: 500px;
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/retire-sooner/bg-bottom.png") no-repeat;
  background-position: center;
  background-size: 100% auto;
}

#landing-page .hero-image_section {
  background: url("../images/retire-sooner/heroimage.jpg") no-repeat;
  padding: 0;
}

#landing-page .list-block {
  margin-top: 30px;
}

#landing-page .numeric-list {
  counter-reset: section;
  padding-left: 95px;
}

#landing-page .numeric-list .numeric-row {
  padding-left: 40px;
  position: relative;
  margin: 10px 0;
}

#landing-page .numeric-list .numeric-row:before {
  counter-increment: section;
  content: counter(section);
  display: block;
  background: #5484d5;
  position: absolute;
  left: 0;
  border-radius: 50%;
  color: #fff;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 14px;
  top: 11px;
}

#landing-page .numeric-list .numeric-row p {
  padding: 0;
  line-height: 45px;
}

#landing-page .images-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 285px;
  border: 5px solid #fff;
  -webkit-box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
          box-shadow: 0 0 29px 0 rgba(222, 236, 249, 0.75);
  float: right;
  margin: 0 0 30px 30px;
}

#landing-page .italic {
  font-family: QuattrocentoSansItalic, sans-serif;
}

@media screen and (min-width: 992px) {
  .menu >
ul > li:hover .submenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 40px;
    left: -26px;
    width: 100%;
    min-width: 200px;
    background-color: #fff;
    -webkit-box-shadow: -0.1px -3px 16px rgba(0, 17, 45, 0.14);
            box-shadow: -0.1px -3px 16px rgba(0, 17, 45, 0.14);
    padding: 23px 28px;
    z-index: 3;
  }

  .menu >
ul > li:hover .submenu li {
    margin-bottom: 9px;
  }

  .menu >
ul > li:hover .submenu:before {
    content: "";
    position: absolute;
    top: -19px;
    left: 40px;
    border: 13px solid transparent;
    border-bottom: 10px solid white;
  }

  .menu >
ul > li:hover .submenu:after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}

@media screen and (max-width: 2000px) {
  .we-start-section:after {
    top: -175px;
    height: 370px;
  }

  .winvest-content:after {
    bottom: 380px;
    height: 370px;
  }
}

@media screen and (max-width: 1820px) {
  .section-left .img-left {
    right: calc(100% - ((100% - 1170px)/ 2) - 75px);
  }
}

@media screen and (max-width: 1600px) {
  .section-right .img-right {
    left: calc( 56% + 20px);
  }
}

@media screen and (max-width: 1500px) {
  .hero-image_section {
    height: 360px;
  }

  .content-padding p {
    line-height: 28px;
  }

  .blocks-padding p {
    line-height: 28px;
  }

  .txtimg-flex .txtimg__image img {
    max-width: 350px;
  }

  h1 {
    font-size: 48px;
  }

  .performance-content {
    background-position: center 370px;
  }

  .performance-content p {
    line-height: 28px;
  }

  .performance-section {
    padding: 80px 0 0;
  }

  .performance-section .performance-flex .performance__image img {
    max-width: 350px;
  }

  .investment-section {
    padding: 60px 0 0;
  }

  .details-section {
    padding: 80px 0 0;
  }

  .leartmore-section {
    padding: 75px 0 55px;
  }

  .inner-txt-page section {
    padding: 30px 0 15px;
  }

  .inner-txt-page .hero-image_section {
    margin: 0 0 30px;
  }

  .inner-txt-page ul li:before {
    top: 9px;
  }

  .inner-txt-page ul li {
    line-height: 28px;
  }

  .winvest-content:after {
    bottom: 260px;
    height: 370px;
  }

  .winvest-content .open-section {
    padding: 35px 0 45px;
  }

  .contact-section {
    padding-top: 80px;
  }

  .contact-section {
    padding: 70px 0;
  }

  .contact-section .contact__flex {
    padding-top: 45px;
  }

  .contact-section .contact__text-right .c-icon:before {
    top: 3px;
  }

  .contact-map-section iframe {
    height: 450px;
  }

  .financial-content .open-section {
    padding: 35px 0 45px;
  }

  .business-content .business-section {
    padding-top: 80px;
  }

  .business-content .business-section .business-flex .business__image img {
    max-width: 350px;
  }

  .business-content .open-section {
    padding: 35px 0 45px;
  }

  .account-content {
    padding-top: 80px;
  }

  .manage-acc-content {
    background-position: center 370px;
  }

  .manage-acc-content p {
    line-height: 28px;
  }

  .manage-acc-content .manage-acc-section {
    padding: 80px 0 0;
  }

  #ManageAcc-img .txtimg-flex .txtimg__image {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  #ManageAcc-img .txtimg-flex .txtimg__image img {
    max-width: 350px;
  }

  .ftrusts-content {
    background-position: center 370px;
  }

  .ftrusts-content p {
    line-height: 28px;
  }

  .ftrusts-content .txtimg__text p {
    padding-right: 70px;
  }

  .ftrusts-content .ftrusts-section {
    padding: 80px 0 0;
  }

  #family-trusts-page .ftrusts-section {
    padding: 80px 0 0;
  }

  .model-portf-content {
    background-position: center 200px;
  }

  .model-portf-content .model-portf-section {
    padding: 80px 0 0;
  }

  .open-section {
    padding: 35px 0 45px;
  }
}

@media screen and (max-width: 1440px) {
  .new-line {
    font-size: 18px;
  }

  .dash {
    padding-left: 86px;
  }

  .content-padding p {
    padding-left: 86px;
  }

  .blocks-padding .add-padding-l {
    padding-left: 86px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  .page-header .container-full {
    padding: 0 25px;
  }

  .logo {
    width: 22%;
  }

  .wrap-menu {
    width: 78%;
  }

  .banner h1 {
    font-size: 48px;
  }

  .section-right .img-right {
    left: calc(57% + 23px);
  }

  .section-left .block-text {
    margin-left: 0;
    width: 77%;
    float: right;
    padding-left: 105px;
    padding-top: 28px;
  }

  .section-left h5 {
    font-size: 20px;
  }

  .section-left .img-left {
    right: calc(87% - ((100% - 1170px)/ 2) - 76px);
  }

  .performance-content p {
    padding-left: 86px;
  }

  .investment-section .table-main {
    margin-left: 0;
  }

  .inner-txt-page ul li {
    margin-left: 86px;
  }

  .account-confirm .container h3 {
    padding-left: 86px;
  }

  .manage-acc-content p {
    padding-left: 86px;
  }

  .how-work__flex {
    padding-left: 86px;
  }

  .how-work__image {
    padding-left: 86px;
  }

  .feauter-ben-section .numeric-list {
    padding-left: 86px;
  }

  .ftrusts-content p {
    padding-left: 86px;
  }

  .ftrusts-content .ftrusts-second-section .txtimg-flex {
    padding-left: 86px;
  }

  #family-trusts-page .ftrusts-second-section .txtimg-flex {
    padding-left: 86px;
  }

  .mbuying-content .partners-cols {
    padding-left: 86px;
  }

  .model-portf-content .model-port-wrapp {
    padding-left: 86px;
  }

  #landing-page .numeric-list {
    padding-left: 86px;
  }
}

@media screen and (max-width: 1380px) {
  .page-header .container-full {
    height: 73px;
    padding: 0 15px;
  }

  .logo {
    width: 17%;
    padding-right: 3px;
  }

  .wrap-menu {
    width: 82%;
    padding-left: 6px;
  }

  .social {
    max-width: 76px;
    margin-left: 32px;
  }

  .banner {
    height: calc(100vh - 73px);
  }
}

@media screen and (max-width: 1366px) {
  .banner h1 {
    font-size: 36px;
    line-height: 36px;
  }
}

@media screen and (max-width: 1280px) {
  .section-left .block-text {
    margin-left: 0;
  }

  .section-left .img-left {
    right: 78%;
  }
}

@media screen and (max-width: 1200px) {
  .hero-image_section {
    height: 290px;
  }

  .content-padding p {
    line-height: 24px;
    font-size: 14px;
  }

  .blocks-padding p {
    line-height: 24px;
    font-size: 14px;
  }

  .txtimg-flex .txtimg__text p {
    margin: 15px 0 20px;
  }

  .txtimg-flex .txtimg__image img {
    max-width: 300px;
  }

  h1 {
    font-size: 36px;
  }

  input[type='text'],
  input[type='email'],
  input[type='tel'],
  input[type='url'],
  input[type='search'],
  input[type='password'],
  textarea,
  select {
    height: 45px;
    font-size: 14px;
  }

  form #acc-select-button {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }

  form #acc-select-button .ui-selectmenu-text {
    line-height: 45px;
    font-size: 14px;
  }

  .btn {
    height: 45px;
    line-height: 45px;
    font-size: 15px;
  }

  .btn-bordered {
    font-size: 15px;
  }

  .section-right .img-right {
    left: calc(56% + 40px);
  }

  .newsletter .newsletter__blocks {
    padding-top: 30px;
  }

  .performance-content p {
    line-height: 24px;
    font-size: 14px;
  }

  .performance-section {
    padding: 60px 0 0;
  }

  .performance-section .performance-flex .performance__text p {
    margin: 15px 0 20px;
  }

  .performance-section .performance-flex .performance__image img {
    max-width: 300px;
  }

  .investment-section {
    padding: 50px 0 0;
  }

  .investment-section .table-main {
    margin: 35px 0 0 0;
  }

  .investment-section .table-main table tr th,
  .investment-section .table-main table tr td {
    padding: 20px 5px;
    text-align: center;
  }

  .investment-section .table-main table tr th:first-of-type,
  .investment-section .table-main table tr td:first-of-type {
    padding: 20px 5px;
  }

  .investment-section .table-main table #table-full {
    padding: 17px 10px 35px;
  }

  .investment-section .table-main table #table-full .small-txt {
    left: 10px;
    bottom: 24px;
  }

  .investment-section .table-main table #table-full .small-txt.bottom {
    bottom: 10px;
  }

  .details-section {
    padding: 60px 0 0;
  }

  .leartmore-section {
    padding: 60px 0 45px;
  }

  .leartmore-section a {
    font-size: 16px;
  }

  .inner-txt-page section {
    padding: 20px 0 15px;
  }

  .inner-txt-page .hero-image_section {
    margin: 0 0 20px;
  }

  .inner-txt-page ul li:before {
    width: 6px;
    height: 6px;
    top: 8px;
  }

  .inner-txt-page ul li {
    line-height: 24px;
    font-size: 14px;
  }

  .inner-txt-page .small-p {
    font-size: 12px;
    line-height: 20px;
  }

  .we-start-section:after {
    display: none;
  }

  .winvest-content:after {
    display: none;
  }

  .winvest-content .open-section {
    padding: 20px 0 35px;
  }

  .winvest-content .open-section a {
    font-size: 16px;
  }

  .contact-section {
    padding-top: 60px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .contact-section .contact__flex {
    padding-top: 30px;
  }

  .contact-section .contact__text-right p {
    padding-left: 30px;
  }

  .contact-map-section {
    padding: 0 0 20px;
  }

  .contact-map-section iframe {
    height: 300px;
  }

  .financial-content .open-section {
    padding: 20px 0 35px;
  }

  .financial-content .open-section a {
    font-size: 16px;
  }

  .business-content .business-section {
    padding-top: 60px;
  }

  .business-content .business-section .business-flex .business__text p {
    margin: 15px 0 20px;
  }

  .business-content .business-section .business-flex .business__image img {
    max-width: 300px;
  }

  .business-content .open-section {
    padding: 20px 0 35px;
  }

  .business-content .open-section a {
    font-size: 16px;
  }

  .account-content {
    padding-top: 60px;
  }

  #AccountPage .txtimg__text p {
    margin-bottom: 20px;
  }

  .account-section form .checkbox-row {
    margin-bottom: 45px;
  }

  .manage-acc-content p {
    line-height: 24px;
    font-size: 14px;
  }

  .manage-acc-content .manage-acc-section {
    padding: 60px 0 0;
  }

  .how-work__flex {
    padding-top: 30px;
  }

  .how-work__flex .how-work__row .how-work__main-row {
    padding: 15px 20px;
    width: 300px;
  }

  .how-work__flex .how-work__item1 {
    width: 850px;
  }

  .how-work__flex .how-work__item2 {
    width: 850px;
    margin-top: -15px;
  }

  .how-work__flex .how-work__item2 .how-work__additional-row {
    width: 275px;
    padding-top: 30px;
  }

  .how-work__flex .how-work__item2 .how-work__additional-row p {
    padding-top: 15px;
    max-width: 160px;
  }

  .how-work__image {
    margin-top: 40px;
    max-width: 100%;
  }

  .fees-charge-section p {
    margin: 5px 0 10px;
  }

  .feauter-ben-section .numeric-list .numeric-row {
    margin: 5px 0 10px;
  }

  .faq-section p {
    margin: 5px 0 10px;
  }

  .ftrusts-content p {
    line-height: 24px;
    font-size: 14px;
  }

  .ftrusts-content .ftrusts-section {
    padding: 60px 0 0;
  }

  #family-trusts-page .ftrusts-section {
    padding: 60px 0 0;
  }

  #family-trusts-page .ftrusts-second-section .txtimg-flex .txtimg__image {
    width: 40%;
  }

  #family-trusts-page .ftrusts-second-section .txtimg-flex .txtimg__text {
    width: 60%;
  }

  .model-portf-content .numeric-list .numeric-row {
    margin: 5px 0 10px;
  }

  .model-portf-content .model-portf-section {
    padding: 60px 0 0;
  }

  .open-section {
    padding: 20px 0 35px;
  }

  .open-section a {
    font-size: 16px;
  }

  #landing-page .numeric-list .numeric-row {
    margin: 5px 0 10px;
  }
}
@media screen and (min-width: 1920px) {
  .menu {
    /*max-width: 1200px;*/
  }
}
@media screen and (max-width: 1190px) {
  .menu {
    padding-left: 0;
    /*width: 80%;*/
  }

  .menu {
    /*width: 70%;*/
    /*max-width: 490px;*/
  }
}

@media screen and (max-width: 1170px) {
  .section-images .block-img-left .wrap-block {
    max-height: 672px;
  }

  .section-images .wrap-block {
    height: 321px;
  }

  .newsletter .newsletter__block {
    width: 33.33%;
  }

  .newsletter .newsletter__block .wrap-img {
    height: 28vw;
  }
}

@media screen and (max-width: 1024px) {
  .dash {
    padding-left: 71px;
    line-height: 36px;
  }

  .dash:before {
    left: 25px;
    width: 25px;
  }

  .dash.visible:before {
    left: 25px;
    width: 25px;
  }

  .visible .dash:before {
    left: 25px;
    width: 25px;
  }

  .content-padding p {
    padding-left: 71px;
  }

  .blocks-padding .add-padding-l {
    padding-left: 71px;
  }

  h2 {
    font-size: 24px;
    line-height: 36px;
  }

  .section-right {
    margin-top: 72px;
    height: 325px;
  }

  .section-right h2 {
    padding-left: 71px;
  }

  .section-right .block-text {
    width: 48.3%;
  }

  .section-right .img-right {
    left: calc(44% + 39px);
  }

  .section-left {
    margin-bottom: 44px;
    margin-top: 74px;
    height: auto;
  }

  .section-left .block-text {
    width: 64%;
    padding-left: 96px;
    padding-top: 0;
  }

  .section-left .block-text.dash span {
    left: 21px;
  }

  .section-left p {
    line-height: 30px;
    margin-top: 10px;
    font-size: 16px;
  }

  .section-left .img-left {
    top: 32px;
    right: calc(63% + 7px);
    height: 319px;
    overflow: hidden;
  }

  .section-images {
    overflow: hidden;
  }

  .section-images .block-img-left {
    width: 31%;
  }

  .section-images .block-img-left .wrap-block {
    max-height: 612px;
    max-width: 278px;
  }

  .section-images .block-img-left .block-text {
    padding-top: 0;
  }

  .section-images .block-img-left .block-text h3 {
    margin-top: 23px;
  }

  .section-images .block-img-right {
    width: 69%;
  }

  .section-images .block-img-right .block-text {
    width: calc(100% - 279px);
  }

  .section-images .block-img-right .block-text p {
    padding: 0 30px;
    margin-top: 32px;
  }

  .section-images .block-img-right .wrap-block {
    max-height: 280px;
    background-color: white;
  }

  .section-images .block-img-right .wrap-block:first-child {
    margin-bottom: 52px;
  }

  .section-images .block-img-right .wrap-block:first-child h3 {
    margin-top: 12px;
  }

  .section-images .wrap-block {
    height: 309px;
  }

  .section-images .wrap-img {
    max-width: 279px;
  }

  .section-images .block-text p {
    font-size: 16px;
    line-height: 30px;
    margin-top: 32px;
    padding: 0 20px;
  }

  .partners {
    padding-top: 60px;
    padding-bottom: 102px;
  }

  .partners .block-right {
    width: 45%;
  }

  .partners .block-right .dash {
    padding-left: 92px;
  }

  .partners .block-right .btn {
    margin-top: 38px;
  }

  .partners .img-left {
    width: 49%;
  }

  .news {
    padding-top: 51px;
  }

  .news .block-button {
    padding-top: 40px;
  }

  .newsletter {
    padding-top: 51px;
    padding-bottom: 18px;
  }

  .newsletter .btn {
    margin-top: 110px;
  }

  .newsletter .newsletter__block h3 {
    margin: 9px 0 15px 0;
  }

  .newsletter .newsletter__block span {
    padding-top: 23px;
  }

  .footer-top {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .footer-top .block-contact a .fa {
    font-size: 19px;
    vertical-align: baseline;
  }

  .footer-top .block-contact .logo {
    max-width: 165px;
  }

  .footer-top .block-contact .social {
    margin-left: 0;
  }

  .footer-top .block-contact .social a .fa {
    font-size: 24px;
  }

  .footer-top .blocks-info {
    width: 75%;
  }

  .footer-top .blocks-info .block-info h4 {
    margin-bottom: 0;
  }

  .footer-top .blocks-info .block-info__list a,
  .footer-top .blocks-info .block-info__list span {
    line-height: 24px;
  }

  .performance-content p {
    padding-left: 71px;
  }

  .inner-txt-page ul li {
    margin-left: 71px;
  }

  .account-confirm .container h3 {
    padding-left: 71px;
  }

  .manage-acc-content p {
    padding-left: 71px;
  }

  .how-work__flex {
    padding-left: 71px;
  }

  .how-work__image {
    padding-left: 71px;
  }

  .feauter-ben-section .numeric-list {
    padding-left: 71px;
  }

  .ftrusts-content p {
    padding-left: 71px;
  }

  .ftrusts-content .ftrusts-second-section .txtimg-flex {
    padding-left: 71px;
  }

  #family-trusts-page .ftrusts-second-section .txtimg-flex {
    padding-left: 71px;
  }

  .mbuying-content .partners-cols {
    padding-left: 71px;
  }

  .model-portf-content .model-port-wrapp {
    padding-left: 71px;
  }

  #landing-page .numeric-list {
    padding-left: 71px;
  }
}

@media screen and (max-width: 992px) {
  .hero-image_section {
    height: 210px;
  }

  .txtimg-flex .txtimg__text {
    width: 495px;
    padding: 0 25px 0 0;
  }

  .txtimg-flex .txtimg__image {
    width: calc(100% - 495px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .txtimg-flex .txtimg__image img {
    max-width: 100%;
  }

  h1 {
    font-size: 28px;
  }

  form #acc-select-button {
    width: 355px;
  }

  .wrap-menu {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 100vh;
    max-width: 369px;
    width: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 0;
    padding-top: 20px;
    padding-bottom: 25px;
    background-color: white;
    overflow: hidden;
    z-index: 3;
    -webkit-transition: all 1.3s;
    transition: all 1.3s;
  }

  .wrap-menu.active {
    width: 100%;
  }

  .menu {
    width: 100%;
    max-width: 100%;
    padding-left: 111px;
  }

  .menu > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .menu > ul > li .submenu {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 8px;
  }

  .menu > ul > li .submenu li {
    width: 100%;
    margin-bottom: 7px;
  }

  .menu > ul > li .submenu a {
    margin-left: 8px;
    display: inline-block;
  }

  .menu a {
    line-height: 50px;
    font-size: 16px;
  }

  .menu a {
    line-height: 38px;
  }

  .menu__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-left: 111px;
  }

  .social {
    margin-left: 0;
  }

  .social ul {
    padding-top: 3px;
  }

  .authorization ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 15px;
  }

  .authorization li:nth-of-type(1) .btn {
    width: 157px;
    margin-bottom: 30px;
  }

  .authorization li:nth-of-type(2) .btn {
    width: 157px;
    margin-bottom: 37px;
  }

  .menu-show {
    display: inline-block;
  }

  .plus-show {
    position: relative;
  }

  .plus-show:before {
    content: "+";
    position: absolute;
    top: -12px;
    left: -17px;
  }

  .active > .plus-show {
    color: #5484d5;
  }

  .active > .plus-show:before {
    content: "-";
    position: absolute;
    top: -11px;
    left: -17px;
  }

  .section-images .block-img-left {
    width: 100%;
  }

  .section-images .block-img-left .wrap-block {
    max-height: 270px;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0;
    margin-right: 0;
  }

  .section-images .block-img-left .block-text {
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .section-images .block-img-left .block-text h3 {
    margin-bottom: 30px;
  }

  .section-images .block-img-left .block-text p {
    line-height: 24px;
    margin-top: 0px;
    padding: 0 50px;
  }

  .section-images .block-img-left .block-text p {
    margin-top: 23px;
    padding: 0 50px;
  }

  .section-images .block-img-right {
    width: 100%;
  }

  .section-images .block-img-right .wrap-img {
    width: 100%;
    max-width: 270px;
  }

  .section-images .block-img-right .block-text {
    width: calc(100% - 270px);
    -ms-flex-line-pack: baseline;
        align-content: baseline;
  }

  .section-images .block-img-right .block-text p {
    margin-top: 23px;
    padding: 0 50px;
  }

  .section-images .block-img-right .wrap-block {
    height: 270px;
  }

  .section-images .block-img-right .wrap-block:first-child {
    margin-left: 0;
    margin-bottom: 33px;
  }

  .section-images .block-img-right .wrap-block:first-child h3 {
    margin-top: 51px;
  }

  .section-images .block-img-right .wrap-block:first-child h3:after {
    bottom: -10px;
  }

  .section-images .wrap-img {
    max-height: 270px;
    max-width: 270px;
  }

  .section-images .block-text {
    width: calc(100% - 270px);
  }

  .section-images .block-text h3:after {
    bottom: 33px;
  }

  .section-images .block-text h3:after {
    bottom: -9px;
  }

  .section-images .block-text p {
    line-height: 24px;
    margin-top: -23px;
    padding: 0 50px;
  }

  .footer-top {
    padding-top: 53px;
    padding-bottom: 25px;
  }

  .footer-top .block-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    align-items: center;
    margin-bottom: 30px;
  }

  .footer-top .block-contact a {
    line-height: 16px;
    font-size: 14px;
  }

  .footer-top .block-contact .logo {
    max-width: 180px;
    padding-right: 23px;
    padding-bottom: 0;
  }

  .footer-top .block-contact .social {
    max-width: 121px;
    margin-top: -4px;
  }

  .footer-top .blocks-info {
    width: 100%;
    margin-top: 6px;
  }

  .footer-top .blocks-info .block-info__list a,
  .footer-top .blocks-info .block-info__list span {
    font-size: 14px;
  }

  .footer-bottom .block-text {
    padding-right: 15px;
  }

  .performance-section {
    padding: 40px 0 0;
  }

  .performance-section .performance-flex .performance__text {
    width: 495px;
    padding: 0 25px 0 0;
  }

  .performance-section .performance-flex .performance__image {
    width: calc(100% - 495px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .performance-section .performance-flex .performance__image img {
    max-width: 100%;
  }

  .investment-section {
    padding: 40px 0 0;
  }

  .investment-section .table-main {
    margin: 25px 0 0 0;
    width: 100%;
    overflow-x: scroll;
  }

  .details-section {
    padding: 40px 0 0;
  }

  .details-section .details-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .details-section .details-flex .details__text {
    width: 100%;
    padding: 0;
  }

  .details-section .details-flex .details__image {
    width: 100%;
    padding-left: 71px;
    margin-top: 15px;
  }

  .inner-txt-page section {
    padding: 15px 0 15px;
  }

  .inner-txt-page .hero-image_section {
    margin: 0 0 15px;
  }

  .full_img__flex .full_img__item-left {
    padding-right: 0;
    width: 100%;
  }

  .full_img__flex .full_img__item-right {
    display: none;
  }

  .contact-section {
    padding-top: 40px;
  }

  .contact-section .half-cont-flex .half-cont__text {
    width: 365px;
    padding: 0 25px 0 0;
  }

  .contact-section .half-cont-flex .half-cont__image {
    width: calc(100% - 365px);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .contact-section .half-cont-flex .half-cont__image img {
    max-width: 100%;
  }

  .contact-section {
    padding: 35px 0;
  }

  .contact-section .contact__flex {
    padding-top: 25px;
  }

  .contact-section .contact__flex .contact__col-left {
    width: 100%;
  }

  .contact-section .contact__flex .contact__col-right {
    width: 100%;
  }

  .contact-map-section iframe {
    height: 250px;
  }

  .business-content .business-section {
    padding-top: 40px;
  }

  .business-content .business-section .business-flex .business__text {
    width: 495px;
    padding: 0 25px 0 0;
  }

  .business-content .business-section .business-flex .business__image {
    width: calc(100% - 495px);
  }

  .business-content .business-section .business-flex .business__image img {
    max-width: 100%;
  }

  .account-content {
    padding-top: 40px;
  }

  .account-section form {
    max-width: 740px;
    padding: 55px 0 35px;
  }

  .account-section form .input-row input,
  .account-section form .input-row select {
    width: 355px;
  }

  .manage-acc-content .txtimg__text {
    width: 100%;
    padding: 0;
  }

  .manage-acc-content .txtimg__text p {
    padding-right: 0;
  }

  .manage-acc-content .txtimg__image {
    width: 100%;
    padding-left: 71px;
    margin-top: 15px;
  }

  .manage-acc-content .manage-acc-section {
    padding: 40px 0 0;
  }

  .how-work__flex .how-work__row .how-work__main-row {
    padding: 10px;
    width: 230px;
  }

  .how-work__flex .how-work__row .how-work__main-row h3 {
    padding-bottom: 10px;
  }

  .how-work__flex .how-work__item1 {
    width: 660px;
  }

  .how-work__flex .how-work__item1 .how-work__additional-row .arrow-box {
    padding-top: 40px;
    max-width: 195px;
    margin: 0 auto;
  }

  .how-work__flex .how-work__item2 {
    width: 470px;
    margin-top: -5px;
  }

  .how-work__flex .how-work__item2 .how-work__additional-row {
    width: 215px;
  }

  .how-work__flex .how-work__item2 .how-work__additional-row p {
    padding-top: 0;
    max-width: 125px;
  }

  #ManageAcc-img .txtimg-flex .txtimg__image img {
    max-width: 100%;
  }

  .ftrusts-content .txtimg__text {
    width: 100%;
    padding: 0;
  }

  .ftrusts-content .txtimg__text p {
    padding-right: 0;
  }

  .ftrusts-content .txtimg__image {
    width: 100%;
    padding-left: 71px;
    margin-top: 15px;
  }

  .ftrusts-content .ftrusts-section {
    padding: 40px 0 0;
  }

  #family-trusts-page .txtimg__image {
    width: 100%;
    padding-left: 71px;
    margin-top: 15px;
  }

  #family-trusts-page .ftrusts-section {
    padding: 40px 0 0;
  }

  #family-trusts-page .ftrusts-second-section .txtimg-flex .txtimg__image {
    width: 100%;
    margin-top: 15px;
    padding: 0 15px;
  }

  #family-trusts-page .ftrusts-second-section .txtimg-flex .txtimg__text {
    width: 100%;
  }

  .model-portf-content .model-portf-section {
    padding: 40px 0 0;
  }

  #landing-page .numeric-list .numeric-row:before {
    top: 7px;
  }

  #landing-page .numeric-list .numeric-row p {
    line-height: 36px;
  }
}

@media screen and (max-width: 768px) {
  .new-line {
    font-size: 16px;
  }

  .dash {
    line-height: 30px;
  }

  h2 {
    font-size: 22px;
    line-height: 30px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  .logo {
    width: 100%;
    max-width: 225px;
  }

  .section-right {
    height: 276px;
  }

  .section-right .img-right {
    left: calc(48% + 38px);
  }

  .section-left {
    margin-top: 55px;
  }

  .section-left .block-text {
    width: 73%;
  }

  .section-left .block-text.dash span {
    display: none;
  }

  .section-left h5 {
    font-size: 18px;
  }

  .section-left p {
    line-height: 24px;
    margin-bottom: 23px;
  }

  .section-left .img-left {
    height: 272px;
    right: 63%;
    top: 46px;
  }

  .partners {
    padding-top: 0;
    padding-bottom: 37px;
  }

  .partners .block-right {
    width: 60%;
  }

  .partners .block-right .dash {
    margin-bottom: 10px;
  }

  .partners .img-left {
    width: 38%;
    right: 57%;
  }

  .news {
    padding-top: 36px;
  }

  .newsletter {
    padding-top: 37px;
  }

  .newsletter .btn {
    margin-top: 95px;
  }

  .newsletter .newsletter__block h3 {
    margin: 9px 0 3px 0;
    line-height: 24px;
  }

  .newsletter .newsletter__block h3:after {
    bottom: -9px;
  }

  .footer-bottom p {
    margin-top: 18px;
    line-height: 18px;
  }

  .footer-bottom .copyright p {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .txtimg-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .txtimg-flex .txtimg__text {
    width: 100%;
    padding: 0;
  }

  .txtimg-flex .txtimg__image {
    width: 260px;
    margin: 0 auto 25px;
  }

  h1 {
    font-size: 26px;
  }

  form #acc-select-button {
    width: 100%;
  }

  .performance-section {
    padding: 30px 0 0;
  }

  .performance-section .performance-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .performance-section .performance-flex .performance__text {
    width: 100%;
    padding: 0;
  }

  .performance-section .performance-flex .performance__image {
    width: 260px;
    margin: 0 auto 25px;
  }

  .investment-section {
    padding: 30px 0 0;
  }

  .investment-section .table-main {
    margin: 20px 0 0 0;
  }

  .investment-section .table-main table tr th,
  .investment-section .table-main table tr td {
    padding: 10px 7px;
  }

  .investment-section .table-main table tr th:first-of-type,
  .investment-section .table-main table tr td:first-of-type {
    padding: 10px 7px;
  }

  .investment-section .table-main table #table-full span {
    line-height: 25px;
    height: 25px;
    padding: 0 5px;
  }

  .details-section {
    padding: 30px 0 0;
  }

  .leartmore-section {
    padding: 35px 0 35px;
  }

  .leartmore-section a {
    font-size: 14px;
  }

  .winvest-content .open-section a {
    font-size: 14px;
  }

  .contact-section {
    padding-top: 30px;
  }

  .contact-section .half-cont-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .contact-section .half-cont-flex .half-cont__text {
    width: 100%;
    padding: 0;
  }

  .contact-section .half-cont-flex .half-cont__image {
    width: 80%;
    margin: 0 auto 25px;
  }

  .contact-section .contact__flex {
    padding-top: 10px;
  }

  .contact-section .contact__flex .contact__col-left {
    width: 45%;
  }

  .contact-section .contact__flex .contact__col-right {
    width: 55%;
  }

  .financial-content .open-section a {
    font-size: 14px;
  }

  .business-content .business-section {
    padding-top: 30px;
  }

  .business-content .business-section .business-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .business-content .business-section .business-flex .business__text {
    width: 100%;
    padding: 0;
  }

  .business-content .business-section .business-flex .business__image {
    width: 260px;
    margin: 0 auto 25px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .business-content .open-section a {
    font-size: 14px;
  }

  .account-content {
    padding-top: 30px;
  }

  .account-section form {
    width: 100%;
    max-width: 600px;
  }

  .account-section form .input-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .account-section form .input-row input,
  .account-section form .input-row select {
    width: 100%;
  }

  .account-section form .btn-row {
    text-align: center;
  }

  .manage-acc-content .manage-acc-section {
    padding: 30px 0 0;
  }

  .how-work__flex {
    display: none;
  }

  .managedacc-image {
    display: block;
  }

  .ftrusts-content .ftrusts-section {
    padding: 30px 0 0;
  }

  #family-trusts-page .ftrusts-section {
    padding: 30px 0 0;
  }

  #family-trusts-page .ftrusts-second-section .txtimg-flex .txtimg__text {
    padding: 0 10px;
  }

  .model-portf-content .model-portf-section {
    padding: 30px 0 0;
  }

  .model-portf-content .images-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    max-width: 100%;
    float: none;
    margin: 0 auto 30px;
    overflow: hidden;
  }

  .model-portf-content .images-box img {
    width: 33.33%;
  }

  .open-section a {
    font-size: 14px;
  }

  #landing-page .list-block {
    margin-top: 15px;
  }

  #landing-page .images-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    max-width: 100%;
    float: none;
    margin: 20px 0 30px 71px;
    overflow: hidden;
  }

  #landing-page .images-box img {
    width: 50%;
  }
}

@media screen and (max-width: 720px) {
  .footer-top .block-contact > * {
    padding-right: 23px;
  }

  .footer-top .block-contact .social {
    margin-top: 12px;
    max-width: 180px;
  }
}

@media screen and (max-width: 680px) {
  .section-right h2 span {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .section-images .block-img-left .block-text p {
    padding: 0 10px;
  }

  .section-images .block-img-right .block-text p {
    padding: 0 10px;
  }

  .footer-top .blocks-info .block-info {
    width: 50%;
  }

  .footer-top .blocks-info .block-info:nth-child(even) {
    padding-left: 30px;
  }

  .agree__wrap {
    top: 10px;
    padding: 15px;
  }

  .agree__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .agree__buttons .btn {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 720px) {

  .footer-top .block-contact a {
    padding-right: 0;
  }
  .footer-top .block-contact .social {
    padding-right: 0 !important;
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 540px) {
  .container {
    padding: 0 10px;
  }

  .new-line {
    font-size: 14px;
  }

  .dash {
    padding-left: 0;
  }

  .dash:before {
    display: none;
  }

  .content-padding p {
    padding-left: 0;
  }

  .blocks-padding .add-padding-l {
    padding-left: 0;
  }

  .txtimg-flex .txtimg__image {
    width: 160px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }

  .btn {
    height: 41px;
    font-size: 16px;
    line-height: 41px;
  }

  .page-header .container-full {
    height: 50px;
    padding: 0 10px;
  }

  .logo {
    max-width: 102px;
  }

  .wrap-menu {
    max-width: 245px;
    padding-top: 13px;
    flex-wrap: nowrap;
  }

  .wrap-menu.active {
    padding-top: 13px;
  }

  .menu {
    padding-left: 56px;
  }

  .menu a {
    font-size: 14px;
  }

  .menu__right {
    padding-left: 56px;
  }

  .social {
    max-width: 96px;
  }

  .authorization ul {
    padding-top: 17px;

  }

  .authorization li:nth-of-type(1) .btn {
    width: 148px;
  }

  .authorization li:nth-of-type(2) .btn {
    width: 148px;
    margin-bottom: 28px;
  }

  .menu-show {
    width: 20px;
    height: 10px;
  }

  .menu-show:before {
    height: 1px;
  }

  .menu-show:after {
    height: 1px;
  }

  .menu-show.active:before {
    top: 4px;
  }

  .menu-show.active::after {
    bottom: 5px;
  }

  .plus-show:before {
    content: "+";
    top: -12px;
    left: -16px;
  }

  .active > .plus-show:before {
    content: "-";
    top: -11px;
    left: -16px;
  }

  .banner {
    height: calc(100vh - 50px);
  }

  .banner h1 {
    font-size: 24px;
    line-height: 30px;
    padding-left: 0;
  }

  .banner h1 span {
    display: none;
  }

  .banner h1 br {
    display: none;
  }

  .section-right {
    height: auto;
    overflow: visible;
    margin-top: 27px;
  }

  .section-right h2 {
    margin-bottom: 22px;
    padding-left: 0;
  }

  .section-right h2 br {
    display: none;
  }

  .section-right .block-text {
    width: 100%;
  }

  .section-right .img-right {
    position: static;
  }

  .section-right .img-right img {
    border-right: none;
    border-left: none;
  }

  .section-left {
    margin-top: 39px;
  }

  .section-left .block-text {
    width: 100%;
    padding-left: 0;
  }

  .section-left h5 {
    font-size: 16px;
    text-align: center;
  }

  .section-left p {
    font-size: 14px;
  }

  .section-left .img-left {
    position: static;
    height: auto;
    display: none;
  }

  .section-left .img-left img {
    border-right: none;
  }

  .section-images .block-images {
    display: inline-block;
  }

  .section-images .block-img-left .block-text h3 {
    margin-top: 8px;
    margin-bottom: 22px;
  }

  .section-images .block-img-right .wrap-img {
    max-width: 100%;
  }

  .section-images .block-img-right .block-text {
    width: 100%;
  }

  .section-images .block-img-right .wrap-block {
    height: auto;
    max-height: 100%;
  }

  .section-images .block-img-right .wrap-block:first-child {
    margin-top: 72px;
  }

  .section-images .block-img-right .wrap-block:first-child h3 {
    margin-top: 8px;
  }

  .section-images .block-img-right a:last-child .wrap-block {
    margin-top: 22px;
  }

  .section-images .wrap-block {
    width: 100%;
    height: auto;
    display: inline-block !important;
  }

  .section-images .wrap-img {
    max-height: 100%;
    max-width: 100%;
  }

  .section-images .wrap-img img {
    width: 100%;
  }

  .section-images .block-text {
    width: 100%;
    display: inline-block;
    background-color: white;
  }

  .section-images .block-text p {
    font-size: 14px;
    padding: 0 10px;
    margin-top: 23px;
  }

  .partners {
    padding-bottom: 27px;
  }

  .partners .block-right {
    width: 100%;
  }

  .partners .block-right .dash {
    padding-left: 0;
    margin-top: 24px;
    margin-bottom: 18px;
  }

  .partners .block-right .dash > span {
    display: none;
  }

  .partners .block-right > span {
    padding-left: 0;
    font-size: 12px;
  }

  .partners .block-right .btn {
    margin: 27px auto 0 auto;
    display: block;
    width: 128px;
    height: 43px;
    line-height: 43px;
    font-size: 16px;
  }

  .partners .img-left {
    width: 87%;
    margin: 0 auto;
    padding-top: 13px;
    position: static;
  }

  .news {
    padding-top: 0;
  }

  .news .dash {
    padding-left: 0;
  }

  .news .dash span {
    display: none;
  }

  .newsletter {
    padding-top: 27px;
  }

  .newsletter .btn {
    margin-top: 0;
    width: 129px;
  }

  .newsletter .newsletter__blocks {
    padding-top: 0;
  }

  .newsletter .newsletter__block {
    width: 100%;
    -webkit-transform: none !important;
            transform: none !important;
    padding-right: 0;
    padding-bottom: 46px;
  }

  .newsletter .newsletter__block:last-child {
    padding-bottom: 29px;
  }

  .newsletter .newsletter__block span {
    font-size: 12px;
  }

  .newsletter .newsletter__block .wrap-img {
    height: auto;
    max-width: 100%;
    width: 100%;
  }

  .newsletter .newsletter__block .wrap-img .image {
    height: 270px;
    width: 100%;
  }

  .footer-top {
    padding-top: 63px;
  }

  .footer-top .block-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer-top .block-contact .social a .fa {
    margin-right: 0;
  }
  .footer-top .block-contact .logo {
    margin-bottom: 15px;
    padding-right: 0;
  }
  .footer-top .block-contact a {
    font-size: 14px;
    padding-bottom: 10px;
  }

  .footer-top .blocks-info .block-info__list {
    padding-bottom: 25px;
  }

  .footer-top .blocks-info .block-info__list a,
  .footer-top .blocks-info .block-info__list span {
    line-height: 30px;
  }

  .footer-bottom .block-text {
    width: 100%;
    padding-right: 0;
  }

  .footer-bottom__image {
    width: 100%;
    text-align: center;
    padding-top: 15px;
  }

  .footer-bottom__image img {
    max-width: 58%;
  }

  .footer-bottom .copyright p {
    padding: 0px 30px 24px 30px;
    text-align: center;
  }

  .footer-bottom .copyright p br {
    display: none;
  }

  .contact-form__wrap {
    top: 0;
  }

  .contact-form h3 .close {
    position: absolute;
    right: 5px;
    top: 5px;
  }

  .performance-content p {
    padding-left: 0;
  }

  .performance-section .performance-flex .performance__image {
    width: 160px;
  }

  .details-section .details-flex .details__image {
    padding-left: 0;
  }

  .inner-txt-page ul li {
    margin-left: 0;
  }

  .contact-section .half-cont-flex .half-cont__image {
    width: 100%;
  }

  .account-section form {
    padding: 45px 0 25px;
  }

  .account-section form .checkbox-row {
    margin-bottom: 30px;
  }

  .account-section form .submit {
    padding: 10px 0 0;
  }

  .account-confirm .container h3 {
    padding-left: 0;
  }

  .manage-acc-content p {
    padding-left: 0;
  }

  .manage-acc-content .txtimg__image {
    padding-left: 0;
  }

  .how-work__flex {
    padding-left: 0;
  }

  .how-work__image {
    padding-left: 0;
  }

  .feauter-ben-section .numeric-list {
    padding-left: 0;
  }

  .ftrusts-content p {
    padding-left: 0;
  }

  .ftrusts-content .txtimg__image {
    padding-left: 0;
  }

  .ftrusts-content .ftrusts-second-section .txtimg-flex {
    padding-left: 0;
  }

  #family-trusts-page .txtimg__image {
    padding-left: 0;
  }

  #family-trusts-page .ftrusts-second-section .txtimg-flex {
    padding: 0;
  }

  .mbuying-content .partners-cols {
    padding-left: 0;
  }

  .model-portf-content .model-port-wrapp {
    padding-left: 0;
  }

  .model-portf-content .images-box {
    display: block;
    max-width: 300px;
  }

  .model-portf-content .images-box img {
    width: 100%;
  }

  #landing-page .numeric-list {
    padding-left: 0;
  }

  #landing-page .images-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 450px;
    margin: 10px auto 20px;
  }

  #landing-page .images-box img {
    width: 100%;
  }
}

@media screen and (max-width: 460px) {
  .contact-section .contact__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .contact-section .contact__flex .contact__col-left {
    width: 100%;
    padding-right: 0;
  }

  .contact-section .contact__flex .contact__col-right {
    width: 100%;
  }
}

@media screen and (max-width: 992px) and (min-width: 541px) {
  .footer-top .block-contact a .fa {
    margin-right: 7px;
    width: auto;
  }
}

.people-page .hero-image_section {
  background: url('/images/people/hero-image.jpg') 50% 50% no-repeat;
}
.member {
  padding-top: 50px;
}
.member__list .member__item {
  float: left;
  margin-right: 1%;
  margin-left: 1%;
  width: 31.333333%;
  box-shadow: 0 0 10px #ccc;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px){
  .member__list .member__item {
    width: 47%;
  }
}
@media screen and (max-width: 480px){
  .member__list .member__item {
    width: 100%;
  }
}
.member__list .member__item .wrapper {
  padding: 0 15px 30px 15px;
  min-height: 550px;
}
.member__item .name {
  font-weight: bold;
  display: block;
  font-size: 18px;
  margin-top: 10px;
}
.member__item .location {
  display: block;
  font-size: 14px;
}
.member__item .position {
  font-size: 18px;
  font-weight: normal;
  display: block;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.member__item .description {
  font-size: 16px;
  line-height: 140%;
}