.w--spinner {
  width: 70px;
  text-align: center;
  margin: 0 auto;
}

.w--spinner.narrow {
  width: 48px;
}

.w--spinner > div {
  width: 10px;
  height: 10px;
  margin-left: 3px;
  background-color: #314451;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.w--spinner.white > div {
  background: #fff;
}

.w--spinner.orange > div {
  background: #fc5846;
}

.w--spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.w--spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%,
  100%,
  80% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes bouncedelay {
  0%,
  100%,
  80% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.btn {
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
}

.btn:not(input):empty {
  display: none;
}

.btn--orange {
  background: #fc5846;
  color: #fff;
  border: 1px solid #ef5443;
}

.btn--orange:active,
.btn--orange:hover {
  background: #ef5443;
  text-decoration: none;
  color: #fff;
}

.btn--basedark {
  background: #314451;
  color: #fff;
  border: 1px solid #314451;
}

.btn--basedark:active,
.btn--basedark:hover {
  opacity: 0.9;
  text-decoration: none;
}

.btn--empty {
  background: 0 0;
  border: 1px solid #314451;
  color: #314451;
}

.btn--empty:active,
.btn--empty:focus,
.btn--empty:hover {
  background: #efeff4;
  color: #314451;
  text-decoration: none;
}

.btn--empty.btn--orange {
  color: #fc5846;
  border: 1px solid #ef5443;
}

.btn--empty.btn--orange:active,
.btn--empty.btn--orange:focus,
.btn--empty.btn--orange:hover {
  color: #fff;
}

.btn--empty.btn--blue {
  background: 0 0;
  border: 1px solid #129df5;
  color: #129df5;
}

.btn--empty.btn--blue:active,
.btn--empty.btn--blue:focus,
.btn--empty.btn--blue:hover {
  color: #129df5;
}

.btn--thin {
  padding: 5px 10px;
}

.btn--large {
  font-size: 18px;
  padding: 15px;
}

.btn--block {
  display: block;
  width: 100%;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.w--button {
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.w--button:empty {
  display: none;
}

@media (max-width: 499px) {
  .w--button:focus {
    outline: 0;
  }
}

.w--button--yellow {
  background: #f8bf5f;
  color: #fff;
  border: 1px solid #ecb55a;
}

:not(.loading).w--button--yellow:active,
:not(.loading).w--button--yellow:hover {
  background: #ecb55a;
  text-decoration: none;
  color: #fff;
}

.w--button--yellow .w--spinner > div {
  background: #fff;
}

.w--button--yellow.loading,
.w--button--yellow.loading:hover {
  border: none;
  background: linear-gradient(270deg, #ff594f, #ff7344, #ff704c);
  background-size: 200% 200%;
  -webkit-animation: orangeGradientAnim 1.4s ease infinite;
  animation: orangeGradientAnim 1.4s ease infinite;
}

.w--button--orange {
  background: #fc5846;
  color: #fff;
  border: 1px solid #ef5443;
}

:not(.loading).w--button--orange:active,
:not(.loading).w--button--orange:hover {
  background: #ef5443;
  text-decoration: none;
  color: #fff;
}

.w--button--orange .w--spinner > div {
  background: #fff;
}

.w--button--orange.loading,
.w--button--orange.loading:hover {
  border: none;
  background: linear-gradient(270deg, #ff594f, #ff7344, #ff704c);
  background-size: 200% 200%;
  -webkit-animation: orangeGradientAnim 1.4s ease infinite;
  animation: orangeGradientAnim 1.4s ease infinite;
}

.w--button--basedark {
  background: #314451;
  color: #fff;
  border: 1px solid #314451;
}

.w--button--basedark:active,
.w--button--basedark:hover {
  opacity: 0.9;
  text-decoration: none;
}

.w--button--orange-gradient {
  background: #fc5846;
  background-image: linear-gradient(357.04deg, #ec5f67 0, #ff704c 100%);
  color: #fff;
  padding: 12px 24px;
  border: 0;
  text-decoration: none;
}

.w--button--orange-gradient .w--spinner > div {
  background: #fff;
}

.w--button--orange-gradient.w--button--large {
  height: 45px;
  width: 244px;
}

.w--button--orange-gradient:hover {
  background: #f26a48;
  text-decoration: none;
  color: #fff;
}

.w--button--large {
  height: 48px;
  width: 140px;
}

.w--button--link {
  background-color: transparent;
  border: none;
  text-transform: none;
  letter-spacing: 0;
  color: #4a90e2;
}

.w--button--link:hover {
  color: #314451;
}

.w--button--empty {
  background: 0 0;
  border: 1px solid #314451;
  color: #314451;
}

.w--button--empty:active,
.w--button--empty:hover {
  background: #efeff4;
  color: #314451;
  text-decoration: none;
}

.w--button--empty.w--button--orange {
  color: #fc5846;
  border: 1px solid #ef5443;
}

.w--button--thin {
  padding: 5px 10px;
}

.w--button:disabled {
  opacity: 0.6;
}

.w--button.not-allowed {
  cursor: not-allowed;
}

@-webkit-keyframes orangeGradientAnim {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

@keyframes orangeGradientAnim {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

.ic-social {
  display: inline-block;
  overflow: hidden;
  text-indent: -9999px;
  text-align: left;
}

.ic-social.facebook {
  background-position: -5px 0;
  width: 24px;
  height: 24px;
  position: relative;
  top: -2px;
  left: -2px;
}

.ic-social.google-plus {
  background-position: -34px 0;
  width: 24px;
  height: 24px;
}

.ic-social.linkedin {
  background-position: -5px -29px;
  width: 24px;
  height: 24px;
}

.ic-social.twitter {
  background-position: -34px -29px;
  width: 24px;
  height: 24px;
}

.ic-social.youtube {
  background-position: -5px -58px;
  width: 24px;
  height: 24px;
}

.social-contacts a {
  transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-contacts a.facebook {
  background-color: #3b5998;
}

.social-contacts a.facebook:hover {
  background-color: #3b72eb;
}

.social-contacts a.twitter {
  background-color: #00aced;
}

.social-contacts a.twitter:hover {
  background-color: #00aceb;
}

.social-contacts a.linkedin {
  background-color: #007bb6;
}

.social-contacts a.linkedin:hover {
  background-color: #00a0eb;
}

.social-contacts a.google-plus {
  background-color: #dd4b39;
}

.social-contacts a.google-plus:hover {
  background-color: #eb4d38;
}

.social-contacts a.youtube {
  background-color: #b00;
}

.social-contacts a.youtube:hover {
  background-color: #eb0000;
}

.social-contacts {
  margin: 40px auto 0;
  color: #264052;
  max-width: 950px;
}

.social-contacts a {
  background-color: #fff;
  padding: 20px 0;
  margin-right: 25px;
  margin-bottom: 10px;
  border-radius: 50%;
  height: 64px;
  width: 64px;
  display: inline-block;
  text-align: center;
}

@media screen and (min-width: 0px) and (max-width: 991px) {
  .social-contacts {
    text-align: center;
  }

  .social-contacts a {
    margin: 0 10px 10px;
  }
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  .social-contacts a {
    margin: 0 3px 10px;
    height: 45px;
    width: 45px;
    padding: 10px 0;
  }
}

.social-contacts h5 {
  font-size: 16px;
  margin: 0 0 5px;
}

.social-contacts .address {
  text-align: left;
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
}

.social-contacts .address i {
  padding: 15px 0 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  height: 64px;
  width: 64px;
  display: inline-block;
  text-align: center;
  left: -42px;
  top: 0;
}

@media screen and (min-width: 0px) and (max-width: 991px) {
  .social-contacts .address {
    margin: 20px auto;
    max-width: 380px;
    padding-left: 80px;
  }

  .social-contacts .address i {
    left: 0;
  }
}

body,
html {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

.c-orange {
  color: #fc5846;
}

.c-white {
  color: #fff;
}

.plnone {
  padding-left: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 300;
  line-height: 1.4em;
}

h2 {
  font-size: 42px;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 30px;
}

#mini-top-bar,
#page-header,
.footer-wrapper-products {
  display: none;
  height: 0;
  padding: 0;
}

.header-wrapper {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
}

.center-table {
  display: table;
  width: 100%;
}

.center-table-cell {
  display: table-cell;
  vertical-align: middle;
}

.section-life {
  padding: 100px 0;
  background-color: #f8f8f8;
  color: #000;
}

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

.section-life h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  color: #000;
}

@media screen and (max-width: 767px) {
  .section-life h2 {
    font-size: 32px;
  }
}

.section-life.full-grown {
  position: relative;
  height: 100%;
}

.section-life.grey-2 {
  background-color: #efeff4;
}

.section-life.orange {
  background-color: #fc5846;
  color: #fff;
}

.section-life.blue {
  background-color: #1aa2d8;
  color: #fff;
}

.section-life.base-dark {
  background-color: #314451;
  color: #fff;
}

.section-life.pink {
  background-color: #ff746b;
  color: #fff;
}

.section-life.skyblue {
  background-color: #54b3d8;
  color: #fff;
}

.section h3 {
  margin: 15px 0 20px;
  text-align: center;
}

.section h2 {
  text-align: center;
}

.one-liner {
  font-weight: 300;
  font-size: 32px;
  max-width: 700px;
  margin: 50px auto;
  line-height: 48px;
  text-align: center;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  .one-liner {
    font-size: 26px;
    line-height: 1.5em;
  }
}

.illustration {
  max-width: 800px;
  margin: 5% auto 30px;
}

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

@media screen and (min-width: 768px) and (max-width: 991px) {
  .illustration {
    max-width: 80%;
  }
}

.illustration img {
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 50px auto;
}

.ltr-row {
  margin: 0 auto 30px;
  padding-left: 30%;
  max-width: 1024px;
  min-height: 100px;
}

.ltr-row .row-image {
  position: relative;
}

.ltr-row img {
  position: absolute;
  left: -170px;
  top: 10px;
  width: 100px;
  display: block;
  margin-bottom: 15px;
}

.ltr-row h2 {
  text-align: left;
  margin-bottom: 0;
}

.ltr-row p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.ltr-row h4 {
  font-size: 36px;
  margin-bottom: 20px;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  .ltr-row h4 {
    font-size: 26px;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .ltr-row {
    padding-left: 35%;
  }
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  .ltr-row {
    padding-left: 0;
    text-align: center;
    margin-bottom: 60px;
    min-height: 70px;
  }

  .ltr-row h2 {
    text-align: inherit;
  }

  .ltr-row .row-image img {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 auto;
  }
}

#story-teller {
  position: relative;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  display: inline-block;
  margin: 0 auto;
  max-width: 430px;
  padding: 20px;
  border: 1px solid #fff;
  text-align: center;
  font-family: "News Cycle", Lato, helvetica, arial sans-serif;
  background-color: transparent;
}

#story-teller:active,
#story-teller:focus,
#story-teller:hover {
  text-decoration: none;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  #story-teller {
    font-size: 20px;
  }
}

#about-intro {
  letter-spacing: 2px;
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 40px;
  line-height: 1.4em;
  font-weight: 400;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  #about-intro {
    font-size: 30px;
  }
}

#hover-cover {
  transition: background-color 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: transparent;
}

#story-teller:hover {
  z-index: 400;
}

#story-teller:hover + #hover-cover {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000;
  z-index: 399;
}

.dimg-row {
  max-width: 700px;
  margin: 30px auto;
  min-height: 220px;
  padding-right: 300px;
  position: relative;
  font-size: 16px;
  line-height: 1.6em;
}

.dimg-row img {
  display: block;
  position: absolute;
  top: -20px;
  right: 0;
  max-width: 260px;
}

.dimg-row img.rot-3 {
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  .dimg-row {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .dimg-row img {
    position: static;
    margin: 15px auto 0;
  }
}

#star-intro {
  position: static;
  background-color: transparent;
}

.starClose {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 3;
}

#star-intro.active {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 400;
}

#star-intro.active .starClose {
  display: inline-block;
}

.starwars {
  text-align: center;
}

.starwars .titles,
.starwars p.intro,
.starwars p.logo {
  font-family: "News Cycle", sans-serif;
}

#star-intro.active .starwars p.intro {
  z-index: 1;
  display: block;
}

#star-intro.active .shade-cover {
  position: absolute;
  content: "";
  background: linear-gradient(
    to bottom,
    #000 0,
    #000 62%,
    rgba(0, 0, 0, 0.7) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  height: 65%;
  width: 100%;
  top: 0;
  display: block;
  z-index: 2;
}

.starwars p.intro {
  display: none;
  position: relative;
  top: 50px;
  width: 90%;
  max-width: 350px;
  font-size: 200%;
  font-weight: 400;
  margin: 20% auto;
  color: #4ee;
  opacity: 0;
  text-align: left;
  -webkit-animation: intro 2s ease-out;
  animation: intro 2s ease-out;
}

@-webkit-keyframes intro {
  0% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes intro {
  0% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.starwars p.logo {
  position: absolute;
  width: 100%;
  left: 0;
  top: 25%;
  font-size: 7em;
  text-align: center;
  margin-left: 0;
  line-height: 0.8em;
  letter-spacing: -0.05em;
  color: #000;
  text-shadow: -2px -2px 0 #ff6, 2px -2px 0 #ff6, -2px 2px 0 #ff6,
    2px 2px 0 #ff6;
  opacity: 0;
  -webkit-animation: logo 5s ease-out 2.5s;
  animation: logo 5s ease-out 2.5s;
}

@-webkit-keyframes logo {
  0% {
    -webkit-transform: scale(1);
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.1);
    opacity: 0;
  }
}

@keyframes logo {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }
}

.starwars .titles {
  position: absolute;
  width: 90%;
  height: 50em;
  bottom: 0;
  left: 50%;
  margin-left: -45%;
  font-size: 350%;
  text-align: justify;
  overflow: hidden;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: perspective(300px) rotateX(25deg);
  transform: perspective(300px) rotateX(25deg);
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  .starwars .titles {
    font-size: 200%;
  }
}

.starwars .titles > div > p {
  color: #ff6;
  line-height: 1.4em;
  margin: 0.8em auto;
  text-align: justify;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  max-width: 900px;
}

.starwars .titles > div > p.center {
  text-align: center;
}

.starwars .titles > div {
  position: absolute;
  top: 100%;
  width: 100%;
  -webkit-animation: scroll 150s linear 4s;
  animation: scroll 150s linear 4s;
}

@-webkit-keyframes scroll {
  0% {
    top: 100%;
  }

  100% {
    top: -90%;
  }
}

@keyframes scroll {
  0% {
    top: 100%;
  }

  100% {
    top: -90%;
  }
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  @-webkit-keyframes scroll {
    0% {
      top: 100%;
    }

    100% {
      top: -170%;
    }
  }

  @keyframes scroll {
    0% {
      top: 100%;
    }

    100% {
      top: -170%;
    }
  }
}

.about-theme.owl-theme .owl-controls {
  position: absolute;
  z-index: 10;
  bottom: -20px;
  width: 100%;
}

.about-theme.owl-theme .owl-controls .owl-page span {
  border: 2px solid #161616;
}

.about-theme.owl-theme .owl-controls .owl-page.active span {
  background-color: #161616;
}

.owl-theme .owl-controls.clickable .owl-page:hover span {
  background-color: #000;
  opacity: 0.6;
}

.owl-pagination {
  opacity: 0.6;
}

#owl-customNavigation {
  position: relative;
}

#owl-customNavigation a.anchor {
  opacity: 0.8;
  position: absolute;
  top: 50%;
  margin-top: 0;
  z-index: 2;
  cursor: pointer;
  display: block;
  left: 0;
  width: 5%;
  text-align: center;
}

#owl-customNavigation a.anchor:hover {
  opacity: 1;
}

#owl-customNavigation a.anchor.next {
  left: auto;
  right: 0;
}

.select-input {
  position: relative;
  color: #314451;
  margin-bottom: 15px;
}

.select-input .triangle {
  cursor: pointer;
  opacity: 0.6;
  z-index: 1;
  display: block;
  position: absolute;
  top: 24px;
  right: 10px;
  width: 16px;
  height: 16px;
}

.select-input.active .triangle {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.select-input > div {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  height: 64px;
  border-radius: 3px;
  padding: 20px 10px 10px;
}

.select-input > div > span {
  color: #999;
}

.select-input ul {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
  display: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
}

.select-input ul.dt li {
  padding: 5px 10px;
}

.select-input ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 10px;
  cursor: pointer;
}

.select-input ul li:hover {
  color: #fc5846;
}

.select-input ul li small {
  color: #363636;
}

.select-input.active ul {
  display: block;
}

.form-row {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px 20px;
}

.form-row label {
  font-size: 20px;
  margin: 12px 0;
  display: block;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  .form-row {
    margin-top: -40px;
    padding: 30px 0;
  }
}

.btn--large {
  height: 65px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ic-insurance {
  display: inline-block;
  overflow: hidden;
  text-indent: -9999px;
  text-align: left;
}

.ic-insurance.ic-bike {
  background-position: -30px 0;
  width: 20px;
  height: 20px;
}

.ic-insurance.ic-car {
  background-position: -5px -25px;
  width: 20px;
  height: 20px;
}

.ic-insurance.ic-health {
  background-position: -55px -75px;
  width: 20px;
  height: 20px;
}

.ic-insurance.ic-home {
  background-position: -30px -50px;
  width: 20px;
  height: 20px;
}

.ic-insurance.ic-travel {
  background-position: -5px -75px;
  width: 20px;
  height: 20px;
}

.ic-insurance.ic-life {
  background-position: -55px -25px;
  width: 20px;
  height: 20px;
}

.select-input ul li:hover > .ic-insurance.ic-car,
.tabs > li.active > .ic-insurance.ic-car {
  background-position: -55px 0;
  width: 20px;
  height: 20px;
}

.select-input ul li:hover > .ic-insurance.ic-health,
.tabs > li.active > .ic-insurance.ic-health {
  background-position: -30px -75px;
  width: 20px;
  height: 20px;
}

.select-input ul li:hover > .ic-insurance.ic-home,
.tabs > li.active > .ic-insurance.ic-home {
  background-position: -5px -50px;
  width: 20px;
  height: 20px;
}

.select-input ul li:hover > .ic-insurance.ic-travel,
.tabs > li.active > .ic-insurance.ic-travel {
  background-position: -55px -50px;
  width: 20px;
  height: 20px;
}

.select-input ul li:hover > .ic-insurance.ic-bike,
.tabs > li.active > .ic-insurance.ic-bike {
  background-position: -5px 0;
  width: 20px;
  height: 20px;
}

.select-input ul li:hover > .ic-insurance.ic-life,
.tabs > li.active > .ic-insurance.ic-life {
  background-position: -30px -25px;
  width: 20px;
  height: 20px;
}

.select-input ul li .ic-insurance {
  margin: -3px 10px 0 0;
  position: relative;
  top: 0;
  vertical-align: middle;
}

#top-bar.header-wrapper.sec-1,
#top-bar.header-wrapper.sec-1 .main-header,
#top-bar.header-wrapper.sec-1 .nav-bar,
#top-bar.header-wrapper.sec-1 .nav-menu {
  background-color: #fc5846;
}

#top-bar.header-wrapper.sec-2,
#top-bar.header-wrapper.sec-2 .main-header,
#top-bar.header-wrapper.sec-2 .nav-bar,
#top-bar.header-wrapper.sec-2 .nav-menu {
  background-color: #54b3d8;
}

#top-bar.header-wrapper.sec-3,
#top-bar.header-wrapper.sec-3 .main-header,
#top-bar.header-wrapper.sec-3 .nav-bar,
#top-bar.header-wrapper.sec-3 .nav-menu {
  background-color: #314451;
}

#top-bar.header-wrapper.sec-4,
#top-bar.header-wrapper.sec-4 .main-header,
#top-bar.header-wrapper.sec-4 .nav-bar,
#top-bar.header-wrapper.sec-4 .nav-menu {
  background-color: #ff746b;
}

#top-bar.header-wrapper.sec-5,
#top-bar.header-wrapper.sec-5 .main-header,
#top-bar.header-wrapper.sec-5 .nav-bar,
#top-bar.header-wrapper.sec-5 .nav-menu {
  background-color: #1aa2d8;
}

#top-bar.header-wrapper.sec-6,
#top-bar.header-wrapper.sec-6 .main-header,
#top-bar.header-wrapper.sec-6 .nav-bar,
#top-bar.header-wrapper.sec-6 .nav-menu {
  background-color: #314451;
}

.journey-container__purple,
.journey-container__timeline-date.jc__purple {
  color: #9013fe;
}

.journey-container__blue,
.journey-container__timeline-date.jc__blue {
  color: #1c85ff;
}

.journey-container__green,
.journey-container__timeline-date.jc__green {
  color: #31c8a6;
}

.journey-container__timeline-date.jc__yellow,
.journey-container__yellow {
  color: #f5a623;
}

.journey-container__circle.jc__purple {
  background-color: #9013fe;
}

.journey-container__circle.jc__blue {
  background-color: #1c85ff;
}

.journey-container__circle.jc__green {
  background-color: #31c8a6;
}

.journey-container__circle.jc__yellow {
  background-color: #f5a623;
}

.journey-container {
  color: #000;
}

.journey-container__title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  padding-top: 140px;
}

@media screen and (max-width: 1024px) {
  .journey-container__title {
    font-size: 32px;
    padding-top: 48px;
  }
}

.journey-container__timeline {
  width: 870px;
  margin: 90px auto;
}

@media screen and (max-width: 499px) {
  .journey-container__timeline {
    width: auto;
    margin: 45px auto;
  }
}

@media (min-width: 499px) and (max-width: 1024px) {
  .journey-container__timeline {
    width: 380px;
    margin: 45px auto;
  }
}

.journey-container__timeline-date {
  font-size: 30px;
  margin-right: 117px;
  margin-top: 8px;
  width: 88px;
}

@media screen and (max-width: 1024px) {
  .journey-container__timeline-date {
    font-size: 18px;
    margin-right: 30px;
    margin-left: 10px;
    margin-top: 17px;
  }
}

.journey-container__timeline-box {
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 35px 0 rgba(0, 0, 0, 0.12);
  font-size: 16px;
  font-weight: 500;
  padding: 16px 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .journey-container__timeline-box {
    padding: 16px 10px;
    width: 200px;
    display: block;
    font-size: 15px;
    position: relative;
  }
}

.journey-container__timeline-box.jc__purple {
  font-size: 16px;
}

.journey-container__timeline-box.jc__blue {
  font-size: 19px;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .journey-container__timeline-box.jc__blue {
    font-size: 16px;
  }
}

.journey-container__timeline-box.jc__green {
  font-size: 22px;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .journey-container__timeline-box.jc__green {
    font-size: 16px;
  }
}

.journey-container__timeline-box.jc__yellow {
  font-size: 28px;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .journey-container__timeline-box.jc__yellow {
    font-size: 16px;
  }
}

.journey-container__cell {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 35px;
}

@media screen and (min-width: 1050px) {
  .journey-container__cell {
    left: -1500px;
    position: relative;
  }
}

@media screen and (min-width: 1050px) {
  .journey-container__cell.cell-shift {
    -webkit-animation: movejourney 1.2s;
    animation: movejourney 1.2s;
    left: 0;
    transition: 0.3s;
  }
}

.journey-container__oval {
  height: 27px;
  width: 27px;
  border-radius: 100%;
  position: relative;
  margin-right: 18px;
}

.journey-container__oval:before {
  content: "";
  width: 117px;
  display: inline-block;
  position: absolute;
  right: 100%;
  top: 49%;
}

@media screen and (max-width: 1024px) {
  .journey-container__oval {
    position: absolute;
    left: -50px;
  }
}

.journey-container__oval.jc__purple {
  background-color: #d9bbf3;
}

.journey-container__oval.jc__purple:before {
  border-bottom: 1px solid #9013fe;
}

@media screen and (max-width: 1024px) {
  .journey-container__oval.jc__purple:before {
    border-bottom: none;
    border-left: 1px solid #9013fe;
    width: 1px;
    height: 82px;
    top: -82px;
    left: 12px;
  }
}

@media screen and (max-width: 1024px) {
  .journey-container__oval.jc__purple.jc__purpleone:before {
    height: 0;
  }
}

@media screen and (max-width: 1024px) {
  .journey-container__oval.jc__purple.jc__purpletwo:before {
    height: 62px;
    top: -62px;
  }
}

.journey-container__oval.jc__blue {
  background-color: #b9d2ef;
}

.journey-container__oval.jc__blue:before {
  border-bottom: 1px solid #1c85ff;
}

@media screen and (max-width: 1024px) {
  .journey-container__oval.jc__blue:before {
    border-bottom: none;
    border-left: 1px solid #1c85ff;
    width: 1px;
    height: 84px;
    top: -84px;
    left: 12px;
  }
}

@media screen and (max-width: 1024px) {
  .journey-container__oval.jc__blue.jc__blueone:before {
    height: 63px;
    top: -62px;
  }
}

.journey-container__oval.jc__green {
  background-color: #4be3c1;
}

.journey-container__oval.jc__green:before {
  border-bottom: 1px solid #31c8a6;
}

@media screen and (max-width: 1024px) {
  .journey-container__oval.jc__green:before {
    border-bottom: none;
    border-left: 1px solid #31c8a6;
    width: 1px;
    height: 113px;
    top: -112px;
    left: 12px;
  }
}

@media screen and (max-width: 1024px) {
  .journey-container__oval.jc__green:first-child:before {
    height: 86px;
    top: -84px;
  }
}

.journey-container__oval.jc__yellow {
  background-color: #fc9;
  margin-top: 6px;
}

@media screen and (max-width: 1024px) {
  .journey-container__oval.jc__yellow {
    margin-top: 0;
  }
}

.journey-container__oval.jc__yellow:before {
  border-bottom: 1px solid #f5a623;
}

@media screen and (max-width: 1024px) {
  .journey-container__oval.jc__yellow:before {
    border-bottom: none;
    border-left: 1px solid #f5a623;
    width: 1px;
    height: 107px;
    top: -106px;
    left: 12px;
  }
}

.journey-container__circle {
  border-radius: 100%;
  height: 13px;
  width: 13px;
  margin: 7px 7px;
}

.journey-container__purple {
  padding: 0 4px;
  font-weight: 700;
}

.journey-container__blue {
  padding: 0 4px;
}

.journey-container__green {
  padding: 0 4px;
}

.journey-container__yellow {
  padding: 0 4px;
}

@-webkit-keyframes movejourney {
  0% {
    left: 200px;
    opacity: 0;
  }

  100% {
    left: 0;
    opacity: 1;
  }
}

@keyframes movejourney {
  0% {
    left: 200px;
    opacity: 0;
  }

  100% {
    left: 0;
    opacity: 1;
  }
}

.about-container {
  background-color: #fff;
  background-position: bottom;
  background-repeat: no-repeat;
  color: #000;
}

@media screen and (max-width: 1024px) {
  .about-container {
    background-image: none;
    padding-bottom: 48px;
  }
}

.about-container__title {
  font-size: 54px;
  font-weight: 700;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: var(--vendor-primary, #2e3582);
}
.page-header-wrapper h1 {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
}

@media screen and (max-width: 1024px) {
  .about-container__title {
    font-size: 32px;
  }
}

.about-container__text {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  opacity: 0.6;
  padding-top: 25px;
  line-height: 34px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .about-container__text {
    font-size: 18px;
    margin: 0 auto;
    line-height: 28px;
  }
}

@media screen and (max-width: 767px) {
  .about-container__text {
    /* width: 250px */
  }
}

.about-container__imgs {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  top: -80px;
}

@media screen and (max-width: 1024px) {
  .about-container__imgs {
    display: none;
  }
}

.about-container__img-left {
  padding-top: 40px;
  padding-left: 150px;
}

.about-container__img-right {
  width: 313px;
  overflow: hidden;
}

.lined-title__text {
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  padding-top: 40px;
}

@media screen and (max-width: 1024px) {
  .lined-title__text {
    font-size: 26px;
    padding-bottom: 10px;
  }
}

.join-container {
  padding: 120px 0;
  color: #000;
}

.join-container b {
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .join-container {
    padding: 48px 0;
  }
}

.join-container__title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .join-container__title {
    font-size: 32px;
  }
}

.join-container__content {
  font-size: 18px;
  opacity: 0.7;
  line-height: 30px;
  padding-left: 70px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

@media screen and (max-width: 499px) {
  .join-container__content {
    text-align: left;
    padding-left: 45px;
    width: 295px;
    padding-top: 20px;
  }
}

@media (min-width: 499px) and (max-width: 1024px) {
  .join-container__content {
    text-align: left;
    padding-left: 45px;
    width: 400px;
    padding-top: 20px;
    margin: 0 auto;
  }
}

.join-container__info {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  padding-top: 70px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .join-container__info {
    width: auto;
    display: block;
    text-align: center;
    padding-top: 28px;
  }

  .join-container__info img {
    width: 250px;
  }
}

.join-container__hire {
  padding-top: 50px;
}

@media screen and (max-width: 1024px) {
  .join-container__hire {
    padding-top: 20px;
  }
}

.join-container__mail {
  text-decoration: none;
  color: #000;
}

.join-container__mail:hover {
  text-decoration: none;
  color: #000;
}

.join-container__mail:active {
  text-decoration: none;
  color: #000;
}

.people-container {
  padding: 120px 0;
  color: #000;
}

@media screen and (max-width: 1024px) {
  .people-container {
    padding: 48px 0;
  }
}

.people-container__title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .people-container__title {
    font-size: 32px;
  }
}

.people-container__content {
  max-width: 1070px;
  margin: 0 auto;
}

.people-container__cell {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 34px;
  padding-top: 70px;
}

@media screen and (max-width: 1024px) {
  .people-container__cell {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 35px;
    padding-left: 20px;
    position: relative;
  }

  .people-container__cell.cell-right-img,
  .people-container__cell:first-child {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.people-container__left {
  padding-right: 70px;
}

.people-container__img {
  border: 7px solid #fff;
  box-shadow: 0 2px 35px 0 rgba(0, 0, 0, 0.34);
}

@media screen and (max-width: 1024px) {
  .people-container__img {
    width: 150px;
  }
}

.people-container__name {
  font-size: 26px;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .people-container__name {
    font-size: 18px;
    left: 187px;
    position: absolute;
    top: 55px;
  }
}

@media screen and (max-width: 320px) {
  .people-container__name {
    font-size: 15px;
  }
}

.people-container__des {
  font-size: 20px;
  padding-top: 10px;
}

@media screen and (max-width: 1024px) {
  .people-container__des {
    font-size: 16px;
    left: 187px;
    position: absolute;
    top: 73px;
  }
}

@media screen and (max-width: 320px) {
  .people-container__des {
    font-size: 14px;
  }
}

.people-container__edu {
  font-size: 20px;
  color: grey;
  padding: 10px 0 8px;
}

@media screen and (max-width: 1024px) {
  .people-container__edu {
    font-size: 16px;
    left: 187px;
    position: absolute;
    top: 99px;
  }
}

@media screen and (max-width: 320px) {
  .people-container__edu {
    font-size: 14px;
  }
}

.people-container__info {
  font-size: 18px;
}

@media screen and (max-width: 499px) {
  .people-container__info {
    width: 333px;
    padding-top: 20px;
  }
}

@media (min-width: 499px) and (max-width: 1024px) {
  .people-container__info {
    width: 570px;
    padding-top: 20px;
  }
}

@media screen and (max-width: 320px) {
  .people-container__info {
    width: 290px;
    font-size: 14px;
  }
}

.saw {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.saw__block {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  padding: 30px;
}

.saw__block__img {
  height: 160px;
  width: 160px;
  border: 1px solid rgba(3, 3, 3, 0.2);
  margin-bottom: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.saw__block__img img {
  opacity: 0.4;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.saw__block__img:hover {
  box-shadow: 0 2px 75px 0 rgba(107, 122, 254, 0.3);
}

.saw__block__img:hover img {
  opacity: 1;
}

.saw__block .cf-section__label {
  font-size: 24px;
}

.saw__block__text {
  font-size: 16px;
  font-weight: 700;
  color: #030303;
  line-height: 22px;
}

.container-how {
  background-color: #f8f8f8;
  margin-top: -10px;
  color: #000;
  padding: 0 0 120px;
}

@media screen and (max-width: 1024px) {
  .container-how {
    padding: 48px 0;
  }
}

.container-how__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  line-height: 50px;
}

@media screen and (max-width: 1024px) {
  .container-how__title {
    font-size: 32px;
  }
}

.container-how__sub {
  color: #6b7afe;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 100px;
}

@media screen and (max-width: 1024px) {
  .container-how__sub {
    width: 255px;
    margin: 0 auto;
    padding-bottom: 16px;
  }
}

.container-how__tick {
  position: relative;
  text-align: left;
  width: 70%;
  margin: 0 auto;
}

.container-how__tick:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 21px;
  border: 3px solid #6b7afe;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: -35px;
  top: 7px;
}

.container-how__list {
  text-align: center;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .container-how__list {
    padding-bottom: 16px;
  }
}

.container-how__list:before {
  content: "";
  border: 1px dashed #6b7afe;
  width: 91%;
  height: 1px;
  position: absolute;
  top: 13px;
  left: 54%;
}

@media screen and (max-width: 1024px) {
  .container-how__list:before {
    width: 50%;
    left: 25%;
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .container-how__list img {
    z-index: 2;
    position: relative;
    background-color: #f8f8f8;
    display: none;
  }
}

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

@media screen and (max-width: 1024px) {
  .container-how__list1:before {
    content: "";
    border: 1px dashed #6b7afe;
    width: 91%;
    height: 1px;
    position: absolute;
    top: 13px;
    left: 54%;
  }

  @media screen and (max-width: 1024px) {
    .container-how__list1:before {
      width: 50%;
      left: 25%;
      display: none;
    }
  }
}

@media screen and (max-width: 1024px) {
  .container-how__list1 img {
    z-index: 2;
    position: relative;
    background-color: #fff;
    display: none;
  }
}

.container-how__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 1270px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .container-how__content {
    width: auto;
    display: block;
  }
}

@media (min-width: 991px) and (max-width: 1024px) {
  .container-how__content {
    width: auto;
  }
}

.container-how__names {
  font-family: Merriweather;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  padding-top: 6px;
}

.container-how__text {
  color: #030303;
  font-family: Nunito, Helvetica, Tahoma, Arial, sans-serif;
  font-size: 18px;
  line-height: 27px;
  opacity: 0.7;
  text-align: left;
  width: 70%;
  margin: 10px auto 15px;
}

.container-how__ul {
  padding: 0;
  list-style-type: none;
}

.container-how__ul li {
  color: #6b7afe;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
}

.contact-container {
  padding: 120px 0;
  background-size: cover;
  background-repeat: no-repeat;
  color: #000;
}

@media screen and (max-width: 767px) {
  .contact-container {
    padding: 48px 0;
  }
}

.contact-container__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact-container__title {
    font-size: 32px;
  }
}

.contact-container__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 550px;
  margin: 30px auto;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .contact-container__content {
    display: block;
    margin: 30px auto;
    font-size: 18px;
    width: auto;
    text-align: left;
  }
}

.contact-container__img {
  padding-right: 50px;
  padding-top: 20px;
}

@media screen and (max-width: 499px) {
  .contact-container__img {
    text-align: center;
    padding: 0;
    padding-bottom: 15px;
  }

  .contact-container__img + div {
    padding-left: 20px;
  }
}

@media (min-width: 499px) and (max-width: 767px) {
  .contact-container__img {
    text-align: center;
    padding: 0;
    padding-bottom: 15px;
  }

  .contact-container__img + div {
    padding-left: 20px;
    width: 400px;
    margin: 0 auto;
  }
}

.contact-container__company-name {
  padding-bottom: 5px;
  font-size: 18px;
  line-height: 23px;
  opacity: 0.9;
}

.contact-container__link {
  text-decoration: none;
  color: #000;
}

.contact-container__link:hover {
  text-decoration: none;
  color: #000;
}

.contact-container____cib {
  font-size: 20px;
}

.follow-container {
  padding: 120px 0;
  color: #000;
}

@media screen and (max-width: 767px) {
  .follow-container {
    padding: 48px 0;
  }
}

.follow-container__title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .follow-container__title {
    font-size: 32px;
  }
}

.follow-container__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.follow-container__content a {
  margin: 30px 10px;
  border-radius: 100%;
}

@media screen and (max-width: 767px) {
  .follow-container__content a {
    margin: 15px 0;
    border-radius: initial;
  }
}

.follow-container__list {
  width: 65px;
  height: 65px;
  background-repeat: no-repeat;
  opacity: 0.3;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  border-radius: 100%;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .follow-container__list {
    width: 45px;
    height: 50px;
    background-size: 35px;
    border-radius: initial;
  }
}

.follow-container__fb {
}

@media screen and (min-width: 767px) {
  .follow-container__fb:hover {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
  }
}

.follow-container__insta {
}

@media screen and (min-width: 767px) {
  .follow-container__insta:hover {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
  }
}

.follow-container__tw {

}

@media screen and (min-width: 767px) {
  .follow-container__tw:hover {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
  }
}

.follow-container__in {

}

@media screen and (min-width: 767px) {
  .follow-container__in:hover {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
  }
}

.follow-container__gplus {

}

@media screen and (min-width: 767px) {
  .follow-container__gplus:hover {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
  }
}

.follow-container__yt {

}

@media screen and (min-width: 767px) {
  .follow-container__yt:hover {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
  }
}

.follow-container__gh {

}

@media screen and (min-width: 767px) {
  .follow-container__gh:hover {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
  }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
body,
button,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #030303;
  font-family: Nunito, Helvetica, Tahoma, Arial, sans-serif;
}

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

@media screen and (max-width: 1024px) {
  .section-awards {
    padding-bottom: 25px;
  }

  .saw {
    display: block;
  }

  .saw__block {
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 30px;
  }

  .saw__block__img {
    display: inline-block;
    width: 120px;
    box-shadow: none;
    height: auto;
    min-width: 120px;
    border: none;
  }

  .saw__block__img > img {
    width: 88px;
    opacity: 1;
  }

  .saw__block__text {
    display: inline-block;
    text-align: left;
    line-height: 1.3;
    vertical-align: top;
    font-weight: 100;
    font-size: 14px;
  }

  .saw__block__text .cf-section__label {
    font-size: 14px;
    color: #6b7afe;
    font-weight: 700;
  }
}

@media (min-width: 499px) and (max-width: 1024px) {
  .saw__block {
    width: 400px;
    margin: 0 auto;
  }

  .saw__block .cf-section__label {
    font-size: 18px;
    color: #6b7afe;
    font-weight: 700;
    margin-right: 10px;
  }

  .saw__block__img {
    width: 125px;
  }

  .saw__block__img > img {
    width: 100px;
  }

  .saw__block__text {
    font-size: 16px;
  }

  .saw__block__text .cf-section__label {
    font-size: 18px;
  }
}
