@font-face {
    font-family: 'Core Sans Regular';
    src: url('https://uploads-ssl.webflow.com/60b3ab9425606eb75acca815/60d09d5b7ed64b2f1b35d5b4_CoreSansA45Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root { 
    --white: #fff;
    --color-primary: #eb7624;
    --color-secondary: #66c5c5;
    --color-dark: #1b1b1b;
    --font-body: 'Barlow', sans-serif;
    --font-other: 'Core Sans Regular', sans-serif;
    --font-secondary: 'Chakra Petch', sans-serif;
}

html{
    background-attachment: scroll;
}

body{
    /* font-family: var(--font-body); */
    font-family: var(--font-other);
    color: #1b1b1b;
    font-size: 18px;
    line-height: 1.556em;
}

main section{
    padding-top: 200px;
    padding-bottom: 200px;
}

#navbarMyAccount .list-group-item.active {
    background-color: #eb7624;
    border-color: #eb7624;
}

form{
    margin: 0;
}

.flex-center-between{
    display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
        align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
        justify-content: space-between;
}

.modal-dialog{
    margin-top: 2.5rem;
}

.fas, .far{
    margin-top: 0;
    margin-bottom: 0;
}

@media (min-width: 576px){
    .modal-dialog {
        margin: 3.75rem auto;
    }
}


@media screen and (max-width: 991px){
    main section {
        padding-top: 160px;
    }
}

/****************************************************
*                   GENERAL                         *
*****************************************************/

a{
    cursor: pointer;
}

.square__image--wrap{
    position: relative;
    width: 100%;
}

.square--image{
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    object-fit: fill;
    background-repeat: no-repeat;
}

.square--lg .square--image{
    padding-bottom: 100%;
}

.heading--mb{
    margin-bottom: 36px;
}

.highlight-primary{
    color: var(--color-primary);
}

.col-form-label,
.form-control{
    font-family: var(--font-other);
}


/***************************************************
*                   HEADINGS                       *
****************************************************/

h1, h2, h3, h4, h5, h6{
    font-family: var(--font-other);
}

h1{    
    margin-top: 0px;
    margin-bottom: 9px;
    font-family: var(--font-other);
    color: #1b1b1b;
    line-height: 1.041em;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

h2{
    margin-top: 0px;
    margin-bottom: 14px;
    font-family: var(--font-other);
    color: #1b1b1b;
    /* font-size: 52px; */
    line-height: 1.077em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h3{
    margin-top: 0px;
    margin-bottom: 11px;
    font-family: var(--font-other);
    color: #1b1b1b;
    /* font-size: 28px; */
    line-height: 1.286em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/***************************************************
*                   BUTTONS                       *
****************************************************/

.btn{
    font-family: var(--font-other);
    font-size: 16px;
    line-height: 1.125em;
    letter-spacing: 0.06em;
    padding: 20px 28px;
    border-radius: 0;
}

.btn-sm{
    padding: 10px;
}

.btn-secondary{
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

/****************************************************
*                      BANNER                       *
****************************************************/
.banner__img{
    height: 85vh;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.bannerText{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner__heading{
    color: #fff;
    font-size: 74px;
    line-height: 1.041em;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
}

@media (max-width: 991px){
    .banner__heading{
        font-size: 62px;
    }
}

@media (max-width: 767px){
    .banner__img {
        height: 50vh;
    }

    .banner__heading{
        font-size: 51px;
    }
}

@media (max-width: 479px){
    .banner__img {
        height: 45vh;
    }

    .banner__heading{
        font-size: 43px;
    }
}
/****************************************************
*                       NAVIGATION                  *
*****************************************************/

#topHeader{
    background: var(--color-secondary);
    color: #fff;
}

#topHeader .locationDropDown {
    background: var(--color-secondary);
    color: #fff;
    border-radius: 0px;
    border-color: transparent;
}
#topHeader .locationDropDown .dropdown-item{
    color: #fff;
    text-transform: uppercase;
}

#topHeader .btn{
    color: #fff;
}

#header{
    /*
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;*/
    position:sticky;
    top:0px;
    left:0px;
    padding-top: 15px;
    padding-bottom: 15px;
    opacity: 1;
    /* background-color: rgba(44, 44, 44, 0.93); */
    background-color: rgba(19, 81, 127, 0.91);
    z-index: 1;
}

#header.show-full-header{
    padding-top: 30px;
    padding-bottom: 30px;
}

#header.scrolled{
    opacity: 1;
    will-change: background;
    background-color: rgba(19, 81, 127, 0.91);
}

header .nav-item .nav-link{
    margin-left: 12px;
    transition: color 350ms ease;
    font-family: var(--font-other);
    color: #fff;
    font-size: 16px;
    line-height: 1.125em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color;
    transition: color 350ms ease;
}

header .nav-item{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 20px;
    margin-bottom: 0px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.125em;
}

header .nav-link:hover{
    color: var(--color-primary);
}

#header .header__btn{
    padding: 20px 28px;
    background-color: #eb7624;
    font-family: 'Core Sans Regular', sans-serif;
    color: #fff;
    font-size: 16px;
    line-height: 1.125em;
    letter-spacing: 0.06em;
}

#header .header__btn:hover {
    box-shadow: 0 4px 18px 0 rgba(223, 0, 0, .6) !important;
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}

.header__top{
    margin-top: 0;
    margin-bottom: 0;
}

.show-full-header .header__top{
    margin-top: -15px;
    margin-bottom: 8px;
}

.header__top .nav-item{
    margin-right: 0;
}

@media (max-width: 1021px){
    header .nav-item{
        margin-right: 5px;
    }
}

[data-toggle="collapse"]:after,
[data-toggle="collapse"].collapsed:after{
    display: none;
}

.menu-toggler{
    display: none;
}

.collapse:not(.show){
    display: block;
}

@media (max-width: 991px){
    .menu-toggler{
        z-index: 99;
        width: 58px;
        height: 58px;
        min-width: 58px;
        margin-left: 20px;
        padding: 16px 12px;
        background-color: #eb7624;
        -webkit-transition: box-shadow 150ms ease, -webkit-transform 150ms ease;
        transition: box-shadow 150ms ease, -webkit-transform 150ms ease;
        transition: box-shadow 150ms ease, transform 150ms ease;
        transition: box-shadow 150ms ease, transform 150ms ease, -webkit-transform 150ms ease;
        color: #fff;
        font-size: 30px;
        border: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    .menu-line-top {
        max-height: 4px;
        min-height: 4px;
        height: 100%;
        width: 80%;
        padding: 0px;
        background-color: #fff;
        transition: transform 150ms ease;
    }

    .menu-line-middle {
        max-height: 4px;
        min-height: 4px;
        height: 100%;
        width: 80%;
        padding: 0px;
        background-color: #fff;
        transition: transform 150ms ease;
    }

    .menu-line-bottom {
        max-height: 4px;
        min-height: 4px;
        height: 100%;
        width: 80%;
        padding: 0px;
        background-color: #fff;
        transition: transform 150ms ease;
    }

    .menu-toggler.collapsed .menu-line-top{
        transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        transform-style: preserve-3d;
        
    }

    .menu-toggler.collapsed .menu-line-middle{
        opacity: 1;
        
    }

    .menu-toggler.collapsed .menu-line-bottom{
        transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        transform-style: preserve-3d;
        
    }

    .menu-toggler .menu-line-top{
        transform: translate3d(0px, 12px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(140deg) skew(0deg, 0deg);
        transform-style: preserve-3d;
    }

    .menu-toggler .menu-line-middle{
        opacity: 0;
    }

    .menu-toggler .menu-line-bottom{
        transform: translate3d(0px, -10px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(40deg) skew(0deg, 0deg);
        transform-style: preserve-3d;
    }

    .header__left{
        order: 1;
        flex-grow: 1;
        z-index: 2;
    }

    header .navbar.navbar-expand-lg{
        order: 3;
    }

    header .header__booknow{
        order: 2;
    }

    #header .collapse:not(.show),
    .collapse:not(.show){
        display: block;
    }

    header .navbar-collapse{
        display: block;
        position: fixed;
        top: 0;
        left: 100%;
        height: 100%;
        width: 100%;
        background-color: rgba(0,0,0, .9);
        transition: left 750ms ease;
    }

    header .navbar-collapse.show{
        left: 0;
    }

    header .navbar-nav{
        padding-top: 150px;
        margin: 0 24px;
    }

    header .nav-item:not(.header__top .nav-item){
        margin-right: 0px;
        margin-bottom: 32px;
        flex-direction: column;
        align-items: flex-start;
    }

    header .nav-item .nav-link{
        transition: transform 200ms ease, color 350ms ease, -webkit-transform 200ms ease;
        font-size: 22px;
    }

    .booknow__mobile{
        margin-right: 24px;
        margin-top: 80px;
    }

    .header__btn--mobile{
        display: block;
        padding-top: 28px;
        padding-bottom: 28px;
        font-size: 18px;
        padding: 20px 28px;
        line-height: 1.125em;
        letter-spacing: 0.06em;
    }

    .header__top .nav-item.quick-cart{
        margin-right: 10px;
    }

    .header__top .fa{
        font-size: 15px;
    }

    .header__top .badge{
        font-size: 15px;
    }
}

@media (max-width: 375px){
    header .nav-item .nav-link {
        font-size: 14px;
    }
}

/**************************************************
*                   DROPDOWN                      *
***************************************************/
header .dropdown-menu{
    padding: 40px;
    background-color: var(--color-primary);
    width: 273px;
    border-color: transparent;
    border-radius: 0;
    display: block;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    border-radius: 6px;
}

header .dropdown-toggle::after{
    display: none;
}


@keyframes show-menu {
    from{
        transform: translateY(-70px) scale(0);
        opacity: 0;
    }

    to{
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

header .dropdown-menu.show{
    animation-name: show-menu;
    animation-duration: .5s;
    opacity: 1;
    visibility: visible;
    z-index: 1000;
}

.dropdown__heading{
    margin-bottom: 23px;
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Tahoma, sans-serif;
    color: #eb7624;
    font-size: 20px;
    line-height: 1.1em;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

header .dropdown-item{
    display: inline-block;
    padding: 0px;
    -webkit-transition: color 300ms ease, -webkit-transform 200ms ease;
    transition: color 300ms ease, -webkit-transform 200ms ease;
    transition: transform 200ms ease, color 300ms ease;
    transition: transform 200ms ease, color 300ms ease, -webkit-transform 200ms ease;
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Tahoma, sans-serif;
    color: #1b1b1b;
    line-height: 1.111em;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
    font-size: 19px;
}

header .dropdown-item:focus, .dropdown-item:hover{
    background-color: transparent;
    transform: translate(6px, 0px);
}

header .dropdown-menu .dropdown-item:last-child{
    margin-bottom: 0;
}

@media (max-width: 991px){
    header .navbar-nav .dropdown-menu,
    header .header__top .dropdown-menu{
        display: none;
        position: absolute;
        width: 100%;
        background-color: transparent;
    }

    header .nav-item{
        text-align: left;
    }

    header .navbar-nav .dropdown-menu.show,
    header .header__top .dropdown-menu.show{
        display: block;
        position: static;
        /* right: 31%;
        top: 70px; */
        animation: none;
    }

    .dropdown__heading{
        display: none;
    }

    header .dropdown-item{
        color: #fff;
    }

    .header__top .dropdown-menu{
        background-color: #fff;
        font-family: var(--font-other);
        min-width: 200px;
    }
}

/**************************************************
*                   FOOTER                        *
***************************************************/
#footer{
    background-color: transparent;
}

.footer__logo--text{
    font-family: 'Core Sans Regular', sans-serif;
    color: #abafb2;
}

.footer__logo-container{
    margin-bottom: 24px;
}

.footer__logo-link{
    overflow: hidden;
}

.footer__logo--logo{
    transform: scale (1);
    transition: transform 600ms ease;
}

.footer__logo-link:hover .footer__logo--logo{
    transform: scale(1.2);
}

.footer--heading{
    margin-bottom: 23px;
    font-family: 'Core Sans Regular', sans-serif;
    color: #eb7624;
    font-size: 20px;
    line-height: 1.1em;
    letter-spacing: 0.1em;
}

.footer__list--item{
    margin-bottom: 20px;
}

.footer__list--link{
    display: inline-block;
    -webkit-transition: color 300ms ease, -webkit-transform 200ms ease;
    transition: color 300ms ease, -webkit-transform 200ms ease;
    transition: transform 200ms ease, color 300ms ease;
    transition: transform 200ms ease, color 300ms ease, -webkit-transform 200ms ease;
    font-family: 'Core Sans Regular', sans-serif;
    color: #1b1b1b;
    line-height: 1.111em;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer__list--link:hover{
    transform: translate(6px, 0px);
    color: #eb7624;
}

.footer__col{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.social--img{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #eb7624;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 300ms ease;
}

.social--img .fab{
    color: #1b1b1b;
    transition: color 150ms ease;
}

.social--link:hover .social--img{
    background-color: var(--color-dark);
}

.social--link:hover .social--img .fab{
    color: var(--color-primary);
}

.social--link{
    display: flex;
    align-items: center;
}

.footer__logo--col{
    flex: 1 0 26%;
    padding-right: 20px;
}

.footer__info--col{
    flex: 1 0 70%;
}

footer .bottomFooter,
.bottomFooter .nav-item .nav-link{
    background: transparent;
    color: var(--color-dark);
    font-family: var(--font-other);
    font-weight: normal;
    font-size: 14px;
}


@media (max-width: 992px){
    .footer__info--col{
        flex: 1 0 95%;
    }
}

@media (max-width: 440px){
    .footer__list.flex-100{
        flex: 1 0 100%;
    }

    #footer .footer__list{
        padding-left: 0 !important;
    }
}

/*****************************************************
*                   CATEGORIES                      *
******************************************************/

.prod__name{
    margin: 10px 0;
    font-family: 'Core Sans Regular', sans-serif;
    font-size: 22px;
    line-height: 1.273em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
}

.prod__desc{
    font-family: 'Core Sans Regular', sans-serif;
    color: var(--color-dark);
    font-size: 14px;
}

.prod__sub,
.product__price{
    font-family: 'Core Sans Regular', sans-serif;
    color: #eb7624;
    font-size: 20px;
    line-height: 1.15em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-footer{
    background-color: transparent;
    border-top: 0;
}

.card-image{
    overflow: hidden;
}

@media (max-width: 767px){
    .product__price{
        font-size: 16px;
        display: block;
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

/****************************************************
*                   BOOKING BAR                     *
*****************************************************/
#booking-bar{
    position: static;
}

.booking-calendar-wrap{
    z-index: 9;
}

.ll-skin-melon .ui-datepicker .ui-datepicker-title,
.ll-skin-melon .ui-widget{
    font-family: var(--font-other);
}

@media (max-width: 767px){
    #booking-bar{
        position: relative;
    }
}

/****************************************************
*                   Activity                        *
*****************************************************/

#timepicker .time-slot{
	background: #fff;
	border: 1px solid #64C7C7;
	/* border: 0; */
    font-size: 14px;
	border-radius: 5px;
	text-align: center;
	padding: 5px;
	margin: 0;
	font-weight: bold;
	color: #333;
	display:inline-block;
	min-width: 66px;
    width: 100%;
}

#timepicker .time-slot.timeslotGreen,
#timepicker .time-slot.timeslot--off-peak{
	color: #28a745;
	border: 1px solid #28a745;
}

#timepicker .time-slot.timeslotAmber {
	color: #ffc107;
	border: 1px solid #ffc107;
}

#timepicker  .time-slot.timeslotRed {
	color: #dc3545;
	border: 1px solid #dc3545;
}

#timepicker .time-slot:hover {
    background: #64C7C7;
    text-decoration: none;
    color: #fff;
    border: 1px solid #64C7C7;

}

.list-group-item-success .fas{
    color: #155724;
}


#timepicker .time-slot.timeslot-good{
    background: #28a745 ; 
    color: #fff;
}

#timepicker .time-slot.timeslot-limited{ 
    background: #ffc107 ;
  
}
#timepicker .time-slot.timeslot-low{
    background: #dc3545 ;
    color: #fff;
}
/***************************************
*               ACCOUNT                *
****************************************/
#accountMenu{
    margin-bottom: 1rem;
}


#accountMenu .nav-item{
    background-color: var(--color-primary);
    text-align: center;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

#accountMenu .nav-item.active{
    background-color: var(--color-secondary);
}

#accountMenu .nav-item:hover{
    background-color: var(--color-dark);
}

#accountMenu .nav-link:hover{
    color: #fff;
}

/* JUST DOING BOOKING PAGES SO ALL THIS BELOW IS REDUNDENT

/*****************************************************
*                       BUTTONS                      *
*****************************************************/
/* .btn{
    border-radius: 0;
    padding: 15px;
    color: #1b1b1b;
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Core Sans Regular', sans-serif;
}

.btn:hover{
    box-shadow: 0 4px 18px 0 rgb(223, 0, 0, .6) !important;
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
    color: #1b1b1b;
}

.btn-primary{
    padding: 28px 40px;
    background-color: #eb7624;
    -webkit-transition: box-shadow 150ms ease, -webkit-transform 150ms ease;
    transition: box-shadow 150ms ease, -webkit-transform 150ms ease;
    transition: box-shadow 150ms ease, transform 150ms ease;
    transition: box-shadow 150ms ease, transform 150ms ease, -webkit-transform 150ms ease;
    font-family: 'Core Sans Regular', sans-serif;
    color: #fff;
    line-height: 1.111em;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


.full-width-btn{
    width: auto;
}

@media (max-width: 479px){
    .full-width-btn{
        width: 100%;
    }
} */

/****************************************************
*                   HEADINGS                        *
*****************************************************/
/* h1{    
    margin-top: 0px;
    margin-bottom: 9px;
    font-family: var(--font-other);
    color: #1b1b1b;
    font-size: 74px;
    line-height: 1.041em;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

h2{
    margin-top: 0px;
    margin-bottom: 14px;
    font-family: var(--font-other);
    color: #1b1b1b;
    font-size: 52px;
    line-height: 1.077em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h3{
    margin-top: 0px;
    margin-bottom: 11px;
    font-family: 'Chakra Petch', sans-serif;
    color: #1b1b1b;
    font-size: 28px;
    line-height: 1.286em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.paragraph{
    max-width: 62%;
    margin-bottom: 34px;
    font-family: 'Core Sans Regular', sans-serif;
    color: #414141;
}

@media screen and (max-width: 991px){
    h2 {
        font-size: 43px;
    }

    h1 {
        font-size: 51px;
    }
}

@media screen and (max-width: 767px){
    h2 {
        font-size: 38px;
    }

    h1 {
        font-size: 62px;
    }
}

@media screen and (max-width: 479px){
    h2 {
        font-size: 34px;
    }
} */

/****************************************************
*                       INDEX                       *
*****************************************************/
/* .home__hero{
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.home__about--btn{
    padding: 28px 40px;
    background-color: #66c5c5;
    border-color: #66c5c5;
    -webkit-transition: box-shadow 150ms ease, -webkit-transform 150ms ease;
    transition: box-shadow 150ms ease, -webkit-transform 150ms ease;
    transition: box-shadow 150ms ease, transform 150ms ease;
    transition: box-shadow 150ms ease, transform 150ms ease, -webkit-transform 150ms ease;
    font-family: 'Core Sans Regular', sans-serif;
    color: #fff;
    line-height: 1.111em;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@keyframes translate{
    from{  transform: translate3d(0px, -43.7206px, 0px) scale3d(1.1, 1.1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); }
    to{  transform: translate3d(0px, -8.64552px, 0px) scale3d(1.1, 1.1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); }
}

.home__hero--img{
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: -1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    will-change: transform
    transform-style: preserve-3d;
    animation-name: translate;
    animation-duration: 2s;
}

.home__hero--wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* The animation code */
/* @keyframes scale-up {
    from {transform: scale(0); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
  }
  
.home__hero--content{
    max-width: 742px;
    margin-bottom: 207px;
    position: absolute;
    top: 30%;
    left: 10%;
    animation-name: scale-up;
    animation-duration: .5s;
}

.hero__heading{
    font-family: 'Core Sans Regular', sans-serif;
    color: #fff;
    font-size: 66px;
}

.hero__sub{
    max-width: 623px;
    margin-bottom: 40px;
    font-family: 'Core Sans Regular', sans-serif;
    color: #fff;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.375em;
}

.hero__btn{
    margin-right: 24px;
    font-family: 'Core Sans Regular', sans-serif;
    color: #fff;
}

@media screen and (max-width: 1440px){
    .home__hero--content {
        left: 6%;
    }
}

@media screen and (max-width: 1200px){
    .home__hero--content {
        left: 2%;
    }
}

@media screen and (max-width: 991px){
    .home__hero--content{
        margin-bottom: 166px;
    }
}

@media screen and (max-width: 767px){
    .home__hero--content{
        margin-bottom: 108px;
    }

    .hero__sub{
        line-height: 32px;
    }

    .home__hero--content {
        top: 20%;
    }
}

@media screen and (max-width: 479px){
    .home__hero--content{
        margin-bottom: 106px;
    }
} */

/*************************************************
*              HOME -- about section             *
**************************************************/
/* 
.home__about{
    padding: 150px 0;
}

.home__about--video-container{
   position: relative;
   width: 100%;
   filter: blur(3px);
}

.home__about--video-gif{
    background-image: url('/assets/images/ap-parc-gif.gif');
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    padding-bottom: 50%;
    position: relative;
}

.home__about--btn{
    padding: 28px 40px;
    background-color: #66c5c5;
    border-color: #66c5c5;
    -webkit-transition: box-shadow 150ms ease, -webkit-transform 150ms ease;
    transition: box-shadow 150ms ease, -webkit-transform 150ms ease;
    transition: box-shadow 150ms ease, transform 150ms ease;
    transition: box-shadow 150ms ease, transform 150ms ease, -webkit-transform 150ms ease;
    font-family: 'Core Sans Regular', sans-serif;
    color: #fff;
    line-height: 1.111em;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home__about--btn:hover{
    box-shadow: 0 4px 18px 0 rgb(223, 0, 0, .6) !important;
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
    color: #1b1b1b;
}

.playbtn-container{
    background-color: rgba(44, 39, 39, 0.6);
    height: 150px;
    width: 150px;
    border-radius: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 150ms ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%, -50%);
    cursor: pointer;
}

.playbtn-container:hover{
    transform: scale(1.2) translate(-50%, -50%);
}

.home__about--video-play-img{
    color: #fff;
    font-size: 50px;
}

.home__about--bg{
    right: -203px;
    z-index: -1;
    width: 150%;
    height: 450px;
    background-color: #1b1b1b;
    opacity: 0.03;
    top: -12px;
    position: absolute;
}

@media screen and (max-width: 991px){
    .home__about{
        padding-bottom: 120px;
    }

    .home__about--wrapper{
        margin-top: 80px;
    }

    .home__about--bg {
        width: 115%;
        top: -180px;
        height: 750px;
    }
}


@media screen and (max-width: 767px){
    .home__about--bg {
        height: 620px;
    }

    .home__about--wrapper{
        margin-top: 60px;
    }

    .home__about{
        padding-bottom: 96px;
    }
}

@media screen and (max-width: 479px){
    .home__about--wrapper{
        margin-top: 50px;
    }

    .home__about--bg {
        height: 490px;
        top: -150px;
    }

    .home__about--btn{
        width: 100%;
    }

    .home__about {
        padding-bottom: 77px;
    }
    
} */

/***************************
*       Home about video   *
***************************/
/* .video-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.video-overlay.showing{
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

.video-close{
    cursor: pointer;
    top: 0;
    left: 90%;
    position: absolute;
    min-width: 20px;
    width: 5%;
}

.video-close .fas{
    font-size: 24px;
    color: #fff;
}

.video-video{
    max-width: 90%;
} */

/********************************************
*                   HOME PRODS              *
*********************************************/
/* 
.home__products .section--heading{
    margin-bottom: 59px;
}

.home__prod--name{
    font-size: 22px;
    line-height: 1.273em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-other);
}

.home__prod--name .name{
    color: var(--color-dark);
    transition: all .3s ease;
}

.home__prod--name:hover .name{
    color: var(--color-primary);
}

.home__prod--name .price{
    color: var(--color-primary);
}

.home__products{
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
}

.home__about--bg.prods--bg{
    right: 0;
    width: 56%;
    height: 350px;
    top: 150px;
}

@media screen and (max-width: 991px){
    .home__about--bg.prods--bg {
        width: 89%;
        height: 410px;
        top: 120px;
    }
}

@media screen and (max-width: 767px){
    .home__about--bg.prods--bg {
        width: 85%;
        height: 130px;
    }    
} */

/*********************************************
*                   NEWS                     *
*********************************************/
/* 
.home__news{
    position: relative;
}

.news__img--wrap{
    overflow: hidden;
    display: block;
}

.news__img--img{
    width: 100%;
    transform: scale(1);
    transition: transform 600ms ease;
}

.news__img--link:hover .news__img--img{
    transform: scale(1.2);
}

.news__img--link:hover .news--heading{
    color: var(--color-primary);
}

.news--heading{
    font-size: 18px;
    line-height: 1.333em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-other);
    color: var(--color-dark);
}

.news__img--wrap{
    margin-bottom: 20px;
}

.news--date{
    font-family: 'Core Sans Regular', sans-serif;
    line-height: 1.111em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-dark);
}

.news--bg{
    right: 56%;
    top: -7px;
    width: 45%;
    height: 1005px;
}

@media screen and (max-width: 991px){
    .news--bg{
        top: 80px;
        width: 80%;
        right: 45%;
    }
}

@media screen and (max-width: 479px){
    .news--bg {
        top: 80px;
        width: 100%;
        right: 30%;
    }
} */

/**************************************
*                   CTA               *
***************************************/
/* 
.cta__rectangle{
    position: relative;
}

.cta__rectangle--img{
    background-image: linear-gradient(rgba(0,0,0, .6), rgba(0,0,0, .6)), url(/assets/images/cta-image.png);
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    padding-bottom: 28%;
    position: relative;
}

.cta__rectangle--content{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.cta__heading{
    margin-top: 0px;
    margin-bottom: 14px;
    font-family: var(--font-other);
    color: #fff;
    font-size: 52px;
    line-height: 1.077em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media screen and (max-width: 991px){
    .cta__heading{
        font-size: 43px;
    }
}

@media screen and (max-width: 767px){
    .cta__heading{
        font-size: 38px;
    }
    
    .cta__rectangle--content{
        display: block;
        height: auto;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .cta__rectangle--img{
        padding-bottom: 60%;
    }
}

@media screen and (max-width: 479px){
    .cta__heading{
        font-size: 34px;
    }
}

 */

/********************************************
*                   INSTAGRAM               *
*********************************************/
/* 
.home__insta{
    padding-bottom: 40px;
}

.home__insta .section--heading{
    font-size: 28px;
    line-height: 1.286em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home__insta .square__image--wrap:hover{
    cursor: pointer;
    filter: blur(15px);
}

@media screen and (max-width: 991px){
    .home__insta .section--heading{
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 479px){
    .home__insta .section--heading{
        margin-bottom: 35px;
    }
} */

/**********************************************
*                   BANNERS                   *
***********************************************/
/* .banner__img{
    height: 85vh;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.bannerText{
    max-width: 670px;
}

.banner__heading{
    color: #fff;
}

@media (max-width: 991px){
    .banner__heading{
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }
} */



.time-slot{
	display:flex;
	flex-direction:column;
	align-content: center;
	align-items: center;
    line-height: normal;
}


.time-slot:not(.timeslotUnavailable):after{
	width:;
	content: 'Good availability';
	color: white;
	font-size:13px;
	position: relative;
	background-color:#28a745;
	border-radius:6px;
	border: 2px solid #fff !important;
	line-height: 22px;
	box-shadow: 0px 0px 3px #00000014;
	padding: 0px 5px;
	margin-top: 4px;
    display:none;
}


.timeslotAmber::after{
	width:70px !important;
	content: 'Last few';
	color: white;
	font-size:13px;
	display: inline-block;
	position: relative;
	background-color:#ffc107;
	border-radius:6px;
	border: 2px solid white !important;
	line-height: 22px;
	box-shadow: 0px 0px 3px #00000014;
}

.timeslotRed::after{
	color: white;
	width:70px !important;
	content: 'Limited';
	font-size:13px;
	display: inline-block;
	position: relative;
	background-color:#dd3b4a;
	border-radius:6px;
	border: 2px solid white !important;
	line-height: 22px;
	box-shadow: 0px 0px 3px #00000014;
}