@font-face {
  font-family: "Muli";
  src: url("../fonts/Muli-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Muli";
  src: url("../fonts/Muli-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Muli";
  src: url("../fonts/Muli-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Muli";
  src: url("../fonts/Muli-Black.ttf") format("truetype");
  font-weight: 900;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

body {
  background-color: #F1F0EB;
  font-family: "Muli", sans-serif;
  margin-top: 3.8rem;
  font-weight: 400;
}
@media (min-width: 48rem) {
  body {
    margin-top: 2rem;
  }
}

audio {
  width: 100%;
}

a {
  padding: 0;
  margin: 0;
  color: #000000;
}
a:hover {
  color: #AB3B61;
}

.section-title {
  color: #15454E;
  font-size: 2.5rem;
  font-weight: 900;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .section-title {
    font-size: 3rem;
  }
}
.section-title.margin {
  padding-top: 4rem;
}

.section-subtitle {
  color: #15454E;
  font-size: 1.25rem;
  font-weight: 600;
}

hr.solid {
  height: 2px;
  border-width: 0;
  color: gray;
  background-color: #A0A89F;
  margin-top: 0.5rem;
}

.container {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 64rem) {
  .container {
    max-width: 60rem;
  }
}
@media (min-width: 76rem) {
  .container {
    max-width: 72rem;
  }
}
.fixed {
  padding: 0;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.navbar {
  width: 100%;
  margin: 0 auto;
  background-color: #F1F0EB;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}
.navbar--active {
  align-items: stretch;
  flex-direction: column;
}
.navbar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar__left {
  margin-left: 1rem;
}
.navbar__right {
  display: flex;
  align-items: center;
}
.navbar__social {
  margin-right: 0.5rem;
  margin-left: 1rem;
}
.navbar__social a {
  padding: 0 4px;
}
.navbar__lang {
  display: flex;
}
.navbar__lang a {
  padding: 4px;
  background-color: #D9D8D3;
  margin-right: 2px;
}
.navbar__lang a:hover {
  background-color: #AB3B61;
  color: white;
}
.navbar__logo {
  padding: 4px;
  border: 1px solid black;
  font-weight: 700;
}
.navbar__logo:hover {
  background-color: #AB3B61;
  border-color: #AB3B61;
  color: white;
}
@media (min-width: 76rem) {
  .navbar__burger {
    display: none;
  }
}
.navbar .a-active {
  background-color: #AB3B61;
  border-color: #AB3B61;
  color: white;
}
.navbar__menu {
  display: none;
  position: absolute;
  top: 4rem;
  right: 0;
  flex-direction: column;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem;
  background-color: #F1F0EB;
}
.navbar__menu--active {
  display: flex;
}
@media (min-width: 76rem) {
  .navbar__menu {
    display: flex;
    flex-direction: row;
    padding: 0;
    position: inherit;
    top: 0;
    right: 0;
    box-shadow: none;
  }
}
.navbar__item a {
  display: block;
  width: 100%;
  text-align: right;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
}
@media (min-width: 76rem) {
  .navbar__item a {
    padding: 0.5rem;
  }
}

.hero {
  position: relative;
}
.hero__img {
  width: 100%;
  height: 80vh;
  max-height: 32rem;
  object-fit: cover;
  object-position: 55% 50%;
}
@media (min-width: 64rem) {
  .hero__img {
    height: 70vh;
  }
}
@media (min-width: 76rem) {
  .hero__img {
    height: 90vh;
    max-height: 40rem;
  }
}
.hero__text {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  margin-left: auto;
  margin-right: auto;
  right: 0;
  padding: 2rem 1.5rem 3rem 1.5rem;
  color: #15454E;
}
@media (min-width: 48rem) {
  .hero__text {
    padding: 3rem 2rem;
  }
}
@media (min-width: 64rem) {
  .hero__text {
    padding: 10rem 4rem 20rem 4rem;
  }
}
@media (min-width: 76rem) {
  .hero__text {
    padding: 8rem 4rem 14rem 4rem;
    top: 5rem;
  }
}
.hero__title {
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 2rem;
  word-break: break-word;
}
@media (min-width: 48rem) {
  .hero__title {
    font-size: 3rem;
    line-height: 3rem;
  }
}
@media (min-width: 76rem) {
  .hero__title {
    font-size: 4rem;
    line-height: 4rem;
  }
}
.hero__subtitle {
  font-weight: 400;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  font-size: 1.3rem;
}
@media (min-width: 48rem) {
  .hero__subtitle {
    font-size: 1.3rem;
  }
}
.hero__button {
  margin-top: auto;
  background-color: rgba(255, 255, 255, 0.7) !important;
}
.hero__button:hover {
  background-color: #AB3B61 !important;
}

.myButton {
  width: auto;
  align-self: flex-start;
  border: 2px solid white;
  padding: 1rem 1.5rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  display: inline-block;
  color: white;
  background-color: transparent;
}
@media (min-width: 48rem) {
  .myButton {
    font-size: 1rem;
  }
}
.myButton.black {
  border-color: black;
  color: black;
}
.myButton.cd {
  width: 100%;
  justify-self: center;
}
@media (min-width: 48rem) {
  .myButton.cd {
    width: auto;
  }
}
.myButton:hover {
  background-color: #AB3B61;
  border-color: #AB3B61;
  cursor: pointer;
  color: white;
}
@media (min-width: 48rem) {
  .myButton {
    bottom: 4rem;
    right: 6rem;
  }
}

.about {
  display: flex;
  flex-direction: column;
}
@media (min-width: 48rem) {
  .about {
    flex-direction: row;
    margin-bottom: 6rem;
  }
}
.about__side {
  flex: 3;
  background-color: #B3C6D5;
}
@media (min-width: 48rem) {
  .about__side {
    flex: 2;
  }
}
.about__side img {
  float: right;
  height: auto;
  margin: 1rem;
  width: 5%;
}
@media (min-width: 48rem) {
  .about__side img {
    margin: 2rem;
    width: 40%;
  }
}
@media (min-width: 64rem) {
  .about__side img {
    width: 25%;
  }
}
.about__text {
  margin: 3rem 1.5rem 0 1.5rem;
  flex: 11;
}
@media (min-width: 48rem) {
  .about__text {
    flex: 5;
    margin: 3rem;
  }
}
@media (min-width: 64rem) {
  .about__text {
    margin: 3rem 5rem;
  }
}
.about__text blockquote {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (min-width: 48rem) {
  .about__text blockquote {
    font-size: 1.5rem;
  }
}
.about__text p {
  font-size: 1.1rem;
  margin-top: 2rem;
  font-weight: 600;
  max-width: 75ch;
}
.about__text__more {
  color: #15454E;
}

.items {
  padding: 0 1.5rem;
  position: relative;
}
@media (min-width: 48rem) {
  .items {
    padding: 0 2rem;
  }
}
@media (min-width: 76rem) {
  .items {
    padding: 0 4rem;
  }
}
.items__bcg {
  position: absolute;
  right: 0;
  z-index: -100;
  display: none;
  background-color: #BCC8B9;
  height: 105%;
  width: 30%;
}
.items__bcg.right {
  width: 40%;
  background-color: #E1E0DC;
}
@media (min-width: 48rem) {
  .items__bcg {
    display: block;
  }
}
@media (min-width: 76rem) {
  .items__solo {
    padding-right: 4rem;
  }
}

.cards_container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
}
@media (min-width: 48rem) {
  .cards_container {
    gap: 1.5rem;
  }
}

.card {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  background-color: #E3DAD0;
}
@media (min-width: 48rem) {
  .card {
    width: 48%;
  }
}
@media (min-width: 76rem) {
  .card {
    width: 40%;
  }
}
.card.audio {
  background-color: #E3DAD0;
}
.card.cd {
  background-color: #BCC8B9;
  width: 100%;
  margin-top: 2rem;
}
@media (min-width: 48rem) {
  .card.cd {
    flex-direction: row;
  }
}
.card.video {
  background-color: #F6DAB6;
}
@media (min-width: 76rem) {
  .card.video {
    width: 40%;
  }
}
.card__thumb.solo {
  height: 100%;
}
.card__thumb.cd {
  min-width: 40%;
}
@media (min-width: 76rem) {
  .card__thumb.cd {
    min-width: 30%;
  }
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
}
.card__content {
  margin-top: -0.25rem;
  padding: 1.25rem;
}
@media (min-width: 48rem) {
  .card__content {
    margin-top: 0;
  }
}
@media (min-width: 64rem) {
  .card__content {
    padding: 2rem;
  }
}
@media (min-width: 76rem) {
  .card__content {
    padding: 1.5rem;
  }
}
.card__title {
  color: #15454E;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 900;
  overflow: hidden;
}
.card__title span {
  display: none;
  opacity: 0.3;
}
@media (min-width: 48rem) {
  .card__title span {
    display: inline;
    float: right;
  }
}
.card__subtitle {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  padding-top: 0.5rem;
  color: #A28980;
}
.card__desc {
  padding-top: 0.5rem;
}
.card__desc2 {
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: 1rem;
}
.card__link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  padding-top: 1rem;
}
@media (min-width: 48rem) {
  .card__link {
    flex-direction: row;
  }
}
@media (min-width: 76rem) {
  .card__link {
    padding-top: 1.5rem;
  }
}
.card__youtube {
  display: flex;
  align-items: center;
}
.card__youtube p {
  padding-left: 1rem;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 900;
}

.cardBtn {
  border: 2px solid black;
  font-size: 1.25rem;
  font-weight: 900;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  color: black;
  background-color: transparent;
}

.duo {
  margin-top: 8rem;
}
.duo__img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}
@media (min-width: 64rem) {
  .duo__img {
    height: 24rem;
  }
}
.duo__side {
  background-color: #FBE8A6;
}
.duo__subtext {
  color: #15454E;
}
.duo__link {
  margin-top: 2rem;
  display: flex;
}

.arrow02 {
  padding: 1rem;
  padding-left: 0;
}

.media {
  margin-top: 6rem;
  background-color: #E3DAD0;
  padding-bottom: 6rem;
  padding: 1.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 48rem) {
  .media {
    margin-top: 10rem;
  }
}
.media__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin: 1rem 0;
  border: 2px solid black;
  font-weight: 900;
  text-transform: uppercase;
}
@media (min-width: 48rem) {
  .media__link {
    width: 60%;
  }
}
@media (min-width: 64rem) {
  .media__link {
    width: 45%;
  }
}
.media__link i {
  display: inline;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem 1rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 64rem) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery__offer img {
  aspect-ratio: auto;
}
.gallery__photo {
  position: relative;
}
.gallery__link {
  font-size: 0.8rem;
}
@media (min-width: 26rem) {
  .gallery__link {
    font-size: 1rem;
  }
}

.partners {
  margin-bottom: 4rem;
}
.partners__img {
  object-position: center center;
}
@media (min-width: 48rem) {
  .partners__img {
    object-position: top center;
  }
}
@media (min-width: 48rem) {
  .partners {
    flex-direction: row-reverse;
  }
}
.partners__side {
  background-color: #BCC8B9;
  display: none;
}
@media (min-width: 48rem) {
  .partners__side {
    display: block;
  }
}
.partners__list {
  margin-top: 2rem;
  margin-left: 2rem;
}
.partners__list li {
  list-style-type: circle !important;
}
.partners__slogan {
  color: #15454E;
  font-weight: 900 !important;
  font-size: 1.5rem !important;
}
.partners__slogan02 {
  color: #15454E;
  font-weight: 900 !important;
  font-size: 1.2rem !important;
}
.partners__logo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  padding: 0 1.5rem;
  margin-bottom: 8rem;
}
@media (min-width: 48rem) {
  .partners__logo {
    grid-template-columns: repeat(4, 1fr);
  }
}
.partners__logo img {
  object-fit: contain;
}

.footer {
  background-color: #B3C6D5;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.2rem;
  width: 80%;
  margin: 0 auto;
  padding: 6rem 0;
}
@media (min-width: 48rem) {
  .footer__contact {
    text-align: center;
    justify-content: space-between;
    align-items: end;
  }
}
@media (min-width: 64rem) {
  .footer__contact {
    flex-direction: row;
    text-align: left;
  }
}
.footer__name {
  text-transform: uppercase;
  font-weight: 900;
  padding-bottom: 0.5rem;
}
.footer__mail {
  font-weight: 700;
}
.footer__copyright {
  text-align: center;
  padding: 0 2rem;
  padding-bottom: 2rem;
}
.footer__social {
  margin-top: 1rem;
}
.footer__social a {
  padding: 0 4px;
}

.info {
  margin-top: 10rem;
  margin-bottom: 5rem;
}
.info__title {
  padding-bottom: 2rem;
}
.info__item {
  padding-bottom: 2rem;
}
.info__point {
  padding-bottom: 1rem;
}
.info__text {
  padding-bottom: 2rem;
}

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