


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #F8CB2E;
  --secondary-color:              #EE5007;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #1E5864;
  --custom-btn-bg-hover-color:    #F7107F;
  --dark-color:                   #1B3948;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;

  --body-font-family:             'filson-pro', sans-serif;

  --h1-font-size:                 28px;
  --h2-font-size:                 24px;
  --h3-font-size:                 38px;
  --h4-font-size:                 28px;
  --h5-font-size:                 22px;
  --h6-font-size:                 18px;
  --p-font-size:                  16px;
  --btn-font-size:                1rem;
  --copyright-font-size:          16px;

  --border-radius-large:          4px;
  --border-radius-medium:         10px;
  --border-radius-small:          2px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  margin: 0;
  padding: 0;
}

.container-fluid {
  padding-right: 0 !important;
    padding-left: 0 !important;
  padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0;
    margin-bottom: 0;

}

.bg-dark {
  background-color: rgba(0,0,0,.7)!important;
}
/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
  font-family: "filson-soft", sans-serif;
  font-weight: 600;
  line-height: 95%;
  text-align: center;

}
.display-4{
  font-family: "filson-soft", sans-serif;
  font-weight: 600;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
  font-family: "filson-soft", sans-serif;
  font-weight: 600;
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

h6:hover {
  color: #F7107F;
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION home
-----------------------------------------*/

h1#mashead-logo {
  width: 250px;
  height: 260px;
  background-image: url('../img/WYD_logo_sm-mobile.svg');
  background-repeat: no-repeat;
  background-position:center center;
  margin-left: auto;
  display: block;
  margin-bottom: 0;
}
/*---------------------------------------
  SECTION PURPOSE
-----------------------------------------*/

.purpose {
  background-image: url('../img/purpose_300px.svg');
  width: 300px;
  height: 50px;
  background-repeat: no-repeat;
  background-position:center;

}

/*---------------------------------------
  SECTION YourHaveDream
-----------------------------------------*/

.dream-bg {
  background-image: url('../img/dream_pic.jpg');
  background-repeat: no-repeat;
	/* background-attachment: fixed; */
  background-position: center;
  background-size:100vw;
}


.stripBar_normal {
  background-image: url('../img/stripBar_480px.svg');
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: center center;
  background-size:100vw;

}

/*---------------------------------------
  SECTION data
-----------------------------------------*/

.bg_green {
  background-image: url('../img/bg_iPhone.jpg');
  background-repeat: no-repeat;
	/* background-attachment: fixed; */
  background-position: center center;
  background-size:cover;
}

/*---------------------------------------
  SECTION pricing table
-----------------------------------------*/

.col-container {
 display: table; /* Make the container element behave like a table */
 width: 100%; /* Set full-width to expand the whole page */
}

/*---------------------------------------
  SECTION shadowbox
-----------------------------------------*/

.shadowbox {
    -webkit-box-shadow:0px 0px 14px 5px rgba(1,179,149,0.22);
    -moz-box-shadow: 0px 0px 14px 5px rgba(1,179,149,0.22);
    box-shadow: 0px 0px 14px 5px rgba(1,179,149,0.22);
    border-radius: 10px;

}
/*---------------------------------------
  SECTION Platinum
-----------------------------------------*/

.platinum-bg {
  background-image: url('../img/dining_BG.jpg');
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-position: center center;
  background-size:cover;
  height: 100vh;
  position: relative;
  /* background-attachement: fixed; */
}

.mask-custom {
  /* backdrop-filter: contrast(140%) brightness(100%) saturate(100%) sepia(50%) hue-rotate(0deg) grayscale(0%) invert(0%) blur(0px); */
  mix-blend-mode: lighten;
  background: rgba(27, 57, 72, .8);
  opacity: 1;
}

/*---------------------------------------
  SECTION
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  background: var(--dark-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color);
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5,
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON
-----------------------------------------*/





.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
  text-transform:uppercase;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
  transform: scale(1.1);
}

.custom-block {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
  -webkit-box-shadow:0px 0px 14px 5px rgba(1,179,149,0.22);
  -moz-box-shadow: 0px 0px 14px 5px rgba(1,179,149,0.22);
  box-shadow: 0px 0px 14px 5px rgba(1,179,149,0.22);
  border-radius: 10px;
}

.custom-block:hover {
  background: #ffffff;
  color: var(--white-color);
  transform: scale(1.1);
  -webkit-box-shadow:0px 0px 14px 5px rgba(247,16,717275,0.22);
  -moz-box-shadow: 0px 0px 14px 5px rgba(247,16,717275,0.22);
  box-shadow: 0px 0px 14px 5px rgba(247,16,717275,0.22);
  border-radius: 10px;
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  VIDEO
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  SITE HEADER
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 51px;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

.navbar {
  background: transparent;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 7px;
  padding: 5px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: 14px;
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh - 51px);
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}

/*============= Footer Strip  =============*/

.footer-banner-base-strip {
position: fixed;
top: auto;
right: 0;
bottom: 0;
left: 0;
z-index: 2;
padding: 0.3em 0;
background: #0E24D3;
color: #000;
font: 700 1.6em/1 'din-2014', Arial, Helvetica, sans-serif;
text-align: center;
}

.footer-banner-base-strip > div {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}

.footer-banner-base-strip .bird {
  position: relative; top: -2px;
}

.footer-banner-base-strip > div > div > .text {
  line-height: 35px;
}

.footer-banner-base-strip > div > div > .text .thin {
  font-family: 'proxima-nova', sans-serif;
  font-weight: 500;
}

.footer-banner-base-strip .highlight {
  color: #fff;
}

.footer-banner-base-strip a {
color: #fff;
background: #000;
padding: 10px 16px;
font-size: 0.6em;
margin: 0 0 0 20px;
margin-bottom: 0px;
float: right;
  text-transform: uppercase;
}
/*---------------------------------------
  RESPONSIVE STYLES
-----------------------------------------*/
/* @media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr,
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
} */


/* Mobile First */
@media only screen and (max-width: 480px) {
  /* Styles for phones (portrait) */
  h1#mashead-logo {
    width: 350px;
    height: 280px;
    background-image: url('../img/WYD_logo_mobile.svg');
    background-repeat: no-repeat;
    background-position:center center;
    margin-left: auto;
    display: block;
    margin-bottom: 0;
  }

  h6 {
    font-size: 14px;
  }
  .purpose {
    background-image: url('../img/purpose_350px.svg');
    width: 350px;
    height: 57px;
    background-repeat: no-repeat;
    background-position:center;

  }
  .stripBar_normal {
    background-image: url('../img/stripBar_480px.svg');
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: center center;
    background-size:100vw;

  }

}

@media (min-width: 481px) and (max-width: 767px) {
  /* Phones (landscape) */
  h1#mashead-logo {
    width: 380px;
    height: 365px;
    background-image: url('../img/WYD_logo_mobile.svg');
    background-repeat: no-repeat;
    background-position:center;
    margin-left: auto;
    display: block;
    margin-bottom: 0;
  }
  .purpose {
    background-image: url('../img/purpose_400px.svg');
    width: 400px;
    height: 65px;
    background-repeat: no-repeat;
    background-position:center;

  }
  .stripBar_normal {
    background-image: url('../img/stripBar_767px.svg');
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: center center;
    background-size:100vw;

  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* Tablets (iPad, portrait and landscape) */

  h1#mashead-logo {
    width: 400px;
    height: 325px;
    background-image: url('../img/WYD_logo_ipad2.svg');
    background-repeat: no-repeat;
    background-position:center;
    margin-left: auto;
    display: block;
    margin-bottom: 0;
  }
  h6 {
    font-size: 16px;
  }
  .purpose {
    background-image: url('../img/purpose_380px.svg');
    width: 380px;
    height: 62px;
    background-repeat: no-repeat;
    background-position:center;

  }
  .stripBar_normal {
    background-image: url('../img/stripBar_1024px.svg');
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: center center;
    background-size:100vw;

  }
}

@media only screen and  (min-width: 1025px) and (max-width: 1920px) {
  /* Laptops and small desktops */

    h1#mashead-logo {
      width: 590px;
      height: 210px;
      background-image: url('../img/WYD_logo_laptop.svg');
      background-repeat: no-repeat;
      background-position:center;
      margin-left: auto;
      display: block;
      margin-bottom: 0;
    }
    .purpose {
      background-image: url('../img/purpose_450px.svg');
      width: 450px;
      height: 72px;
      background-repeat: no-repeat;
      background-position:center;

    }
    .stripBar_normal {
      background-image: url('../img/stripBar_1920px.svg');
      background-repeat: no-repeat;
      /* background-attachment: fixed; */
      background-position: center center;
      background-size:100vw;

    }

}

@media only screen and (min-width: 1921px) {
  /* Large desktops */
  h1#mashead-logo {
    width: 800px;
    height: 276px;
    background-image: url('../img/WYD_logo_desktop.svg');
    background-repeat: no-repeat;
    background-position:center;
    margin-left: auto;
    display: block;
    margin-bottom: 0;
  }
  .purpose {
    background-image: url('../img/purpose_520px.svg');
    width: 520px;
    height: 84px;
    background-repeat: no-repeat;
    background-position:center;

  }
  .stripBar_normal {
    background-image: url('../img/stripBar_2700px.svg');
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: center center;
    background-size:100vw;

  }
}
