@import url(//fonts.googleapis.com/css?family=Open+Sans:400,300,400italic,600,700,800&subset=latin,latin-ext);
@import url(//fonts.googleapis.com/css?family=Fira+Sans:400,300,400italic,500,700&subset=latin,latin-ext);
@import url(//fonts.googleapis.com/css?family=Lato:400,300,700,400italic,900&subset=latin,latin-ext);
@import url(//fonts.googleapis.com/css?family=Roboto:400,300,400italic,500,700,900&subset=latin,latin-ext);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body,
input,
textarea,
button,
select {
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
}

input,
textarea,
button,
select {
  outline: none;
}

body {
  background: #fff;
  color: #001602;
}

a {
  text-decoration: none;
  color: #0074C8;
}

a:active {
  /*color: #0074C8;*/
}

button {
  cursor: pointer;
}

.clearfix:after {
  clear: both;
  display: table;
  content: '';
}

.container {
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-header {
  margin: 45px 0;
}
.page-header h2 {
  font-size: 44px;
  color: #001602;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 620px) {
  .page-header h2 {
    font-size: 32px;
  }
}
.page-header h2 em {
  display: block;
  color: #0074C8;
}

.page-content-aside {
  margin-bottom: 80px;
}
.page-content-aside:after {
  clear: both;
  display: table;
  content: '';
}
.page-content-aside .page-content {
  width: calc(100% - 450px);
  float: left;
}
.page-content-aside .page-aside {
  width: 450px;
  padding-left: 40px;
  float: left;
}
@media (max-width: 1020px) {
  .page-content-aside .page-content {
    width: 100%;
    float: none;
  }
  .page-content-aside .page-aside {
    display: none;
  }
}

.background-section {
  background: #F6F6F6;
}

.textbox, .select-styled select {
  background-color: #f5f6f5;
  border: 1px solid rgba(0, 22, 2, 0.08);
  border-radius: 8px;
  height: 48px;
  width: 100%;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all .25s ease-in-out;
}
.textbox:focus, .select-styled select:focus {
  border-color: #0074C8;
}

textarea.textbox {
  padding: 15px 20px;
  height: 100px;
  resize: none;
}

.checkbox-styled {
  position: relative;
  cursor: pointer;
  width: 100%;
}
.checkbox-styled input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox-styled i {
  border: 2px solid rgba(0, 22, 2, 0.16);
  border-radius: 6px;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  transition: all .25s ease-in-out;
}
.checkbox-styled i:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  content: '';
  background: url(../images/check.svg) center no-repeat;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease-in-out;
}
.checkbox-styled input:checked ~ i {
  border-color: #0074C8;
}
.checkbox-styled input:checked ~ i:before {
  opacity: 1;
  visibility: visible;
}
.checkbox-styled span {
  vertical-align: middle;
  display: inline-block;
  width: calc(100% - 30px);
  padding: 0 0 0 15px;
  font-size: 14px;
  line-height: 1.4;
  color: #4D5C4E;
}

.select-styled {
  position: relative;
}
.select-styled:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 20px;
  background: url(../images/select-arrow.svg);
  width: 10px;
  height: 14px;
  margin-top: -7px;
}
.select-styled select {
  -webkit-appearance: none;
          appearance: none;
}

.header-counter {
  margin: 50px 0;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
}
.header-counter span {
  display: inline-block;
  background: #F6F6F6;
  border-radius: 24px;
  padding: 23px 30px;
  color: #0074C8;
  margin-right: 10px;
  font-weight: 600;
}

.main-header-sizebox {
  height: 145px;
}

.main-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}
.main-header .header-container {
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}
.main-header .header-container .container {
  height: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.main-header .header-container h1 {
  /*background: url(images/logo.svg?test1) no-repeat center left/contain;*/
  color: black;
  width: 138px;
  height: 48px;
  font-family: Open Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 35.8054px;
  line-height: 49px;
  /*font: 0/0 a;*/
}
.main-header .header-container .basic-nav ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
.main-header .header-container .basic-nav li {
  display: inline-block;
  margin-left: 35px;
}
.main-header .header-container .basic-nav a:not(.btn) {
  color: #001602;
  font-weight: 500;
  padding: 10px;
  transition: all .25s ease-in-out;
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 19px;
}
.main-header .header-container .basic-nav a:not(.btn):hover {
  color: #0074C8;
}

@media (max-width:400px) {
  .main-header .header-container h1 {
    max-width: 100px;
    font-size: 26px;
  }

  .main-header .btn-write {
    font-size: 14px;
    line-height: 39px !important;
    height: 39px !important;
    padding: 0 16px;
    box-shadow: unset;
  }

  .main-header .header-container .basic-nav li {
    margin-left: unset;
  }
}


.main-footer {
  background: #fff;
}
.main-footer .footer-top {
  padding: 35px 0;
}

.main-footer .main-footer-border {
  border-top: 1px solid #E6E8E6;
  padding-top: 16px;
  padding-botton: 16px;
}
.main-footer .main-footer-border p {
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
}

.main-footer .footer-bottom {
  padding: 20px 0;
}
.main-footer .footer-bottom .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.main-footer .footer-bottom p {
  font-family: Open Sans;
  font-size: 14px;
  color: #4D5C4E;
}
.main-footer .columns {
  display: flex; justify-content: space-between;
  min-width: 522px;
  margin-bottom: 36px;
}
.main-footer .columns h3 {
  font-family: Open Sans;
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;

}
.main-footer .columns img {
  padding-left: 40px;
}

.main-footer h3 {
  margin-top: 30px;
}

.main-footer .columns a {
  font-family: Open Sans;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: black;
  padding-top: 12px;
  padding-left: 40px;
}
.main-footer .columns a strong {
  font-weight: bold;
  cursor: pointer
}

@media (max-width:750px) {
  .main-footer .columns {
    flex-direction: column;
    margin-bottom: 24px;
    min-width: 100% !important;
  }

  .main-footer .footer-text {
    font-size: 18px !important;
    line-height: 150%;
    padding-bottom: 24px;
    border-bottom: 1px solid #F2F2F2
  }

  .main-footer .columns img { display: none }
  .main-footer .columns a {
    padding-left: 0px ;
    padding-bottom: 12px;
    padding-top: 25px;
    font-size: 16px;
    line-height: 150%;
  }

  .main-footer .columns a + a{
    padding-top: 8px;
    padding-bottom: 0px;
  }

  .main-footer h3 img { max-width: 102px }
}

.footer-text {
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 21px !important;
  line-height: 150%;
  color: #555555;
  margin-top: 10px;
}

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-grab {
  cursor: move;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel.owl-loaded, .owl-carousel.owl-loading {
  display: block;
}

.owl-carousel.owl-hidden, .owl-carousel.owl-loading {
  opacity: 0;
}

.owl-carousel .owl-next,
.owl-carousel .owl-prev {
  position: absolute;
  font: 0/0 a;
  color: transparent;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #E6E8E6;
  transition: all .25s ease-in-out;
  bottom: 0;
  margin-bottom: -40px;
  margin-left: 15px;
}
.owl-carousel .owl-next:before,
.owl-carousel .owl-prev:before {
  position: absolute;
  content: '';
  background: url(../images/carousel-right-arrow.svg) no-repeat center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all .25s ease-in-out;
}

.owl-carousel .owl-next {
  right: -35px;
}
.owl-carousel .owl-next:hover {
  opacity: 0.8;
}
.owl-carousel .owl-next.disabled:before {
  opacity: 0.3;
}
@media (max-width: 965px) {
  .owl-carousel .owl-next {
    right: -5px;
  }
}

.owl-carousel .owl-prev {
  left: -35px;
}
@media (max-width: 965px) {
  .owl-carousel .owl-prev {
    left: -5px;
  }
}
.owl-carousel .owl-prev:before {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.owl-carousel .owl-prev:hover {
  opacity: 0.8;
}
.owl-carousel .owl-prev.disabled:before {
  opacity: 0.3;
}

.owl-carousel .owl-dots {
  position: absolute;
  bottom: -60px;
  left: 50%;
  -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
}

.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 3px;
  font: 0/0 a;
  color: transparent;
  background: #f2f2f2;
  transition: all .25s ease-in-out;
  cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot:hover,
.owl-carousel .owl-dots .owl-dot.active {
  background: #34870B;
}

.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.opinions-section .owl-nav .owl-prev,
.opinions-section .owl-nav .owl-next {
  bottom: 0;
  right: auto;
  width: 40px;
  height: 40px;
}
.opinions-section .owl-nav .owl-next {
  left: 50px;
}
.opinions-section .owl-nav .owl-prev {
  left: 0px;
}


.btn {
  font-family: "Open Sans";
  font-weight: 600;
  display: inline-block;
  height: 55px;
  line-height: 55px;
  padding: 0 30px;
  position: relative;
  overflow: hidden;
  background: #0074C8;
  color: #fff;
  transition: all .25s ease-in-out;
  cursor: pointer;
  border: 0;
  font-size: 16px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}
.btn-green {
  font-weight: 600;
  display: inline-block;
  height: 55px;
  line-height: 55px;
  padding: 0 30px;
  position: relative;
  overflow: hidden;
  background: #00AF70;
  color: #fff;
  transition: all .25s ease-in-out;
  cursor: pointer;
  border: 0;
  font-size: 16px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}

.btn.btn-outline {
  border: 2px solid #0074C8;
  background: white;
  color: #0074C8;
}
.btn.btn-big {
  height: 62px;
  line-height: 62px;

}
.btn.btn-min {
  height: 48px;
  line-height: 48px;

}
.btn.btn-secondary {
  color: #001602;
  background: #FFBD00;
}
.btn.btn-white {
  background: #fff;
  color: #001602;
  border: 1px solid rgba(0, 22, 2, 0.08);

}

.btn.btn-green {
  background-color: #00AF70
}

.btn:hover {
  opacity: 0.8;
}

.intro-section {
  position: relative;
  background: #fff;
}
.intro-section .intro-bg {
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  bottom: 0;
  background: url(../images/intro-img.png) no-repeat center left/cover;
}
.intro-section .intro-bg .intro-img {
  display: none;
}
.intro-section .intro-skew {
  position: absolute;
  top: 0;
  left: -10%;
  right: 42%;
  bottom: 0;
  background: #fff;
  -ms-transform: skew(-10deg);
      transform: skew(-10deg);
}
.intro-section .intro-container {
  position: relative;
  z-index: 50;
  height: 655px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  overflow: hidden;
}
.intro-section .intro-container .intro-text {
  width: 50%;
  position: relative;
}
.intro-section .intro-container .intro-text h2 {
  font-size: 55px;
  color: #001602;
  font-weight: 600;
  line-height: 1.25;
}
.intro-section .intro-container .intro-text h2 span {
  color: #34870B;
}
.intro-section .intro-container .intro-text p {
  color: #99A29A;
  font-size: 20px;
  margin: 40px 0 50px;
  line-height: 1.4;
}
.intro-section .intro-container .intro-text .btns .btn {
  margin-right: 25px;
}
@media (max-width: 1200px) {
  .intro-section .intro-container .intro-text h2 {
    font-size: 48px;
  }
  .intro-section .intro-container .intro-text p {
    font-size: 18px;
  }
}
.intro-section .intro-img {
  position: absolute;
  filter: drop-shadow(-8px 24px 34px rgba(0, 0, 0, 0.31));
  bottom: -80px;
  right: -60%;
  overflow: hidden;
  border-radius: 20px;
  transform: perspective(150px) rotateY(10deg);
}
.intro-section .intro-img .img {
  background: url(../images/intro-img2.png) no-repeat center/cover;
  width: 284px;
  height: 204px;
}
@media (max-width: 950px) {
  .intro-section .intro-bg {
    position: relative;
    background: url(../images/intro-img.png) no-repeat center left/cover;
    width: calc(100% - 40px);
    height: 350px;
    left: 0;
    margin: 25px 20px;
    border-radius: 20px;
  }
  .intro-section .intro-bg .intro-img {
    display: block;
    bottom: -5px;
    right: auto;
    left: -5px;
  }
  .intro-section .intro-bg .intro-img .img {
    width: 180px;
    height: 150px;
  }
  .intro-section .intro-skew {
    display: none;
  }
  .intro-section .intro-container {
    height: auto;
  }
  .intro-section .intro-container .intro-text {
    text-align: center;
    width: 100%;
    margin: 10px 0 30px;
  }
  .intro-section .intro-container .intro-text .intro-img {
    display: none;
  }
  .intro-section .intro-container .intro-text h2 {
    font-size: 28px;
  }
  .intro-section .intro-container .intro-text p {
    font-size: 16px;
    margin: 20px 0;
  }
  .intro-section .intro-container .intro-text .btns .btn {
    width: 100%;
    height: 55px;
    line-height: 55px;
    margin: 0 0 5px 0;
  }
}
.wrote-aboutus-white .wrote-aboutus {
  background: #fff;
}

.wrote-aboutus {
  background: #F6F6F6;
  padding: 65px 0;
}
.wrote-aboutus h3 {
  font-size: 18px;
  color: #545F54;
  font-weight: 400;
  line-height: 1.4;
}
.wrote-aboutus h3 em {
  display: block;
  color: #34870B;
  font-weight: 600;
}
.wrote-aboutus ul {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wrote-aboutus a {
  transition: all .25s ease-in-out;
}
.wrote-aboutus a:hover {
  opacity: 0.8;
}
.wrote-aboutus a img {
  max-width: 100%;
}

.whyus-section .buttons a {
  margin: 15px;
  min-width: 300px;
}

@media (max-width: 900px) {

  .whyus-section .buttons a {
    margin: 0px;
  }

  .wrote-aboutus {
    padding: 25px 0;
  }
  .wrote-aboutus h3 em {
    display: inline;
  }
  .wrote-aboutus li {
    width: 50%;
    margin: 15px 0;
    text-align: center;
  }
  .wrote-aboutus li:nth-of-type(1) {
    width: 100%;
    text-align: left;
  }

  .whyus-section .whyus-item  {
    padding: 24px;
    padding-bottom: 1px;
  }

  .whyus-section .buttons  {
    padding-bottom: 60px;
  }

}

.mail {
  font-family: Open Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 150%;
  color: #0074C8;
}

.whyus-section {
  padding: 75px 0 75px;
  background-color: #FAFAFA
}

.whyus-section .whyus-item .img img {
  width: 100%
}

.whyus-item a { margin-top: 10px; display: block; }

.bg-grey {
  background-color: #FAFAFA
}

@media (max-width: 900px) {
  .whyus-section {
    padding: 0px 0;
  }
}
.whyus-section h2 {
  font-family: Open Sans;
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  line-height: 54px;
  margin-bottom: 32px;
}
.whyus-section h2 span {
  color: #34870B;
}
.whyus-section h2:before {
  position: absolute;
  content: '';
  background: url(../images/whyus-icon.svg) no-repeat center/contain;
  width: 43px;
  height: 54px;
  top: 0;
  left: 50%;
  margin-left: -22px;
}
@media (max-width: 900px) {
  .whyus-section h2 {
    font-size: 26px;
    margin-bottom: 32px;
    padding-top: 60px;
    line-height: 150%;
  }
  .whyus-section h2:before {
    width: 30px;
    height: 40px;
    margin-left: -15px;
  }
  .whyus-section h4 {
    font-size: 16px !important;
    margin-bottom: 32px !important;
  }
  .contact-us-text {
    font-size: 18px !important;
  }
}

.whyus-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 900px) {
  .whyus-items {
    display: block;
  }
}

@media (max-width: 400px) {
  .whyus-section .btn { width: 100%; margin-bottom: 15px }
}


.whyus-items .whyus-item {
  padding: 24px;
  width: calc(33.33% - 42px);
  text-align: center;
  display: block;
  background: #FFFFFF;
  box-shadow: 0px 4px 38px rgb(0 0 0 / 8%);
  border-radius: 8px;
  margin: 15px;
}
.whyus-items .whyus-item .img {
  border-radius: 12px;
}
.whyus-items .whyus-item h3 {
  font-family: "Open Sans";
  font-size: 21px;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 24px;
  line-height: 150%;
  color: #0074C8;
}
.whyus-items .whyus-item p {
  margin-top: 32px;
  font-family: "Open Sans";
  font-size: 16px;
  line-height:24px;
  color: black !important;
  font-weight: 600
}
.whyus-items .whyus-item p.price {
  font-size: 21px;
}
.whyus-items .whyus-item p span{
  color: #0074C8;
}
.whyus-items .whyus-item p span em {
  font-weight: bold;
}

.whyus-items .whyus-item .btn-more {
  position: relative;
  display: inline-block;
}
.whyus-items .whyus-item .btn-more:before {
  position: absolute;
  content: '';
  background: url(../images/btn-more-icon.svg) no-repeat center left/contain;
  width: 9px;
  height: 10px;
  top: 50%;
  margin-top: -5px;
  right: -20px;
}

.whyus-items .points { margin-left: 20px }
.whyus-items .points li {
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  color: #000000;
  margin:16px;
  text-align: left;
  list-style: disc;
}

@media (max-width: 900px) {
  .whyus-items .whyus-item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

}

.whyus-section h4 {
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: #000000;
  margin-bottom: 64px;
}

.home-intro {
  background:url(../images/home-intro-bg.png) no-repeat top right;
  background-color: #fff;
  padding:75px 0 75px;
  border-bottom: 1px solid #e5e5e5;
}

.home-intro .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-intro .home-intro-text {
  width:calc(100% - 450px);
  padding-right: 70px;
}

.home-intro .home-intro-text h2 {
  font-family: "Open Sans";
  font-size: 48px;
  font-weight:bold;
  line-height: 65px;
}

.home-intro .home-intro-text h2 em {
  font-family: "Open Sans";
  color:#0074C8;;
  display: block;
}

.home-intro .home-intro-text p {
  font-family: "Open Sans";
  font-size: 24px;
  color:black;
  line-height: 150%;
  margin:35px 0;
  max-width: 512px;
}

.home-intro .home-intro-text p strong {
  font-weight: 700;
  color:#001602;
}

.home-intro .home-intro-img {
}

.home-intro .home-intro-img img {
  max-width:100%;
}

@media (max-width:500px) {
  .home-intro .home-intro-img {
    overflow: hidden;
  }

  .home-intro .home-intro-img img {
    max-width:115%;
    margin-left:-10%;
  }
}

@media (max-width:900px) {
  .home-intro .home-intro-text h2 {
    font-size: 30px;
  }

  .home-intro .home-intro-text h2 em {
    display: inline-block;
  }

  .home-intro .home-intro-text p {
    font-size: 16px;
    margin:35px 0;
  }
}

@media (max-width:500px) {
  .home-intro .home-intro-img {
    overflow: hidden;
  }

  .home-intro .home-intro-img img {
    max-width:115%;
    margin-left:-10%;
  }
}

@media (max-width:900px) {
  .home-intro .home-intro-text h2 {
    font-size: 30px;
    line-height: 150%;
  }

  .home-intro .home-intro-text h2 em {
    display: inline-block;
  }

  .home-intro .home-intro-text p {
    font-size: 18px;
    margin:16px 0 32px;
  }

  .home-intro .points li {
    font-size: 16px;
    line-height: 1.4;
  }
}

@media (max-width:750px) {
  .home-intro {
    padding:20px 0 0 0;
    background: #fff;
  }

  .home-intro .home-intro-text {
    width:100%;
    margin-bottom: 30px;
    padding-right: 0;
    order:2;
  }

  .home-intro .container {
    flex-direction: column;
    padding-bottom: 60px;
  }


}

@media (max-width:400px) {
  .home-intro .btn-write {
    width: 100%;
    text-align: center;
  }
}

@media (min-width:901px) {
  .home-intro .btn-write {
    min-width: 360px;
    text-align: center;
  }
}

/**
Sekcja Opinie
 */


.opinions-section {
  padding: 75px 0 75px;
  border-bottom: 1px solid #e5e5e5;

}

.opinions-carousel {

}

.opinions-section h3 {
  text-align: center;
  margin-bottom: 0;
  font-family: "Open Sans";

  font-weight: 700;
  font-size: 36px;
  margin-bottom: 50px;
}

@media (max-width: 620px) {
  .opinions-section {
    padding: 40px 0 80px;
  }

  .opinions-section h3 {
    padding-top: 20px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    font-size: 26px;
  }
}

.opinions-carousel {

}
.opinions-section .opinion-item {
  box-shadow: 0px 4px 38px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.opinions-section .opinion-item {
  /*margin: 10px;*/
}

.opinions-section .opinion-item > div {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  min-height: 400px;
  max-height: 400px;
}

.opinions-section .opinion-item p {
  font-family: Open Sans;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
}
.opinions-section .opinion-item footer {
  border-bottom: 1px solid #F2F2F2;
  padding-top: 20px;
  /*margin-top: 25px;*/
  padding-bottom: 25px;
  display: -ms-flexbox;
  display: flex;
  justify-content: start;
  align-items: center;
}

.opinions-section .opinion-item footer .stars { margin-top: 7px }
.opinions-section .opinion-item p.text { padding-top: 15px }
.opinions-section .opinion-item .avatar-name strong {
  font-weight: bold;
}

.opinions-section .profession-footer { display: block !important; padding-bottom: 20px !important; overflow: hidden; }
.opinions-section .profession-footer > div { display: flex; align-items: start }
.opinions-section .profession-footer .stars { margin-top: 15px !important; }
.opinions-section .profession-footer .profession { font-size: 14px }

.opinions-section .opinion-item .avatar-name {
  margin-left: 15px;
}

@media (max-width: 650px) {
  .opinions-section .opinion-item footer {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .opinions-section .opinion-item footer .user {
    margin-bottom: 15px;
  }
}

@media (max-width: 900px) {
  .opinions-section .opinion-item > div {
    background: #fff;
    border-radius: 16px;
    padding: 0px;
  }
}

@media (max-width: 600px) {
  .opinions-section .opinion-item {
    margin: 30px 0;
  }
}

@media (max-width: 900px) {
  .opinions-section .opinion-item {
    margin-left: 15px;
    margin-right: 15px;
  }

  .opinions-section .opinion-item .text {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    line-height: 24px;
  }
}

.opinions-section .opinion-item footer .user img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 13px;
}
.opinions-section .opinion-item footer .user strong {
  font-size: 18px;
  font-weight: 700;
  color: black;
  line-height: 21px;
  vertical-align: middle;
}

.not-carousel {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.not-carousel li {
  flex-grow: 1;
  width: 30%;
  margin: 20px;
}

@media (max-width: 530px) {
  .opinions-section .opinion-item footer .user img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
  .opinions-section .opinion-item footer .user strong {
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: calc(100% - 24px - 10px);
    display: inline-block;
  }
}
@media (max-width: 530px) {
  .opinions-section .opinion-item .google-stars {
    text-align: center;
  }
}
.opinions-section .opinion-item .stars {
  background: url(../images/opinion-star.svg) repeat-x center left;
  height: 20px;
  width: 110px;
  position: relative;
  float: left;
}
@media (max-width: 530px) {
  .opinions-section .opinion-item .stars {
    display: block;
    float: none;
  }
}
.opinions-section .opinion-item .stars .stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: url(../images/opinion-star.svg) repeat-x center left;
}

.avatar-circle {
  border-radius: 30px;
  background-color: #0074C8;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin-top: 4px;
}

@media (max-width: 530px) {
  .opinions-section .opinion-item .google-logo {
    display: block;
    margin-top: 10px;
    float: none;
  }
}

/**
Sekcja Kim jestesmy
 */


.aboutus-intro {
  background:url(../images/aboutus-intro-bg.png) no-repeat top right;
  padding:75px 0 75px;
  border-bottom: 1px solid #e5e5e5;
}

.aboutus-intro .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aboutus-intro .aboutus-intro-text {
max-width: 454px;
  /*max-width: 490px;
  width:calc(100% - 450px);
  padding-right: 50px;*/
}

.aboutus-intro .aboutus-intro-text h2 {
  font-family: Open Sans;
  font-weight: bold;
  font-size: 40px;
  line-height: 54px;
}

.aboutus-intro .aboutus-intro-text p em {
  color:#0074C8;
  display: block;
}

.aboutus-intro .aboutus-intro-text p {
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 150%;
  margin:35px 0;
}

.aboutus-intro .aboutus-intro-text p strong {
  font-family: Open Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 150%;
  color:black;
}

.aboutus-intro .aboutus-intro-img img {
  max-width:100%;
}

@media (max-width:500px) {
  .aboutus-intro .aboutus-intro-img {
    overflow: hidden;
  }

  .aboutus-intro .aboutus-intro-img img {
    max-width:115%;
    margin-left:-10%;
  }

}

.aboutus-intro .points li {
  position: relative;
  margin: 15px 0;
  font-weight: normal;
  font-size: 20px;
  color: black;
  padding-left: 35px;
  line-height: 27px;
}

.aboutus-intro .points li:before {
  position: absolute;
  content: '';
  background: url(../images/check.svg) no-repeat center/contain;
  width: 18px;
  height: 18px;
  left: 0;
  top: 50%;
  margin-top: -10px;
}


@media (max-width:900px) {
  .aboutus-intro .aboutus-intro-text h2 {
    font-size: 26px;
    line-height: 130%;
    margin-bottom: 32px;
    text-align: center;
  }

  .aboutus-intro .aboutus-intro-text h2 em {
    display: inline-block;
  }

  .aboutus-intro .aboutus-intro-text p {
    font-size: 16px;
    margin:32px 0 16px;

  }
  .aboutus-intro .aboutus-intro-text p strong {
    font-size: 18px;
  }

  .aboutus-intro .points li {
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
  }
}

@media (max-width:750px) {
  .aboutus-intro {
    background: #fff;
    padding: 60px 0 60px;

  }


  .aboutus-intro .aboutus-intro-text {
    width:100%;
    padding-right: 0;
    order:2;
    text-align: center;

  }

  .aboutus-intro .container {
    flex-direction: column;
  }
}


/**
Sekcja Doswiadczenie, wygoda, dostepnosc
 */

.points-intro-items {
  display: flex;
  justify-content: space-between;
}

.points-intro-items .points-intro-item {
  text-align: center;
  max-width: 33%;
}
.points-intro-items .points-intro-item h2 {
  margin-top: 32px;
  font-size: 28px;
  font-weight: bold;
  font-family: "Open Sans";
  line-height: 150%;

}
.points-intro-items .points-intro-item p {
  margin-top: 16px;
  font-family: 'Open Sans';
  font-size: 20px;
  line-height: 150%;
}

@media (max-width: 900px) {
  .points-intro {
    padding-top: 28px !important;
    padding-bottom: 28px!important;
  }
  .points-intro-items {
    flex-direction: column;
    align-items: center;

  }

  .points-intro-items .points-intro-item {
    max-width: 80% !important;
    border-bottom: 1px solid #e5e5e5;
    padding: 32px;
  }
  .points-intro-items .points-intro-item:last-child {
    border-bottom: unset;

  }
  .points-intro-items .points-intro-item h2 {
    font-size: 18px;
    margin-top: 16px;

  }
  .points-intro-items .points-intro-item p {
    font-size: 16px ;
    margin-top: 8px;
  }

}


  /**
  Sekcja jak dzialamy
   */


.how-we-work-intro {
  background: #FAFAFA;
  border-bottom: 1px solid #e5e5e5;

}
.how-we-work-intro .how-we-work-intro text {
width: 55%;


}
.how-we-work-intro .container{
  padding:75px 32px 75px;
}
.how-we-work-intro h2{
  text-align: center;
  font-family: Open Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 54px;
  margin-bottom: 32px;
}
.how-we-work-intro p {
  text-align: center;
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 150%;
  margin-top: 16px;
  max-width: 623px;
  margin: auto;

}
.how-we-work-intro p em {
font-weight: bold;
}
.how-we-work-intro p  b{
  color: #0074C8;
}
.how-we-work-intro h3 {
  text-align: center;
  font-family: Open Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 16px;
}

.how-we-work-intro .card {
  background: #FFFFFF;
  box-shadow: 0px 4px 39px rgba(0, 0, 0, 0.11);
  border-radius: 16px;
}

.how-we-work-intro .points-items {
  margin-top: 56px;
  display: flex;
  justify-content: space-around;
  padding-top: 56px;
  padding-left: 14px;
  padding-right: 14px;
  padding-bottom: 50px;
  margin-bottom: 64px;
}

.how-we-work-intro .points-item {
  max-width: 186px;
  text-align: center;
}

.how-we-work-intro .points-items img {

  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
}
.how-we-work-intro .points-items h4 {
  margin-top: 16px;
  text-align: center;
  font-family: Open Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 150%;
  color:#0074C8;
}
.how-we-work-intro .points-items p {
  text-align: center;
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 150%;
}

.how-we-work-intro .buttons {
  justify-content: center;
  display: flex;
}

.how-we-work-intro .buttons a {
  margin: 15px;
  font-size: 16px;
  font-family: Open Sans;
/*  font-weight: bold;*/
  padding-bottom: 50px;
  text-align: center;
  min-width: 300px;
}

.how-we-work-intro .mail {
  font-family: Open Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 150%;
  color: #0074C8;
  margin-top:24px;
}

@media (max-width: 900px) {

  .how-we-work-intro .buttons a { width: 100% }

  .how-we-work-intro .points-items {
    flex-direction: column;
    align-items: center;

    margin-top: 0px;
    padding-top: 40px;

    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .how-we-work-intro .separator {
    background-color: #e5e5e5;
    height: 1px;
    width: 100%;
  }

  .how-we-work-intro .points-items > img {
    transform: rotate(90deg);
    margin-bottom: 30px;
  }

  .how-we-work-intro .points-item {
    margin-bottom: 30px;
  }

  .how-we-work-intro .points-item > img {
    width: 44px;
    height: 44px;
  }

  .how-we-work-intro .points-item h4 {
    margin-bottom: 15px;
    font-size: 18px
  }

  .how-we-work-intro .points-item p {
    font-size: 18px
  }

  .how-we-work-intro h2{
    margin-top: 0px;
  }

  .how-we-work-intro .card {
    background: unset;
    box-shadow: unset;
    border-radius: 0px;

  }
  .how-we-work-intro .container {
    padding: 60px 0px 60px;
  }

  .how-we-work-intro .container > h2 {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .how-we-work-intro .container > h3 {
    font-size: 16px;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .how-we-work-intro .container > p {
    font-size: 16px;
  }
}

.btn .icon-phone {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../images/icon-phone.svg) no-repeat center / contain;
  transition: all .25s ease-in-out;
  margin-bottom: -6px;
  margin-right: 9px;
}

/* Global */

.contact-us-text {
  font-family: "Open Sans";
  font-size: 28px;
  font-weight: bold;
  line-height: 150%;
  margin-top: 32px;
  margin-bottom: 32px;
}

.text-center { text-align: center; }
.text-blue { color: #0074C8 }
.text-left { text-align: center }
.text-right { text-align: left }
.divider-blue { height: 50px; background: #0074C8; }
.points-intro { padding-top: 75px; padding-bottom: 75px; background: #FAFAFA; border-bottom: 1px solid #e5e5e5; }

.divider {
  height: 1px;
  background-color: #e5e5e5;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px
}

.price {
  font-size:40px;
}

@media (max-width: 900px) {
  .mobile-hidden {
    display: none !important;
  }

  .main-header-sizebox { height: 70px ;}

  .home-intro-img img { padding-left: 30px; padding-right: 30px }

  .divider-blue { height: 8px; }
}

@media (min-width: 901px) {
  .desktop-hidden {
    display: none !important;
  }
}


.w-100 { width: 100% }

.profession-footer {
  flex-direction: row !important;
  margin-left: 15px;

}
