html {
  box-sizing: border-box;
}

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

body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000;
}

.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  object-fit: cover;
}

input,
button {
  border-radius: 0;
}

/*.............Header.............*/
.header {
  text-align: center;
}

.header__logo {
  padding: 88px 0 60px;
}

.logo__link-img {
  width: 392px;
  height: 152px;
  object-fit: contain;
}

.menu {
  border-top: 2px solid #c4c4c4;
}

.menu__list {
  display: flex;
  justify-content: center;
}

.menu__list-item {
  width: 300px;
}

.menu__link-link {
  display: block;
  padding: 34px 10px 38px;

  font-size: 24px;
  line-height: 28px;
  color: #888;
  text-decoration: none;

  border-left: 1px solid #c4c4c4;
  border-right: 1px solid #c4c4c4;
  transition: all 0.3s;
}

.menu__link-link:hover,
.menu__link-link--active {
  color: #ffffff;
  background-color: #000000;
}

.menu__list-item:first-child {
  border-left: 1px solid #c4c4c4;
}

.menu__list-item:last-child {
  border-right: 1px solid #c4c4c4;
}

/*.............Slider................*/

.slider__item {
  min-height: 600px;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.slick-arrow {
  position: absolute;
  top: 50%;

  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;

  transform: translateY(-50%);
}

.slick-next {
  right: 20px;
}

.slick-prev {
  left: 20px;
  z-index: 5;
}

/*.............Search-form.............*/

.search__inner {
  padding: 60px 0 80px;
}

.search__form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.search__form-label {
  width: 155px;
  margin-right: 69px;

  color: #888888;
  font-size: 24px;
}

.search__form-input {
  width: 430px;
  padding: 21px 15px;

  color: #888888;
  font-family: Roboto Condensed, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;

  border: 2px solid #c4c4c4;
}

.search__form-input::placeholder {
  color: #888888;
  font-family: Roboto Condensed, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.search__form-btn {
  position: relative;
  height: 70px;
  padding-right: 23px;
  padding-left: 36px;

  color: #ffffff;
  font-size: 24px;

  background-color: #c4c4c4;
  border: 0;
  cursor: pointer;
}

.search__form-btn::before {
  content: "";

  position: absolute;
  top: 26px;
  left: 9px;
  width: 18px;
  height: 18px;

  background-image: url(../images/search-icon.svg);
}

/*.............Popular.............*/

.popular {
  text-align: center;
}

.popular__title {
  padding: 18px 15px;

  color: #ffffff;
  font-family: "PT Serif", serif;
  font-size: 48px;
  font-weight: normal;
  line-height: 64px;

  background-color: #000000;
}

.popular__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 100px 0;
}

.popular__img {
  width: 280px;
  height: 280px;

  border-radius: 50%;
}

.popular__item-title {
  padding: 30px 10px;

  color: #888888;
  font-size: 24px;
  line-height: 24px;
  font-weight: normal;
}

.popular__link {
  padding: 13px 48px;

  color: #ffffff;
  text-decoration: none;

  background-color: #c4c4c4;
}

/*.............Reasons.............*/

.reasons {
  padding: 100px 0;
}

.reasons__inner {
  display: flex;
}

.reasons__item {
  padding-right: 119px;
  padding-left: 10px;
}

.reasons__title {
  position: relative;
  margin-bottom: 20px;
  padding-left: 138px;

  font-family: "PT Serif", serif;
  font-size: 36px;
  line-height: 36px;
  font-weight: normal;
}
.reasons__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 103px;
  height: 103px;
}
.reasons__title--icon-1::before {
  background: url(../images/reasons_time-icon.png) no-repeat center;
}
.reasons__title--icon-2::before {
  background: url(../images/reasons_world-icon.png) no-repeat center;
}

.reasons__text {
  margin-bottom: 42px;
}

.reasons__link {
  position: relative;
  padding-left: 36px;

  color: #888888;
}
.reasons__link::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;

  width: 30px;
  height: 30px;

  background-image: url(../images/arrow-black.svg);
}

/*.............Special.............*/

.special {
  min-height: 100vh;

  text-align: right;

  background-color: #c4c4c4;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.special__title {
  max-width: 457px;
  margin-left: auto;
  padding-top: 68px;
  padding-bottom: 15px;

  color: #ffffff;
  font-family: "PT Serif", serif;
  font-size: 48px;
  line-height: 48px;
  font-weight: normal;
}

.special__link {
  display: inline-block;
  padding: 16px 18px;

  color: #ffffff;
  line-height: 18px;
  text-decoration: none;

  background-color: #000000;
}

/*.............Info.............*/

.info {
  padding: 100px 0;
  color: #ffffff;
  background-color: #000000;
}

.info__inner {
  display: flex;
  justify-content: space-between;
}

.info__title {
  margin-bottom: 47px;
  font-family: "PT Serif", serif;
  font-size: 48px;
  line-height: 48px;
  font-weight: normal;
  text-align: center;
}

.info ul {
  list-style: none;
}

/* Managers */

.info__managers {
  width: 297px;
}

.info__managers-title {
  margin-bottom: 27px;
}

.info__managers-items {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.info__managers-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.info__managers-description {
  margin: 22px 0 43px;
  line-height: 21px;
}

.info__managers-btn {
  display: inline-block;
  padding: 16px 21px;

  color: #000000;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;

  border: none;
  background-color: #ffffff;
}

/* Blog */

.info__blog {
  width: 411px;
}

.info__blog-link {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding-left: 67px;

  color: #ffffff;
  text-decoration: none;
}

.info__blog-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;

  width: 30px;
  height: 30px;

  background-image: url(../images/arrow-white.svg);
  transform: translateY(-50%);
}

/* Reviews */

.info__reviews {
  width: 300px;
}

.review__photo {
  width: 100%;
  height: 127px;
}

.review__text {
  margin: 22px 0;
  line-height: 21px;
}

.info__reviews-link {
  display: inline-block;
  padding: 16px 38px;

  color: #000000;
  line-height: 18px;
  text-decoration: none;

  background-color: #ffffff;
}

/*.............Footer.............*/

/* Footer-top */

.footer__top {
  padding: 100px 0;
  background-color: #000000;
}

.footer__top-inner {
  display: flex;
}

.footer__menu {
  width: 300px;
  list-style: none;
}

.footer__menu-link {
  color: #ffffff;
  font-size: 24px;
  line-height: 36px;
  text-decoration: none;
}

.question__form {
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.question__form-label {
  margin-right: 10px;
  color: #888888;
  line-height: 18px;
}

.question__form-input {
  width: 511px;
  padding: 24px 15px;

  color: #888888;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;

  background-color: #ffffff;
  border: 2px solid #c4c4c4;
}
.question__form-input::placeholder {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.question__form-btn {
  padding: 26px 35px;

  color: #ffffff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;

  background-color: #c4c4c4;
  border: none;
}

/* Footer-bottom */

.footer__bottom {
  padding: 3px 0 23px;
  background-color: #ffffff;
}

.footer__logo {
  text-align: center;
}

.logo__link-img--footer {
  width: 384px;
  height: 138px;
}
