/*--------------------------------------------------------------
----------------------------------------------------------------

    / michaeleverard.com
    / 02.18.2023

----------------------------------------------------------------
----------------------------------------------------------------

    / 01    -   Fonts
    / 02    -   Variables
    / 03    -   Settings
    / 04    -   Creative - Top Section
    / 05    -   Creative - Body Section
    / 06    -   One Item - Full Size Creative
    / 07    -   Two Items - Side-by-Side Creative
    / 08    -   Footer

----------------------------------------------------------------
--------------------------------------------------------------*/


/* -----------------------------
01 - Fonts
------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* -----------------------------
02 - Variables
------------------------------*/

:root {
    --white: #ffffff;
    --lt-gray: #e6e6e6;
    --gray: #333333;
    --dk-gray: #282828;
    --black: #000000;
    --lt-footer: #a5a5a5;
    --dk-footer: #222222;
    --text: #4c4c4c;
    --type: #808080;
    --black-alpha-30: rgba(21, 41, 60, 0.30);
    --black-alpha-70: rgba(21, 41, 60, 0.70);
    --black-alpha-80: rgba(21, 41, 60, 0.80);
    --backdrop-blur: blur(5px);
}

/* -----------------------------
03 - Settings
------------------------------*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}
html {
    scroll-behavior: smooth;
}
body {
    width: 100vw;
    min-height: 100vh;
    background-color: var(--white);
    overflow-x: hidden;
    overflow-y: scroll;
}
li {
    list-style: none;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
a {
    text-decoration: none;
}
p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--text);
}
h1, h2, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
h1 {
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 20px;
}
h5 {
    font-size:14px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: auto;
}
.row {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container-wrap {
    max-width: 1200px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
    align-items: center;
    justify-content: center;
}
.container-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.separator {
    padding: 50px 0;
    margin-left: auto;
    margin-right: auto;
}

/*   Settings // Tablet   */
/*----------------------------*/

@media(max-width: 1000px) {
    .container-wrap {
        max-width: 1000px;
        padding: 0 10px;
    }
    .separator {
        padding: 30px 0;
        scale: 70%;
    }
}

/*   Settings // Mobile   */
/*----------------------------*/

@media(max-width: 600px) {
    h1 {
        font-size: 18px;
        letter-spacing: 10px;
    }
    h5 {
        font-size:10px;
        letter-spacing: 2px;
    }
}

/* -----------------------------
04 - Creative - Top Section
------------------------------*/

.creative-top {
    width: auto;
    margin-top: 200px;
    text-align: center;
}
.details-bottom {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
}
.details-left {
    width: 74%;
    padding-right: 30px;
}
.details-right{
    width: 24%;
    padding-left: 30px;
}
.creative-top h1 {
    color: var(--dk-gray);
    padding-bottom: 10px;
}
.creative-top p {
    font-size: 14px;
    color: var(--text);
    line-height: 24px;
    letter-spacing: 1px;
}
.creative-top p span {
    font-weight: 700;
    color: var(--black);
}
.creative-top .button {
    padding: 60px 0 0 0;
}
.details-line {
    background-color: var(--gray);
    opacity: .6;
    align-items: center;
    height: 90px;
    width: 4px;
}
.details-left p, .details-right p {
    text-align: left;
    font-weight: 400;
    color: var(--gray);
    opacity: 0.8;
}
.details-left p span, .details-right p span {
    font-weight: 900;
    color: var(--black);
    opacity: 1;
}

/*   Creative - Top // Tablet-mini   */
/*-----------------------------------*/

@media(max-width: 900px) {
    .creative-top {
        margin-top: 100px;
    }
    .details-bottom {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }
    h1 {
        font-size: 50px;
        padding-bottom: 20px;
    }
    .details-top {
        margin-bottom: 10px;
    }
    .details-left {
        width: 90%;
        padding-right: 0px;
        margin: 0 60px 30px 60px;
        text-align: center;
    }
    .details-left p {
        text-align: center;
    }
    .details-right{
        width: 100%;
        padding-left: 0;
    }
    .right-1 p, .right-2 p, .right-3 p {
        text-align: center;
    } 
    .details-line {
        display: none;
    }
    .creative-top .button {
        padding: 20px 0 0 0;
    }
}

/*   Creative - Top // Mobile   */
/*----------------------------*/

@media(max-width: 600px) {
    h1 {
        font-size: 30px;
    }
    .creative-top p {
        font-size: 12px;
        line-height: 18px;
    }
    .details-top p {
        padding-left: 30px;
        padding-right: 30px;
    }
    .details-bottom {
        margin-bottom: 40px;
    }
    .details-left {
        width: 80%;
    }
}

/* -----------------------------
05 - Creative - Bottom Section
------------------------------*/

.creative-bottom {
    width: auto;
}
.center-type p {
    text-align: center;
}
.item {
    padding-bottom: 30px;
}
.item-end {
    padding-bottom: 100px;
}

/* -----------------------------
06 - One Item - Full Size
------------------------------*/

.item p, .item-end p {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .5px;
    color: var(--type);
}

/* VIDEO - Full Size */

.video-1 {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.video-1 iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

/* IMAGE - Full Size */

.image-1 {
    max-width: 1140px;
    height: auto;
}

/* IMAGE - Vertical Center */

.image-3 {
    max-width: 1140px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.image-V {
    max-width: 700px;
    height: auto;
}

/* -----------------------------
07 - Two Items - Side-by-Side
------------------------------*/

.item-2 {
    display: flex;
    max-width: 1140px;
}
.item-2 p {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
    color: var(--type);
    letter-spacing: .5px;
    padding-bottom: 30px;
}
.info-a {
    position: relative;
    width: 50%;
    margin-right: 15px;
}
.info-b {
    position: relative;
    width: 50%;
    margin-left: 15px;
}
.video-2a iframe, .video-2b iframe,
.video-3a iframe, .video-3b iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

/* VIDEO - (1080x1080) - Side-by-Side */

.video-2a {
    position: relative;
    width: 50%;
    margin-right: 15px;
    padding-bottom: 48%;
}
.video-2b {
    position: relative;
    width: 50%;
    margin-left: 15px;
    padding-bottom: 48%;
}

/* VIDEO - (1920x1080) - Side-by-Side */

.video-3a {
    position: relative;
    width: 50%;
    margin-right: 15px;
    padding-bottom: 28%;
}
.video-3b {
    position: relative;
    width: 50%;
    margin-left: 15px;
    padding-bottom: 28%;
}

/* IMAGE - Side-by-Side */

.image-2a {
    position: relative;
    width: 50%;
    margin-right: 15px;
}
.image-2b {
    position: relative;
    width: 50%;
    margin-left: 15px;
}

/*   Creative - Bottom // Tablet Mini   */
/*--------------------------------------*/

@media(max-width: 900px) {
    .item {
        padding-bottom: 10px;
    }
    .item-end {
        padding-bottom: 60px;
    }
    .item p, .item-end p {
        margin-top: 7px;
        font-size: 12px;
        letter-spacing: 0px;
    }
    .image-1 {
        max-width: 900px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .image-3 {
        max-width: 500px;
        height: auto;
        margin-right: auto;
        margin-left: auto;
    }
    .image-V {
        max-width: 500px;
        height: auto;
        padding-left: 30px;
        padding-right: 30px;
    }
    .fullScreenV {
        position: relative;
        padding-bottom: 100%;
        height: 0;
    }
    .creative-bottom p {
        line-height: 16px;
    }
}

/*   Creative - Bottom // Mobile   */
/*----------------------------*/

@media(max-width: 500px) {
    .item {
        padding-bottom: 10px;
    }
    .item-end {
        padding-bottom: 30px;
    }
    .item p, .item-end p, .item-2 p {
        margin-top: 5px;
        font-size: 11px;
    }
    .item-2 {
        flex-direction: column;
        align-items: center;
    }
    .image-2a, .image-2b {
        position: relative;
        width: 100%;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }
    .item-2 p {
        margin-top: 5px;
        padding-bottom: 10px;
    }
    .image-1 {
        max-width: 600px;
        height: auto;
    }
    .image-3 {
        max-width: 300px;
        height: auto;
    }
    .image-V {
        max-width: 300px;
        height: auto;
        padding-left: 30px;
        padding-right: 30px;
    }
    .video-2a, .video-2b {
        position: relative;
        width: 100%;
        margin-right: 0;
        margin-left: 0px;
        margin-bottom: 20px;
        padding-bottom: 100%;
    }
    .info-a, .info-b {
        display: none;
    }
    .video-3a, .video-3b {
        position: relative;
        width: 100%;
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 10px;
        padding-bottom: 60%;
    }
}

/* -----------------------------
08 - Footer
------------------------------*/

#footer {
    padding: 50px;
    margin: o auto;
    background-color: var(--dk-footer);
    text-align: center;
}
#footer p {
    color: var(--lt-footer);
    font-size: 12px;
}
#footer p br {
    display: none;
}
.backToTop {
    color: var(--lt-footer);
    scroll-behavior: smooth;
}
.backToTop a, .backToTop h5 {
    color: var(--lt-footer);
}
.backToTop a:hover, .backToTop h5:hover {
    color: var(--white);
}
.footerSocial {
    list-style: none;
    padding: 20px;
}
#footer ul li {
    display: inline;
    margin: 0 10px;
}
#footer ul li a {
    color: var(--lt-footer);
}
#footer li a:hover {
    color: var(--white);
}

/*   Footer // Tablet   */
/*----------------------------*/

@media(max-width: 900px) {
    #footer {
        padding: 20px;
    }
}

/*   Footer // Mobile   */
/*----------------------------*/

@media(max-width: 500px) {
    .footerSocial {
        visibility: hidden;
        display: none;
    }
    .backToTop {
        padding-bottom: 20px;
    }
    #footer p br {
        display: block;
    }
    #footer p {
        line-height: 18px;
    }
}