/* -------------------------------------------------*/
/* BASIC SETUP */
/* -------------------------------------------------*/

* {
    margin:0;
    padding:0;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}

html,
body {
    /*background-color: #03c4ca; */
    /*background-image: linear-gradient(180deg, #008099 0%, #5c0067 100%);*/
    background-image: linear-gradient(180deg, #5c0067 0%, #ff7d29 100%);
    color: #FFF;
    font-family: 'Antonio', 'Arial', sans-serif;
    font-weight: 200;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/* -------------------------------------------------*/
/* REUSABLE COMPONENTS */
/* -------------------------------------------------*/

.row{
    max-width:1140px;
    margin: 0 auto;
}

section {
    padding: 40px 0;
}

.box {
    padding: 1%; 
}

h1,
h2,
h3 {
    font-weight: 350;
    text-transform: uppercase;
    
}

h1 {
    margin-top:0;
    margin-bottom: 20px;
    color: #fcf9f9;
    font-size: 250%;
    word-spacing: 4px;
    letter-spacing: 1px;
    text-align:center;
    
}

h2 {
    font-size: 150%;
    word-spacing: 2px;
    text-align:center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h3 {
    font-size: 110%;
    margin-bottom: 15px;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #fa22e6;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}

hr {
    width: 50%;
    color: #fa22e6;
    margin-left: 25%;
    margin-right: 25%;
}

/* Style inputs, select elements and textareas */
input[type=text], select, textarea {
  width: 70%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

input[type=email] {
    width: 70%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
}

input[type=tel] {
    width: 70%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
}

input[type=date] {
    width: 50%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
}

input[type=checkbox] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    width: 20px;
    height: 20px;
}

.loader {
    position: fixed;
    top:0;
    left:0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.75s, visibility 0.75s;
  }

  .loaderhidden {
    opacity: 0;
    visibility: hidden;
  }

  .loader::after{
    content: "";
    width: 75px;
    height: 75px;
    border: 15px solid #dddddd;
    border-top-color: #7449f5;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
  }

  @keyframes loading {
    from{
        transform: rotate(0turn);
    }
    to{
        ransform: rotate(1turn);
    }
  }


/* Style the label to display next to the inputs */
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

INPUT#txtGrandTotal,
INPUT#txtTotal,
INPUT#txtBalanceDue,
INPUT#txtGrandTotal2,
INPUT#txtTotal2,
INPUT#txtBalanceDue2,
INPUT#txtGrandTotal3,
INPUT#txtTotal3,
INPUT#txtBalanceDue3 {
    width: 40%;
    }





/* -------------------------------------------------*/
/* PARAGRAPHS */
/* -------------------------------------------------*/

.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
}

.box p {
    font-size: 90%;
    line-height: 145%;
}

/* -------------------------------------------------*/
/* ICONS */
/* -------------------------------------------------*/
.icon-big {
    font-size: 350%;
    text-align: center;
    display: block;
    color: #1268dd;
    margin-bottom: 10px;    
}

.icon-small {
    display: inline-block;
    width: 30px;
    text-align: center;
    color: #1268dd;
    font-size: 120%;
    margin-right: 10px;
    
    
    /*secrets to align*/
    line-height: 120%;
    vertical-align: middle;
    margin-top: -4px;
}

/* -------------------------------------------------*/
/* GENERIC LINKS */
/* -------------------------------------------------*/

a:link,
a:visited {
    color: #1268dd;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid #1268dd;
    -webkit-transition: border-bottom 0.2s, color 0.2s;
    transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
    color: #555;
    border-bottom: 1px solid transparent;    
}
    

/* -------------------------------------------------*/
/* BUTTONS */
/* -------------------------------------------------*/
.btn:link,
.btn:visited,
input[type=submit],
input[type=reset] {
    display: inline-block;
    padding: 10px 30px;
    font-weight:300;
    text-decoration: none;
    border-radius: 200px;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited,
input[type=submit],
input[type=reset] {
    background-color: #a92efe;
    border: 1px solid #a92efe;
    color: #fff;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #1268dd;
    color: #1268dd;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active,
input[type=reset]:hover,
input[type=reset]:active {
    background-color: #f9042d;
}

.btn-full:hover,
.btn-full:active {
   border: 1px solid #f9042d;
    }

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #f9042d;
    color: #fff;
}

/* -------------------------------------------------*/
/* HEADER */
/* -------------------------------------------------*/

header {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url(img/hero.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/hero.jpg);   
    height: 80vh;
    background-position: center;
    background-attachment: fixed;
    background-size:inherit;
}

.hero-text-box{
    position: absolute;
    width: 1140px;
    top:50%;
    Left:50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.event-header {
    padding: 0;
}

.event-name {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000;
    font-size: 120%;
    word-spacing: 4px;
    letter-spacing: 1px;
    text-align:center;
}

.event-logo img {
    width: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    border-radius: 10%;
    Margin-top: 20px;
    
}

/* -------------------------------------------------*/
/* MAIN NAVIGATION
/* -------------------------------------------------*/

.main-nav {
    float:right;
    list-style: none;
    margin-top: 55px;
    
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    text-transform:uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #1268dd;
}

/* -------------------------------------------------*/
/* STICKY NAVIGATION */
/* -------------------------------------------------*/

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    -webkit-box-shadow: 0 2px 2px #efefef;
    box-shadow: 0 2px 2px #efefef;
    z-index: 9999;
}

.sticky .main-nav {margin: 18px;}
 
.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 16px 0;
    color: #555;
}

.sticky .logo { display: none;}
.sticky .logo-black { display: block;}


/* -------------------------------------------------*/
/* MOBILE NAVIGATION */
/* -------------------------------------------------*/

.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display:none;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
}

/* -------------------------------------------------*/
/* FEATURES */
/* -------------------------------------------------*/

.section-features .long-copy {
    margin-bottom: 35px;
}

/* -------------------------------------------------*/
/* EVENT DESCRIPTION */
/* -------------------------------------------------*/

.event-description {
    width: 80%;
    margin:auto;
}

.event-description p {
    text-align: center;
}

/* -------------------------------------------------*/
/* HOTEL */
/* -------------------------------------------------*/


.section-hotel-info {
    padding: 0;
}

.hotel-address {
    margin-top:50px;
    font-size: 140%;
    text-align:center;
}

.hotel-logo {
    display: flex;
    height: 175px;
    width: auto;
    margin-top: 5px;
    justify-content: center;    
}
.section-hotel-images {
    padding: 0;
}

.hotel-showcase {
    list-style: none;
    width: 100%;
}

.hotel-showcase li {
    display: block;
    float:left;
    width: 25%;    
}

.hotel-photo {
    border-radius:25px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #fff;
}

.hotel-description {
    width: 50%;
    margin: auto;
}

.hotel-photo img {
    opacity: 0.7;
    width: 100%;
    height: auto;
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.hotel-photo img:hover {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}



/* -------------------------------------------------*/
/* PRICING INCLUDES */
/* -------------------------------------------------*/

.section-five-steps {
    text-align: center;
}



.section-five-steps img {
    width: 60%;
    border-radius: 10%;
}

/* -------------------------------------------------*/
/* ROOM PRICING */
/* -------------------------------------------------*/


/* -------------------------------------------------*/
/* ROOM OPTION GRID */
/* -------------------------------------------------*/


.grid-container {
    display: grid;
    width: 80%;
    grid-gap: 0px;
    grid-template-columns: 25% 30% 25%;
    grid-template-rows: 40% 40%;
    border-radius: 1px solid black;
    margin-left: 20%;
    margin-right: auto;
    
    
  }
  
  .grid-header {
    font-size: 100%;
    color: black;
    font-weight: 700;
    text-align: center;
    background-color: white;
    
    
  }
  
  .grid-item {
    border: 1px solid black;
    color:black;
    font-size: 90%;
    font-weight: 400;
    background-color: white;
    text-align: center;
    
  }

  .grid-item-1 {
    padding-top: 8%;
  }

  .grid-item-2,
  .grid-item-3 {
    padding-top: 10%;
  }

  .grid-item-4,
  .grid-item-6  {
    padding-top: 5%;
  }

  .grid-item-5
   {
    padding-top: 3%;
  }

  

  

  .grid-item select {
    margin-right: 10px;
    width: 25%;
    margin: 0 auto;
  }

  .grid-item input {
    width: 100px;
    text-align: center;
  }
  

  


/* -------------------------------------------------*/
/* STEPS */
/* -------------------------------------------------*/

.step-one,
.step-two,
.step-three,
.step-four,
.step-five,
.step-six {
    /*display: none;*/
}



.reg-step {
    width: 80%;
    margin-bottom: 5px;
    margin-left: 10%;
    margin-right: 0%;
    display:inline-block;
}

.reg-step div {
    color: yellow;
    border: 2px solid yellow;
    display: inline-block;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    text-align: center;
    padding: 8px;
    float: left;
    font-size: 150%;
    margin-right: 10px;
    margin-bottom: 5px;
}

.step-description {
    padding: 5px;
    font-size: 26px;
    margin-top: 0px;
    margin-bottom: 11px;
    margin-left: 10px
    text-align: left;
    display: inline-block;
    
}

.step-description-details {
    margin-left: 6%;
}

/* -------------------------------------------------*/
/* ARRIVAL & DEPARTURE DATES */
/* -------------------------------------------------*/

.arrival-departure-dates-header {
    text-align: center;
}
    
    
    .arrival-departure-dates-selector {
        width: 70%;
        margin-left: 25%;
        margin-right: 5%;
}

input[type="date"] {
    width: 30%;
}

INPUT#txtExtraNights {
        width: 20%;
    }

    INPUT#txtGrandTotal3,
    INPUT#txtBalanceDue3,
    INPUT#txtTotal3 {
        width: 25%;
    }

    .btn-app:link,
    .btn-app:visited {
        border: 0;
    }

    .btn-app img {
        height: 50px;
        width: auto;
        margin-right: 10px;
    }

/* -------------------------------------------------*/
/* GUEST INFORMATION */
/* -------------------------------------------------*/

.guest-information {
    width: 100%;
    margin: auto;
}
    
    .guest-1-details,
    .guest-2-details,
    .guest-3-details,
    .guest-4-details {
        width: 60%;
        margin-left: 27%;
        margin-right: 3%;
} 

    .guest-label {
        font-size: 22px; 
        font-weight: 300;
        float: left;
        

    }

    .duplicate-guest-info {
        display: inline-block;
        margin-left: 5%;
        font-weight: 400;
        font-size: 80%;
    }

    .special-requests {
        width: 50%;
        margin-left: 27%;
        margin-right: 13%;
        margin-top: 15px;
    }

    

    INPUT#txtZip,
    INPUT#txtZip2, 
    INPUT#txtZip3, 
    INPUT#txtZip4 {
        width: 30%;
    }

    INPUT#txtHomePhone,
    INPUT#txtBusinessPhone,
    INPUT#txtG2HomePhone,
    INPUT#txtG2BusinessPhone,
    INPUT#txtG3HomePhone,
    INPUT#txtG3BusinessPhone,
    INPUT#txtG4HomePhone,
    INPUT#txtG4BusinessPhone,
    INPUT#txtEmail,
    INPUT#txtEmailVerify,
    INPUT#txtG2Email,
    INPUT#txtG2EmailVerify,
    INPUT#txtG3Email,
    INPUT#txtG3EmailVerify,
    INPUT#txtG4Email,
    INPUT#txtG4EmailVerify {
    width: 50%;
    }

    
    



/* -------------------------------------------------*/
/* PAYMENT INFORMATION */
/* -------------------------------------------------*/

.step-four {
    width: 80%;
    margin-left: 10%;
    margin-right:10%;
}

.payment-details {
    width: 80%;
    margin-left: 22%;
    margin-right:10%;
}

INPUT#txtCCNumber {
    width: 50%;
    }


INPUT#txtCVVNumber {
    width: 25%;
    }

SELECT#cboCCMonth {
    width: 15%;
}

SELECT#cboCCYear {
    width: 15%;
}


SELECT#cboCCType {
    width: 20%;
}


/* -------------------------------------------------*/
/* TERMS AND CONDITIONS */
/* -------------------------------------------------*/

.terms-conditions {
    width: 95%;
    margin-left: 2%;
}

.terms-verbiage {
    width: 70%;
    margin-left: 17%;
    margin-right: 10%;
    text-align: left;
    font-size: 20px;
    padding: 1px;
    display: inline-block;
    
}

.deposit-amounts {
    margin-left: 5%;
    column-count: 2;
    column-gap: 5px;
    column-width: 10px;
}

.agree-to-terms {
    width: 35%;
    margin-left: 20%;
    margin-right: 15%;
    font-size: 16px;
    padding: 5px;
    margin-top: 8px;
}

.event-schedule img {
    width: 90%;
}




/* -------------------------------------------------*/
/* PAYMENT REVIEW */
/* -------------------------------------------------*/

.payment-review {
    width: 40%;
    margin-left: 35%;
    margin-right: 25%;
}

.payment-review-text {
    width: 50%;
    margin-left: 25%;
    margin-right: 25%;
}

.form-buttons {
    text-align: center;
    
}

.event-schedule {
    text-align: center;
    
}

.event-schedule img {
    width: 50%;
    border-radius: 10%;
}



/* -------------------------------------------------*/
/* FOOTER */
/* -------------------------------------------------*/

footer {
    /*background-color: #010b2c;*/
    padding: 50px;
    font-size: 80%
}

.footer-text img {
    display: block;
    filter: drop-shadow(0 0 0.55rem rgb(255, 254, 254));
    margin-left: auto;
    margin-right: auto;
}

.footer-nav {
    list-style: none;
    float: left;
}

.social-links {
    list-style: none;
    float: right;
}

.footer-nav li,
.social-links li {
    display: inline-block;
    margin-right: 20px;
}

.footer-nav li:last-child,
.social-links li:last-child {
    margin:0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
    text-decoration: none;
    border: 0;
    color: #faf8f8;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.footer-nav li a:hover,
.footer-nav li a:active {
    color: #ddd;
}

.social-links li a:link,
.social-links li a:visited {
    font-size: 160%;    
}

.ion-social-facebook,
.ion-social-twitter,
.ion-social-googleplus,
.ion-social-instagram {
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.ion-social-facebook:hover {
    color: #3b5998;
}

.ion-social-twitter:hover {
    color: #00aced;
}

.ion-social-googleplus:hover {
    color: #dd4b39;
}

.ion-social-instagram:hover {
    color: #517fa4;
}


footer p {
    color: #fffdfd;
    text-align: center;
    margin-top: 20px;
}

/* -------------------------------------------------*/
/* ANIMATIONS */
/* -------------------------------------------------*/

.js--wp-1,
.js--wp-2,
.js--wp-3 {
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.js--wp-4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}


.js--wp-1 .animated,
.js--wp-2 .animated,
.js--wp-3 .animated {
    opacity: 1;
}

.preloader {
    position: fixed;
    z-index: 999999;
    background: #000;
    width: 100%;
    height: 100%;
}

.preloader img {
    position: fixed;
    margin-left: auto;
    margin-right: auto;
    z-index: 100;
}




