/* [project]/src/components/home/filters/components/ArrowStyles.module.css [app-client] (css) */
.ArrowStyles-module__8lOc2a__arrow {
  width: 2.3125rem;
  height: 2.3125rem;
  position: relative;
}

.ArrowStyles-module__8lOc2a__arrowElement2 {
  position: absolute;
  top: .25rem;
  left: .53125rem;
}

.ArrowStyles-module__8lOc2a__arrowElement1 {
  position: absolute;
  top: .6875rem;
  left: .53125rem;
}

/* [project]/src/components/home/filters/components/FilterFormStyles.module.css [app-client] (css) */
.FilterFormStyles-module__PCZHrG__filterWrapper {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 62.0625rem;
  margin: 0 auto;
  display: flex;
}

.FilterFormStyles-module__PCZHrG__searchForm {
  width: 100%;
  box-shadow: 0rem .25rem .4125rem 0rem var(--color-shadow-medium);
  border-radius: .625rem .625rem 0 0;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.FilterFormStyles-module__PCZHrG__filterCell {
  background: var(--color-bg-primary);
  cursor: pointer;
  border-radius: .625rem 0 0 .625rem;
  justify-content: space-between;
  align-items: center;
  width: 17.125rem;
  height: 4.1875rem;
  padding: 0;
  transition: all .2s;
  display: flex;
}

.FilterFormStyles-module__PCZHrG__filterCell:nth-child(2) {
  background: var(--color-bg-primary);
  border-left: .0625rem solid var(--color-shadow-light);
  border-right: .0625rem solid var(--color-shadow-light);
  border-radius: 0;
}

.FilterFormStyles-module__PCZHrG__filterCell:nth-child(3) {
  background: var(--color-bg-primary);
  border-radius: 0;
}

.FilterFormStyles-module__PCZHrG__cellContent {
  align-items: center;
  gap: .9375rem;
  width: 13.75rem;
  height: 3.6875rem;
  padding: .25rem 0 .25rem .1875rem;
  display: flex;
}

.FilterFormStyles-module__PCZHrG__separator {
  border-left: .0625rem solid #0000;
  width: 0;
  height: 3.6875rem;
}

.FilterFormStyles-module__PCZHrG__cellBody {
  flex-direction: column;
  gap: .125rem;
  width: 100%;
  display: flex;
}

.FilterFormStyles-module__PCZHrG__cellLabel {
  align-items: center;
  gap: .625rem;
  padding: 0 .75rem;
  display: flex;
}

.FilterFormStyles-module__PCZHrG__labelText {
  font: 600 .875rem / 1.25 var(--font-open-sans);
  color: var(--color-text-secondary);
}

.FilterFormStyles-module__PCZHrG__cellValue {
  background: none;
  border-radius: 1.25rem;
  align-items: center;
  gap: .625rem;
  width: fit-content;
  max-width: 100%;
  padding: .375rem .625rem;
  display: flex;
}

.FilterFormStyles-module__PCZHrG__valueText {
  font: 500 .9375rem / 1.2 var(--font-open-sans);
  color: var(--color-text-secondary);
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 11.25rem;
  overflow: hidden;
}

.FilterFormStyles-module__PCZHrG__cellArrow {
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  width: 2.3125rem;
  height: 2.3125rem;
  margin-right: .625rem;
  display: flex;
}

.FilterFormStyles-module__PCZHrG__searchBtn {
  background: var(--color-accent);
  cursor: pointer;
  border: none;
  border-radius: 0 .625rem .625rem 0;
  justify-content: center;
  align-items: center;
  width: 10.6875rem;
  height: 4.1875rem;
  transition: background .2s;
  display: flex;
  position: relative;
}

.FilterFormStyles-module__PCZHrG__searchBtnBg {
  display: none;
}

.FilterFormStyles-module__PCZHrG__searchBtnText {
  font: 500 1rem / 1.25 var(--font-open-sans);
  color: var(--color-bg-primary);
}

.FilterFormStyles-module__PCZHrG__moreFilters {
  background: var(--color-bg-secondary);
  cursor: pointer;
  border: none;
  border-radius: 0 0 .625rem .625rem;
  justify-content: center;
  align-items: center;
  width: 11.5625rem;
  height: 3rem;
  margin-top: -.0625rem;
  transition: background .2s;
  display: flex;
  position: relative;
}

.FilterFormStyles-module__PCZHrG__moreFiltersBg {
  display: none;
}

.FilterFormStyles-module__PCZHrG__moreFiltersContent {
  align-items: center;
  gap: .5625rem;
  display: flex;
}

.FilterFormStyles-module__PCZHrG__plusIcon {
  width: 1.0625rem;
  height: 1.0625rem;
}

.FilterFormStyles-module__PCZHrG__moreFiltersText {
  font: 500 1rem / 1.2 var(--font-open-sans);
  color: var(--color-text-muted);
}

.FilterFormStyles-module__PCZHrG__filterCell:hover {
  box-shadow: 0 .125rem .5rem var(--color-shadow-medium);
  transform: translateY(-.0625rem);
}

.FilterFormStyles-module__PCZHrG__searchBtn:hover {
  background: var(--color-accent-hover);
}

.FilterFormStyles-module__PCZHrG__moreFilters:hover {
  background: var(--color-bg-secondary);
}

@media (max-width: 48rem) {
  .FilterFormStyles-module__PCZHrG__filterWrapper {
    width: 100%;
    max-width: 100vw;
  }

  .FilterFormStyles-module__PCZHrG__searchForm {
    flex-direction: column;
    gap: .625rem;
    width: 100%;
  }

  .FilterFormStyles-module__PCZHrG__filterCell, .FilterFormStyles-module__PCZHrG__filterCell:nth-child(2), .FilterFormStyles-module__PCZHrG__filterCell:nth-child(3) {
    background: var(--color-bg-primary);
    border: .0625rem solid var(--color-border-primary);
    border-radius: .625rem;
    width: 100%;
  }

  .FilterFormStyles-module__PCZHrG__searchBtn, .FilterFormStyles-module__PCZHrG__moreFilters {
    border-radius: .625rem;
    width: 100%;
  }

  .FilterFormStyles-module__PCZHrG__cellContent {
    width: calc(100% - 3.75rem);
  }

  .FilterFormStyles-module__PCZHrG__valueText {
    text-overflow: ellipsis;
    white-space: nowrap;
    width: auto;
    overflow: hidden;
  }
}

@media (max-width: 30rem) {
  .FilterFormStyles-module__PCZHrG__filterWrapper {
    gap: .3125rem;
  }

  .FilterFormStyles-module__PCZHrG__filterCell {
    height: 3.5rem;
    padding: 0 .9375rem 0 0;
  }

  .FilterFormStyles-module__PCZHrG__cellContent {
    gap: .625rem;
    padding: .25rem 0;
  }

  .FilterFormStyles-module__PCZHrG__cellArrow {
    width: 1.875rem;
    height: 1.875rem;
  }

  .FilterFormStyles-module__PCZHrG__labelText {
    font-size: .75rem;
  }

  .FilterFormStyles-module__PCZHrG__valueText, .FilterFormStyles-module__PCZHrG__searchBtnText, .FilterFormStyles-module__PCZHrG__moreFiltersText {
    font-size: .875rem;
  }
}

/* [project]/src/components/home/hero/HeroStyles.module.css [app-client] (css) */
.HeroStyles-module__jrDjvq__hero {
  background-color: var(--color-bg-dark);
  width: 100%;
  height: 52.75rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.HeroStyles-module__jrDjvq__bgLayers {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.HeroStyles-module__jrDjvq__bgVideo {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.HeroStyles-module__jrDjvq__mainContent {
  z-index: 15;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.HeroStyles-module__jrDjvq__heroSection {
  flex-direction: column;
  align-self: stretch;
  gap: 4.625rem;
  width: 100%;
  padding-top: 5.875rem;
  display: flex;
}

.HeroStyles-module__jrDjvq__heroTextContainer {
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  gap: 6.625rem;
  padding: 0 17.5625rem;
  display: flex;
}

.HeroStyles-module__jrDjvq__glassBackdrop {
  -webkit-backdrop-filter: blur(.9375rem);
  z-index: 1;
  background: linear-gradient(135deg, #ffffff40 0%, #ffffff1a 50%, #ffffff0d 100%);
  border: .0625rem solid #fff6;
  border-radius: 1.25rem;
  padding: 2.5rem;
  position: relative;
  box-shadow: inset 0 .0625rem #ffffff4d, 0 .5rem 2rem #00000026;
}

.HeroStyles-module__jrDjvq__glassBackdrop:before {
  content: "";
  background: inherit;
  filter: url("#glass");
  z-index: -1;
  border-radius: 1.25rem;
  position: absolute;
  inset: 0;
}

.HeroStyles-module__jrDjvq__heroText {
  width: 65.5rem;
  font-family: var(--font-pt-serif);
  text-align: center;
  z-index: 20;
  color: #fff;
  text-shadow: .0625rem .0625rem #0003, -.0625rem -.0625rem #0003, .0625rem -.0625rem #0003, -.0625rem .0625rem #0003;
  margin: 0;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}

.HeroStyles-module__jrDjvq__subtext {
  font-family: var(--font-open-sans);
  text-align: center;
  z-index: 20;
  color: #fff;
  text-shadow: .0625rem .0625rem #0003, -.0625rem -.0625rem #0003, .0625rem -.0625rem #0003, -.0625rem .0625rem #0003;
  margin: 1.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}

.HeroStyles-module__jrDjvq__filterContainer {
  flex-direction: column;
  align-self: stretch;
  align-items: center;
  padding: 0 12.5rem;
  display: flex;
}

.HeroStyles-module__jrDjvq__personalBtn {
  background: var(--color-brand-tertiary);
  width: 21.125rem;
  height: 3.4375rem;
  font-family: var(--font-open-sans);
  letter-spacing: 0.625%;
  color: var(--color-bg-primary);
  cursor: pointer;
  border: none;
  border-radius: .625rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 3.3125rem;
  padding: .625rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  display: flex;
}

.HeroStyles-module__jrDjvq__personalBtn:hover {
  background: var(--color-brand-dark);
}

@media (max-width: 75rem) {
  .HeroStyles-module__jrDjvq__heroTextContainer {
    padding: 0 6.25rem;
  }

  .HeroStyles-module__jrDjvq__heroText {
    width: 100%;
    font-size: 3rem;
  }

  .HeroStyles-module__jrDjvq__filterContainer {
    padding: 0 6.25rem;
  }

  .HeroStyles-module__jrDjvq__glassBackdrop {
    padding: 1.875rem;
  }
}

@media (max-width: 56.25rem) {
  .HeroStyles-module__jrDjvq__heroTextContainer {
    padding: 0 2.5rem;
  }

  .HeroStyles-module__jrDjvq__heroText {
    font-size: 2.625rem;
  }

  .HeroStyles-module__jrDjvq__subtext {
    font-size: 1.25rem;
  }

  .HeroStyles-module__jrDjvq__glassBackdrop {
    border-radius: .9375rem;
    padding: 1.5625rem;
  }

  .HeroStyles-module__jrDjvq__filterContainer {
    padding: 0 2.5rem;
  }
}

@media (max-width: 48rem) {
  .HeroStyles-module__jrDjvq__hero {
    height: 100vh;
    min-height: 37.5rem;
    margin-top: 0;
  }

  .HeroStyles-module__jrDjvq__heroSection {
    gap: 2.5rem;
    padding-top: 3.75rem;
  }

  .HeroStyles-module__jrDjvq__heroTextContainer {
    gap: 3.75rem;
    padding: 0 1.25rem;
  }

  .HeroStyles-module__jrDjvq__heroText {
    font-size: 2rem;
    line-height: 1.1;
  }

  .HeroStyles-module__jrDjvq__subtext {
    font-size: 1rem;
  }

  .HeroStyles-module__jrDjvq__filterContainer {
    padding: 0 1.25rem;
  }

  .HeroStyles-module__jrDjvq__personalBtn {
    width: 17.5rem;
  }

  .HeroStyles-module__jrDjvq__glassBackdrop {
    border-radius: .75rem;
    padding: 1.25rem;
  }
}

@media (max-width: 30rem) {
  .HeroStyles-module__jrDjvq__heroTextContainer {
    padding: 0 .9375rem;
  }

  .HeroStyles-module__jrDjvq__heroText {
    font-size: 1.75rem;
  }

  .HeroStyles-module__jrDjvq__subtext {
    font-size: .875rem;
  }

  .HeroStyles-module__jrDjvq__glassBackdrop {
    border-radius: .625rem;
    padding: .9375rem;
  }

  .HeroStyles-module__jrDjvq__filterContainer {
    padding: 0 .9375rem;
  }

  .HeroStyles-module__jrDjvq__personalBtn {
    width: 16.25rem;
    font-size: .875rem;
  }
}

/* [project]/src/components/home/filters-section/FilterSectionStyles.module.css [app-client] (css) */
.FilterSectionStyles-module__kY9P3q__filterSection {
  width: 100%;
  padding: 0;
  position: relative;
  background: var(--color-bg-primary) !important;
  background-color: var(--color-bg-primary) !important;
  background-image: none !important;
}

.FilterSectionStyles-module__kY9P3q__filterSection:before, .FilterSectionStyles-module__kY9P3q__filterSection:after {
  background: none !important;
  display: none !important;
}

.FilterSectionStyles-module__kY9P3q__contentWrapper {
  box-sizing: border-box;
  width: 100%;
  max-width: 87rem;
  margin: 0 auto;
  padding: 0;
  background: var(--color-bg-primary) !important;
  background-color: var(--color-bg-primary) !important;
  background-image: none !important;
}

.FilterSectionStyles-module__kY9P3q__contentWrapper:before, .FilterSectionStyles-module__kY9P3q__contentWrapper:after {
  background: none !important;
  display: none !important;
}

.FilterSectionStyles-module__kY9P3q__wrapper {
  align-items: flex-end;
  gap: 0;
  width: 100%;
  padding-left: 0;
  padding-right: 2.625rem;
  display: flex;
  background: none !important;
}

.FilterSectionStyles-module__kY9P3q__wrapper:before, .FilterSectionStyles-module__kY9P3q__wrapper:after {
  background: none !important;
  display: none !important;
}

@media (max-width: 75rem) {
  .FilterSectionStyles-module__kY9P3q__filterSection {
    padding-left: 1.25rem;
  }

  .FilterSectionStyles-module__kY9P3q__contentWrapper {
    padding: 0 1.25rem 0 .75rem;
  }
}

@media (max-width: 64rem) {
  .FilterSectionStyles-module__kY9P3q__filterSection {
    padding-left: 1rem;
  }

  .FilterSectionStyles-module__kY9P3q__contentWrapper {
    padding: 0 1rem 0 .75rem;
  }
}

@media (max-width: 48rem) {
  .FilterSectionStyles-module__kY9P3q__filterSection {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    padding-left: 0;
  }

  .FilterSectionStyles-module__kY9P3q__contentWrapper {
    padding: 0 1rem 0 .75rem;
  }

  .FilterSectionStyles-module__kY9P3q__wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 30rem) {
  .FilterSectionStyles-module__kY9P3q__filterSection {
    padding: 1.25rem 0;
  }

  .FilterSectionStyles-module__kY9P3q__wrapper {
    gap: .9375rem;
  }

  .FilterSectionStyles-module__kY9P3q__personalBtn {
    width: 100%;
  }
}

/* [project]/src/components/home/experience/ExperienceSection.module.css [app-client] (css) */
.ExperienceSection-module__kZHTeW__section {
  background: var(--color-bg-extended);
  padding: 5.8125rem 0 3.625rem;
}

.ExperienceSection-module__kZHTeW__outerContainer {
  flex-direction: column;
  gap: 1.375rem;
  width: 88.8125rem;
  margin: 0 auto;
  padding: 1.8125rem 1.5rem;
  display: flex;
}

.ExperienceSection-module__kZHTeW__arrows {
  align-items: center;
  gap: .75rem;
  height: 100%;
  display: flex;
}

.ExperienceSection-module__kZHTeW__arrowBtn {
  cursor: pointer;
  aspect-ratio: 1;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0;
  transition: transform .2s, opacity .2s;
  display: flex;
}

.ExperienceSection-module__kZHTeW__arrowBtn svg {
  width: 100%;
  height: 100%;
}

.ExperienceSection-module__kZHTeW__arrowBtn:hover {
  opacity: .9;
  transform: scale(1.1);
}

.ExperienceSection-module__kZHTeW__arrowBtn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.ExperienceSection-module__kZHTeW__arrowBtn:disabled:hover {
  transform: none;
}

@media (max-width: 56.25rem) {
  .ExperienceSection-module__kZHTeW__arrows {
    display: none;
  }
}

.ExperienceSection-module__kZHTeW__cardsViewport {
  height: auto;
  min-height: 31.25rem;
  overflow: hidden;
}

.ExperienceSection-module__kZHTeW__cardsScroller {
  scroll-behavior: smooth;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
  user-select: none;
  align-items: flex-start;
  gap: 4rem;
  height: auto;
  padding: 1.5rem 0;
  display: inline-flex;
  overflow-x: auto;
}

.ExperienceSection-module__kZHTeW__dragging {
  cursor: grabbing;
}

.ExperienceSection-module__kZHTeW__cardLink {
  color: inherit;
  flex-shrink: 0;
  text-decoration: none;
  display: block;
}

.ExperienceSection-module__kZHTeW__cardWrapper {
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  gap: 2.4375rem;
  width: 26.25rem;
  transition: transform .2s;
  display: flex;
}

.ExperienceSection-module__kZHTeW__cardLink:hover .ExperienceSection-module__kZHTeW__cardWrapper {
  transform: translateY(-.25rem);
}

.ExperienceSection-module__kZHTeW__cardImage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.875rem;
  width: 100%;
  height: 14.1875rem;
}

.ExperienceSection-module__kZHTeW__cardTitleWrapper {
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
}

.ExperienceSection-module__kZHTeW__cardTitle {
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-semibold);
  color: var(--color-brand-cyan);
  white-space: pre-wrap;
  width: 100%;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.5;
}

@media (max-width: 90rem) {
  .ExperienceSection-module__kZHTeW__outerContainer {
    width: 100%;
  }
}

@media (max-width: 64rem) {
  .ExperienceSection-module__kZHTeW__cardWrapper {
    width: 23.75rem;
  }

  .ExperienceSection-module__kZHTeW__cardImage {
    height: 12.5rem;
  }

  .ExperienceSection-module__kZHTeW__cardTitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 48rem) {
  .ExperienceSection-module__kZHTeW__section {
    padding: 3.75rem 0 2.5rem;
  }

  .ExperienceSection-module__kZHTeW__outerContainer {
    gap: 1rem;
    padding: 1rem;
  }

  .ExperienceSection-module__kZHTeW__cardsScroller {
    gap: 2rem;
  }

  .ExperienceSection-module__kZHTeW__cardWrapper {
    width: 18.75rem;
  }

  .ExperienceSection-module__kZHTeW__cardImage {
    height: 11.25rem;
  }

  .ExperienceSection-module__kZHTeW__cardTitle {
    font-size: 1.125rem;
  }

  .ExperienceSection-module__kZHTeW__cardTitleWrapper {
    padding: 0 1rem;
  }
}

/* [project]/shared/ui/CruiseCardStyles.module.css [app-client] (css) */
.CruiseCardStyles-module___eb0TW__cardLink {
  color: inherit;
  height: 100%;
  text-decoration: none;
  transition: transform .2s;
  display: block;
}

.CruiseCardStyles-module___eb0TW__cardLink:hover {
  transform: translateY(-.125rem);
}

.CruiseCardStyles-module___eb0TW__card {
  background: var(--color-bg-primary);
  border: none;
  border-radius: 1.875rem;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  overflow: hidden;
}

.CruiseCardStyles-module___eb0TW__photoWrap {
  z-index: 0;
  border-radius: .625rem;
  width: 100%;
  height: 10.75rem;
  margin-bottom: -2.3125rem;
  position: relative;
  overflow: hidden;
}

.CruiseCardStyles-module___eb0TW__photo {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.CruiseCardStyles-module___eb0TW__photoGradient {
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to top, #172c3acc 0%, #0000 50%);
  position: absolute;
  inset: 0;
}

.CruiseCardStyles-module___eb0TW__photoPlaceholder {
  background: var(--color-bg-secondary);
  width: 100%;
  height: 100%;
  color: var(--color-text-secondary);
  font: 500 .875rem / 1.25 var(--font-family-body);
  justify-content: center;
  align-items: center;
  display: flex;
}

.CruiseCardStyles-module___eb0TW__pageControl {
  z-index: 10;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  height: 2.3125rem;
  padding: 1.125rem 3rem 1.125rem 2.125rem;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.CruiseCardStyles-module___eb0TW__pageControl span {
  display: block;
}

.CruiseCardStyles-module___eb0TW__pageInactive {
  background: #c9c9c9;
  border-radius: 50%;
  width: .375rem;
  height: .375rem;
}

.CruiseCardStyles-module___eb0TW__pageActive {
  background: var(--color-bg-primary);
  border-radius: .795438rem;
  width: .8125rem;
  height: .5rem;
}

.CruiseCardStyles-module___eb0TW__body {
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
  padding-top: 2.3125rem;
  display: flex;
}

.CruiseCardStyles-module___eb0TW__title {
  font: 600 1rem / 1.5 var(--font-family-body);
  color: var(--color-brand-cyan);
  text-align: left;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 4.5rem;
  margin: 0;
  padding: 0 .6875rem;
  display: -webkit-box;
  overflow: hidden;
}

.CruiseCardStyles-module___eb0TW__badge {
  background: #d3e3ee;
  border-radius: .625rem;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  margin: 0 .75rem;
  padding: .375rem .875rem;
  display: inline-flex;
}

.CruiseCardStyles-module___eb0TW__badgeText {
  font: 600 .875rem / 1.4 var(--font-family-body);
  color: var(--color-brand-cyan);
}

.CruiseCardStyles-module___eb0TW__activityIcons {
  align-items: center;
  gap: 1.125rem;
  width: 100%;
  padding: 0 .75rem;
  display: flex;
}

.CruiseCardStyles-module___eb0TW__iconWrapper {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.CruiseCardStyles-module___eb0TW__activityIcon {
  -o-object-fit: contain;
  object-fit: contain;
  width: 3rem;
  height: 3rem;
}

.CruiseCardStyles-module___eb0TW__moreIcon {
  -o-object-fit: contain;
  object-fit: contain;
  width: 2.75rem;
  height: 2.75rem;
}

.CruiseCardStyles-module___eb0TW__dateSection {
  justify-content: space-between;
  align-items: center;
  gap: .3125rem;
  width: 100%;
  padding: 0 .75rem;
  display: flex;
}

.CruiseCardStyles-module___eb0TW__dateLeft {
  flex-direction: column;
  flex: 1;
  gap: .5rem;
  min-width: 0;
  display: flex;
}

.CruiseCardStyles-module___eb0TW__departLabel {
  font: 400 .875rem / 1.25 var(--font-family-body);
  color: var(--color-text-muted);
  margin: 0;
}

.CruiseCardStyles-module___eb0TW__datePrimary {
  font: 400 1.125rem / 1.25 var(--font-family-body);
  color: var(--color-brand-cyan);
  margin: 0;
}

.CruiseCardStyles-module___eb0TW__moreDates {
  font: 600 1rem / 1.25 var(--font-family-body);
  color: var(--color-brand-cyan);
  text-underline-offset: .1875rem;
  cursor: pointer;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  display: inline-block;
}

.CruiseCardStyles-module___eb0TW__dateDivider {
  background: #adadad;
  flex-shrink: 0;
  width: .0625rem;
  height: 4.8125rem;
  margin: 0 .3125rem;
}

.CruiseCardStyles-module___eb0TW__dateRight {
  flex-direction: column;
  flex-shrink: 0;
  align-items: flex-start;
  gap: .3125rem;
  display: flex;
}

.CruiseCardStyles-module___eb0TW__durationText, .CruiseCardStyles-module___eb0TW__nightsText {
  font: 600 .875rem / 1.25 var(--font-family-body);
  color: var(--color-brand-cyan);
  text-align: center;
  margin: 0;
}

.CruiseCardStyles-module___eb0TW__warning {
  justify-content: center;
  align-items: center;
  gap: .625rem;
  width: 100%;
  padding: .625rem 2.25rem;
  display: flex;
}

.CruiseCardStyles-module___eb0TW__warningIcon {
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

.CruiseCardStyles-module___eb0TW__warningText {
  font: 600 .875rem / 1.4 var(--font-family-body);
  color: #8f1d14;
  text-align: center;
  flex: 1;
}

.CruiseCardStyles-module___eb0TW__priceButton {
  border: .0625rem solid var(--color-brand-cyan);
  cursor: pointer;
  border-radius: 1.875rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 100%;
  height: 3.3125rem;
  padding: .625rem 1.5rem;
  transition: background-color .2s;
  display: flex;
}

.CruiseCardStyles-module___eb0TW__priceButton:hover {
  background: var(--color-brand-cyan-light, #2f59770d);
}

.CruiseCardStyles-module___eb0TW__priceText {
  font: 500 1.125rem / 1.25rem var(--font-family-body);
  color: var(--color-brand-cyan);
  letter-spacing: .00625rem;
}

.CruiseCardStyles-module___eb0TW__arrowIcon {
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

@media (max-width: 48rem) {
  .CruiseCardStyles-module___eb0TW__card {
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .CruiseCardStyles-module___eb0TW__photoWrap {
    height: 9.375rem;
  }

  .CruiseCardStyles-module___eb0TW__title {
    height: auto;
    min-height: 3rem;
    padding: 0 .5rem;
  }

  .CruiseCardStyles-module___eb0TW__badge {
    margin: 0 .5rem;
  }

  .CruiseCardStyles-module___eb0TW__activityIcons {
    padding: 0 .5rem;
  }

  .CruiseCardStyles-module___eb0TW__iconWrapper {
    width: 2.5rem;
    height: 2.5rem;
  }

  .CruiseCardStyles-module___eb0TW__dateSection {
    padding: 0 .5rem;
  }

  .CruiseCardStyles-module___eb0TW__warning {
    padding: .5rem 1.5rem;
  }

  .CruiseCardStyles-module___eb0TW__priceButton {
    height: 3rem;
    padding: .5rem 1.25rem;
  }
}

@media (max-width: 26.25rem) {
  .CruiseCardStyles-module___eb0TW__card {
    gap: 1rem;
    padding: 1rem;
  }

  .CruiseCardStyles-module___eb0TW__photoWrap {
    height: 8.125rem;
  }

  .CruiseCardStyles-module___eb0TW__title {
    padding: 0 .25rem;
    font-size: .875rem;
  }

  .CruiseCardStyles-module___eb0TW__badge {
    margin: 0 .25rem;
    padding: .25rem .625rem;
  }

  .CruiseCardStyles-module___eb0TW__badgeText {
    font-size: .75rem;
  }

  .CruiseCardStyles-module___eb0TW__activityIcons {
    padding: 0 .25rem;
  }

  .CruiseCardStyles-module___eb0TW__iconWrapper {
    width: 2.25rem;
    height: 2.25rem;
  }

  .CruiseCardStyles-module___eb0TW__dateSection {
    flex-wrap: wrap;
    padding: 0 .25rem;
  }

  .CruiseCardStyles-module___eb0TW__dateDivider {
    display: none;
  }

  .CruiseCardStyles-module___eb0TW__dateRight {
    width: 100%;
    margin-top: .5rem;
  }

  .CruiseCardStyles-module___eb0TW__warning {
    padding: .375rem 1rem;
  }

  .CruiseCardStyles-module___eb0TW__warningText {
    font-size: .75rem;
  }

  .CruiseCardStyles-module___eb0TW__priceButton {
    height: 2.75rem;
    padding: .375rem 1rem;
  }

  .CruiseCardStyles-module___eb0TW__priceText {
    font-size: 1rem;
  }
}

/* [project]/src/components/home/cruises/CruisesSectionStyles.module.css [app-client] (css) */
.CruisesSectionStyles-module__lc7lUW__wrap {
  background: var(--color-bg-extended);
  padding: 1rem 0;
  position: relative;
}

.CruisesSectionStyles-module__lc7lUW__outerContainer {
  flex-direction: column;
  gap: 1.375rem;
  width: 88.8125rem;
  margin: 0 auto;
  padding: 1.8125rem 1.5rem;
  display: flex;
}

.CruisesSectionStyles-module__lc7lUW__cardsViewport {
  margin-top: 1.5rem;
  overflow: hidden;
}

.CruisesSectionStyles-module__lc7lUW__arrows {
  align-items: center;
  gap: .75rem;
  height: 100%;
  display: flex;
}

.CruisesSectionStyles-module__lc7lUW__arrows button {
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0;
  transition: transform .2s, opacity .2s;
  display: flex;
}

.CruisesSectionStyles-module__lc7lUW__arrows button svg {
  width: 100%;
  height: 100%;
}

.CruisesSectionStyles-module__lc7lUW__arrows button:hover {
  opacity: .9;
  transform: scale(1.1);
}

.CruisesSectionStyles-module__lc7lUW__arrows button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.CruisesSectionStyles-module__lc7lUW__arrows button:disabled:hover {
  transform: none;
}

@media (max-width: 56.25rem) {
  .CruisesSectionStyles-module__lc7lUW__arrows {
    display: none;
  }
}

.CruisesSectionStyles-module__lc7lUW__scroller {
  scroll-behavior: smooth;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
  user-select: none;
  align-items: stretch;
  gap: 1.125rem;
  padding: 0;
  display: flex;
  overflow-x: auto;
}

.CruisesSectionStyles-module__lc7lUW__scroller::-webkit-scrollbar {
  display: none;
}

.CruisesSectionStyles-module__lc7lUW__dragging {
  cursor: grabbing;
}

@media (max-width: 90rem) {
  .CruisesSectionStyles-module__lc7lUW__outerContainer {
    width: 100%;
  }
}

@media (max-width: 48rem) {
  .CruisesSectionStyles-module__lc7lUW__headerContent {
    gap: 1.5rem;
  }

  .CruisesSectionStyles-module__lc7lUW__title {
    font-size: 2.625rem;
  }

  .CruisesSectionStyles-module__lc7lUW__bookNowText {
    font-size: 2.25rem;
  }

  .CruisesSectionStyles-module__lc7lUW__cardsViewport {
    height: auto;
  }

  .CruisesSectionStyles-module__lc7lUW__scroller {
    height: auto;
    padding-bottom: .5rem;
  }
}

/* [project]/src/components/home/why-us/WhyUsSectionStyles.module.css [app-client] (css) */
.WhyUsSectionStyles-module__K3keUa__section {
  padding: 11.25rem 0;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
  width: 100%;
  max-width: 86.75rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
}

.WhyUsSectionStyles-module__K3keUa__contentGrid {
  flex-direction: column;
  gap: 1.125rem;
  width: 100%;
  display: flex;
}

.WhyUsSectionStyles-module__K3keUa__row1 {
  grid-template-columns: 25.3125rem 19.9375rem 29.6875rem 6.125rem;
  justify-content: start;
  align-items: start;
  gap: 1.125rem;
  width: 100%;
  display: grid;
}

.WhyUsSectionStyles-module__K3keUa__row2 {
  grid-template-columns: 14.6875rem 32rem 31.9375rem 4rem;
  justify-content: start;
  align-items: start;
  gap: 1.125rem;
  width: 100%;
  display: grid;
}

.WhyUsSectionStyles-module__K3keUa__featureCard {
  box-sizing: border-box;
  border-radius: .625rem;
  flex-shrink: 0;
  transition: transform .2s;
  position: relative;
  overflow: visible;
}

.WhyUsSectionStyles-module__K3keUa__featureCard:hover {
  transform: translateY(-.3125rem);
}

.WhyUsSectionStyles-module__K3keUa__cardText {
  z-index: 1;
  flex-direction: column;
  display: flex;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__cardImage {
  z-index: 0;
  flex-shrink: 0;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__image {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  border-radius: .625rem;
  width: 100%;
  height: 100%;
  display: block;
}

.WhyUsSectionStyles-module__K3keUa__featureTitle {
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-xl);
  line-height: var(--line-height-snug);
  color: var(--color-bg-primary);
  white-space: pre-wrap;
  margin: 0;
}

.WhyUsSectionStyles-module__K3keUa__titleCyan {
  color: var(--color-brand-cyan);
}

.WhyUsSectionStyles-module__K3keUa__price {
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-xl);
  line-height: var(--line-height-snug);
  color: var(--color-bg-primary);
  margin: 0;
}

.WhyUsSectionStyles-module__K3keUa__button {
  cursor: pointer;
  box-sizing: border-box;
  border: .0625rem solid;
  border-radius: 1.875rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  height: 3.3125rem;
  padding: .625rem 1.5rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.WhyUsSectionStyles-module__K3keUa__button:hover {
  opacity: .9;
  transform: scale(1.02);
}

.WhyUsSectionStyles-module__K3keUa__buttonWhite {
  border-color: var(--color-bg-primary);
  background: none;
}

.WhyUsSectionStyles-module__K3keUa__buttonCyan {
  border-color: var(--color-brand-cyan);
  background: none;
}

.WhyUsSectionStyles-module__K3keUa__buttonPerson {
  background: var(--color-brand-cyan);
  border: none;
  gap: .625rem;
  width: 18.6875rem;
  height: 3.1875rem;
  padding: .625rem 1.125rem;
}

.WhyUsSectionStyles-module__K3keUa__buttonText {
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-lg);
  color: var(--color-bg-primary);
  letter-spacing: .00625rem;
  line-height: 1.25rem;
}

.WhyUsSectionStyles-module__K3keUa__buttonTextCyan {
  color: var(--color-brand-cyan);
}

.WhyUsSectionStyles-module__K3keUa__buttonPerson .WhyUsSectionStyles-module__K3keUa__buttonTextCyan {
  color: var(--color-bg-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-snug);
}

.WhyUsSectionStyles-module__K3keUa__buttonIcon, .WhyUsSectionStyles-module__K3keUa__personIcon {
  flex-shrink: 0;
}

.WhyUsSectionStyles-module__K3keUa__card1Wrapper {
  justify-content: flex-end;
  align-items: flex-end;
  width: 25.3125rem;
  padding-right: 7.5rem;
  display: flex;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__card1 {
  background: var(--color-brand-cyan);
  border-radius: .625rem;
  align-items: center;
  gap: .625rem;
  width: 25.3125rem;
  height: 16.0625rem;
  margin-right: -7.5rem;
  padding: 7.8125rem 3.75rem 9.3125rem 2.5rem;
  display: flex;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__card1 .WhyUsSectionStyles-module__K3keUa__cardText {
  gap: 1.125rem;
  width: 13.0625rem;
}

.WhyUsSectionStyles-module__K3keUa__card1 .WhyUsSectionStyles-module__K3keUa__button {
  gap: .5rem;
  width: 12.4375rem;
  height: 3.3125rem;
  padding: .625rem 1.5rem;
}

.WhyUsSectionStyles-module__K3keUa__card1Wrapper .WhyUsSectionStyles-module__K3keUa__cardImage {
  flex-shrink: 0;
  width: 7.5rem;
  height: 8.4375rem;
  margin-right: -7.5rem;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__card2 {
  border: .0625rem solid var(--color-brand-cyan);
  box-sizing: border-box;
  background: none;
  border-radius: .625rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 19.9375rem;
  height: 18.5rem;
  padding: 3.4375rem 3.75rem;
  display: flex;
}

.WhyUsSectionStyles-module__K3keUa__card2 .WhyUsSectionStyles-module__K3keUa__cardText {
  gap: 2.0625rem;
  width: 100%;
}

.WhyUsSectionStyles-module__K3keUa__card2 .WhyUsSectionStyles-module__K3keUa__featureTitle {
  width: min-content;
}

.WhyUsSectionStyles-module__K3keUa__card2 .WhyUsSectionStyles-module__K3keUa__button {
  gap: .5rem;
  width: 12.4375rem;
  height: 3.3125rem;
  padding: .625rem 1.5rem;
}

.WhyUsSectionStyles-module__K3keUa__card3Wrapper {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 29.6875rem;
  padding-bottom: 7.25rem;
  display: flex;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__card3 {
  background: var(--color-brand-cyan);
  border-radius: .625rem;
  flex-direction: column;
  align-items: flex-start;
  width: 29.6875rem;
  height: 16.5625rem;
  margin-bottom: -7.25rem;
  padding: 8.3125rem 4.1875rem 10.75rem 3.75rem;
  display: flex;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__card3 .WhyUsSectionStyles-module__K3keUa__cardText {
  gap: 1.875rem;
  width: 17.6875rem;
}

.WhyUsSectionStyles-module__K3keUa__card3 .WhyUsSectionStyles-module__K3keUa__featureTitle {
  width: 13.5rem;
}

.WhyUsSectionStyles-module__K3keUa__card3 .WhyUsSectionStyles-module__K3keUa__button {
  gap: .5rem;
  width: fit-content;
  height: 3.3125rem;
  padding: .625rem 1.5rem;
}

.WhyUsSectionStyles-module__K3keUa__card3Wrapper .WhyUsSectionStyles-module__K3keUa__cardImage {
  flex-shrink: 0;
  width: 6.4375rem;
  height: 7.25rem;
  margin-bottom: -7.25rem;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__card4Wrapper {
  border: .0625rem solid var(--color-brand-cyan);
  border-radius: .625rem;
  grid-column: 2;
  justify-content: flex-end;
  align-items: flex-end;
  width: 32rem;
  padding-right: 7.5rem;
  display: flex;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__card4 {
  box-sizing: border-box;
  background: none;
  border-radius: .625rem;
  align-items: center;
  gap: .625rem;
  width: 32rem;
  height: 12.3125rem;
  margin-right: -7.5rem;
  padding: 3.75rem 3.75rem 2.9375rem;
  display: flex;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__card4 .WhyUsSectionStyles-module__K3keUa__cardText {
  gap: 1.5rem;
}

.WhyUsSectionStyles-module__K3keUa__card4Wrapper .WhyUsSectionStyles-module__K3keUa__cardImage {
  flex-shrink: 0;
  width: 7.5rem;
  height: 8.4375rem;
  margin-right: -7.5rem;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__card5Wrapper {
  grid-column: 3;
  justify-content: flex-end;
  align-items: flex-end;
  width: 31.9375rem;
  padding-right: 7.5rem;
  display: flex;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__card5 {
  background: var(--color-brand-cyan);
  border-radius: .625rem;
  align-items: center;
  gap: .625rem;
  width: 31.9375rem;
  height: 12.3125rem;
  margin-right: -7.5rem;
  padding: 5.875rem 3.75rem 0;
  display: flex;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__card5 .WhyUsSectionStyles-module__K3keUa__cardText {
  gap: 1.1875rem;
  width: 18.4375rem;
}

.WhyUsSectionStyles-module__K3keUa__card5 .WhyUsSectionStyles-module__K3keUa__button {
  gap: .5rem;
  width: fit-content;
  height: 3.3125rem;
  padding: .625rem 1.5rem;
}

.WhyUsSectionStyles-module__K3keUa__card5Wrapper .WhyUsSectionStyles-module__K3keUa__cardImage {
  flex-shrink: 0;
  width: 7.5rem;
  height: 8.4375rem;
  margin-right: -7.5rem;
  position: relative;
}

.WhyUsSectionStyles-module__K3keUa__featureSmall {
  background: #d3e3ee;
  border-radius: .625rem;
  flex-shrink: 0;
  flex-basis: auto;
  min-width: 0;
  height: 11.9375rem;
}

.WhyUsSectionStyles-module__K3keUa__small1 {
  width: 6.125rem;
}

.WhyUsSectionStyles-module__K3keUa__small2 {
  grid-column: 1;
  width: 14.6875rem;
}

.WhyUsSectionStyles-module__K3keUa__small3 {
  grid-column: 4;
  width: 4rem;
}

@media (max-width: 87.5rem) and (min-width: 48.0625rem) {
  .WhyUsSectionStyles-module__K3keUa__wrapper {
    max-width: 95%;
  }

  .WhyUsSectionStyles-module__K3keUa__contentGrid {
    justify-content: center;
  }

  .WhyUsSectionStyles-module__K3keUa__card1Wrapper, .WhyUsSectionStyles-module__K3keUa__card2, .WhyUsSectionStyles-module__K3keUa__card3Wrapper, .WhyUsSectionStyles-module__K3keUa__card4Wrapper, .WhyUsSectionStyles-module__K3keUa__card5Wrapper {
    width: calc(50% - .5625rem);
    max-width: 29.6875rem;
  }

  .WhyUsSectionStyles-module__K3keUa__card1, .WhyUsSectionStyles-module__K3keUa__card3, .WhyUsSectionStyles-module__K3keUa__card4, .WhyUsSectionStyles-module__K3keUa__card5 {
    width: 100%;
  }

  .WhyUsSectionStyles-module__K3keUa__card1 .WhyUsSectionStyles-module__K3keUa__cardImage, .WhyUsSectionStyles-module__K3keUa__card3 .WhyUsSectionStyles-module__K3keUa__cardImage, .WhyUsSectionStyles-module__K3keUa__card4 .WhyUsSectionStyles-module__K3keUa__cardImage, .WhyUsSectionStyles-module__K3keUa__card5 .WhyUsSectionStyles-module__K3keUa__cardImage {
    margin-top: 1.25rem;
    margin-bottom: 0;
    margin-right: 0;
    position: relative;
  }

  .WhyUsSectionStyles-module__K3keUa__card1Wrapper, .WhyUsSectionStyles-module__K3keUa__card3Wrapper, .WhyUsSectionStyles-module__K3keUa__card4Wrapper, .WhyUsSectionStyles-module__K3keUa__card5Wrapper {
    flex-direction: column;
    padding-bottom: 0;
    padding-right: 0;
  }

  .WhyUsSectionStyles-module__K3keUa__card1, .WhyUsSectionStyles-module__K3keUa__card3, .WhyUsSectionStyles-module__K3keUa__card4, .WhyUsSectionStyles-module__K3keUa__card5 {
    margin-bottom: 0;
    margin-right: 0;
  }
}

@media (max-width: 48rem) {
  .WhyUsSectionStyles-module__K3keUa__section {
    padding: 3.75rem 0;
  }

  .WhyUsSectionStyles-module__K3keUa__wrapper {
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .WhyUsSectionStyles-module__K3keUa__contentGrid {
    flex-direction: column;
    gap: 1rem;
  }

  .WhyUsSectionStyles-module__K3keUa__featureSmall {
    display: none;
  }

  .WhyUsSectionStyles-module__K3keUa__card1Wrapper, .WhyUsSectionStyles-module__K3keUa__card2, .WhyUsSectionStyles-module__K3keUa__card3Wrapper, .WhyUsSectionStyles-module__K3keUa__card4Wrapper, .WhyUsSectionStyles-module__K3keUa__card5Wrapper {
    width: 100% !important;
    padding-bottom: 0 !important;
    padding-right: 0 !important;
  }

  .WhyUsSectionStyles-module__K3keUa__card1, .WhyUsSectionStyles-module__K3keUa__card2, .WhyUsSectionStyles-module__K3keUa__card3, .WhyUsSectionStyles-module__K3keUa__card4, .WhyUsSectionStyles-module__K3keUa__card5 {
    flex-direction: column;
    min-height: 12.5rem;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    padding: 1.5rem !important;
  }

  .WhyUsSectionStyles-module__K3keUa__card1 .WhyUsSectionStyles-module__K3keUa__cardText, .WhyUsSectionStyles-module__K3keUa__card2 .WhyUsSectionStyles-module__K3keUa__cardText, .WhyUsSectionStyles-module__K3keUa__card3 .WhyUsSectionStyles-module__K3keUa__cardText, .WhyUsSectionStyles-module__K3keUa__card4 .WhyUsSectionStyles-module__K3keUa__cardText, .WhyUsSectionStyles-module__K3keUa__card5 .WhyUsSectionStyles-module__K3keUa__cardText {
    width: 100%;
    max-width: 100%;
  }

  .WhyUsSectionStyles-module__K3keUa__card1 .WhyUsSectionStyles-module__K3keUa__cardImage, .WhyUsSectionStyles-module__K3keUa__card3 .WhyUsSectionStyles-module__K3keUa__cardImage, .WhyUsSectionStyles-module__K3keUa__card4 .WhyUsSectionStyles-module__K3keUa__cardImage, .WhyUsSectionStyles-module__K3keUa__card5 .WhyUsSectionStyles-module__K3keUa__cardImage {
    width: 100%;
    height: auto;
    max-height: 12.5rem;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    position: relative;
  }

  .WhyUsSectionStyles-module__K3keUa__featureTitle, .WhyUsSectionStyles-module__K3keUa__price {
    font-size: 1.125rem;
  }

  .WhyUsSectionStyles-module__K3keUa__button, .WhyUsSectionStyles-module__K3keUa__buttonPerson {
    width: 100%;
    max-width: 18.75rem;
  }

  .WhyUsSectionStyles-module__K3keUa__buttonText {
    font-size: 1rem;
  }
}

/* [project]/src/components/home/reviews/ReviewsSectionStyles.module.css [app-client] (css) */
.ReviewsSectionStyles-module__46QGFa__section {
  padding: 11.25rem 0;
  position: relative;
}

.ReviewsSectionStyles-module__46QGFa__reviewsContainer {
  flex-direction: column;
  gap: 3rem;
  width: 86.75rem;
  margin: 0 auto;
  display: flex;
}

.ReviewsSectionStyles-module__46QGFa__sliderArrows {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.ReviewsSectionStyles-module__46QGFa__arrowButton {
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0;
  transition: transform .2s;
  display: flex;
}

.ReviewsSectionStyles-module__46QGFa__arrowButton:hover {
  transform: scale(1.1);
}

.ReviewsSectionStyles-module__46QGFa__arrowButton svg {
  width: 100%;
  height: 100%;
}

.ReviewsSectionStyles-module__46QGFa__cards {
  scroll-behavior: smooth;
  flex-direction: row;
  align-self: stretch;
  gap: 1.25rem;
  display: flex;
  overflow-x: auto;
}

.ReviewsSectionStyles-module__46QGFa__cards::-webkit-scrollbar {
  display: none;
}

.ReviewsSectionStyles-module__46QGFa__card {
  background: var(--color-brown-rgba);
  border: .125rem solid var(--color-border-primary);
  width: 31.8125rem;
  height: 37.5rem;
  box-shadow: 0 .625rem 1.875rem var(--color-shadow-light);
  border-radius: .625rem;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  padding: 3.375rem;
  transition: transform .2s;
  display: flex;
}

.ReviewsSectionStyles-module__46QGFa__card:hover {
  transform: translateY(-.3125rem);
}

.ReviewsSectionStyles-module__46QGFa__cardContent {
  flex-direction: column;
  align-self: stretch;
  gap: 2.125rem;
  display: flex;
}

.ReviewsSectionStyles-module__46QGFa__headerContainer {
  flex-direction: column;
  align-self: stretch;
  gap: 1.3125rem;
  display: flex;
}

.ReviewsSectionStyles-module__46QGFa__date {
  font: 400 1.125rem / 1.25 var(--font-open-sans);
  color: var(--color-text-muted);
  text-align: right;
  margin: 0;
}

.ReviewsSectionStyles-module__46QGFa__name {
  font: 400 1.125rem / 1.3 var(--font-open-sans);
  color: var(--color-text-black);
  text-align: left;
  margin: 0;
}

.ReviewsSectionStyles-module__46QGFa__textContainer {
  flex-direction: column;
  align-self: stretch;
  gap: 1.3125rem;
  display: flex;
}

.ReviewsSectionStyles-module__46QGFa__reviewTitle {
  font: 700 1.125rem / 1.25 var(--font-open-sans);
  color: var(--color-text-black);
  text-align: left;
  margin: 0;
}

.ReviewsSectionStyles-module__46QGFa__description {
  font: 400 1.125rem / 1.3 var(--font-open-sans);
  color: var(--color-text-black);
  text-align: left;
  margin: 0;
}

.ReviewsSectionStyles-module__46QGFa__buttonsContainer {
  flex-direction: row;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.ReviewsSectionStyles-module__46QGFa__primaryButton {
  background: var(--color-brand-primary);
  width: 11.625rem;
  height: 3.125rem;
  color: var(--color-bg-primary);
  font: 500 .875rem / 1.43 var(--font-open-sans);
  letter-spacing: .007em;
  cursor: pointer;
  border: none;
  border-radius: .625rem;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.5rem;
  transition: background .2s;
  display: flex;
}

.ReviewsSectionStyles-module__46QGFa__primaryButton:hover {
  background: var(--color-brand-dark);
}

.ReviewsSectionStyles-module__46QGFa__outlinedButton {
  background: var(--color-brand-secondary-rgba-medium);
  border: .0625rem solid var(--color-text-primary);
  width: 12.625rem;
  height: 3.125rem;
  color: var(--color-bg-dark);
  font: 500 .875rem / 1.43 var(--font-open-sans);
  letter-spacing: .007em;
  cursor: pointer;
  border-radius: .625rem;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.5rem;
  transition: all .2s;
  display: flex;
}

.ReviewsSectionStyles-module__46QGFa__outlinedButton:hover {
  background: var(--color-brand-secondary-rgba-medium);
}

@media (max-width: 48rem) {
  .ReviewsSectionStyles-module__46QGFa__section {
    padding: 3.75rem 0;
  }

  .ReviewsSectionStyles-module__46QGFa__reviewsContainer {
    gap: 1.5rem;
    width: 100%;
    padding: 0 1.5rem;
  }

  .ReviewsSectionStyles-module__46QGFa__sliderArrows {
    display: none;
  }

  .ReviewsSectionStyles-module__46QGFa__cards {
    gap: 1rem;
    padding: 0 0 1.25rem;
  }

  .ReviewsSectionStyles-module__46QGFa__card {
    gap: 1.5rem;
    width: 18.75rem;
    padding: 1.5rem;
  }

  .ReviewsSectionStyles-module__46QGFa__cardContent {
    gap: 1.25rem;
  }

  .ReviewsSectionStyles-module__46QGFa__headerContainer, .ReviewsSectionStyles-module__46QGFa__textContainer {
    gap: .75rem;
  }

  .ReviewsSectionStyles-module__46QGFa__name {
    font-size: 1.125rem;
  }

  .ReviewsSectionStyles-module__46QGFa__reviewTitle {
    font-size: 1rem;
  }

  .ReviewsSectionStyles-module__46QGFa__description {
    font-size: .875rem;
  }

  .ReviewsSectionStyles-module__46QGFa__buttonsContainer {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }

  .ReviewsSectionStyles-module__46QGFa__primaryButton, .ReviewsSectionStyles-module__46QGFa__outlinedButton {
    justify-content: center;
    width: auto;
    min-width: 7.5rem;
    padding: .625rem 1rem;
    font-size: .875rem;
  }
}

.ReviewsSectionStyles-module__46QGFa__loading {
  pointer-events: none;
  opacity: .7;
}

.ReviewsSectionStyles-module__46QGFa__spinner {
  border: .125rem solid #0000;
  border-top-color: currentColor;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  animation: 1s linear infinite ReviewsSectionStyles-module__46QGFa__spin;
}

@keyframes ReviewsSectionStyles-module__46QGFa__spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 87.5rem) and (min-width: 48.0625rem) {
  .ReviewsSectionStyles-module__46QGFa__reviewsContainer {
    width: 95%;
    max-width: 86.75rem;
  }
}

/* [project]/src/components/home/themes/ThemesSectionStyles.module.css [app-client] (css) */
.ThemesSectionStyles-module__BeVxqa__section {
  background: var(--color-bg-light);
  padding: 3.75rem 0;
  position: relative;
  overflow: hidden;
}

.ThemesSectionStyles-module__BeVxqa__section:before {
  content: "";
  background: #fff;
  border-radius: 0 0 50% 50%;
  height: 6.25rem;
  position: absolute;
  top: -3.125rem;
  left: 0;
  right: 0;
}

.ThemesSectionStyles-module__BeVxqa__header {
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
  display: flex;
}

.ThemesSectionStyles-module__BeVxqa__titleWrapper {
  flex-direction: column;
  align-items: center;
  gap: 2.8125rem;
  display: flex;
}

.ThemesSectionStyles-module__BeVxqa__title {
  font: 400 2.375rem / 1.25 var(--font-pt-serif);
  color: var(--color-primary);
  text-align: center;
  margin: 0;
}

.ThemesSectionStyles-module__BeVxqa__controls {
  align-self: flex-end;
  gap: 1.25rem;
  margin-right: 1.25rem;
  display: flex;
}

.ThemesSectionStyles-module__BeVxqa__arrow {
  cursor: pointer;
  background: none;
  border: none;
  width: 2.8125rem;
  height: 2.8125rem;
  transition: transform .2s;
}

.ThemesSectionStyles-module__BeVxqa__arrow:hover {
  transform: scale(1.1);
}

.ThemesSectionStyles-module__BeVxqa__scroller {
  scroll-behavior: smooth;
  gap: 1.25rem;
  height: 31.25rem;
  margin: 0 -1.25rem;
  padding: 0 1.25rem;
  display: flex;
  overflow-x: auto;
}

.ThemesSectionStyles-module__BeVxqa__scroller::-webkit-scrollbar {
  display: none;
}

.ThemesSectionStyles-module__BeVxqa__card {
  width: 28.25rem;
  height: 31.25rem;
  box-shadow: 0 .625rem 1.875rem var(--color-shadow-medium);
  border-radius: .625rem;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1.375rem;
  padding: 2.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.ThemesSectionStyles-module__BeVxqa__cardBg {
  z-index: 1;
  background-position: center;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.ThemesSectionStyles-module__BeVxqa__cardBg:before {
  content: "";
  background: linear-gradient(to top, var(--color-shadow-dark) 0%, var(--color-shadow-medium) 50%, var(--color-shadow-light) 100%);
  position: absolute;
  inset: 0;
}

.ThemesSectionStyles-module__BeVxqa__cardContent {
  z-index: 2;
  flex-direction: column;
  align-self: stretch;
  gap: 1.75rem;
  display: flex;
  position: relative;
}

.ThemesSectionStyles-module__BeVxqa__cardTitle {
  font: 700 1.5rem / 1.3 var(--font-open-sans);
  color: var(--color-bg-primary);
  text-align: left;
  width: 100%;
  max-width: 23rem;
  text-shadow: 0 .0625rem .1875rem var(--color-shadow-dark);
  margin: 0;
}

@media (max-width: 48rem) {
  .ThemesSectionStyles-module__BeVxqa__section {
    padding: 2.5rem 0;
  }

  .ThemesSectionStyles-module__BeVxqa__title {
    font-size: 1.75rem;
  }

  .ThemesSectionStyles-module__BeVxqa__card {
    width: 18.75rem;
    height: 25rem;
  }

  .ThemesSectionStyles-module__BeVxqa__cardTitle {
    font-size: 1.25rem;
  }
}

/* [project]/widgets/contact-form/contact/ContactFormStyles.module.css [app-client] (css) */
.ContactFormStyles-module__JA1bZa__section {
  padding: 0;
  background: #172c3a !important;
}

.ContactFormStyles-module__JA1bZa__wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  min-height: 100vh;
  padding: 5.625rem 1.5rem;
  display: flex;
}

.ContactFormStyles-module__JA1bZa__headerContainer {
  width: 100%;
  max-width: 87rem;
}

.ContactFormStyles-module__JA1bZa__headerWithLightBorders {
  border-top-color: #99bdd6 !important;
  border-bottom-color: #99bdd6 !important;
}

.ContactFormStyles-module__JA1bZa__container {
  background: #fff;
  border: .1875rem solid #e6e6f9;
  border-radius: .625rem;
  justify-content: stretch;
  align-items: stretch;
  gap: 3.625rem;
  width: 86.375rem;
  height: 40.875rem;
  padding: 4rem;
  display: flex;
  position: relative;
  box-shadow: 0 .25rem 1.25rem #0000001a;
}

.ContactFormStyles-module__JA1bZa__imageAndQuoteContainer {
  flex-direction: column;
  flex: 1;
  gap: 3.8125rem;
  padding: 1.5rem;
  display: flex;
}

.ContactFormStyles-module__JA1bZa__imageContainer {
  background: #f5ece5;
  border: .5625rem solid #fff;
  border-radius: .625rem;
  width: 100%;
  height: 20.7738rem;
  position: relative;
  overflow: hidden;
}

.ContactFormStyles-module__JA1bZa__backgroundImage {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: .625rem;
  width: 100%;
  height: 100%;
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.ContactFormStyles-module__JA1bZa__imageOverlay {
  pointer-events: none;
  background: linear-gradient(0deg, #fff0 48%, #e6e6f9 67%);
  border-radius: .625rem;
  position: absolute;
  inset: 0;
}

.ContactFormStyles-module__JA1bZa__quoteContainer {
  flex: 1;
  justify-content: stretch;
  align-items: stretch;
  gap: .625rem;
  padding: 0 1.6875rem;
  display: flex;
}

.ContactFormStyles-module__JA1bZa__quote {
  text-align: center;
  color: #0d0d0d;
  align-self: stretch;
  width: 100%;
  margin: 0;
  font-family: Open Sans, sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.25em;
}

.ContactFormStyles-module__JA1bZa__formContainer {
  flex-direction: column;
  flex: 1;
  gap: 3.625rem;
  padding: 1.5rem;
  display: flex;
  position: relative;
}

.ContactFormStyles-module__JA1bZa__formFieldsContainer {
  flex-direction: column;
  flex: 1;
  gap: 3.3125rem;
  display: flex;
}

.ContactFormStyles-module__JA1bZa__inputGroup {
  flex-direction: column;
  gap: 1.375rem;
  width: 100%;
  display: flex;
}

.ContactFormStyles-module__JA1bZa__inputLabel {
  color: #0d0d0d;
  margin: 0;
  font-family: Open Sans, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.25em;
}

.ContactFormStyles-module__JA1bZa__inputFrame {
  flex-direction: column;
  gap: .625rem;
  width: 100%;
  height: 4.8125rem;
  display: flex;
}

.ContactFormStyles-module__JA1bZa__inputContainer {
  background: #f9f6f1;
  border-bottom: .0625rem dashed #574a29;
  flex-direction: column;
  width: 100%;
  transition: border-bottom-color .2s;
  display: flex;
}

.ContactFormStyles-module__JA1bZa__inputFieldContainer {
  box-sizing: border-box;
  background: #f9f6f1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .625rem .75rem .625rem 1rem;
  display: flex;
}

.ContactFormStyles-module__JA1bZa__inputField {
  color: #0d0d0d;
  box-sizing: border-box;
  background: none;
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Open Sans, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25em;
  display: block;
}

.ContactFormStyles-module__JA1bZa__phoneInput {
  font-weight: 500;
}

.ContactFormStyles-module__JA1bZa__inputField::placeholder {
  color: #c2ae7c;
  font-family: Open Sans, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25em;
}

.ContactFormStyles-module__JA1bZa__inputField:-webkit-autofill {
  -webkit-text-fill-color: #0d0d0d !important;
  background: none !important;
  -webkit-box-shadow: inset 0 0 0 1.875rem #f9f6f1 !important;
}

.ContactFormStyles-module__JA1bZa__inputField:-webkit-autofill:hover {
  -webkit-text-fill-color: #0d0d0d !important;
  background: none !important;
  -webkit-box-shadow: inset 0 0 0 1.875rem #f9f6f1 !important;
}

.ContactFormStyles-module__JA1bZa__inputField:-webkit-autofill:focus {
  -webkit-text-fill-color: #0d0d0d !important;
  background: none !important;
  -webkit-box-shadow: inset 0 0 0 1.875rem #f9f6f1 !important;
}

.ContactFormStyles-module__JA1bZa__inputField:-webkit-autofill:active {
  -webkit-text-fill-color: #0d0d0d !important;
  background: none !important;
  -webkit-box-shadow: inset 0 0 0 1.875rem #f9f6f1 !important;
}

.ContactFormStyles-module__JA1bZa__inputHint {
  align-items: center;
  gap: .375rem;
  display: flex;
}

.ContactFormStyles-module__JA1bZa__hintText {
  color: #574a29;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25em;
}

.ContactFormStyles-module__JA1bZa__logo {
  z-index: 10;
  position: absolute;
  top: -7.5625rem;
  left: 23rem;
}

.ContactFormStyles-module__JA1bZa__sealCircle {
  background: #e6e6f9;
  border: .125rem solid #1d1d7c;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 11.4375rem;
  height: 12.0625rem;
  transition: transform .3s;
  display: flex;
}

.ContactFormStyles-module__JA1bZa__sealImage {
  width: 11.4375rem;
  height: 12.0625rem;
  transition: transform .3s;
}

.ContactFormStyles-module__JA1bZa__sealImage:hover {
  transform: rotate(5deg)scale(1.05);
}

.ContactFormStyles-module__JA1bZa__submitButton {
  cursor: pointer;
  background: #1d1d7c;
  border: none;
  border-radius: .625rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 15.875rem;
  height: 3.5625rem;
  padding: .625rem 1.5rem;
  font-family: inherit;
  transition: all .2s;
  display: flex;
}

.ContactFormStyles-module__JA1bZa__submitButton:hover:not(:disabled) {
  background: #2a2a8c;
  transform: translateY(-.0625rem);
  box-shadow: 0 .25rem .75rem #1d1d7c4d;
}

.ContactFormStyles-module__JA1bZa__submitButton:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 .125rem .5rem #1d1d7c4d;
}

.ContactFormStyles-module__JA1bZa__submitButton:disabled {
  cursor: not-allowed;
  box-shadow: none;
  background: #99c;
  transform: none;
}

.ContactFormStyles-module__JA1bZa__submitButton.ContactFormStyles-module__JA1bZa__submitting {
  background: #2a2a8c;
}

.ContactFormStyles-module__JA1bZa__buttonText {
  letter-spacing: .00625rem;
  color: #fff;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25em;
}

.ContactFormStyles-module__JA1bZa__buttonIcon {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.ContactFormStyles-module__JA1bZa__buttonIcon svg {
  width: .833125rem;
  height: .833125rem;
}

@media (max-width: 90rem) {
  .ContactFormStyles-module__JA1bZa__wrapper {
    gap: 2.5rem;
    padding: 3.75rem 1.5rem;
  }

  .ContactFormStyles-module__JA1bZa__container {
    width: 100%;
    max-width: 86.375rem;
    height: auto;
    min-height: 40.875rem;
  }
}

@media (max-width: 64rem) {
  .ContactFormStyles-module__JA1bZa__wrapper {
    gap: 2rem;
    padding: 2.5rem 1.25rem;
  }

  .ContactFormStyles-module__JA1bZa__container {
    gap: 2.5rem;
    padding: 3rem;
  }

  .ContactFormStyles-module__JA1bZa__logo {
    top: -6.25rem;
    left: 12.5rem;
    transform: scale(.8);
  }
}

@media (max-width: 48rem) {
  .ContactFormStyles-module__JA1bZa__wrapper {
    gap: 1.5rem;
    min-height: auto;
    padding: 1.25rem;
  }

  .ContactFormStyles-module__JA1bZa__container {
    flex-direction: column;
    gap: 1.875rem;
    width: 100%;
    height: auto;
    padding: 2rem;
  }

  .ContactFormStyles-module__JA1bZa__imageAndQuoteContainer, .ContactFormStyles-module__JA1bZa__formContainer {
    flex: none;
    width: 100%;
  }

  .ContactFormStyles-module__JA1bZa__imageContainer {
    height: 15.625rem;
  }

  .ContactFormStyles-module__JA1bZa__quote {
    font-size: 1.25rem;
  }

  .ContactFormStyles-module__JA1bZa__formFieldsContainer {
    gap: 2.5rem;
  }

  .ContactFormStyles-module__JA1bZa__inputGroup {
    gap: 1.125rem;
  }

  .ContactFormStyles-module__JA1bZa__logo {
    align-self: center;
    margin: 1.25rem 0;
    position: static;
    transform: scale(.7);
  }

  .ContactFormStyles-module__JA1bZa__submitButton {
    width: 100%;
    height: 3.75rem;
  }

  .ContactFormStyles-module__JA1bZa__buttonText {
    font-size: 1.125rem;
  }
}

@media (max-width: 30rem) {
  .ContactFormStyles-module__JA1bZa__wrapper {
    padding: 1rem;
  }

  .ContactFormStyles-module__JA1bZa__container {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .ContactFormStyles-module__JA1bZa__imageContainer {
    height: 12.5rem;
  }

  .ContactFormStyles-module__JA1bZa__quote {
    padding: 0 1rem;
    font-size: 1.125rem;
  }

  .ContactFormStyles-module__JA1bZa__inputLabel, .ContactFormStyles-module__JA1bZa__inputField {
    font-size: 1rem;
  }

  .ContactFormStyles-module__JA1bZa__hintText {
    font-size: .875rem;
  }

  .ContactFormStyles-module__JA1bZa__logo {
    transform: scale(.6);
  }
}

.ContactFormStyles-module__JA1bZa__inputField:focus {
  outline: none;
}

.ContactFormStyles-module__JA1bZa__inputContainer:focus-within {
  border-bottom: .125rem solid #1d1d7c;
}

.ContactFormStyles-module__JA1bZa__inputContainer:hover {
  border-bottom-color: #1d1d7c;
}

.ContactFormStyles-module__JA1bZa__inputContainer.ContactFormStyles-module__JA1bZa__error {
  border-bottom: .125rem solid red;
}

.ContactFormStyles-module__JA1bZa__inputContainer.ContactFormStyles-module__JA1bZa__valid {
  border-bottom: .125rem solid #4caf50;
}

.ContactFormStyles-module__JA1bZa__submitButton:disabled {
  cursor: not-allowed;
  box-shadow: none;
  opacity: .6;
  background: #99c;
  transform: none;
}

.ContactFormStyles-module__JA1bZa__submitButton:disabled:hover {
  box-shadow: none;
  background: #99c;
  transform: none;
}

@keyframes ContactFormStyles-module__JA1bZa__pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .7;
  }
}

.ContactFormStyles-module__JA1bZa__submitButton.ContactFormStyles-module__JA1bZa__submitting .ContactFormStyles-module__JA1bZa__buttonText {
  animation: 1.5s ease-in-out infinite ContactFormStyles-module__JA1bZa__pulse;
}

.ContactFormStyles-module__JA1bZa__backgroundImage {
  transition: opacity .3s;
}

.ContactFormStyles-module__JA1bZa__imageContainer {
  overflow: hidden;
}

/* [project]/widgets/contact-form/contact/ContactModalStyles.module.css [app-client] (css) */
.ContactModalStyles-module__D5EX1G__overlay {
  z-index: 1000;
  -webkit-backdrop-filter: blur(.25rem);
  backdrop-filter: blur(.25rem);
  background: #00000080;
  justify-content: center;
  align-items: center;
  animation: .3s ease-out ContactModalStyles-module__D5EX1G__fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.ContactModalStyles-module__D5EX1G__modal {
  background: #fff;
  border: .1875rem solid #e6e6f9;
  border-radius: .625rem;
  width: 90%;
  max-width: 30rem;
  max-height: 90vh;
  animation: .3s ease-out ContactModalStyles-module__D5EX1G__slideIn;
  overflow: hidden;
  box-shadow: 0 .5rem 2rem #00000026;
}

.ContactModalStyles-module__D5EX1G__content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 2rem;
  display: flex;
}

.ContactModalStyles-module__D5EX1G__iconContainer {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  margin-bottom: .5rem;
  display: flex;
}

.ContactModalStyles-module__D5EX1G__icon {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: all .3s;
  display: flex;
}

.ContactModalStyles-module__D5EX1G__icon.ContactModalStyles-module__D5EX1G__success {
  color: #fff;
  background: linear-gradient(135deg, #4caf50, #45a049);
  box-shadow: 0 .25rem 1rem #4caf504d;
}

.ContactModalStyles-module__D5EX1G__icon.ContactModalStyles-module__D5EX1G__error {
  color: #fff;
  background: linear-gradient(135deg, #f44336, #d32f2f);
  box-shadow: 0 .25rem 1rem #f443364d;
}

.ContactModalStyles-module__D5EX1G__title {
  color: #0d0d0d;
  margin: 0;
  font-family: Open Sans, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25em;
}

.ContactModalStyles-module__D5EX1G__message {
  color: #574a29;
  max-width: 25rem;
  margin: 0;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5em;
}

.ContactModalStyles-module__D5EX1G__closeButton {
  cursor: pointer;
  color: #fff;
  background: #1d1d7c;
  border: none;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  padding: .75rem 2rem;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25em;
  transition: all .2s;
  display: flex;
}

.ContactModalStyles-module__D5EX1G__closeButton:hover {
  background: #2a2a8c;
  transform: translateY(-.0625rem);
  box-shadow: 0 .25rem .75rem #1d1d7c4d;
}

.ContactModalStyles-module__D5EX1G__closeButton:active {
  transform: translateY(0);
  box-shadow: 0 .125rem .5rem #1d1d7c4d;
}

.ContactModalStyles-module__D5EX1G__closeButton:focus {
  outline-offset: .125rem;
  outline: .125rem solid #1d1d7c;
}

@keyframes ContactModalStyles-module__D5EX1G__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes ContactModalStyles-module__D5EX1G__slideIn {
  from {
    opacity: 0;
    transform: translateY(-1.25rem)scale(.95);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

@media (max-width: 48rem) {
  .ContactModalStyles-module__D5EX1G__modal {
    width: 95%;
    margin: 1.25rem;
  }

  .ContactModalStyles-module__D5EX1G__content {
    gap: 1.25rem;
    padding: 2rem 1.5rem;
  }

  .ContactModalStyles-module__D5EX1G__title {
    font-size: 1.25rem;
  }

  .ContactModalStyles-module__D5EX1G__message {
    font-size: .875rem;
  }

  .ContactModalStyles-module__D5EX1G__closeButton {
    padding: .625rem 1.5rem;
    font-size: .875rem;
  }
}

@media (max-width: 30rem) {
  .ContactModalStyles-module__D5EX1G__content {
    gap: 1rem;
    padding: 1.5rem 1.25rem;
  }

  .ContactModalStyles-module__D5EX1G__iconContainer {
    width: 4rem;
    height: 4rem;
  }

  .ContactModalStyles-module__D5EX1G__title {
    font-size: 1.125rem;
  }

  .ContactModalStyles-module__D5EX1G__message {
    font-size: .8125rem;
  }
}

/*# sourceMappingURL=_74986057._.css.map*/