/* ==========================================================================
header
========================================================================== */

.row-header{
    padding: 13px 0;
    background-color: #fff;
}

/* logo */

.header-logo{
    text-align: center;
}

/* slogan */

.header-slogan{
    line-height: 1;
}

.header-slogan p:first-child{
    font-size: 29px;
    font-weight: 700;
    text-transform: uppercase;
}

.header-slogan p + p{
    font-size: 22px;
    color: #004d55;
}

/* services */

.header-services{
    font-size: 0;
    line-height: 0;
}

.header-services a{
    line-height: 33px;
    display: inline-block;
    overflow: hidden;
    width: 33px;
    height: 33px;
    margin: 0 4px;
    -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
         -o-transition-duration: .2s;
            transition-duration: .2s;
    text-align: center;
    border: 1px solid #b30344;
    border-radius: 50%;
}

.header-services a img{
    position: relative;
    top: -44px;
}

.header-services a:hover img{
    top: 5px;
}

.header-services a:hover{
    background-color: #b30344;
}

/* humburger */

.humburger{
    position: relative;
    display: none;
    width: 33px;
    height: 33px;
    cursor: pointer;
    -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
         -o-transition-duration: .2s;
            transition-duration: .2s;
    border: 1px solid #b30344;
    border-radius: 50%;
}

.humburger span{
    position: absolute;
    top: 10px;
    left: 50%;
    width: 20px;
    height: 2px;
    margin-left: -10px;
    -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
         -o-transition-duration: .2s;
            transition-duration: .2s;
    background-color: #b30344;
}

.humburger:before{
    position: absolute;
    top: 15px;
    left: 50%;
    width: 20px;
    height: 2px;
    margin-left: -10px;
    content: '';
    -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
         -o-transition-duration: .2s;
            transition-duration: .2s;
    background-color: #b30344;
}

.humburger:after{
    position: absolute;
    top: 20px;
    left: 50%;
    width: 20px;
    height: 2px;
    margin-left: -10px;
    content: '';
    -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
         -o-transition-duration: .2s;
            transition-duration: .2s;
    background-color: #b30344;
}

.humburger.active,
.humburger:hover{
    background-color: #b30344;
}

.humburger:hover span,
.humburger.active span,
.humburger:hover:before,
.humburger.active:before,
.humburger:hover:after,
.humburger.active:after{
    background-color: #fff;
}

/* phones */

.header-phones{
    font-size: 16px;
    font-weight: 700;
    margin-left: -20px;
    color: #000;
}

/* ==========================================================================
sidebar
========================================================================== */

.sidenav{
    position: fixed;
    z-index: 1;
    z-index: 1040;
    top: 0;
    right: 0;
    overflow-x: hidden;
    width: 0;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: .3s;
    background-color: #b30344;
}

.sidenav > .container{
    min-width: 280px;
}

.sidenav-close{
    text-align: right;
}

.sidenav-close span{
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../i/close.svg) 0 0 no-repeat;
    -webkit-background-size: cover;
            background-size: cover;
}

/* nav */

.sidenav-nav{
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.sidenav-nav li:first-child{
    margin-top: 0;
}

.sidenav-nav li{
    margin-top: 10px;
}

.sidenav-nav li a{
    font-size: 20px;
    color: #fff;
}

/* phones */

.sidenav-phones p:first-child{
    margin-top: 0;
}

.sidenav-phones p{
    margin-top: 10px;
}

.sidenav-phones a{
    font-size: 18px;
    color: #fff;
}

/* ==========================================================================
main nav
========================================================================== */

.row-main-nav{
    background-color: #004d55;
}

.main-nav{
    font-size: 0;
    line-height: 0;
}

.main-nav li{
    display: inline-block;
}

.main-nav li a{
    font-size: 16px;
    line-height: 60px;
    position: relative;
    display: block;
    height: 60px;
    padding: 0 21px;
    -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
         -o-transition-duration: .2s;
            transition-duration: .2s;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.main-nav li a span{
    position: relative;
}

.main-nav li a:hover{
    color: #004d55;
}

.main-nav li a:before{
    position: absolute;
    top: 0;
    right: -1px;
    visibility: hidden;
    width: 102%;
    height: 100%;
    content: '';
    -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
         -o-transition-duration: .2s;
            transition-duration: .2s;
    opacity: 0;
    background-color: #f1f1f1;
}

.main-nav li a:hover:before{
    visibility: visible;
    opacity: 1;
}

.main-nav li:first-child a:after{
    content: none;
}

.main-nav li a:after{
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 32px;
    margin-top: -16px;
    content: '';
    background-color: #eee;
}

/* ==========================================================================
main
========================================================================== */

.row-main{
    padding: 170px 0 65px;
    background: url(../i/bg-main.jpg) center 0 no-repeat;
    -webkit-background-size: cover;
            background-size: cover;
}

/* main text */

.main-text{
    margin-bottom: 100px;
    text-align: center;
}

.main-text h3{
    font-size: 35px;
    font-weight: normal;
    line-height: 1;
    margin: 0 0 12px;
    color: #5b5b5b;
}

.main-text p{
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
}

.main-text p strong{
    color: #004d55;
}

.main-text p:last-child{
    margin-top: 15px;
}

.main-text a{
    font-size: 15px;
    font-weight: normal;
    line-height: 60px;
    display: block;
    width: 250px;
    height: 60px;
    margin: 0 auto;
    -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
         -o-transition-duration: .2s;
            transition-duration: .2s;
    color: #fff;
    border-radius: 30px;
    background-color: #004d55;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .33);
}

.main-text a:hover{
    color: #004d55;
    background-color: #eee;
}

/* main icon */

.main-icon{
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
}

.main-icon p:first-child{
    margin-bottom: 10px;
}

/* ==========================================================================
about
========================================================================== */

.row-about{
    padding: 49px 0 57px;
}

.about-block{
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.about-block__text{
    padding-right: 50px;
}

/* ==========================================================================
author
========================================================================== */

.row-author{
    padding-top: 55px;
    background-image: linear-gradient(50deg, #b40644 0%, #4f2e52 55%, #0f545a 100%);
}

.row-author h2{
    color: #fff;
}

/* image */

.author-image{
    padding-top: 34px;
}

.author-image:before{
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 421px;
    height: 726px;
    content: '';
    background: url(../i/author-photo.png) 0 0 no-repeat;
    -webkit-background-size: contain;
            background-size: contain;
}

.author-cloud{
    float: right;
    margin-right: -14px;
}

/* answer */

.author-cloud{
    font-size: 18px;
    position: relative;
    z-index: 1;
    width: 275px;
    height: 219px;
    padding: 47px 0 0 17px;
    text-align: center;
    background: url(../i/author-cloud.png) 0 0 no-repeat;
}

/* text */

.author-text{
    font-size: 18px;
    padding: 25px 0 38px;
    text-align: center;
    color: #fff;
}

.author-text h3{
    font-size: 30px;
    font-weight: normal;
    margin: 0 0 5px;
}

.author-text table{
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
}

.author-text table td{
    line-height: 1.1;
    position: relative;
    padding: 11px 0 11px 47px;
    vertical-align: top;
}

.author-text table td:before{
    position: absolute;
    top: 17px;
    left: 0;
    width: 30px;
    height: 70px;
    content: '';
    background: url(../i/bullet-lg.png) 0 0 no-repeat;
}

.author-text table td strong{
    font-family: FuturaDemiCTT-Normal;
    font-size: 35px;
    font-weight: normal;
}

.author-text p{
    max-width: 502px;
    margin: 31px auto;
}

.author-text a{
    font-size: 15px;
    line-height: 60px;
    display: block;
    width: 250px;
    height: 60px;
    margin: 0 auto;
    -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
         -o-transition-duration: .2s;
            transition-duration: .2s;
    text-transform: uppercase;
    color: #fff;
    border-radius: 30px;
    background-color: #b30344;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .33);
}

.author-text a:hover{
    color: #b30344;
    background-color: #ddd;
}

/* ==========================================================================
section
========================================================================== */

.row-sections{
    padding: 52px 0 65px;
    background: url(../i/bg-sections.jpg) center bottom no-repeat;
    -webkit-background-size: cover;
            background-size: cover;
}

.sections-header{
    line-height: 1.3;
    margin-bottom: 30px;
    text-align: center;
}

.sections-header h2{
    margin-bottom: 0;
}

.sections-header p{
    font-size: 30px;
    color: #626262;
}

.sections-list ul li:first-child{
    margin-top: 0;
}

.sections-list ul li{
    font-size: 18px;
    position: relative;
    margin-top: 21px;
    padding-left: 38px;
}

.sections-list ul li:before{
    position: absolute;
    top: 4px;
    left: 0;
    width: 24px;
    height: 13px;
    content: '';
    background: url(../i/bulet-sm.png) 0 0 no-repeat;
}

.sections-more{
    padding-top: 49px;
    text-align: center;
}

.sections-more a{
    font-size: 15px;
    line-height: 60px;
    display: block;
    overflow: hidden;
    max-width: 374px;
    height: 60px;
    margin: 0 auto;
    -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
         -o-transition-duration: .2s;
            transition-duration: .2s;
    letter-spacing: -.4px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #e19991;
    border-radius: 30px;
    background-color: #e19991;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .33);
}

.sections-more a:hover{
    color: #e19991;
    background-color: #fff;
}

.price-header{
    margin-bottom: 18px;
}

/* ==========================================================================
price
========================================================================== */

.row-price{
    padding: 50px 0 70px;
}

/* price block */

.price-block{
    margin-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 58px;
    border: 3px solid #004d55;
    border-radius: 10px;
    box-shadow: 0 10px 42px rgba(0, 0, 0, .1);
}

.price-block__header{
    font-size: 18px;
    line-height: 1.2;
    padding: 20px 10px 27px;
    text-align: center;
    color: #fff;
    background-color: #004d55;
}

.price-block__header strong{
    font-size: 30px;
    font-weight: normal;
}

.price-block__body{
    margin-bottom: 34px;
    padding: 3px 10px 0;
}

.price-block__price{
    position: relative;
    width: 325px;
    height: 132px;
    margin: 0 auto 35px;
    background: url(../i/price.png) 0 0 no-repeat;
}

.price-block__price span{
    font-size: 40px;
    position: absolute;
    bottom: 15px;
    left: 160px;
    display: block;
    color: #fff;
}

.price-block__info{
    display: table;
    width: 100%;
    margin-bottom: 15px;
}

.price-block__timer{
    display: table-cell;
    width: 50%;
    vertical-align: top;
}

.price-block__timer_title{
    font-family: FuturaDemiCTT-Normal;
    font-size: 20px;
    font-weight: normal;
    position: relative;
    margin-bottom: 14px;
    padding-left: 40px;
    text-transform: uppercase;
    color: #004d55;
}

.price-block__timer_title:before{
    position: absolute;
    top: -2px;
    left: 0;
    width: 26px;
    height: 26px;
    content: '';
    background: url(../i/clock.png) 0 0 no-repeat;
}

.price-block__date{
    display: table-cell;
    width: 50%;
    vertical-align: top;
}

.price-block__date p{
    font-family: FuturaDemiCTT-Normal;
    font-size: 20px;
    font-weight: normal;
    position: relative;
    margin-bottom: 8px;
    padding-left: 40px;
    text-transform: uppercase;
    color: #004d55;
}

.price-block__date p:before{
    position: absolute;
    top: -2px;
    left: 0;
    width: 23px;
    height: 25px;
    content: '';
    background: url(../i/calendar.png) 0 0 no-repeat;
}

.price-block__date table{
    width: 100%;
}

.price-block__date table tr td{
    line-height: 1;
    vertical-align: bottom;
}

.price-block__date table tr td:first-child{
    font-size: 18px;
    text-align: right;
}

.price-block__date table tr td + td{
    font-family: FuturaDemiCTT-Normal;
    font-size: 20px;
}

.price-block__desc{
    font-size: 18px;
    margin-bottom: 17px;
    text-align: center;
}

.price-block__coffee{
    font-size: 18px;
    position: relative;
    display: table;
    margin: 0 auto;
    padding-left: 48px;
}

.price-block__coffee:before{
    position: absolute;
    top: -8px;
    left: 0;
    width: 34px;
    height: 41px;
    content: '';
    background: url(../i/coffee.png) 0 0 no-repeat;
}

.buy-tinkoff .buy-tinkoff-button {
    font-size: 21px;
    color: #b30344;
}

.buy-tinkoff {
    text-align: center;
    margin-bottom: 10px;
    color: #888;
}

.price-block__footer{
    text-align: center;
}

.price-block__footer button{
    line-height: 60px;
    width: 100%;
    max-width: 250px;
    height: 60px;
    -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
         -o-transition-duration: .2s;
            transition-duration: .2s;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #b30344;
    border-radius: 30px;
    background-color: #b30344;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .33);
}

.price-block__footer button:hover{
    color: #b30344;
    background-color: #fff;
}

/* hidden */

.price-block__hidden{
    display: none;
}

/* clock */

.flip-clock-label{
    display: none;
}

.clock-message{
    color: red;
    text-align: center;
}

/* ==========================================================================
members
========================================================================== */

.row-members{
    padding: 57px 0 36px;
    color: #fff;
    background: url(../i/bg-members.jpg) center 0 no-repeat;
    -webkit-background-size: cover;
            background-size: cover;
}

.members-header{
    margin-bottom: 32px;
}

/* place */

.members-place{
    font-size: 18px;
    position: relative;
    margin-bottom: 27px;
    padding-left: 94px;
}

.members-place:before{
    position: absolute;
    top: 4px;
    left: 23px;
    width: 44px;
    height: 64px;
    content: '';
    background: url(../i/pin.png) 0 0 no-repeat;
}

.members-place p:first-child{
    margin-bottom: 18px;
}

.members-place strong{
    font-family: FuturaDemiCTT-Normal;
    font-size: 25px;
    font-weight: normal;
}

.members-place a{
    font-size: 16px;
    text-decoration: underline;
    color: #fff;
}

.members-place a:hover{
    text-decoration: none;
}

/* cash */

.members-cash{
    font-size: 18px;
    position: relative;
    padding-left: 94px;
}

.members-cash strong{
    font-family: FuturaDemiCTT-Normal;
    font-size: 25px;
    font-weight: normal;
}

.members-cash:before{
    position: absolute;
    top: 13px;
    left: 14px;
    width: 66px;
    height: 48px;
    content: '';
    background: url(../i/cash.png) 0 0 no-repeat;
}

/* discount */

.members-discount{
    font-family: FuturaDemiCTT-Normal;
    font-size: 25px;
    line-height: 1;
    padding-left: 60px;
}

.members-discount strong{
    font-size: 125px;
}

.members-discount span{
    font-size: 79px;
}

.members-discount small{
    font-family: 'FuturaBookCTT-Normal';
    font-size: 16px;
}

/* pay 100 */

.members-pay{
    margin-top: 50px;
    margin-bottom: 16px;
}

.members-pay-100{
    text-align: right;
}

.members-pay-100 a{
	display: inline-block;
    font-size: 15px;
    line-height: 60px;
    width: 250px;
    height: 60px;
    margin-right: 5px;
    -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
         -o-transition-duration: .2s;
            transition-duration: .2s;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    border-radius: 30px;
    background-color: #b30344;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .33);
}

.members-pay-100 a:hover{
    color: #b30344;
    background-color: #fff;
}

/* pay 50 */

.members-pay-50 a{
	display: inline-block;
    font-size: 15px;
    line-height: 60px;
    width: 250px;
    height: 60px;
    margin-left: 5px;
    -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
         -o-transition-duration: .2s;
            transition-duration: .2s;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    border-radius: 30px;
    background-color: #004d55;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .33);
}

.members-pay-50 a:hover{
    color: #004d55;
    background-color: #fff;
}

/* more */

.members-readmore{
    padding-left: 196px;
}

.members-readmore a{
    text-decoration: underline;
    color: #fff;
}

.members-readmore a:hover{
    text-decoration: none;
}

/* ==========================================================================
whom
========================================================================== */

.row-whom{
    padding: 52px 0 58px;
    background-color: #fbfcfc;
}

.whom-header{
    margin-bottom: 15px;
}

/* block */

.whom-block{
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.whom-block p:first-child{
    margin-bottom: 20px;
}

/* not fit */

.not-fit-header{
    font-size: 30px;
    margin: 36px 0 20px;
    text-align: center;
}

.not-fit-header span{
    color: #b30344;
}

.not-fit-block{
    margin-top: 15px;
    margin-bottom: 15px;
}

.not-fit-block p{
    font-size: 18px;
    min-height: 198px;
    padding: 23px 10px 23px 54px;
    border-radius: 10px;
    background: url(../i/close.png) 15px 13px no-repeat;
    background-color: white;
    box-shadow: 0 10px 42px rgba(0, 0, 0, .1);
}

/* ==========================================================================
benefits
========================================================================== */
.row-benefits {
  padding: 35px 0 95px 0;
  background: #fbfcfc;
}

.row-benefits .benefits-list > ol {
  padding: 0;
  margin: 0 0;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  counter-reset: section;
}

@media (min-width: 576px) {
  .row-benefits .benefits-list > ol {
    margin: 0 0;
  }
}

.row-benefits .benefits-list > ol > li {
  padding: 0 15px;
  margin: 30px auto;
  flex: 1 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .row-benefits .benefits-list > ol > li {
    flex: 1 0 50%;
    max-width: 50%;
    margin: 30px 0 0 0;
  }
}

@media (min-width: 992px) {
  .row-benefits .benefits-list > ol > li {
    flex: 1 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 1200px) {
  .row-benefits .benefits-list > ol > li {
    flex: 1 0 25%;
    max-width: 25%;
  }
}

.row-benefits .benefits-list > ol > li .item {
  position: relative;
  padding: 80px 0 0 0;
  text-align: center;
}

@media (min-width: 576px) {
  .row-benefits .benefits-list > ol > li .item {
    text-align: left;
  }
}

.row-benefits .benefits-list > ol > li .item:before {
  content: counters(section, ".") " ";
  counter-increment: section;
  color: #adadad;
  font-size: 140px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=20)";
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=20);
  filter: alpha(opacity=20);
  -webkit-opacity: 0.2;
  -khtml-opacity: 0.2;
  -moz-opacity: 0.2;
  -ms-opacity: 0.2;
  -o-opacity: 0.2;
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media (min-width: 576px) {
  .row-benefits .benefits-list > ol > li .item:before {
    right: auto;
  }
}

.row-benefits .benefits-list > ol > li .item > .text {
  color: #000000;
  font-size: 16px;
}

.row-benefits .benefits-list > ol > li .item > h1,
.row-benefits .benefits-list > ol > li .item > h2,
.row-benefits .benefits-list > ol > li .item > h3,
.row-benefits .benefits-list > ol > li .item > h4,
.row-benefits .benefits-list > ol > li .item > h5 {
  color: #000000;
  font-size: 21px;
  font-weight: bold;
  margin: 0 0 18px 0;
  padding: 0;
}

.row-benefits .benefits-list > ol > li:first-child {
  margin-top: 0;
}

@media (min-width: 576px) {
  .row-benefits .benefits-list > ol > li:nth-child(2) {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .row-benefits .benefits-list > ol > li:nth-child(3) {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .row-benefits .benefits-list > ol > li:nth-child(4) {
    margin-top: 0;
  }
}

.row-benefits .benefits-header {
  margin-bottom: 90px;
}

.row-benefits .benefits-header > h1,
.row-benefits .benefits-header > h2,
.row-benefits .benefits-header > h3,
.row-benefits .benefits-header > h4,
.row-benefits .benefits-header > h5 {
  font-family: FuturaDemiCTT-Normal;
  font-size: 25px;
  font-weight: normal;
  line-height: 1.4;
  position: relative;
  display: table;
  margin: 0 auto;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-top: 7px;
}

@media (min-width: 576px) {
  .row-benefits .benefits-header > h1,
  .row-benefits .benefits-header > h2,
  .row-benefits .benefits-header > h3,
  .row-benefits .benefits-header > h4,
  .row-benefits .benefits-header > h5 {
    font-size: 35px;
  }
}

.row-benefits .benefits-header > h1:after,
.row-benefits .benefits-header > h2:after,
.row-benefits .benefits-header > h3:after,
.row-benefits .benefits-header > h4:after,
.row-benefits .benefits-header > h5:after {
  position: absolute;
  top: 0;
  right: -100px;
  width: 95px;
  height: 48px;
  content: none;
  background: url("../i/h2-right.png") 0 0 no-repeat;
}

@media (min-width: 576px) {
  .row-benefits .benefits-header > h1:after,
  .row-benefits .benefits-header > h2:after,
  .row-benefits .benefits-header > h3:after,
  .row-benefits .benefits-header > h4:after,
  .row-benefits .benefits-header > h5:after {
    content: '';
  }
}

.row-benefits .benefits-header > h1:before,
.row-benefits .benefits-header > h2:before,
.row-benefits .benefits-header > h3:before,
.row-benefits .benefits-header > h4:before,
.row-benefits .benefits-header > h5:before {
  position: absolute;
  top: 0;
  left: -100px;
  width: 95px;
  height: 48px;
  content: none;
  background: url("../i/h2-left.png") 0 0 no-repeat;
}

@media (min-width: 576px) {
  .row-benefits .benefits-header > h1:before,
  .row-benefits .benefits-header > h2:before,
  .row-benefits .benefits-header > h3:before,
  .row-benefits .benefits-header > h4:before,
  .row-benefits .benefits-header > h5:before {
    content: '';
  }
}

/* ==========================================================================
competition
========================================================================== */

.row-competition{
    padding: 48px 0 57px;
}

.competition-header{
    margin-bottom: 105px;
}
.competition-image > img {
  display: block;
}

@media (min-width: 768px) {
  .competition-image > img {
    margin: 0 auto !important;
  }
}

.competition-list > .note {
  color: #777777;
  font-size: 16px;
  margin: 20px 0 0 0;
}

.competition-list > ul {
  padding: 0;
  margin: 0 0 30px 0;
  list-style: none;
}

.competition-list > ul > li {
  padding: 0;
  margin: 30px 0 0 0;
  color: #000000;
  font-size: 21px;
  display: flex;
  align-items: center;
}

.competition-list > ul > li > i {
  display: block;
}

.competition-list > ul > li > i.icon-photocanon {
  margin: 0 24px 0 0;
  width: 32px;
  height: 23px;
  min-width: 32px;
  background: url("../../../images/icon-photocanon.png") no-repeat;
}

.competition-list > ul > li > i.icon-landing {
  margin: 0 20px 0 0;
  width: 36px;
  height: 27px;
  min-width: 36px;
  background: url("../../../images/icon-landing.png") no-repeat;
}

.competition-list > ul > li:first-child {
  margin-top: 0;
}

.competition-list > p {
  padding: 0;
  margin: 0 0 15px 0;
  color: #000000;
  font-size: 22px;
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .competition-list > p {
    text-align: left;
  }
}

.competition-list > p:last-child {
  margin-bottom: 0;
}

.competition-list > h4 {
  color: #000000;
  padding: 0;
  margin: 0 0 34px 0;
  font-size: 21px;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 768px) {
  .competition-list > h4 {
    text-align: left;
  }
}
/* .competition-image img{
    margin-left: 280px;
}

.competition-list ul{
    max-width: 450px;
    margin-left: -22px;
}

.competition-list ul li:first-child{
    margin-top: 0;
}

.competition-list ul li{
    font-size: 18px;
    position: relative;
    margin-top: 21px;
    padding-left: 38px;
}

.competition-list ul li:before{
    position: absolute;
    top: 4px;
    left: 0;
    width: 24px;
    height: 13px;
    content: '';
    background: url(../i/bulet-sm.png) 0 0 no-repeat;
} */

/* ==========================================================================
reviews
========================================================================== */

.row-reviews{
    padding: 62px 0 65px;
    background-color: #b60044;
}

.reviews-header h2{
    font-weight: normal;
    position: relative;
    margin: 0 0 0 14px;
    color: #fff;
}

.reviews-header h2:after{
    position: absolute;
    top: 18px;
    right: -70px;
    width: 45px;
    height: 19px;
    content: '';
    background: url(../i/bullet-md.png) 0 0 no-repeat;
}

/* slick */

.row-reviews .slick-list{
    max-width: 540px;
    margin: 0 auto;
}

.reviews-slider .slick-prev{
    font-size: 0;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    width: 28px;
    height: 51px;
    margin-top: -25px;
    background: url(../i/arrow-prev.png) 0 0 no-repeat;
}

.reviews-slider .slick-next{
    font-size: 0;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    width: 28px;
    height: 51px;
    margin-top: -25px;
    background: url(../i/arrow-next.png) 0 0 no-repeat;
}

.row-reviews .slick-dots{
    font-size: 0;
    line-height: 0;
}

.row-reviews .slick-dots{
    font-size: 0;
    line-height: 0;
    margin-top: 20px;
    text-align: center;
}

.row-reviews .slick-dots li{
    font-size: 0;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .5);
}

.row-reviews .slick-dots li.slick-active{
    background-color: rgba(255, 255, 255, 1);
}

/* slide */

.reviews-slide{
    font-size: 18px;
    text-align: center;
    color: #fff;
}

.reviews-slide strong{
    font-family: FuturaDemiCTT-Normal;
    font-size: 20px;
    font-weight: normal;
}

.reviews-slide a{
    font-size: 16px;
    color: #fff;
}

.reviews-slide table{
    width: 100%;
    max-width: 200px;
    margin: 0 auto 7px;
}

.reviews-slide table td{
    line-height: 1;
    vertical-align: middle;
}

.reviews-slide table td img{
    display: inline-block;
}

/* ==========================================================================
qua
========================================================================== */

.row-qua{
    padding: 50px 0;
    background: url(../i/bg-qua.png) center bottom no-repeat;
    background-size: cover;
}

/* masonry */

.masonry-container{
    margin: 0 -10px;
}

.masonry-item-two{
    width: 47%;
    margin: 1.5%;
}

.masonry-item-three{
    width: 31%;
    margin: 1.1%;
}

/* block */

.qua-block{
    padding: 48px 25px 50px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 10px 42px rgba(0, 0, 0, .1);
}

.qua-block__title{
    font-family: FuturaDemiCTT-Normal;
    font-size: 25px;
    margin-bottom: 25px;
    color: #333;
}

.qua-block__container{
    font-size: 18px;
}

/* ==========================================================================
sign up
========================================================================== */

.row-sign-up{
    padding: 56px 0 69px;
}

.sign-up{
    font-size: 25px;
    text-align: center;
}

.sign-up strong{
    font-family: FuturaDemiCTT-Normal;
    font-weight: normal;
    text-transform: uppercase;
}

.sign-up a{
    font-size: 15px;
    line-height: 60px;
    display: block;
    width: 250px;
    height: 60px;
    margin: 24px auto 0;
    -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
         -o-transition-duration: .2s;
            transition-duration: .2s;
    text-transform: uppercase;
    color: #fff;
    border-radius: 30px;
    background-color: #b30344;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .33);
}

.sign-up a:hover{
    color: #b30344;
    background-color: #fff;
}

/* ==========================================================================
contacts
========================================================================== */

.contacts-left:before{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: #e19991;
}

.contacts-right:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: #00545a;
}

/* contacts-info */

.contacts-info{
    font-family: FuturaDemiCTT-Normal;
    font-size: 25px;
    position: relative;
    padding: 83px 0 0 37px;
    color: #fff;
}

.contacts-info p{
    margin: 23px 0;
}

.contacts-info a{
    color: #fff;
}

.contacts-info small{
    font-family: 'FuturaBookCTT-Normal';
    font-size: 16px;
}

/* ==========================================================================
footer
========================================================================== */

.row-footer{
    font-size: 18px;
    padding: 50px 0 63px;
    color: #fff;
    background-color: #333;
}

.row-footer p{
    margin: 10px 0;
}

.footer-copyright{
    text-align: right;
}

.footer-copyright a{
    color: #fff;
}

.footer-logo{
    text-align: center;
}

.footer-links{
    color: #ccc;
}

.footer-links a{
    text-decoration: underline;
    color: #ccc;
}

.footer-links a:hover{
    text-decoration: none;
}

.wa {
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-block;
}