/*  ==========================================================================
    Import Normalize
    ==========================================================================  */
@import "css/normalize.css";

/*  ==========================================================================
    General Styling & Resets, etc.
    ==========================================================================  */
html, body { margin: 0; padding: 0; font-family: 'Open Sans', sans-serif; font-weight: normal; font-style: normal; font-size: 100%; line-height: 1; }
*, *:before, *:after { box-sizing: border-box; outline: 0; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a, a:focus, a:hover { text-decoration: none !important; }

/* Site Colors
rgba(68,68,68,1) or #444 Font (other than white fonts)
rgba(190,30,45,1) or #BE1E2D Red
rgba(28,151,20,1) or #1C9714 Green
*/

/*  ==========================================================================
    Helper Classes/Styles
    ==========================================================================  */
/* self-clear floats if I even use floats */
.clear:before,
.clear:after { content: " "; display: table; }
.clear:after { clear: both; }
.invisible { visibility: hidden; } /* Hide visually and from screen readers, but maintain layout */
.hidden { display: none !important; }
.notransition { transition: none !important; }
.no-margin { margin: 0 10px; } /* negate the negative margins on floated items*/

.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }

/*  ==========================================================================
    NProgress Bar Styles
    ==========================================================================  */
#nprogress .bar { background: rgba(190,30,45,1) !important; }
#nprogress .spinner { display: none; }
#nprogress .spinner-icon { border-top-color: rgba(190,30,45,1); border-left-color: rgba(190,30,45,1); }

/*  ==========================================================================
    Begin Main Website Layout
    ==========================================================================  */
html, body { position: relative; height: 100%; margin: 0px; padding: 0px; }

/*  ==========================================================================
    Header Styles
    ==========================================================================  */
header.header { position: relative; margin: 0; padding: 0; }
header.header .nav { position: absolute; top: 0; left: 0; right: 0; width: 100%; background: rgba(255,255,255,.90); }
header.header .nav-primary { display: block; z-index: 1010; border-top: 2px solid rgba(28,151,20,1); border-bottom: 1px solid rgba(128,128,128,.750); }
header.header .nav-primary-inner {position: relative; margin: 0 auto; padding: 0 20px; min-height: 120px; max-width: 1240px; }

header.header .nav-primary-inner .nav-primary-logo { position: absolute; left: 0; right: 0; margin: 10px auto 0 auto; max-width: 220px; max-height: 220px; z-index: 1015; }
header.header .nav-primary-inner .nav-primary-logo img { margin: 0; padding: 0; width: 100%; max-width: 220px; height: auto; transition: all .15s ease; }

header.header .nav-primary-inner .nav-primary-menu { position: relative; top: 45px; left: 0; right: 0; width: 100%; text-align: center; }
header.header .nav-primary-inner .nav-primary-menu>ul { position: relative; display: block; margin: 0; padding: 0; list-style: none; text-align: center; }
header.header .nav-primary-inner .nav-primary-menu>ul>li { position: relative; display: inline-block; margin: 0 40px; padding: 0; width: auto; text-transform: uppercase; }
header.header .nav-primary-inner .nav-primary-menu>ul>li:first-child { margin-left: 0; }
header.header .nav-primary-inner .nav-primary-menu>ul>li:last-child { margin-right: 0; }
header.header .nav-primary-inner .nav-primary-menu>ul>li:nth-child(2) { margin-right: 160px; }
header.header .nav-primary-inner .nav-primary-menu>ul>li:nth-child(3) { margin-left: 160px; }

header.header .nav-primary-inner .nav-primary-menu>ul>li>a,
header.header .nav-primary-inner .nav-primary-menu>ul>li>span { position: relative; display: inline-block;
  color: rgba(190,30,45,1); font-size: 22px; transition: all .15s ease;
}
header.header .nav-primary-inner .nav-primary-menu>ul>li>a:hover,
header.header .nav-primary-inner .nav-primary-menu>ul>li>span:hover { color: rgba(190,30,45,1); }
header.header .nav-primary-inner .nav-primary-menu>ul>li>a>span { position: relative; display: inline-block; margin-top: 2px; padding: 0; min-height: 40px; line-height: 40px; }
header.header .nav-primary-inner .nav-primary-menu>ul>li>a span:after,
header.header .nav-primary-inner .nav-primary-menu>ul>li>span span:after { position: absolute; display: block; content: ""; left: 0px; right: 0px; bottom: 0; height: 2px; opacity: .75;
  background: rgba(190,30,45,1);
  transform-origin: 50%;
  transform: scaleX(0);
  transition: all .3s ease;
}
header.header .nav-primary-inner .nav-primary-menu>ul>li>a:hover span:after { transform: scale(1); }
header.header .nav-primary-inner .nav-primary-menu>ul>li.current>a,
header.header .nav-primary-inner .nav-primary-menu>ul>li.section>a,
header.header .nav-primary-inner .nav-primary-menu>ul>li.current>span,
header.header .nav-primary-inner .nav-primary-menu>ul>li.section>span,
header.header .nav-primary-inner .nav-primary-menu>ul>li.section>a:hover { color: rgba(190,30,45,1); }
header.header .nav-primary-inner .nav-primary-menu>ul>li.current a > span:after,
header.header .nav-primary-inner .nav-primary-menu>ul>li.section a > span:after,
header.header .nav-primary-inner .nav-primary-menu>ul>li.current span > span:after,
header.header .nav-primary-inner .nav-primary-menu>ul>li.section span > span:after { background: rgba(190,30,45,1); transform: scale(1); }

header.header .nav-primary-inner .nav-primary-menu li>a span.anchor:hover { cursor: context-menu; }

header.header .nav-primary-inner .nav-primary-submenu { position: absolute; display: none; top: 40px; left: 0; margin: 0; padding: 0; text-align: left; background: rgba(190,30,45,1); z-index: 2000; }
header.header .nav-primary-inner .nav-primary-submenu li { display: block; margin: 0; padding: 10px; white-space: nowrap; }
header.header .nav-primary-inner .nav-primary-submenu li a { display: block; padding: 0; color: #fff; }
header.header .nav-primary-inner .nav-primary-submenu li>a:hover,
header.header .nav-primary-inner .nav-primary-submenu li.current>a,
header.header .nav-primary-inner .nav-primary-submenu li.section>a { color: rgba(255,255,255,.75); border: none; }

header.header .nav-primary-inner .nav-primary-menu>ul>li:hover > ul { display: block; transform: scale(1); transition: all .15s ease }

/* Mobile Navigation Tigger */
header.header .nav-primary-inner .nav-mobile-trigger { display: none; position: absolute; margin: 5px 20px; top: 0px; left: 0px; max-width: 30px; max-height: 50px;
  color: rgba(190,30,45,1);
  font-weight: 600;
  text-align: right;
  text-decoration: none;
  background: transparent;
  z-index: 1050;
}
header.header .nav-primary-inner .nav-mobile-trigger:hover { color: rgba(28,151,20,1); }
header.header .nav-primary-inner .nav-mobile-trigger span { display: block; text-transform: uppercase; }
header.header .nav-primary-inner .nav-mobile-trigger span:first-child { margin: 0; padding: 0; font-size: 40px; }
header.header .nav-primary-inner .nav-mobile-trigger span:last-child { font-size: 12px; font-weight: 600; }

/* Mobile Navigation */
.nav-mobile { position: relative; display: none; width: 100%; margin: 0; padding: 120px 0 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 101;
}
.nav-mobile ul { margin: 0; padding: 0; list-style: none; background: rgba(190,30,45,1); }
.nav-mobile ul li { position: relative; margin: 0; padding: 0; border-bottom: 1px solid rgba(255,255,255,.5); }
/*.nav-mobile ul li:first-child { /*border-top: 1px solid rgba(255,255,255,.5); }*/
.nav-mobile ul li:last-child { border: none; }
.nav-mobile ul li a,
.nav-mobile ul li span { display: block; margin: 0; padding: 15px; color: rgb(255,255,255); font-size: 100%; text-decoration: none; transition: all .15s ease; }
.nav-mobile ul li a:hover { color: rgba(255,255,255,.75); cursor: pointer; }
.nav-mobile ul li > span.has-children,
.nav-mobile ul li > span.has-childrens { /*float: right;*/ position: absolute; right: 0; padding: 15px; color: rgb(255,255,255); cursor: pointer; border-left: 1px solid rgba(255,255,255,.5); }
.nav-mobile ul li > span.has-children:hover,
.nav-mobile ul li > span.has-childrens:hover { color: rgba(255,255,255, .75); }

.nav-mobile ul li ul.secondary { display: none; background: rgba(28,151,20,1); }
.nav-mobile ul li ul.secondary li { border-top: 1px solid rgba(255,255,255,.5); border-bottom: none; }
.nav-mobile ul li ul.secondary li a { padding-left: 30px; color: rgba(255,255,255,1); font-size: 100%; }
.nav-mobile ul li ul.secondary li a:hover { color: rgba(255,255,255,.75); }

.nav-mobile ul li ul.secondary li ul.tertiary { display: none; background: rgba(183,135,45,1); }
/* .nav-mobile ul li ul.secondary li ul.tertiary li {  } */
.nav-mobile ul li ul.secondary li ul.tertiary li a { padding-left: 40px; color: rgb(255,255,255); font-size: 100%; }
.nav-mobile ul li ul.secondary li ul.tertiary li a:hover { color: rgba(255,255,255,.75); }

/* Call to Action section in header */
header.header .nav-primary-inner .nav-actions { position: absolute; top: 0; right: 20px; margin: 0; padding: 0 5px 5px 5px; background: rgba(28,151,20,1); border-radius: 0 0 5px 5px; }
header.header .nav-primary-inner .nav-actions a { margin: 0 5px; color: #fff; font-size: 12px; }
header.header .nav-primary-inner .nav-actions a:hover { color: rgba(255,255,255,.75); }

/* Banners */
.hero { position: relative; margin: 0; padding: 0; }
.hero .hero-container { position: relative; display: block; height: 600px; width: 100%; transition: all .15s ease; overflow: hidden; }
.hero .hero-container .hero-image { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0;
  background-repeat: no-repeat;
  background-position: 50% top;
  background-size: cover;
}

/*  ==========================================================================
    Home Styles
    ==========================================================================  */
main.home { position: relative; margin: 0; padding: 0; background: #fff; z-index: 2000; }

main.home .home-title { margin: 0; padding: 20px 0; background: rgba(190,30,45,1); }
main.home .home-title h2 { margin: 0 auto; padding: 0 20px; width: 100%; max-width: 1240px;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

main.home .home-inner { position: relative; margin: 0 auto; padding: 0; max-width: 1240px; z-index: 2000; }
main.home .home-content { margin: 0 20px; padding: 50px 0; }
main.home .home-inner p { margin: 0; padding: 0 0 20px 0; color: rgba(68,68,68,1); font-size: 20px; line-height: 28px; }
main.home .home-inner p:last-child { padding: 0; }
/* main.home .home-inner ul {}
main.home .home-inner ul li {}
main.home .home-inner ol {}
main.home .home-inner ol li {}
main.home .home-inner h1 {}
main.home .home-inner h2 {}
main.home .home-inner h3 {}
main.home .home-inner h4 {}
main.home .home-inner h5 {}
main.home .home-inner h6 {} */

main.home .home-services { margin: 0 auto; padding: 0; background: rgba(234,234,234,1); }
main.home .home-services .home-services-inner { margin: 0 auto; padding: 0; width: 100%; max-width: 1240px; }

main.home .home-services .home-services-container { margin: 0 20px; padding: 0;
  display: flex;
}

main.home .home-services .home-services-container .home-services-item { margin: 0; padding: 40px 20px; text-align: center;
  flex: 0 1 33.33333333%;
  background-size: cover;
  display: flex;
  flex-flow: column nowrap;
}
main.home .home-services .home-services-container .home-services-item h4 { margin: 0; padding: 0; color: rgba(190,30,45,1);
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
}
main.home .home-services .home-services-container .home-services-item ul { margin: 20px 0; padding: 0; list-style: none; color: rgba(102,102,102,1);
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}
main.home .home-services .home-services-container .home-services-item ul li { margin: 0; padding: 5px 0; }
main.home .home-services .home-services-container .home-services-item a.button { display: inline-block; margin: 10px auto; margin-top: auto; padding: 10px 20px;
  max-width: 150px;
  color: rgba(255,255,255,1);
  background: rgba(190,30,45,1);
  border-radius: 5px;
  text-transform: uppercase;
}

main.home .home-services .home-services-container .home-services-item:nth-child(2) {
  border-left: 2px solid rgba(28,151,20,1);
}
main.home .home-services .home-services-container .home-services-item:nth-child(3) {
  border-left: 2px solid rgba(28,151,20,1);
}
main.home .home-services .home-services-container .home-services-item:nth-child(1):hover + .home-services-item:nth-child(2) {
  border-left: 2px solid rgba(28,151,20,0);
}
main.home .home-services .home-services-container .home-services-item:nth-child(2):hover + .home-services-item:nth-child(3),
main.home .home-services .home-services-container .home-services-item:nth-child(2):hover {
  border-left: 2px solid rgba(28,151,20,0);
}
main.home .home-services .home-services-container .home-services-item:nth-child(3):hover {
  border-left: 2px solid rgba(28,151,20,0);
}
main.home .home-services .home-services-container .home-services-item:hover {
  background: rgba(28,151,20,.85);
  background-size: cover;
  box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.75);
}
main.home .home-services .home-services-container .home-services-item:hover h4,
main.home .home-services .home-services-container .home-services-item:hover ul li { color: rgba(255,255,255,1); }
main.home .home-services .home-services-container .home-services-item a.button:hover { color: rgba(255,255,255,.75); }

/*  ==========================================================================
    Page Styles
    ==========================================================================  */
main.page { position: relative; margin: 0; padding: 0; background: #fff; }

main.page .page-title { margin: 0; padding: 20px 0; background: rgba(190,30,45,1); }
main.page .page-title h2 { margin: 0 auto; padding: 0 20px; width: 100%; max-width: 1240px;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

main.page .page-inner { position: relative; margin: 0 auto; padding: 0; max-width: 1240px; }
main.page .page-content { margin: 0 20px; padding: 50px 0; border-bottom: 1px solid rgba(234,234,234,1); }
main.page .page-inner a { color: rgba(190,30,45,1); }
main.page .page-inner a:hover { color: rgba(28,151,20,1); }
main.page .page-inner p { margin: 0; padding: 0 0 20px 0; color: rgba(68,68,68,1); font-size: 16px; line-height: 26px; }
main.page .page-inner p:last-child { padding: 0; }
main.page .page-inner p img.left { float: left; margin: 5px 20px 15px 0; }
/* main.page .page-inner ul {} */
main.page .page-inner ul li { color: rgba(68,68,68,1); font-size: 16px; line-height: 26px; }
/* main.page .page-inner ol {} */
main.page .page-inner ol li { color: rgba(68,68,68,1); font-size: 16px; line-height: 26px; }
main.page .page-inner h1 { margin: 0 0 20px 0; padding: 0; color: rgba(68,68,68,1); }
main.page .page-inner h2 { margin: 0 0 20px 0; padding: 0; color: rgba(68,68,68,1); }
main.page .page-inner h3 { margin: 0 0 15px 0; padding: 0; color: rgba(68,68,68,1); }
main.page .page-inner h4 { margin: 0 0 10px 0; padding: 0; color: rgba(68,68,68,1); }
main.page .page-inner h5 { margin: 0; padding: 0; color: rgba(68,68,68,1); }
main.page .page-inner h6 { margin: 0; padding: 0; color: rgba(68,68,68,1); }

/*  ==========================================================================
    Instagram Styles
    ==========================================================================  */
.instagram { position: relative; margin: 0; padding: 0; background: #fff; overflow: hidden; z-index: 1000; }
.instagram-container { position: relative; margin: 0 auto; padding: 0; width: 100%; max-width: 1240px; }
.instagram-container .instagram-feed { margin: 0 20px; padding: 50px 0; }
.instagram-container .instagram-feed h2 { margin: 0 0 40px 0; padding: 0; color: rgba(190,30,45,1); font-size: 32px; font-weight: 600; }
/* .instagram-container .instagram-feed .instagram-carousel { } */
/* .instagram-container .instagram-feed .instagram-carousel .carousel-item {  } */
.instagram-container .instagram-feed .instagram-carousel .carousel-item a { display: block; }
.instagram-container .instagram-feed .instagram-carousel .carousel-item a img { width: 100%; height: auto; }
.instagram-container .instagram-feed .instagram-carousel button.slick-prev { left: -30px; }
.instagram-container .instagram-feed .instagram-carousel button.slick-next { right: -30px; }
.instagram-container .instagram-feed .instagram-carousel button,
.instagram-container .instagram-feed .instagram-carousel button::before { color: rgba(166,159,146,1); }

/* the slides */
.slick-slide {
    margin: 0 20px;
    /*width: 250px;*/
}
/* the parent */
.slick-list {
    margin: 0 -20px;
}

/*  ==========================================================================
    Footer Styles
    ==========================================================================  */
footer { position: relative; margin: 0; padding: 0; background: rgba(234,234,234,1); }
.footer-inner { margin: 0 auto; padding: 30px 0; max-width: 1240px; }

.footer-menu { margin: 0 20px; }
.footer-menu ul { display: block; margin: 0; padding: 0; list-style: none; text-align: center; }
.footer-menu ul li { display: inline-block; margin: 0 15px; }
.footer-menu ul li:first-child { margin-left: 0; }
.footer-menu ul li:last-child { margin-right: 0; }
.footer-menu ul li a { color: rgba(190,30,45,1); }
.footer-menu ul li a:focus,
.footer-menu ul li a:hover { text-decoration: underline !important; }
.footer-menu ul li.current a,
.footer-menu ul li.section a { text-decoration: underline !important; }

.footer-social { margin: 20px; }
.footer-social p { color: rgba(190,30,45,1); text-align: center; }
.footer-social p a { margin-right: 20px; color: rgba(190,30,45,1); font-size: 24px; }
.footer-social p a:last-child { margin: 0; }

.footer-slogan { margin: 0 20px; }
.footer-slogan p { color: rgba(190,30,45,1); text-align: center; }

.footer-copyright { margin: 0; padding: 0; background: rgba(109,109,109,1); }
.footer-copyright-inner { margin: 0 auto; padding: 0; max-width: 1240px; }
.footer-copyright-inner p { margin: 0 20px; padding: 5px 0; color: rgba(255,255,255,1); font-size: 12px; text-align: center; }

/*  ==========================================================================
    Form Styles
    ==========================================================================  */
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea { display: block; margin: 0 0 15px 0; padding: 6px 12px; width: 100%; height: 40px; color: #83868b; font-size: 16px; line-height: 1.8;
  background-color: #fff;
  background-image: none;
  border: 2px solid #ded4cb;
  border-radius: none;
  box-shadow: none!important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

input:focus[type=color],
input:focus[type=date],
input:focus[type=datetime-local],
input:focus[type=datetime],
input:focus[type=email],
input:focus[type=month],
input:focus[type=number],
input:focus[type=password],
input:focus[type=search],
input:focus[type=tel],
input:focus[type=text],
input:focus[type=time],
input:focus[type=url],
input:focus[type=week],
select:focus,
textarea:focus {
  outline: 0;
  border-color: #877f7a;
}

input.error[type=color],
input.error[type=date],
input.error[type=datetime-local],
input.error[type=datetime],
input.error[type=email],
input.error[type=month],
input.error[type=number],
input.error[type=password],
input.error[type=search],
input.error[type=tel],
input.error[type=text],
input.error[type=time],
input.error[type=url],
input.error[type=week],
select.error,
textarea.error {
  border-color: rgba(202,51,59,1);
}

input[type=color]::-ms-expand,
input[type=date]::-ms-expand,
input[type=datetime-local]::-ms-expand,
input[type=datetime]::-ms-expand,
input[type=email]::-ms-expand,
input[type=month]::-ms-expand,
input[type=number]::-ms-expand,
input[type=password]::-ms-expand,
input[type=search]::-ms-expand,
input[type=tel]::-ms-expand,
input[type=text]::-ms-expand,
input[type=time]::-ms-expand,
input[type=url]::-ms-expand,
input[type=week]::-ms-expand,
select::-ms-expand,
textarea::-ms-expand {
    border: 0;
    background-color: transparent
}

input[type=date] { position: relative; }
input[type=date]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none;
}
input[type=date]::-webkit-calendar-picker-indicator {
  color: #ded4cb;
  font-size: 30px;
  /*-webkit-appearance: none;
    display: none;*/
}
input[type=date]::-webkit-calendar-picker-indicator:hover {
  background-color: #fff;
  color: #ca333b;
  cursor: pointer;
}
input[type=date]::-webkit-calendar-picker-indicator:active {
  color: #ca333b;
}

textarea { resize: vertical; }

fieldset,
legend { margin: 0; padding: 0; border: 0; }

::-webkit-input-placeholder { color: #999; } /* Chrome/Opera/Safari */
::-moz-placeholder { color: #999; } /* Firefox 19+ */
:-ms-input-placeholder { color: #999; } /* IE 10+ */
:-moz-placeholder { color: #999; } /* Firefox 18- */
::placeholder { color: #999; } /* Everything */

/* Specific User Forms Styles */
form.userform { margin: 0 auto; max-width: 800px; font-size: 18px; line-height: 30px; color: rgba(190,30,45,1); font-family: 'Raleway', sans-serif; }
form.userform > p.message { margin: 0 10px 30px 10px; padding: 15px; color: #a94442; background-color: #f2dede; border: 2px solid #ebccd1; }

form.userform > div.userform-fields { margin: 0; }

/* form.userform > div.userform-fields div.form-step {} */

form.userform > div.userform-fields div.form-step div.field.field-no-margin { margin: 0; }

form.userform > div.userform-fields div.form-step div.field { margin: 0 0 30px 0; }
/* form.userform > div.userform-fields div.form-step div.requiredField {} */
form.userform > div.userform-fields div.form-step fieldset,
form.userform > div.userform-fields div.form-step fieldset.optionset,
form.userform > div.userform-fields div.form-step fieldset.checkboxset { margin: 0 0 30px 0; }



form.userform > div.userform-fields div.form-step fieldset.checkboxset > .middleColumn > div { margin-bottom: 15px; height: 24px; line-height: 24px; }
form.userform > div.userform-fields div.form-step fieldset.checkboxset > .middleColumn > div:last-child { margin-bottom: 0; }

form.userform > div.userform-fields div.form-step fieldset.checkboxset input[type=checkbox],
form.userform > div.userform-fields div.form-step fieldset.checkboxset input[type=radio],
form.userform > div.userform-fields div.form-step fieldset.optionset input[type=radio] { position: relative; margin: 0; padding: 0; height: 24px; width: 24px;
  border: 2px solid #ded4cb;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all .15s ease-in-out;
}

form.userform > div.userform-fields div.form-step fieldset.checkboxset input[type=radio],
form.userform > div.userform-fields div.form-step fieldset.optionset input[type=radio] { border-radius: 50%; }

form.userform > div.userform-fields div.form-step fieldset.checkboxset input[type=checkbox]:after,
form.userform > div.userform-fields div.form-step fieldset.checkboxset input[type=radio]:after,
form.userform > div.userform-fields div.form-step fieldset.optionset input[type=radio]:after {
  position: absolute;
  display: block;
  font-family: FontAwesome;
  height: 24px;
  width: 24px;
  line-height: 24px;
  top: -2px;
  left: -2px;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: all .15s ease-in-out;
}

form.userform > div.userform-fields div.form-step fieldset.checkboxset input[type=checkbox]:checked,
form.userform > div.userform-fields div.form-step fieldset.checkboxset input[type=radio]:checked,
form.userform > div.userform-fields div.form-step fieldset.optionset input[type=radio]:checked { border-color: #877f7a; background: #877f7a; }

form.userform > div.userform-fields div.form-step fieldset.checkboxset input[type=radio]:checked,
form.userform > div.userform-fields div.form-step fieldset.optionset input[type=radio]:checked { border-radius: 50%; }

form.userform > div.userform-fields div.form-step fieldset.checkboxset input[type=checkbox]:after { font-size: 16px; content: "\F00C"; }
form.userform > div.userform-fields div.form-step fieldset.optionset input[type=radio]:after { font-size: 14px; content: "\F111"; }

form.userform > div.userform-fields div.form-step fieldset.checkboxset input[type=checkbox]:checked:after,
form.userform > div.userform-fields div.form-step fieldset.checkboxset input[type=radio]:checked:after,
form.userform > div.userform-fields div.form-step fieldset.optionset input[type=radio]:checked:after { opacity: 1; visibility: visible; transform: scale(1); }

form.userform > div.userform-fields div.form-step fieldset.checkboxset label,
form.userform > div.userform-fields div.form-step fieldset.optionset label { display: inline-block; margin-left: 10px; line-height: 24px; vertical-align: top; }

/* form.userform > div.userform-fields div.form-step fieldset legend {} */

form.userform > div.userform-fields div.form-step div.field label { display: inline-block; max-width: 100%; }
form.userform > div.userform-fields div.form-step div.field label span.required-red,
form.userform > div.userform-fields div.form-step fieldset.field legend span.required-red { color: rgba(202,51,59,1); }

form.userform > div.userform-fields div.form-step div.field div.middleColumn { margin: 0; padding: 0; }

form.userform > div.userform-fields div.form-step div.field div.middleColumn input[type=text],
form.userform > div.userform-fields div.form-step div.field div.middleColumn input[type=email],
form.userform > div.userform-fields div.form-step div.field div.middleColumn input[type=date],
form.userform > div.userform-fields div.form-step div.field div.middleColumn textarea,
form.userform > div.userform-fields div.form-step div.field div.middleColumn select { height: 60px; color: #303133; }

/* form.userform > div.userform-fields div.form-step div.field div.middleColumn input.requiredField[type=text] {  } */
/* form.userform > div.userform-fields div.form-step div.field div.middleColumn input.error[type=text] {  } */

form.userform > div.userform-fields div.form-step div.field div.middleColumn textarea { height: 200px; }

form.userform > div.userform-fields div.form-step div.field div.middleColumn span.message { display: block; }
form.userform > div.userform-fields div.form-step div.field div.middleColumn span.error,
form.userform > div.userform-fields div.form-step fieldset.field div.middleColumn span.error { display: block; margin: -10px 0 10px 0; padding: 0;
    text-align: left;
    color: rgba(202,51,59,1);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .02em;
}

form.userform > nav { text-align: center; }
form.userform > nav > input[type=submit] {
  display: inline-block;
  padding: 18px 30px 14px 30px;
  min-width: 200px;
  color: #fff;
  /*font-family: 'Trump Gothic Pro', sans-serif;*/
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .075em;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid rgba(190,30,45,1);
  background: rgba(190,30,45,1);
  transition: all .15s ease;
}
form.userform > nav > input:hover[type=submit] { color: #fff; border-color: rgba(28,151,20,1); background: rgba(28,151,20,1); outline: none!important; box-shadow: none!important; }

select {
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 10px),
    calc(100% - 15px) calc(1em + 10px),
    calc(100% - 2.5em) 1em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}

select:focus {
  background-image:
    linear-gradient(45deg, #ca333b 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, #ca333b 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 15px) calc(1em + 10px),
    calc(100% - 20px) calc(1em + 10px),
    calc(100% - 2.5em) 1em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}

form.userform > div.userform-fields div.form-step > div.form-sentence { margin-bottom: 0;  }
form.userform > div.userform-fields div.form-step > div.form-sentence > label { float: none; display: inline-block; padding: 0 10px 0 0; width: auto; font-weight: normal; }
form.userform > div.userform-fields div.form-step > div.form-sentence > div.middleColumn { float: none; display: inline-block; width: 70px; height: 40px; }
form.userform > div.userform-fields div.form-step > div.form-sentence > div.middleColumn > input[type=text] { height: 40px; }
form.userform > div.userform-fields div.form-step > div.form-sentence > span.right-title { float: none; display: inline-block; padding: 0 0 0 10px; }

/*  ==========================================================================
    Responsive Styles.
    Inlined to avoid the additional HTTP request: See Print Styles Below.
    ==========================================================================  */
@media only screen and (max-width: 1200px) {

  .instagram-container .instagram-feed { overflow: hidden; }
  .instagram-container .instagram-feed .instagram-carousel button.slick-prev { left: 30px; }
  .instagram-container .instagram-feed .instagram-carousel button.slick-next { right: 30px; }
  .instagram-container .instagram-feed .instagram-carousel button,
  .instagram-container .instagram-feed .instagram-carousel button::before { color: rgba(255,255,255,1); z-index: 100000; }

}

@media screen and (min-width: 768px) and (max-width: 1024px) { /* If I need something between specific page/screen sizes */

}

@media only screen and (min-width: 900px) {

  header.header nav.nav-mobile { display: none !important; }

}

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

  header.header .nav-primary-inner .nav-primary-menu { display: none; }
  header.header .nav-primary-inner .nav-mobile-trigger { display: block; }

  header.header .nav-primary-inner .nav-actions a { display: block; padding-top: 5px; }
  header.header .nav-primary-inner .nav-actions span a { display: inline-block; }

  .hero .hero-container { height: 500px; }

  main.home .home-services .home-services-container { flex-direction: column; }
  main.home .home-services .home-services-container .home-services-item:nth-child(2) {
    border-left: 2px solid rgba(28,151,20,0);
    border-top: 2px solid rgba(28,151,20,1);
  }
  main.home .home-services .home-services-container .home-services-item:nth-child(3) {
    border-left: 2px solid rgba(28,151,20,0);
    border-top: 2px solid rgba(28,151,20,1);
  }

}

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


  .hero .hero-container { height: 400px; }

  main.home .home-title h2,
  main.page .page-title h2 { font-size: 30px; }

}

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

}

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

  header.header .nav-primary-inner .nav-actions>a:nth-child(1),
  header.header .nav-primary-inner .nav-actions>a:nth-child(2) { display: none; }

  .nav-mobile {padding: 65px 0 0 0; }

  header.header .nav-primary-inner { min-height: 65px; }
  header.header .nav-primary-inner .nav-primary-logo { max-width: 120px; max-height: 120px; }
  header.header .nav-primary-inner .nav-primary-logo img { max-width: 120px; }

  .hero .hero-container { height: 300px; }

}

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

  main.home .home-title h2,
  main.page .page-title h2 { font-size: 20px; }

}

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

}
