/* RESET
--------------------------------*/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    outline: none;
    -webkit-appearance: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, b-footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

p {
    margin: 0;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
}

/* REUSABLE STYLES
---------------------------------*/
.clearfix:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0;
}

.bxbb {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* FONTS
---------------------------------*/
body {
    font-family: 'Open Sans', sans-serif;
}

/* FOUNDATION
------------------------- --------*/
html {
    height: 100%;
}

body {
    color: #283547;
    font-size: calc(16px + (50 - 16) * ((100vw - 320px) / (1920 - 320)));
    background: #f6f7fb url('../images/main-bg-desktop.jpg') no-repeat top center / 1920px auto;
}

a, button {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

a {
    color: #90b248;
    text-decoration: none;
}

button, input[type="submit"] {
    cursor: pointer;
}

img {
    display: block;
    border: none;
}

svg {
    pointer-events: none;
}

a:hover {
    text-decoration: none;
}

/* GENERAL
---------------------------------*/
.wrap {
    margin: 0 auto;
    width: 100%;
    max-width: 1260px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.link-line-small {
    position: relative;
}

.link-line-small:after {
    content: '';
    position: absolute;
    z-index: 0;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 4px;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    -o-transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    background-color: #fff;
}

.link-line-small:hover:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.btn {
    position: relative;
    display: block;
    min-width: 226px;
    font-weight: bold;
    padding: 25px 15px;
    border-radius: 40px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #283547;
    text-transform: uppercase;
    -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    overflow: hidden;
    background-color: #ffbd1a;
    font-size: 16px;
}

.btn:hover {
    background-color: #ffa11a;
}

@media (max-width: 1700px) {
    .wrap {
        max-width: 1180px;
    }
}

@media (max-width: 1600px) {
    body {
        background-size: 1600px auto;
    }
}

@media (max-width: 1400px) {
    body {
        background-size: 1400px auto;
    }

    .wrap {
        max-width: 1060px;
    }

    .btn {
        font-size: 15px;
        min-width: 165px;
        padding: 18px 10px;
    }
}

@media (max-width: 1300px) {
    .wrap {
        max-width: 1060px;
    }

    .btn {
        font-size: 15px;
        min-width: 165px;
        padding: 18px 10px;
    }
}

@media (max-width: 1200px) {
    body {
        background-size: 1250px auto;
    }

    .wrap {
        max-width: 1060px;
    }

    .btn {
        font-size: 15px;
        min-width: 165px;
        padding: 18px 10px;
    }
}

@media (max-width: 1140px) {
    .wrap {
        padding: 0 25px;
    }
}

@media (max-width: 1075px) {
    .page-title-holder {
        padding-top: 50px;
    }
}

@media (max-width: 1024px) {
    .wrap {
        max-width: 860px;
        padding: 0 30px;
    }

    .btn {
        min-width: 144px;
        padding: 16px 8px;
        font-size: 13px;
    }
}

@media (max-width: 680px) {
    .wrap {
        max-width: 860px;
        padding: 0 14px;
    }

    .btn {
        min-width: 164px;
        padding: 16px 8px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 17px 8px;
        font-size: 12px;
    }
}

/* header
---------------------------------*/
.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    padding: 20px 0;
    font-size: 17px;
    color: #595959;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.header a {
    color: inherit;
}

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

.header .logo-link {
    left: 0;
    top: -4px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.header .logo {
    width: 170px;
    height: auto;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.scrolled .header {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, .85);
    -webkit-box-shadow: 0 10px 15px rgba(18, 16, 11, .15);
    box-shadow: 0 10px 15px rgba(18, 16, 11, .15);
}

.scrolled .header .logo {
    width: 110px;
}

@media (max-width: 1200px) {
    .header {
        padding: 10px 0;
    }

    .header .logo {
        width: 150px;
    }
}

@media (max-width: 1024px) {
    .header .logo {
        width: 140px;
    }
}

@media (max-width: 1000px) {
    .header {
        font-size: 13px;
    }
}

@media (max-width: 850px) {
    body {
        background-size: 950px auto;
    }

    .header {
        padding: 8px 0;
    }
}

@media (max-width: 767px) {
    .header .phone {
        display: none;
    }
}

@media (max-width: 680px) {
    body {
        background-image: url('../images/main-bg-mobile.png');
        background-position: top right;
        background-size: auto;
    }
}

@media (max-width: 480px) {
    body {
        background-position: top right -54px;
    }
}

/* list-services
---------------------------------*/
.info-list {
    list-style-type: none
}

.info-list li {
    list-style: none;
    font-size: 19px;
    line-height: 25px;
    color: #283547;
    position: relative;
    margin-bottom: 8px;
}

.sub-info-list {
    margin-top: 5px;
    margin-bottom: 5px;
}

.sub-info-list > li {
    margin-bottom: 8px;
    font-size: 18px;
}

.list-check > li {
    padding-left: 38px;
}

.list-check > li:before {
    content: '';
    position: absolute;
    height: 12px;
    width: 5px;
    border: solid #12b360;
    border-width: 0 3px 3px 0;
    left: 3px;
    top: 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.list-circle > li {
    padding-left: 27px;
}

.list-circle > li:before {
    content: '';
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    background: #12b360;
    border-radius: 50%;
    left: 0;
    top: 10px;
}

.list-services {
    padding-top: 116px;
    overflow: hidden;
}

.list-services .service {
    padding: 80px 0;
    margin-bottom: 330px;
}

.list-services .service:nth-child(2n) .content {
    margin-left: auto;
    max-width: 600px;
}

.list-services .service:last-child {
    margin-bottom: 0;
}

.list-services .service-img-holder {
    display: none;
    margin: 0 auto;
    max-width: 290px;
    overflow: visible;
}

.list-services .service-img {
    display: block;
}

.list-services .service-nutrition-plan .service-img {
    margin-left: -9px;
}

.list-services .service-exercise-program .service-img {
    margin-right: -39px;
}

.list-services .service-exercise-nutrition .service-img {
    margin-left: -16px;
}

.list-services .heading {
    font-size: 50px;
    line-height: 55px;
    color: #283547;
    margin-bottom: 30px;
    font-weight: bold;
}

.list-services .service.service-nutrition-plan .content {
    max-width: 511px;
    padding-top: 35px;
}

.list-services .service.service-exercise-program .content {
    max-width: 595px;
    padding-top: 6px;
    padding-top: 35px;
}

.list-services .service.service-exercise-program .heading {
    color: #ffffff;
}

.list-services .service.service-exercise-program .list-check > li:before {
    border-color: #ffffff;
}

.list-services .service.service-exercise-program .info-list li {
    color: #ffffff;
}

.list-services .service.service-exercise-nutrition .content {
    max-width: 665px;
    padding-top: 52px;
}

.list-services .price-order-holder {
    margin-top: 37px;
}

.list-services .price-order-holder .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.list-services .price-order-holder .btn-holder + .prices {
    margin-left: 12px;
}

.list-services .price-order-holder .regular-price {
    color: #283547;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.list-services .price-order-holder .amount {
    font-size: 36px;
    font-weight: bold;
}

.list-services .price-order-holder .period {
    font-size: 18px;
    margin-bottom: 5px;
}

.list-services .price-order-holder_update {
    border: 4px dotted #ffbd1a;
    padding: 3px;
    border-radius: 40px;
    margin-left: -18px;
    display: inline-block;
}

.list-services .prices-update {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.list-services .prices-update .regular-price:first-child .amount {
    position: relative;
    color: #b7bac0;
    font-size: 22px;
    margin: 5px 0 6px 7px;
    display: inline-block;
}

.list-services .prices-update .regular-price:first-child .amount:before {
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;;
    content: '';
    display: block;
    height: 4px;
    background-color: rgba(231, 23, 79, .6);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.list-services .prices-update .additional-info {
    width: 60px;
    height: 60px;
    padding: 19px 6px 10px;
    background: url('../images/additional-info-bg.png') no-repeat center;
    text-align: center;
}

.list-services .prices-update .info-text {
    font-size: 9px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 10px;
}

.list-services .prices-update .info-text span {
    font-size: 13px;
    margin-top: 2px;
    display: block;
}

@media (max-width: 1700px) {
    .list-services .service {
        padding: 65px 0;
        margin-bottom: 300px;
    }

    .list-services .service.service-nutrition-plan .content {
        max-width: 465px;
        padding-top: 20px;
    }

    .list-services .service.service-exercise-program .content {
        max-width: 525px;
        padding-top: 45px;
    }

    .list-services .service.service-exercise-nutrition .content {
        max-width: 620px;
        padding-top: 25px;
    }

    .info-list li {
        line-height: 22px;
        margin-bottom: 5px;
    }
}

@media (max-width: 1500px) {
    .list-services .service {
        padding: 50px 0;
    }

    .list-services .heading {
        font-size: 45px;
        line-height: 45px;
    }

    .info-list li {
        font-size: 16px;
    }

    .list-check > li {
        padding-left: 28px;
    }
}

@media (max-width: 1400px) {
    .list-services {
        padding-top: 90px;
    }

    .list-services .service {
        margin-bottom: 255px;
        padding: 40px 0;
    }
}

@media (max-width: 1300px) {
    .list-services .service.service-exercise-program .content {
        max-width: 500px;
    }

    .list-services .service.service-exercise-nutrition .content {
        max-width: 550px;
    }

    .list-services .heading {
        font-size: 36px;
        line-height: 40px;
    }

    .list-services .price-order-holder {
        margin-top: 30px;
    }

    .list-services .price-order-holder .amount {
        font-size: 28px;
    }

    .list-services .price-order-holder .period {
        font-size: 13px;
        margin-bottom: 2px;
    }
}

@media (max-width: 1200px) {
    .list-services .price-order-holder_update {
        margin-left: -7px;
    }

    .list-services .price-order-holder .btn-holder + .prices {
        margin-left: 14px;
    }

    .list-services .prices-update .additional-info {
        background-size: auto 50px;
        width: 50px;
        height: 50px;
        padding: 14px 6px 10px;
    }

    .list-services .prices-update .regular-price:first-child .amount {
        margin-top: 0;
        margin-bottom: 0;
    }

    .list-services .service {
        padding: 30px 0;
        margin-bottom: 220px;
    }

    .list-services .service.service-nutrition-plan .content {
        max-width: 413px;
        padding-top: 0;
    }

    .list-services .service.service-exercise-program .content {
        max-width: 450px;
        margin-right: 15px;
        padding-top: 0;
    }

    .list-services .service.service-exercise-nutrition .content {
        padding-top: 0;
    }
}

@media (max-width: 1024px) {
    .list-services .service {
        margin-bottom: 230px;
    }

    .list-services .service.service-nutrition-plan .content {
        padding-top: 47px;
        max-width: 390px;
    }

    .list-services .service.service-exercise-program .content {
        padding-top: 45px;
        margin-right: 0;
    }

    .list-services .heading {
        margin-bottom: 22px;
    }

    .info-list li {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 6px;
    }

    .list-check > li {
        padding-left: 24px;
    }

    .list-check > li:before {
        width: 4px;
        height: 10px;
        top: 2px;
        left: 2px;
        border-width: 0 2px 2px 0;
    }

    .list-circle > li {
        padding-left: 15px;
    }

    .list-circle > li:before {
        width: 4px;
        height: 4px;
        top: 7px;
    }

    .list-services .prices-update .regular-price:first-child .amount {
        font-size: 16px;
        line-height: 20px;
    }

    .list-services .prices-update .regular-price:first-child .amount:before {
        height: 3px;
    }
}

@media (max-width: 850px) {
    .list-services {
        padding-top: 70px;
    }

    .list-services .service {
        margin-bottom: 220px;
        padding: 20px 0;
    }

    .list-services .service.service-nutrition-plan .content {
        padding-top: 0;
        max-width: 305px;
    }

    .list-services .service.service-exercise-program .content {
        padding-top: 40px;
        max-width: 360px;
    }

    .list-services .service.service-exercise-nutrition .content {
        padding-top: 0;
        max-width: 400px;
    }

    .list-services .heading {
        font-size: 29px;
        line-height: 32px;
    }
}

@media (max-width: 680px) {
    .list-services {
        padding-top: 60px;
    }

    .list-services .service {
        padding: 35px 0 50px;
        margin-bottom: 0;
    }

    .list-services .service.service-nutrition-plan .content,
    .list-services .service.service-exercise-program .content,
    .list-services .service.service-exercise-nutrition .content {
        max-width: 450px;
        margin: 0 auto;
    }

    .list-services .service.service-exercise-nutrition {
        padding-top: 50px;
    }

    .list-services .service-img-holder {
        display: block;
    }

    .list-services .service .service-description {
        padding-top: 25px;
        padding-bottom: 37px;
    }

    .list-services .service.service-nutrition-plan .service-description {
        background: url('../images/services-nutrition-plan-bg.png') no-repeat center 80px;
    }

    .list-services .service.service-exercise-program .service-description {
        background: url('../images/services-exercise-program-bg.png') no-repeat center 4px;
    }

    .list-services .service.service-exercise-nutrition .service-description {
        background: url('../images/services-exercise-nutrition-bg.png') no-repeat center 165px;
    }

    .list-services .service.service-exercise-program {
        background: #04b8b6;
        background: -webkit-linear-gradient(left, #04b8b6 0%, #1ab133 100%);
        background: -webkit-gradient(linear, left top, right top, from(#04b8b6), to(#1ab133));
        background: -o-linear-gradient(left, #04b8b6 0%, #1ab133 100%);
        background: linear-gradient(to right, #04b8b6 0%, #1ab133 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#04b8b6', endColorstr='#1ab133', GradientType=1);
    }

    .list-services .heading {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .list-services .heading br {
        display: none;
    }

    .info-list li {
        font-size: 13px;
    }

    .list-services .price-order-holder .wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .list-services .price-order-holder_update {
        padding-left: 26px;
        position: relative;
    }

    .list-services .price-order-holder_update .btn {
        width: 155px;
        min-width: auto;
    }

    .list-services .price-order-holder .btn-holder + .prices {
        margin-left: 0;
        margin-right: 5px;
    }

    .list-services .prices-update .additional-info {
        position: absolute;
        left: -9px;
        top: -22px;
    }

    .list-services .prices-update .info-text {
        margin: 0;
        padding: 0;
        font-size: 7px;
    }

    .list-services .prices-update .info-text span {
        margin-top: 0;
        font-size: 10px;
    }

    .list-services .prices-update .regular-price:first-child .amount {
        margin: 0 0 0 19px;
    }

    .list-services .price-order-holder .amount {
        font-size: 23px;
    }
}

@media (max-width: 480px) {
    .list-services .service {
        padding-bottom: 20px;
    }

    .list-services .service .service-description {
        padding-bottom: 25px;
    }

    .list-services .service.service-exercise-program .content {
        padding-top: 0;
    }

    .list-services .heading {
        letter-spacing: -0.7px
    }

    .list-services .price-order-holder_update {
        margin-left: -6px;
        margin-right: -6px;
    }
}

@media (max-width: 370px) {
    .list-services .price-order-holder .wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .list-services .price-order-holder_update {
        display: block;
    }
}

/* footer
---------------------------------*/
.footer {
    height: 214px;
    padding-bottom: 20px;
    background: url('../images/footer-bg-desktop.png') no-repeat center/ 1920px auto;
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1500px;
}

@media (max-width: 1600px) {
    .footer .wrap {
        max-width: 1390px;
    }
}

@media (max-width: 1400px) {
    .footer .wrap {
        max-width: 1221px;
        padding: 0 15px;
    }
}
@media (max-width: 1024px) {
    .footer .wrap {
        padding: 0 95px;
    }
}

.footer .logo-link {
    display: inline-block;
    margin-top: 27px;
}

.footer-contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.footer .logo {
    width: 200px;
    height: auto;
}

.footer .logo-copyright .copyright {
    margin-top: 31px;
    font-size: 16px;
    color: #ffffff;
}

.footer .site-nav .list-item,
.footer .products-list .list-item {
    margin-top: 8px;
}

.footer .site-nav .list-item:first-child,
.footer .products-list .list-item:first-child {
    margin-top: 0;
}

.footer-contact-info .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 164px;
}

.footer-contact-info .link-holder {
    display: block;
    margin-top: 10px;
}

.footer-contact-info .link-holder:first-child {
    margin-top: 0;
}

.footer-contact-info .link-phone {
    color: #2e2f2d;
}

.footer-contact-info .phone-email .link {
    position: relative;
    margin-left: 33px;
}

.footer-contact-info .phone-email .link .icon {
    position: absolute;
    left: -33px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #cfcfcf;
}

.footer-contact-info .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(124, 124, 124, .3);
}

.footer-contact-info .socials .icon {
    font-size: 24px;
}

.page-dark .footer .logo {
    fill: #fff;
}

.page-dark .copyright {
    color: #7c7c7c;
}

.page-dark .footer-contact-info .link-phone {
    color: #7c7c7c;
}

.page-dark .footer-contact-info .phone-email .link .icon {
    color: #434343;
}

.mob-copyright-terms {
    display: none;
}

@media (max-width: 1600px) {
    .footer {
        background-size: 1600px;
        height: 178px;
    }

    .footer .logo-copyright .copyright {
        margin-top: 22px;
        font-size: 14px;
    }
}

@media (max-width: 1400px) {
    .footer {
        background-size: 1400px;
        height: 156px;
    }
}

@media (max-width: 1140px) {
    .footer {
        padding: 30px 0 35px;
    }

    .footer .logo-copyright .copyright {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .footer {
        padding: 10px 0;
        height: 67px;
        background: url('../images/footer-bg-tablet.png') no-repeat top left / auto;
    }

    .footer .logo-link {
        display: none;
    }

    .footer .logo-copyright .copyright {
        margin-top: 0;
        font-size: 6px;
    }
}

@media (max-width: 900px) {
    .footer {
        background-size: 900px auto;
        height: 58px;
    }
}

@media (max-width: 850px) {
    .footer {
        margin-top: 25px;
    }
}

@media (max-width: 700px) {
    .footer {
        background-size: 740px auto;
        height: 48px;
    }
}

@media (max-width: 680px) {
    .footer {
        background-image: url('../images/footer-bg-mobile.png');
        background-size: auto;
        height: 67px;
    }
}

@media (max-width: 480px) {
    .footer {
        background-position: top left -78px;
        height: 67px;
    }
}

/* animation */
@-webkit-keyframes expand {
    0% {
        -webkit-transform: scale3d(1, 0, 1);
        transform: scale3d(1, 0, 1);
    }
    25% {
        -webkit-transform: scale3d(1, 1.2, 1);
        transform: scale3d(1, 1.2, 1);
    }
    50% {
        -webkit-transform: scale3d(1, 0.85, 1);
        transform: scale3d(1, 0.85, 1);
    }
    75% {
        -webkit-transform: scale3d(1, 1.05, 1);
        transform: scale3d(1, 1.05, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes expand {
    0% {
        -webkit-transform: scale3d(1, 0, 1);
        transform: scale3d(1, 0, 1);
    }
    25% {
        -webkit-transform: scale3d(1, 1.2, 1);
        transform: scale3d(1, 1.2, 1);
    }
    50% {
        -webkit-transform: scale3d(1, 0.85, 1);
        transform: scale3d(1, 0.85, 1);
    }
    75% {
        -webkit-transform: scale3d(1, 1.05, 1);
        transform: scale3d(1, 1.05, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

/* HEADER
------------------------------------------------------------------------------*/
.login_link {
    font-size: 16px;
}

.header-nav {
    font-size: 0;
    box-sizing: border-box;
}

.header-nav_link {
    position: relative;
    display: block;;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease;
    margin-top: 10px;
}

.header-nav_link .icon,
.header-nav_link .text {
    display: inline-block;
    vertical-align: middle;
}

.header-nav_link .icon {
    margin-right: 2px;
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.header-nav_link:hover {
    color: #48dd60;
}

.header-nav_link:hover .icon {
    fill: #48dd60;
}

@media (max-width: 1000px) {
    .header-nav {
        position: absolute;
        left: 0;
        top: 114px;
        z-index: 5;
        display: none;
        width: 100%;
        padding: 25px 0 20px;
    }

    /**/
    .index-header .header-nav {
        top: 88px;
        padding: 12px 0 20px;
    }

    .index-header .header-nav {
        display: block;
        background-color: #23292f;
    }
}

@media (max-width: 670px) {
    .header-nav {
        top: 63px;
        padding: 20px 0;
    }
}

@media (max-width: 550px) {
    .index-header .header-nav {
        top: 78px;
    }
}

.description-button {
    font-size: 12px;
    display: flex;
    margin-top: 10px;
}