@font-face {
  font-family: 'Muller';
  src: url(../fonts/MullerBold.woff),
  url(../fonts/MullerBold.woff2);
  font-display: swap;
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Muller';
  src: url(../fonts/MullerLight.woff),
  url(../fonts/MullerLight.woff2);
  font-display: swap;
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Muller';
  src: url(../fonts/MullerMedium.woff),
  url(../fonts/MullerMedium.woff2);
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Muller';
  src: url(../fonts/MullerRegular.woff),
  url(../fonts/MullerRegular.woff2);
  font-display: swap;
  font-weight: normal;
  font-stretch: normal;
}

:root {
  --main-white: #fff;
  --yellow-mixin: #cc9933;
  --grey-mixin: #333333;
}

* {
  box-sizing: border-box;
}

html {
  font-family: 'Muller', sans-serif;
}

body {
  background-color: #f1f1f1;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
}

.section__title {
  margin-top: 0;
  margin-left: 40px;
  font-size: 40px;
  line-height: 32px;
  font-weight: 400;
  color: var(--grey-mixin);
}

/* Header
=========================================================================== */

.header__top {
  display: flex;
  align-items: center;
  height: 110px;

}

.header__login {
  margin-left: auto;
}

.header__phone {
  margin-left: 20px;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: #666666;
}

.header__login {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  transition: .5s;
}

.header__login:hover {
  transform: scale(1.1);
}

.header__login-text {
  color: var(--yellow-mixin);
}

.header__login-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 3px;
  background-image: url(../img/next.svg);
  transform: translateY(-1px);
}

.header__nav {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 20px;
  background-color: var(--main-white);
  border-radius: 10px;
}

.header__nav-list {
  display: flex;
}

.header__nav-item {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}

.header__nav-link {
  color: var(--grey-mixin);
}

.header__nav-link:hover {
  border-bottom: 1px solid var(--grey-mixin);
}

.header__nav-search {
  margin-left: auto;
}

.search {
  width: 350px;
  height: 50px;
  padding-left: 15px;
  border-radius: 10px;
  border: none;
  background-color: #f1f1f1;
  background-image: url(../img/search.svg);
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: 315px center;
}

.search:focus {
  outline: none;
  box-shadow: 2px 2px 5px #000 inset;
}

.header__nav-item:not(:last-child) {
  margin-right: 40px;
}

/* Offer
=========================================================================== */

.section__offer {
  padding-top: 70px;
  padding-bottom: 35px;
}

.wrapper-offer {
  display: flex;
}

.section__offer-side {
  flex: 1 1 50%;
}

.section__offer-side:first-child {
  margin-right: 55px;
}

.section__offer-input-field {
  width: 100%;
  height: 70px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 10px;
  border: none;
}

.section__offer-input-field:focus {
  outline: none;
  box-shadow: 2px 2px 5px #000 inset;
}

.section__offer-input-field:not(:last-child) {
  margin-bottom: 24px;
}

.section__offer-btn {
  padding: 19px 30px;
  margin-right: 20px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  line-height: 32px;
  font-weight: 700;
  background-color: var(--yellow-mixin);
  color: var(--main-white);
  cursor: pointer;
  transition-duration: 1s;
}

.section__offer-btn:hover {
  background-color: #e8b143;
  transform: rotate(360deg);
}

.section__offer-total {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: #999999;
}

.total-number {
  color: var(--yellow-mixin);
}

.special__offer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.special__offer-content {
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 0 30px 30px;
  border-radius: 10px;
  background-image: url(../img/header_placeholder.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 2px;
  border-right: 1px solid #ffcc66;
  border-bottom: 1px solid #ffcc66;
  transform: rotate(-45deg);
}

.special__offer-content--bottom {
  width: 75%;
}

.section__offer-room-category {
  font-size: 66px;
  line-height: 58px;
  font-weight: 700;
  color: var(--main-white);
}

.special__offer-count {
display: flex;
align-items: center;
}

.section__offer-cost {
  font-size: 35px;
  line-height: 32px;
  font-weight: 400;
  color: var(--main-white);
  opacity: .5;
}

.section__offer-details {
  margin-left: 30px;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: #ffcc66;
  opacity: 0.49;
  transition-duration: .5s;
  transition-timing-function: ease;
}

.section__offer-details:hover {
  transform: translateX(10px) scale(1.5); /*Плохая анимация*/
  opacity: 1;
}

/* About
=========================================================================== */

.wrapper-about {
padding-top: 35px;
padding-bottom: 35px;
}

.section__about-text {
  margin-left: 40px;
  max-width: 900px;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: #666666;
}

/* Service
=========================================================================== */

.wrapper-service {
  padding-top: 35px;
  padding-bottom: 15px;
}

.section__service-cards {
  display: flex;
  flex-wrap: wrap;
}

.section__service-cards-item {
  flex: 1 1 40%;
  margin-bottom: 20px;
  border-radius: 20px;
  background-color: var(--main-white);
}

.section__service-cards-item:nth-child(odd) {
  margin-right: 20px;
}

.section__service-item-banner {
  width: 100%;
  height: auto;
}

.service__card-content {
  padding: 40px;
}

.section__service-item-link {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  color: var(--yellow-mixin);
}

.arrow-big {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 2px;
  border-right: 2px solid var(--yellow-mixin);
  border-bottom: 2px solid var(--yellow-mixin);
  transform: rotate(-45deg) translateY(-1px);
  transition-duration: .5s;
}

.section__service-item-link:hover .arrow-big {
  transform: translateX(20px) rotate(-45deg);
}

.section__service-item-text {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: var(--grey-mixin);
}

/* Advantage
=========================================================================== */

.section__advantage {
  padding-top: 35px;
  padding-bottom: 35px;
}

.section__advantage-cards {
  display: flex;
  flex-wrap: wrap;
}

.section__advantage-cards-item {
  flex: 1 1 20%;
  margin: 0 20px 20px 0;
  padding: 40px;
  border-radius: 10px;
  background-color: var(--main-white);
}

.section__advantage-cards-item:nth-child(4n) {
  margin-right: 0;
}

.section__advantage-icon {
  width: 65px;
  height: 65px;
  margin-bottom: 20px;
}

.icon-one {
  background-image: url(../img/icon_01.svg);
}
.icon-two {
  background-image: url(../img/icon_02.svg);
}
.icon-three {
  background-image: url(../img/icon_03.svg);
}
.icon-four {
  background-image: url(../img/icon_04.svg);
}
.icon-five {
  background-image: url(../img/icon_05.svg);
}
.icon-six {
  background-image: url(../img/icon_06.svg);
}
.icon-seven {
  background-image: url(../img/icon_07.svg);
}
.icon-eight {
  background-image: url(../img/icon_08.svg);
}

.section__advantage-item-text {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: var(--grey-mixin);
}

/* Placement
=========================================================================== */

.section__placement {
  padding-top: 35px;
  padding-bottom: 35px;
}

.section__placement-cards {
  display: flex;
  flex-wrap: wrap;
}

.section__placement-cards-item {
  flex: 1 1 30%;
  margin-right: 25px;
  margin-bottom: 25px;
  border-radius: 10px;
  background-color: var(--main-white);
}

.section__placement-cards-item:nth-child(3n) {
  margin-right: 0;
}

.section__placement-item-image {
  width: 100%;
  height: auto;
}

.section__placement-item-description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  font-size: 16px;
  font-weight: 400;
}

.section__placement-item-description--left,
.section__placement-item-description--right {
  display: inline-block;
}

.section__placement-item-description--left {
  margin-right: 30px;
}

.item-pacement-offers {
  /* position: relative; */
  /* display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
  padding-left: 30px; */
  width: 100%;
  height: auto;
  background-image: url(../img/cards_placeholder.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.section__placement-offers-link {
  position: relative;
  left: 30px;
  bottom: -400px;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  color: var(--main-white);
}

.section__placement-offers-link:before {
  content: "";
  position: absolute;
  top: -400px;
  left: -20px;
  width: 360px;
  height: 450px;
}

.section__placement-item-price {
  margin-bottom: 20px;
  color: var(--grey-mixin);
}

.section__placement-item-price strong {
  font-size: 22px;
}

.mixin-text--grey {
  font-size: 16px;
  font-weight: 400;
  color: #969696;
}

.section__placement-item-hotel {
  margin-bottom: 20px;
}

.section__placement-item-location {
  margin-bottom: 20px;
}

.section__placement-item-btn {
  padding: 7px 20px;
  font-size: 16px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--yellow-mixin);
  border: 1px solid var(--yellow-mixin);
  border-radius: 12px;
}

.section__placement-item-btn:hover {
  background-color: var(--yellow-mixin);
  color: var(--main-white);
}

.section__placement-item-btn:active {
  background-color: #e8b143;
}

.arrow-big--white {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 2px;
  border-right: 2px solid var(--main-white);
  border-bottom: 2px solid var(--main-white);
  transform: rotate(-45deg) translateY(-1px);
}

/* Feedback
=========================================================================== */

.wrapper-feedback {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.section__feedback-contacts {
  flex: 0 0 40%;
  margin-right: 175px;
}

.section__feedback-form {
  flex: 0 0 30%;
}

.section__feedback-contacts-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 45px;
  border-radius: 12px;
  background-color: var(--main-white);
}

.contacts-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px 0;
  border-bottom: 1px solid #999;
}

.contacts-content-left {
  flex: 0 0 40%;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: #666666;
}

.contacts-content-right {
  flex: 0 0 60%;
  padding-left: 10px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.contacts-content:last-of-type {
  margin-bottom: 40px;
}

.contacts-link {
  display: inline-block;
  color: var(--yellow-mixin);
}

.contacts-text-decoration {
  color: #999;
}

.btn-contacts {
  padding: 20px 30px;
  font-size: 16px;
  line-height: 32px;
  font-weight: 700;
  border: 1px solid var(--yellow-mixin);
  border-radius: 12px;
  color: var(--yellow-mixin);
}

.btn-contacts:hover {
  background-color: var(--yellow-mixin);
  color: var(--main-white);
}

.btn-contacts:active {
  background-color: #e8b143;
}

.feedback-form-input {
  width: 100%;
  height: 70px;
  margin-bottom: 25px;
  padding-left: 20px;
  border-radius: 12px;
  border: none;
}

.feedback-form-textarea {
  width: 100%;
  height: 110px;
  margin-bottom: 20px;
  padding: 20px 15px;
  border-radius: 12px;
  border: none;
  resize: none;
}

.feedback-form-input:focus,
.feedback-form-textarea:focus {
  outline: none;
  box-shadow: 2px 2px 5px #000 inset;
}

.feedback-form-btn {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 32px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  background-color: var(--yellow-mixin);
  color: var(--main-white);
  cursor: pointer;
}

.feedback-form-btn:focus,
.feedback-form-btn:hover {
  outline: none;
  box-shadow: 0 3px 3px var(--grey-mixin);
  background-color: #e8b143;
}

.feedback-form-btn:active {
  background-color: var(--yellow-mixin);
  box-shadow: none;
}

/* Footer
=========================================================================== */

.footer {
  padding-top: 20px;
  padding-bottom: 50px;
}

.wrapper-footer {
  position: relative;
  max-width: 1170px;
  display: flex;
  /* justify-content: space-between; */
  padding: 50px;
  border-radius: 12px;
  background-color: var(--grey-mixin);
}

.footer-logo-image {
  position: absolute;
  bottom: -30px;
  right: 180px;
  z-index: 0;
  width: 250px;
  height: 250px;
  background-image: url(../img/logo_footer.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-content {
  flex: 0 0 30%;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: var(--main-white);
}

.footer-content:not(:last-child) {
  margin-right: 115px;
}

.content-contacts {
  flex: 0 0 35%;
}

.content-social {
  flex: 0 0 15%;
}

.footer-link {
  color: var(--yellow-mixin);
}

.footer-link:focus,
.footer-link:hover {
  outline: none;
  color: #f5c056;
}

.footer-content-copyright,
.footer-content-info {
  margin-bottom: 40px;
}

.footer-content-info {
  margin-bottom: 40px;
}

.footer-content-adress,
.footer-content-phone {
  margin-bottom: 30px;
}

.footer-content-phone,
.footer-content-email {
  display: flex;
  flex-direction: column;
}

.footer-content-phone-link,
.footer-content-email-link {
  display: inline-block;
}

.footer-content-social {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.social-link {
  width: 25px;
  height: 25px;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .5;
}

.social-link:hover {
  opacity: 1;
}

.link-advisor {
  background-image: url(../img/tripadvisor.svg);
}

.link-twit {
  background-image: url(../img/twitter.svg);
}

.link-fb {
  background-image: url(../img/facebook.svg);
}

.link-vk {
  background-image: url(../img/vk.svg);
}

.link-plus {
  background-image: url(../img/google_plus.svg);
}
