@font-face {
  font-family: "Nunito";
  src: url("../../dist/fonts/Nunito-Medium.woff2") format("woff2"), url("../../dist/fonts/Nunito-Medium.woff") format("woff"), url("../../dist/fonts/Nunito-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Lora";
  src: url("/../../dist/fonts/Lora-Medium.woff2") format("woff2"), url("../../dist/fonts/Lora-Medium.woff") format("woff"), url("../../dist/fonts/Lora-Medium.ttf") format("truetype");
}
@keyframes blink-animation {
  50% {
    visibility: hidden;
  }
}
/* 
    //You can also configure defaults when forwarding
    @forward 'variables' with (
        $base-spacing: 2rem,
    );
*/
/*
@mixin button-base {
  padding: vars.$base-spacing;
  font-size: vars.$base-font-size;
  color: vars.$base-color;
  border: 2px solid vars.$base-color;
  background: transparent;
  cursor: pointer;
}
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", "Arial", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #aa7a50;
  background-color: #080808;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 0.5rem 1rem;
  color: #aa7a50;
  background: #432834;
  text-decoration: none;
  z-index: 100;
}
.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: "Lora", "Times New Roman", serif;
  font-weight: normal;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #2682a9;
  text-decoration: underline;
}
a:focus-visible {
  outline: 1px dashed #2682a9;
  outline-offset: 2px;
}
a:hover {
  color: rgb(28.6376811594, 97.9710144928, 127.3623188406);
  text-decoration: none;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

blockquote {
  width: 80%; /* Wider on mobile */
  margin: 2rem auto;
  padding: 1rem;
  border-left: 0.25rem dashed #432834;
}
blockquote p {
  font-style: italic;
}
blockquote footer {
  margin-top: 1rem;
  font-size: 0.875rem;
}

code {
  background: #080808;
  border-radius: 0.5rem;
  color: #2682a9;
}

pre {
  min-width: 280px;
  margin: 2rem auto;
  border: dashed 1px #684ba0;
  border-radius: 0.5rem;
  background: #080808;
}
pre code {
  display: block;
  overflow-x: auto;
  white-space: pre;
  text-wrap: auto;
  text-align: left;
  padding: 0 1rem;
}

hr {
  /* Complete reset of ALL hr defaults */
  height: 20px;
  border: 0;
  border-top: none;
  border-bottom: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  color: transparent;
  margin: 2rem 0;
  padding: 0;
  background-image: url("../../dist/images/hr_dark.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Some browsers use ::before or ::after for hr styling */
hr::before,
hr::after {
  display: none !important;
}

/* Responsive sizing */
@media (min-width: 768px) {
  hr {
    background-size: 40% auto;
    height: 30px;
  }
}
.btn {
  background: none;
  border: dashed 1px transparent;
  padding: 0;
  margin: 0;
  font-family: "Lora", "Times New Roman", serif;
  cursor: pointer;
  outline: none;
  display: inline-block;
  padding: 0.5rem 2rem;
  font-size: 1.125rem;
  font-family: "Lora", "Times New Roman", serif;
  text-align: center;
  text-decoration: none;
  border-radius: 0.5rem;
}
.btn:focus-visible {
  outline: 1px dashed #2682a9;
  outline-offset: 2px;
}
.btn_primary {
  color: #f2e8e3;
  border-color: #684ba0;
  background-color: #2682a9;
}
.btn_primary:hover {
  color: #f2e8e3;
  background-color: rgb(19.2753623188, 65.9420289855, 85.7246376812);
}
.btn_secondary {
  color: #f2e8e3;
  border-color: #684ba0;
  background-color: #684ba0;
}
.btn_secondary:hover {
  color: #f2e8e3;
  border-color: transparent;
  background-color: rgb(58.8595744681, 42.4468085106, 90.5531914894);
}
.btn_clear {
  color: #aa7a50;
  border-color: #684ba0;
}
.btn_clear:hover {
  color: #0a010a;
  background-color: #aa7a50;
}

.btn_group {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: center;
  margin: 1rem auto;
}
@media (min-width: 768px) {
  .btn_group {
    flex-direction: row;
    align-items: center;
  }
}

.header {
  background: #0a010a;
  position: sticky;
  top: 0;
  z-index: 999;
}

.pop-img-container {
  position: relative;
  width: 100%;
  z-index: 1;
}
.pop-img-container .pop-img-control {
  position: relative;
  width: 100%;
  min-height: 100px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (min-width: 576px) {
  .pop-img-container .pop-img-control {
    min-height: 200px;
    height: 200px;
  }
}
@media (min-width: 768px) {
  .pop-img-container .pop-img-control {
    min-height: 270px;
    height: 270px;
  }
}
@media (min-width: 992px) {
  .pop-img-container .pop-img-control {
    min-height: 350px;
    height: 350px;
  }
}
@media (min-width: 1200px) {
  .pop-img-container .pop-img-control {
    min-height: 400px;
    height: 450px;
  }
}
.pop-img-container .pop-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  min-height: 300px;
  background-image: url(../images/arapaima_header.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  z-index: 10;
}
@media (min-width: 768px) {
  .pop-img-container .pop-img {
    min-height: 300px;
    height: 400px;
  }
}
@media (min-width: 992px) {
  .pop-img-container .pop-img {
    min-height: 400px;
    height: 500px;
  }
}
@media (min-width: 1200px) {
  .pop-img-container .pop-img {
    min-height: 400px;
    height: 600px;
  }
}

/* .header_fish_section {
    position: relative;

    .container{
        height:350px;
        position: relative;

        @include mix.respond-to('md') {
            height:550px;
        }
    }
    .header_fish_img {
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 100;
    }

} */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.navbar_logo {
  display: inline-block;
}
.navbar_logo:focus-visible {
  outline: 1px dashed #2682a9;
  outline-offset: 2px;
}
.navbar_logo img {
  display: block;
  height: auto;
}
.navbar_toggle {
  background: none;
  border: dashed 1px transparent;
  padding: 0;
  margin: 0;
  font-family: "Lora", "Times New Roman", serif;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 30px;
  height: 24px;
}
.navbar_toggle:focus-visible {
  outline: 1px dashed #2682a9;
  outline-offset: 2px;
}
@media (min-width: 768px) {
  .navbar_toggle {
    display: none;
  }
}
.navbar_toggle-bar {
  display: block;
  background-color: #2682a9;
  width: 100%;
  height: 3px;
}
.navbar_toggle[aria-expanded=true] .navbar_toggle-bar:first-child {
  transform: translateY(10px) rotate(45deg);
}
.navbar_toggle[aria-expanded=true] .navbar_toggle-bar:nth-child(2) {
  opacity: 0;
}
.navbar_toggle[aria-expanded=true] .navbar_toggle-bar:last-child {
  transform: translateY(-10px) rotate(-45deg);
}
.navbar_menu {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding-left: 0;
  list-style: none;
  background: #080808;
}
@media (min-width: 768px) {
  .navbar_menu {
    display: flex;
    justify-content: space-between;
    position: static;
    border: none;
    background: transparent;
  }
}
.navbar_menu.is-active {
  display: block;
}
@media (min-width: 768px) {
  .navbar_item {
    margin-left: 1.5rem;
  }
}
.navbar_link {
  border: transparent;
  display: block;
  padding: 1rem 1rem;
  padding-left: 2rem;
  color: #aa7a50;
  text-decoration: none;
}
.navbar_link:focus-visible {
  outline: 1px dashed #2682a9;
  outline-offset: 2px;
}
.navbar_link:hover {
  color: #0a010a;
  background-color: #aa7a50;
  border-color: transparent;
}
@media (min-width: 768px) {
  .navbar_link:hover {
    border-radius: 0.5rem;
  }
}
@media (min-width: 768px) {
  .navbar_link {
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 768px) {
  .navbar {
    justify-content: space-between;
  }
}

.footer {
  background-color: #2682a9;
  text-align: center;
  width: 100%;
}
.footer_content {
  display: grid;
  gap: 1rem;
  padding: 1rem 0;
  margin-top: 10.5rem;
}
@media (min-width: 768px) {
  .footer_content {
    margin-top: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer_links {
  list-style: none;
  padding: 0;
}
.footer_links li {
  margin-bottom: 0.5rem;
}
.footer_links a:focus-visible {
  outline: 1px dashed #2682a9;
  outline-offset: 2px;
}
.footer_links a:hover {
  color: #aa7a50;
}
.footer_social {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  justify-content: center;
  padding: 0;
}
.footer_social a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #080808;
  border: 1px dashed #684ba0;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #aa7a50;
}
.footer_social a:focus-visible {
  outline: 1px dashed #2682a9;
  outline-offset: 2px;
}
.footer_social a:hover {
  border-color: transparent;
  color: #0a010a;
  background-color: #aa7a50;
}
.footer .overlay {
  background-color: rgba(8, 8, 8, 0.9);
  padding: 1rem;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .footer .overlay {
    background-color: rgba(8, 8, 8, 0.7);
  }
}

footer {
  position: relative;
  text-align: center;
}

.footer-img {
  height: 300px;
  min-height: 300px;
  width: 100%;
  background-image: url("../../dist/images/arapaima_logo_footer.png");
  background-position: top 0 right -288px;
  background-size: cover;
  position: absolute;
  bottom: 0;
}
@media (min-width: 768px) {
  .footer-img {
    background-position: top center;
  }
}
@media (min-width: 992px) {
  .footer-img {
    height: 350px;
    min-height: 350px;
    background-position: top center;
  }
}

.footer-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  background-color: transparent;
}

.footer-img-offset {
  height: 350px;
}
@media (min-width: 768px) {
  .footer-img-offset {
    height: 400px;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  background-color: #0a010a;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.with-corners {
  position: relative;
  padding: 4.5rem; /* Ensure content doesn't overlap corners */
  background-image: url("../../dist/images/corner_tl_dark.png"), url("../../dist/images/corner_tr_dark.png"), url("../../dist/images/corner_bl_dark.png"), url("../../dist/images/corner_br_dark.png");
  background-position: 1.5rem 1.5rem, right 1.5rem top 1.5rem, left 1.5rem bottom 1.5rem, right 1.5rem bottom 1.5rem;
  background-size: 100px 100px, 100px 100px, 100px 100px, 100px 100px;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .with-corners {
    background-position: 3rem 3rem, right 3rem top 3rem, left 3rem bottom 3rem, right 3rem bottom 3rem;
    padding: 7.5rem;
  }
}

section {
  text-align: center;
}
section p a:hover {
  border: dashed 1px #2682a9;
  border-radius: 0.5rem;
}
section ul, section ol {
  max-width: fit-content;
  margin: 1rem auto;
  text-align: left;
}
section ul li, section ol li {
  margin-bottom: 0.25rem;
  padding-left: 0.25rem;
}

.section-sub {
  margin: 2rem 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 1rem auto;
  list-style: none;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .gallery-container {
    grid-template-columns: repeat(6, 1fr);
  }
}
.gallery-container .gallery-item {
  width: 100%;
  margin: 0;
  padding: 0;
}
.gallery-container .gallery-item .inner {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 0.5rem;
  border: 2px dashed transparent;
}
.gallery-container .gallery-item .inner:hover {
  border-color: #2682a9;
}
.gallery-container .gallery-item .inner:active, .gallery-container .gallery-item .inner:focus-visible {
  border-color: #2682a9;
}
.gallery-container .gallery-item .inner a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.gallery-container .gallery-item .inner a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-container .gallery-item .inner a img:hover {
  transform: scale(1.05);
}
.gallery-container .gallery-item .inner a img:active, .gallery-container .gallery-item .inner a img:focus-visible {
  border-color: #2682a9;
}

.gallery-item .inner {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.gcontainer .gslide-external {
  background: #0a010a;
}
.gcontainer .gslide-inner-content .gslide-title {
  color: #f2e8e3;
  font-family: "Lora", "Times New Roman", serif;
  margin-bottom: 0.5rem;
}
.gcontainer .gslide-inner-content .gslide-description {
  background: #0a010a;
  font-family: "Nunito", "Arial", sans-serif;
}
.gcontainer .gslide-inner-content .gdesc-inner {
  padding: 1rem;
}

/* path {
    stroke-opacity: 0;
}

path.hw {
    stroke-opacity: 1;
}
 */
.form {
  max-width: 600px;
  margin: 1rem auto;
}
.form_group {
  margin-bottom: 1.5rem;
}
.form_label {
  display: block;
  margin-bottom: 0.5rem;
  text-align: left;
}
.form_label abbr {
  color: #E25A68;
  text-decoration: none;
}
.form_input, .form_select, .form_textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 1px dashed #2682a9;
  border-radius: 0.5rem;
  background-color: #080808;
  color: #aa7a50;
}
.form_input:focus-visible, .form_select:focus-visible, .form_textarea:focus-visible {
  outline: 1px dashed #2682a9;
  outline-offset: 2px;
}
.form_input:hover, .form_select:hover, .form_textarea:hover {
  border-color: rgb(28.6376811594, 97.9710144928, 127.3623188406);
}
.form_input:focus, .form_select:focus, .form_textarea:focus {
  border-color: #2682a9;
}
.form_textarea {
  resize: vertical;
  min-height: 100px;
}
.form_error {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #E25A68;
}
.form_error:empty {
  display: none;
}
.form_hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #2682a9;
}
.form_fieldset {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px dashed #2682a9;
  border-radius: 0.5rem;
}
.form_legend {
  padding: 0 0.5rem;
  font-weight: 500;
}
.form_radio-group, .form_checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.form_radio-group input, .form_checkbox-group input {
  margin-right: 0.5rem;
}
.form_radio-group input:focus-visible, .form_checkbox-group input:focus-visible {
  outline: 1px dashed #2682a9;
  outline-offset: 2px;
}
.form_radio-group label, .form_checkbox-group label {
  cursor: pointer;
}
.form_actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Main stylesheet for all partials 
    Mobile first stylesheet
*/

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