@charset "utf-8";

/* Main */

:root {
  --primary: #1ebe7e;
  --secondary: #1baf74;
  --terciary: #25cb88;
}

html,
body {
  color: black;
  font-family: "Helvetica Neue";
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  accent-color: var(--color-primary);
}

/* Text */

.font-2 {
  font-family: "Times New Roman", Times, serif;
}
.font-2-bold {
  font-family: "Times New Roman", Times, serif;
  font-weight: 900;
}
h1,
.text-big {
  font-size: 2.3rem;
}
h2,
.text-medium {
  font-size: 2rem;
}
p {
  line-height: 1.6rem;
  text-align: justify;
  font-size: 1.1rem;
}
strong {
  font-weight: normal;
  font-family: "Helvetica Neue Bold", Times, serif;
}
small,
.text-small {
  font-size: 0.95rem;
  display: block;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
hr {
  border-bottom: 1px solid #999;
}

/* Links */

a {
  color: white;
  transition: all 0.2s ease;
}
a:hover {
  color: black;
  transition: all 0.2s ease;
}
.link-black {
  color: black;
}
.link-black:hover {
  text-decoration: underline;
}
.link-gray {
  color: #666;
}
.link-gray:hover {
  color: var(--primary);
}
.btn {
  padding: 13px 25px;
  padding-bottom: 7px;
}
.btn:hover {
  background-color: var(--primary);
  color: white;
}
.bg-gray-hover:hover {
  background-color: #666;
  color: white;
}
.bg-primary-hover:hover {
  background-color: var(--primary);
  color: white;
}
.link-hover:hover {
  text-decoration: underline;
}
/* Colors */

.text-white {
  color: white;
}
.text-black {
  color: black;
}
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-terciary {
  color: var(--terciary);
}
.text-gray {
  color: #666;
}
.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-terciary {
  background-color: var(--terciary);
}
.bg-white {
  background-color: white;
}
.bg-gray {
  background-color: #5d5d5d;
}
/* Spacing */

.p-1 {
  padding: 50px 30px;
}
.p-2 {
  padding: 20px 90px;
}
.p-3 {
  padding: 90px 40px;
}
.p-4 {
  padding-top: 30px;
}
.p-5 {
  padding: 60px 0;
}
.p-20 {
  padding: 20px;
}
.p-40 {
  padding: 40px;
}
.pr-1 {
  padding-right: 60px;
}
.pr-2 {
  padding-right: 20px;
}
.pt-1 {
  padding-top: 60px;
}
.mb-0 {
  margin-bottom: 14px;
}
.mb-1 {
  margin-bottom: 30px;
}
.mb-2 {
  margin-bottom: 4rem;
}
.mt-1 {
  margin-top: 107px;
}
.mt-2 {
  margin-top: 60px;
}
.w-100 {
  width: 100%;
}
.w-80 {
  width: 80%;
}
.w-66 {
  width: calc(66% - 10px);
}
.w-50 {
  width: calc(50% - 10px);
}
.w-33 {
  width: calc(33% - 10px);
}
.w-33-2 {
  width: 33.33%;
}
.h-100 {
  height: 100vh;
}
.h-70 {
  height: 58vh;
}
.h-38 {
  height: 38vw;
}
.h-33 {
  height: 33vw;
}
.h-10 {
  padding-top: 26px;
  height: 10vh;
}
/* Container */

section {
  position: relative;
  background-attachment: fixed;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.col {
  display: inline-block;
}
.row {
  display: inline-block;
}
/* Flex */

.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;
}

/* Decoration */

.shadow {
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
}
.border-bottom {
  border-bottom: 1px solid #666;
}
.hide {
  display: none;
}
.bg-center {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.uppercase {
  text-transform: uppercase;
}
.lowecase {
  text-transform: lowercase;
}
.border-bottom-1 {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgb(224, 222, 222);
}
/* Effects */

.nomobile {
  display: none;
}
/* iframe {
  width: 100%;
  height: 250px;
} */

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