*, *:before, *:after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    -webkit-text-size-adjust: 100%;
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    font-family: "Open Sans";
}

a {
    text-decoration: none;
}

img {
    vertical-align: top;
}

.content {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
    /* outline: 1px darkred solid !important; */
}

.textcolor-orange {
    color: rgb(250, 124, 48);
    vertical-align: top;
    transition: inherit;
}

.header {
    position: fixed;
    width: 100%;
    z-index: 10;
    padding: 18px 15px;
    display: flex;
    align-items: center;
    transition: .2s ease-out;
}

.header-shader {
    background-color: rgba(22, 20, 24, .96);
    padding-top: 6px;
    padding-bottom: 6px;
}

.logo {
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    transition: .22s;
    padding: 5px 16px;
    border: 2px solid transparent;
}

.responsive-menu-button-open {
    display: none;
    padding: 5px;
}

.responsive-menu-button-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
}

.down-arrow {
    display: none;
    opacity: 0;
    justify-content: center;
    align-items: center;
    position: fixed;
    transition: .4s;
    top: calc(96% - 70px);
    right: calc(7% + 50px);
}

.down-arrow-show {
    opacity: 1;
}
  
.down-arrow__container {
    position: relative;
}
  
.down-arrow__chevron {
    position: absolute;
    width: 35px;
    height: 6px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}
  
.down-arrow__chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}
  
.down-arrow__chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}
  
.down-arrow__chevron:before,
.down-arrow__chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fff;
}
  
.down-arrow__chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}
  
.down-arrow__chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}
  
@keyframes move {
    25% {
      opacity: 1;
  
    }
    33% {
      opacity: 1;
      transform: translateY(30px);
    }
    67% {
      opacity: 1;
      transform: translateY(40px);
    }
    100% {
      opacity: 0;
      transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}
  
.down-arrow__text {
    display: block;
    margin-top: 75px;
    margin-left: -30px;
    font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: .25;
    
  }
  




.logo:hover {
    color: rgb(250, 124, 48); 
    border-color: rgb(250, 124, 48);
}

.logo:hover > .textcolor-orange {
    color: white;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 0;
}

.menu__left-side {
    margin-left: 19px;
}

.menu__right-side {
    margin-right: 20px;
}

.menu__link {
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: .17s;
}

.menu__link:not(:first-child) {
    margin-left: 26px;
}

.menu__link:hover {
    color: rgb(250, 124, 48);
    border-color: rgb(250, 124, 48);
}

.menu__right-side__link-plan {
    padding: 9px 18px;
    border: 2px solid white;
    margin-left: 20px !important;
}

.intro {
    background-image: url('../img/intro_background.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
    /* background-size: 100%; */
    position: relative;
}

.intro:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.intro__inner-content {
    padding: 232px 0 402px;
    position: relative;
}

.intro__title {
    color: rgb(255, 255, 255);
    font-size: 70px;
    font-weight: 700;
    line-height: 86px;
    text-transform: uppercase;
    margin-left: -5px;
    margin-bottom: 7px;
    width: 85%;
}

.intro__post-title {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 1.4px;
}

.get-button {
    padding: 8px 26px;
    background-color: rgb(250, 124, 48);
    color: rgb(255, 255, 255);
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .18s;
}

.get-button:hover {
    color: rgb(250, 124, 48);
    background-color: rgb(22, 20, 24);
}

.subscribe-button {
    padding: 3px 29px;
}

.subscribe-button:hover {
    background-color: #04040D;
}

.intro__button {
    margin-top: 64px;
}

.welcome {
    background-color: rgb(241, 244, 246);
    padding: 570px 0 360px;
    padding-top: 0;
    background-image: url(../img/welcome_background.png);
    background-repeat: no-repeat;
    background-position: calc(50% + 418px) 618px;
}

.order-form {
    position: relative;
    margin-top: -210px;
    background-color: rgb(255, 255, 255);
    display: flex;
}

.order-form__image-block {
    width: 350px;
    /* height: 519px; */
    background-image: url(../img/form_image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: 100%; */
    background-position: 80% top;
}

.order-form__registration {
    width: 760px;
    padding-top: 67px;
    padding-bottom: 74px;
}

.order-form__registration-pre-title,
.order-form__registration-title {
    color: rgb(22, 20, 24);
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    text-align: center;
}

.order-form__registration-pre-title {
    font-size: 26px;
}

.order-form__registration-title {
    font-size: 36px;
    padding: 25px 0 66px;
}

.order-form__registration-quest {
    text-align: center;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
}

.order-form__registration-quest input,
.order-form__registration-quest select {
    display: inline-block;
    height: 40px;
    width: 160px;
    
    padding-bottom: 5px;
    border-bottom: 1px solid black;
    margin-bottom: 25px;
    opacity: 0.7;
    color: rgb(22, 20, 24) !important;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
}

.order-form__registration-quest input:not(:nth-child(3n)),
.order-form__registration-quest select:not(:nth-child(3n)) {
    margin-right: 4.5%;
}

.order-form__registration-quest select {
    padding-bottom: 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border-radius: 0; 
}

.order-form-button {
    display: block;
    margin: 0 auto;
}

.welcome__inner-content {
    padding-top: 260px;
    max-width: 392px;
}

.article-title,
.article-info,
.article-post-info {
    color: rgb(22, 20, 24);
    line-height: 30px;
}

.article-title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.article-info {
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 14px;
}

.article-post-info {
    opacity: 0.6;
    font-size: 14px;
    font-weight: 400;
}

.welcome__button {
    margin-top: 60px;
}

.fitmodes {
    padding: 78px 0 80px;
    background-color: white;
}

.fitmodes__modes-block,
.trainers__trainers-block {
    /* width: 100%; */
    display: flex;
    justify-content: space-between;
    margin-top: 42px;
}

.fitmodes__mode {
    background-color: rgb(241, 244, 246);
    width: 350px;
}

.fitmodes__mode-infoblock {
    padding: 35px 42px 33px;
    color: rgb(22, 20, 24);
}

.fitmodes__mode-infoblock__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    padding-bottom: 16px;
}

.fitmodes__mode-infoblock__about {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    padding-bottom: 43px;
}

.personal-trainer {
    background: url(../img/personal-trainer_back@2x.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 191px 0 183px;
    /* margin-bottom: 800px; */
}

.personal-trainer:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
}

.personal-trainer__inner-content {
    text-align: center;
    position: relative;
}

.personal-trainer__pre-title,
.personal-trainer__title {
    color: rgb(255, 255, 255);
    line-height: 30px;
    text-transform: uppercase;
}

.personal-trainer__pre-title {
    font-size: 36px;
    font-weight: 400;
}

.personal-trainer__title {
    font-size: 70px;
    font-weight: 700;
    padding: 47px 0 65px;
}

.trainers {
    background-color: rgb(241, 244, 246);
    padding: 76px 0 78px;
}

.trainers__expert {
    width: 337px;
}

.trainers__expert-picture-wrapper {
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 35px;
}

.trainers__expert-picture {
    display: block;
    margin: 0 auto;
}

.trainers__expert-infoblock {
    text-align: center;
}

.trainers__expert-infoblock__title {
    color: rgb(22, 20, 24);
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
}

.trainers__expert-infoblock__post-title {
    color: rgb(250, 124, 48);
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    margin-top: -3px;
    margin-bottom: 10px;
}

.trainers__expert-infoblock__about {
    color: rgb(22, 20, 24);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    padding: 0 10px;
}

.offers {
    width: 100%;
}

.offers__offer-box {
    position: relative;
    display: inline-block;
    width: 50%;
    padding: 125px 0 125px;
    text-align: center;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.offers__offer-box:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
 
}

.offer-free-days {
    float: left;
    background-image: url(../img/offer-back1.jpg);
}

.offer-call-us {
    /* float: right; */
    background-image: url(../img/offer-back2.jpg);
}

.offers__offer-info {
    position: relative;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
}

.offers__offer-info__pre-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}

.offers__offer-info__title {
    font-size: 46px;
    font-weight: 700;
    line-height: 30px;
    padding: 32px 0 54px;
}

.footer {
    padding: 75px 0;
    background-color: rgb(22, 20, 24);
}

.footer__inner-wrapper {
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    color: rgb(255, 255, 255);
}

.footer__item-fitness {
    width: 450px;
    padding-right: 26px;
}

.footer__item-fitness__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    padding-bottom: 55px;
}

.footer__item-fitness__description {
    opacity: 0.7;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
}

.footer__socials-wrapper {
    padding: 56px 0 33px;
    display: flex;
    align-items: center;
}

.footer__socials-pre-title {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.footer__social-links-wrapper {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
}

.footer__social-link-sizer {
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.footer__social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    color: white;
    transition: .14s;
}

.footer__social-link:hover {
    color: #fa7c30;
}

.footer__subscribe {
    display: flex;
    align-items: center;
}

.footer__subscribe-mail {
    padding: 5px 0;
    padding-left: 12px;
    width: 230px;
    border: 1px solid rgb(231, 231, 231);
    background-color: rgb(255, 255, 255);
    color: rgb(204, 204, 204);
    font-family: "Open Sans";
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.footer__subscribe-mail::placeholder {
    color: rgb(204, 204, 204);
}

.footer__item-blogs {
    width: 375px;
    padding-left: 25px;
    padding-right: 25px;
}

.footer__item-title {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.footer__blogs-wrapper {
    padding-top: 31px;
}

.footer__blog {
    display: flex;
    align-items: center;
}

.footer__blog:not(:last-child) {
    padding-bottom: 31px;
}

.footer__blog-link-picture {
    width: 120px;
    height: 80px;
    transition: .18s;
    display: block;
}

.footer__blog-link:hover > .footer__blog-link-picture {
    transform: scale(1.2);
}

.footer__blog-text-link-wrapper {
    padding-left: 18px;
}

.footer__blog-text-link {
    display: block;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    transition: .11s;
}

.footer__blog-text-link:hover,
.footer__view-more:hover {
    color: rgb(250, 124, 48);
}

.footer__item-instagram {
    width: 280px;
    padding-left: 25px;
}

.footer__instagram-links-wrapper {
    padding-top: 31px;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}

.footer__instagram-link {
    margin: 1px;
}

.footer__instagram-link-picture {
    width: 83px;
    height: 83px;
    display: block;
    transition: .2s;
}

.footer__instagram-link:hover .footer__instagram-link-picture {
    transform: scale(1.25);
}

.footer__view-more {
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 400;
    line-height: 22.77px;
    transition: .11s;
}