*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

:root {
  --color-primary: #106450;
  --color-primary-light:  #13765e;
  --color-text: #323232;
  --color-link: #5884c0;
  --color-link-dark: #19459d;
  --color-light-grey: #ecf3f1;
  --color-dark-grey: #e3ebe9;
  --headerHeight: 0;
  --headerHeightSticky: 88px;
  --blockPadding: 160px;
  --blockPadding--large: 300px;
  --blockPadding--medium: 90px;
  --blockPadding--small: 38px;
}

@media screen and (max-width: 1000px) {

  :root {
    --blockPadding: 100px;
    --blockPadding--large: 240px;
    --blockPadding--medium: 80px;
    --blockPadding--small: 38px;
  }

}


@media screen and (max-width: 960px) {
  :root {
    --headerHeight: 122px;
  }
}

@media screen and (max-width: 700px) {
  :root {
    --headerHeight: 55px;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --headerHeight: 47px;
  }
}


@media screen and (max-width: 600px) {
  :root {
    --blockPadding: 50px;
    --blockPadding--large: 80px;
    --blockPadding--medium: 50px;
    --blockPadding--small: 20px;
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
	font-size: 16px;
	margin: var(--headerHeight) 0 0;
	color: var(--color-text);
  position: relative;
  line-height: 1.3;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}


.cf:after { 
	content:"";
	display:table;
	clear:both;
}

.u-block-padding {
  padding: var(--blockPadding) 0;
}

.u-block-padding--medium {
  padding: var(--blockPadding--medium) 0;
}

.u-block-padding--large {
  padding: var(--blockPadding--large) 0;
}

.u-bg-lightGrey {
  background: var(--color-light-grey);
}

.u-wc{
	width:100%;
	max-width: 1150px;
	min-width: 320px;
  padding: 0 60px;
	margin:0 auto;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

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

b, strong {
  font-weight: 500;
}

p, h1, h2, h3, h4, h5, h6, ul{
	margin:0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 200;
}

h1, h2 {
  font-size: 50px;
  margin-bottom: 40px;
  line-height: 1;
}

@media screen and (max-width: 1100px) {
  h1, h2 {
    font-size: 40px;
  }
}

h1:last-child {
  margin-bottom: 0;
}

h3 {
  font-size: 25px;
  font-weight: 300;
  margin: 50px 0;
  letter-spacing: .05em;
}

h3:first-child {
  margin-top: 0;
}


h4 {
  font-size: 27.5px;
  font-weight: 300;
  margin-bottom: 28px;
  margin-top: 30px;
  letter-spacing: .05em;
}

h4 span {
  display: block;
  font-size: 15px;
  margin-top: 8px;
}

h4:first-child {
  margin-top: 0;
}

h5 {
  font-size: 21px;
  font-weight: 500;
  margin: 46px 0 24px;
  letter-spacing: .05em;
}

h5:first-child {
  margin-top: 0;
}


.c-miniHeading {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 20px;
  font-weight: 300;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.c-miniHeading:before {
  content:'';
  width: 32px;
  height: 1px;
  background: black;
  flex-shrink: 0;
  margin-right: 16px;
}

.c-miniHeading--lg {
  font-size: 25px;
}

p{
  line-height: 1.9;
  margin-bottom: 30px;
  letter-spacing: .06em;
}

.p--large {
  font-size: 18px;
  line-height: 1.5;
}

.p--small {
  font-size: 15px;
}

ul {
  margin-bottom: 10px;
}

ul:last-child {
  margin-bottom: 0;
}

li {
  line-height: 1.8;
  margin-bottom: 5px;
}

li:last-child {
  margin-bottom: 0;
}

p:last-child {
  margin-bottom: 0;
}

a, a:focus{
   outline: 0;
}

a{
  color: var(--color-link);
  text-decoration: none;
	transition:.3s color, .3s background;
	-webkit-transition:.3s color, .3s background;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; /* For some Androids */
}

a:hover {
  color: var(--color-link-dark);
}

img, svg{
	max-width:100%;
	height:auto;
}

input{
  outline:none;
}

.u-cols {
  display: flex;
}

.u-col:not(:first-child) {
  margin-left: 6%;
}


@media screen and (max-width: 600px) {

  .u-cols { 
    display: block;
  }

  .u-col {
    width: 100% !important;
  }
  .u-col:not(:first-child) {
    margin-left: 0;
    margin-top: 20px;
  }
}

.c-btn {
  background: black;
  border: none;
  color: white;
  display: inline-block;
  padding: 18px 30px;
  font-weight: 400;
  margin: 20px 0;
  font-size: 16px;
  letter-spacing: .12em;
  transition: .3s background;
  border-radius: 4px;
  text-align: center;
}

.c-btn:first-child {
  margin-top: 0;
}

.c-btn:last-child {
  margin-bottom: 0;
}

.c-btn:hover {
  background: var(--color-primary);
  color: white;
}

.c-btn--sm {
  font-size: 14px;
  letter-spacing: .05em;
}

.c-btn--full {
  width: 100%;
}

.c-btn--light {
  background: white;
  color: black;
}

.c-btn--light:hover {
  background: var(--color-primary);
  color: white;
}

.c-btn--outline {
  border: 1px solid rgba(255,255,255,.8);
}

.c-btn--full {
  width: 100%;
}

.c-btn.c-btn--reverse {
  border: 1px solid var(--color-primaryLight);
  background: var(--color-primaryLight);
}

.c-btn.c-btn--reverse:hover {
  background: var(--color-primary);
}


@media screen and (max-width: 600px) {
  .c-btn {
    margin: 10px 0;
  }

  .c-btn {
    width: 100%;
    font-size: 12px;
    padding: 18px 20px;
  }
}

.c-btn--submit {
  margin: 0;
  font-size: 13px;
}
/* form styles*/

hr {
  display: block;
  height: 1px;
  border: none;
  margin: 30px 0;
  background: #ececec;
}

form {
  margin-top: 50px;
}

form label {
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 400;
  margin-top: 20px;
}

form label.label--small {
  font-size: 12px;
  text-transform: uppercase;
  color: #656565;
  margin: 0;
}

form label:first-child {
  margin-top: 0;
}

form input[type="text"], form input[type="email"], form select, form textarea  {
  font-family: inherit;
  background: white;
  display: block;
  width: 100%;
  height: 55px;
  line-height: 55px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 300;
  color: black;
  margin-bottom: 12px;
  outline: none;
  border: none;
  border-radius: 4px;
  letter-spacing: .12em;
  transition: .3s background;
}

/* form input[type="text"]:focus, form select:focus, form textarea:focus  {
  background: var(--color-primary100);
} */

form input[type="text"].error, form input[type="email"].error, form select.error, form textarea.error {
  border: 3px solid red;
}

form input[type="text"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #939598;
}
form input[type="text"]::-moz-placeholder { /* Firefox 19+ */
 color: #939598;
 opacity: 1;
}
form input[type="text"]:-ms-input-placeholder { /* IE 10+ */
  color: #939598;
}
form input[type="text"]:-moz-placeholder { /* Firefox 18- */
  color: #939598;
}

form textarea {
  height: 190px;
  line-height: 1.4;
  padding: 26px 30px;
  margin-bottom: 0;
}

form select:invalid {
  color: #0092a9;
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  background-repeat: no-repeat;
  background-image: url('imgs/triangle.svg');
  background-position: calc(100% - 9px) 50%;
  background-size: 10px 6px;
  padding: 0 30px 0 10px;
}

form select option {
  color: #017b8e;
}

@-moz-document url-prefix() {

    form select:-moz-focusring {
      color: transparent;
      text-shadow: 0 0 0 #017b8e; 
    }

    form select {
      padding: 0 30px 0 5px;
    }

}

form select::-ms-expand {
  display: none; 
}


input[type="submit"] {
  font-family: inherit;
  -webkit-appearance: none;
  border: none;
  outline: none;
}


@media screen and (max-width: 600px) {
  form input[type="text"], form input[type="date"], form select, form textarea  {
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
    margin-bottom: 6px;
    font-size: 13px
  }

  form textarea {
    height: 150px;
    line-height: 1.4;
    padding: 16px 20px;
  }
}

.genisys {
  position: absolute !important;
  z-index: -1;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal;
  color: white;
  opacity: 0;
}

.page-wrapper {
  overflow: hidden;
}

/*header styles*/

.c-stickyHeader {
  background: black;
  position: fixed;
  z-index: 9999;
  top: var(--headerHeight);
  right: 0;
  bottom: 0;
  left: 0;
  height: var(--headerHeightSticky);
  transition: .3s opacity, 0s visibility .3s;
}


@media screen and (min-width: 961px) {

  .home .c-stickyHeader {
    opacity: 0;
    visibility: hidden;
  }

  .home.is-scrolled .c-stickyHeader {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  body:not(.home) .c-stickyHeader {
    position: absolute;
    top: 188px;
  }

  .is-scrolled:not(.home) .c-stickyHeader {
    position: fixed;
    top: 0;
  }


}

@media screen and (max-width: 1200px) and (min-width: 961px) {

  body:not(.home) .c-stickyHeader {
    top: 168px;
  }
  
}

.c-stickyHeader .u-wc {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media screen and (max-width: 960px) {

  .c-mainHeader .c-mainMenu{
    display: none !important;
  }

  .c-stickyHeader {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--headerHeight);
    left: 0;
    right: 0;
    height: calc(100vh - var(--headerHeight));
    background: black;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transition: .3s opacity, 0s visibility .3s, .3s transform;
    transform: translateY(-10px);
  }

  .c-stickyHeader-active {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
    transform: none;
  }

  .c-stickyHeader .u-wc {
    display: flex;
    align-items: initial;
    justify-content: center;
    height: auto;
    margin: auto;
  }

}

.c-mainHeader {
  background: white;
  padding: 60px 0;
}

body:not(.home) .c-mainHeader {
  margin-bottom: var(--headerHeightSticky);
}

.c-mainHeader .wc {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1650px;
}

.c-mainHeader__investia {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-light-grey);
  padding: 30px 50px;
}

.c-mainHeader__logo {
  display: block;
  transition: .3s max-width;
}

@media screen and (min-width: 961px) {

  .home .c-mainHeader__logo {
    margin-bottom: 58px;
  }

}

.c-mainHeader__logo img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {

  .c-mainHeader__logo img {
    max-width: 270px;
  }
  
  .c-mainHeader__investia {
    padding: 20px 40px;
  }

  .c-mainHeader__investia img {
    max-width: 150px;
  }
}

@media screen and (max-width: 960px) {

  .c-mainHeader {
    padding: 26px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 2px rgba(0,0,0,.1);
  }

  .c-mainHeader .u-wc {
    display: flex;
    align-items: center;
    padding: 0 30px;
  }

  .c-mainHeader__investia {
    position: static;
    margin-left: auto;
    margin-right: 30px;
  }

  .c-mainHeader__logo {
    margin: 0;
  }


}

@media screen and (max-width: 700px) {

  .c-mainHeader {
    padding: 0;
  }

  .c-mainHeader__logo img {
    max-width: 160px;
  }

  .c-mainHeader .u-wc {
    padding: 0 20px;
  }

  .c-mainHeader__investia {
    margin-right: 20px;
    padding: 13px 17px;
  }

}

@media screen and (max-width: 480px) {



  .c-mainHeader__logo img {
    max-width: 110px;
  }

  .c-mainHeader__investia {
    margin-right: 10px;
  }

  .c-mainHeader__investia img {
    max-width: 98px;
  }  

  .nav-icon {
    margin-right: -10px;
  }

}


.c-mainMenu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-mainMenu ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  margin: 0;
}

.c-mainMenu li {
  margin: 0;
  position: relative;
}

.c-mainMenu li:nth-of-type(n + 2) {
  margin: 0 0 0 24px;
}

.c-mainMenu a {
  font-size: 13.5px;
  color: #353434;
  font-weight: 400;
  display: block;
  position: relative;
  text-transform: uppercase;
  letter-spacing: .1em;
}


.c-mainMenu a:hover, .c-mainMenu .current-menu-item > a {
  color: black;
}

.c-mainMenu .current-menu-item > a {
  font-weight: 600;
}

.c-mainMenu--dark a:hover, .c-mainMenu--dark .current-menu-item > a {
  color: white;
}

.c-mainMenu--dark a {
  color: white;
}

.nav-icon {
  display: none;
  float: right;
  width: 28px;
  height: 16px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 10;
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--color-primary);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .3s ease-in-out; 
}
    
.nav-icon span:nth-child(1) {
  top: 0px;
  transform-origin: left center; 
}

.nav-icon span:nth-child(2) {
  top: 8px;
  transform-origin: left center;
}

.nav-icon span:nth-child(3) {
  top: 16px;
  transform-origin: left center; 
}

.nav-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -2px;
  left: 5px; 
}

.nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 18px;
  left: 5px;
}

.c-mainHeader__reviewBtn {
  margin-left: 20px;
  transition: .3s opacity;
}

.c-mainHeader__reviewBtn:hover {
  opacity: .8;
}

@media screen and (max-width: 600px) {
  .c-mainHeader__reviewBtn {
    max-width: 140px;
  }
}


@media screen and (min-width: 800px) {

  .c-hero{
    display: flex;
  }

  .c-hero__item {
    width: 50%;
  }

}

.c-hero__item {
  display: block;
  position: relative;
}

.c-hero__item:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,.2);
  opacity: 0;
  transition: .3s opacity;
}

.c-hero__item:hover:after {
  opacity: 1;
}

.c-hero__item img {
  display: block;
  width: 100%;
}

.c-hero__item h2 {
  color: white;
  text-align:center;
  position: absolute;
  transform: translateY(50%);
  margin: 0;
  bottom: 50%;
  left: 5%;
  right: 5%;
  z-index: 2;
}

.c-mailBar {
  background: var(--color-light-grey);
  padding: 66px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  border-top: 1px solid var(--color-dark-grey);
}

.c-mailBar .u-wc {
  display: flex;
  align-items: center;
}

.c-mailBar__form {
  display: flex;
  align-items: center;
  margin: 0 32px 0 0;
  flex-grow: 1;
}

.c-mailBar__input[type="email"] {
  margin: 0 16px 0 0;
  text-align: center;
  font-size: 13px;
  height: 59px;
  line-height: 59px;
}

.c-mailBar input[type="submit"] {
  width: 210px;
  text-align: center;
  flex-shrink: 0;
  padding-top: 21px;
  padding-bottom: 21px;
  --webkit-apperance: none;
}

.c-mailBar p {
  font-size: 13px;
  line-height: 1.8;
  margin: 0 28px 0 0;
  text-align: center;
  letter-spacing: .1em;
}

.c-mainBar p b {
  font-size: 14px;
}

.c-mailBar__close {
  color: var(--color-text);
  font-size: 12.75px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  letter-spacing: .1em;
}

.c-mailBar__close:after {
  content: '';
  background: url('imgs/close-icon.png') center center / 14px 14px;
  width: 14px;
  height: 14px;
  display: block;
  margin-left: 8px;
}

@media screen and (max-width: 966px) {

  .c-mailBar {
    padding: var(--blockPadding--small) 0;
  }

  .c-mailBar__form {
    display: block;
  }

  .c-mailBar__close {
    font-size: 11px;
  }

  .c-mailBar input[type="submit"] { 
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .c-mailBar__input[type="email"] {
    height: 48px;
    line-height: 48px;
  }

}

@media screen and (max-width: 600px) {

  .c-mailBar .u-wc {
    display:  block;
  }

  .c-mailBar p {
    margin: 0 0 20px 0;
  }

  .c-mailBar__form {
    margin-right: 0;
  }

  .c-mailBar__close {
    position: absolute;
    bottom: 100%;
    right: 20px;
    padding: 10px;
    background: var(--color-light-grey);
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
  }

  .c-mailBar__close:after {
    background-size: 10px 10px;
    width: 10px;
    height: 10px;
  }

}

.c-teamSlider {
  margin-top: 40px;
}

@media screen and (max-width: 600px) {

  .c-teamSlider {
    margin-top: 20px;
  }

}

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

.c-team .u-wc {
  max-width: 1100px;
}

.c-testimonial .u-wc {
  max-width: 630px;
}

/* .c-testimonial p span {
  position: relative;
  top: -4px;
  font-weight: 600;
} */


.c-testimonialSlider .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
}

.c-testimonialSlider .owl-dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7b8a90 !important;
  transition: .3s background;
}

.c-testimonialSlider .owl-dot:hover, .c-testimonialSlider .owl-dot.active {
  background: #19459d !important;
}


.c-testimonialSlider .owl-dot:nth-of-type(n + 2) {
  margin-left: 6px;
}




.c-faqBlock__bottom {
  max-width: 630px;
  margin: 0 auto;
}

.c-faqItems { 
  margin: 80px 0;
}

.c-faqItems:last-child {
  margin-bottom: 0;
}

.c-faqItem {
  background: white;
  border-radius: 6px;
}

.c-faqItem:nth-of-type(n + 2) {
  margin-top: 12px;
}

.c-faqItem--hidden {
  display: none;
}


.c-faqItem__trigger {
  width: 42px;
  height: 42px;
  background: black;
  border-radius: 4px;
  display: block;
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -21px;
}

.c-faqItem__trigger:after {
  content: '';
  width: 1px;
  position: absolute;
  top: 17px;
  left: 20px;
  height: 9px;
  background: white;
}

.c-faqItem--active .c-faqItem__trigger:after {
  display: none;
}

.c-faqItem__trigger:before {
  content: '';
  height: 1px;
  position: absolute;
  top: 21px;
  left: 16px;
  width: 9px;
  background: white;
}

.c-faqItem__question {
  padding: 19px 70px 19px 36px;
  cursor: pointer;
  position: relative;
  font-size: 18px;
}

.c-faqItem__question p {
  margin: 0;
}

.c-faqItem__question:before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 20px;
}

.c-faqItem__answer {
  display: none;
  padding: 10px 50px 38px;
}

.c-faqItem__answer p {
  margin-bottom: 12px;
}

@media screen and (max-width: 600px) {
  .c-faqItems {
    margin: 40px 0;
  }

  .c-faqItem__question {
    font-size: 16px;
    padding: 19px 70px 19px 30px;
  }

  .c-faqItem__answer {
    display: none;
    padding: 10px 40px 40px;
  }

}


.c-quoteBlock {
  background: url('imgs/quote-bg.jpg') center center / cover;
  position: relative;
}

.c-quoteBlock .u-wc {
  max-width: 1060px;
}

.c-quoteBlock blockquote {
  text-align: center;
  margin: 0;
}

.c-quoteBlock blockquote p {
  font-size: 56px;
  color: white;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 600px) {
  .c-quoteBlock blockquote p {
    font-size: 30px;
  }
}

.c-contact .u-wc {
  max-width: 1000px;
}

.c-miniMenu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.c-miniMenu a {
  font-size: 13.5px;
  letter-spacing: .05em;
}

.c-miniMenu__item--active {
  font-weight: 600;
}

.c-miniMenu .c-miniMenu__item--nolink {
  color: var(--color-text);
}

.c-miniMenu a:not(:first-child):before {
  content: '/';
  padding: 0 26px;
  pointer-events: none;
  color: var(--color-text);
}

.c-miniMenu--light a {
  color: #bababa;
  font-weight: 400;
}

.c-miniMenu--light a:hover {
  color: white;
}

.c-miniMenu--light a:not(:first-child):before {
  color: #bababa;
}

@media screen and (max-width: 600px) {

  .c-miniMenu {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    text-align: center;
  }

  .c-miniMenu a {
    width: 100%;
    position: relative;
  }    

  .c-miniMenu a:not(:first-child) {
    margin-top: 20px;
  }

  .c-miniMenu a:not(:first-child):before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -15px;
    width: 30px;
    height: 1px;
    background: var(--color-dark-grey);
    padding: 0;
  }

  .c-miniMenu--light a:not(:first-child):before {
    background: #656565;
  }
}

.c-videoPopupBtn {
  background: var(--color-primary) url('imgs/play-icon.png') no-repeat center center / 13px 17px;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: block;
  margin: 40px auto;
  transition: .3s background;
}

.c-videoPopupBtn:hover {
  background-color: var(--color-primary-light);
}

.c-videoPopupBtn:first-child {
  margin-top: 0;
} 

@media screen and (min-width: 1001px) {

  .c-splitBlock {
    display: flex;
  }

}

.c-testimonialBlock {
  background: var(--color-light-grey);
  width: 50%;
  padding: 180px 0;
}

.c-clientLogin {
  background: var(--color-dark-grey);
  width: 50%;
  padding: 180px 0;
}

.c-clientLogin .u-wc {
  max-width: 630px;
}

.c-clientLogin img {
  display: block;
  margin: 50px auto 10px;
}

@media screen and (max-width: 1000px) {

  .c-testimonialBlock, .c-clientLogin {
    width: 100%;
    padding: var(--blockPadding) 0;
  }

}

@media screen and (max-width: 600px) {
  .c-clientLogin img {
    margin-top: 30px;
  }
}

.c-appBtns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.c-appBtns__apple {
  display: block;
  width: 142px;
  height: 43px;
  background: url('imgs/app-store-btn.png') center center / 142px 43px;
  border-radius: 6px;
  transition: .3s opacity;
}

.c-appBtns__apple:hover {
  opacity: .8;
}

.c-appBtns__google {
  display: block;
  width: 142px;
  height: 43px;
  border-radius: 6px;
  background: url('imgs/play-store-btn.png') center center / 142px 43px;
  margin-left: 8px;
  transition: .3s opacity;
}

.c-appBtns__google:hover {
  opacity: .8;
}

@media screen and (max-width: 600px) {
 
  .c-appBtns {
    margin-top: 0;
  }

}

.c-chatBtn {
  position: fixed;
  z-index: 99;
  right: 60px;
  bottom: 60px;
  transition: .3s opacity;
}

.c-chatBtn:hover {
  opacity: .8;
}

.c-chatBtn img {
  display: block;
}

@media screen and (max-width: 600px) {
  .c-chatBtn {
    right: 20px;
    bottom: 20px;
    max-width: 45px;

  }
}

.c-footer__top {
  background: var(--color-light-grey);
  text-align: center;
  font-size: 13.5px;
}

.c-footer__bottom {
  background: black;
  text-align: center;
  color: white;
  font-size: 12px;
  font-weight: 400;
}

.c-footer__bottom .u-wc {
  max-width: 780px;
}


.c-backToTop {
  background:#e3ebe9 url('imgs/up-arrow.png') no-repeat center center / 11px 7px;
  border-radius: 50%;
  display: block;
  margin: 50px auto 0;
  width: 35px;
  height: 35px;
  transition: .3s background;
}

.c-backToTop:hover {
  background-color: white;
}

@media screen and (min-width: 961px) {
  .c-mainMenu__phone {
    display: none;
  }
}


@media screen and (max-width: 960px) {

  .c-mainMenu ul {
    margin: auto auto 30px auto;
    display: block;
    text-align: center;
  }

  .c-mainMenu li:nth-of-type(n+2) {
    display: block;
    width: 100%;
    margin: 12px 0 0 0;
  }

  .c-mainMenu a {
    display: inline-block;
    color: white;
    font-size: 15px;
  }

  .c-mainMenu li a:hover {
    color: white;
  }

  .c-mainMenu li:last-child {
    margin-bottom: 0;
  }

  .c-mainMenu .c-mainMenu__item--tel a::before {
    display: none;
  }

  .nav-icon {
    display: block;
  }

}


@media screen and (max-width: 600px) {

  body {
    font-size: 14px;
  }

  .u-wc {
    padding: 0 20px;
  }

  .nav-icon {
    width: 22px;
  }

  .nav-icon span:nth-child(2) {
    top: 6px;
  }

  .nav-icon span:nth-child(3) {
    top: 12px;
  }

  .nav-icon.open span:nth-child(1) {
    top: -2px;
    left: 4px;
  }

  .nav-icon.open span:nth-child(3) {
    top: 14px;
    left: 4px;
  }

  h1, h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  h3 {
    font-size: 18px;
    margin: 20px 0;
  }

  h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  h4 span {
    font-size: 13px;
  }  


  h5 {
    font-size: 16px;
    margin: 20px 0 12px;
  }

  p{
    margin-bottom: 12px;
  }

}

@media screen and (max-width: 480px) {

  h1, h2 {
    font-size: 27px;
  }
}


.c-contactPopup {
  position: fixed;
  z-index: 98;
  right: 30px;
  bottom: 30px;
}

.c-contactForm {
  background: #e3ebe9;
  position: absolute;
  bottom: calc(100% + 20px);
  right: 0;
  padding: 20px 20px 26px;
  border-radius: 6px;
  width: 270px;
  border: 1px solid #a3a4a4;
  visibility: hidden;
  opacity: 0;
  transition: .3s opacity, 0s visibility .3s;
}

.c-contactForm--active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.c-contactForm input[type="submit"] {
  margin: 0;
}

.c-contactForm__privacy {
  font-size: 13px;
  text-align: center;
  line-height: 1.3;
  margin: 22px 0 0;
}

.status-msg {
  display: none;
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  margin: 24px 0 22px;
}


.c-contactPopup__btn {
  width: 67px;
  height: 67px;
  border-radius: 4px;
  background: var(--color-primary) url('imgs/chat-icon.png') no-repeat center center / 36px 29px;
  display: block;
}

.c-contactPopup__btn:hover {
  background-color: var(--color-primary-light);
}

@media screen and (max-width: 600px) {

  .c-contactPopup {
    right: 20px;
    bottom: 20px;
  }

  .c-contactPopup__btn {
    width: 40px;
    height: 40px;
    background-size: 20px auto;
  }
}

.c-pageBanner {
  background-size: cover;
  background-position: center right;
  color: white;
  text-align: center;
}

.c-pageBanner h1 {
  font-size: 57px;
  margin-bottom: 12px;
}

.c-pageBanner p {
  font-size: 23px;
  line-height: 1.4;
}

.c-pageBanner--simple {
  background: var(--color-light-grey);
  color: black;
}

@media screen and (max-width: 600px) {

  .c-pageBanner h1 {
    font-size: 34px;
    margin-bottom: 16px;
  }
  
  .c-pageBanner p {
    font-size: 17px;
  }

}

.c-numberedList {
  counter-reset: list-num;
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.c-numberedList li {
  counter-increment: list-num;
  font-size: 18px;
  position: relative;
  padding-left: 50px;
  letter-spacing: .06em;
  line-height: 1.7
}

.c-numberedList li:nth-of-type(n + 2) { 
  margin-top: 24px;
}

.c-numberedList li:before {
  content: counter(list-num);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  font-size: 15px;
  position: absolute;
  left: 0;
  top: 2px;
}

@media screen and (max-width: 600px) {

  .c-numberedList li {
    font-size: 15px;
    padding-left: 46px;
  }

  .c-numberedList li:nth-of-type(n + 2) { 
    margin-top: 16px;
  }

}