/* ---------------------------------------------- */
/* GENERAL
/* ---------------------------------------------- */

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    color: #000000;    
}

a {
    color: #000000;
}

.no-underline {
    text-decoration: none;
}

a:hover.no-underline {
    text-decoration: underline;
}

a:hover {
    color: #000000;
    text-decoration: none;
    transition: 0.5s;
}

::selection { 
  background: #000000; /* WebKit/Blink Browsers */
  color: #ffffff;
}
::-moz-selection {
  background: #000000; /* Gecko Browsers */
  color: #ffffff;
}

.min-height-10 {
    min-height: 10rem;
    background-color: rgba(255,0,0,.1);
}


/* ---------------------------------------------- */
/* TYPOGRAPHY
/* ---------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;  
    font-weight: 700;
    text-transform: uppercase;
}

.h1, h1 {
    font-size: 90px;
    line-height: 82px;
}
.h2, h2 {
    font-size: 44px;
    line-height: 46px;
}

p {
    line-height: 34px;
}

@media (max-width: 991px) {
    .h1, h1 {
        font-size: 40px;
        line-height: 36px;
    }
    .h2, h2 {
        font-size: 20px;
        line-height: 20px;
    }
}



.wysiwyg a {
    text-decoration: underline;
}

.wysiwyg strong, .wysiwyg b {
    color: #000000;
}

.text-shadow {
    text-shadow: 0px 0px 18px rgba(0,0,0,0.2);
}

/* ---------------------------------------------- */
/* HOME 100% HEIGHT
/* ---------------------------------------------- */

body,html {
    height: 100%;
}

.wide {
    width:100%;
    height:100%;
    height:calc(100% - 0px);
    background-size:cover;
    background-position: center;
}

/* ---------------------------------------------- */
/* NAVBAR
/* ---------------------------------------------- */

nav {
    position: fixed;
    top: 0;
    transition: top 0.2s ease-in-out;
    width: 100%;
    -webkit-box-shadow: 0px -9px 34px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px -9px 34px 0px rgba(0,0,0,0.2);
    box-shadow: 0px -9px 34px 0px rgba(0,0,0,0.2);
}

li.nav-item.active a {
    color: #999999;
}

li.nav-item a:hover {
    color: #777777;
}

.navbar {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
}

li.nav-item {
    font-size: 13px;
    letter-spacing: 1px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-nav {
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-up {
    top: -87px;
}

@media (max-width: 991px) {

    li.nav-item {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 7px;
    }

    .navbar-nav {
        padding-top: 120px;
        padding-bottom: 240px;
    }

}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

/* START ANIMATED HAMBURGER TO CLOSE ICON */

.navbar-brand {
    margin-left: 5px;
}


.navbar-toggler {
  border: none;
  background: transparent !important;
    padding: .25rem .55rem;
}

.navbar-toggler:focus {
  outline: none;
  background: transparent !important;
}

.navbar-toggler .icon-bar {
  background-color: #000000;
  transform: rotate(0deg) translate(0px, 0px);
  transition: ease all .2s;
}

.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 1px;
}

.navbar-toggler .icon-bar+.icon-bar {
  margin-top: 4px;
}

.icon-bar:nth-child(2) {
  width: 22px;
  transition: ease all .2s;
}

.navbar-toggler:hover>.icon-bar:nth-child(2) {
  width: 22px;
  transition: ease all .2s;
}

.navbar-toggler:active>.icon-bar:nth-child(2) {
  width: 22px;
  transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
  opacity: 0;
  transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  transition: ease all .2s;
}

/* END ANIMATED HAMBURGER TO CLOSE ICON */

.after-nav {
    margin-bottom: 81px;
}
@media (max-width: 991px) {
    .after-nav {
        margin-bottom: 71px;
    }
}

/* ---------------------------------------------- */
/* BACK TO TOP
/* ---------------------------------------------- */

#backToTop {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.25);
}

#backToTop:hover {
    opacity: 0.8;
}



/* ---------------------------------------------- */
/* SLICK CAROUSEL
/* ---------------------------------------------- */


    .slick-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .main-slider {
        position: relative;
        width: 100%;
        height: 44vw;
        min-height: 8vw;
        margin-bottom: 50px;
        opacity: 0;
        visibility: hidden;
        transition: all 1.2s ease;
        background-color: rgba(255,255,255,0.7);
    }
    .main-slider.slick-initialized {
        opacity: 1;
        visibility: visible;
    }

    .slick-slide {
        position: relative;
        height: 48vw;
    }
    .slick-slide::before {

        z-index: 1;
    }
    .slick-slide video {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .slick-slide iframe {
        position: relative;
        pointer-events: none;
    }
    .slick-slide figure {
        position: relative;
        height: 100%;
    }
    .slick-slide .slide-image {
        opacity: 0;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: all .8s ease;
    }
    .slick-slide .slide-image.show {
        opacity: 1;
    }
    .slick-slide .image-entity {
        width: 100%;
        opacity: 0;
        visibility: hidden;
    }
    .slick-slide .loading {
        position: absolute;
        top: 44%;
        left: 0;
        width: 100%;
    }
    .slick-slide .slide-media {
        -webkit-animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
        animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
    }
    .slick-slide.slick-active {
        z-index: 1;
    }
    .slick-slide.slick-active .slide-media {
        -webkit-animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
        animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
    }


.slick-prev, .slick-next {
    top: 45%;
}

.slick-next:before {
    content: url(../images/btn-arrow-right.png);
    position: absolute;
    transform: scale(.5);
}

.slick-prev:before {
    content: url(../images/btn-arrow-left.png);
    position: absolute;
    transform: scale(.5);
}

.slick-next {
    right: 130px;
    z-index: 1;
}

.slick-prev {
    left: 0px;
    z-index: 1;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #ffffff;
}

.slick-dots li button:before {
    font-size: 12px;
    opacity: .25;
    color: #ffffff;
}

.slick-dots {
    bottom: 10px;
}


/* ---------------------------------------------- */
/* BUTTONS
/* ---------------------------------------------- */


.btn {
    font-weight: 700;
    padding: .475rem 1.55rem;
    font-size: 13px;
    border-radius: 0;
    letter-spacing: 3px;
}

.btn-primary {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
}

.btn-primary:hover {
    color: #fff;
    background-color: #333333;
    border-color: #666666;
}

.btn-outline-black {
    color: #000000;
    border-color: #000000;
}

.btn-outline-white {
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-black:hover {
    color: #333333;
    background-color: #f5f5f5;
    border-color: #f5f5f5;
}

.btn-outline-white:hover {
    color: #f5f5f5;
    background-color: #222222;
    border-color: #222222;
}

/* ---------------------------------------------- */
/* TEXT COLOURS
/* ---------------------------------------------- */

.text-light-grey {
    color: #f5f5f5;
}

.text-mid-grey {
    color: #bbbbbb;
}

.text-dark-grey {
    color: #666666;
}

.text-white {
    color: #ffffff;
}

.text-black {
    color: #000000;
}

.text-off-black {
    color: #191919;
}

/* ---------------------------------------------- */
/* BACKROUND COLOURS
/* ---------------------------------------------- */

.bg-light-grey {
    background: #f5f5f5;
}

.bg-mid-grey {
    background: #bbbbbb;
}

.bg-dark-grey {
    background: #666666;
}

.bg-white {
    background: #ffffff;
}

.bg-black {
    background: #000000;
}

.bg-off-black {
    background: #191919;
}


/* ---------------------------------------------- */
/* LAYOUT TEXT COLS 2
/* ---------------------------------------------- */

@media screen and (min-width: 991px) {
    .text-columns-2 {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 100px;
        -moz-column-gap: 100px;
        column-gap: 100px;
    }
}

/* ---------------------------------------------- /*
 * EMBED FOR RESPONSIVE YOUTUBE VIDEO
/* ---------------------------------------------- */

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0; overflow: hidden;
    max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ---------------------------------------------- */
/* FOOTER
/* ---------------------------------------------- */

footer {
    color: #777777;
}
.ftr-divider {
    color: #777777;
    padding: 0 10px
}
a.ftr-links {
    color: #777777;
}
a.ftr-links:hover {
    color: #ffffff;
    transition: 0.5s;
}

/* ---------------------------------------------- */
/* LAYOUT - PADDING
/* ---------------------------------------------- */


.pt6, .ptd6 {
    padding-top: 120px;
}
.pt5, .ptd5 {
    padding-top: 100px;
}
.pt4, .ptd4 {
    padding-top: 80px;
}
.pt3, .ptd3 {
    padding-top: 60px;
}
.pt2, .ptd2 {
    padding-top: 40px;
}
.pt1, .ptd1 {
    padding-top: 20px;
}
.pb6, .pbd6 {
    padding-bottom: 120px;
}
.pb5, .pbd5 {
    padding-bottom: 100px;
}
.pb4, .pbd4 {
    padding-bottom: 80px;
}
.pb3, .pbd3 {
    padding-bottom: 60px;
}
.pb2, .pbd2 {
    padding-bottom: 40px;
}
.pb1, .pbd1 {
    padding-bottom: 20px;
}
.psn {
    padding-left: 0px;
    padding-right: 0px;
}
.ps1 {
    padding-left: 20px;
    padding-right: 20px;
}
.ps2 {
    padding-left: 30px;
    padding-right: 30px;
}
.ps3 {
    padding-left: 40px;
    padding-right: 40px;
}
.pln {
    padding-left: 0px;
}
.prn {
    padding-right: 0px;
}

/* ---------------------------------------------- */
/* LAYOUT
/* ---------------------------------------------- */

@media (min-width: 768px){

    .tdc {
        text-align: center;
    }

    .tdr {
        text-align: right;
    }

}


/* ---------------------------------------------- */
/* SMALLER DEVICES
/* ---------------------------------------------- */

@media (max-width: 767px){

    .pt6, .ptm6 {
        padding-top: 60px;
    }
    .pt5, .ptm5 {
        padding-top: 50px;
    }
    .pt4, .ptm4 {
        padding-top: 40px;
    }
    .pt3, .ptm3 {
        padding-top: 30px;
    }
    .pt2, .ptm2 {
        padding-top: 20px;
    }
    .pt1, .ptm1 {
        padding-top: 10px;
    }
    .pb6, .pbm6 {
        padding-bottom: 60px;
    }
    .pb5, .pbm5 {
        padding-bottom: 50px;
    }
    .pb4, .pbm4 {
        padding-bottom: 40px;
    }
    .pb3, .pbm3 {
        padding-bottom: 30px;
    }
    .pb2, .pbm2 {
        padding-bottom: 20px;
    }
    .pb1, .pbm1 {
        padding-bottom: 10px;
    }
    .ptd6, .ptd5, .ptd4, .ptd3, .ptd2, .ptd1 {
        padding-top: 0;
    }
    .pbd6, .pbd5, .pbd4, .pbd3, .pbd2, .pbd1 {
        padding-bottom: 0;
    }
    .tmc {
        text-align: center;
    }

}

/* ---------------------------------------------- /*
 * LARGE BREAK POINT
/* ---------------------------------------------- */

@media only screen and (min-width : 1440px) {
    .container {
        max-width: 1300px;
    }
}
