/****************
*** GENERAL ***
****************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:focus,
button svg:focus {
    outline: -webkit-focus-ring-color auto 5px!important;
}

.clearfix {
    clear: both;
    width: 100%;
    display: block;
}

.sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

body {
    font-family: var(--MuseoR);
    color: var(--darkgreen); 
    background-color: var(--beige);
    font-size: 16px;
    font-size: 1rem;
}

strong {
    font-family: var(--MuseoB);
}

.lead-p {
    font-size: 1.2rem;
}

.small-p {
    font-size: 0.875rem;
}

a:not(.button):-webkit-any-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: normal;
}

h1,
.h1 {
    font-family: var(--Univers);
    font-size: 5.625rem;
    line-height: 5.344rem;
    text-transform: uppercase;
}

h2,
.h2 {
    font-family: var(--Univers);
    font-size: 3.516rem;
    line-height: 0.9;
    text-transform: uppercase;
}

h3,
.h3 {
    font-family: var(--Univers);
    font-size: 2.344rem;
    line-height: 0.9;
    text-transform: uppercase;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--Univers);
    font-size: 1.875rem;
    line-height: 1.25;
    text-transform: uppercase;
}

buttongroup {
    display: block;
}

/*********************
*** VIDEO CONTROLS ***
*********************/
.video-controls button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.video-controls button svg {
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-controls button[data-state="play"] .play-icon {
    display: none;
}

.video-controls button[data-state="play"] .pause-icon {
    display: block;
}

.video-controls button[data-state="pause"] .play-icon {
    display: block;
}

.video-controls button[data-state="pause"] .pause-icon {
    display: none;
}

/**************
*** Buttons ***
***************/
.button-primary {
    padding: 22.5px 50px;
    border-radius: 50px;
    background-color: var(--green);
    text-decoration: none;
    color: var(--white)!important;
    display: inline-block;
    border: none;
    font-size: inherit;
    position: relative;
    z-index: 99;
}

.button-primary.button-color__green {
    background-color: var(--green);
}

.button-primary.button-color__darkgreen {
    background-color: var(--darkgreen);
}

.button-primary.button-color__orange {
    background-color: var(--orange);
}

.button-primary.button-color__green:hover,
.button-primary.button-color__darkgreen:hover,
.button-primary.button-color__orange:hover {
    background-color: var(--gold);
    color: var(--black)!important;
}

/****************
*** HEADER ***
****************/
#header-bar {
    height: 10px;
    background-color: var(--darkgreen);
}

/****************
***** HERO *****
****************/
#landing-hero {
    position: relative;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 75px 0 100px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: var(--darkbrown);
    opacity: 0.6;
    z-index: 10;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#landing-hero .video-controls {
    position: absolute;
    bottom: 15px;
    right: 3%;
    transform: translate(-50%, -50%);
    z-index: 20;
}


#landing-hero .video-controls button {
    height: 20px;
    width: 35px;
}

#landing-hero .video-controls .pause-icon {
   height: 16.75px;
}

#landing-hero .video-controls .play-icon {
    width: 16.75px;
    margin-left: 10px;
}

.hero-content {
    position: relative;
    z-index: 15;
    text-align: center;
    color: var(--white);
}

.hero-content img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 100px;
}

.hero-content h1 {
    margin-bottom: 125px;
    position: relative;
}

.hero-content h1 #landing-hero__name {
    color: var(--gold);
}

.hero-content h1 #landing-hero__name > span {
    color: var(--white);
}

.hero-content p {
    font-size: 1.375rem;
}

.hero-scroll {
    position: relative;
    z-index: 15;
    text-align: center;
    clear: both;
    width: 100%;
    margin-top: 75px;
}

.hero-scroll button {
    border: none;
    padding: 0;
    background: transparent;
}

.hero-scroll img {
    height: 40px;
    width: 23px;
    object-fit: contain;
    cursor: pointer;
}

/*********************
***** JUMP LINKS *****
*********************/
div#landing-jumplinks {
    background-color: var(--darkgreen);
    padding: 15px 0 18px;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

div#landing-jumplinks ul {
    list-style: none;
    margin-left: -30px;
}

div#landing-jumplinks ul li {
    display: inline-block;
    padding: 0 0 0 30px;
}

div#landing-jumplinks ul li a {
    color: var(--white);
}

/******************
***** GALLERY *****
******************/
#landing-gallery {
    position: relative;
    text-align: center;
}

#landing-gallery hr {
    transform: rotate(90deg);
    background-color: var(--darkgreen);
    width: 325px;
    height: 1px;
    position: absolute;
    top: 62px;
    z-index: 20;
    border: none;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.gallery-video {
    /* width: 50%; */
    margin: 135px auto 0;
    position: relative;
    z-index: 20;
}

.gallery-video video {
    width: 100%;
    object-fit: cover;
}

.gallery-video .video-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.gallery-video .video-controls button {
    height: 60px;
    width: 60px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    transition: 2s ease;
}

.gallery-video .video-controls button[data-state=play] {
    height: 25px;
    width: 25px;
    top: 90%;
    left: 5%;
}

.gallery-video .video-controls .play-icon {
    height: 60px;
}

.gallery-video .video-controls button[data-state=play] .pause-icon {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/** Images **/
.gallery-floatingImages {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.gallery-floatingImages > div {
    width: 50%;
    display: inline-block;
    position: relative;
}

.gallery-floatingImages > div > img {
    position: absolute;
}

.gallery-floatingImages__left img:first-of-type {
    width: 12%;
    left: 0%;
    top: 32px;
    z-index: 5;
    min-width: 65px;
}

.gallery-floatingImages__left img:nth-of-type(2) {
    width: 23.75%;
    top: 52px;
    left: 37.5%;
    z-index: 5;
    min-width: 110px;
}

.gallery-floatingImages__left img:nth-of-type(3) {
    width: 24%;
    left: 5%;
    top: 220px;
    z-index: 10;
    min-width: 112px;
}

.gallery-floatingImages__left img:nth-of-type(4) {
    width: 36%;
    top: 295px;
    left: 19.5%;
    z-index: 5;
    min-width: 169px;
}

.gallery-floatingImages__right img:first-of-type {
    width: 23.5%;
    right: 63.25%;
    top: 70px;
    min-width: 108px;
}

.gallery-floatingImages__right img:nth-of-type(2) {
    width: 25.5%;
    right: 15.25%;
    top: 160px;
    min-width: 123px;
}

.gallery-floatingImages__right img:nth-of-type(3) {
    width: 19%;
    right: 0;
    top: 220px;
    min-width: 76px;
}

.gallery-floatingImages__right img:nth-of-type(4) {
    width: 36%;
    top: 315px;
    right: 25%;
    z-index: 10;
    min-width: 169px;
}

.gallery-floatingImages__right img:nth-of-type(5) {
    width: 36%;
    right: 57.75%;
    top: 355px;
    z-index: 5;
    min-width: 169px;
}

/*****************
***** ACCEPT *****
*****************/
#landing-accept {
    margin: 95px auto 50px;
    text-align: center;
    padding: 60px 40px;
    display: inline-block;
    background-color: var(--beige);
    border: 2px solid var(--green);
    border-radius: 15px;
}

#landing-accept > h2,
#landing-accept > h3 {
    margin-bottom: 24px;
}

#landing-accept > p {
    max-width: 545px;
    margin: 0 auto 35px;
}

.application-method > p {
    margin-bottom: 35px;
}

.application-method buttongroup > button {
    padding: 18px 42px;
}

.application-method buttongroup > span {
    display: inline-block;
    padding: 0 22px;
}

.application-questions {
    margin-top: 42px;
}

.application-questions > p:first-of-type {
    margin-bottom: 14px;
}

/** Accept Instructions **/
.applied-options {
    padding: 40px 5% 0;
    margin: 0 auto;
    display: none;
}

.applied-options > div {
    background-color: var(--exdarkgreen);
    padding: 30px 5%;
    border-radius: 12px;
    display: none;
    color: var(--white);
}

.applied-options > div.active {
    display: block;
}

.applied-options > div#apply-trentDirect {
    border: 1px solid var(--green);
}

.applied-options > div h3 {
    margin-bottom: 14px;
}

.applied-options > div p:not(:last-of-type) {
    margin-bottom: 10px;
}

.applied-options > div p:first-of-type {
    margin-bottom: 20px;
}

.animated-container {
    position: relative;
    width: 100%;
    height: 115px;
}

.support-animatedText {
    position: absolute;
    top: 0;
    height: 85px;
    left: 0;
    right: 0;
    overflow: hidden;
    background: url(../../assets/images/support-animatedText.svg) repeat-x;
    margin-left: -10px;
    background-size: auto 100%;
}

.support-animatedText img {
    height: inherit;
    width: 114%;
    object-fit: cover;
    margin-left: -1.5%;
}

/** Accept Scroll Button **/
#landing-gallery .hero-scroll {
    margin: 0 0 60px;
}

/******************
***** Support *****
******************/
#landing-support {
    background-color: var(--exdarkgreen);
    padding: 65px 0;
    position: relative;
    color: var(--white);
}

.support-header {
    max-width: 955px;
    margin: 0 auto 45px;
}

.support-header h2 {
    color: var(--lightgold);
    margin-bottom: 50px;
}

.support-header p {
    max-width: 400px;
}

/** Support - Cards **/
.support-cards {
    display: flex;
    flex-wrap: wrap;
    max-width: 970px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.support-cards .support-card {
    width: calc(33.333% - 15px);
    margin: 0 7.5px;
    max-width: 345px;
    text-align: center;
}

.support-cards .support-card .card {
    position: relative;
}

.support-cards .card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
}

.support-cards .card .button-primary {
    padding: 22.5px 30px;
    font-size: 0.875rem;
    position: absolute;
    bottom: 15px;
    left: 16px;
    right: 16px;
}

.support-cards .support-card label {
    padding: 12px 16px 0;
    display: block;
    font-size: 0.875rem;
}

/** Support - Steps **/
.support-steps {
    max-width: 955px;
    margin: 0 auto;
    padding: 55px 0 10px;
}

.support-steps h2 {
    margin-bottom: 12px;
    color: var(--lightgold);
}

.support-steps p {
    margin-bottom: 24px;
    line-height: 1.5;
}

.support-steps ul {
    margin: 0 0 0 -10px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
}

.support-steps ul li {
    padding: 19px;
    width: calc(33.333% - 20px);
    border: 1px solid;
    float: left;
    margin: 0 10px 20px;
    border-radius: 12px;
}

/****************
***** Views *****
****************/
#landing-views {
    background-color: var(--blue);
    padding: 75px 0;
    position: relative;
    color: var(--white);
}

.views-header {
    max-width: 955px;
    margin: 0 auto 45px;
}

.views-header h2 {
    color: var(--lightgold);
    margin-bottom: 50px;
}

.views-header p {
    max-width: 400px;
}

/** Views - Slider **/
.views-slider {
    position: relative;
}
#views-slider__slides .slide.slick-slide {
    padding: 0 15px 0 0;
}

#views-slider__slides .slide.slick-slide img {
    width: 100%;
    height: 345px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 15px;
}

#views-slider__slides .slide.slick-slide label {
    font-size: 0.75rem;
}

.views-slider__navigation {
    position: absolute;
    right: 0;
    left: 0;
    top: -60px;
    max-width: 955px;
    margin: 0 auto;
    text-align: right;
}

.views-slider__navigation__button {
    position: relative;
    background-color: transparent;
    border: none;
    padding: 0;
    height: 18px;
    width: 24px;
    margin: 0 8px;
    cursor: pointer;
}

.views-slider__navigation__button.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.views-slider__navigation__button:hover img {
    filter: brightness(100%) grayscale(1);
}

/**********************
***** Perspective *****
**********************/
#landing-perspective {
    background-color: var(--exdarkgreen);
    color: var(--white);
    padding: 255px 0 185px;
    text-align: center;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

#landing-perspective::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 22.5%;
    right: 22.5%;
    bottom: 20px;
    background-image: url(../../assets/images/trent-emblem.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 5;
    height: calc(100% - 40px);
}

.perspective-text {
    display: block;
    position: relative;
    z-index: 10;
}

#landing-perspective .button {
    margin-top: 30px;
}

/*****************
***** Footer *****
*****************/
#footer {
    background: #154734;
    background: var(--green);
    color: #fff;
    font-size: .9rem;
    padding: 2rem 0 1rem;
    text-align: center
}

#footer .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
    max-width: 1140px;
}

#footer .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

#footer h2 {
    font-size: 1rem;
    font-family: var(--MuseoR);
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

#footer a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: none
}

#footer a[data-label="Logo"],
#footer .list-social a {
    border: none;
}

#footer a:hover {
    color: var(--gold);
}

#footer p {
    margin-bottom: 1rem;
}

#footer .list-social {
    margin-bottom: 0;
    margin-left: -5px
}

#footer .list-social a {
    font-size: 1.7rem;
    font-weight: 400
}

#footer .align-items-center {
    align-items: center!important;
}

@media (min-width:992px) {
    #footer {
        text-align: left
    }
}

.footer-logo {
    margin-bottom: 1rem;
    width: 272px
}

.footer-tagline {
    color: #c0b561;
    color: var(--gold);
    font-size: 1.05rem;
    text-transform: uppercase;
    font-weight: 600
}

.footer-address {
    padding-top: 20px;
    margin-bottom: 1rem
}

.land-acknowledgement {
    font-size: .8rem;
    margin-bottom: 0;
    margin-top: 1.6rem
}

#footer-menu {
    background-color: var(--black);
    text-align: center;
    font-size: .9rem;
    padding: .5rem 0
}

#footer-menu a {
    color: #ddd;
    padding: 0 1rem
}

#footer-menu a:hover {
    color: var(--white);
    text-decoration: underline;
    box-shadow: none
}

#footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

#footer-menu li {
    width: 50%;
    margin: .5rem 0
}

#footer-menu li:last-child {
    width: 100%
}

#footer .list-inline {
    padding-left: 0;
    list-style: none;
}

#footer .list-inline-item {
    display: inline-block;
}

#footer .list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}



#footer .col-md-4,
#footer .col-md-7,
#footer .col-md,
#footer .col-md-6  {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
}

@media (min-width: 768px) {
    #footer .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    #footer .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    #footer .offset-md-1 {
        margin-left: 8.33333%;
    }

    #footer .col-md {
        flex-basis: 0;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%;
    }

    #footer .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}