:root {
  --white: #ffffff;
  --black: #000000;
  --primary-500: 33, 51, 51;
  --secondary-500: #F0AC47;
  --secondary-600: #B17F4A;
}

@font-face {
  font-family: "jost";
  src: url(assets/fonts/jost.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "cormorant-garamond";
  src: url(assets/fonts/cormorant-garamond.ttf) format("truetype");
  font-display: swap;
}
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

.mb-24 {
  margin-bottom: 2.4rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mb-48 {
  margin-bottom: 4.8rem !important;
}

.mb-96 {
  margin-bottom: 9.6rem !important;
}

.text-center {
  text-align: center;
}

.cg-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 500;
}
.cg-button--secondary .cg-button__inner {
  background-color: transparent;
  color: var(--secondary-500);
  border: 0.5px solid var(--secondary-500);
  border-left: 0;
  border-right: 0;
}
.cg-button--secondary .cg-button__inner:before {
  top: 0.35rem;
}
.cg-button--secondary .cg-button__inner:after {
  bottom: 0.35rem;
}
.cg-button--secondary svg path {
  fill: transparent;
  stroke: var(--secondary-500);
}
.cg-button--secondary svg:last-child {
  margin-left: -0.1rem;
}
@media (hover: hover) {
  .cg-button--secondary:hover .cg-button__inner {
    background-color: var(--secondary-500);
    color: var(--black);
    border-color: transparent;
  }
}
.cg-button__inner {
  background-color: var(--secondary-500);
  height: 5.4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.2rem;
  position: relative;
  transition: 0.3s;
}
.cg-button__inner:before {
  content: "";
  border-top: 1px solid var(--secondary-600);
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0.4rem;
  left: 0;
  right: 0;
  transition: 0.3s;
}
.cg-button__inner:after {
  content: "";
  border-bottom: 1px solid var(--secondary-600);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  right: 0;
  transition: 0.3s;
}
.cg-button svg path {
  transition: 0.3s;
}
@media (hover: hover) {
  .cg-button:hover .cg-button__inner {
    background-color: var(--secondary-600);
  }
  .cg-button:hover .cg-button__inner:before, .cg-button:hover .cg-button__inner:after {
    border-color: var(--black);
  }
  .cg-button:hover svg path:first-child {
    fill: var(--secondary-600);
  }
  .cg-button:hover svg path:last-child {
    stroke: var(--black);
  }
}

.cg-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  flex-direction: column;
}
.cg-buttons-row--left {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cg-buttons-row {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cg-buttons-row {
    justify-content: start;
  }
}

h1 {
  font-family: "cormorant-garamond", serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 3rem;
  letter-spacing: 10%;
  margin-bottom: 1.6rem;
  margin-top: 0;
  color: var(--white);
}
@media (min-width: 560px) {
  h1 {
    font-size: 4.8rem;
    margin-bottom: 2.4rem;
  }
}

h2 {
  font-family: "cormorant-garamond", serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 3.2rem;
  letter-spacing: 10%;
  margin-bottom: 1.6rem;
  margin-top: 0;
  color: var(--white);
  position: relative;
  padding-bottom: 1.6rem;
  margin-bottom: 4rem;
}
h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 9rem;
  height: 2px;
  background: linear-gradient(90deg, rgb(240, 172, 71) 0%, rgb(177, 127, 74) 100%);
}
@media (min-width: 992px) {
  h2.text-center-md {
    text-align: center;
  }
  h2.text-center-md:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

p {
  font-size: 1.6rem;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}
p a {
  color: var(--white);
  transition: 0.2s;
}
@media (hover: hover) {
  p a:hover {
    color: var(--secondary-500);
  }
}
@media (min-width: 992px) {
  p {
    font-size: 1.8rem;
  }
}

header[role=banner] {
  position: absolute;
  left: 0;
  right: 0;
  padding: 3.2rem 0;
}
header[role=banner] img {
  width: 9.6rem;
}

header.cg-header-relative {
  background-color: rgba(var(--primary-500), 0.95);
  position: relative;
}

.cg-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cg-list li {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
  padding-left: 4rem;
  position: relative;
}
.cg-list li:before {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(assets/images/icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -0.4rem;
}

.cg-list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  margin-top: 1.6rem;
  row-gap: 1.6rem;
}
.cg-list-inline li {
  display: inline-flex;
  justify-content: center;
  font-size: 1.6rem;
}
.cg-list-inline li a {
  color: var(--white);
  transition: 0.2s;
}
@media (hover: hover) {
  .cg-list-inline li a:hover {
    color: var(--secondary-500);
  }
}
@media (min-width: 768px) {
  .cg-list-inline {
    column-gap: 2.4rem;
    margin-top: 0;
    flex-direction: row;
  }
  .cg-list-inline li {
    justify-content: flex-start;
  }
}

.cg-footer {
  background-color: rgb(var(--primary-500));
}
.cg-footer .cg-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 0;
}
.cg-footer .cg-container p {
  font-size: 1.6rem;
  margin-top: 1.6rem;
  order: 1;
}
@media (min-width: 768px) {
  .cg-footer .cg-container {
    flex-direction: row;
  }
  .cg-footer .cg-container p {
    margin-top: 0;
    order: 0;
  }
}

html {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-image: url(assets/images/background.webp);
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  margin: 0;
  padding: 0;
}

.cg-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1.6rem;
}
@media (min-width: 992px) {
  .cg-container {
    max-width: 992px;
  }
}
@media (min-width: 1200px) {
  .cg-container {
    max-width: 1200px;
  }
}

.cg-image-border {
  position: relative;
  overflow: hidden;
}
.cg-image-border:before {
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, rgb(240, 172, 71) 0%, rgb(177, 127, 74) 50%, rgb(240, 172, 71) 100%) 1;
  position: absolute;
  content: "";
  inset: 0.8rem;
}
.cg-image-border img {
  display: block;
}

.cg-section-1 {
  background-color: rgba(var(--primary-500), 0.95);
}
.cg-section-1 .cg-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  text-align: center;
  position: relative;
}
.cg-section-1 .cg-section-1__link-next {
  margin-top: 3.2rem;
}
.cg-section-1 .cg-button__inner {
  width: 250px;
}
@media (min-width: 768px) {
  .cg-section-1 .cg-button__inner {
    width: auto;
  }
}
@media (min-width: 992px) {
  .cg-section-1 .cg-container {
    text-align: left;
  }
  .cg-section-1 .cg-section-1__link-next {
    display: none;
  }
}
.cg-section-1__left {
  flex: 0 0 100%;
  max-width: 100%;
}
.cg-section-1__left img {
  margin: 0 auto 2.4rem auto;
  width: 12rem;
}
@media (min-width: 992px) {
  .cg-section-1__left {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 0;
  }
}
.cg-section-1__right {
  display: none;
}
@media (min-width: 992px) {
  .cg-section-1__right {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    max-height: 100vh;
    display: flex;
  }
  .cg-section-1__right img {
    max-height: 100vh;
  }
}

.cg-section-2 {
  padding: 10rem 0;
  background-color: rgba(var(--primary-500), 0.95);
}
.cg-section-2 .cg-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.cg-section-2__left {
  display: none;
  width: 40%;
}
.cg-section-2__right {
  width: 100%;
}
.cg-section-2 .cg-button__inner {
  width: 250px;
}
@media (min-width: 768px) {
  .cg-section-2 .cg-button__inner {
    width: auto;
  }
}
@media (min-width: 992px) {
  .cg-section-2 .cg-section-2__left {
    display: block;
  }
  .cg-section-2 .cg-section-2__right {
    width: 50%;
    text-align: left;
  }
}

.cg-section-3 {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10rem 0;
  text-align: left;
}
.cg-section-3 .cg-container {
  position: relative;
}
@media (min-width: 992px) {
  .cg-section-3 {
    text-align: center;
  }
  .cg-section-3 .cg-container:after {
    position: absolute;
    border: 1px solid var(--secondary-500);
    content: "";
    z-index: 1;
    inset: 1.6rem;
    pointer-events: none;
  }
  .cg-section-3 .cg-container:before {
    position: absolute;
    border: 1px solid var(--secondary-500);
    content: "";
    z-index: 1;
    inset: 0.8rem;
    pointer-events: none;
  }
  .cg-section-3 .cg-container {
    padding: 8rem;
  }
}
.cg-section-3 h2, .cg-section-3 p {
  color: var(--black);
}

.cg-section-4 {
  padding: 10rem 0;
  background-color: rgba(var(--primary-500), 0.95);
}
.cg-section-4 .cg-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.cg-section-4__left {
  width: 100%;
}
.cg-section-4__right {
  display: none;
  width: 50%;
}
.cg-section-4 .cg-button__inner {
  width: 250px;
}
@media (min-width: 768px) {
  .cg-section-4 .cg-button__inner {
    width: auto;
  }
}
@media (min-width: 992px) {
  .cg-section-4 .cg-section-4__right {
    display: block;
    width: 40%;
  }
  .cg-section-4 .cg-section-4__left {
    width: 50%;
    text-align: left;
  }
}

.cg-section {
  background-color: rgba(var(--primary-500), 0.95);
  padding: 10rem 0;
}

.d-block-lg {
  display: none;
}
@media (min-width: 992px) {
  .d-block-lg {
    display: block;
  }
}

.d-none-lg {
  display: block;
}
@media (min-width: 992px) {
  .d-none-lg {
    display: none;
  }
}

.cg-next {
  font-family: jost, sans-serif;
  color: var(--white);
  font-size: 1.6rem;
}

/*# sourceMappingURL=styles.css.map */
