/*@font-face {
    font-family: 'American Typewriter';
    src: url('../fonts/AmericanTypewriterRegular.ttf');
}*/

@font-face {
    font-family: 'Candara';
    src: url('../fonts/candara.ttf');
}


html,
body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Candara', 'American Typewriter', 'Helvetica Neue',Arial,sans-serif;
    background-color:white;
    color: black;
    -webkit-tap-highlight-color: #222;
}

hr {
    max-width: 100%;
    border-width: 2px;
    margin-top: 8px;
    margin-bottom: 20px;
    border-color: #2D3968;
}

hr.light {
    border-color: #2D3968;
}

a {
    color: #9c27b0;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

a:hover,
a:focus {
    color: #9c27c1;
    outline: 0;
}

h1,h2 {
    font-family: 'American Typewriter','Helvetica Neue',Arial,sans-serif;
    font-weight: 900;
}



@media only screen and (max-width: 720px){
    header {
        width: 90%;
    }

    header .header-content .inner h2 {
        font-size: 18px;
        font-weight: 700;
    }

    header .header-content .inner {
        margin-left: 15%;
        padding-left: 2rem;
    }

    #emphasis.container {
        margin-left: 5%;
        margin-right: 5%;
        padding-left: 200px;
    }

    .container h3 {
        font-size: 18px;
        font-weight: 500;
    }

    .youtube-video {
        margin-top: -25%;
        aspect-ratio: 16 / 9;
        width: 100%;
    }
}

h3,h4,h5,h6 {
    font-family: 'Candara','Helvetica Neue',Arial,sans-serif;
}

p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.wide-space {
    letter-spacing: 1.6px;
}

.icon-lg {
    font-size: 50px;
    line-height: 18px;
}

.bg-primary {
    background-color: white;
}

.bg-dark {
    color: #eee;
    background-color: #2D3968;
}

.bg-usred {
    color: #eee;
    background-color: #b32134;
}

.cursive {
    font-family: 'Dancing Script', cursive;
    text-transform: none;
}

.text-faded {
    color: rgba(245, 245, 245, 0.267);
}

.text-dark {
    color: #111;
}

.text-primary {
    color: black;
}

.text-light {
    color: whitesmoke;
}

.text-title {
    color: #2D3968;
}

.modal-content {
    background-color: white;
}

section {
    padding: 60px 0;
}

aside {
    padding: 50px 0;
}

footer {
    padding: 15px;
}

.no-padding {
    padding: 0;
}

header {
    position: relative;
    min-height: auto;
    text-align: center;
    color: #fff;
    width: 100%;
    background-color: #c9c9c9;
    background-image: url('../images/nyc.jpg');
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    animation-name: bg-fading;
    animation-duration: 1.2s;
    animation-delay: 0.3s;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes bg-fading {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}



header .header-content {
    position: relative;
    width: 100%;
    padding: 100px 15px;
    text-align: center;
    z-index: 2;
}

header .header-content .inner h1 {
    margin-top: 0;
    margin-bottom: 0;
}

header .header-content .inner p {
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
}

#video-background {
    position: absolute;
    right: 0; 
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: 100%;
    z-index: 1;
    animation-name: flyover;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
}


@media(min-width:1200px) {
    #video-background {
        position: absolute;
        right: 0; 
        bottom: 0;
        min-width: 100%;
        min-height: 100%;
        width: 100%;
        height: auto;
        z-index: 1;
        animation-name: flyover;
        animation-duration: 1.2s;
        animation-delay: 3s;
        animation-direction: normal;
        animation-fill-mode: forwards;
        opacity: 0;
    }
}

@keyframes flyover {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


#video-background.collapsing {
  display:none;
}

footer {
    background-color: #2D3968;
    color: white !important;
}

footer a {
    color: white !important;
}

@media(min-width:768px) {
    .icon-lg {
        font-size: 80px;
    }
    
    header {
        min-height: 100%;
    }

    header .header-content {
        position: absolute;
        top: 50%;
        padding: 0 50px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    header .header-content .inner {
        margin-right: auto;
        margin-left: auto;
        max-width: 1000px;
    }

    header .header-content .inner h1 {
        font-size: 48px;
    }

    header .header-content .inner p {
        margin-right: auto;
        margin-left: auto;
        max-width: 80%;
        font-size: 18px;
    }
    
    section {
        min-height: 300px;
        padding: 30px 0;
    }

}

.form-control {
    display: block;
    width: 100%;
    height: 35px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: grey;
    background-color: whitesmoke;
    background-image: none;
    border: 1px solid #36333d;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
    color: #222;
    background-color: rgb(216, 215, 215);
    box-shadow: none;
}

textarea {
    resize: none;
}

.margin-top-0 {
    margin-top: 0;
}

.feature {
    margin: 50px auto 0;
    max-width: 400px;
}

@media(min-width:750px) {
    .feature {
        margin: 20px auto 0;
    }
}

.feature p {
    margin-bottom: 0;
}

.call-to-action h2 {
    margin: 0 auto 20px;
}

.gallery-box {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 650px;
    overflow:hidden;
}

.gallery-box .gallery-box-caption {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    opacity: 0;
    background: rgba(44,44,44,.8);
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.gallery-box .gallery-box-caption .gallery-box-content {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
}

.gallery-box:hover .gallery-box-caption {
    opacity: 1;
}

.gallery-box:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.gallery-box img {
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.no-gutter > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.btn-default {
    border-color: #fff;
    color: whitesmoke;
    background-color: #2D3968;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    border-color: #ededed;
    color: #222;
    background-color: grey;
    opacity: 0.7;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    border-color: #fff;
    background-color: #005781;
    opacity: 0.7;
}

.btn-default .badge {
    color: #005781;
    background-color: #222;
}

.btn.btn-primary {
    background-color: #b32134;
    border:1px solid #f0f0f0;
    border-color:#f0f0f0;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.btn.btn-primary:hover {
    opacity: 0.7;
    border: 3px white;
}

.btn.btn-usblue {
    background-color: #2D3968;
    color: white;
}

.btn.btn-usblue:hover {
    background-color: #2b70d0;
    border: 3px white;
}

.btn {
    border: 0;
    border-radius: 290px;
    font-family: 'Helvetica Neue',Arial,sans-serif;
}

.btn-xl {
    padding: 15px 30px;
    font-size: 20px;
}

::-moz-selection {
    text-shadow: none;
    color: #fff;
    background: #222;
}

::selection {
    text-shadow: none;
    color: #fff;
    background: #222;
}

img::selection {
    color: #fff;
    background: 0 0;
}

img::-moz-selection {
    color: #fff;
    background: 0 0;
}

.img-responsive {
    height: 30rem !important;
    width: 100% !important;
    margin: 1%;
}

.modal-body .img-responsive {
    height: 100% !important;
    width: 100% !important;
}

.val-prop-list li h5 {
    font-size: 1.9rem;
    color: rgb(71, 71, 71);
}

/* Materialize Cards */
.card {
    position: relative;
    margin: 0.5rem 0 1rem 0;
    background-color: #fff;
    transition: box-shadow .25s;
    border-radius: 2px;
    border-width: 5px;
    border-color: blue;
}

.card .card-title {
    font-size: 24px;
    font-weight: 300;
}

.card .card-title.activator {
    cursor: pointer;
}

.card.small,
.card.medium,
.card.large {
    position: relative;
}

.card.small .card-image,
.card.medium .card-image,
.card.large .card-image {
    max-height: 60%;
    overflow: hidden;
}

.card.small .card-image+.card-content,
.card.medium .card-image+.card-content,
.card.large .card-image+.card-content {
    max-height: 40%;
}

.card.small .card-content,
.card.medium .card-content,
.card.large .card-content {
    max-height: 100%;
    overflow: hidden;
}

.card.small .card-action,
.card.medium .card-action,
.card.large .card-action {
    bottom: 0;
    left: 0;
    right: 0;
}

.card.small {
    height: 300px;
}

.card.medium {
    height: 400px;
}

.card.large {
    height: 500px;
}

.card.horizontal {
    display: flex;
}

.card.horizontal.small .card-image,
.card.horizontal.medium .card-image,
.card.horizontal.large .card-image {
    height: 100%;
    max-height: none;
    overflow: visible;
}

.card.horizontal.small .card-image img,
.card.horizontal.medium .card-image img,
.card.horizontal.large .card-image img {
    height: 100%;
}

.card.horizontal .card-image {
    max-width: 50%;
}

.card.horizontal .card-image img {
    border-radius: 2px 0 0 2px;
    max-width: 100%;
    width: auto;
}

.card.horizontal .card-stacked {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.card.horizontal .card-stacked .card-content {
    flex-grow: 1;
}

.card.sticky-action .card-action {
    z-index: 2;
}

.card.sticky-action .card-reveal {
    z-index: 1;
    padding-bottom: 64px;
}

.card .card-image {
    position: relative;
}

.card .card-image img {
    display: block;
    border-radius: 2px 2px 0 0;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
}

.card .card-image .card-title {
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
    padding: 24px;
}

.card .card-content {
    padding: 24px;
    border-radius: 0 0 2px 2px;
}

.card .card-content p {
    margin: 0;
}

.card .card-content .card-title {
    display: block;
    line-height: 32px;
    margin-bottom: 8px;
}

.card .card-content .card-title i {
    line-height: 32px;
}

.card .card-action {
    background-color: inherit;
    border-top: 1px solid rgba(160, 160, 160, 0.2);
    position: relative;
    padding: 16px 24px;
}

.card .card-action:last-child {
    border-radius: 0 0 2px 2px;
}

.card .card-action a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-floating) {
    color: rgb(0,0,100);
    margin-right: 24px;
    transition: color .3s ease;
    text-transform: uppercase;
}

.card .card-action a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-floating):hover {
    color: #ffd8a6;
}

.card .card-reveal {
    padding: 24px;
    position: absolute;
    background-color: #fff;
    width: 100%;
    overflow-y: auto;
    left: 0;
    top: 100%;
    height: 100%;
    z-index: 3;
    display: none;
}

.card .card-reveal .card-title {
    cursor: pointer;
    display: block;
}

.businesscard {
    width: 100% !important;
}

/* Materialize Swipe Tabs */
.tabs {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    height: 48px;
    width: 100%;
    background-color: #fff;
    margin: 0 auto;
    white-space: nowrap;
}

.tabs.tabs-transparent {
    background-color: transparent;
}

.tabs.tabs-transparent .tab a,
.tabs.tabs-transparent .tab.disabled a,
.tabs.tabs-transparent .tab.disabled a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.tabs.tabs-transparent .tab a:hover,
.tabs.tabs-transparent .tab a.active {
    color: #fff;
}

.tabs.tabs-transparent .indicator {
    background-color: #fff;
}

.tabs.tabs-fixed-width {
    display: flex;
}

.tabs.tabs-fixed-width .tab {
    flex-grow: 1;
}

.tabs .tab {
    display: inline-block;
    text-align: center;
    line-height: 48px;
    height: 48px;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}

.tabs .tab a {
    color: #2D3968;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 24px;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: color .28s ease, background-color .28s ease;
}

.tabs .tab a:focus,
.tabs .tab a:focus.active {
    background-color: rgba(58, 141, 209, 0.2);
    outline: none;
}

.tabs .tab a:hover,
.tabs .tab a.active {
    background-color: transparent;
    color: #005781;
}

.tabs .tab.disabled a,
.tabs .tab.disabled a:hover {
    color: rgba(36, 101, 154, 0.4);
    cursor: default;
}

.tabs .indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: #3a8dd1;
    will-change: left, right;
}

@media only screen and (max-width: 750px) {
    .tabs {
        display: flex;
    }
    .tabs .tab {
        flex-grow: 1;
    }
    .tabs .tab a {
        padding: 0 12px;
    }
}

.transaction {
    min-height: 30rem;
    border: 6px solid grey;
    border-radius: 3px;
}

.transaction:hover {
    box-shadow: 0 5px 5px rgb(20, 84, 145) !important;
    cursor: pointer;
    border-color: #005781;
}

.team-row {
    background-image: url('../images/nyc.jpg');
    min-height: 50rem;
    width: 100%;
    background-color: #c9c9c9;
    background-image: url('../images/nyc.jpg');
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

#processor {
    opacity: 0;
    animation-name: payment-processor;
    animation-duration: 1.7s;
    animation-delay: 0.3s;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

@keyframes payment-processor {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.service-img {
    border-radius: 25%;
}

.card.price-card {
    border-color: rgb(0, 81, 255) !important;
}

div.feature.offering {
    height: 26rem;
    border: 5px solid grey;
    border-radius: 3px;
}
div.feature.offering a {
    color: #111;
}

div.feature.offering a:hover {
    color: blue;
}

div.feature.offering h2 {
    margin-top: 20px;
}

div.feature.offering:hover {
    border: 5px solid blue;
    border-radius: 3px;
    background-color: rgb(221, 219, 219);
}

.youtube-video {
    aspect-ratio: 16 / 9;
    width: 100%;
}