/*VARIABLES*/
:root {
    --black: #1E1A16;
    --grey: #EEEEEE;
    --yellow: #F4E000;
    --grey: #575553;
    --white: #FEFEFE;
    --off-white: #F7F7F7;

    --top-gradient: linear-gradient(180deg, var(--white) 20%, rgba(255, 255, 255, 0.30) 70%, rgba(255, 255, 255, 0.00) 100%);
    --bottom-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 100%, rgba(255, 255, 255, 0.30) 70%, var(--white) 10%);
    --top-bottom-gradient: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 90%);

    --tile-shadow: 3px 3px 10px rgba(0,0,0,0.1);
    --border-radius: 20px;
    --icon-border: 3px solid var(--black);
    --tile-border: 1px solid rgba(101,98,96,0.2);

    --heading: 'Goldman', sans-serif;
    --copy: 'Chivo', sans-serif;
}


/*RESET*/
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
	outline: inherit;
    -webkit-transition: all .2s ease;
            transition: all .2s ease;
}
*:hover {
    -webkit-transition: all .2s ease;
            transition: all .2s ease;
}


::selection {
    color: var(--black);
    background: var(--yellow);
}
::-moz-selection {
    color: var(--black);
    background: var(--yellow);
}


/*SCROLLBAR*/
::-webkit-scrollbar {
    width:10px;
} 
::-webkit-scrollbar-track {
    background: var(--black);
} 
::-webkit-scrollbar-thumb {
	background: var(--yellow);
}

html {
    scrollbar-gutter: stable;
    color-scheme: light;
}

body {
    background:  var(--white);
    width: 100%;
    height: 100vh;
    position: relative;
    font-family: var(--copy);
    color: var(--grey);
    font-size: 18px;
    line-height: 150%;
}


/*FONTS*/
p,
li {
    margin: 20px 0 0;
    font-weight: normal;

    small {
        font-size: 15px;
    }
    strong {
        font-weight: 700;
        color: var(--black);
    }
}
ul {
    li {
        margin: 0 0 0 20px;
    }
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--heading);
    text-transform: uppercase;
    color: var(--black);
    line-height: 90%;
    margin: 20px 0 0;
}

h1 {
    font-size: 64px;
    small {
        font-size: 48px;
    }
    span {
        font-size: 24px;
    }
}
h2 {
    font-size: 48px;
}
h3 {
    font-size: 36px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 20px;
}


/*LINKS*/
a:link,
a:hover,
a:visited,
a:active {
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
}

.btn {
    display: inline-block;
    font-family: var(--heading);
    text-transform: uppercase;
    line-height: 90%;
    font-size: 20px;
    padding: 20px 30px;
    margin: 0;
    align-self: center;
    outline: none;
    border: none;
    -webkit-appearance: none;
}
.btn-black-border {
    border: var(--icon-border);
    border-radius: 40px;
}
.btn-black-border:hover,
.btn-black-border:focus {
    background: var(--black);
    color: var(--yellow);
}

.button-fixed {
    background: var(--yellow);
    padding: 10px 20px 3px 10px;
    border-radius: 40px 40px 0 40px;
    border: 2px solid var(--black);
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;

    .icon-text {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;

        .lord-icon {
            lord-icon {
                background: var(--yellow);
                border-radius: 50%;
            }
        }

        h5 {
            margin: 0;
        }
    }
}
.button-fixed:hover,
.button-fixed:focus {
    background: var(--black);
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);

    .icon-text {
        h5 {
            color: var(--yellow) !important;
        }
    }
}

.link {
    position: relative;
    padding: 0 10px;
    margin-left: -10px;
    z-index: 1;
    display: inline-block;
    font-weight: 700;
    color: var(--black);
}
.link:before {
    content: '';
    width: auto;
    height:1px;
    background: transparent;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    margin: 0 auto;
    -webkit-transition: all .2s ease;
            transition: all .2s ease;
}
.link:hover:before {
    content: '';
    background: var(--yellow);
    height: 50%;
    -webkit-transition: all .2s ease;
            transition: all .2s ease;
}


/*CONTAINERS*/
section,
.section {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}
.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
}
.content {
    padding: 100px 0;
}

.text-img-right,
.text-img-left {
    .row {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-content: center;

        .col {
            width: calc(50% - 20px);
            padding: 50px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;

            .btn {
                align-self: flex-start;
            }

            img {
                padding: 50px;
                position: relative;
                z-index: 10;
            }
        }
    }
}

.col-14 {
    width: calc(25% - 10px);
    margin: 20px 0 0 0;
}
.col-13 {
    width: calc(33.33% - 10px);
    margin: 20px 0 0 0;
}
.col-12 {
    width: calc(50% - 10px);
    margin: 20px 0 0 0;
}

header {
    width: 100%;
    background: var(--top-gradient);
    padding: 20px 0 100px;
    margin: 0;
    position: fixed;
    top: 0;
    z-index: 1000;

    img {
        width: 100%;
        max-width: 200px;
    }

    nav {
        display: flex;
        align-items: flex-start;
        gap: 25px;

        .dropdown {
            padding-right: 15px;
            background: url(../images/icons/caret-down.svg) no-repeat center right;
            background-size: 12px auto;
        }

        a {
            padding: 0 10px;
            color: var(--black);
            position: relative;
        }
        a:before {
            content: '';
            width: 100%;
            height:1px;
            background: transparent;
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
            margin: 0 auto;
            -webkit-transition: all .2s ease;
                    transition: all .2s ease;
        }
        a:hover:before,
        a:focus:before,
        a.active:before {
            content: '';
            background: var(--yellow);
            height: 50%;
            -webkit-transition: all .2s ease;
                    transition: all .2s ease;
        }
    }

    .menu {
        display: none;
        width: 40px;
        height: 40px;
        background: url(../images/icons/menu.svg) no-repeat center var(--yellow);
        background-size: contain;
        border-radius: 10px;
    }
}
.h-change {
    background: rgba(255,255,255,0.8);
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
    padding: 10px 0 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 0 0 20px 20px;

    nav {
        .dropdown {
            padding-right: 15px;
        }

        a {
            padding: 10px;
        }
    }
}

.sub-hero {
    background: var(--off-white);
    position: sticky;
    top: 0;
    z-index: -10;
    padding: 20% 0 10%;
    overflow: clip;

    h1 {
        text-shadow: 2px 2px 0 var(--white);
        -webkit-text-stroke: 1px var(--white);
                text-stroke: 1px var(--white);
        paint-order: stroke fill;
    }

    .circle {
        top: 20%;
        right: -5%;
    }

    .hero-world {
        position: absolute;
        width: 100%;
        height: auto;
        top: 20%;
        left: 0;
        opacity: 0.2;
        z-index: -1;
    }

    .hero-img {
        position: absolute;
        width: auto;
        max-width: 70%;
        max-height: 100%;
        top: 150px;
        right: 0;
    }
}
.sub-hero:before {
    content: '';
    width: 1px;
    height: 100%;
    background: var(--white);
    position: absolute;
    top: 0;
    left: 2.5%;
    z-index: 10;
}
.sub-hero:after {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--white);
    position: absolute;
    bottom: 5%;
    left: 0;
    z-index: 10;
}

main {
    position: relative;

    .wrapper {
        background: var(--white);
        overflow: hidden;
    }
}

footer {
    padding: 100px 0 50px;
    position: relative;

    .section {
        .row {
            .col {
                img {
                    width: 100%;
                    max-width: 150px;
                }
                p {
                    margin: 10px 0 0 0;
                    line-height: 100%;
                }
                p a:hover {
                    background: var(--yellow);
                    color: var(--black);
                }

                .certs {
                    img {
                        height: 100px;
                    }
                }
            }
            .col:nth-child(4) {
                p:last-child {
                    border: 1px solid var(--yellow);
                    padding: 5px 10px;
                    border-radius: 20px;
                    display: inline-block;
                }
                p:last-child:hover {
                    background: var(--yellow);
                }
            }
        }
    }

    hr {
        border: none;
        outline: none;
        width: 100%;
        height: 1px;
        background: var(--yellow);
        margin: 50px 0;
    }

    .redding {
        height: 40px;
    }
}
footer:before {
    content: '';
    width: 1px;
    height: 100%;
    background: var(--yellow);
    position: absolute;
    top: 0;
    left: 2.5%;
    z-index: 10;    
}
footer:after {
    content: '';
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--top-gradient);
    z-index: 20;
}

.container-yellow {
    background: var(--yellow);
    padding: 50px 0;
}

.container-large-img-text {
    overflow: hidden;
    position: relative;
}
.container-large-img-text:after {
    content: '';
    width: 100%;
    height: 100px;
    position: absolute;
    background: linear-gradient(transparent, rgba(0,0,0,0.05));
    left: 0;
    bottom: 0;
}

.container {
    padding: 100px 0;
    position: relative;
}
.container-white {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

.tile,
.tile-circle {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--tile-shadow);
    border-top: 1px solid var(--white);
    border-left: 1px solid var(--white);
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    position: relative;
    overflow: clip;
    padding: 30px 30px 50px 50px;
}
.tile:hover,
.tile:focus {
    border: var(--tile-border);
    box-shadow: none;

    .link:before {
        content: '';
        background: var(--yellow);
        height: 50%;
        -webkit-transition: all .2s ease;
                transition: all .2s ease;
    }
}

#tabs {
    .row {
        justify-content: flex-start;
        gap: 20px;
        margin-top: 20px;

        .tile-circle {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--tile-shadow);
            position: relative;
            overflow: clip;
            padding: 20px;
            border: none;
            width: calc(25% - 20px);

            .icon-text {
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                gap: 10px;
                position: relative;
                z-index: 10;

                img {
                    width: 50px;
                    height: 50px;
                    background: var(--white);
                    border-radius: 50%;
                }

                p {
                    font-weight: 700;
                    line-height: 110%;
                    margin: 0;
                    color: var(--black);
                }
            }
        }
        .tile-circle:hover,
        .tile-circle:focus {
            box-shadow: var(--tile-shadow);
            border: none;
        }
        .tile-circle:before {
            content: '';
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 50px solid var(--yellow);
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
                    transform: translateY(-50%);
            right: 80%;
        }
    }
}

.fleet {
    padding: 0;
    background: var(--off-white);

    img {
    }

    .text {
        padding: 20px 30px 50px 50px;
        background: var(--white);

        .tag {
            width: 40px;
            height: 40px;
            border-radius: 20px;
            background: var(--yellow);
            text-align: center;
            padding-top: 10px;
            position: absolute;
            bottom: 140px;
            left: 50px;
        }
    }
}
.fleet:hover img,
.fleet:focus img {
    animation: hoverupdown 2s ease-in-out infinite;
}


/*OBJECTS*/
img {
    max-width: 100%;
}

video {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.row-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding: 20px 0;

    .icon-text {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;

        p,
        h4,
        h5 {
            margin: 0;
            font-weight: 700;
            color: var(--black);
            line-height: 120%;
        }

        .lord-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            align-self: flex-start;

            lord-icon {                        
                width: 40px;
                height: 40px;
            }
        }
    }
}
.col-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
    padding: 20px 0;

    .icon-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 10px;
        text-align: center;
        width: 100px;

        p,
        h4 {
            margin: 0;
            color: var(--black);
            line-height: 120%;
        }

        .lord-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            align-self: center;

            lord-icon {                        
                width: 40px;
                height: 40px;
            }
        }
    }
}

.icon-border {
    border: var(--icon-border);
    padding: 7px;

    lord-icon {                        
        width: 30px !important;
        height: 30px !important;
    }
}

.yellow-lines:before {
    content: '';
    width: 1px;
    height: 100%;
    background: var(--yellow);
    position: absolute;
    top: 0;
    left: 2.5%;
    z-index: 10;
}
.yellow-lines:after {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--yellow);
    position: absolute;
    bottom: 5%;
    left: 0;
    z-index: 10;
}

.circle {
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 100px solid var(--yellow);
    position: absolute;
}

.heartbeat {
    height: 70px;
}


/*MODIFIERS*/
.left {
    text-align: left;
}
.right {
	text-align: right;
}
.center {
	text-align: center;
}
.justify {
	text-align: justify;
}

.text-right {
    justify-content: flex-end;
}

.mw-40p {
    max-width: 40%;
}
.mw-50p {
    max-width: 50%;
}
.mw-960p {
    max-width: 960px;
}

.mt-20 {
    margin-top: 20px;
}
.mt-50 {
    margin-top: 50px;
}
.mt-100 {
    margin-top: 100px;
}

.tooltip {
    overflow: visible;

    .tooltiptext {
        width: 100%;
        height: 100%;
        padding: 10px 20px;
        margin: 0;
        line-height: 110%;
        border-radius: 10px;
        background: var(--off-white);
        position: absolute;
        top: 100%;
        left: 0;
        opacity: 0;
        z-index: 100;
        display: none;
    }
}
.tooltip:hover,
.tooltip:focus {
    box-shadow: none !important;

    .tooltiptext {
        top: 0;
        opacity: 1;
    }
}


/*LIGHTBOX*/
.lightbox {
    width: 100%;
    height: 600px;
    overflow: clip;
    background: url(../images/thumbs/fleet/bombardier/video-poster.webp) no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius);
    margin: 20px 0;
    position: relative;

    img,
    video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.carousel {
    display: flex;
    align-items: center;
    gap: 10px;

    .carousel-track {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 10px;
        max-width: 80vw;
        -webkit-overflow-scrolling: touch;

        .carousel-item {
            flex: 0 0 auto;
            width: 200px;
            height: auto;
            cursor: pointer;
            border: 5px solid transparent;
            border-radius: var(--border-radius);
            overflow: clip;
        }
        .carousel-item img,
        .carousel-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0
        }        
        .carousel-item:hover,
        .active {
            border-color: var(--yellow);
        }
    }
    .carousel-track::-webkit-scrollbar {
        display: none;
    }

    .arrow {
        font-family: var(--heading);
        font-size: 2rem;
        cursor: pointer;
        user-select: none;
        color: var(--grey);
    }
    .arrow:hover,
    .arrow:focus {
        color: var(--black);
    }
}


/*MODAL*/
.modal.display {
    display: block;
}
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding: 100px 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    background: rgba(0,0,0,0.2);
    -webkit-overflow-scrolling: touch;

    .modal-content {
        margin: auto;
        padding: 20px;
        width: 90%;
        max-width: 1440px;
        background: var(--white);
        border-radius: var(--border-radius);
        box-shadow: var(--tile-shadow);
        border-top: 2px solid var(--white);
        border-left: 2px solid var(--white);
        border-right: 2px solid transparent;
        border-bottom: 2px solid transparent;
        height: auto;
        overflow: clip;
        animation-name: animatetop;
        animation-duration: 0.4s;
        position: relative;

        .fleet {
            .text {
                padding: 5px 20px 20px 20px;
            }
        }

        .portrait {
            width: 400px;
            position: relative;
            background: var(--off-white);
            border-radius: var(--border-radius);
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .portrait:after {
            content: '';
            width: 100%;
            height: 40px;
            position: absolute;
            bottom: 0;
            left: 0;
            background: var(--bottom-gradient);
        }
        .bio {
            width: calc(100% - 450px);
        }

        .close {
            font-family: var(--copy);
            font-size: 36px;
            color: var(--black);
            padding: 0;
            margin: 0;
            background: transparent;
            position: relative;
            z-index: 10;
        }
        .close:hover,
        .close:focus {
            color: var(--yellow);
            text-decoration: none;
            cursor: pointer;
        }

        nav {
            padding-top: 20px;
            position: relative;
            z-index: 10;

            a {
                display: block;
                padding: 10px 0;
                width: 100%;
                border-top: var(--tile-border);
            }
        }

        ul {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: flex-start;
            align-items: flex-start;
            list-style: none;
            padding: 10px 0;
            border-bottom: var(--tile-border);

            li {
                margin-left: 0;
            }
            li.heading {
                width: 250px;
                font-weight: 700;
                color: var(--black);
            }
            li.details {
                width: calc(100% - 300px);
                font-size: smaller;
            }
        }
    }
    .modal-content:before {
        content: '';
        width: 140px;
        height: 140px;
        border-radius: 50%;
        border: 20px solid var(--yellow);
        position: absolute;
        top: -70px;
        right: -70px;
    }
}


/*ANIMATIONS*/
@keyframes animatetop {
    from {
        bottom: -200px;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}

@keyframes hoverupdown {
    0%, 100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}
.hoverupdown {
    animation: hoverupdown 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: no-preference) {
    .fade {
        -webkit-transform: translateY(20%);
                transform: translateY(20%);
        opacity: 0.2;
        animation: fade-in linear forwards;
        animation-timeline: view();
        animation-range: entry;
    }
    @keyframes fade-in {
        to { 
            -webkit-transform: translateY(0);
                    transform: translateY(0);
            opacity: 1; 
        }
    }
}


/*MEDIA QUERIES*/
@media (max-width: 1350px) {
    footer {
        .row {
            .col:first-child {
                display: none;
            }
        }
    }
}

@media (max-width: 1250px) {
    header {
        nav {
            gap: 20px;

            a:first-child {
                display: none;
            }

            span {
                display: none;
            }
        }
    }

    .container-large-img-text {
        .content {
            background: transparent;
            box-shadow: none;
        }
        .mw-50p {
            max-width: 100%;
        }
    }

    #tabs {
        .row {
            .tile-circle {
                width: calc(33.33% - 20px);
            }
            .tile-circle:before {
                right: 80%;
            }
        }
    }

    .sub-hero {
        padding: 20% 0 5%;

        .circle {
            -webkit-transform: scale(0.8);
                    transform: scale(0.8);
            -webkit-transform-origin: top right;
                    transform-origin: top right;
            top: 20%;
        }

        .hero-img {
            top: 100px;
        }
    }

    .modal {
        .modal-content {
            .portrait {
                width: 300px;
            }
            .bio {
                width: calc(100% - 350px);
            }
        }
    }
}

@media (max-width: 1024px) {
    .col-12 {
        width: 100%;
    }

    footer {
        .row {
            .col:last-child {
                width: 100%;
                margin-top: 20px;
            }
        }
    }

    .carousel {
        .carousel-track {
            .carousel-item {
                width: 150px;
            }
        }
    }
}

@media (max-width: 960px) {
    body {
        font-size: 16px;
    }
    p,
    li {
        small {
            font-size: 14px;
        }
    }

    h1 {
        font-size: 48px;
        small {
            font-size: 36px;
        }
        span {
            font-size: 20px;
        }
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 18px;
    }

    .btn {
        font-size: 18px;
        padding: 15px 25px;
    }
    .button-fixed {
        padding: 10px 20px 3px 10px;
    }

    .text-img-right {
        padding-top: 50px;

        .row {
            flex-direction: column-reverse;

            .col {
                width: 100%;
                padding: 0;

                img {
                    padding: 0;
                }
            }
            .col:nth-child(2) {
                position: relative;
                z-index: 50;
                background: var(--white);
                border-radius: var(--border-radius);
                box-shadow: 0 -20px 40px 20px var(--white);
            }
        }
    }

    .text-img-left {
        padding-top: 50px;

        .row {
            flex-direction: column;

            .col {
                width: 100%;
                padding: 0;

                img {
                    padding: 0;
                }
            }
            .col:last-child {                
                background: var(--white);
                border-radius: var(--border-radius);
                box-shadow: 0 -20px 40px 20px var(--white);
                z-index: 50;
            }        
        }
    }

    .container-yellow {
        .row-icons {
            gap: 20px;

            .icon-text:first-child {
                display: none;
            }
            .icon-text {
                span {
                    display: none;
                }
            }
        }
    }

    .col-icons {
        gap: 30px;

        .icon-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: stretch;
            gap: 0;
            text-align: center;
            width: 100px;
        }
    }

    .fleet {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;

        img {
            width: 200px;
            height: 100%;
            padding: 20px;
            object-fit: contain;
        }

        .text {
            padding: 0 30px 30px;
            width: 100%;

            .tag {
                bottom: auto;
                top: -5px;
                left: 180px;
            }
        }
    }

    #tabs {
        .row {
            .tile-circle {
                width: calc(50% - 20px);
            }
            .tile-circle:before {
                right: 85%;
            }
        }
    }

    .sub-hero {
        padding: 30% 0 5%;

        .circle {
            -webkit-transform: scale(0.7);
                    transform: scale(0.7);
            top: 25%;
        }
    }

    .modal {
        .modal-content {
            .fleet {
                .text {
                    height: 100%;
                }
            }
            .portrait {
                width: 100%;
                max-width: 300px;
                height: 250px;
            }
            .bio {
                width: 100%;
            }
        }
    }

    .lightbox {
        height: 500px;
    }
}

@media (max-width: 768px) {
    header {
        nav {
            display: none;
        }

        .menu {
            display: block;
        }        
    }

    .button-fixed {
        span {
            display: none;
        }
    }

    .container,
    .container-white {
        padding: 50px 0;
    }

    .sub-hero {
        padding: 40% 0 5%;

        .circle {
            -webkit-transform: scale(0.6);
                    transform: scale(0.6);
            right: -20%;
        }

        .hero-img {
            top: auto;
            bottom: 0;
        }
    }

    footer {
        padding: 50px 0;
    }

    .modal {
        .modal-content {
            ul {
                li.heading {
                    width: 150px;
                }
                li.details {
                    width: calc(100% - 200px);
                    padding-left: 10px;
                }
            }
        }
    }

    .lightbox {
        height: 400px;
    }

    .carousel {
        .carousel-track {
            .carousel-item {
                width: 100px;
            }
        }
    }
}

@media (max-width: 600px) {
    #tabs {
        .row {
            .tile-circle {
                width: 100%;
            }
            .tile-circle:before {
                right: 90%;
            }
        }
    }

    footer {
        .row {
            .col {
                width: calc(50% - 20px);
                margin-top: 20px;
            }
        }
    }

    .lightbox {
        height: 300px;
    } 
}

@media (max-width: 532px) {
    h1 {
        font-size: 36px;
    }

    .btn {
        font-size: 16px;
    }
    .button-fixed {
        padding: 10px;

        h5 {
            display: none;
        }
    }

    .container-yellow {
        .btn span {
            display: none;
        }
    }

    .fleet {
        flex-wrap: wrap;

        img {
            width: 100%;
            height: 150px;
            padding: 0;
            object-fit: contain;
        }

        .text {
            padding: 10px 30px 30px;

            .tag {
                top: 110px;
                left: 30px;
            }
        }
    }

    .sub-hero {
        padding: 50% 0 5%;

        .circle {
            -webkit-transform: scale(0.4);
                    transform: scale(0.4);
            top: 30%;
            right: -20%;
        }
    }

    footer {
        .row {
            .col {
                width: 100%;
            }
        }
    }

    .modal {
        .modal-content {
            ul {
                li.heading {
                    width: 100%;
                }
                li.details {
                    width: 100%;
                }
            }
        }
    }

    .lightbox {
        height: 200px;
    }
}