@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400');

:root
{
    --color-primary: rgb(214, 69, 69);
}

*
{
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    margin: 0px;
    padding: 0px;
    outline: none !important;
}

html,body
{
    padding: 0px;
    margin: 0px;
    width: 100vw;
    overflow-x: hidden;
}

.row
{
    display: flex;
    flex-wrap: wrap;
}

.col-2 { width: 16.666666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33%; }
.col-5 { width: 20%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33%; }
.col-8 { width: 58.33%; }
.col-9 { width: 75%; }
.col-12 { width: 100%; }

[class*="col-"]
{
    padding-left: 20px;
    padding-right: 20px;
}

.row.no-padding>[class*="col-"]
{
    padding: 0px;
}

[class*="col-"]:first-child
{
    padding-left: 0px;
}

[class*="col-"]:last-child
{
    padding-right: 0px;
}

.first-nav
{
    padding-top: 150px;
}

nav.primary-nav
{
    display: flex;
    position: absolute;
    width: 900px;
    top: 50px;
    z-index: 9999;
    left: calc(50% - 450px);
    transition: 0.25s all;
}

nav.primary-nav>.logo
{
    width: 200px;
}

nav.primary-nav>.logo>a
{
    width: 50%;
    margin-top: 5px;
}

nav.primary-nav>.logo>a>img
{
    width: 150px;
}

nav.primary-nav>.menu
{
    display: flex;
    width: calc(100% - 200px);
    justify-content: flex-end;
}

nav.primary-nav>.menu>a
{
    display: block;
    color: #fff;
    font-size: 12px;
    padding: 10px;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 300;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

.nav-container-active
{
    position: fixed !important;
    width: 100% !important;
    z-index: 999 !important;
    top: 0px !important;
    left: 0px !important;
    padding: 50px;
    padding-top: 20px;
    background: linear-gradient(to bottom, #d64545 0%,#d6454500 100%);
}

.full-page
{
    position: relative;
    width: 100%;
    height: 100vh;
}

.simpleParallax,.image-set
{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.simpleParallax>img,
.image-set img
{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.typeface-light
{
    color: #fff;
}

.typeface-primary
{
    color: var(--color-primary);
}

h1,h2,h3,h4,h5,h6,p,a
{
    line-height: 150%;
    font-weight: 400;
    margin-bottom: 15px;
}

.fw-ultrathin { font-weight: 100; }
.fw-thin { font-weight: 200; }
.fw-light { font-weight: 300; }
.fw-regular { font-weight: 400; }
.fw-black { font-weight: 900; }

.tx-center { text-align: center; }

a
{
    text-decoration: none;
}

h1 { font-size: 40px; }
h3 { font-size: 24px; }
h6 { font-size: 14px; }

.content-overlay
{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.content-overlay.overlay-black { background: rgba(0,0,0,0.5); }
.content-overlay.overlay-white { background: rgba(255,255,255,0.75); }

.fixed-content-container
{
    width: 900px;
    margin: auto;
}

.container
{
    padding-top: 50px;
}

.card
{
    position: relative;
    display: block;
    background: #fff;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,.125);
    /* box-shadow: 0px 0px 5px 1px rgb(133, 133, 133); */
    padding: 30px;
    background-size: cover;
    background-position: center;
}

.no-padding
{
    padding: 0px;
}

.card-set
{
    position: relative;
}

.card-set .slick-dots
{
    display: flex;
    list-style-type: none;
    position: absolute;
    bottom: -35px;
}

.card-set .slick-dots button
{
    width: 10px;
    height: 10px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 0px;
    border-radius: 100%;
    background: #fff;
    border: none;
    cursor: pointer;
}

.card-set .slick-dots .slick-active button
{
    background: var(--color-primary);
}

.card-set-service
{
    position: relative;
    /* padding-left: 50px;
    padding-right: 50px; */
}

.card-set-service .card
{
    min-height: 350px;
    padding: 0px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 30px;
    transition: 0.25s all;
}

.card-set-service .card>.card-image
{
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-set-service .card>.card-image>img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    /* border: 1px solid rgba(0,0,0,.125); */
}

.card-set-service .card>.card-content
{
    color: #fff;
    text-align: center;
    position: absolute;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-top: 150px;
    padding-left: 20px;
    padding-right: 20px;
    background: linear-gradient(to top, #000 0%,#d0000000 100%);
    width: 100%;    
    bottom: 0px;
    z-index: 2;
    padding-bottom: 20px;
}

.card-set-service .card>.card-content>h3
{
    margin-bottom: 10px;
}

.card-set-service .card>.is-client,
.card-set-service .card>.is-ex-client
{
    position: absolute;
    width: 100%;
    height: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    top: 0px;
    z-index: 3;
}

.card-set-service .card>.is-client
{
    background: #00ff80;
}

.card-set-service .card>.is-ex-client
{
    background: #d63226;   
}

.card-set-service .slick-center
{
    min-height: 425px;
    margin-top: 0px;
}

.page-header .card
{
    padding: 30px;
}

.page-header .card p
{
    color: #000;
    font-size: 14px;
}

.page-header .card h3
{
    margin-bottom: 20px;
}

.page-header .row>.col-6:first-child
{
    padding-right: 100px;
}

.page-header .row>.col-6:last-child
{
    padding-left: 10px;
}

.classy-button
{
    display: inline-block !important;
    position: relative;
    border: none;
    background: none;
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: left;
}

.classy-button.classy-dark
{
    color: #000;
}

.classy-button>.classy-button-content
{
    position: relative;
    z-index: 2;
}

.classy-button::before
{
    content: '';
    background: #fff;
    position: absolute;
    top: 0px;
    height: 100%;
    width: 0px;
    transition: 0.15s;
    z-index: 1;
}

.classy-button.classy-dark::before
{
    background: var(--color-primary);
}

.classy-button:hover
{
    padding-left: 20px;
    padding-right: 20px;
    color: var(--color-primary);
    transition: 0.15s;
}

.classy-button.classy-dark:hover
{
    color: #fff;
}

.classy-button:hover.classy-button::before
{
    left: 0px;
    width: 100%;
    transition: 0.15s;
}

.hover-box
{
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
}

.hover-box>.hover-image
{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hover-box>.hover-image>img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hover-box>.hover-content
{
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: auto;
    padding: 30px;
    padding-top: 45px;
    z-index: 2;
    color: #fff;
    background: linear-gradient(to top, #d64545 0%,#d6454500 100%);
}

.hover-box>.hover-content>h3
{
    margin: 0px;
}

.hover-box>.hover-content>.hover-invisible
{
    margin-top: 0px;
    font-size: 14px;
    transition: 0.25s all;
    max-height: 0px;
    min-height: 0px;
    overflow: hidden;
}

.hover-box:hover .hover-invisible
{
    max-height: 200px;
    margin-top: 20px;
}

.contact-page
{
    position: relative;
}

#contact-map
{
    width: 100%;
    height: 100%;
    /* object-fit: cover;
    object-position: right; */
    position: absolute;
    z-index: 1;
    border: none;
    overflow: hidden;
}

#contact-map>iframe
{
    border: none;
    width: 100%;
    height: calc(100% + 150px);
    margin-top: -150px;
}

#contact-card
{
    position: relative;
    width: 400px;
    z-index: 5;
}

.contact-card-active
{
    position: fixed !important;
    top: 150px;
}

.icon
{
    height: 12px;
    margin-right: 10px;
}

.no-margin { margin: 0px; }

.contact-form>*
{
    width: 100%;
    margin-bottom: 5px;
}

.contact-form>input[type="text"],
.contact-form>input[type="email"],
.contact-form>textarea
{
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,.125);
    padding: 10px;
}

.nav-clearfix
{
    height: 75px;
    width: 100%;
}

.label
{
    position: absolute;
    top: 15px;
    left: 20px;
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    padding: 5px 10px 5px 10px;
}

.label.label-client
{
    background: #06b960;
}

.label.label-client-ex
{
    background: #d63226;   
}

.footer
{
    margin-top: 25px;
    background: var(--color-primary);
    padding: 20px;
}

.footer>p
{
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin: 0px;
}

.primary-menu-btn
{
    display: none;
    z-index: 9999;
}

.nav-icon4
{
    width: 60px;
    height: 45px;
    position: absolute;
    -webkit-transform: rotate(0deg) scale(0.75);
    -moz-transform: rotate(0deg) scale(0.75);
    -o-transform: rotate(0deg) scale(0.75);
    transform: rotate(0deg) scale(0.75);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    right: 20px;
}

.nav-icon4 span
{
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.nav-icon4 span:nth-child(1)
{
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.nav-icon4 span:nth-child(2)
{
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.nav-icon4 span:nth-child(3)
{
    top: 36px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.nav-icon4.open span:nth-child(1)
{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
}

.nav-icon4.open span:nth-child(2)
{
    width: 0%;
    opacity: 0;
}

.nav-icon4.open span:nth-child(3)
{
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 39px;
  left: 8px;
}

.msg
{
    border: 5px;
    font-size: 14px;
    padding: 15px;
    border-radius: 5px;
    display: none;
    margin-bottom: 15px;
}

.msg.error-msg
{
    border: 1px solid rgb(165,0,0);
    background: rgb(255,187,187);
    color: rgb(204,0,0);
}

.msg.success-msg
{
    border: 1px solid rgb(0,165,0);
    background: rgb(122,254,129);
    color: rgb(1,194,11);
}

.msg.warning-msg
{
    border: 1px solid rgb(181,196,0);
    background: rgb(243,255,100);
    color: rgb(251,163,0);
}

.msg>*
{
    margin: 0px;
}

@media only screen and (max-width: 1000px)
{
    nav.primary-nav
    {
        width: 100%;
        left: 0px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 900px)
{
    .responsive-clearfix
    {
        height: 35px;
        width: 100%;
    }

    .contact-card-active
    {
        position: relative !important;
        top: 0px;
    }

    .row
    {
        /* display: block; */
    }

    [class*="col-"] 
    {
        width: 100%;
        padding: 0px;
    }

    .col-xs-6
    {
        width: 50% !important;
    }

    .full-page
    {
        height: auto;
    }
    
    .full-page.full-page-force
    {
        height: 100vh;
    }

    .page-header
    {
        /* padding-bottom: 50px; */
    }

    .page-header .slick-list,
    .page-header .slick-track
    {
        height: 100%;
    }

    .page-header .row>.col-6:first-child
    {
        padding-right: 0px;
        padding-bottom: 75px;
    }

    .fixed-content-container
    {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    nav.primary-nav
    {
        width: 100%;
    }

    .image-set
    {
        position: absolute;
        z-index: 0;
        height: 100%;
    }
    
    .image-set img
    {
        height: 100% !important;
    }

    .content-overlay
    {
        position: relative;
        padding-bottom: 50px;
        z-index: 1;
        height: 100%;
    }
}

@media only screen and (max-width: 650px)
{
    nav.primary-nav
    {
        height: 125px;    
    }
    
    nav.primary-nav>.logo
    {
        position: absolute;    
        z-index: 9999;
    }
    
    nav.primary-nav
    {
        top: 0px;
        padding-top: 20px;
    }
    
    nav.primary-nav>.menu>a
    {
        margin: 0px;
        padding-left: 30px;
    }
    
    .primary-menu-btn
    {
        display: block;
        position: absolute;
    }
    
    nav.primary-nav>.menu
    {
        background: rgba(0,0,0,0.75);
        position: absolute;
        z-index: 9998;
        left: 0px;
        top: 0px;
        width: 100%;
        display :flex;
        max-height: 0px;
        overflow: hidden;
        flex-direction: column;
        justify-content: flex-start;
        transition: 0.5s all;
    }
    
    nav.primary-nav>.menu.open
    {
        padding-top: 85px;
        padding-bottom: 30px;
        max-height: 1000px;
        transition: 0.5s all;
    }
}

@media only screen and (max-width: 500px)
{
    #contact-card
    {
        width: 100%;
    }
    
    .col-xs-6
    {
        width: 100% !important;
    }
}