html {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

@font-face {
  font-family: "Muller";
  src: local("Muller-Regular"),
    url("../font/MullerRegular.woff2") format("woff2"),
    url("../font/MullerRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Muller";
  src: local("Muller-Light"),
    url("../font/MullerLight.woff2") format("woff2"),
    url("../font/MullerLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Muller";
  src: local("Muller-Bold"),
    url("../font/MullerBold.woff2") format("woff2"),
    url("../font/MullerBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --white-smoke-color: #f1f1f1;
  --dark-charcoal-color: #333;
  --yellow-color: #cc9933;
  --white-color: #fff;
  --shade-of-brown: #c93;
  --medium-dark-shade-of-brown: #A47312;
  --dark-gray: #666;
  --medium-light-shade-of-brown: #f0bf5f;
  --black: #000;
  --gray: #999;
  --light-gray: #e9e9e9;
}

body {
  min-width: 1200px;
  font-family: "Muller", "Roboto", sans-serif;
  font-weight: 400;
  background: var(--white-smoke-color);
}

/* glob */
.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex {
  display: flex;
}

.container {
  width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.h2-title {
  margin: 0;
  padding-left: 40px;
  padding-bottom: 20px;
  font-family: Muller;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  color: var(--dark-charcoal-color);
}

.section-offset {
  margin-bottom: 70px;
}

.btn {
  border: 1px solid var(--yellow-color);
  border-radius: 10px;
  padding: 13px 20px;
  font-weight: 400;
  line-height: normal;
  color: var(--yellow-color);
  background-color: var(--white-color);
  transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

.btn:focus {
  background-color: var(--shade-of-brown);
  color: var(--white-color);
  outline: 1px solid var(--shade-of-brown);
}

.btn:hover {
  background-color: var(--shade-of-brown);
  color: var(--white-color);
}

.btn:active {
  background-color: var(--medium-dark-shade-of-brown);
}

/* header */
.header__container {
  padding-top: 30px;
  justify-content: space-between;
}

.header__up {
  height: 54px;
  margin-bottom: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.header__logo:not(:last-child) {
  padding-right: 40px;
}

.header__contact {
  margin-right: auto;
  font-family: Muller;
  font-size: 20px;
  font: 500;
  color: var(--dark-gray);
  transition: color .3s ease-in-out;
}

.header__contact:focus {
  color: var(--yellow-color);
  outline: 1px solid var(--yellow-color);
}

.header__contact:hover {
  color: var(--yellow-color);
}

.header__contact:active {
  color: var(--medium-dark-shade-of-brown);
  outline: none;
}

.cabinet-link {
  font-family: "Muller";
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--yellow-color);
  transition: color .3s ease-in-out;
}

.cabinet-link svg {
  fill: var(--yellow-color);
  transition: fill .3s ease-in-out;
}

.cabinet-link:focus {
  color: var(--yellow-color);
  outline: 1px solid var(--yellow-color);
}

.cabinet-link:hover {
  color: var(--medium-light-shade-of-brown);
}

.cabinet-link:hover svg {
  fill: var(--medium-light-shade-of-brown);
}

.cabinet-link:active {
  color: var(--medium-dark-shade-of-brown);
  outline: none;
}

.header__down {
  align-items: center;
  padding: 30px 45px;
  height: 70px;
  justify-content: space-between;
  background: var(--white-color);
  border-radius: 15px;
}

.header__left {
  font-family: Muller;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.header__nav {
  margin-right: 45px;
  color: var(--dark-gray);
  align-items: center;
}

.nav__item:not(:last-child) {
  margin-right: 45px;
}

.nav__link {
  position: relative;
  color: var(--dark-gray);
  transition: color .3s ease-in-out, outline .3s ease-in-out;
}

.nav__link:focus {
  outline-offset: 2px;
  outline: 1px solid var(--shade-of-brown);
  color: var(--yellow-color);
}

.nav__link:hover {
  color: var(--yellow-color);
}

.nav__link:active {
  outline: none;
  color: var(--medium-dark-shade-of-brown);
}

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

/* offers */
.offers {
  margin-top: 70px;
}

.main__section {
  margin: 0;
}

.offers__right {
  justify-content: stretch;
}

.offers__item {
  width: 573px;
  margin-right: 24px;
  margin-bottom: 24px;
  padding-top: 40px;
  padding-left: 45px;
  padding-right: 108px;
  padding-bottom: 40px;
  flex-direction: column;
}

.offers__item-2 {
  padding-top: 212px;
  padding-left: 45px;
  padding-right: 229px;
}

.offers__item:last-child {
  margin-bottom: 0;
}

.offers__background-1 {
  background-image: url(../img/offers-1.jpg), linear-gradient(90deg, rgba(48, 64, 89, 0.84) -2.9%, rgba(53, 65, 83, 0.00) 65.7%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}

.offers__background-2 {
  background-image: url(../img/offers-2.jpg), linear-gradient(90deg, rgba(48, 64, 89, 0.84) -2.9%, rgba(53, 65, 83, 0.00) 65.7%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}

.offers__background-3 {
  width: 573px;
  background-image: url(../img/offers-3.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}

.overflow {
  word-wrap: break-word;
}

.offers__title {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: Muller;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  color: var(--white-color);
}

.offers__text {
  margin: 0;
  padding-bottom: 47px;
  font-family: Muller;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: var(--white-color);
}

.offers__link {
  padding-right: 4px;
  font-family: Muller;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--medium-light-shade-of-brown);
  align-items: center;
  transition: color .3s ease-in-out;
}

.offers__link--center {
  align-items: center;
}

.offers__link--center:hover {
  transform: translate(15px, 0px) scale(1.1);
}

.offers__link:active {
  color: var(--white-color);
}

/* about-us */
.about-us__text {
  max-width: 888px;
  margin-right: 0;
  font-family: Muller;
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
  color: var(--black);
}

/* services */
.services__list {
  flex-direction: row;
  flex-wrap: wrap;
}

.services__item {
  position: relative;
  margin: 0;
  margin-bottom: 24px;
  width: 573px;
  background-color: var(--white-color);
}

.services__item:not(:nth-child(2n)) {
  margin-right: 24px;
}

.services__img {
  padding-bottom: 26px;
  border-radius: 15px 15px 0 0;
}

.services__link {
  padding-left: 45px;
  padding-right: 4px;
  font-family: Muller;
  font-size: 20px;
  font-weight: 500;
  line-height: 200%;
  color: var(--yellow-color);
  align-items: center;
  transition: color .3s ease-in-out;
}

.services__item--center {
  align-items: center;
}

.services__stroke {
  stroke: var(--yellow-color);
  transition: stroke .3s ease-in-out;
}

.services__item .services__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline-color: transparent;
}

.services__link:focus::after {
  outline: 1px solid var(--shade-of-brown);
  outline-offset: 7px;
  transition: outline-color .3s ease-in-out;
}

.services__link:hover {
  color: var(--medium-light-shade-of-brown);
}

.services__item--center:hover svg {
  stroke: var(--medium-light-shade-of-brown);
}

.services__link:active {
  color: var(--medium-dark-shade-of-brown);
}

.services__item--center:active svg {
  stroke: var(--medium-dark-shade-of-brown);
}

.services__text {
  width: 402px;
  padding-left: 45px;
  font-family: Muller;
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
  color: var(--black);
}

/* advantages */
.advantages__list {
  flex-direction: row;
  flex-wrap: wrap;
}

.advantages__item {
  margin: 0;
  margin-bottom: 22px;
  padding-top: 40px;
  width: 276px;
  min-height: 276px;
  background: var(--white-color);
  border-radius: 15px;
}

.advantages__item:not(:nth-child(4n)) {
  margin-right: 22px;
}

.advantages__img {
  width: 111px;
  height: 66px;
  padding-left: 45px;
}

.advantages__text {
  margin: 0;
  padding: 10px 42px 32px 45px;
  font-family: Muller;
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
  color: var(--black);
}

/* placement */
.placement__list {
  flex-direction: row;
  flex-wrap: wrap;
}

.placement__item {
  margin: 0;
  margin-bottom: 22px;
  width: 374px;
  min-height: 440px;
  background: var(--white-color);
  border-radius: 15px;
}

.placement__item:not(:nth-child(3n)) {
  margin-right: 24px;
}

.placement__img {
  padding-bottom: 32px;
  border-radius: 15px;
}

.placement__img-2 {
  padding-bottom: 0px;
  background-image: url(../img/41.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.placement__price-card {
  padding-bottom: 16px;
  padding-left: 45px;
}

.placement__from {
  padding-right: 4px;
  font-family: Muller;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--gray);
}

.placement__price {
  padding-right: 4px;
  font-family: Muller;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: var(--black);
}

.placement__price-night {
  padding-right: 52px;
  font-family: Muller;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--black);
}

.placement__link-card {
  position: relative;
  padding: 373px 54px 27px 54px;
  align-items: center;
  justify-content: space-between;
}

.placement__link {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  font-family: Muller;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  color: var(--white-color);
  transition: background-size .3s;
}

.placement__link:hover {
  background-size: 100% 2px;
}

.placement__link-card .placement__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.placement__hotel-name {
  padding-top: 16px;
  padding-bottom: 16px;
  font-family: Muller;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--black);
}

.placement__hotel-country {
  padding-bottom: 20px;
  font-family: Muller;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--gray);
}

/* tour */
.tour__background {
  min-height: 256px;
  border-radius: 15px;
  background: var(--light-gray);
}

.tour__h2 {
  padding-left: 40px;
  padding-top: 45px;
}

.tour__section {
  margin: 0 45px;
  border-radius: 15px;
  background: var(--white-color);
}

.tour__offset:not(:last-child) {
  margin-right: 41px;
}

.form {
  padding: 32px;
}

.form__item {
  width: 169px;
  height: 43px;
}

.form__item-2 {
  width: 121px;
}

.form__head {
  color: var(--black);
  font-family: Muller;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
}

.form__bottom {
  margin-top: 15px;
  width: 121px;
  border: none;
  color: var(--black);
  font-family: Muller;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form__bottom--boder {
  border-bottom: 1px solid var(--light-gray);
}

.tour__form {
  align-items: center;
  justify-content: space-between;
}

.tour__select {
  display: block;
  width: 169px;
  padding: 0;
  margin-top: 15px;
  border: none;
  background-color: var(--white-color);
  background-image: url("../img/rectangle-down-black.png");
  background-repeat: no-repeat;
  background-position: center right;
}

.tour__option {
  color: var(--black);
  font-family: Muller;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

select {
  -webkit-appearance: none;
}

.tour__btn {
  width: 106px;
  padding: 13px 30px;
  border-radius: 10px;
  border: 1px solid var(--shade-of-brown);
  background-color: var(--white-color);
  color: var(--shade-of-brown);
  font-family: Muller;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* contact */
.contact__background {
  min-height: 618px;
  border-radius: 15px;
  background: var(--white-color);
}

.contact__background-image {
  background-image: url("../img/lobby.jpg");
  background-repeat: no-repeat;
  background-position: center right 45px;
  background-size: 653px 528px;
}

.contact__item {
  margin-left: 45px;
  padding-top: 45px;
  width: 375px;
}

.contact__border {
  width: 375px;
  border-bottom: 1px solid var(--light-gray);
}

.contact__item--left {
  width: 145px;
}

.contact__item--right {
  width: 231px;
  margin-bottom: 23px;
}

.contact__item--up-offset {
  margin-top: 25px;
}

.contact__h3 {
  height: 23px;
  color: var(--black);
  font-family: Muller;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contact__link {
  display: block;
  color: var(--shade-of-brown);
  font-family: Muller;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: color .3s ease-in-out, outline .3s ease-in-out, transform .3s ease-in-out;
}

.contact__link:focus {
  color: var(--yellow-color);
  outline: 1px solid var(--shade-of-brown);
}

.contact__link:hover {
  color: var(--yellow-color);
  transform: scale(1.1);
}

.contact__link:active {
  color: var(--medium-dark-shade-of-brown);
  outline: none;
}

.contact__text {
  color: var(--black);
  font-family: Muller;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.contact__text--mail {
  color: var(--gray);
}

.contact__btn {
  margin-top: 45px;
  width: 216px;
  height: 72px;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--shade-of-brown);
  background-color: var(--white-color);
  font-family: Muller;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* footer */
.footer__block {
  min-height: 341px;
  border-radius: 15px;
  background: var(--dark-charcoal-color);
}

.footer__left {
  margin-left: 45px;
  margin-top: 45px;
  width: 302px;
  flex-direction: column;
}

.footer__left--offset:not(:last-child) {
  margin-bottom: 38px;
}

.footer__center {
  margin-left: 125px;
  margin-top: 45px;
  width: 359px;
}

.footer__social {
  margin-left: 269px;
  margin-top: 45px;
  flex-direction: column;
}

.footer__text {
  color: var(--white-color);
  font-family: Muller;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.footer__text--left {
  line-height: 190%;
}

.footer__text--center {
  line-height: 30px;
}

.footer__link {
  display: block;
  color: var(--shade-of-brown);
  font-family: Muller;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: color .3s ease-in-out, transform .3s ease-in-out;
}

.footer__link:focus {
  color: var(--yellow-color);
  outline: 1px solid var(--yellow-color);
}

.footer__link:hover {
  color: var(--medium-light-shade-of-brown);
  transform: scale(1.1);
}

.footer__link:active {
  color: var(--medium-dark-shade-of-brown);
  outline: none;
}

.footer__social--logo svg {
  fill: var(--gray);
  transition: fill .3s ease-in-out, transform .3s ease-in-out;
}

.footer__social--logo:focus svg {
  fill: var(--yellow-color);
}

.footer__social--logo:hover svg {
  fill: var(--medium-light-shade-of-brown);
  transform: scale(1.3);
}

.footer__social--logo:active svg {
  fill: var(--medium-dark-shade-of-brown);
}

.footer__center--offset:not(:last-child) {
  margin-bottom: 15px;
}

.footer__tel {
  width: 143px;
}

.footer__email {
  width: 130px;
}

.footer__social--logo {
  width: 25px;
  height: 25px;
}

.footer__social--logo:not(:last-child) {
  margin-bottom: 20px;
}

.footer__background-image {
  background-image: url("/img/footer-logo.png");
  background-repeat: no-repeat;
  background-position: bottom 1px right 177px;
}
