html,
body {
  margin: 0;
  padding: 0;
  background-image: url("../img/circulo-creativo-background-2.jpg");
  background-size: cover;
  background-repeat: repeat;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  color: white;
}

h3,
p {
  margin: 0;
}

.container {
  width: 890px;
  margin: 0 auto;
}
@media screen and (max-width: 889px) {
  .container {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
  }
}

.page__home {
  padding-top: 60px;
  padding-bottom: 20px;
  margin: 0 auto;
}

.show {
  display: block !important;
  transition: display 0.5s ease;
}

main section {
  opacity: 0;
}
main section.rev-active {
  opacity: 1;
  transition: opacity 1s ease-in;
}

#header {
  position: relative;
}
#header.sticky {
  position: fixed !important;
  top: 0;
  width: 100%;
  background-color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 1000;
}
#header.sticky .nav-header {
  background-color: #fff;
  top: 0;
}
#header.sticky .nav-header .nav-header--hamburguer i {
  color: black;
}

.nav-header {
  position: absolute;
  top: 50px;
  background-color: white;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 889px) {
  .nav-header {
    background-color: transparent;
  }
}
.nav-header .nav-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-header .nav-header__div-container {
  display: flex;
  align-items: center;
}
.nav-header .nav-header__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  column-gap: 15px;
}
.nav-header .nav-header__menu li {
  font-size: 18px;
}
.nav-header .nav-header__menu li a {
  color: #ffbf31;
  text-decoration: none;
  position: relative;
}
.nav-header .nav-header__menu li a::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
}
.nav-header .nav-header__menu li a:hover {
  color: #ca8b00;
  transition: color 0.5s ease;
}
.nav-header .nav-header__menu li a:hover::after {
  width: 100%;
  background-color: #ca8b00;
  transition: width 0.5s ease;
}
@media screen and (max-width: 889px) {
  .nav-header .nav-header__menu.nav-header__menu--pc {
    display: none;
  }
}
.nav-header .nav-header--hamburguer {
  display: none;
}
.nav-header .nav-header--hamburguer i {
  color: white;
}
@media screen and (max-width: 889px) {
  .nav-header .nav-header--hamburguer {
    display: inline;
  }
}

.nav-footer__div-container {
  margin-top: 10px;
}
.nav-footer__div-container .nav-footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-footer__div-container .nav-footer__menu li {
  margin-bottom: 8px;
}
.nav-footer__div-container .nav-footer__menu li a {
  color: #ffbf31;
  text-decoration: none;
}

.video-full-width__container {
  width: 100vw;
  height: 100vh;
}
.video-full-width__container iframe {
  width: 100%;
  height: 100%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 30px;
}
@media screen and (max-width: 889px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }
}
.footer-top a {
  color: white;
  text-decoration: none;
  position: relative;
}
.footer-top a::after {
  content: "";
  width: 0%;
  position: absolute;
  left: 12.5%;
  bottom: -5px;
  height: 1px;
  background-color: #ffbf31;
}
.footer-top a:hover::after {
  width: 75%;
  transition: width 0.2s linear;
}
.footer-top .social-networks-content a {
  margin-right: 25px;
}
.footer-top .social-networks-content a:last-child {
  margin-right: 0;
}
.footer-top .social-networks-content a img {
  width: 24px;
  max-height: 24px;
  vertical-align: bottom;
}
@media screen and (max-width: 889px) {
  .footer-top .social-networks-content {
    margin-bottom: 60px;
  }
}
.footer-top .email-content img,
.footer-top .whataspp-content img {
  max-width: 24px;
  vertical-align: middle;
}
@media screen and (max-width: 889px) {
  .footer-top .email-content img,
.footer-top .whataspp-content img {
    display: block;
    margin: 5px auto;
  }
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}
@media screen and (max-width: 889px) {
  .footer-middle {
    display: none;
    margin: 5px auto;
  }
}

.footer-bottom {
  text-align: center;
  margin: 30px 0;
}

@media screen and (max-width: 889px) {
  footer hr:nth-of-type(2) {
    display: none;
  }
}

#overlay {
  background-color: rgba(202, 139, 0, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  top: 0;
  overflow-y: scroll;
  display: none;
}

#btn-whatsapp {
  background: linear-gradient(180deg, #4ac14b 0%, #06853a 100%);
  display: block;
  height: auto;
  width: max-content;
  border-radius: 50% 50% 50% 0;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10000;
}
#btn-whatsapp i {
  color: #fff;
  margin: 10px;
}
#btn-whatsapp:hover {
  background: linear-gradient(180deg, #06853a 0%, #4ac14b 100%);
}

#btn-to-top {
  background: #ffbf31;
  display: block;
  height: auto;
  width: max-content;
  border-radius: 10px;
  position: fixed;
  bottom: 10px;
  right: 80px;
  z-index: 10000;
}
#btn-to-top i {
  color: #fff;
  margin: 10px;
}
#btn-to-top:hover {
  background-color: #b17a00;
  transition: background-color 0.3s ease;
}

.btn {
  font-size: 18px;
  position: relative;
  border-collapse: collapse;
  border: none;
  border-radius: 5px;
  padding: 10px;
  display: inline;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: none;
}
.btn:hover {
  background-color: #ca8b00;
  transition: background-color 0.5s ease;
}

.btn {
  background-color: #ffbf31;
  color: #fff;
}

.cards {
  column-gap: 150px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 889px) {
  .cards {
    column-count: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.cards .card-item {
  display: inline-block;
  margin-bottom: 30px;
  flex-basis: calc(50% - 75px);
}
.cards .card-item .card-item__image {
  margin-bottom: 5px;
}
@media screen and (max-width: 889px) {
  .cards .card-item .card-item__image {
    text-align: center;
  }
}
.cards .card-item .card-item__image img {
  max-width: 100%;
  max-height: 122px;
}
.cards .card-item .card-item__title {
  position: relative;
  margin-bottom: 28px;
  font-family: "DM Serif Text", serif;
  font-size: 24px;
}
@media screen and (max-width: 889px) {
  .cards .card-item .card-item__title {
    font-size: 19px;
    text-align: center;
  }
}
.cards .card-item .card-item__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background-color: white;
}
.cards .card-item .card-item__title h3 {
  display: inline-block;
  position: relative;
  width: auto;
}
.cards .card-item .card-item__description {
  font-size: 21px;
  line-height: 1.3;
}
@media screen and (max-width: 889px) {
  .cards .card-item .card-item__description {
    width: auto;
    font-size: 18px;
  }
}
.cards .card-item .card-item__actions {
  margin: 20px 0;
}
@media screen and (max-width: 889px) {
  .cards .card-item .card-item__actions {
    text-align: center;
  }
}
.cards .card-item--text-nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 889px) {
  .cards .card-item--text-nowrap {
    white-space: break-spaces;
    text-align: center;
  }
}

.contact-form {
  margin-top: 30px;
}
.contact-form input[type=text],
.contact-form input[type=email] {
  border-radius: 5px;
  max-width: 100%;
  width: 100%;
  border: 1px solid black;
  margin-bottom: 5px;
  padding: 10px;
  position: relative;
  box-sizing: border-box;
}
.contact-form .btn {
  padding-right: 50px;
}
.contact-form .btn::after {
  content: url(../img/enviar.svg);
  position: absolute;
  right: 10px;
  top: 20%;
}

.menu-mobile {
  position: absolute;
  right: 40px;
  background: #fff;
  top: 125px;
  padding: 20px 15px;
  width: 230px;
  border-radius: 5px;
  display: none;
  z-index: 2050;
}
.menu-mobile .nav-mobile__menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.menu-mobile .nav-mobile__menu .menu-item {
  height: 60px;
  line-height: 60px;
  border-bottom: 1px solid #ffbf31;
}
.menu-mobile .nav-mobile__menu .menu-item:last-child {
  border-bottom: none;
}
.menu-mobile .nav-mobile__menu .menu-item a {
  text-decoration: none;
  font-size: 21px;
  color: black;
}

#mb-button-close {
  display: inline-block;
  right: -200px;
  position: relative;
}
#mb-button-close i {
  color: black;
}

#quienes-somos .cards .card-item {
  width: 310px;
}
@media screen and (max-width: 889px) {
  #quienes-somos .cards .card-item {
    width: auto;
  }
}

.team-members {
  padding: 15px 0;
}
.team-members .cards {
  column-count: 1;
}
.team-members .cards .card-item {
  display: flex;
  column-gap: 65px;
  flex-basis: 100%;
}
@media screen and (max-width: 889px) {
  .team-members .cards .card-item {
    flex-direction: column;
  }
}
.team-members .cards .card-item .card-item__image {
  flex-basis: 35%;
}
.team-members .team-members-content {
  display: flex;
  column-gap: 20px;
  margin-top: 15px;
}
@media screen and (max-width: 889px) {
  .team-members .team-members-content {
    flex-direction: column;
  }
}
.team-members .team-members-content .team-members__item {
  flex-basis: 33%;
}
@media screen and (max-width: 889px) {
  .team-members .team-members-content .team-members__item {
    flex-basis: 100%;
    margin-bottom: 30px;
  }
}
.team-members .team-members-content .team-members__item .team-members__item_image {
  text-align: center;
}
.team-members .team-members-content .team-members__item .team-members__item_image img {
  max-width: 191px;
  border-radius: 50%;
}
.team-members .team-members-content .team-members__item .team-members__text {
  text-align: center;
  line-height: 1.3;
  padding-top: 20px;
}
.team-members .team-members-content .team-members__item .team-members__text .team-members__item_name {
  font-style: italic;
}

#productos-contactos {
  padding-top: 30px;
}
#productos-contactos .cards .card-item {
  width: 310px;
}
@media screen and (max-width: 889px) {
  #productos-contactos .cards .card-item {
    width: 100%;
  }
}

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