.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  height: 60px;
  margin: 0;
  background-color: white;
  -webkit-box-shadow: 0 1px 0 #e1e7ed;
          box-shadow: 0 1px 0 #e1e7ed; }
  .header__container {
    max-width: 950px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: relative;
    width: 100%;
    margin: 0 auto; }
  .header__toggler {
    display: none; }
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 87px;
    height: 100%;
    -webkit-transition: 1s cubic-bezier(0.62, 1.96, 0.3, 0.31);
    transition: 1s cubic-bezier(0.62, 1.96, 0.3, 0.31);
    -webkit-transform-origin: top;
            transform-origin: top; }
    @media screen and (max-width: 500px) {
      .header__nav {
        background-color: #fd5c63;
        color: white;
        position: absolute;
        top: 30px;
        width: 100vw;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        height: calc(100vh - 60px);
        -webkit-transform: translateY(130vh);
                transform: translateY(130vh);
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
  .header__label {
    display: none;
    height: 30px;
    width: 30px;
    background-image: url(../images/burger.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
    @media screen and (max-width: 500px) {
      .header__label {
        display: block;
        position: absolute;
        top: calc(50% - 15px);
        left: calc(50% - 15px); } }
  .header__toggler:checked ~ .header__nav {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .header__toggler:checked ~ .header__label {
    background-image: url(../images/cross.svg); }
  .header__logo {
    height: 30px;
    width: 30px;
    position: absolute;
    top: calc(50% - 15px);
    left: 26px; }
  .header__link {
    display: block;
    font-family: Avenir, sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: auto 15px;
    text-decoration: none;
    outline: none;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
    color: #3d4e61; }
    .header__link:hover, .header__link:focus {
      color: #fd5c63; }
      @media screen and (max-width: 500px) {
        .header__link:hover, .header__link:focus {
          color: #5b5bec; } }
    @media screen and (max-width: 500px) {
      .header__link {
        font-family: Avenir, sans-serif;
        font-size: 32px;
        font-weight: bold;
        color: white;
        margin: 6vh 0; } }
  .header__photo {
    position: absolute;
    right: 19px;
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
    margin: auto 19px auto 23px; }

.booking-form {
  height: 319px;
  width: 330px;
  border: 1px solid #e1e7ed;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: white;
  padding: 30px;
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  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-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  float: right;
  z-index: 0; }
  @media screen and (max-width: 840px) {
    .booking-form {
      float: none;
      position: relative;
      top: 0;
      left: calc(50% - 165px); } }
  @media screen and (max-width: 345px) {
    .booking-form {
      width: calc(100vw - 30px);
      margin: 0 auto;
      left: 0; } }
  .booking-form__price {
    margin-bottom: 23px; }
  .booking-form__input {
    border: 1px solid #e1e7ed;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: white;
    display: block;
    height: 50px;
    right: 0;
    left: 0;
    margin-top: 16px;
    padding-left: 10px;
    outline: none;
    -webkit-transition: -webkit-box-shadow 0.5s;
    transition: -webkit-box-shadow 0.5s;
    transition: box-shadow 0.5s;
    transition: box-shadow 0.5s, -webkit-box-shadow 0.5s; }
    .booking-form__input:hover, .booking-form__input:focus {
      -webkit-box-shadow: 0 0 5px 5px #fd5c63;
              box-shadow: 0 0 5px 5px #fd5c63; }
  .booking-form__button {
    background-color: #fd5c63;
    border-radius: 4px;
    color: white;
    display: block;
    height: 50px;
    margin-top: 24px;
    -webkit-transition: background-color 0.5s, color 0.5s;
    transition: background-color 0.5s, color 0.5s;
    font-size: 20px;
    outline: none;
    cursor: pointer; }
    .booking-form__button:focus {
      -webkit-box-shadow: 0 0 5px 5px #fd5c63;
              box-shadow: 0 0 5px 5px #fd5c63;
      background-color: white;
      color: #fd5c63; }
    .booking-form__button:hover {
      background-color: white;
      color: #fd5c63; }

.reviews__title {
  font-size: 28px;
  line-height: 33px;
  margin-bottom: 34px; }

.reviews__circle {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #c4c4c4;
  margin: 0 20px 0 0; }

.reviews__name {
  font-size: 20px;
  margin: 0; }

.reviews__date {
  font-size: 14px;
  margin: 0; }

.reviews__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.reviews__subcontainer {
  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; }

.reviews__review {
  width: 490px;
  height: 120px;
  margin: 13px 0 0; }
  @media screen and (max-width: 490px) {
    .reviews__review {
      width: 100%; } }

.hosted {
  width: 490px; }
  .hosted__title {
    font-family: Roboto, sans-serif;
    font-weight: bold;
    font-size: 28px;
    line-height: 33px;
    margin: 15px 0 0; }
  .hosted__were {
    font-size: 14px;
    line-height: 16px; }
  .hosted__button {
    width: 150px;
    height: 50px;
    border: 1px solid #118488;
    background-color: white;
    border-radius: 4px;
    color: #118488;
    margin: 25px 0;
    font-size: 20px;
    -webkit-transition: background-color 0.5s, color 0.5s, -webkit-box-shadow 0.5s;
    transition: background-color 0.5s, color 0.5s, -webkit-box-shadow 0.5s;
    transition: background-color 0.5s, color 0.5s, box-shadow 0.5s;
    transition: background-color 0.5s, color 0.5s, box-shadow 0.5s, -webkit-box-shadow 0.5s;
    outline: none;
    cursor: pointer; }
    .hosted__button:hover {
      background-color: #118488;
      color: white; }
    .hosted__button:focus {
      -webkit-box-shadow: 0 0 5px 5px grey;
              box-shadow: 0 0 5px 5px grey;
      background-color: #118488;
      color: white; }
  @media screen and (max-width: 490px) {
    .hosted {
      width: 100%; } }

.footer {
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 213px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-shadow: 0 -1px 0 #e1e7ed;
          box-shadow: 0 -1px 0 #e1e7ed;
  border: 1px solid white; }
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 901px;
    margin: 40px auto; }
    @media screen and (max-width: 900px) {
      .footer__container {
        width: 100%; } }
  .footer__subcontainer {
    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-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  .footer__link {
    text-decoration: none;
    color: #3d4e61;
    line-height: 27px;
    outline: none;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s; }
    .footer__link:hover, .footer__link:focus {
      -webkit-transform: scale(1.1);
              transform: scale(1.1); }

@font-face {
  font-family: Avenir;
  font-weight: lighter;
  src: url(../fonts/Avenir-Book.ttf); }

@font-face {
  font-family: Avenir;
  font-weight: normal;
  src: url(../fonts/Avenir-Medium.ttf); }

@font-face {
  font-family: Avenir;
  font-weight: bold;
  src: url(../fonts/Avenir-Heavy.ttf); }

html {
  scroll-behavior: smooth; }

body {
  font-size: 16px;
  line-height: 19px;
  font-family: Avenir, sans-serif;
  margin: 0;
  padding: 0;
  color: #3d4e61; }
  @media screen and (max-width: 900px) {
    body {
      width: 100%; } }

.content {
  max-width: 901px;
  margin: 39px auto; }
  @media screen and (max-width: 900px) {
    .content {
      width: 100%;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      padding: 0 15px; } }
  .content__primary-title {
    font-size: 36px;
    line-height: 42px; }
  .content__condition {
    display: inline-block;
    height: 28px;
    width: 81px; }
  .content__description {
    width: 490px;
    line-height: 24px; }
    @media screen and (max-width: 490px) {
      .content__description {
        width: 100%; } }
  .content__links {
    font-weight: bold;
    text-decoration: none;
    color: #3d4e61;
    -webkit-transition: color 0.5s, -webkit-transform 0.5s;
    transition: color 0.5s, -webkit-transform 0.5s;
    transition: transform 0.5s, color 0.5s;
    transition: transform 0.5s, color 0.5s, -webkit-transform 0.5s;
    outline: none; }
    .content__links:hover, .content__links:focus {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
      color: #fd5c63; }
  .content__subtitle {
    color: #687c94; }

.amenities__amenity {
  display: inline-block;
  width: 180px;
  margin: 13px 0; }

.promo {
  width: 100%;
  height: 464px;
  display: block;
  background: url(../images/Image.jpg) no-repeat;
  background-size: cover;
  background-position: center; }
  @media screen and (max-width: 500px) {
    .promo {
      height: 200px; } }

/*# sourceMappingURL=styles.css.map */
