@charset "UTF-8";
:root {
  --color-primary:#ffa445;
  --color-primary-light:#ffa500;
  --color-primary-dark: #ff4500;
  --color-grey-light-1: #faf9f9;
  --color-grey-light-2: #f4f2f2;
  --color-grey-light-3: #f0eeee;
  --color-grey-light-4: #ccc;
  --color-grey-dark-1: #333;
  --color-grey-dark-2: #777;
  --color-grey-dark-3: #999;
  --shadow-dark: 0 2rem 6rem rgba(0,0,0,.3);
  --shadow-light: 0 2rem 6rem rgba(0,0,0,.6);
  --line: 1px solid var(--color-grey-light-2);
}

.u-center-text {
  text-align: center !important;
}

.u-margin-botton-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-botton-medium {
  margin-bottom: 4rem !important;
  /* @include respond(tab-port) {
       margin-bottom: 3rem !important;
   }*/
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
  /* @include respond(tab-port) {
       margin-bottom: 5rem !important;
   } */
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}
@media only screen and (max-width: 68.75em) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-grey-dark-2);
  background-image: linear-gradient(to right bottom, var(--color-primary-light), var(--color-primary-dark));
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.logo {
  height: 3.25rem;
  margin-left: 2rem;
}

.user-nav {
  align-self: stretch;
  display: flex;
  align-items: center;
}
.user-nav > * {
  padding: 0 2rem;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
}
.user-nav > *:hover {
  background-color: var(--color-grey-light-3);
}
.user-nav__icon-box {
  position: relative;
}
.user-nav__icon {
  height: 2.25rem;
  width: 2.25rem;
  fill: var(--color-grey-dark-1);
}
.user-nav__notification {
  font-size: 1.75rem;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  position: absolute;
  top: 1.5rem;
  right: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.user-nav__user-photo {
  height: 3.75rem;
  border-radius: 50%;
  margin-right: 1rem;
}

.side-nav {
  font-size: 1.4rem;
  list-style: none;
  margin-top: 3.5rem;
}
@media only screen and (max-width: 56.25em) {
  .side-nav {
    display: flex;
    margin: 0;
  }
}
.side-nav__item {
  position: relative;
}
.side-nav__item:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 56.25em) {
  .side-nav__item:not(:last-child) {
    margin: 0;
  }
}
@media only screen and (max-width: 56.25em) {
  .side-nav__item {
    flex: 1;
  }
}
.side-nav__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background-color: var(--color-primary);
  transform: scaleY(0);
  transition: transform 0.2s, width 0.4s cubic-bezier(1, 0, 0, 1) 0.2s, background-color 0.1s;
}
.side-nav__item:hover::before, .side-nav__item--active::before {
  transform: scaleY(1);
  width: 100%;
}
.side-nav__item:active::before {
  background-color: var(--color-primary-light);
}
.side-nav__link:link, .side-nav__link:visited {
  color: var(--color-grey-light-1);
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: 1.5rem 3rem;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .side-nav__link:link, .side-nav__link:visited {
    justify-content: center;
    padding: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .side-nav__link:link, .side-nav__link:visited {
    flex-direction: column;
    padding: 1.5rem 0.5rem;
  }
}
.side-nav__icon {
  width: 1.85rem;
  height: 1.85rem;
  margin-right: 1.5rem;
  fill: var(--color-grey-light-1);
}
@media only screen and (max-width: 37.5em) {
  .side-nav__icon {
    margin-right: 0;
    margin-bottom: 0.7rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}

.legal {
  font-size: 1.2rem;
  color: var(--color-grey-light-4);
  text-align: center;
  padding: 2.5rem;
}
@media only screen and (max-width: 56.25em) {
  .legal {
    display: none;
  }
}

.gallery {
  display: flex;
}
.gallery__photo {
  width: 100%;
  display: block;
}

.overview {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-grey-light-2);
}
.overview__heading {
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.5rem 3rem;
}
@media only screen and (max-width: 37.5em) {
  .overview__heading {
    font-size: 1.8rem;
    padding: 1.25rem 2rem;
  }
}
.overview__heading-2 {
  font-size: 1.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  padding: 1.5rem 3rem;
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .overview__heading-2 {
    font-size: 1.8rem;
    padding: 1.25rem 2rem;
  }
}
.overview__quote {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1rem 1rem;
}
@media only screen and (max-width: 37.5em) {
  .overview__quote {
    font-size: 1.8rem;
    padding: 1.25rem 2rem;
  }
}

.btn-inline {
  border: none;
  color: var(--color-primary);
  border-bottom: 1px solid currentColor;
  display: inline-block;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-inline span {
  margin-left: 3px;
  transition: margin-left 0.2s;
}
.btn-inline:hover {
  color: var(--color-grey-dark-1) l;
}
.btn-inline:hover span {
  margin-left: 8px;
}
.btn-inlinefocus {
  outline: none;
  animation: pulsate 1s infinite;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    box-shadow: none;
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.25);
  }
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}
.paragraph:not(:last-of-type) {
  margin-bottom: 2rem;
}

.recommend {
  font-size: 1.3rem;
  color: var(--color-grey-dark-3);
  display: flex;
  align-items: center;
}
.recommend__count {
  margin-right: auto;
}
.recommend__friends {
  display: flex;
}
.recommend__photo {
  box-sizing: content-box;
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  border: 3px solid #fff;
}
.recommend__photo:not(:last-child) {
  margin-right: -2rem;
}

.review {
  background-color: #fff;
  box-shadow: var(--shadow-light);
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 56.25em) {
  .review {
    padding: 2rem;
    margin-right: 3rem;
  }
}
.review__text {
  margin-bottom: 2rem;
  z-index: 10;
  position: relative;
}
.review__user {
  display: flex;
  align-items: center;
}
.review__photo {
  height: 6rem;
  width: 6rem;
  margin-right: 1.5rem;
}
.review__user-box {
  margin-right: auto;
}
.review__user-name {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.review__user-date {
  font-size: 1.2rem;
  color: var(--color-grey-dark-3);
}
.review__rating {
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 400;
}
.review::before {
  content: "ƒ";
  position: absolute;
  top: -2.75rem;
  left: -1rem;
  line-height: 1;
  font-size: 20rem;
  color: var(--color-grey-light-3);
  font-family: sans-serif;
  z-index: 1;
}

.cta {
  padding: 3.5rem 0;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .cta {
    padding: 2.5rem 0;
  }
}
.cta__book-now {
  font-size: 1.7rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.cta__footer-text {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 2.5 rem;
}

.btn {
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 100%;
  border: none;
  background-image: linear-gradient(to right, var(--color-primary-light), var(--color-primary-dark));
  color: #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn > * {
  display: inline-block;
  height: 100%;
  width: 100%;
  transition: all 0.2s;
}
.btn__visible {
  padding: 2rem 7.5rem;
}
.btn__invisible {
  position: absolute;
  padding: 2rem 0;
  left: 0;
  top: -100%;
}
.btn:hover {
  background-image: linear-gradient(to left, var(--color-primary-light), var(--color-primary-dark));
}
.btn:hover .btn__visible {
  transform: translateY(100%);
}
.btn:hover .btn__invisible {
  top: 0;
}
.btn:focus {
  outline: none;
  animation: pulsate 1s infinite;
}

.videoshomes {
  margin: 0.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  grid-gap: 5rem;
}

.videohome {
  background-color: #f9f7f6;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 3.5rem;
}
.videohome__img {
  width: 100%;
  grid-row: 1/2;
  grid-column: 1/-1;
  z-index: 1;
}
.videohome__like {
  grid-row: 1/2;
  grid-column: 2/3;
  fill: #c69963;
  height: 2.5rem;
  width: 2.5rem;
  z-index: 2;
  justify-self: end;
  margin: 1rem;
}
.videohome__name {
  grid-row: 1/2;
  grid-column: 1/-1;
  justify-self: center;
  align-self: end;
  z-index: 3;
  width: 80%;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.6rem;
  text-align: center;
  padding: 1.25rem;
  background-color: #101d2c;
  color: #fff;
  font-weight: 400;
  transform: translateY(50%);
}
.videohome__location, .videohome__rooms {
  margin-top: 2.5rem;
}
.videohome__location, .videohome__rooms, .videohome__area, .videohome__price {
  font-size: 1.5rem;
  margin-left: 2rem;
  display: flex;
  align-items: center;
}
.videohome__location svg, .videohome__rooms svg, .videohome__area svg, .videohome__price svg {
  fill: #c69963;
  height: 2rem;
  width: 2rem;
  margin-right: 1rem;
}
.videohome__btn {
  grid-column: 1/-1;
}

.videohome-1 {
  background-color: #f9f7f6;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: 3.5rem;
}
.videohome-1__img {
  width: 100%;
  grid-row: 1/2;
  grid-column: 1/-1;
  z-index: 1;
}
.videohome-1__like {
  grid-row: 1/2;
  grid-column: 1/3;
  fill: #c69963;
  height: 2.5rem;
  width: 2.5rem;
  z-index: 2;
  justify-self: end;
  margin: 1rem;
}
.videohome-1__name {
  grid-row: 1/2;
  grid-column: 1/-1;
  justify-self: center;
  align-self: end;
  z-index: 3;
  width: 80%;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.6rem;
  text-align: center;
  padding: 1.25rem;
  background-color: #101d2c;
  color: #fff;
  font-weight: 400;
  transform: translateY(50%);
}
.videohome-1__location {
  text-align: center;
  padding: 0.5rem;
}
.videohome-1__btn {
  grid-column: 1/-2;
}

.btn-text:link, .btn-text:visited {
  font-size: "Nunito", sans-serif;
  color: #ff4500;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 69, 0, 0.15);
  padding: 3px;
  transition: all 0.2s;
}
.btn-text:hover {
  background-color: #ff4500;
  color: #f9f7f6;
  box-shadow: 0 1rem 2rem rgba(255, 165, 0, 0.15);
  transform: translateY(-2px);
}
.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(255, 165, 0, 0.15);
  transform: translateY(-2px);
}

.footer {
  background-color: #f9f7f6;
  padding: 15rem, 0;
  font-size: 1.4rem;
  color: #6D5D4B;
}
@media only screen and (max-width: 56.25em) {
  .footer {
    padding: 8rem 0;
  }
}
.footer__logo-box {
  text-align: center;
  padding: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__logo-box {
    margin-bottom: 8rem;
  }
}
.footer__logo {
  width: 15rem;
  height: auto;
}
.footer__navigation {
  border-top: 1px solid #f9f7f6;
  padding-top: 2rem;
  display: inline-block;
}
@media only screen and (max-width: 56.25em) {
  .footer__navigation {
    width: 100%;
    text-align: left;
  }
}
.footer__list {
  list-style: none;
}
.footer__item {
  display: inline-block;
}
.footer__item:not(:last-child) {
  margin-right: 1.5rem;
}
.footer__link:link, .footer__link:visited {
  color: #f9f7f6;
  background-color: #6D5D4B;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.1s;
}
.footer__link:hover, .footer__link:active {
  color: #c69963;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  transform: rotate(5deg) scale(1.3);
}
.footer__copyright {
  border-top: 1px solid #ffa445;
  padding-top: 2rem;
  width: 100%;
  float: inline;
}
@media only screen and (max-width: 56.25em) {
  .footer__copyright {
    width: 90%;
    float: none;
  }
}

.container {
  max-width: 120rem;
  margin: 8rem auto;
  background-color: var(--color-grey-light-2);
  box-shadow: var(--shadow-dark);
  min-height: 50rem;
}
@media only screen and (max-width: 75em) {
  .container {
    margin: 0;
    max-width: 100%;
    width: 100%;
  }
}

.header {
  font-size: 1.4rem;
  height: 7rem;
  background-color: #fff;
  border-bottom: 1px solid var(--color-grey-light-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 68.75em) {
  .header {
    flex-wrap: wrap;
    align-content: space-around;
    height: 11rem;
  }
}

.content {
  display: flex;
}
@media only screen and (max-width: 56.25em) {
  .content {
    flex-direction: column;
  }
}

.sidebar {
  background-color: var(--color-grey-dark-1);
  flex: 0 0 18%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blogPortfolio-view {
  background-color: fff;
  height: 80rem;
  flex: 1;
}

.blogfm-view {
  background-color: fff;
  height: 80rem;
  flex: 1;
  display: flex;
}

.detail {
  font-size: 1.4rem;
  display: flex;
  padding: 4.5rem;
  background-color: var(--color-grey-light-4);
  border-bottom: var(--line);
}
@media only screen and (max-width: 56.25em) {
  .detail {
    padding: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .detail {
    flex-direction: column;
  }
}

.detailindexpg {
  font-size: 1.4rem;
  display: flex;
  padding: 6.5rem;
  background-color: var(--color-grey-light-4);
  border-bottom: var(--line);
  background-image: linear-gradient(to right bottom, rgba(255, 69, 0, 0.8), rgba(255, 165, 0, 0.8)), url(../img/mfuent-4.jpg);
  background-size: cover;
  transform: skewY(-7deg);
  margin-top: -1.5rem;
  /*
  @media only screen and (max-width: $bp-small) { 
      padding: 10rem 0;
  } */
}
.detailindexpg > * {
  transform: skewY(7deg);
}
@media only screen and (max-width: 56.25em) {
  .detailindexpg {
    padding: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .detailindexpg {
    flex-direction: column;
  }
}

.discriptionindexpg {
  margin-left: 15rem;
}

.description {
  background-color: #fff;
  box-shadow: var(--shadow-light);
  padding: 3rem;
  flex: 0 0 60%;
  margin-right: 4.5rem;
}
.description__sub-text {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-shadow: 0.5rem 1rem 2rem black;
}
@media only screen and (max-width: 56.25em) {
  .description {
    padding: 2rem;
    margin-right: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .description {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}

.descriptionindexpg {
  margin-left: 4.5rem;
  background-color: #fff;
  box-shadow: var(--shadow-light);
  padding: 3rem;
  flex: 0 0 60%;
  margin-right: 4.5rem;
}
@media only screen and (max-width: 56.25em) {
  .descriptionindexpg {
    padding: 3rem;
    margin-left: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .descriptionindexpg {
    flex-direction: column;
  }
}
.descriptionindexpg__subtext-1 {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-shadow: 0.5rem 1rem 2rem black;
}
.descriptionindexpg__subtext-2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 56.25em) {
  .descriptionindexpg {
    padding: 2rem;
    margin-right: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .descriptionindexpg {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}

.user-reviews {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header2 {
  height: 85vh;
  background-image: linear-gradient(to right bottom, rgba(255, 69, 0, 0.8), rgba(255, 165, 0, 0.8)), url(../img/Blessed.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
}
@supports (clip-path: polygon(0 0)) or (-webkit-clip-path: polygon(0 0)) {
  .header2 {
    -webkit-clip-path: polygon 0 0, 100% 0, 100% 75vh, 0 100%;
    clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
    height: 95vh;
  }
}
@media only screen and (min-resolution: 192dpi) and (min-width: 37.5em), only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 37.5em), only screen and (min-width: 125em) {
  .header2 {
    background-image: linear-gradient(to right bottom, rgba(255, 69, 0, 0.8), rgba(255, 165, 0, 0.8)), url(../img/Blessed.jpg);
  }
}
@media only screen and (max-width: 37.5em) {
  .header2 {
    webkit-clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
  }
}
.header2__logo-box {
  top: 4rem;
  left: 4rem;
}
.header2__logo {
  height: 10rem;
}
.header2__text-box {
  position: absolute;
  top: 40%;
  left: 45%;
  transform: translate(-40%, -45%);
  text-align: center;
}

.heading2-primary {
  color: #f9f7f6;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 6rem;
}
.heading2-primary--main {
  display: block;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 3.5rem;
  animation: moveInLeft 1.7s ease-in-out;
}
@media only screen and (max-width: 56.25em) {
  .heading2-primary {
    font-size: 4rem;
    letter-spacing: 2.5rem;
  }
}
.heading2-primary--sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.7rem;
  animation: moveInRight 1.7s ease-out;
  /*
  @include respond(phone) {
      letter-spacing: .5rem;
  } */
}
@media only screen and (max-width: 37.5em) {
  .heading2-primary {
    font-size: 1rem;
    letter-spacing: 0.8rem;
  }
}

.u-margin-botton-medium {
  margin-bottom: 4rem !important;
}

.heading3-secondary {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #ffa500, #ff4500);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
}
@media only screen and (max-width: 37.5em) {
  .heading3-secondary {
    font-size: 2.5rem;
  }
}
.heading3-secondary:hover {
  transform: skewY(2deg) skewX(15deg) scale(1.1);
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}

.heading-tertiary {
  font-size: "Nunito", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/*
@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(3rem);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}
 */
/*
.section-about {
    background-color: $color-grey-light-1;
    padding: 25rem 0; //H2 title top padding
    margin-top: -20vh;

    @include respond(tab-port) {
        padding: 20rem 0;

    }
} 

.section-features {
    padding: 20rem 0;
    background-image: linear-gradient(to right bottom,
    rgb($color-main-dark, 0.8),
    rgba($color-main-light, 0.8)), 
    url(../img/mfuent-4.jpg);
    background-size: cover;
    transform: skewY(-7deg);
    margin-top: -12rem;

    & > * {
        transform: skewY(7deg);
    }

    @media only screen and (max-width: $bp-small) { 
        padding: 10rem 0;
    }

} 
*/
.section-book {
  margin-top: 3rem;
  padding: 7rem;
  background-image: linear-gradient(to right bottom, #ffa500, #ff4500);
}
@media only screen and (max-width: 37.5em) {
  .section-book {
    padding: 10rem 0;
  }
}

.book {
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 40%, transparent 70%), url(../img/mfuent-10.jpg);
  background-size: 100%;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 56.25em) {
  .book {
    background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 65%, transparent 65%), url(../img/mfuent-10.jpg);
    background-size: cover;
  }
}
.book__form {
  width: 60%;
  padding: 6rem;
}
@media only screen and (max-width: 37.5em) {
  .book__form {
    width: 65%;
  }
}
@media only screen and (max-width: 56.25em) {
  .book__form {
    width: 100%;
  }
}

.form__group:not(:last-child) {
  margin-bottom: 2rem;
}
.form__input {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rbga(#fff, 0.5);
  border: none;
  border-bottom: 3px 2rem solid transparent;
  width: 90%;
  display: block;
  transition: all 0.3s;
}
@media only screen and (max-width: 56.25em) {
  .form__input {
    width: 100%;
  }
}
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #ffa500;
}
.form__input:focus:invalid {
  border-bottom: 3px solid #ff4500;
}
.form__input::-webkit-input-placeholder {
  color: #6D5D4B;
}
.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translate(-4rem);
}
.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  display: table;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50% scale(0.25));
  transition: all 0.5s 0.2s;
}
@media only screen and (max-width: 56.25em) {
  .popup__content {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .popup__content {
    width: 100%;
  }
}
.popup__left {
  width: 33.333333%;
  display: table-cell;
}
.popup__right {
  width: 66.6666667%;
  display: table-cell;
  vertical-align: middle;
  padding: 3rem 5rem;
}
.popup__img {
  margin-top: 8rem;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 56.25em) {
  .popup__img {
    width: 70%;
    margin: auto;
  }
}
.popup__text {
  font-size: 1.7rem;
  margin-bottom: 4rem;
  -moz-column-count: 2;
  -moz-column-gap: 4rem;
  -moz-column-rule: 1px solid #aaa;
  column-count: 2;
  column-gap: 4rem;
  column-rule: 1px solid #aaa;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.popup__close:link, .popup__close:visited {
  color: #aaa;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  line-height: 1;
}
.popup__close:hover {
  color: #ffa445;
}

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