/* CSS Document */

/*########################################
## Body
########################################*/
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	box-sizing: inherit;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gold: #D0A361;
}

body {
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: 'Philosopher', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    min-width: 320px;
    background: url(../images/common/background.jpg) center top no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

/*########################################
## Typography
########################################*/
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Philosopher', sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dd,
dt {
    padding: 0;
}

ul,
ol {
    
}

a {
    color: var(--white);
    text-decoration: none;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

a:hover {
    color: var(--gold) !important;
}

a:focus {
    outline: none;
}

h1,
h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    font-weight: 400;
    color: #FFFFFF;
}

h3 {
    font-weight: 700;
    font-size: 25px;
    line-height: 120%;
}

p,
ul,
ol {
    line-height: 200%;
    font-weight: 400;
    margin: 0 0 30px;
}

p:last-of-type {
    margin-bottom: 0;
}

p.lead {
    font-size: 20px;
}

/*########################################
## Layouts
########################################*/
.screen-reader-text {
    display: block;
    width: .1px;
    height: .1px;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

img {
    border: 0;
    max-width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

hr.hide-line {
    padding: 0;
    margin: 0;
    display: none;
}

figure {
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: inline-block;
}

figure img {
    display: block;
}

figure img:hover {
	filter: brightness(1.1);
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
}

.container {
    width: 100%;
    max-width: 1600px;
    padding: 0 20px;
    margin: 0 auto;
}

.mobile {
    display: none;
}

/*########################################
## Flexbox
########################################*/
.dflex {
    display: flex !important;
    display: -webkit-flex !important;
}

.sb-flex {
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.cn-flex {
    justify-content: center;
    -webkit-justify-content: center;
}

.end-flex {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
}

.start-flex {
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
}

.cn-align {
    align-items: center;
    -webkit-align-items: center;
}

.end-align {
    align-items: flex-end;
    -webkit-align-items: flex-end;
}

.start-align {
    align-items: flex-start;
    -webkit-align-items: flex-start;
}

.wrap-flex {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.col-flex {
    flex-direction: column;
    -webkit-flex-direction: column;
}

.row-flex {
    flex-direction: row;
    -webkit-flex-direction: row;
}

.rowrev-flex {
    flex-direction: row-reverse;
}

.col33 {
    flex-basis: 33.33%;
    -webkit-flex-basis: 33.33%;
}

.col37 {
    flex-basis: 37%;
    -webkit-flex-basis: 37%;
}

.col50 {
    flex-basis: 50%;
    -webkit-flex-basis: 50%;
}

.col63 {
    flex-basis: 63%;
    -webkit-flex-basis: 63%;
}

.col100 {
    flex-basis: 100%;
    -webkit-flex-basis: 63%;
}

/*########################################
## Clearfix
########################################*/
.clear {
    clear: both;
}

.clearfix:after {
    height: 0;
    clear: both;
    visibility: hidden;
}

.clrfix:before,
.clrfix:after {
    content: " ";
    display: table;
}

.clrfix:after {
    clear: both;
}

.clrfix {
    zoom: 1;
}

/*########################################
## Forms
########################################*/

/*contact form messages*/
form .messages p {
    display: none;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    font-size: 16px !important;
}

form .loading {
    display: none;
}

form .alert {
    padding: 15px !important;
    margin-bottom: 20px;
    border: 1px solid transparent !important;
    border-radius: 4px !important;
}

form .alert-success {
    color: #3c763d !important;
    background-color: #dff0d8 !important;
    border-color: #d6e9c6 !important;
}

form .alert-danger {
    color: #a94442 !important;
    background-color: #f2dede !important;
    border-color: #ebccd1 !important;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
}

/* Contact form */
.ctc-form {
    text-align: center;
}

.ctc-form input[type="text"],
.ctc-form input[type="email"],
.ctc-form textarea {
    width: 100%;
    height: 45px;
    margin: 0 0 20px;
    border: 1px solid var(--white);
    background: none;
    font-family: 'Philosopher', sans-serif;
    line-height: 120%;
    padding: 24px;
    display: block;
    color: var(--white);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.ctc-form textarea {
    height: 160px;
    width: 100%;
}

.ctc-form input[type="text"]::placeholder,
.ctc-form input[type="email"]::placeholder,
.ctc-form textarea::placeholder {
    color: var(--white);
}

.ctc-form button {
    margin-top: 10px;
}

.ctc-form .recap {
    display: inline-block;
}

.ctc-hide,
.hdMob {
    display: none;
}

.g-recaptcha>div {
    margin: 20px auto 0;
}

/*########################################
## Button
########################################*/

.button,
.contactForm input[type=submit] {
    position: relative;
    z-index: 1;
    display: inline-block;
    min-width: 200px;
    padding: 20px;
    background-color: transparent;
    color: #FFF;
    line-height: 1.2;
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 5px;
    border: none;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.button img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
}

/* .button:hover {
    color: #FFF;
}

.button::after {
    position: absolute;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform-origin: top;
    background: #111111;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
}

.button:hover::after {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
} */

/*########################################
## Header
########################################*/
header {
    position: relative;
}

#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: #FFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
}

#header .container {
    max-width: 1840px;
}

#header .hdLogo {
    margin-right: auto;
}

#header nav #pull {
    display: none;
    cursor: pointer;
}

#header nav {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

#header nav ul {
    padding: 0;
    margin: 0;
}

#header nav ul li {
    padding: 0;
    margin: 0;
}

#header nav ul li:not(:first-of-type) {
    margin-left: 60px;
}

#header nav ul li a {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    padding: 18px 0;
    text-transform: uppercase;
    color: #111;
    transition: all .3s linear;
    position: relative;
}

#header nav ul li a::after {
    content: "";
    background: #FF9124;
    height: 6px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
}

#header nav ul li a.active-menu,
#header nav ul li a:hover {
    color: #FF9124;
}

#header nav ul li a.active-menu::after,
#header nav ul li a:hover::after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}

/*########################################
## Banner
########################################*/
#banner {
    position: relative;
}

#banner .bnCaption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
}

#banner .bnCaption h1 {
    color: #FFF;
    font-weight: 800;
    font-size: 85px;
    line-height: 120%;
}

#banner .bnCaption p {
    font-size: 25px;
    line-height: 120%;
    margin: 13px 0 40px;
    color: #FFF;
}

#banner .bnCaption .btn {
    max-width: 200px;
}

/*########################################
## Home Page Content
########################################*/
.home #content {
    padding: 140px 0;
    min-height: 90vh;
}

.home #content .container {
    max-width: 880px;
    text-align: center;
}

.home #content .container .logo {
    display: block;
    margin: 130px auto;
}

/*########################################
## Footer
########################################*/
footer {
    position: relative;
}

footer .ftBot {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1)
}

footer .ftBot p {
    text-align: center;
    font-size: 14px;
    margin: 0;
}

/*########################################
## Sidebar
########################################*/
aside {
    float: right;
    width: 280px;
    min-height: 444px;
    margin: 0;
    padding: 0;
    background: #C63;
}

/*########################################
## Inner Pages
########################################*/
.inner #content {
    padding: 140px 0;
    min-height: 90vh;
}

.inner #content h1 {
    text-align: center;
    margin-bottom: 30px;
}

/* Contact Page */
.contact-page .container {
    max-width: 640px;
    text-align: center;
}

.contact-page .container .logo {
    display: block;
    margin: 0 auto 100px;
}

/*########################################
## Accordion Inner Pages
########################################*/
.accordion .title {
    padding: 10px 20px;
    box-sizing: border-box;
    background: #FFF;
    margin-top: 15px;
    position: relative;
    box-shadow: 1px 1px 3px #333;
    transition: all .3s linear;
}

.accordion .title:hover {
    background: #8EC449;
}

.accordion .title:hover h3 {
    color: #FFF;
}

.accordion .title h3::after {
    content: "+";
    position: absolute;
    right: 15px;
    transition: all .3s linear;
}

.accordion .title h3.open::after {
    content: "-";
}

.accordion .title h3 {
    cursor: pointer;
    font-size: 20px;
    color: #8EC449;
    text-shadow: 1px 1px 1px #333;
}

.accordion .acc-content {
    background: #FFF;
    padding: 15px 20px;
    box-sizing: border-box;
    box-shadow: 0 0 1px #333;
}

/*########################################
## Testimonials Page
########################################*/
.rvw-box {
    width: 100%;
    margin: 0 auto 30px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .7);
    border: 5px solid #8EC449;
    border-bottom-color: #333;
    border-right-color: #333;
}

.rvw-box p {
    font-style: italic;
    line-height: 150%;
}

.rvw-box p.auth {
    font-weight: 600;
    text-shadow: 1px 1px 2px #8EC449;
}

/*########################################
## Contact Us Page
########################################*/
.contact-page #content .ctc-form {}

/*########################################
## Gallery Page
########################################*/
.galBox {
    margin-top: 20px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 2px 2px 8px #DDD;
}

.galBox h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.gallery {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.gallery li {
    width: 19.3%;
    padding: 3px;
    box-sizing: border-box;
    border: 1px solid #AAA;
    margin: 3px;
    border-radius: 3px;
    transition: all .3s linear;
}

.gallery li a {
    overflow: hidden;
    display: block;
}

.gallery li img {
    transition: all .3s linear;
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery li:hover {
    background: #FF9124;
}

.gallery li:hover img {
    transform: scale(1.1);
}

.page_navigation {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
}

.page_navigation a {
    font-size: 12px;
    font-weight: 600;
    color: #1f1f1f;
    background: #FF9124;
    padding: 3px 5px;
    margin: 0 2px;
}

.page_navigation a:hover {
    color: #FFF !important;
    text-shadow: 1px 1px 1px #1f1f1f;
}

/*########################################
## Thank You Page
########################################*/
.thank-you-page #content {
    text-align: center;
}

.thank-you-page .inThankLogo {
    margin-bottom: 40px;
}

/*########################################
## Responsive
########################################*/

@media screen and (max-width: 960px) {

    h1,
    h2 {
        font-size: 35px;
    }

    h3 {
        font-size: 35px;
    }

    #header {
        position: absolute;
        margin-top: 20px;
        padding: 10px 0;
        background: none;
        box-shadow: none;
    }

    #header .hdWrap {
        justify-content: flex-start;
    }

    #header .hdLogo {
        display: none;
    }

    #header .hdPhone a,
    #header .hdPhone i {
        color: #FFF;
    }

    #header .hdPhone a:hover {
        text-shadow: -1px -1px 1px #000;
    }

    #header nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        box-shadow: 0 0 5px rgba(0, 0, 0, .8);
    }

    #header nav ul {
        max-width: 100%;
        display: none;
        height: auto;
        background: rgba(255, 255, 255, .9);
    }

    #header nav ul li {
        max-width: 100%;
        position: relative;
        text-align: left;
        padding: 0;
        display: block;
        border-bottom: 1px solid #EEE;
        margin-left: 0 !important;
    }

    #header nav ul li:first-of-type {
        border-top: 1px solid #EEE;
    }

    #header nav ul li a {
        padding: 15px 0;
        line-height: 120%;
        margin: 0;
        color: #333;
        text-align: left;
        width: 100%;
        text-indent: 20px;
    }

    #header nav ul li a::after {
        display: none;
    }

    #header nav ul li a.active-menu,
    #header nav ul li a:hover {
        color: #FFF;
        background: #8CC63F;
    }

    #header nav #pull {
        display: block;
        background: #FFF;
        width: 100%;
        position: relative;
        height: 45px;
        color: #fff;
        z-index: 999;
    }

    #header nav #pull img {
        max-height: 38px;
        display: block;
        position: relative;
        top: 2px;
        padding-left: 10px;
    }

    #header nav #pull:after {
        content: "\f0c9";
        font-family: 'Font Awesome 5 Free';
        font-size: 30px;
        display: inline-block;
        position: absolute;
        right: 15px;
        top: 7px;
        font-weight: 700;
        color: #9EC148;
    }

    #header nav #pull strong {
        line-height: 45px;
    }
}

@media screen and (max-width: 800px) {

    h1,
    h2,
    .inner #content h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 30px;
    }

    p:not(:last-of-type) {
        margin-bottom: 20px;
    }

    /*inner form*/
    .contact-page .ctc-form .dflex {
        flex-direction: column;
    }

    .contact-page .ctc-form .dflex .col {
        width: 100%;
        padding: 0;
    }
}

@media screen and (max-width: 600px) {

    h1,
    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 25px;
    }

    .gallery li {
        width: 31.5%;
    }

    img.fr,
    img.fl {
        float: none;
        margin: 0 auto 20px;
        display: block;
    }

    .home #content,
    .inner #content {
        padding: 40px 0;
    }

    .home #content .container .logo {
        margin: 50px 0;
    }

    .contact-page .container .logo {
        margin: 0 auto 50px
    }
}

@media screen and (max-width: 480px) {

    h1,
    h2 {
        font-size: 28px;
    }

    .gallery li {
        width: 47%;
    }

    .gallery li img {
        height: 110px;
    }
}