@charset "utf-8";

:root {
  --primary: #212226;
  --secondary: #c2884b;
}

/* Main */

html,
body {
  font-family: "Karla";
  color: white;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
.font-1-bold {
  font-family: "Karla Bold";
}
.font-2 {
  font-family: "Besley";
}

/* Text */

h1 {
  font-size: 2rem;
  line-height: 2rem;
}
h2 {
  font-family: "Karla Bold";
  font-size: 1.5rem;
}

p {
  line-height: 1.6rem;
}
strong {
  font-weight: normal;
}
.text-big {
  font-size: 4rem;
  line-height: 4rem;
}
.text-medium {
  font-size: 1.3rem;
  line-height: 2rem;
}

hr {
  border-bottom: 1px solid var(--secondary);
  width: 150px;
}
.hr-white {
  border-bottom: 1px solid white;
}
.letter-spacing {
  letter-spacing: 2px;
}

/* Links */

a {
  color: var(--secondary);
  transition: all 0.2s ease;
}
a:hover {
  color: white;
  transition: all 0.2s ease;
}
.opacity,
.opacity-hover:hover {
  opacity: 0.7;
}
.link-whatsapp {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 3rem;
  padding: 2px 20px;
  border-radius: 25px;
}

/* Colors */

.text-primary {
  color: var(--primary);
}

.text-secondary,
.link-primary-hover:hover {
  color: var(--secondary);
}
.text-gray {
  color: #515155;
}
.text-white {
  color: white;
}
.text-black {
  color: black;
}
.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-footer {
  background-color: #1d1c21;
}
.bg-gray,
.bg-primary-hover:hover {
  background-color: #515155;
}
.bg-white {
  background-color: white;
}

/* Spacing */

.mt-1 {
  margin-top: 220px;
}

.p-10 {
  padding: 10px;
}
.p-20 {
  padding: 20px;
}
.p-40 {
  padding: 40px;
}
.p-3 {
  padding: 80px 0;
}
.mb-0 {
  margin-bottom: 10px;
}
.mb-1 {
  margin-bottom: 25px;
}
.mb-2 {
  margin-bottom: 40px;
}
.mb-3 {
  margin-bottom: 80px;
}
.mb-4 {
  margin-bottom: 120px;
}
.w-100 {
  width: 100%;
}
.col-l {
  width: 65%;
}
.col-r {
  width: 35%;
}

/* Container */

section {
  position: relative;
  background-size: cover;
  background-position: center;
}
.container,
.container-small {
  width: 100%;
  max-width: 1100px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  overflow: hidden;
}
.container-small {
  max-width: 500px;
}

.col {
  display: inline-block;
}
.row {
  display: inline-block;
}

/* Flex y Align */

.inline {
  display: inline;
}
.flex {
  display: flex;
}
.flex-cc {
  align-items: center;
  justify-content: center;
}
.flex-list {
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-center {
  flex-wrap: wrap;
  align-items: center;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
  justify-content: flex-end;
}
.text-justify {
  text-align: justify;
}
.margin-center {
  margin-left: auto;
  margin-right: auto;
}

/* Decoration */

.shadow {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}
.hide {
  display: none;
}

.uppercase {
  text-transform: uppercase;
}
.bg-center {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nodesktop {
  display: noen;
}
.nomobile {
  display: block;
}

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