@font-face {
  font-family: "MAZIUS REVIEW 20.09";
  src: url("fonts/MAZIUSREVIEW20.09-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #000;
}

.mazius-font {
  font-family: "MAZIUS REVIEW 20.09", "Montserrat", sans-serif;
  font-weight: 400;
}

.section-label {
  font-weight: 400;
  letter-spacing: 0.26em;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .section-title {
    font-size: 3.375rem;
  }
}

.hero {
  padding: 1.5rem 0 3rem;
  background-color: #000;
  background-image: url("img/background-hero-mobile.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  color: #fff;
}
.hero h2 {
  font-size: 1rem;
  line-height: 150%;
  font-weight: 300;
  margin: 1rem 0 1.5rem;
}
.hero__cta {
  background: none;
  border: none;
  letter-spacing: 0.26em;
  color: #fff;
  text-decoration: none;
}
.hero__cta:hover {
  color: #fff;
}
.hero__cta:hover img {
  animation: down infinite 1s;
}
.hero__cta img {
  margin-left: 1rem;
}
@media screen and (min-width: 1200px) {
  .hero {
    padding: 2rem 0 5rem;
    background-color: transparent;
    background-position: right bottom;
    background-image: url("img/background-hero.png");
  }
  .hero h2 {
    font-size: 1.25rem;
    margin: 2rem 0;
  }
}
@media screen and (min-width: 1281px) {
  .hero {
    padding: 2rem 0 12rem;
  }
}

.top-header {
  position: relative;
  margin-bottom: 3rem;
}
.top-header__logo {
  width: 140px;
}
.top-header__toggle {
  background: none;
  border: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-35%);
}
.top-header__menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  right: 0;
  background: black;
}
.top-header__menu a {
  color: inherit;
  text-decoration: none;
  padding: 1rem;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease-in-out;
}
.top-header__menu a:last-child {
  border: none;
}
.top-header__menu a:hover, .top-header__menu a:active {
  color: inherit;
  text-decoration: none;
  transform: translateY(-1px);
}
@media screen and (min-width: 1200px) {
  .top-header {
    margin-bottom: 4rem;
  }
  .top-header__logo {
    width: auto;
  }
  .top-header__toggle {
    display: none;
  }
  .top-header__menu {
    position: static;
    display: block !important;
    margin-left: 110px;
    margin-top: 15px;
    background: none;
  }
  .top-header__menu a {
    display: inline-block;
    border: none;
  }
}
@media screen and (min-width: 1281px) {
  .top-header {
    margin-bottom: 7rem;
  }
  .top-header__menu {
    margin-left: 130px;
  }
}

body.menu-open .top-header__menu {
  display: block;
}

.about-us {
  overflow-x: hidden;
  position: relative;
  padding: 5rem 0;
}
.about-us:before {
  content: "";
  background: #000;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 150px;
  position: absolute;
  z-index: -1;
}
.about-us__img img {
  max-height: 700px;
}
.about-us__content p {
  font-size: 1rem;
  line-height: 150%;
  margin: 1rem 0 5rem;
}
.about-us__block {
  position: relative;
  background-color: #e4d009;
  padding: 1.5rem 0 1.5rem 2rem;
}
.about-us__block h3 {
  max-width: 360px;
  font-size: 1.8rem;
}
.about-us__block:after {
  content: "";
  position: absolute;
  background-color: #e4d009;
  top: 0;
  left: 100%;
  bottom: 0;
  width: 2000px;
}
@media screen and (min-width: 1200px) {
  .about-us {
    padding: 7rem 0;
  }
  .about-us:before {
    height: 200px;
  }
  .about-us__content p {
    font-size: 1.5rem;
  }
  .about-us__block {
    padding: 2rem 1rem 2rem 3rem;
  }
  .about-us__block h3 {
    max-width: 460px;
    font-size: 2.75rem;
  }
}

.services {
  background: #000;
  color: #fff;
  padding: 2rem 0 4rem;
}
.services .section-title {
  margin-top: 2rem;
}
.services-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: space-between;
  overflow: auto;
  flex-direction: row;
  margin: 3rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  height: 72px;
}
.services-tabs::-webkit-scrollbar {
  display: none;
}
.services-tabs button {
  position: relative;
  background: transparent;
  border: none;
  padding: 1.5rem 0;
  color: inherit;
  flex: 1 0 215px;
  height: 70px;
}
.services-tabs button.active:before, .services-tabs button:hover:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 1;
  height: 3px;
  background: #e4d009;
}
.services-tab {
  display: none;
  flex-direction: column;
  flex: 1;
  gap: 2rem;
}
.services-tab.active {
  display: flex;
}
@media screen and (min-width: 1200px) {
  .services {
    padding: 2rem 0 7rem;
  }
  .services-tabs {
    margin: 4rem 0 5rem;
  }
  .services-tab {
    flex-direction: row;
  }
}

.service {
  display: flex;
  background: #fff;
  color: #000;
  flex-grow: 1;
  flex-shrink: 1;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  padding: 1.5rem;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
.service__number {
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  order: 2;
}
.service__number span {
  line-height: 1;
  display: inline-block;
  padding-left: 1.5rem;
  border-left: 2px solid #e4d009;
}
.service__title {
  font-weight: 400;
  order: 1;
  flex: 1;
  line-height: 1;
  text-transform: uppercase;
}
.service__description {
  display: none;
  order: 3;
}
.service.open {
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 0;
}
.service.open .service__number {
  display: block;
  order: 1;
}
.service.open .service__number span {
  padding-left: 0;
  padding-bottom: 1.5rem;
  border-left: none;
  border-bottom: 2px solid #e4d009;
}
.service.open .service__description {
  display: block;
}
.service.open .service__title {
  font-size: 1.45rem;
  margin: 1.5rem 0;
  order: 2;
  transform: rotate(0);
  text-align: left;
}
@media screen and (min-width: 1200px) {
  .service {
    flex-direction: column;
    align-items: initial;
    justify-content: initial;
    flex: 0 0 70px;
    min-height: 450px;
    padding: 1.5rem 0.75rem;
  }
  .service__number {
    text-align: center;
    order: 1;
  }
  .service__number span {
    padding-left: 0;
    padding-bottom: 1.5rem;
    border-left: none;
    border-bottom: 2px solid #e4d009;
  }
  .service__title {
    display: flex;
    flex: initial;
    justify-content: flex-end;
    align-items: center;
    order: 2;
    text-align: right;
    min-width: 300px;
    height: 32px;
    transform: rotate(-90deg);
    transform-origin: 160px 155px;
  }
  .service.open {
    flex-grow: 1;
    flex-shrink: 1;
    padding: 1.5rem;
  }
  .service.open .service__title, .service.open .service__number {
    text-align: left;
    justify-content: flex-start;
    height: initial;
  }
}

.specialties {
  padding-top: 5rem;
  padding-bottom: 5rem;
  color: #4d4d4d;
}
.specialties .section-title {
  color: #12110a;
}
.specialties p {
  font-size: 1rem;
  margin: 1rem 0 2rem;
}
.specialties__img img {
  max-height: 780px;
}
.specialties__list {
  list-style: none;
  padding: 0;
}
.specialties__list__item {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  padding: 1rem 0;
  border-bottom: 1px solid;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1200px) {
  .specialties {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .specialties p {
    font-size: 1.3rem;
  }
  .specialties__list__item {
    font-size: 1.8rem;
  }
}

.team {
  padding: 3.5rem 0;
  background: #e4d009;
  color: #322d00;
}
.team .section-title {
  margin: 1rem 0 2rem;
}
@media screen and (min-width: 1200px) {
  .team {
    padding: 7rem 0;
  }
  .team .section-title {
    margin: 1rem 0 3rem;
  }
}
.team-member {
  width: calc(100% - 20px);
  cursor: grab;
}
.team-member__img {
  pointer-events: none;
  position: relative;
  padding-top: 20px;
  padding-right: 20px;
}
.team-member__img img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  object-position: center center;
}
.team-member__img:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}
.team-member__info {
  padding-right: 20px;
  color: inherit;
  text-decoration: none;
  font-weight: 400;
  margin-top: 0.5rem;
}
.team-member__info:hover, .team-member__info:active {
  color: inherit;
}
.team-member__name {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.team-member__position {
  font-size: 0.8rem;
}

.contact-us {
  background: #000;
  color: #fff;
  padding: 3rem 0 4rem;
}
.contact-us__item {
  width: 100%;
}
.contact-us a {
  display: block;
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
  margin-bottom: 3rem;
}
.contact-us a:hover, .contact-us a:active {
  color: inherit;
}
.contact-us a > span {
  padding: 1rem 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
}
.contact-us a span span,
.contact-us a address {
  flex-grow: 1;
  word-break: break-all;
}
@media screen and (min-width: 1200px) {
  .contact-us {
    padding: 4rem 0;
  }
  .contact-us__item {
    width: auto;
  }
  .contact-us .d-flex {
    gap: 30px;
  }
  .contact-us a {
    display: inline-block;
    font-size: 1.4rem;
    margin-bottom: 0rem;
  }
  .contact-us a span span,
.contact-us a address {
    flex-grow: 0;
  }
}

.footer {
  background: #e5e5e5;
  color: #000;
  padding: 1.5rem 0;
  font-size: 0.8rem;
}

@keyframes down {
  20% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  80% {
    transform: translateY(0);
  }
}

/*# sourceMappingURL=styles.css.map */
