@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;500&display=swap");
:root {
  --bs-border-radius: 8px;
  --bs-body-color: white;
  --bs-body-bg: #0a1529;
  --vc-clr-secondary: rgb(255, 255, 255, 0.3) !important;
  --vc-clr-primary: rgb(255, 255, 255) !important;
  --vc-pgn-width: 30px !important;
  --vc-nav-color: white !important;
  --vc-nav-color-hover: white !important;
  --vc-nav-border-radius: 50% !important;
  --vc-nav-height: 50px !important;
  --vc-nav-width: 50px !important;
  --vc-nav-height-sm: 30px !important;
  --vc-nav-width-sm: 30px !important;
}

.card {
  --bs-card-border-width: 0px !important;
}

.carousel {
  position: relative;
}
.carousel .carousel__next,
.carousel .carousel__prev {
  border: 1px solid white;
  align-items: center;
  background: transparent;
  border-radius: 25px;
  box-sizing: content-box;
  color: white;
  cursor: pointer;
  display: flex;
  height: 25px;
  justify-content: center;
  margin: 0 10px;
  padding: 10px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
}
.carousel .carousel__next svg,
.carousel .carousel__prev svg {
  transition: transform 0.3s ease;
  fill: white;
}
.carousel .carousel__next {
  right: 0;
}
.carousel .carousel__prev {
  left: 0;
}
.carousel .carousel__prev:not(.carousel__prev--disabled):hover svg {
  transform: translateX(-5px);
}
.carousel .carousel__next:not(.carousel__next--disabled):hover svg {
  transform: translateX(5px);
}

.carousel__pagination-button {
  width: 40px;
}
.carousel__pagination-button::after {
  width: 30px;
}

.carousel-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  line-height: 0;
  list-style: none;
  margin: 20px 0 0;
}
.carousel-pagination > li > button {
  width: 30px;
  background-color: transparent;
  text-align: center;
  padding-bottom: 2px;
  border: 0;
}
.carousel-pagination > li > button::after {
  background-color: rgba(255, 255, 255, 0.3);
  content: "";
  display: block;
  height: 4px;
  width: 30px;
}
.carousel-pagination > li > button.carousel__pagination-button--active::after {
  background-color: rgb(255, 255, 255);
}

@media (max-width: 768px) {
  .carousel .carousel__next,
  .carousel .carousel__prev {
    height: var(--vc-nav-height-sm);
    width: var(--vc-nav-width-sm);
  }
  .carousel .carousel__pagination-button {
    width: 10px;
  }
  .carousel .carousel__pagination-button::after {
    height: 5px;
    width: 5px;
    border-radius: 5px;
  }
}
.collapse-items-wrapper {
  display: flex;
  flex-direction: column;
  width: 80%;
}
.collapse-items-wrapper .collapse-item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.collapse-items-wrapper .collapse-item .item-row {
  display: flex;
  gap: 16px;
  height: 50px;
  align-items: center;
}
.collapse-items-wrapper .collapse-item .item-row .number {
  min-width: 30px;
  font-size: 16px;
  font-weight: 200;
}
.collapse-items-wrapper .collapse-item .item-row .title {
  flex: 1;
  text-transform: uppercase;
  font-weight: 500;
}
.collapse-items-wrapper .collapse-item .item-row .expand {
  position: relative;
  width: 50px;
}
.collapse-items-wrapper .collapse-item .item-row .expand .plus,
.collapse-items-wrapper .collapse-item .item-row .expand .minus {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, opacity 0.5s;
}
.collapse-items-wrapper .collapse-item .item-row .expand .minus {
  opacity: 0;
}
.collapse-items-wrapper .collapse-item .item-content {
  height: 0;
  max-height: 0;
  overflow: hidden;
  width: 85%;
  margin: auto;
  color: rgba(255, 255, 255, 0.75);
  will-change: height;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 1);
  white-space: pre-wrap;
}

.collapse-items-wrapper .collapse-item.selected {
  border-bottom: 1px solid white;
}
.collapse-items-wrapper .collapse-item.selected .expand .plus {
  opacity: 0;
  transform: rotate(90deg);
}
.collapse-items-wrapper .collapse-item.selected .expand .minus {
  opacity: 1;
}
.collapse-items-wrapper .collapse-item.selected .item-content {
  height: 100%;
  max-height: 500px;
  margin-bottom: 24px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .collapse-items-wrapper {
    width: 100%;
  }
  .collapse-items-wrapper .title {
    font-size: 12px;
  }
}
.contact-section {
  min-height: 50vh;
  width: 90%;
}
.contact-section .contact-info {
  display: flex;
  flex-direction: column;
}
.contact-section .contact-info .contact-description {
  margin-top: 2%;
  padding-right: 30px;
  padding-bottom: 10px;
}
.contact-section .contact-form {
  display: flex;
  flex-direction: column;
}
.contact-section .contact-form .content {
  margin-top: auto;
}
.contact-section .contact-form .select-type {
  display: none;
}

.contact-section .col-header {
  margin-bottom: 24px;
  height: 45px;
}

form {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
}
form .d-flex {
  gap: 16px;
}
form .d-flex > div:not(.w-100) {
  flex: 1;
  max-width: calc(50% - 8px);
}
form .btn {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 5px 20px;
}

.fade-in-left-enter-active {
  animation: fadeInLeft 0.5s;
}

.fade-in-left-leave-active {
  animation: fadeInLeft 0.5s reverse;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
    max-height: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    max-height: 55px;
  }
}
@media (max-width: 1024px) {
  .contact-section {
    flex-direction: column;
    gap: 56px !important;
    width: 100%;
  }
  .contact-section .contact-description {
    font-size: 13px;
  }
  .contact-section .contact-description img {
    height: 20px;
    width: 20px;
  }
  .contact-section .contact-form {
    width: 75%;
    margin: 0 auto;
  }
  .contact-section .contact-form form .d-flex {
    flex-direction: column;
  }
  .contact-section .contact-form form .d-flex > div {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .contact-section .contact-form {
    width: 100%;
  }
  .contact-section .contact-form .select-type {
    display: block;
  }
  .contact-section .col-header {
    display: none;
  }
  form {
    padding: 16px 0;
  }
}
.container-fluid.flex-column {
  gap: 16px;
}
.container-fluid.flex-column .bg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.container-fluid.flex-column .bg-wrapper .bg-image {
  background-size: cover;
  background-position: center;
  width: 75%;
  height: 75%;
}

.container-fluid.d-flex {
  gap: 16px;
}
.container-fluid.d-flex .bg-image {
  background-size: cover;
  background-position: center;
}

.divider {
  position: relative;
  height: 1px;
}

.div-transparent:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  width: 90%;
  height: 1px;
}

.div-arrow:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: calc(50% - 7px);
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  background-color: #0a1529;
  border-radius: 2px;
}

.div-arrow-down:after {
  top: -7px;
}

.div-arrow-up:after {
  top: -6px;
}

.domains-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 120px;
  row-gap: 80px;
  width: 90%;
  margin: auto;
}
.domains-wrapper > .item-wrapper {
  width: calc(50% - 60px);
}

.domain-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.domain-item .domain-index {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
}
.domain-item h3 {
  text-transform: uppercase;
}
.domain-item p {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .domains-wrapper > .item-wrapper {
    width: 100%;
  }
}
.sidebar-drawer {
  position: fixed;
  top: 65px;
  left: -300px; /* Initial position off-screen */
  width: 300px;
  height: 100%;
  background-color: #0a1529;
  transition: transform 0.3s;
  color: white;
  z-index: 10;
}
.sidebar-drawer.visible {
  transform: translateX(300px);
}
.sidebar-drawer .close {
  position: absolute;
  top: 5px;
  right: 5px;
}
.sidebar-drawer .menu-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  margin-top: 32px;
}
.sidebar-drawer .menu-items a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s;
}
.sidebar-drawer .menu-items a.selected {
  color: white;
  text-decoration: underline;
}

header {
  height: 100vh;
  width: 100vw;
  background-position: center !important;
  background-size: cover;
}
header .header-title {
  position: absolute;
  bottom: 7%;
  left: 5%;
  right: 5%;
  z-index: 3;
}
header .header-title hr {
  width: 70%;
}
header .header-title .subtitle {
  max-width: 75%;
  text-transform: uppercase;
}
header .header-title .subtitle h2 {
  font-size: 26px;
}
header .header-title .subtitle.sm {
  max-width: 50%;
}
header .header-title h1, header .header-title h2 {
  font-weight: 300;
  text-transform: uppercase;
}
header .overlay {
  z-index: 2;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
header .overlay .overlay-inner {
  height: 50%;
  background-image: linear-gradient(rgba(10, 21, 41, 0) 0%, rgba(10, 21, 41, 0.5) 25%, rgba(10, 21, 41, 0.8) 60%, rgba(10, 21, 41, 0.95) 70%, rgb(10, 21, 41) 80%, rgb(10, 21, 41) 100%);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.arrow-container {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  animation: arrowBounce 1.5s infinite;
  z-index: 3;
}
.arrow-container .arrow {
  width: 15px;
  height: 15px;
  border: solid white;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 3px 0;
  transform: rotate(45deg);
  animation: arrowFade 1.5s infinite;
}

@keyframes arrowBounce {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: 20px;
  }
}
@keyframes arrowFade {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.1;
  }
}
@media (max-width: 1024px) {
  header .header-title h1 {
    font-size: 32px;
  }
  header .header-title .subtitle, header .header-title .subtitle.sm {
    max-width: 100%;
  }
  header .header-title .subtitle h2, header .header-title .subtitle.sm h2 {
    font-size: 18px;
  }
}
nav.navbar {
  display: flex;
  height: 65px;
  padding: 25px 40px;
  background-color: #0a1529;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  transition: all 0.2s ease-in;
}
nav.navbar .menu-burger {
  display: none;
}
nav.navbar a {
  text-decoration: none;
  color: white;
  line-height: 1;
}
nav.navbar > div:first-child {
  flex: 2;
}
nav.navbar.low-opacity {
  background-color: rgba(10, 21, 41, 0.85);
}
nav.navbar img {
  height: 15px;
  cursor: pointer;
}
nav.navbar .menu {
  display: flex;
  gap: 16px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 200;
}
nav.navbar .menu > *:not(:last-child) {
  border-right: 1px solid grey;
  padding-right: 10px;
}
nav.navbar .menu > * {
  cursor: pointer;
}
nav.navbar .menu > *.selected {
  font-weight: 700;
  padding-bottom: 5px;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  nav.navbar {
    justify-content: flex-start;
    gap: 32px;
  }
  nav.navbar .menu {
    display: none;
  }
  nav.navbar .menu-burger {
    display: block;
  }
}
.default-tabs {
  position: relative;
  margin: 0 auto;
  border: 1px solid white;
  width: fit-content;
  border-radius: 25px;
  z-index: 0;
}
.default-tabs__item {
  display: inline-block;
  padding: 8px 15px;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: white;
  text-decoration: none;
  border: none;
  background-color: transparent;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  min-width: 100px;
  text-align: center;
}
.default-tabs__item.default-tabs__item-active {
  color: #0a1529;
  cursor: default !important;
}
.default-tabs__item:not(.default-tabs__item-active):hover {
  opacity: 0.75;
}
.default-tabs__item:focus {
  outline: none;
}
.default-tabs__item:first-child {
  margin-left: 0;
}
.default-tabs__item:last-child {
  margin-right: 0;
}
.default-tabs__active-line {
  position: absolute;
  top: 5%;
  left: 2px;
  height: 90%;
  z-index: -1;
  background-color: white;
  border-radius: 25px;
  transition: transform 0.4s ease, width 0.4s ease;
}

.yacht-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.yacht-card {
  display: flex;
  height: 400px;
  width: 90%;
  margin: auto;
  border-radius: 2px;
  background-color: #0f1c35;
}
.yacht-card .yacht-pic {
  position: relative;
  width: 55%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yacht-card .yacht-pic .yacht-localization {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 40px;
  opacity: 0;
  transition: opacity 0.2s ease-in;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: rgba(9, 21, 42, 0.1803921569);
  gap: 16px;
  padding: 0 16px;
}
.yacht-card .yacht-pic .yacht-localization > div {
  font-weight: bold;
  text-transform: uppercase;
}
.yacht-card .yacht-pic:hover img {
  transform: scale(1.05);
}
.yacht-card .yacht-pic:hover .yacht-localization {
  opacity: 1;
}
.yacht-card .yacht-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in;
}
.yacht-card .description {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 10px 25px;
  width: 45%;
}
.yacht-card .description .title {
  width: 100%;
  text-transform: uppercase;
  text-align: start;
  padding: 25px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  max-height: 100px;
  height: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
}
.yacht-card .description .title .title-tiret {
  height: 1px;
  width: 35px;
  border-top: 1px solid white;
}
.yacht-card .description .title h4 {
  margin-bottom: 0;
}
.yacht-card .description .items {
  display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
  margin: 20px 0;
  font-size: 14px;
  padding: 0 15px;
  column-gap: 10%;
}
.yacht-card .description .items .item {
  width: 45%;
}
.yacht-card .description .button {
  margin: 0 15px;
}
.yacht-card .description .yt-wrapper {
  border: 1px solid white;
  height: 35px;
  border-radius: 45px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: ease-in 0.2s all;
}
.yacht-card .description .yt-wrapper:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .yacht-card {
    width: 100%;
    height: unset;
    flex-direction: column;
  }
  .yacht-card .yacht-pic {
    width: 100%;
  }
  .yacht-card .description {
    width: 100%;
  }
}
svg.primary-color {
  fill: #0a1529;
}

.input-wrapper {
  display: flex;
  padding: 5px 20px;
  gap: 16px;
  border-radius: 8px;
  background-color: white;
  min-height: 45px;
}
.input-wrapper .input-icon {
  display: flex;
  align-items: center;
}
.input-wrapper .input-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.input-wrapper .input-container label {
  font-size: 12px;
  color: grey;
}
.input-wrapper .input-container input,
.input-wrapper .input-container textarea {
  border: none;
  background-color: transparent;
  outline: none;
  color: #0a1529;
  font-size: 14px;
  resize: none;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  border: none !important;
  -webkit-box-shadow: none !important;
  background-color: #0a1529 !important;
  color: #0a1529;
}

.input-select-wrapper {
  position: relative;
  transition: all 0.3s ease-out;
  cursor: pointer;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.input-select-wrapper .input-container {
  justify-content: center;
}
.input-select-wrapper ul {
  position: absolute;
  top: 45px;
  width: 100%;
  left: 0;
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  border: 1px solid gainsboro;
  position: absolute;
  z-index: 1;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.input-select-wrapper li {
  padding: 12px;
  color: #666;
}
.input-select-wrapper li:hover {
  color: white;
  background: rgba(10, 21, 41, 0.85);
}
.input-select-wrapper .current {
  background: #eaeaea;
}
.input-select-wrapper .hidden {
  border: none;
}
.input-select-wrapper .visible {
  max-height: 200px;
  overflow-y: scroll;
  border: 1px solid gainsboro;
}

.selector {
  position: relative;
  z-index: 1;
}
.selector .arrow {
  position: absolute;
  right: 0;
  top: 15%;
  transform: rotateZ(0deg) translateY(0px);
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.59, 1.39, 0.37, 1.01);
}
.selector .expanded {
  transform: rotateZ(180deg) translateY(2px);
}
.selector .label {
  display: block;
  font-size: 14px;
  color: #0a1529;
}
.selector .label.empty {
  color: #888;
}

@media (max-width: 1024px) {
  .input-select-wrapper .selector .label {
    font-size: 12px;
  }
}
.marquee {
  --duration: 40s;
  --gap: 10px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  height: 250px;
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
}

.marquee__group img {
  object-fit: contain;
  height: 75%;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
@media (max-width: 1024px) {
  .marquee {
    height: 150px;
  }
  .marquee img {
    max-height: 50%;
  }
}
button.btn {
  border-radius: 8px;
}

button.btn.btn-secondary,
button.btn.btn-secondary:hover {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  border-radius: 20px;
}

.button {
  text-align: center;
  width: fit-content;
  padding: 0 20px;
  border-radius: 10px;
  border: 0.9px solid white;
}
.button_inner {
  width: fit-content;
  height: 45px;
  font-weight: 100;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  transition: all 0.3s, box-shadow 0.2s, transform 0.2s 0.2s;
  text-transform: uppercase;
}
.button_inner span.t {
  position: relative;
  top: -1px;
  opacity: 1;
  right: -10px;
  transition: right 0.4s 0.1s;
}
.button_inner i.l {
  position: relative;
  right: -8px;
  top: 20px;
  color: #fff;
  font-size: 25px;
  opacity: 0;
  transition: right 0.3s 0s, top 0.3s 0s, opacity 0.3s 0s;
}
.button_inner:hover {
  box-shadow: 0px 17px 18px -14px rgba(0, 0, 0, 0.08);
}
.button_inner:hover span.t {
  right: 8px;
  transition: right 0.4s;
  font-weight: 300;
}
.button_inner:hover i.l {
  top: 3px;
  opacity: 1;
  transition: right 0.3s 0s, top 0.3s 0.1s, opacity 0.3s 0.1s;
}

@keyframes opacity {
  to {
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .button {
    padding: 0;
    width: max-content;
  }
  .button .button_inner {
    height: unset;
    padding: 5px 20px;
    width: unset;
  }
  .button .button_inner span.t {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 35px;
  }
  .button .button_inner i.l {
    display: none;
  }
}
:root {
  --bs-border-radius: 8px;
  --bs-body-color: white;
  --bs-body-bg: #0a1529;
  --vc-clr-secondary: rgb(255, 255, 255, 0.3) !important;
  --vc-clr-primary: rgb(255, 255, 255) !important;
  --vc-pgn-width: 30px !important;
  --vc-nav-color: white !important;
  --vc-nav-color-hover: white !important;
  --vc-nav-border-radius: 50% !important;
  --vc-nav-height: 50px !important;
  --vc-nav-width: 50px !important;
  --vc-nav-height-sm: 30px !important;
  --vc-nav-width-sm: 30px !important;
}

.card {
  --bs-card-border-width: 0px !important;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 30px 40px;
  border-radius: 4px;
  justify-content: space-between;
  gap: 16px;
}
.card__left {
  padding-left: 0;
}
.card__right {
  padding-right: 0;
}
.card h2,
.card h3 {
  margin-bottom: 0;
  padding-bottom: 0;
}
.card p {
  white-space: pre-line;
}
.card p.small {
  font-size: 14px;
}
.card > a.btn {
  width: fit-content;
}

.card-title {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
  text-transform: uppercase;
}
.card-title .title-tiret {
  height: 1px;
  width: 35px;
  border-top: 1px solid white;
}
.card-title h2,
.card-title h3 {
  text-transform: uppercase;
  margin-bottom: 0;
}
.card-title h2.light,
.card-title h3.light {
  font-weight: 300;
}
.card-title h2 {
  font-size: 15px;
  font-weight: 300;
}
.card-title h2.large {
  font-size: 32px;
}

@media (max-width: 768px) {
  .card {
    padding: 30px 20px;
  }
}
.dropzone-container {
  position: relative;
  display: flex;
  min-height: 100px;
  border: 2px dashed #bbb;
  align-items: center;
  padding: 30px 20px;
  min-width: 30%;
  max-width: 100%;
  width: fit-content;
}

.dropzone-input {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.dropzone-preview {
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 8px;
}

.dropzone-preview-image {
  position: relative;
  flex-basis: 0;
  min-width: 250px;
  max-width: 250px;
  height: 250px;
  margin-right: 10px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 5px;
}
.dropzone-preview-image .close-button {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
  border: none;
  margin: 0;
  padding: 0;
  width: fit-content;
  overflow: visible;
  background: 0 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
  padding: 3px 7px;
  border-radius: 15px;
  background-color: white;
}
.dropzone-preview-image .close-button > label {
  padding: 0;
}

.dropzone-preview-filename {
  word-wrap: anywhere;
}

.dropzone-preview-button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: 0 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
}

.dropzone-preview-button::before {
  content: "×";
  padding: 3px 7px;
  cursor: pointer;
}

.dropzone-placeholder {
  flex-grow: 1;
  text-align: center;
  color: #999;
}

.dropzone-preview-image-container {
  margin-right: 1em;
}

.section {
  padding: 0 16px;
  margin: 50px 0;
  min-height: 65vh;
}
.section.section-sm {
  min-height: unset;
  margin-bottom: 150px;
}
.section:first-child {
  margin-top: 150px;
}
.section .title-centered {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.card-section {
  display: flex;
  width: 90%;
  min-height: 500px;
  height: 50vh;
  gap: 16px;
  margin: 25px auto;
  padding: 0 16px;
}
.card-section :first-child {
  margin-top: 0;
}
.card-section .col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
    padding: 0px;
    margin: 25px 0;
  }
  .section .title-centered {
    width: 100%;
  }
  .section .bg-image {
    height: 30vh;
    width: 100%;
  }
  .section:first-child {
    margin-top: 50px;
  }
  .card-section {
    flex-direction: column;
    height: auto;
  }
  .card-section .bg-image {
    height: 50vh !important;
    order: 1 !important;
  }
  .card-section .card {
    order: 0 !important;
  }
  .section-sm {
    margin-bottom: 75px;
  }
}
* {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  letter-spacing: 2.5px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: white;
  overflow-x: hidden !important;
  background: #0a1529;
}

p,
label {
  font-family: "Montserrat", sans-serif;
}

p {
  font-weight: 200;
}

.cursor-pointer {
  cursor: pointer;
}

h1 {
  font-size: 2.5em;
}

hr {
  border: 0;
  border-top: 1px solid;
  color: inherit;
  margin: 1rem 0;
  opacity: 0.25;
}

main {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (min-width: 1800px) {
  .container-lg {
    max-width: 1600px;
  }
}

/*# sourceMappingURL=app.output.css.map */
