/*
===============================================
	COMMON.CSS
	----------
	- This CSS file is same for all pages.
===============================================
*/

/* Resets */
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.hidethis {
    display: none !important;
}

/* Scrollbar CSS */

/* width */
::-webkit-scrollbar {
    width: 5px;
    outline: none;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fafafa;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #2c454c;
    border-radius: 40px;
}

::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: #2c454c;
}

::selection {
    color: #fff;
    background: #2c454c;
}

/* Default CSS */

body {
    position: relative;
    overflow-x: hidden;
    background: #ffffff !important;
    color: #151515;
}

body, button, input, select, textarea {
    font-family: "europa", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    color: #151515;
}

body.stop-mouse-scroll {
    overflow: hidden;
}

.hidethis {
    display: none !important;
}

body .grid-container{
    max-width: 100%;
}

body .custom-page-section:not(.full-width-section){
    padding: 0 6%;
}

body .custom-page-section:not(.full-width-section).grid-width{
    display: block;
    width: 100%;
    padding: 0 120px;
    margin: 0 auto;
}

body .custom-page-section:not(.full-width-section).large-grid-width{
    display: block;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

body .custom-page-section:not(.full-width-section).grid-width > div,
body .custom-page-section:not(.full-width-section).large-grid-width > div{
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    margin-left: auto !important;
    margin-right: auto !important;
}

body .show-desktop{
    display: block;
}

body .show-mobile{
    display: none;
}

/* Headings and default texts */

body .mega-main-heading h1,
body .mega-main-heading h2 {
    font-size: 70px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 20px;
}

body .mega-main-heading-2 h1,
body .mega-main-heading-2 h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 20px;
}

body .main-heading h1,
body .main-heading h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 20px;
}

body .main-heading-2 h2 {
    font-size: 34px;
    line-height: 130%;
    margin-bottom: 20px;
}

body h2,
body .sub-heading h2 {
    font-size: 28px;
    line-height: 130%;
    margin-bottom: 20px;
}

body h3,
body .sub-heading-2 h3,
body .sub-heading-2 h3 ul li {
    font-size: 22px;
    line-height: 130%;
    margin-bottom: 15px;
}

body h4,
body .sub-heading-3 h4,
body .sub-heading-3 h4 ul li {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 15px;
}

body p {
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    color: #151515;
}

body ul li,
body ol li {
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    color: #151515;
    margin-bottom: 15px;
}

body .para-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    color: #151515;
    font-weight: 400;
    margin-bottom: 20px;
}

body .small-text p {
    font-size: 16px;
    line-height: 140%;
    color: #151515;
    font-weight: 400;
    margin-bottom: 15px;
}

body .smallest-text p {
    font-size: 14px;
    line-height: 140%;
    color: #151515;
    font-weight: 400;
    margin-bottom: 15px;
}

body strong {
    color: #000000;
    font-weight: 700;
}

body .green-text,
body .green-text p,
body .green-text p > *,
body .green-text h1,
body .green-text h2,
body .green-text h3 {
    color: #11632D;
}

body .yellow-text,
body .yellow-text p,
body .yellow-text p > *,
body .yellow-text h1,
body .yellow-text h2,
body .yellow-text h3 {
    color: #E2DF22;
}

body .white-text,
body .white-text p,
body .white-text p > *,
body .white-text h1,
body .white-text h2,
body .white-text h3 {
    color: #fff;
}

body a{
    color: #151515;
}

body span.outline-text {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #151515;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

body .yellow-text span.outline-text {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #E2DF22;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

body .white-text span.outline-text {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ffffff;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

/* Header CSS */

body header.site-header{
    background: #282a2e;
/*     box-shadow: 0 2px 40px rgba(0, 0, 0, 0.05); */
    padding: 0 6%;
}

body{
    padding-top: 80px !important;
}

body header.site-header .inside-header{
    padding: 20px 0px;
}

body header.site-header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 9;
}

body header.site-header.sticky-header{
    position: fixed;
    transform: translate(-100%);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.05);
    will-change: transform;
    animation: header-down .35s ease forwards;
}

body.transparent-header header.site-header{
	 position: fixed;
}

body.transparent-header header.site-header{
	box-shadow: none;
	background: transparent;
}

@keyframes header-down {
    from {
        transform: translateY(-100%);
    }to {
        transform: translateY(0%);
    }
}

body header.site-header .main-navigation{
    background: transparent;
}

body header.site-header .main-navigation .main-nav ul li{
    margin-bottom: 0px;
}

body header.site-header .main-navigation .main-nav ul li a{
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    color: #FFFFFF;
    letter-spacing: 0.4px;
    margin-right: 0px;
}

body header.site-header .main-navigation .main-nav ul li:hover > a,
body header.site-header .main-navigation .main-nav ul li a:hover{
    color: #E2DF22;
}

body header.site-header .main-navigation ul ul{
    width: 222px;
    background: #FFFFFF;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.05);
}

body header.site-header .main-navigation .main-nav ul ul li a{
    font-size: 16px;
    color: #151515;
    line-height: 150%;
}

body header.site-header .main-navigation .main-nav ul ul li a:hover{
    color: #E2DF22;
}

body header.site-header .main-navigation .main-nav ul ul li{
    border-top: 2px solid #f7f8f9;
}

body header.site-header .main-cta.header-cta{
    margin-left: 25px;
}

body .main-cta a,
body form input[type="submit"]{
    position: relative;
    font-size: 16px;
    font-weight: 700;
    background: #2c454c;
    color: #FFFFFF !important;
    border-radius: 4px;
    padding: 12px 20px;
    line-height: 100% !important;
    text-decoration: none;
    letter-spacing: 0.4px;
}

body .main-cta.white-cta a{
    background: #ffffff;
}

body .main-cta.green-cta a{
    background:  #11632D;
    color: #FFFFFF !important;   
}

body .main-cta a:hover,
body form input[type="submit"]:hover{
    background: #151515 !important;
    color: #FFFFFF !important;
}

body #main{
    margin: 0;
}

body #main .entry-header{
    display: none;
}

body #main .entry-content{
    margin-top: 0px;
}

body #main .inside-article{
    padding: 0;
}

body #main .wp-block-group__inner-container{
    padding: 0;
}

body #main .wp-block-columns{
    margin-bottom: 0px;
}

body #main .align-center{
    align-items: center !important;
}

body .border-yellow > *{
    position: relative;
    display: inline-block;
}

body .border-yellow > *:before{
    position: absolute;
    content: '';
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #E2DF22;
}

body #main .text-uppercase{
    text-transform: uppercase;
}

body #main .text-center{
    display: block;
    text-align: center;
}

body #main .opacity-50{
    opacity: 0.5;
}

body #main .move-up-row > *{
    margin-top: -140px;
}

/* Footer CSS */

body .site-footer{
    position: relative;
    background: #282a2e;
    padding: 40px 0px;
}

body .site-footer .custom-main-footer{
    padding: 0px 6%;
}

body .site-footer .custom-main-footer .footer-inner-row{
    display: flex;
    padding: 20px 0px;
}

body .site-footer .custom-main-footer .footer-inner-row.row-2{
    padding-bottom: 0px;
}

body .site-footer .custom-main-footer .footer-inner-row.row-1{
    border-bottom: 1px solid #ffffff;
}

body .site-footer .custom-main-footer .footer-inner-row .footer-col{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

body .site-footer .custom-main-footer .footer-inner-row .footer-col.col-1{
    width: 100%;
    justify-content: center;
}

body .site-footer .custom-main-footer .footer-inner-row .footer-col.col-2{
    width: 100%;
    justify-content: flex-end;
}

body .site-footer .custom-main-footer .footer-logo img{
    margin-bottom: 20px;
}

body .site-footer .custom-main-footer .footer-main-links,
body .site-footer .custom-main-footer .footer-other-links{
    display: flex;
    width: 100%;
}

body .site-footer .custom-main-footer .footer-main-links a,
body .site-footer .custom-main-footer .footer-other-links a{
    margin-right: 30px;
    text-decoration: none;
    font-weight: 700;
}

body .site-footer .custom-main-footer .footer-main-links a:hover,
body .site-footer .custom-main-footer .footer-other-links a:hover{
    color: #E2DF22;
}

body .site-footer .custom-main-footer .footer-other-links a{
    font-weight: 400;
}

body .site-footer .custom-main-footer .footer-main-links p,
body .site-footer .custom-main-footer .footer-other-links p{
    margin-bottom: 0px;
}

body .site-footer .custom-main-footer .footer-social{
    display: flex;
    align-items: center;
}

body .site-footer .custom-main-footer .footer-social a{
    text-decoration: none;
    margin-left: 30px;
}

body footer.site-info{
    display: none;
}

body .site-footer .custom-main-footer .gform_validation_errors{
    display: none;
}

body .site-footer .custom-main-footer .gform_fields{
    position: relative;
}

body .site-footer .custom-main-footer form{
    display: flex;
}

body .site-footer .custom-main-footer .gform_body{
    width: calc(100% - 120px);
}

body .site-footer .custom-main-footer .gform_footer{
    width: calc(120px);
    padding: 0 !important;
    margin: 0 !important;
}

body .site-footer .custom-main-footer form input{
    min-height: 50px;
    border: none !important;
    padding: 10px 20px !important;
}

body .gform_wrapper.gravity-theme .gform_fields .gfield{
    position: relative;
}

body .site-footer .custom-main-footer .validation_message,
body #main .validation_message{
    position: absolute;
    bottom: -10px;
    display: inline-block;
    font-size: 14px;
    width: auto;
    padding: 4px 10px;
    margin: 0;
    line-height: 100%;
    border: none;
    border-left: 2px solid #ff5252;
    color: #ff5252;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.05);
}

body #main .gform_wrapper.gravity-theme .gfield_error [aria-invalid=true]{
    border: none;
}

body #main .gform_wrapper.gravity-theme .gform_validation_errors{
    display: none;
}

body .site-footer .custom-main-footer .gform_body input,
body #main .gform_body input,
body #main .gform_body textarea{
    font-size: 16px;
    font-weight: 400;
    background: #f6f6f6;
    color: #151515;
    border-radius: 4px 0 0 4px;
}

body #main .gform_body input,
body #main .gform_body textarea{
    font-size: 18px;
    border-radius: 4px;
}

body .site-footer .custom-main-footer .gform_body input::placeholder{
    color: #ABABAB;
}

body .site-footer .custom-main-footer .gform_footer > input{
    border-radius: 0 4px 4px 0;
}

body .site-footer .custom-main-footer .gform_confirmation_message,
body #main .gform_confirmation_message{
    font-size: 22px;
    font-weight: 700;
    max-width: 380px;
    color: #151515;
    background: #f0f0f0;
    padding: 18px 20px;
    border-left: 5px solid #E2DF22;
    line-height: 140%;
    margin: 0 auto;
    margin-bottom: 40px;
}

body #main .gform_required_legend{
    display: none;
}

body #main .gfield_required{
    /* display: none; */
}

body .post-password-required .entry-content{
	display: flex;
	align-items: center;
	justify-content: center;
}

body .post-password-required .entry-content .post-password-form{
	display: block;
	max-width: 520px;
	margin: 60px 20px;
	display: block;
	box-shadow: -1px 2px 8px 1px rgba(104,106,111,.1),0 0 0 0 rgba(104,106,111,.1);
	border-radius: 7px;
	overflow: hidden;
	transition: 0.3s;
	transform: translateY(0px);
	padding: 40px;
	background: #ffffff;
}

/* Smaller Screen Desktops */
@media only screen and (max-width: 1280px) {
    
    body header.site-header,
    body .site-footer .custom-main-footer,
    body .custom-page-section:not(.full-width-section){
        padding: 0px 4%;
    }
    
}

/* Mid Large Screen Desktops */
@media only screen and (min-width: 1440px) {

    body header.site-header,
    body .site-footer .custom-main-footer,
    body .custom-page-section:not(.full-width-section){
        padding: 0px 8%;
    }
}

/* Large Screen Desktops */
@media only screen and (min-width: 1920px) {

    body header.site-header,
    body .site-footer .custom-main-footer,
    body .custom-page-section:not(.full-width-section){
        padding: 0px 14%;
    }
    
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {

    body .mega-main-heading h1,
    body .mega-main-heading h2 {
        font-size: 40px;
    }

    body .mega-main-heading-2 h1,
    body .mega-main-heading-2 h2 {
        font-size: 30px;
    }

    body .main-heading h1,
    body .main-heading h2{
        font-size: 28px;
    }

    body .main-heading-2 h2{
        font-size: 26px;
    }

    body h2, body .sub-heading h2{
        font-size: 22px;
    }

    body h3, body .sub-heading-2 h3,
    body .sub-heading-2 h3 ul li{
        font-size: 20px;
    }

    body .custom-page-section:not(.full-width-section).grid-width{
        padding: 0 60px;
    }
    
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    
}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {

    body .show-desktop{
        display: none;
    }
    
    body .show-mobile{
        display: block;
    }

    body header.site-header,
    body .site-footer .custom-main-footer,
    body .custom-page-section:not(.full-width-section){
        padding: 0px 40px;
    }

    body .site-header .header-image{
        max-width: 140px;
    }

    body header.site-header .inside-header{
        padding: 10px 0;
    }

    body header.site-header .main-navigation .main-nav ul{
        display: flex;
        justify-content: flex-end;
    }

    body header.site-header .main-cta.header-cta{
        margin-left: 0px;
    }

    body header.site-header .main-cta.header-cta{
        text-align: center;
    }

    body header.site-header .main-cta.header-cta a{
        display: inline-block;
    }

    body header.site-header .icon-menu-bars svg{
        fill: #FFFFFF;
        height: 25px;
        width: 25px;
    }

    body header.site-header .icon-arrow svg{
        fill: #FFFFFF;
        height: 25px;
        width: 25px;
    }

    body .main-navigation .main-nav ul li.sfHover:not([class*="current-menu-"]) > a{
        color: #E2DF22;
    }

    body .custom-page-section:not(.full-width-section).grid-width{
        padding: 0 60px;
    }
    
    body .custom-page-section:not(.full-width-section).large-grid-width{
        padding: 0 20px;
    }

    body .site-footer .custom-main-footer .footer-inner-row{
        flex-wrap: wrap;
    }
    
    body .site-footer .custom-main-footer .footer-inner-row .footer-col.col-1,
    body .site-footer .custom-main-footer .footer-inner-row .footer-col.col-2{
        width: 100%;
        justify-content: center;
    }

    body .site-footer .custom-main-footer .footer-main-links,
    body .site-footer .custom-main-footer .footer-other-links{
        flex-wrap: wrap;
        justify-content: center;
    }

    body .site-footer .custom-main-footer .footer-main-links a,
    body .site-footer .custom-main-footer .footer-other-links a{
        margin-left: 10px;
        margin-right: 10px;
    }
    
    body .site-footer .custom-main-footer .footer-inner-row .footer-col.col-2{
        margin-top: 25px;
    }
}

/* Mobile Devices */
@media only screen and (max-width: 765px) {

    body .show-desktop{
        display: none;
    }
    
    body .show-mobile{
        display: block;
    }

    body header.site-header,
    body .site-footer .custom-main-footer,
    body .custom-page-section:not(.full-width-section){
        padding: 0px 20px;
    }

    body .site-header .header-image{
        max-width: 140px;
    }

    body header.site-header .inside-header{
        padding: 10px 0;
    }

    body header.site-header .main-navigation .main-nav ul{
        display: flex;
        justify-content: flex-end;
    }

    body header.site-header .main-cta.header-cta{
        margin-left: 0px;
    }

    body header.site-header .main-cta.header-cta{
        text-align: center;
    }

    body header.site-header .main-cta.header-cta a{
        display: inline-block;
    }

    body header.site-header .icon-menu-bars svg{
        fill: #FFFFFF;
        height: 25px;
        width: 25px;
    }

    body header.site-header .icon-arrow svg{
        fill: #FFFFFF;
        height: 25px;
        width: 25px;
    }

    body .main-navigation .main-nav ul li.sfHover:not([class*="current-menu-"]) > a{
        color: #E2DF22;
    }

    body .custom-page-section:not(.full-width-section).grid-width{
        padding: 0 20px;
    }
    
    body .custom-page-section:not(.full-width-section).large-grid-width{
        padding: 0 20px;
    }

    body .site-footer .custom-main-footer .footer-inner-row{
        flex-wrap: wrap;
    }
    
    body .site-footer .custom-main-footer .footer-inner-row .footer-col.col-1,
    body .site-footer .custom-main-footer .footer-inner-row .footer-col.col-2{
        width: 100%;
        justify-content: center;
    }

    body .site-footer .custom-main-footer .footer-main-links,
    body .site-footer .custom-main-footer .footer-other-links{
        flex-wrap: wrap;
        justify-content: center;
    }

    body .site-footer .custom-main-footer .footer-main-links a,
    body .site-footer .custom-main-footer .footer-other-links a{
        margin-left: 10px;
        margin-right: 10px;
    }
    
    body .site-footer .custom-main-footer .footer-inner-row .footer-col.col-2{
        margin-top: 25px;
    }

    body .site-footer .custom-main-footer form{
        flex-wrap: wrap;
    }

    body .site-footer .custom-main-footer .gform_body,
    body .site-footer .custom-main-footer .gform_footer{
        width: 100%;
    }

    body .site-footer .custom-main-footer .gform_footer > input{
        width: 100%;
        border-radius: 0 0 4px 4px;
        min-height: 50px !important;
    }

    body .site-footer .custom-main-footer .gform_body input{
        border-radius: 4px 4px 0 0;
    }

    body .mega-main-heading h1,
    body .mega-main-heading h2 {
        font-size: 40px;
    }

    body .mega-main-heading-2 h1,
    body .mega-main-heading-2 h2 {
        font-size: 30px;
    }

    body .main-heading h1,
    body .main-heading h2{
        font-size: 28px;
    }

    body .main-heading-2 h2{
        font-size: 26px;
    }

    body h2, body .sub-heading h2{
        font-size: 22px;
    }

    body h3, body .sub-heading-2 h3,
    body .sub-heading-2 h3 ul li{
        font-size: 20px;
    }
}
