/* VacationIdea CSS Main */
*,
*::before,
*::after {
  text-decoration: none;
  box-sizing: border-box;
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  background-color: #fff;
}
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}
ul[role='list'],
ol[role='list'] {
  list-style: none;
}
body {
  min-height: 100vh;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img,
picture,
svg {
  max-width: 100%;
  display: block;
}
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}
textarea:not([rows]) {
  min-height: 10em;
}

:root {
    --font-family-b: "Lato",helvetica,sans-serif;

    --header-height: 4rem;
    --logo-width: 12rem;
    --header-font: inter-extrabold, inter-extrabold-fallback, sans-serif;
    --header-font-weight: 800;
    --header-background: #0f4daa;

    --body-font: inter-medium, inter-medium-fallback, sans-serif;
    --body-font-weight: 500;

    --active-color: #f842e8; /* Nav Hover, hamburger color */
    --divider-color: #f1f3f3;
    --nav-color: #ffffff;  /* Nav links */
    --bullet-color: #e83deb;
    --hover-color: #0354cd;
    --link-color: #1b5cf4;
    --read-color: rgb(47, 118, 210);
    --read-arrow: #FFB890;
    --read-orange: #FF5933;

    --muted-lightest-color: #DFDFDF; /* Nav Border line color */
    --image-background: #f9f9f9;

    /* Border only used for off screen menu */
    --border-style: solid;
    --border-weight: 2px;
    --border-weight-heavy: 4px;
    --border-weight-heaviest: 6px;
    --border: var(--border-weight) var(--border-style) var(--muted-lightest-color);

    --social-icons: #ffffff; /* in SVG data */
    --social-icons-hover: #119ff2;

    --snippets-gap-lg: 2rem;
    --animation-curve: cubic-bezier(1, 0, 0, 1);
    //cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/*  Typography ------------------------------- */
body {
  font-family: var(--font-family-b);
  font-size: 1rem;
  font-weight: 400;
  color:#212121;
  margin:0;
  padding:0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-weight: 900;
  font-family: var(--font-family-b);
  color: #212121;
}
h1 {
    font-size: 2.44rem;
    line-height: 1.2;
    letter-spacing: -0.008rem;
    word-spacing: -0.05rem;
    text-wrap: wrap;
  }
h2 {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.008rem;
    word-spacing: -0.05rem;
    font-weight: 900;
    font-family: var(--font-family-b);
  }
h3 {
    font-size: 1.4375rem;
    line-height: 150%}
h4 {
    font-size: 1.56rem;
    line-height: 150%;
}
h5 {
    font-size: 1.25rem;
    line-height: 150%;
}
p, ol, ul, li {
    font-size: 1.2rem;
    line-height: 1.70;
}
p {
  font-family: var(--font-family-b);
}
svg.hidden {
    position: absolute;
}
a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    text-decoration: underline;
}
a {

  color: var(--hover-color);
  font-weight: 700;
}
a:hover {
  text-decoration-line: underline;
  color: var(--active-color);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.20rem;
    }
    h2 {
        font-size: 1.5625rem;
        line-height: 1.40;
    }
}
@media (max-width: 576px) {
    h1 {
    font-size: 1.8rem;
    }
    p {
      font-size: 1.13rem;
    }
}

/*  Begin Basic Grid Framework. */

.wrapper {
  max-inline-size: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 300px;
  gap: 0px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: margin-top .3s ease-in-out;
    -webkit-transition: margin-top .3s ease-in-out;
    background-color: var(--header-background);
    background: radial-gradient(30rem circle at bottom, rgb(47, 118, 210), rgb(53, 107, 242),
rgb(2, 63, 160));
}
#header-container {
    display: flex;
    align-items: center;
    width: calc(100% - 2.2rem);
    margin: auto;
    height: 100%;
    position: relative;
    max-width: 1400px;
}
#hamburger-holder {
    height: 65%;
    cursor: pointer;
    position: relative;
}
#logo {
    position: absolute;
    margin: 0 auto;
    font-size: 0;
    left: 0;
    right: 0;
    width: var(--logo-width);
}
#logo a {
    display: block;
}
#logo img {
    display: block;
    width: var(--logo-width);
    height: 100%
}
#social-nav-holder {
    line-height: 100%;
}
#social-nav-holder svg, .social-buttons svg {
    height: 1.8rem;
    width: 2.2rem;
    padding: .1rem;
}
.social-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.6rem;
    list-style: none;
}
/*  Main navigation ------------------------------------------- */
#top-nav {
    line-height: 100%;
    flex: 1;
    position: relative;
    height: 100%;
  }
#top-nav-holder {
    z-index: 3;
    position: relative;
    height: 100%;
    vertical-align: middle;
    overflow: hidden;
    margin-left: 2rem;
    margin-right: 3rem;
}
#top-nav-holder a {
    display: inline-block;
    font: var(--header-font-weight) 1rem/var(--header-height) var(--header-font);
    color: var(--nav-color);
    text-transform: uppercase;
    margin-right: 0;
    text-decoration: none;
}
#top-nav-holder a:hover {
    color: var(--active-color);
}
#social-nav-holder, #top-nav, .top-nav-scrolled {
    display: none;
}

/*  Greater then 992px Adds NAV to topmast ----------------------  */
@media (min-width:926px) {
    #top-nav {
    display: flex;
    gap: 2rem;
    }
}

/* Adds Social NAV Icons at greater then 926px --------------  */
@media (min-width:926px) {
    
#social-nav-holder {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    }
#logo {
    position: relative;
    margin: 0 3.2rem 0 2.4rem;
    }
}

/*  Assigns Nav Divider   */
#top-nav-holder a:before {
    content: '/';
    margin: 0 1.4rem;
    color: var(--divider-color);
    display: inline-block;
}
#top-nav-holder a:first-of-type::before {
    content: '';
    margin: 0;
}
.hamburger, .hamburger:after, .hamburger:before {
    background3: var(--active-color);
}
#social-nav-holder li:hover svg, .social-buttons li:hover svg {
  fill: var(--social-icons-hover);
  transition: 250ms;
}

/*  Hamburger Menu -----------------------------------------  */
.off-screen-menu {
    background-color:  rgb(247, 247, 249);
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    left: -450px;
    display: flex;
    flex-direction: column;
    align-items:flex-start   
    justify-content:flex-start;
    text-transform: uppercase;
    transition: all 0.6s var(--animation-curve);
    margin-top: var(--header-height);
}
.off-screen-menu.active {
    left: 0;
}
.off-screen-menu ul {
    list-style: none;
    padding: 0;
    margin: 25px 25px;
}
.off-screen-menu ul li {
    padding: 1rem 0;
    border-bottom: var(--border);
}
.off-screen-menu a {
    color: black;
    font-size: 1.25rem;
    font-weight:800;
    text-decoration: none;
}
.off-screen-menu a:hover {
    color: var(--active-color);
}
.ham-menu {
    height: 40px;
    width: 40px;
    margin-left: auto;
    position: relative;
}
.ham-menu span {
    height: 4px;
    width: 100%;
    background-color: #f842e8;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}
.ham-menu span:nth-child(1) {
    top: 25%;
}
.ham-menu span:nth-child(3) {
    top: 75%;
}
.ham-menu.active span {
    background-color: white;
}
.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
    opacity: 0;
}
.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/*  Main Media Queries ------------  */
main {
    margin: 0 auto;
    max-width: 1000px;
    padding-top: calc(var(--header-height) + 1.3rem);
}
@media (min-width:768px) {
  main {
      width: calc(100% - 2.8rem);
      margin-bottom: 2rem;
  }
}

/*  Sidebar  --------------------*/
.sidebar {
  min-width: 300px;
  padding-top: calc(var(--header-height) + 1.3rem);
  margin-bottom: 2rem;
}
.banner_sidebar {
  margin-bottom: 2rem;
}

/*  Top Level Start --------------------*/
.hero {
  place-items: center;
  padding-bottom: 20px;
  margin-bottom:20px;
  border-bottom: 1px #dadada solid;
}
.hero-main {
  position: relative;
}
.hero img {
  width: 100%;
  aspect-ratio: 16/9;
}
.hero p {
  margin: 25px 0 15px 0px;
}

/*  Stream  ----------------------------------*/
.stream {
  
}
.feature {
  padding-bottom: 20px;
  margin-bottom:20px;
  border-bottom: 1px #dadada solid;
}
.snippets {
  display:grid;
  gap: var(--snippets-gap-lg);
  grid-template-columns: 1fr 2fr;
  padding-bottom: 20px;
  margin-bottom:20px;
  border-bottom: 1px #dadada solid;
}
.thumbnail {

}
.thumbnail img, .feature img {
  max-width: 100%;
  aspect-ratio: 16/9;
}
.stream h2 {
  font-size: 1.56rem;
  line-height: 135%;
  margin-top: 0;
}
.hero h2 a, .stream h2 a {
  text-decoration: none;
  font-weight: 900;
  color:#000808;
}
.hero h2 a:hover, .stream h2 a:hover {
  color: var(--hover-color);
}
@media (max-width: 576px) {
    .stream h2 {
        font-size: 1.3rem;
        line-height: 1.35;
        margin-bottom: 0.5rem;
    }
  }
.stream p {
  margin: 15px 0px;
  line-height: 1.5;
}
@media (max-width: 768px) {
    .description p {
        display: none;
    }
  }
.read-more a {
  padding: 1rem 0;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--read-color);
}
.read-more a:after {
  content: '\2B95\FE0E';
  color: var(--read-color);
  vertical-align: middle;
  display: inline-block;
  margin-left: .5rem;
  transition: margin-left .2s;
}
.read-more a:hover:after {
  margin-left: .7rem;
}
main ol li, main ul li {
  margin: 10px 0 15px;
}

/*  Article Start  -------------------------------------------*/
h1.title {
  margin: 0 0 .5rem 0;
  }
h2.subhead {
  font-size: 1.23rem;
  font-weight: 500;
  line-height: 1.4;
}
.author-detail a {
  color:#0f4daa;
}
.caption {
  font-size: 1rem;
  line-height: 1.4;
  color: #7f6c80;
  margin-top: .5rem;
}
article p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
article ol, article ul {
  margin: 0 0 2rem 0;
}
article ol li, article ul li {
  margin: 10px 0 15px;
}
article ul {
  list-style:none;
}
article ol {
  padding-left: 30px;
}
article ul li, article ol li {
  margin-left: 0px;
}
article ul li:before {
  content: "";
  position: absolute;
  margin-top: .8rem;
  margin-left: -1.5rem;
  width: 7px;
  height: 7px;
  border-radius: 2px 2px 2px 0;
  font-size: 16px;
  text-align: center;
  background: var(--bullet-color)
}
li::marker {
  font-weight: bold;
  color: var(--bullet-color);
}
@media  screen and (max-width: 576px) {
  ul li {
    line-height: 1.6;
  }

}

/*  Image Holder for inside article images -----------------------*/
.streamgallery {
  margin: 2rem 0;
}
.streamgallery img {
  max-width: 100%;
  border-radius: 0px;
}

/*  Article Byline  */
.byline-container {
    font-size: 1rem;
    font-family: var(--font-family-b);
    margin: 1rem 0 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.byline-timestamp {
    white-space: nowrap;
}
.byline-timestamp:before {
    content: ' | ';
    color: #0451e1;
  }

/* H2 title centered with lines on both sides ------------ */
h2.strike {
  display: flex;
  width: 100%;
  margin: 2rem 0;
  justify-content: center;
  align-items: center;
  text-align: center;
}
h2.strike:before,
h2.strike:after {
  content: '';
  border-top: 4px solid;
  margin: 0 20px 0 0;
  flex: 1 0 20px;
  color: #1ca7f1;
}
h2.strike:after {
  margin: 0 0 0 20px;
}
/*  Article Tips ----------*/
p.tip {
  padding: 1rem;
  margin: 3rem 0;
  border-left: #e104a3 1rem solid;
}
span.red {
  color: #e104a3;
  font-weight: bold;
}
p.tip_bg {
  padding: 2rem 2rem 2rem;
  margin: 3rem 0;
  color: #0d0d0d;
  background: #eef0f3;
  border-left: #0451e1 1rem solid;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  font-style: italic;
}
p.tip_bg a {
  color: #1b25f2;
}
p.tip_bg a:hover {
  color: var(--active-color);
}
/* Highlights Box -----------------------------------------*/
.highlights {
  padding: 1rem 2rem 0.5rem;
  margin: 3rem 0;
  color: #000808;
  background: #eef0f3;
  border-left: #0451e1 1rem solid;
  border-radius: 12px;
  font-size: 1.5rem;
}
.highlights h3, .highlights h4 {
  color: #010e0e;
}

/* Travel Tips Box -----------------------------------------*/
.tips-box {
  margin: 3rem 0;
}
.tips-border {
  border: 0.5rem solid #1ca7f1;
  border-top: none;
  padding: 2rem 2rem 0.5rem;
  margin-top: -9px;
}
h2.tips-title {
  display: flex;
  width: 100%;
  margin-bottom: 0;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  text-align: center;
}
h2.tips-title:before,
h2.tips-title:after {
  content: '';
  border-top: 0.5rem solid;
  margin: 0 20px 0 0;
  flex: 1 0 20px;
  color: #1ca7f1;
}
h2.tips-title:after {
  margin: 0 0 0 20px;
}

.tips-box h2 {
  font-size: 1.25rem;
  line-height: 125%;
}
.tips-border a {
  text-decoration: none;
}

/* Related Stories Box -----------------------------------------*/
.related-box {
  margin: 3rem 0;
}
.related-border {
  border: 0.5rem solid #1ca7f1;
  border-top: none;
  padding: 3rem;
  margin-top: -9px;
}
h2.related-title {
  display: flex;
  width: 100%;
  margin-bottom: 0;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  text-align: center;
}
h2.related-title:before,
h2.related-title:after {
  content: '';
  border-top: 0.5rem solid;
  margin: 0 20px 0 0;
  flex: 1 0 20px;
  color: #1ca7f1;
}
h2.related-title:after {
  margin: 0 0 0 20px;
}
.related-wrap {
  display:grid;
  gap: 10px;
  grid-template-columns: 1fr 3fr;
  padding-bottom: 20px;
  margin-bottom:20px;
  border-bottom: 1px #1ca7f1 solid;
}
.related-wrap a {
  border-bottom: 1px #dadada solid;
}
.related-wrap:nth-child(2) {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.related-thumb img {
  max-width: 100%;
  aspect-ratio: 14/9;
  border-radius: 0px;
}
.related-box h2 {
  font-size: 1.25rem;
  line-height: 125%;
}
.related-border a {
  text-decoration: none;
}
.related-description h3 {
  font-size: 22px;
  line-height: 1.9rem;
  margin: 0;
}
@media (max-width: 768px) {
    .related-description h3 {
    font-size: 1.25rem;
    line-height: 1.9rem;
    }
  }
@media (max-width: 576px) {
    .related-wrap {
    grid-template-columns: 1fr;
    }
  }

/*  Booking Button -------------------------------- */
.button_booking {
  background-color: #1ca7f1;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 0 20px 0;
  cursor: pointer;
  border-radius: 4px;
  transition-duration: 0.2s;
  font-size: 1.1rem;
}
.button_booking:hover {
  background-color: #05476b; /* Green */
  color: white;
}

/*  Table Styling -------------------------------------- */
.table-wrap {
  margin: 1rem 0 3rem 0;
}
table {
  width: 100%;
}
table, th, td {
  border: 1px solid rgb(109, 147, 243);
  border-collapse: collapse;
}
th {
  text-align: center;
  color: #fff;
}
th, td {
  padding: 8px 10px;
}
th {
  background-color: #1ca7f1;
}
tr:hover {
  background-color: #d6e3ee;
  transition: 250ms;
}

/*  Summary and Table of Contents ---------------------------*/
.summary {
  padding: 30px;
  margin: 1.5rem 0;
  border-radius: 8px;
  background: #eef0f3;
}
.summary a {
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  color:#0451e1;
  border-bottom: 1px dotted #0451e1;
}
.summary a:hover {
  color: var(--active-color);
}
.summary ul {
  margin: 25px 0 0 0;
  padding:0;
}
.summary ul li{
  list-style:none;
}
/* Hides the list style on the Table of contents */
.summary ul li:before {
  content:none;
}
.summary ol {
 margin: 25px 0 0 0;
}
.summary label {
  cursor: pointer;
  margin: 0 7px;
}
.control-me {
  transition: 120ms transform ease-in-out;
}
#toggle {
  display: none;
}
#toggle ~ label::before {
  content: '[';
  margin-right: 5px;
}
#toggle ~ label::after {
  content: ']';
  margin-left: 5px;
}
.summary .control-me {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
}
#toggle:checked ~ .control-me {
  display: block;
  max-height: 400px;
  transition: max-height .4s ease-in;   
}

/*  Staff Biography ------------------------------------------- */
.author-mini-bio {
  display: grid;
  grid-template-columns: 100px 2fr;
  gap: 30px;
  padding: 40px;
  border-radius: 8px;
  background: #eef0f3;
  margin-top: 3rem;
}
.author-headshot figure {
  width: 100%;
  margin: 0;
  padding: 0;
}
.author-headshot img {
  aspect-ratio: 9/9;
  border: 3px solid #000406;
}
.author-info {
  color: #ffffff;
}
.author-info a {
  text-decoration: underline;
  color: var(--hover-color);
  font-weight: 700;
}
.author-info a:hover {
  text-decoration-line: underline;
  color: var(--active-color);
}
.author-info h4 {
margin: 0 0 0 0;
color: #0b0b0b;
}
.author-info h5 {
  margin: 0 0 0 0;
  color: #0461be;
  font-size: 1.1rem;
  font-weight: 600;
}
.author-info p {
  font-size: 1.1rem;
  line-height: 1.7rem;
  margin-bottom: 0;
  color: #0b0b0b;
}
@media  screen and (max-width: 576px) {
  .author-mini-bio {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .author-headshot img {
    width: 25%;
  }
}

/*  Footer ------------------------------- */
footer {
  width:100%;
  padding: 4rem 0;
  color:#ffffff;
  background: radial-gradient(30rem circle at bottom, rgb(47, 118, 210), rgb(53, 107, 242), rgb(2, 63, 160));
  }
.logo-footer img {
  width: 18%;
}
.footer-wrap {
  max-inline-size: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  font-family: var(--font-family-b);
}
.footer-container h4{
  font-size: 1rem;
  margin: 20px 0 20px 0;
  color:#ffffff;
}
.footer-container ul {
  list-style: none;
  padding: 0;
  font-size: 0.90rem;
  font-weight: 400;
}
.footer-container li {
  line-height: 1.5rem;
}
.footer-container li a {
  text-decoration: none;
  line-height: 1.5rem;
  font-size: 1.1rem;
font-weight: 400;
  color: #ffffff;
}
.footer-container li a:hover {
  opacity: 1;
  color: var(--active-color);
}
ul.social {
  display: flex;
  list-style: none;
  margin: 0 0 30px 0;
}
ul.social li {
  padding: 0 25px 0 0;
}
.social svg {
  width: 20px;
  color: var(--social-icons-hover);
  height: auto;
}
.social svg:hover {
  fill: var(--social-icons-hover);
  transition: 250ms;
}
.copyright {

}
.copyright p {
  font-size: 13px;
  color: #e6e6e6;
}
/*  Footer columns Media Queries ------------------------------- */

@media  screen and (max-width: 760px) {
  .footer-container {
    display: block;
    text-align: center;
  }
  .logo-footer {
    display: flex;
    justify-content: center;
  }
  .logo-footer img {
    width: 50%;
    align-items: center;
    text-align: center;
  }
  .footer-container h4{
    font-size: 1.25rem;
}
  ul.social {
    display: flex;
    justify-content: center;
  }
}

/*  Less than 1000px header gradient changes and wrapper goes full width ------  */

@media  screen and (max-width: 992px) {
    .wrapper {
        display: block;
        margin: 0 15px;
    }
    .sidebar {
          display: block;
        }
    header {
    background: radial-gradient(19rem circle at bottom, rgb(47, 118, 210), rgb(53, 107, 242),
rgb(2, 63, 160));
    }    
}

