*,
:after,
:before {
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #20214f;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}

.title-gradient {
  background: -webkit-linear-gradient(45deg, #20214f, #9a9a9b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #5f5e5e;
  text-align: center;
  font-weight: 500;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #20214f;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  border: none;
}
.btn:hover {
  background-color: rgb(229.5, 229.5, 229.5);
  cursor: pointer;
}
.btn.btn-gray {
  background-color: #9b9b9b;
  color: #ffffff;
}
.btn.btn-transparent {
  background-color: transparent;
  color: #ffffff;
}

.arrow {
  border: solid #20214f;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-top: 3px;
}
.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.icon-w-24 {
  display: inline-block;
  width: 24px;
  height: 24px;
}

textarea {
  resize: none;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media only screen and (min-width: 992px) {
  .container {
    padding: 0 32px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

.details {
  margin-top: 76px;
}
.details__name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.details__name .item-anchors {
  margin-top: 10px;
}
.details__gallery .carousel-main {
  background: #FAFAFA;
  margin-bottom: 40px;
  height: 400px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .details__gallery .carousel-main {
    height: 600px;
  }
}
.details__gallery .carousel-main .carousel-cell {
  width: 100%;
  height: 400px;
  margin-right: 10px;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) {
  .details__gallery .carousel-main .carousel-cell {
    height: 600px;
  }
}
.details__gallery .carousel-main .carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.details__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
}
.details__content-left {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .details__content-left {
    width: calc(50% - 2rem);
  }
}
@media only screen and (min-width: 992px) {
  .details__content-left {
    width: calc(70% - 2rem);
  }
}
.details__content-left__thumbnails .carousel-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.details__content-left__thumbnails .carousel-thumbnails .carousel-cell {
  overflow: hidden;
  height: 80px;
  width: 100px;
  position: relative !important;
  width: calc(33.3333333333% - 8px);
}
@media only screen and (min-width: 768px) {
  .details__content-left__thumbnails .carousel-thumbnails .carousel-cell {
    width: calc(25% - 8px);
  }
}
@media only screen and (min-width: 1200px) {
  .details__content-left__thumbnails .carousel-thumbnails .carousel-cell {
    width: calc(20% - 8px);
  }
}
.details__content-left__thumbnails .carousel-thumbnails .carousel-cell img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: all ease-in-out;
}
.details__content-left__thumbnails .carousel-thumbnails .carousel-cell.is-selected img {
  opacity: 0.7;
}
.details__content-left__thumbnails .carousel-thumbnails .flickity-button {
  display: none;
}
.details__content-left__boat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 32px;
}
.details__content-left__boat .boat-info {
  margin-top: 16px;
  padding: 24px;
  font-size: 18px;
}
.details__content-left__boat .boat-box {
  padding: 24px;
  background-color: #ffffff;
}
.details__content-left__boat .boat-box.grey {
  background-color: #e8e8ea;
}
.details__content-left__boat .boat-box__title {
  margin: 0;
  border-bottom: solid 1px #20214f;
  margin-bottom: 16px;
  font-weight: 500;
}
.details__content-left__boat .boat-box__text p {
  margin: 0;
}
.details__content-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .details__content-right {
    width: calc(50% - 2rem);
  }
}
@media only screen and (min-width: 992px) {
  .details__content-right {
    width: 30%;
  }
}
.details__content-right .details-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.details__content-right .details-actions .button {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 16px;
  border: solid 1px #9a9a9b;
  padding: 8px 16px;
  color: #20214f;
  width: 100%;
  position: relative;
}
.details__content-right .details-actions .button select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  outline: none;
  color: #20214f;
}
.details__content-right .details-actions .button input {
  appearance: none;
  background-color: transparent;
  border: none;
  color: #20214f;
  font-size: 1.1rem;
  width: 100%;
  outline: none;
}
.details__content-right .details-actions .button:not(:first-child):after {
  display: inline-block;
  content: "";
  justify-self: end;
  width: 0.8em;
  height: 0.5em;
  background-image: url(../images/icon-arrow-down.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.details__content-right .details-price {
  font-size: 2.6rem;
  color: #20214f;
  font-weight: 500;
  text-align: center;
}
.details__content-right .form-dispo {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 10px;
  background-color: #cbcbcc;
  background: linear-gradient(90deg, #9c9c9c -90%, #e8e8ea);
}
.details__content-right .form-dispo_head {
  color: #20214f;
  padding: 24px 32px;
  font-weight: 500;
}
.details__content-right .form-dispo_content {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 30px;
}
.details__content-right .form-dispo_content label {
  display: none;
}
.details__content-right .form-dispo_content > div {
  width: 100%;
}
.details__content-right .form-dispo_content input, .details__content-right .form-dispo_content textarea {
  background-color: #ffffff;
  width: 100%;
  margin-bottom: 8px;
  padding: 8px;
  border: solid 1px #ffffff;
  outline: none;
}
.details__content-right .form-dispo_content textarea {
  height: 150px;
  margin-bottom: 0;
}
.details__content-right .form-dispo_content button {
  width: fit-content;
  margin-top: 32px;
}
.details__content-right .form-dispo_content .conditions {
  text-align: right;
  font-size: 14px;
  color: #212250;
}
.details__content-right .form-dispo_content .conditions a {
  text-decoration: none;
  margin-top: 10px;
  color: #6f6d6d;
}
.details__content-right .form-call {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #212250 -90%, #e8e8ea);
}
.details__content-right .form-call_head {
  color: #20214f;
  padding: 24px 32px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.details__content-right .form-call_content {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  padding-bottom: 30px;
}
.details__content-right .form-call_content > div {
  width: 100%;
}
.details__content-right .form-call_content label {
  display: none;
}
.details__content-right .form-call_content input {
  background-color: #ffffff;
  width: 100%;
  margin-bottom: 8px;
  padding: 8px;
  border: solid 1px #ffffff;
  outline: none;
}
.details__content-right .form-call_content button {
  margin-top: 32px;
  width: fit-content;
  color: #fff;
  background-color: #20214f;
}
.details__content-right .form-call_content .conditions {
  text-align: right;
  font-size: 14px;
  color: #212250;
}
.details__content-right .form-call_content .conditions a {
  text-decoration: none;
  color: #6f6d6d;
}

.benefits {
  padding: 4rem 0;
  color: #ffffff;
  background: linear-gradient(90deg, #20214f, #9a9a9b);
}
.benefits__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.benefits__title {
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 992px) {
  .benefits__title {
    text-align: right;
  }
}
.benefits__column:last-child {
  width: 100%;
  margin-top: 12px;
}
@media only screen and (min-width: 1200px) {
  .benefits__column:last-child {
    width: calc(50% - 2rem);
  }
}

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