@charset "utf-8";

/* Main */

html,
body {
  color: #000000;
  font-family: "GT Walsheim";
  font-size: 24px;
  height: 100%;
}

/* Text */

h1 {
  font-family: "Monument Extended";
  font-size: 1.25rem;
  line-height: 1.25rem;
  text-transform: uppercase;
}
h2 {
  font-family: "Monument Extended";
  font-size: 0.9rem;
}
p {
  line-height: 1.2rem;
}
strong {
  font-family: "Monument Extended";
  font-weight: normal;
}

small {
  font-size: 0.7rem;
}
hr {
  border-bottom: 1px solid #000000;
  display: inline-block;
}

.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}

/* Links */

a {
  color: #000000;
}
.opacity-hover:hover {
  opacity: 0.8;
}
.link-talleres {
  display: inline-block;
  font-family: "Monument Extended";
  font-size: 1.25rem;
  line-height: 1;
  margin: 8px;
  padding: 15px 50px;
  text-transform: uppercase;
}

.bg-primary-hover {
  background-color: transparent;
  transition: all 0.3s ease;
}
.bg-primary-hover:hover {
  background-color: #e88457;
}

.bg-secondary-hover {
  background-color: transparent;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  z-index: 0;
}
.bg-secondary-hover:hover:after {
  width: 100%;
}
.bg-secondary-hover:after {
  background-color: #cab4ea;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s ease;
  width: 0;
  z-index: -1;
}

.link-secondary-hover:hover {
  background-color: #cab4ea;
}
.link-underline-hover:hover {
  text-decoration: underline;
}
/* Colors */

.bg-primary {
  background-color: #ffcdbe;
}
.bg-secondary {
  background-color: #cab4ea;
}
.bg-3 {
  background-color: #f6fd9b;
}
.bg-4 {
  background-color: #e88457;
}

/* Spacing */

.p-10-20 {
  padding: 10px 20px;
}
.p-20 {
  padding: 20px;
}
.p-40 {
  padding: 40px;
}
.mb-0 {
  margin-bottom: 15px;
}
.mb-1 {
  margin-bottom: 30px;
}
.mb-2 {
  margin-bottom: 50px;
}
.mr-1 {
  margin-right: 30px;
}
.w-100 {
  width: 100%;
}
.w-80 {
  width: 80%;
}
.w-66 {
  width: 66%;
}
.w-60 {
  padding-left: 50px;
  width: 60%;
}
.w-40 {
  width: 40%;
}
.w-33 {
  width: 32%;
}
.w-25 {
  width: 23%;
}
.w-20 {
  width: 18%;
}
.h-100 {
  height: 100%;
}

/* Container */

main {
  align-items: center;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
header {
  padding-top: 20px;
}
section {
  position: relative;
}
.container,
.container-small,
.container-large {
  margin: 0 auto;
  padding: 0 30px;
  width: 1000px;
}
.container-small {
  width: 600px;
}
.container-large {
  width: 1100px;
}
.col {
  display: inline-block;
}
.row {
  display: inline-block;
}
/* Flex */

.flex {
  display: flex;
}
.flex-cc {
  align-items: center;
  justify-content: center;
}
.flex-list {
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-center {
  align-items: flex-start;
  justify-content: space-between;
}

/* Decoration */

.round-1 {
  border-radius: 20px;
}
.round-2 {
  border: 1px solid black;
  border-radius: 50px;
  display: block;
}
.hide {
  display: none;
}

/* Effects */

.zoom-hover {
  transition: all 0.3s ease;
}
.zoom-hover:hover {
  transform: scale(1.05);
  transition: all 0.4s ease;
}
.rotate {
  transition: 0.2s;
}
.rotate:hover {
  transform: rotate(-1.5deg);
  transition: 0.3s;
}
.swing {
  transition: all 0.2s ease-in-out;
}
.swing:hover {
  animation: swing 1s ease;
  animation-iteration-count: 1;
}
@keyframes swing {
  15% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  30% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  65% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.uppercase {
  text-transform: uppercase;
}
.nodesktop {
  display: none;
}
.nomobile {
  display: block;
}

@media (max-width: 980px) {
  .nodesktop {
    display: block;
  }
  .nomobile {
    display: none;
  }
}
