/* stylelint-disable order/order */
/*
* Converts an pixel value into a rem value.
*
* @param string  $values    the pixel value(s) as a number. Can convert multiple values if values separated by a space.
* @param integer $base      the base pixel value.
*
* @return string   a space-separated string of rem values.
*/
/*
* This is an abbreviated wrapper for the responsive-values function.
*/
/*
* Creates a CSS clamp value that sizes between breakpoints.
*
* @param integer $min                    the minimum pixel value.
* @param integer $max                    the maximum pixel value.
* @param string  $smallest-breakpoint    the name of the smallest breakpoint from the $grid-breakpoints variable.
* @param string  $largest-breakpoint     the name of the largest breakpoint from the $grid-breakpoints variable.
* @param string  $screen                 whether to use a horizontal (width) breakpoint or a vertical (height) breakpoint.
*
* @return string   a CSS clamp property value.
*/
/*
* Outputs a font family value from the $fonts variable.
*
* @param string  $key   the font key.
*
* @return string   a font family value.
*/
/*
* Outputs a color value from the $paints or $additional-paints variables.
*
* @param string  $key   the color name.
*
* @return string   a color value.
*/
/*
* Outputs an effect value from the $effects variable.
*
* @param string  $key   the effect name.
*
* @return string   an effect value.
*/
/* stylelint-enable order/order */
/*
* Used to target heading selectors.
*
* @param integer  $start               the first heading element to target. 1 through 6.
* @param integer  $end                 the last heading element to target. 1 through 6.
* @param string   $beforeCombinator    the CSS combinator to include before the heading classes.
* @param string   $afterCombinator     the CSS combinator to include after the heading classes.
* @param boolean  $includeFontClasses  whether or not to include the .has-t-1... classes or just output the standard heading elements.
*
* @return string  The included CSS wrapped with selectors for the specified headings.
*/
/*
* Used to add properties to a for a pseudo element to make an icon based on the iconfont set.
*
* @param string   $content     the content for the icon. Usually uses one of the iconfont variables.
* @param string   $font-size   the font size with unit.
*
* @return string  The CSS properties for the icon.
*/
/*
* Generates CSS to fit an element into the 12-column grid. Only works when used on an element where the parent element is the width of the entire page.
*
* @return string  CSS properties to set the width of the element to the specified column sizes.
*/
/*
* Used to target elements with a background color that has a text color different from the standard color.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/* Quick Positioning */
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma which task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/*
* This array is used to specify the fonts used on the project with the following parameters:
	base - the name for use in the font() mixin.
		css - the output CSS value.
		figma-name: - the 'font-family' name ued in the _figma-font-variable.scss file.
	)
*/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task which creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/* If additional colors need to be added to the _figma-color-variables.scss, they can be added to this variable: */
/* This variable controls the background colors generated in the ACF background_color field and the background color classes - bg-white, bg-gray-92, etc: */
/* If a background color uses a different font color than the default color, use these variables to specify the alternate colors */
/* Backgrounds specified in this variable will use the alternative text colors: */
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/****************
 * Block Spacing
 *
 * These variables are based on the "Spacing" rules found in the "Foundations" section in Figma. These control the default spacing between blocks of different colors.
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
.guide-hero {
  background-color: #041a2f;
  position: relative;
}
.guide-hero::before {
  content: "";
  background-image: url(../../images/bg-curls.svg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.guide-hero * {
  color: #fff;
}
.guide-hero__titles {
  padding: clamp(3.5rem, 0.6428571429rem + 5.9523809524vw, 6rem) 0 clamp(2.5625rem, 6.7142857143rem + -4.6130952381vw, 4.5rem) 0;
}
@media (min-width: 48rem) {
  .guide-hero__titles {
    padding-left: 34%;
  }
}
.guide-hero__titles h1 {
  margin-top: clamp(0.5rem, -0.0714285714rem + 1.1904761905vw, 1rem) !important;
}
@media (min-width: 48rem) {
  .guide-hero__titles span {
    display: block;
  }
}

.guide-hero-content {
  background-color: #f7f7f7;
  padding-bottom: clamp(1rem, -2.4285714286rem + 7.1428571429vw, 4rem);
}
.guide-hero-content__img {
  position: relative;
  height: clamp(23.3125rem, 18.5267857143rem + 9.9702380952vw, 27.5rem);
  width: 100%;
  margin-top: -3rem;
}
@media (min-width: 48rem) {
  .guide-hero-content__img {
    width: 25%;
    margin-top: -13.0625rem;
  }
}
@media (max-width: 47.98rem) {
  .guide-hero-content__img .main-image-bg img {
    object-fit: contain;
  }
}
.guide-hero-content__text {
  margin-top: clamp(1rem, -0.7142857143rem + 3.5714285714vw, 2.5rem);
}
@media (min-width: 48rem) {
  .guide-hero-content__text {
    padding-left: 9%;
  }
}
.guide-hero-content .has-t-5-font-size {
  color: #4d4d4d;
  font-weight: 350;
  margin-bottom: 1rem;
  margin-top: 0 !important;
}
.guide-hero-content .container {
  display: flex;
  flex-wrap: wrap;
}

.guide-profile {
  background-color: #f7f7f7;
}
.guide-profile__view-all-button {
  margin-top: clamp(2.25rem, 0.5357142857rem + 3.5714285714vw, 3.75rem);
  text-transform: uppercase;
  color: #0f4374;
}

.upcoming-trips {
  padding: clamp(4.375rem, 0.2321428571rem + 8.630952381vw, 8rem) 0 clamp(2rem, -4.8571428571rem + 14.2857142857vw, 8rem);
  background-color: #f7f7f7;
  overflow: hidden;
}
.upcoming-trips h2 {
  text-align: center;
  margin-bottom: clamp(2rem, 0.8571428571rem + 2.380952381vw, 3rem);
}
.upcoming-trips__img {
  position: relative;
  height: clamp(9.9375rem, 4.7232142857rem + 10.8630952381vw, 14.5rem);
}
.upcoming-trips__trip {
  width: clamp(17.5rem, 8.2142857143rem + 19.3452380952vw, 25.625rem);
  margin-left: clamp(0.3125rem, -1.4732142857rem + 3.7202380952vw, 1.875rem);
  max-width: clamp(17.5rem, 8.2142857143rem + 19.3452380952vw, 25.625rem);
  display: flex !important;
  flex-direction: column;
  height: inherit !important;
}
.upcoming-trips .slick-arrow.slick-prev {
  left: -1.5rem;
}
@media (min-width: 90rem) {
  .upcoming-trips .slick-arrow.slick-prev {
    left: -6%;
  }
}
.upcoming-trips .slick-arrow.slick-next {
  right: -1.5rem;
}
@media (min-width: 90rem) {
  .upcoming-trips .slick-arrow.slick-next {
    right: -6%;
  }
}
.upcoming-trips__content {
  background-color: #fff;
  padding: clamp(1.25rem, 0.9642857143rem + 0.5952380952vw, 1.5rem) 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.upcoming-trips__content .c-btn {
  display: inline-block;
  margin-top: auto;
}
.upcoming-trips__content .has-t-4-font-size {
  font-size: 1.3125rem !important;
  margin-bottom: 0;
}
.upcoming-trips__destinations {
  margin-top: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem);
  margin-bottom: clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem);
  width: 100%;
}
@media (min-width: 62rem) {
  .upcoming-trips__destinations {
    column-count: 2;
    column-gap: 1.5rem;
  }
}
.upcoming-trips__destinations p {
  margin-bottom: clamp(0.5rem, 0.2142857143rem + 0.5952380952vw, 0.75rem);
}
.upcoming-trips .slick-track {
  display: flex !important;
}
.upcoming-trips .slick-list {
  margin-left: clamp(0.3125rem, -1.4732142857rem + 3.7202380952vw, 1.875rem);
}
@media (max-width: 61.98rem) {
  .upcoming-trips .slick-list {
    overflow: visible;
  }
}
.upcoming-trips .slick-dots {
  padding-left: 0;
}