body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    margin: 0
}
code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace
}
:root {
    --color-main: #dd8a3d;
    --color-main-secondary: #000;
    --color-active: #dd8a3d;
    --color-text: #000;
    --color-border-dk: #122b40;
    --color-border-lt: #dedfe0;
    --color-bg-dk: #000;
    --color-bg-lt: #f7f7f7;
    --color-border-dk: #2c2c2c;
    --color-bg-btn: #334c96
}
*,
:after,
:before {
    box-sizing: border-box
}
blockquote,
body,
dd,
div,
dl,
dt,
form,
h1,
h2,
h3,
h4,
h5,
html,
iframe,
img,
li,
ol,
p,
td,
tr,
ul {
    border: 0;
    border-collapse: initial;
    border-spacing: 0;
    margin: 0;
    padding: 0
}
.App,
body,
html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background: #121212;
    color: #fff;
    font-weight: 400;
    width: 100vw;
    min-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}
.App,
body,
html,
p {
    font-family: Noto Sans, sans-serif
}
p {
    line-height: 1.6;
    margin-bottom: 1rem
}

.h1,
h1 {
    font-weight: 700
}
h2,
h3 {
    font-weight: 600
}
a,
a:visited {
    color: #000;
    color: var(--color-text)
}
a,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
    transition: color .3s ease
}
a:focus,
a:hover {
    color: #dd8a3d;
    color: var(--color-main)
}
form {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    text-align: left
}
.form-group {
    padding-bottom: 1.8rem;
    position: relative;
    width: 100%
}
.errMsg {
    bottom: .8rem;
    color: red;
    font-size: .7rem;
    left: 0;
    position: absolute
}
.d-flex {
    text-align: left
}
.d-flex,
[class*=col-] {
    align-items: center;
    display: flex;
    justify-content: center
}
[class*=col-] {
    flex-direction: column;
    padding: 0 1rem;
    position: relative
}
.col-30 {
    width: 30%
}
.col-50 {
    width: 50%
}
.col-70 {
    width: 70%
}
.txt-left {
    text-align: left
}
.txt-center {
    text-align: center
}
.row {
    display: flex;
    flex-direction: row
}
.header {
    background: #000c;
    height: 60px;
    justify-content: flex-end;
    padding: 1rem;
    position: fixed;
    width: 100vw;
    z-index: 10
}
.header,
.logo {
    align-items: center;
    display: flex
}
.logo {
    position: absolute;
    width: 200px;
    height: 200px;
    left: 50px;
    top: 0;
    justify-content: center;
    background: var(--color-main);
    transition: all .3s ease;
    width: 200px;
    z-index: 1001;
    box-shadow: #2c2c2c 0 1px 3px;
}
.logo-shrink {
    height: 90px !important;
    width: 160px;
}
.logo img {
    height: 60px;
}
.logo-shrink img {
    height: 40px !important
}

.nav {
    margin-right: 1rem
}
.nav a {
    color: #fff;
    margin-left: 1rem;
    text-decoration: none
}
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    margin-left: auto;
    z-index: 1001
}
.hamburger {
    position: relative;
    transition: background .3s
}
.hamburger.open {
    background: #0000
}
.hamburger.open:before {
    transform: rotate(45deg) translate(5px, 5px)
}
.hamburger.open:after {
    transform: rotate(-45deg) translate(5px, -5px)
}
.hamburger,
.hamburger:after,
.hamburger:before {
    background: #fff;
    border-radius: 2px;
    content: "";
    height: 3px;
    position: absolute;
    right: 30px;
    transition: all .3s;
    width: 28px
}
.hamburger:after,
.hamburger:before {
    left: 0
}
.hamburger:before {
    top: -8px
}
.hamburger:after {
    top: 8px
}
.hero {
    height: 100vh;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100vw
}
.overlay {
    background: linear-gradient(180deg, #0000 20%, #0003 30%, #000c)
}
.hero .slider,
.overlay {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}
.hero .slider {
    animation: zoomInOutBg 10s ease-in-out infinite;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0
}
.hero .cta,
.hero h1 {
    position: relative;
    z-index: 1
}
.hero .h1 {
    font-size: 2.2rem;
    margin-top: 48vh;
    padding: 0 1rem;
    text-shadow: #000000e6 0 0 3px;
    text-transform: uppercase;
    transform: translateY(-50%)
}
.cta,
.cta:visited {
    background: #dd8a3d;
    background: var(--color-main);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    padding: .8rem 1.5rem
}
.cta:focus,
.cta:hover {
    background: #000;
    background: var(--color-bg-dk);
    color: #fff
}
section,
section#about {
    position: relative
}
section#about {
    background: #dd8a3d;
    background: var(--color-main)
}
#about .bg {
    background-attachment: fixed;
    background-image: url(imgs/bg.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(1px);
    height: 100%;
    left: 0;
    mix-blend-mode: luminosity;
    opacity: .1;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0
}
.about,
.contact {
    color: #000;
    margin: 0 auto;
    max-width: 1200px;
    padding: 4rem 2rem;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 1
}
.title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}
.icons {
    height: 240px;
    width: 240px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.icon {
    height: 160px;
    left: 0;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    transform: scale(1);
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
    width: 160px;
    z-index: 1;
    pointer-events: none;
}
.icon.icon-a {
    height: 140px;
    width: 140px
}
.icon.icon-a,
.icon.icon-b {
    top: 40px
}
.icon.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1.3);
    z-index: 2;
    pointer-events: auto;
}
.bigIcon {
    color: #ccc;
    font-size: 4rem
}
section.bg-lt {
    background: #f7f7f7;
    background: var(--color-bg-lt);
    color: #000;
    color: var(--color-text)
}
.image-column img {
    max-width: 600px;
    width: 100%
}
.form-column,
.info-column,
.text-column {
    padding: 1rem;
    width: 100%
}
.form-column form input,
.form-column form textarea {
    border: 1px solid #444;
    border-radius: 4px;
    color: #000;
    color: var(--color-text);
    padding: .5rem;
    position: relative;
    width: 100%
}
.form-column form textarea {
    height: 80px
}
.form-column form button {
    background: #dd8a3d;
    background: var(--color-main);
    border: none;
    color: #fff;
    min-width: 160px;
    padding: .7rem 1.2rem;
    font-size: 1.2rem;
    cursor: pointer;
}
.footer {
    background: #000;
    padding: 1rem;
    text-align: center;
    width: 100%
}
.legal {
    color: #ccc;
    font-size: .8rem;
    margin-top: 1rem
}
@media (max-width:768px) {
    .row {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center
    }
    [class*=col-] {
        width: 100%
    }
    .nav {
        align-items: flex-start;
        background: #fff;
        box-shadow: 0 2px 8px #0000001a;
        display: flex;
        flex-direction: column;
        left: 0;
        opacity: 0;
        padding: 2rem;
        pointer-events: none;
        position: absolute;
        right: 0;
        top: 60px;
        transform: translateY(-100%);
        transition: transform .3s;
        width: 100vw;
        z-index: 1000
    }
    .nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0)
    }
    .nav a {
        color: #000;
        margin: 1rem 0;
        text-align: right;
        width: 100%
    }
    .nav-toggle {
        display: block;
        height: 40px
    }
}
@keyframes zoomInOutBg {
    0%,
    to {
        transform: scale(1)
    }
    50% {
        transform: scale(1.1)
    }
}

@keyframes fadeOutMsg {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

p#thankYouMsg {
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    border: green solid 1px;
    padding: 1rem;
    /* animation: fadeOutMsg 3s forwards; */
}
