*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  scroll-behavior: smooth;
}

.container {
  width: 1600px;
  margin: 0 auto;
  padding: 20px 0;
  overflow-x: hidden;
}

.container__view {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.header {
  padding: 20px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -webkit-box-shadow: 4px 4px 8px 14px rgba(34, 60, 80, 0.1);
  -moz-box-shadow: 4px 4px 8px 14px rgba(34, 60, 80, 0.1);
  box-shadow: 4px 4px 8px 14px rgba(34, 60, 80, 0.1);
  margin-bottom: 60px;
  position: sticky;
  top: 20px;
  z-index: 100;
  background-color: #fff;
}

.header__title {
  margin-right: auto;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
}

.header__navigation-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__navigation-link {
  cursor: pointer;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: #000;
  text-decoration: none;
}

.header__navigation-link--active {
  text-underline-offset: 3px;
  cursor: auto;
}

.banner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 500px;
  position: relative;
  margin-bottom: 200px;
}

.banner__title {
  text-align: center;
  font-size: 64px;
  margin-bottom: 70px;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.banner__scroll-down-hint {
  font-size: 64px;
  position: absolute;
  right: -1000px;
  text-transform: uppercase;
}

.banner__cube {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 80px;
  height: 80px;
  padding: 15px;
}
.banner__cube-inner-text {
  text-align: center;
  color: #fff;
  font-size: 56px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.content {
  width: 100%;
  border-radius: 20px;
  padding: 20px 120px;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.content__about-us-title {
  min-height: 70px;
  font-size: 48px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  margin-bottom: 20px;
}

.content__about-us-desc {
  font-size: 24px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  line-height: 28px;
  letter-spacing: 2px;
  text-align: justify;
  margin-bottom: 20px;
}

.our-team__photo-block {
  position: relative;
}

.our-team__photos-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  row-gap: 20px;
  min-height: 450px;
  margin-bottom: 200px;
  position: relative;
}

.member {
  width: 400px;
  border-radius: 100%;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  display: block;
}
.member:hover {
  transform: scale(1.2);
  transition: 0.5;
}

.content__our-space-photos-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 20px;
  width: 100%;
}

.space-container {
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.space {
  width: 580px;
  height: 750px;
}

.prices__blocks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: start;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  height: 300px;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  padding: 10px;
  margin-bottom: 100px;
}

.price-block:hover .price-block__duration,
.price-block:hover .price-block__price {
  color: transparent;
  background: linear-gradient(90deg, #d42c2c, #5231d6, #2ac95f, #dbca2a);
  background-size: 300%;
  animation: gradientFlow 10s infinite linear;
  -webkit-background-clip: text;
}
.price-block__included {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-block__included li {
  font-size: 16px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  text-transform: capitalize;
  position: relative;
  text-align: center;
}

.price-block__included li::after {
  content: "";
  position: absolute;
  top: 115%;
  left: 5%;
  width: 90%;
  height: 2px;
  background-color: #000;
}

.feedbacks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-bottom: 100px;
}

.feedback {
  display: flex;
  align-items: self-start;
  justify-content: start;
  gap: 20px;
}

.feedback__author-image {
  border-radius: 10px;
}

.feedback__content {
  text-align: start;
  gap: 10px;
  background: linear-gradient(
    315deg,
    rgba(108, 74, 204, 0.3),
    rgba(38, 142, 94, 0.3)
  );
  height: 100%;
  border-radius: 5px;
  padding: 10px;
}

.feedback__content-text {
  font-size: 16px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
