/* globals */

body {
	margin: 0;
	font-family: inter;
	background: #fff;
	color: #594E4F;
	overflow-x: hidden;
}

.no-scroll {
	overflow: hidden;
}

a {
	text-decoration: none
}

/* global - buttons */

.logo {
    font-weight: 800;
    color: #BD1B21;
    font-size: 26px;
    line-height: 1em;
    letter-spacing: -.02em;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item {
    padding: 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-weight: 700;
	color: #594E4F;
    transition: .15s all;
}

.nav-item:hover {
    color: #BD1B21;
}

.section {
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: center;
    position: relative;
}

.anchor {
    display: block;
    position: absolute;
    top: -115px;
}

.section-header {
    text-align: center;
    position: fixed;
    width: 100%;
    background: rgba(255,255,255,.9);
    z-index: 6;
    backdrop-filter: blur(4px);
    padding-top: 16px;
}

.slides .section-slide {
    border-color: blue;
    min-height: 100vh;
}

.container {
    width: 1440px;
    padding: 128px 64px;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header .container {
	width: 1440px;
	padding: 0 64px;
	max-width: 100%;
	box-sizing: border-box;
	position: relative;
}

.slide-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 64px;
}

.slides .slide-content {
    margin-top: 115px;
}

.slide-heading {
    font-weight: 800;
    font-size: 40px;
    line-height: 1em;
    letter-spacing: -.02em;
    max-width: 304px;
    margin-right: 24px;
}

.slide-copy {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: .02em;
    max-width: 304px;
    margin: 4px 24px 0 0;
}

.slide-stack {
    display: flex;
    flex-direction: column;
}

.slide-stack .slide-heading {
    margin: 0 0 12px 0;
}

.slide-stack .slide-copy {
    margin: 0;
}

.centered {
    align-items: center;
    text-align: center;
}

.slide-diagram {
    max-width: 100%;
}

.section-gemini {
    background: #594E4F;
    color: #fff;
}

.section-gemini .slide-copy {
    margin-bottom: 12px;
}

.section-gemini .slide-heading,
.section-gemini .slide-copy {
    margin-right: 0;
}

.section-gemini .slide-img {
    margin-right: 24px;
}

.slides .section-slide {
    position: sticky;
    top: 0;
    opacity: 0;
    transition: .2s opacity;
    background: #fff;
}

.slides .section-slide:nth-child(1) {
    z-index: 1;
        opacity: 1;
}
.slides .section-slide:nth-child(2) {
    z-index: 2;
}
.slides .section-slide:nth-child(3) {
    z-index: 3;
}
.slides .section-slide:nth-child(4) {
    z-index: 4;
}
.slides .section-slide:nth-child(5) {
    z-index: 3;
}

.slides .slide-sticky {
    opacity: 1;
}    

.btn,
input[type=submit] {
	padding: 12px 16px;
	background: #BD1B21;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	transition: .15s all;
	position: relative;
    cursor: pointer;
    border: 0;
}

.section-gemini .btn {
    background: #CEA152;
}

.btn:hover,
input[type=submit]:hover {
	transform: scale(1.05);
}

.section-contact .container {
    border-top: 1px solid #BD1B21;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 64px;
    width: 720px;
    max-width: calc(100% - 64px);
    background: #F3F3F3;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
}

.taa {
    font-size: 24px;
    line-height: 24px;
    color: #BC2126;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.taa-studios {
    font-weight: 700;
}

.form {
    display: flex;
    flex-direction: column;
    width: 304px;
    max-width: 100%;
    align-items: flex-start;
}

.form-copy {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 16px;
}

.form input[type=text],
.form textarea {
    border: 1px solid #594E4F;
    border-radius: 4px;
    margin-bottom: 16px;
    padding: 8px;
    font-size: 14px;
    font-family: inter;
    width: 304px;
    max-width: calc(100% - 18px);
}

.form textarea {
    margin-bottom: 24px;
}

.section-footer {
    background: #BD1B21;
}

.section-footer .container {
    padding-top: 16px;
    padding-bottom: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-size: 14px;
}

.nav-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 32px;
    flex-direction: column;
    width: 32px;
    display: none;
    z-index: 2;
    cursor: pointer;
}

.bar {
    width: 100%;
    height: 4px;
    background: #594E4F;
    margin: 3px 0;
}

.no-scroll .bar {
    background: #fff;
}

@media screen and (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(89,78,79,.8);
        height: 100vh;
        flex-direction: column;
        display: none;
    }
    .nav-active {
        display: flex;
    }
    .nav-item {
        color: #fff;
        font-size: 24px;
    }
    .section-header {
        padding-bottom: 16px;
    }
    .container {
        padding: 64px 32px;
    }
    .slide-content {
        flex-direction: column;
    }
    
    .slide-heading, .slide-copy {
        max-width: unset;
        margin: 0 0 12px 0;
    }
    .contact {
        padding-left: 32px;
        padding-right: 32px;
    }
    .anchor {
        top: -84px;
    }
    .slides .slide-content {
        margin-top: 84px;
    }
}

@media screen and (min-width: 992px) {
    .section-ooda .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(50%,-200%);
    }
}




