@charset "utf-8";

/* Main */

html {
  font-size: 15px;
}
body {
  color: white;
  font-family: "Chivo", sans-serif;
  overflow: hidden;
  font-weight: 300;
}

/* Text */

h1 {
  font-size: 1.6rem;
  font-weight: 400;
}
h2 {
  font-size: 1.3rem;
}
h3 {
  font-size: 1.1rem;
  font-weight: 400;
}
p {
  line-height: 1.5rem;
}
strong {
  font-weight: 400;
}
small {
  font-size: 0.8rem;
}
hr {
  width: 148px;
  border-bottom: 1px solid #c2bfbd;
  display: inline-block;
  margin: 0;
}
/* Links */

a {
  color: white;
}
a:hover {
  font-weight: 400;
}
.link_primary:hover {
  color: #fcaf17;
}
.link_secondary:hover {
  color: #86b954;
}
.link_light:hover {
  color: #262262;
}
.link_gray {
  color: #58595b;
}
.link_gray:hover {
  color: #86b954;
}
/* Colors */
.text-primary2 {
  color: #fcaf17;
}
.text-secondary2 {
  color: #86b954;
}
.text-primary {
  color: #f6bbba;
}
.text-secondary {
  color: #262262;
}
.text-gray {
  color: #58595b;
}
.text-black {
  color: #000000;
}
.bg-primary {
  background-color: #fcaf17;
}
.bg-secondary {
  background-color: #86b954;
}
.bg-light {
  background-color: #262262;
}
.bg-white {
  background-color: #ffffff;
}
.bg-black-transparent {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
}
/* Spacing */
.p-1 {
  padding: 5vw 90px;
}
.p-2 {
  padding: 2vw;
}
.pb-1 {
  padding-bottom: 8vh;
}
.p-right {
  padding-left: 25%;
}
.p-right2 {
  padding-right: 30px;
}
.p-left {
  padding-left: 40px;
}
.mb-1 {
  margin-bottom: 1.8rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mt-1 {
  margin-top: 0.5rem;
}
.w-100 {
  width: 100%;
}
.w-90 {
  width: 90%;
}
.w-80 {
  width: 80%;
}
.w-70 {
  width: 75%;
}
.w-50 {
  width: 50%;
}
.w-30 {
  width: 25%;
}
.w-20 {
  width: 20%;
}
.h-100 {
  height: 100vh;
}

/* Structure */

section {
  position: relative;
  background-position: center;
  background-size: cover;
}
.scroll {
  overflow: auto;
}
.row {
  display: block;
}

/* Position */

.center {
  text-align: center;
}
.ar {
  text-align: right;
}
.text-justify {
  text-align: justify;
}

/* Flex */
.flex {
  display: flex;
}
.flex_cc {
  align-items: center;
  justify-content: center;
}
.flex_list {
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Decoration */
.shadow {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}
.underline {
  text-decoration: underline;
}
.opacity:hover {
  opacity: 0.7;
}

/* Manipulate */
.hide {
  display: none;
}
.nodesktop {
  display: block;
}
.nomobile {
  display: none;
}

@media (max-width: 980px) {
  .nodesktop {
    display: none;
  }
  .nomobile {
    display: block;
  }
}
