@charset "utf-8";

:root {
  --primary: #14305a;
  --secondary: #c5e1f2;
  --light: #f4eeeb;
}

/* Main */

html,
body {
  font-family: "Besley";
  color: #000000;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
.font-2 {
  font-family: "Karla";
}
.font-2-bold {
  font-family: "Karla Bold";
}
.font-1-bold {
  font-family: "Besley Bold";
}
img {
  display: block;
}
/* Text */

h1 {
  font-size: 2rem;
  line-height: 2.3rem;
}
h2 {
  font-size: 1.5rem;
  line-height: 2.2rem;
}
p {
  line-height: 1.6rem;
}
strong {
  font-weight: normal;
  font-family: "Karla Bold";
}

.text-small {
  font-size: 0.9rem;
}
.text-medium {
  font-size: 1.3rem;
  line-height: 2rem;
}
.text-big {
  font-size: 1.6rem;
  line-height: 2.3rem;
}
.big {
  font-size: 3.3rem;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
hr {
  border-bottom: 1px solid var(--primary);
  width: 150px;
}
.hr-white {
  border-bottom: 1px solid white;
}
.hr-gray {
  border-bottom: 1px solid #d9d9d9;
}
.border-bottom {
  border-bottom: 5px solid var(--secondary);
}
.letter-spacing {
  letter-spacing: 3px;
}

/* Links */

a {
  color: white;
  transition: all 0.2s ease;
}
a:hover {
  color: var(--secondary);
  transition: all 0.2s ease;
}
.opacity-hover:hover {
  opacity: 0.7;
}
.underline-hover:hover {
  text-decoration: underline;
}
.bg-gray-hover:hover {
  background-color: #515155;
  color: white;
}
.link-white {
  color: white;
}
.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 {
  color: var(--secondary);
}
.text-secondary-2 {
  color: #4e7f9b;
}
.text-footer,
.link-footer-hover:hover {
  color: #c2884b;
}
.text-gray {
  color: #515155;
}
.text-white {
  color: white;
}

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

/* Spacing */

.pr-1 {
  padding-right: 40px;
}
.pl-1 {
  padding-left: 40px;
}
.p-10 {
  padding: 10px;
}
.p-20 {
  padding: 20px;
}
.p-40 {
  padding: 40px;
}
.p-60 {
  padding: 60px;
}
.p-1 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.p-2 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.p-3 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.mb-0 {
  margin-bottom: 20px;
}
.mb-1 {
  margin-bottom: 30px;
}
.mb-2 {
  margin-bottom: 60px;
}
.mb-3 {
  margin-bottom: 90px;
}
.mt-1 {
  margin-top: 90px;
}
.w-100 {
  width: 100%;
}
.w-70 {
  width: 70%;
}
.w-60 {
  width: 60%;
}
.w-50 {
  width: 50%;
}
.w-48 {
  width: 48%;
}
.w-40 {
  width: 40%;
}
.w-33 {
  width: 33%;
}
.w-30 {
  width: 30%;
}
.w-25 {
  width: 24.5%;
}
.w-20 {
  width: 18%;
}
.h-100 {
  height: 100%;
}
.h-80 {
  height: 80vh;
}
.h-60 {
  height: 60vh;
}
.h-40 {
  height: 40vh;
}

/* Container */

section {
  position: relative;
  background-size: cover;
  background-position: center;
}
.container,
.container-small,
.container-medium {
  width: 100%;
  max-width: 1100px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
.container-small {
  max-width: 600px;
  padding: 0;
}
.container-medium {
  max-width: 800px;
  padding: 0;
}
.col {
  display: inline-block;
}
.row {
  display: inline-block;
}

/* Flex */

.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 {
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.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;
}
.bg-center {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nodesktop {
  display: none;
}
.nomobile {
  display: block;
}

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