html {
  font-family: 'Roboto', sans-serif; }

section {
  overflow: hidden;
  max-width: 100%; }

.tpl-heading {
  font-family: 'Roboto Slab', sans-serif; }
  .tpl-heading__h2 {
    font-weight: 700; }

.tpl-btn {
  cursor: pointer;
  display: inline-block;
  padding: 20px 40px;
  -webkit-border-radius: 100px;
          border-radius: 100px;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border: none; }
  .tpl-btn:focus {
    outline: none; }
  .tpl-btn:hover {
    text-decoration: none; }
  .tpl-btn_white {
    background: -webkit-gradient(linear, left top, left bottom, from(#feffff), color-stop(86%, #d7e2e8), to(#d7e2e8));
    background: -webkit-linear-gradient(top, #feffff 0%, #d7e2e8 86%, #d7e2e8 100%);
    background: -o-linear-gradient(top, #feffff 0%, #d7e2e8 86%, #d7e2e8 100%);
    background: linear-gradient(to bottom, #feffff 0%, #d7e2e8 86%, #d7e2e8 100%);
    border-bottom: 3px solid #bbbbbb;
    color: #1BB2B0; }
    .tpl-btn_white:hover {
      color: #1BB2B0;
      background: -webkit-gradient(linear, left top, left bottom, from(#feffff), color-stop(66%, #d7e2e8), to(#b6bbbe));
      background: -webkit-linear-gradient(top, #feffff 0%, #d7e2e8 66%, #b6bbbe 100%);
      background: -o-linear-gradient(top, #feffff 0%, #d7e2e8 66%, #b6bbbe 100%);
      background: linear-gradient(to bottom, #feffff 0%, #d7e2e8 66%, #b6bbbe 100%); }
  .tpl-btn_primary {
    background: -webkit-gradient(linear, left top, left bottom, from(#FC82B1), color-stop(86%, #e64985), to(#DE427E));
    background: -webkit-linear-gradient(top, #FC82B1 0%, #e64985 86%, #DE427E 100%);
    background: -o-linear-gradient(top, #FC82B1 0%, #e64985 86%, #DE427E 100%);
    background: linear-gradient(to bottom, #FC82B1 0%, #e64985 86%, #DE427E 100%);
    border-bottom: 3px solid #B4446F;
    color: #ffffff; }
    .tpl-btn_primary:hover {
      color: #ffffff;
      background: -webkit-gradient(linear, left top, left bottom, from(#FC82B1), color-stop(86%, #c94477), to(#a83360));
      background: -webkit-linear-gradient(top, #FC82B1 0%, #c94477 86%, #a83360 100%);
      background: -o-linear-gradient(top, #FC82B1 0%, #c94477 86%, #a83360 100%);
      background: linear-gradient(to bottom, #FC82B1 0%, #c94477 86%, #a83360 100%); }
  .tpl-btn_secondary {
    background: -webkit-gradient(linear, left top, left bottom, from(#1CDFDD), color-stop(86%, #008D8B), to(#008D8B));
    background: -webkit-linear-gradient(top, #1CDFDD 0%, #008D8B 86%, #008D8B 100%);
    background: -o-linear-gradient(top, #1CDFDD 0%, #008D8B 86%, #008D8B 100%);
    background: linear-gradient(to bottom, #1CDFDD 0%, #008D8B 86%, #008D8B 100%);
    border-bottom: 3px solid #217272;
    color: #ffffff; }
    .tpl-btn_secondary:hover {
      color: #ffffff;
      background: -webkit-gradient(linear, left top, left bottom, from(#1CDFDD), color-stop(86%, #018381), to(#027472));
      background: -webkit-linear-gradient(top, #1CDFDD 0%, #018381 86%, #027472 100%);
      background: -o-linear-gradient(top, #1CDFDD 0%, #018381 86%, #027472 100%);
      background: linear-gradient(to bottom, #1CDFDD 0%, #018381 86%, #027472 100%); }

.tpl-field {
  padding: 10px 14px;
  border: 1px solid #BCE0FD;
  -webkit-border-radius: 4px;
          border-radius: 4px; }

.tpl-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .tpl-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
  .tpl-checkbox:hover input ~ .tpl-checkmark {
    background-color: #e64985;
    border: 1px solid #e64985; }
  .tpl-checkbox input:checked ~ .tpl-checkmark {
    background-color: #e64985; }
    .tpl-checkbox input:checked ~ .tpl-checkmark:after {
      display: block; }
  .tpl-checkbox .tpl-checkmark:after {
    left: 3px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
  .tpl-checkbox-label {
    display: inline;
    font-size: 14px; }
  .tpl-checkbox__polytics {
    text-decoration: underline; }
  .tpl-checkbox-wrap {
    margin-bottom: 15px; }

.tpl-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: #fff;
  border: 1px solid #a0a0a0;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s; }
  .tpl-checkmark:after {
    content: "";
    position: absolute;
    display: none; }

.tpl-modal-form {
  max-width: 400px;
  margin: 0 auto;
  padding: 40px 20px; }
  .tpl-modal-form .tpl-modal-title {
    text-align: center; }
  .tpl-modal-form .tpl-modal-subtitle {
    text-align: center; }
  .tpl-modal-form .tpl-field {
    display: block;
    width: 100%;
    margin-bottom: 20px; }

.tpl-modal-cities {
  margin: 0 auto;
  padding: 40px;
  text-align: center; }
  .tpl-modal-cities ul {
    padding: 0; }
  .tpl-modal-cities__item {
    list-style: none;
    font-size: 20px;
    margin-bottom: 10px; }
    .tpl-modal-cities__item a {
      text-decoration: none;
      color: #333333; }
      .tpl-modal-cities__item a:hover {
        text-decoration: none;
        color: #333333; }

.tpl-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 40px;
  background: #f272a3;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s; }
  .tpl-header__nav {
    color: #ffffff; }
    .tpl-header__nav a {
      color: #ffffff;
      text-decoration: none; }
      .tpl-header__nav a:hover {
        text-decoration: none;
        color: #ffffff; }
    .tpl-header__nav .nav {
      margin: 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row;
          -ms-flex-flow: row;
              flex-flow: row;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .tpl-header__nav .nav li {
        font-size: 18px;
        margin: 4px; }
  @media (max-width: 991px) {
    .tpl-header {
      display: none;
      left: -100%;
      height: 100%;
      width: 100%;
      max-width: 200px; }
      .tpl-header .nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-flow: column;
            -ms-flex-flow: column;
                flex-flow: column;
        margin-top: 40px; } }
  .tpl-header.active {
    display: block;
    -webkit-animation: 1s slide-right ease forwards;
            animation: 1s slide-right ease forwards; }
  .tpl-header__close {
    cursor: pointer;
    font-size: 40px;
    text-align: right; }

.tpl-darkener {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0; }
  .tpl-darkener.active {
    display: block;
    -webkit-animation: 1s fade-in ease forwards;
            animation: 1s fade-in ease forwards; }

@-webkit-keyframes slide-right {
  from {
    left: -100%; }
  to {
    left: 0; } }

@keyframes slide-right {
  from {
    left: -100%; }
  to {
    left: 0; } }

@-webkit-keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.tpl-main {
  position: relative;
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 60px;
  background: url("../img/main.png") no-repeat center;
  -webkit-background-size: cover;
          background-size: cover; }
  @media (max-width: 991px) {
    .tpl-main {
      margin: 0; } }
  .tpl-main__offer {
    font-size: 45px;
    font-weight: 700;
    max-width: 550px; }
    @media (max-width: 571px) {
      .tpl-main__offer {
        font-size: 32px; } }
  .tpl-main__subheading {
    font-size: 30px;
    margin-bottom: 40px;
    max-width: 500px; }
    @media (max-width: 571px) {
      .tpl-main__subheading {
        font-size: 22px; } }
  .tpl-main__logo {
    margin-bottom: 40px; }
  .tpl-main:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #ffffff;
    opacity: .7;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; }
    @media (min-width: 992px) {
      .tpl-main:after {
        content: none; } }
  .tpl-main .container {
    position: relative;
    z-index: 10; }
  .tpl-main__header {
    widows: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 768px) {
      .tpl-main__header_reverse {
        -webkit-flex-wrap: wrap-reverse;
            -ms-flex-wrap: wrap-reverse;
                flex-wrap: wrap-reverse; } }
  .tpl-main__contacts {
    background: #ffffff;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    padding: 10px 30px;
    margin-bottom: 20px; }
    @media (max-width: 768px) {
      .tpl-main__contacts {
        padding: 0;
        background: none;
        -webkit-box-shadow: none;
                box-shadow: none; } }
    .tpl-main__contacts a {
      display: block;
      text-align: center; }
  .tpl-main__socials ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
        -ms-flex-flow: row;
            flex-flow: row;
    padding: 10px 0;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 1px solid #1BB2B0;
    margin: 0; }
    .tpl-main__socials ul li {
      list-style: none; }
  .tpl-main__socials-item img {
    display: block;
    width: 24px;
    height: 24px; }
  .tpl-main__phone {
    color: #111111;
    font-weight: 700;
    font-size: 20px; }
    .tpl-main__phone:hover {
      color: #111111;
      text-decoration: none; }
  .tpl-main__email {
    color: #111111;
    margin-bottom: 10px; }
    .tpl-main__email:hover {
      color: #111111;
      text-decoration: none; }
  .tpl-main .tpl-btn {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#1CDFDD), color-stop(43%, #008D8B), color-stop(50%, #008D8B), color-stop(50%, #FC82B1), color-stop(86%, #e64985), to(#DE427E));
    background-image: -webkit-linear-gradient(top, #1CDFDD 0%, #008D8B 43%, #008D8B 50%, #FC82B1 50%, #e64985 86%, #DE427E 100%);
    background-image: -o-linear-gradient(top, #1CDFDD 0%, #008D8B 43%, #008D8B 50%, #FC82B1 50%, #e64985 86%, #DE427E 100%);
    background-image: linear-gradient(to bottom, #1CDFDD 0%, #008D8B 43%, #008D8B 50%, #FC82B1 50%, #e64985 86%, #DE427E 100%);
    -webkit-background-size: 100% 200%;
            background-size: 100% 200%;
    border-bottom: 3px solid #217272;
    background-position: top;
    -webkit-animation: 2s bg-changing steps(1) infinite;
            animation: 2s bg-changing steps(1) infinite;
    color: #ffffff; }
    .tpl-main .tpl-btn:hover {
      color: #ffffff; }

@-webkit-keyframes bg-changing {
  0% {
    background-position: top;
    border-bottom: 3px solid #217272; }
  50% {
    background-position: bottom;
    border-bottom: 3px solid #bf2c65; }
  100% {
    background-position: top;
    border-bottom: 3px solid #217272; } }

@keyframes bg-changing {
  0% {
    background-position: top;
    border-bottom: 3px solid #217272; }
  50% {
    background-position: bottom;
    border-bottom: 3px solid #bf2c65; }
  100% {
    background-position: top;
    border-bottom: 3px solid #217272; } }

.tpl-offer {
  overflow: visible;
  padding: 40px 0; }
  .tpl-offer__1 {
    position: relative;
    font-size: 30px;
    text-align: left;
    color: #B4446F;
    font-weight: 400;
    margin: auto;
    padding-left: 60px;
    margin-bottom: 80px; }
    @media (max-width: 768px) {
      .tpl-offer__1 {
        font-size: 24px; } }
    @media (max-width: 571px) {
      .tpl-offer__1 {
        font-size: 20px;
        padding-left: 40px; } }
    .tpl-offer__1:before {
      content: '"';
      font-size: 100px;
      position: absolute;
      left: 0;
      top: -30px; }
      @media (max-width: 571px) {
        .tpl-offer__1:before {
          font-size: 70px;
          top: -20px; } }
  .tpl-offer__2 {
    position: relative;
    z-index: 10;
    padding-right: 30px;
    font-size: 20px;
    margin-bottom: 60px; }
    @media (max-width: 571px) {
      .tpl-offer__2 {
        padding-left: 40px;
        font-size: 18px;
        margin-bottom: 40px; } }
    .tpl-offer__2:before {
      content: '';
      display: block;
      width: 112px;
      height: 112px;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 171, 200, 0.3)), to(rgba(255, 255, 255, 0)));
      background: -webkit-linear-gradient(top, rgba(247, 171, 200, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
      background: -o-linear-gradient(top, rgba(247, 171, 200, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
      background: linear-gradient(to bottom, rgba(247, 171, 200, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
      position: absolute;
      top: -40px;
      left: -40px;
      z-index: -1; }
  @media (min-width: 992px) {
    .tpl-offer .tpl-form {
      margin-top: -300px; } }

.tpl-form {
  position: relative;
  z-index: 10;
  background: #ffffff;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 24px 20px; }
  .tpl-form form {
    background: none;
    border: none; }
  .tpl-form__btn {
    width: 100%;
    margin-bottom: 10px; }
  .tpl-form .tpl-field {
    width: 100%;
    margin-bottom: 10px; }

.tpl-video {
  background: #1BB2B0;
  color: #ffffff;
  padding: 40px 0; }
  .tpl-video a {
    color: #ffffff;
    font-weight: 700; }
  .tpl-video .tpl-heading {
    display: inline-block;
    color: #ffffff;
    width: 100%;
    padding-left: 70px;
    font-size: 45px;
    margin-bottom: 40px;
    font-weight: 700; }
    @media (max-width: 571px) {
      .tpl-video .tpl-heading {
        font-size: 28px;
        padding-left: 0;
        text-align: center; } }
    .tpl-video .tpl-heading:before {
      position: absolute;
      left: 15px;
      top: 28px;
      content: "";
      display: inline-block;
      height: 6px;
      width: 55px;
      background: #ffffff; }
      @media (max-width: 571px) {
        .tpl-video .tpl-heading:before {
          content: none; } }
  .tpl-video__thumb {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    margin-bottom: 30px;
    overflow: hidden; }
    .tpl-video__thumb:after {
      content: "";
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 5;
      background: #000000;
      opacity: 0;
      -webkit-transition: opacity .2s;
      -o-transition: opacity .2s;
      transition: opacity .2s; }
    .tpl-video__thumb:hover .tpl-video__thumb-name {
      bottom: 0; }
    .tpl-video__thumb:hover .tpl-video__thumb-play-btn {
      opacity: 1; }
    .tpl-video__thumb:hover:after {
      opacity: .4; }
    .tpl-video__thumb_large {
      padding-bottom: 62.7%; }
      @media (min-width: 992px) {
        .tpl-video__thumb_large {
          padding-bottom: 61.7%; } }
    .tpl-video__thumb-pic {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 0; }
      .tpl-video__thumb-pic img {
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
    .tpl-video__thumb-name {
      z-index: 10;
      display: block;
      position: absolute;
      width: 100%;
      height: 60px;
      bottom: -60px;
      left: 0;
      background: #168483;
      color: #ffffff;
      padding: 12px 24px;
      font-size: 20px;
      -webkit-transition: bottom .2s;
      -o-transition: bottom .2s;
      transition: bottom .2s; }
      .tpl-video__thumb-name p {
        overflow: hidden;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
        white-space: nowrap; }
    .tpl-video__thumb-play-btn {
      position: absolute;
      display: block;
      width: 20%;
      height: 0;
      top: 50%;
      margin-top: -10%;
      left: 50%;
      margin-left: -10%;
      padding-bottom: 20%;
      background: url("../img/play-btn.svg") no-repeat center;
      -webkit-background-size: contain;
              background-size: contain;
      -webkit-transition: opacity .2s;
      -o-transition: opacity .2s;
      transition: opacity .2s;
      opacity: .8;
      z-index: 10; }

.tpl-cta {
  padding: 60px 0;
  text-align: center; }
  .tpl-cta__heading {
    font-size: 45px;
    font-weight: 700;
    max-width: 900px;
    margin: auto;
    margin-bottom: 40px; }
    @media (max-width: 576px) {
      .tpl-cta__heading {
        font-size: 24px; } }
  .tpl-cta__subheading {
    font-size: 30px;
    color: #1BB2B0;
    max-width: 800px;
    margin: auto;
    margin-bottom: 40px; }
    @media (max-width: 576px) {
      .tpl-cta__subheading {
        font-size: 18px; } }

.tpl-offer2 {
  text-align: center;
  padding-top: 40px; }
  @media (min-width: 1400px) {
    .tpl-offer2 {
      padding-bottom: 80px; } }
  .tpl-offer2__heading {
    font-size: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10; }
    @media (max-width: 768px) {
      .tpl-offer2__heading {
        font-size: 24px; } }
  .tpl-offer2__quote {
    position: relative;
    font-size: 45px;
    max-width: 700px;
    text-align: left;
    color: #B4446F;
    font-weight: 700;
    margin: auto;
    padding-left: 80px; }
    @media (max-width: 768px) {
      .tpl-offer2__quote {
        font-size: 32px; } }
    @media (max-width: 576px) {
      .tpl-offer2__quote {
        font-size: 24px;
        padding-left: 40px; } }
    .tpl-offer2__quote:before {
      content: '"';
      font-size: 120px;
      position: absolute;
      left: 0;
      top: -30px; }
      @media (max-width: 576px) {
        .tpl-offer2__quote:before {
          font-size: 60px;
          top: -10px; } }
  .tpl-offer2__items {
    position: relative;
    z-index: 1; }
    @media (min-width: 768px) {
      .tpl-offer2__items:before {
        content: "";
        display: block;
        position: absolute;
        z-index: -10;
        height: 600px;
        width: 500px;
        background: url(../img/she.png) no-repeat bottom left;
        -webkit-background-size: auto 100%;
                background-size: auto 100%;
        bottom: 0;
        right: 60%; } }
    @media (min-width: 768px) {
      .tpl-offer2__items:after {
        content: "";
        display: block;
        position: absolute;
        z-index: -10;
        height: 600px;
        width: 500px;
        background: url(../img/he.png) no-repeat bottom right;
        -webkit-background-size: auto 100%;
                background-size: auto 100%;
        bottom: 0;
        left: 60%; } }
  .tpl-offer2__item {
    position: relative;
    z-index: 0;
    margin: 0 auto;
    width: 300px;
    text-align: left;
    margin-bottom: 40px; }
    .tpl-offer2__item-1:before {
      content: '';
      display: block;
      width: 220px;
      height: 220px;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 171, 200, 0.1)), to(rgba(255, 255, 255, 0)));
      background: -webkit-linear-gradient(top, rgba(247, 171, 200, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
      background: -o-linear-gradient(top, rgba(247, 171, 200, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
      background: linear-gradient(to bottom, rgba(247, 171, 200, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
      position: absolute;
      top: -140px;
      left: 70px;
      z-index: -1; }
    .tpl-offer2__item-1 p:before {
      top: -40px;
      left: -60px; }
    .tpl-offer2__item-2 p:before {
      top: -20px;
      left: 30px; }
    .tpl-offer2__item-3 p:before {
      top: -60px;
      left: 170px; }
    .tpl-offer2__item-3 .tpl-heading:before {
      top: -40px;
      left: -60px; }
    .tpl-offer2__item-4 p:before {
      top: -20px;
      left: -30px; }
    .tpl-offer2__item p {
      position: relative;
      margin-top: 0;
      font-size: 20px; }
      .tpl-offer2__item p:before {
        content: '';
        display: block;
        width: 112px;
        height: 112px;
        -webkit-border-radius: 50%;
                border-radius: 50%;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 171, 200, 0.3)), to(rgba(255, 255, 255, 0)));
        background: -webkit-linear-gradient(top, rgba(247, 171, 200, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
        background: -o-linear-gradient(top, rgba(247, 171, 200, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
        background: linear-gradient(to bottom, rgba(247, 171, 200, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
        position: absolute;
        z-index: -1; }
        @media (min-width: 768px) {
          .tpl-offer2__item p:before {
            top: -40px;
            left: -40px; } }
    .tpl-offer2__item .tpl-heading {
      margin: 0;
      font-size: 30px; }
      .tpl-offer2__item .tpl-heading:before {
        content: '';
        display: block;
        width: 140px;
        height: 140px;
        -webkit-border-radius: 50%;
                border-radius: 50%;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 171, 200, 0.3)), to(rgba(255, 255, 255, 0)));
        background: -webkit-linear-gradient(top, rgba(247, 171, 200, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
        background: -o-linear-gradient(top, rgba(247, 171, 200, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
        background: linear-gradient(to bottom, rgba(247, 171, 200, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
        position: absolute;
        z-index: -1; }
        @media (min-width: 768px) {
          .tpl-offer2__item .tpl-heading:before {
            top: -70px;
            right: 0px; } }

@media (min-width: 768px) {
  .tpl-offer2__item-1 {
    left: 0px; }
  .tpl-offer2__item-2 {
    left: 70px; }
  .tpl-offer2__item-3 {
    left: -40px; }
  .tpl-offer2__item-4 {
    left: 110px; } }

.tpl-advantages {
  position: relative;
  background: #1BB2B0;
  text-align: center;
  padding-top: 20%;
  padding-bottom: 16%;
  color: #ffffff; }
  @media (min-width: 1400px) {
    .tpl-advantages {
      padding: 80px 0; } }
  .tpl-advantages__items {
    margin-bottom: 30px; }
  .tpl-advantages:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../img/sky_top.jpg") no-repeat center top;
    -webkit-background-size: 100% auto;
            background-size: 100% auto;
    z-index: 0; }
    @media (min-width: 1400px) {
      .tpl-advantages:before {
        content: none; } }
  .tpl-advantages:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: url("../img/sky_bottom.jpg") no-repeat center bottom;
    -webkit-background-size: 100% auto;
            background-size: 100% auto;
    z-index: 0; }
    @media (min-width: 1400px) {
      .tpl-advantages:after {
        content: none; } }
  .tpl-advantages .container {
    position: relative;
    z-index: 10; }
  .tpl-advantages__logo {
    display: inline-block;
    width: 100%;
    max-width: 350px;
    height: auto;
    padding: 10px 20px;
    margin-bottom: 40px; }
  .tpl-advantages__item {
    margin-bottom: 40px; }
    .tpl-advantages__item-desc {
      font-weight: 700;
      max-width: 300px;
      margin: 20px auto; }

.tpl-news {
  padding: 40px 0;
  text-align: center; }
  .tpl-news .tpl-heading__h2 {
    font-size: 45px;
    margin-bottom: 50px; }
  .tpl-news__card {
    position: relative;
    min-height: 300px;
    text-align: left;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    padding: 20px 14px;
    padding-bottom: 40px;
    margin-bottom: 30px; }
    @media (max-width: 576px) {
      .tpl-news__card {
        min-height: 0; } }
    .tpl-news__card-heading {
      font-size: 30px;
      display: block; }
      @media (min-width: 576px) and (max-width: 991px) {
        .tpl-news__card-heading {
          font-size: 20px; } }
    .tpl-news__card-content {
      display: block;
      min-height: 92px;
      padding-bottom: 20px; }
    .tpl-news__card-btn {
      position: absolute;
      bottom: 20px;
      display: inline-block;
      padding: 10px 20px;
      background: #1BB2B0;
      color: #ffffff;
      -webkit-border-radius: 4px;
              border-radius: 4px;
      -webkit-transition: background .2s;
      -o-transition: background .2s;
      transition: background .2s; }
      .tpl-news__card-btn:hover {
        background: #169d9b;
        color: #ffffff;
        text-decoration: none; }

.tpl-cta2 {
  padding: 40px 0; }
  .tpl-cta2 .tpl-field {
    width: 100%;
    margin-bottom: 20px; }
  .tpl-cta2__heading {
    font-size: 30px;
    margin-bottom: 50px; }
    @media (max-width: 991px) {
      .tpl-cta2__heading {
        font-size: 24px; } }
  .tpl-cta2 .music-note {
    margin-bottom: 30px; }
    @media (max-width: 571px) {
      .tpl-cta2 .music-note {
        width: 100px; } }

.tpl-footer {
  padding-top: 30px;
  background: #f272a3;
  color: #ffffff; }
  .tpl-footer__main-links {
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .tpl-footer__main-links li {
      font-size: 18px;
      margin: 4px; }
  .tpl-footer__logo {
    max-width: 200px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px; }
  .tpl-footer__socials {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
        -ms-flex-flow: row;
            flex-flow: row;
    padding: 10px 0;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 1px solid  #f272a3;
    margin: 0;
    max-width: 250px;
    margin: 0 auto;
    margin-bottom: 40px; }
    .tpl-footer__socials li {
      list-style: none;
      display: inline-block;
      width: 20px;
      height: 20px; }
      .tpl-footer__socials li img {
        max-height: 100%;
        max-width: 100%; }
  .tpl-footer__heading {
    font-size: 18px;
    font-weight: 700; }
  .tpl-footer__link {
    margin-bottom: 6px; }
    .tpl-footer__links {
      list-style: none;
      padding: 0; }
    .tpl-footer__link a {
      color: #ffffff;
      text-decoration: none; }
      .tpl-footer__link a:hover {
        color: #ffffff;
        text-decoration: none; }
  .tpl-footer__main-links {
    margin-bottom: 40px;
    list-style: none;
    padding-left: 0;
    color: #ffffff; }
    .tpl-footer__main-links a {
      color: #ffffff;
      text-decoration: none; }
      .tpl-footer__main-links a:hover {
        color: #ffffff;
        text-decoration: none; }
    @media (max-width: 991px) {
      .tpl-footer__main-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-flow: column;
            -ms-flex-flow: column;
                flex-flow: column; } }
  .tpl-footer nav {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ffffff; }
  .tpl-footer__contacts {
    text-align: center;
    color: #ffffff; }
    .tpl-footer__contacts a {
      display: block;
      margin-bottom: 4px;
      color: #ffffff;
      text-decoration: none; }
      .tpl-footer__contacts a:hover {
        color: #ffffff;
        text-decoration: none; }
  @media (max-width: 991px) {
    .tpl-footer .reverse {
      -webkit-flex-wrap: wrap-reverse;
          -ms-flex-wrap: wrap-reverse;
              flex-wrap: wrap-reverse; } }

.tpl-copyright {
  background: #ffffff;
  padding: 20px 0;
  text-align: center;
  margin-top: 20px; }
  .tpl-copyright__name {
    font-size: 16px;
    color: #f272a3; }
  .tpl-copyright__policy {
    font-size: 11px;
    color: #999999; }
