@charset "utf-8";

/* Main */

:root {
  --color-1: #b99c16;
  --color-2: #b17b80;
  --color-3: #5b7e96;
  --color-4: #757a4d;
}

html,
body {
  color: black;
  font-family: "Avenir LT Std Light";
  font-size: 14px;
}

/* Text */

h1,
.text-big {
  font-size: 20px;
}
.text-medium {
  font-size: 16px;
}
p {
  line-height: 1.6rem;
  text-align: justify;
}
strong {
  font-weight: normal;
}
small,
.text-small {
  font-size: 14px;
}
.font-1 {
  font-family: "Avenir LT Std Light";
}
.font-1-bold {
  font-family: "Avenir LT Std Medium";
}
.font-2 {
  font-family: "Cormorant Garamond Medium";
}
.font-2-italic {
  font-family: "Cormorant Garamond MediumItalic";
  font-style: italic;
}
.font-2-bold {
  font-family: "Cormorant Garamond SemiBold";
}
hr {
  width: 350px;
  border-bottom: 3px solid var(--color-1);
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-right {
  text-align: right;
}

/* Links */

a {
  color: black;
  transition: all 0.2s ease;
}
a:hover {
  transition: all 0.2s ease;
}
.underline-hover:hover {
  text-decoration: underline;
}

/* Colors */

.text-white {
  color: white;
}
.text-color-1,
.color1-hover:hover {
  color: var(--color-1);
}
.text-color-2,
.color2-hover:hover {
  color: var(--color-2);
}
.text-color-3,
.color3-hover:hover {
  color: var(--color-3);
}
.text-color-4,
.color4-hover:hover {
  color: var(--color-4);
}
.bg-color-2,
.bg-color-2-hover:hover {
  background-color: var(--color-2) !important;
}
.bg-color-4 {
  background-color: var(--color-4);
}
.bg-black {
  background-color: black;
}
.bg-white {
  background-color: white;
}
.border-color-2 {
  border-color: var(--color-2);
}
.border-color-3 {
  border-color: var(--color-3);
}
.border-color-4 {
  border-color: var(--color-4);
}
.border-color-white {
  border-color: white;
}

/* Spacing */

.p-1 {
  padding: 40px;
}

.pb-1 {
  padding-bottom: 8vh;
}

.mb-0 {
  margin-bottom: 10px;
}
.mb-1 {
  margin-bottom: 35px;
}
.mb-2 {
  margin-bottom: 100px;
}
.mt-1 {
  margin-top: 0.5rem;
}
.w-100 {
  width: 100%;
}
.w-photo {
  width: 500px;
}
.col-1 {
  width: 40%;
  padding-right: 40px;
}
.col-2 {
  width: 60%;
}
.col-3 {
  width: 400px;
  padding-right: 110px;
}
.col-4 {
  width: 500px;
}

/* 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 */

.hide {
  display: none;
}
.opacity-0 {
  opacity: 0;
}
.opacity-hover:hover {
  opacity: 0.7;
}
.bg-center {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nomobile {
  display: block;
}
.nodesktop {
  display: none;
}

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