.btn-special {
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  z-index: 0;
  overflow: visible;
}
.btn-special::before, .btn-special::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  z-index: -1;
}
.btn-special::before {
  top: 0;
  left: 0;
}
.btn-special::after {
  bottom: 0;
  right: 0;
}
.btn-special:hover {
  color: #ECB365;
  border: 1px solid transparent;
}
.btn-special:hover::before {
  top: -10px;
  left: -10px;
  border-top: 5px solid #ECB365;
  border-left: 5px solid #ECB365;
}
.btn-special:hover::after {
  bottom: -10px;
  right: -10px;
  border-bottom: 5px solid #ECB365;
  border-right: 5px solid #ECB365;
}

.section-heading {
  position: relative;
  font-size: 3.5rem;
  text-align: center;
  text-transform: uppercase;
  padding: 1.5em;
  margin-bottom: 1em;
  color: #ebecf2;
  letter-spacing: 3px;
  text-shadow: -3px -3px 5px rgb(0, 0, 0);
}
.section-heading::after {
  content: "";
  position: absolute;
  bottom: 43px;
  left: 50%;
  transform: translateX(-50%);
  width: 8%;
  height: 2px;
  background-color: #ECB365;
}

.hamburger {
  padding: 30px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #ebecf2;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #ebecf2;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes show-bg {
  to {
    background-color: rgba(0, 0, 0, 0.6);
  }
}

@keyframes show-bg {
  to {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
@-webkit-keyframes show-text {
  to {
    opacity: 1;
  }
}
@keyframes show-text {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  from {
    transform: scale(0.1);
    opacity: 0.5;
  }
  to {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes pulse {
  from {
    transform: scale(0.1);
    opacity: 0.5;
  }
  to {
    transform: scale(1.1);
    opacity: 1;
  }
}
@-webkit-keyframes intro {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 0;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes intro {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 0;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #041C32;
  color: #ebecf2;
}

.show-slide {
  opacity: 1 !important;
  transform: translateX(0) !important;
  filter: blur(0) !important;
}

.show {
  opacity: 1 !important;
}

.hide {
  opacity: 0 !important;
}

.team-active {
  flex-grow: 8 !important;
}

.nav-scroll {
  height: 50px;
  opacity: 0.8;
  justify-content: flex-end;
}

.nav-active {
  color: #ECB365 !important;
}

nav {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s;
}

.nav__logo-box {
  padding: 1em 2em;
  display: flex;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  width: 80px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}
.nav__logo-text .start {
  align-self: start;
}
.nav__logo-text .middle {
  align-self: center;
}
.nav__logo-text .end {
  align-self: end;
}
.nav__logo-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1em;
  font-size: 2rem;
}
.nav__menu-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 2rem;
}
.nav__menu-items {
  display: none;
}
.nav__menu-items .nav-btn {
  padding: 0 1em;
  text-decoration: none;
  text-transform: uppercase;
  color: #ebecf2;
  transition: color 0.4s;
}
.nav__menu-items .nav-btn:hover {
  color: #ECB365;
}
.nav__menu-items-mobile {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4em;
  padding: 2em 0;
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(-300px);
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  z-index: 0;
}
.nav__menu-items-mobile .nav-btn {
  padding: 1em 2em;
  text-decoration: none;
  text-transform: uppercase;
  color: #ebecf2;
  transition: color 0.4s;
}
.nav__menu-items-mobile .nav-btn:hover {
  color: #ECB365;
}
.nav__menu-items-mobile-active {
  transform: translateY(0);
  opacity: 1;
}

.nav__scroll {
  position: fixed;
  opacity: 0.5;
}
.nav__scroll .nav__logo-icon {
  font-size: 3rem;
}
.nav__scroll .nav__logo-text {
  width: 150px;
  font-size: 2rem;
}

.hamburger {
  position: fixed;
  right: 10%;
  z-index: 10;
}

header {
  position: relative;
  height: 100vh;
}

.header__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.header__img--mobile {
  background-image: url(../img/header-mobile.jpg);
}
.header__img--desktop {
  background-image: url(../img/hero1-img/frame_1.1.1.webp);
  display: none;
}
.header__img-2--desktop {
  background-image: url(../img/hero1-img/frame_1.1.2.webp);
}
.header__img-3--desktop {
  background-image: url(../img/hero1-img/frame_1.1.3.webp);
}
.header__img-4--desktop {
  background-image: url(../img/hero1-img/frame_1.1.4.webp);
}
.header__img-5--desktop {
  background-image: url(../img/hero1-img/frame_1.1.5.webp);
}
.header__img-6--desktop {
  background-image: url(../img/hero1-img/frame_1.1.6.webp);
}
.header__img-7--desktop {
  background-image: url(../img/hero1-img/frame_1.1.7.webp);
}
.header__img-8--desktop {
  background-image: url(../img/hero1-img/frame_1.1.8.webp);
}
.header__img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.header__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em 2em;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  background: none;
  border: 2px solid #ebecf2;
  cursor: pointer;
  color: #ebecf2;
  text-decoration: none;
  letter-spacing: 2px;
}

.inspirational-text-one,
.inspirational-text-two,
.inspirational-text-author {
  position: absolute;
  text-transform: uppercase;
  font-size: 1rem;
  overflow: visible;
  font-weight: 100;
}

.inspirational-text-one::before,
.inspirational-text-two::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -5px;
  width: 3px;
  height: 150%;
  background-color: #ECB365;
  -webkit-animation: pulse 0.5s infinite alternate;
          animation: pulse 0.5s infinite alternate;
}

.inspirational-text-one {
  top: 25%;
  left: 10%;
}

.inspirational-text-two {
  bottom: 20%;
  left: 10%;
}

.inspirational-text-author {
  color: #ECB365;
  font-weight: 700;
}

.inspirational-text-author-one {
  top: 30%;
  left: 10%;
}

.inspirational-text-author-two {
  bottom: 17%;
  left: 10%;
}

[bg-img=default] {
  background-color: #041C32;
}

[bg-img=fat-burn],
[bg-img=stamina],
[bg-img=muscle] {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

[bg-img=fat-burn] {
  background-image: url(../img/fatburn.jpg);
}

[bg-img=stamina] {
  background-image: url(../img/stamina.jpg);
}

[bg-img=muscle] {
  background-image: url(../img/muscle.jpg);
}

.offer {
  position: relative;
  min-height: 100vh;
  z-index: 0;
}
.offer__shadow {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.offer__shadow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.offer__boxes {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2em;
  margin: 0 auto;
  padding: 4em 2em;
  width: 100%;
  max-width: 1600px;
}
.offer__accordion-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4em 1em;
  width: 100%;
  max-width: 400px;
  height: 450px;
  background-color: #064663;
  border-radius: 10px;
  box-shadow: -2px -3px 0px rgba(236, 179, 101, 0.8);
  opacity: 0;
  filter: blur(5px);
  transition: opacity 0.8s, filter 0.8s, transform 0.8s;
}
.offer__accordion-box:nth-child(2) {
  transition-delay: 100ms;
}
.offer__accordion-box:nth-child(3) {
  transition-delay: 200ms;
}
.offer__accordion-btn {
  padding: 1em;
  margin-bottom: 1em;
  width: 80%;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ebecf2;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #064663;
  border: none;
  border-radius: 5px;
  transition: color 0.7s, background-color 0.7s, box-shadow 0.7s;
  cursor: pointer;
  text-shadow: 0 0 5px #000;
}
.offer__accordion-btn:hover, .offer__accordion-btn:focus {
  background-color: #041C32;
  color: #ECB365;
  box-shadow: 2px 3px 0 rgba(236, 179, 101, 0.8), inset 11px 6px 10px rgba(0, 0, 0, 0.6);
}
.offer__accordion-info {
  width: 80%;
  opacity: 0;
  transition: 0.7s;
}
.offer__info-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 250px;
  list-style: circle;
  list-style-position: inside;
  text-align: center;
  background-color: #041C32;
  border-radius: 5px;
  box-shadow: 2px 3px 0 rgba(236, 179, 101, 0.8), inset 11px 6px 10px rgba(0, 0, 0, 0.6);
}
.offer__info-list-item {
  padding: 1em;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
}
.offer__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  text-shadow: 0 0 5px #000;
  transition: 0.7s;
}

.team {
  min-height: 100vh;
}
.team__icon-box, .team__wrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
}
.team__icon-box {
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 2em;
  margin: 2em auto;
}
.team__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 1em;
  margin: 0 0.5em 1em;
  height: 350px;
  width: 75%;
  border: 1px solid #ebecf2;
  border-radius: 10px;
  font-size: 4rem;
  text-transform: uppercase;
  text-align: center;
  text-shadow: -5px -5px 2px rgb(0, 0, 0);
}
.team__icon-item .counter {
  font-size: 4rem;
  color: #ECB365;
}
.team__icon-item p {
  font-size: 1.6rem;
}
.team__wrapper {
  flex-direction: column;
  padding: 1em;
  margin: 5em auto 10em;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  background-color: #064663;
  border-radius: 10px;
}
.team__card {
  position: relative;
  flex-grow: 0.8;
  height: 500px;
  margin: 0.5em;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  transition: flex-grow 0.8s;
  overflow: hidden;
  cursor: pointer;
}
.team__card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.5s;
}
.team__card.team-active::after {
  opacity: 0;
}
.team .coach1 {
  background-image: url(../img/coach1.jpg);
}
.team .coach2 {
  background-image: url(../img/coach2.jpg);
  background-position: top;
}
.team .coach3 {
  background-image: url(../img/coach3.jpg);
  background-position: top;
}
.team .coach4 {
  background-image: url(../img/coach4.jpg);
}
.team .coach1::before,
.team .coach2::before,
.team .coach3::before,
.team .coach4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.team .coach1::before {
  background-color: #ECB365;
}
.team .coach2::before {
  background-color: #064663;
}
.team .coach3::before {
  background-color: #04293A;
}
.team .coach4::before {
  background-color: #041C32;
}
.team__text {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 80%;
  padding: 2em;
  color: #ebecf2;
  border-radius: 6px;
  z-index: 5;
}
.team__text h2 {
  font-size: 3rem;
  text-transform: uppercase;
  transform: rotate(0deg);
  text-shadow: 5px 5px 10px #000;
}
.team__text p {
  display: none;
  opacity: 0;
  font-size: 1.5rem;
}
.team .team-active .team__text {
  -webkit-animation: show-bg 1s 0.6s forwards;
          animation: show-bg 1s 0.6s forwards;
}
.team .team-active h2 {
  display: none;
}
.team .team-active p {
  display: block;
  -webkit-animation: show-text 1s 0.2s forwards;
          animation: show-text 1s 0.2s forwards;
}
.team__quote {
  padding: 0 1em;
  text-align: center;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 100;
}
.team__quote-span {
  font-weight: normal;
}
.team__quote-icon {
  color: #ECB365;
  font-size: 3rem;
  margin-right: 0.2em;
}
.team__heroImg {
  position: relative;
  height: 500px;
  background-image: url(../img/hero-gym.jpg);
  background-attachment: fixed;
  z-index: 0;
}
.team__heroImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.team__heroImg-heading {
  padding: 2em;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.5rem;
  z-index: 0;
}
.team__heroImg-text {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  padding: 2em;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.team__heroImg-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  margin: 1em;
  height: 150px;
  width: 40%;
  text-align: center;
  font-weight: 100;
  text-shadow: 5px 5px 15px #ddd;
}
.team__heroImg-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  z-index: -1;
}
.team__heroImg-item i {
  font-size: 4rem;
  text-shadow: 0px 0px 5px #ddd;
}

.price {
  position: relative;
  min-height: 100vh;
}
.price__boxes {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
}
.price__box {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin: 1em;
  padding: 1em;
  width: 50%;
  min-width: 250px;
  min-height: 450px;
  font-size: 1.5rem;
  text-align: center;
  border: none;
  border-radius: 10px;
  box-shadow: 5px 5px 5px #000;
  background-color: #064663;
  transition: transform 0.5s;
}
.price__box-title {
  text-transform: uppercase;
  font-weight: 100;
  font-size: 2rem;
  margin-bottom: 0.5em;
  color: #ECB365;
}
.price__box-span {
  font-weight: 700;
}
.price__box-items {
  text-transform: uppercase;
  margin: 1em 0;
}
.price__box:hover {
  transform: scale(1.1);
}
.price__box-special {
  display: none;
  position: absolute;
  opacity: 0.5;
  z-index: -1;
  max-width: 420px;
}
.price__box-full {
  order: 0;
}
.price__item {
  padding: 0.5em;
  font-weight: 100;
  margin: 1em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.price__value {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 2.5rem;
  color: #ECB365;
}
.price__btn {
  padding: 1em 2em;
  margin: 0 auto;
  width: 80%;
  border-radius: 10px;
  border: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.5s;
}
.price__btn-color {
  background-color: #ECB365;
}
.price__btn:hover {
  background-color: #8ec1d8;
}
.price__btn-color:hover {
  background-color: #e08f1c;
}
.price__info {
  position: absolute;
  bottom: -20%;
  left: -66%;
  font-family: "Grape Nuts", cursive;
  text-transform: uppercase;
  font-size: 3rem;
  transform: rotate(-10deg);
}
.price__arrow {
  position: absolute;
  bottom: -8%;
  left: -18%;
  font-size: 6rem;
  transform: rotate(-10deg);
}
.price__line {
  position: absolute;
  width: 200px;
  bottom: -15%;
  left: -15%;
  font-size: 6rem;
  z-index: -1;
}

.contact__form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  padding: 1em;
  width: 100%;
  max-width: 700px;
}
.contact__form-info {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1em;
}
.contact__form-info-span {
  color: #ECB365;
  font-weight: 700;
}
.contact__name-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  max-width: 500px;
  padding: 1em;
}
.contact__name {
  display: flex;
  flex-direction: column;
  padding: 1em;
  width: 100%;
  max-width: 500px;
}
.contact__email {
  display: flex;
  flex-direction: column;
  padding: 1em;
  flex-grow: 1;
}
.contact__input {
  padding: 0.5em 1em;
  border: none;
  border-radius: 10px;
}
.contact__textarea {
  width: 100%;
  max-width: 460px;
  min-width: 260px;
  min-height: 300px;
  border: none;
  border-radius: 10px;
}
.contact__label {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 100;
  text-transform: uppercase;
}
.contact__btn {
  margin: 1em 1.5em 1em;
  padding: 1em 3em;
  border-radius: 10px;
  border: none;
  text-transform: uppercase;
  background-color: #064663;
  color: #ebecf2;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.4s, color 0.4s;
}
.contact__btn:hover {
  background-color: #0c73a3;
  color: #ccc;
}

.footer__img {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background-image: url(../img/night-view-2140982_1920.jpg);
  background-position: center;
  background-size: cover;
  height: 600px;
  z-index: 0;
}
.footer__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.footer__logo-box {
  padding: 1em 2em;
  display: flex;
}
.footer__logo-text {
  display: flex;
  flex-direction: column;
  width: 150px;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
}
.footer__logo-text .start {
  align-self: start;
}
.footer__logo-text .middle {
  align-self: center;
}
.footer__logo-text .end {
  align-self: end;
}
.footer__logo-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1em;
  font-size: 4rem;
}
.footer__address, .footer__media {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  min-width: 300px;
  height: 200px;
  font-size: 2rem;
}
.footer__heading {
  color: #ECB365;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
}
.footer__address-item {
  font-weight: 100;
}
.footer__media-item {
  text-decoration: none;
  color: #ebecf2;
  font-size: 3rem;
  transition: color 0.4s, transform 0.4s;
}
.footer__media-item:hover {
  color: #ECB365;
  transform: scale(1.2);
}
.footer__end {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1em;
  text-align: center;
  font-size: 1.5rem;
}

@media (min-width: 375px) {
  .nav__logo-text {
    width: 150px;
    font-size: 2rem;
  }
  .nav__logo-icon {
    font-size: 3rem;
  }
  .nav__menu-items-mobile {
    margin-top: 5.6em;
    padding: 1em 0;
  }
  .header__btn {
    font-size: 1.2rem;
    padding: 1em 2em;
  }
  .inspirational-text-two,
.inspirational-text-author-two,
.inspirational-text-one,
.inspirational-text-author-one {
    left: 15%;
  }
}
@media (min-width: 576px) {
  .nav__logo-icon {
    font-size: 3.5rem;
  }
  .header__btn {
    font-size: 1.6rem;
  }
  .inspirational-text-two,
.inspirational-text-author-two {
    left: 55%;
  }
  .inspirational-text-one,
.inspirational-text-two,
.inspirational-text-author {
    font-size: 1.2rem;
  }
  .team__heroImg-text {
    margin-top: 3.5em;
    font-size: 1.6rem;
  }
  .team__heroImg-item {
    height: 200px;
    width: 30%;
    margin: 0;
  }
  .price__box {
    margin: 1.5em;
    padding: 2em;
    width: 30%;
    min-width: 420px;
    min-height: 550px;
    font-size: 2rem;
  }
  .price__box-title {
    font-size: 3rem;
  }
  .price__box-special {
    display: block;
  }
  .footer__img {
    height: 500px;
  }
  .footer__logo-box {
    width: 500px;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .nav__logo-text {
    width: 200px;
    font-size: 3rem;
  }
  .nav__logo-icon {
    font-size: 4rem;
  }
  .nav__menu-items-mobile {
    margin-top: 7.5em;
    padding: 1em;
  }
  .header__btn {
    font-size: 1.8rem;
  }
  .team__wrapper {
    flex-direction: row;
  }
  .team__icon-box {
    padding: 3em;
  }
  .team__icon-item {
    padding: 1em;
    width: 40%;
    margin: 0 1em 1em;
  }
  .team__text h2 {
    transform: rotate(-90deg);
  }
  .team__text p {
    font-size: 2.5rem;
  }
  .inspirational-text-one,
.inspirational-text-two,
.inspirational-text-author {
    font-size: 1.5rem;
  }
  .inspirational-text-two {
    bottom: 20%;
  }
  .inspirational-text-author-two {
    bottom: 17%;
  }
  .inspirational-text-one {
    top: 25%;
  }
  .inspirational-text-author-one {
    top: 28%;
  }
  .contact__name-box {
    width: 700px;
    max-width: 700px;
  }
  .contact__textarea {
    min-width: 660px;
    max-width: 660px;
  }
  .contact__name {
    max-width: 340px;
  }
  .contact__btn {
    margin: 1em 1.5em 1em 0;
    align-self: flex-end;
  }
  .footer__logo-box {
    width: 700px;
  }
}
@media (min-width: 992px) {
  .nav__logo-icon {
    font-size: 5rem;
  }
  .nav__menu-items {
    display: block;
    font-size: 1.8rem;
  }
  .nav__menu-items-mobile {
    display: none;
  }
  .hamburger {
    display: none;
  }
  .header__img--desktop {
    display: block;
  }
  .header__img--mobile {
    display: none;
  }
  .header__btn {
    font-size: 2.2rem;
  }
  .offer__shadow {
    display: block;
  }
  .offer__boxes {
    row-gap: 6em;
  }
  .team__heroImg-heading {
    font-size: 2.2rem;
  }
  .team__heroImg-text {
    margin-top: 3em;
    font-size: 2rem;
  }
  .team__quote {
    font-size: 2rem;
  }
  .price__box-full {
    order: 1;
  }
  .price__box-special {
    bottom: 0px;
  }
  .footer__img {
    height: 300px;
  }
  .footer__logo-box {
    width: 350px;
    justify-content: center;
    order: 1;
  }
  .footer__media {
    order: 2;
  }
}
@media (min-width: 1200px) {
  .nav__menu-items {
    margin-right: 2em;
    font-size: 2.2rem;
  }
  .team__icon-item {
    width: 25%;
  }
  .price__info {
    bottom: -20%;
    left: -90%;
  }
}
@media (min-width: 1400px) {
  .offer__accordion-box:nth-child(1) {
    transform: translateX(150%);
    transition-delay: 500ms;
  }
  .offer__accordion-box:nth-child(2) {
    transform: translateX(0%);
  }
  .offer__accordion-box:nth-child(3) {
    transform: translateX(-150%);
    transition-delay: 1000ms;
  }
  .inspirational-text-one,
.inspirational-text-two,
.inspirational-text-author {
    font-size: 1.8rem;
  }
  .footer__logo-box {
    width: 350px;
    justify-content: center;
    order: 1;
  }
  .footer__address, .footer__media {
    min-width: 350px;
  }
  .footer__media {
    order: 3;
  }
  .footer__address {
    order: 2;
  }
}/*# sourceMappingURL=style.css.map */