/**********
SITEWIDE STYLES
**********/

:root {
    --primary-text: #0a0a0a;
    --white: #fff;

    --primary: #AF461C;
    --primary-alt: #8b3817 ;

    --secondary: #ceff80;
    --secondary-alt: #a5d15e;

    --accent: #bd4b27;

    --bgblockone:#dbe7ff;
    --bgblocktwo: #fff;

    --transparent:rgba(0,0,0,0);
}

body {
    color:#0a0a0a;
    line-height: 1.7;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 500;
    margin-bottom: 0;
    padding-bottom:10px;
}

h1 {
    font-size:42px;
}

h2 {
    font-size:42px;
}
h3 {
    font-size:25px;
}
h4 {
    font-size:21px;
}
h6 {
    font-size:16px;
}

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

::-moz-selection {
    background: var(--primary);
    color: var(--white);
}

::selection {
    background: var(--primary);
    color: var(--white);
}

.text-white {
    color: #fff;
}

* {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto
}

a {
    text-decoration: none;
}

/* BLOG */
.featured-image img {
    object-fit: cover;
    transform: scale(1);
    transition: -webkit-transform 300ms ease;
    transition: transform 300ms ease;
    transition: transform 300ms ease;
    -webkit-transform: 300ms ease;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    position:absolute;
}
.featured-image img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.featured-image {
    overflow: hidden;
    padding-top:60%;
    margin-bottom: 10px;
    position: relative;
}
.placeholder-image i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: var(--dark);
}
.featured-image .placeholder-image {
    position: absolute;
    width: 100%;
    background-color: #e1e1e1;
    height: 100%;
    text-align: center;
}
.breadcrumbs i {
    font-size: 13px;
    position: relative;
    top: -1.1px;
}

/**********
BUTTON    
**********/
.btn {
    background-color: transparent ;
    box-shadow: none !important;
    padding: 13px 30px;
    transition: all .15s ease-in-out;
    border-radius: 4px;
    text-transform: uppercase;
    border-width:0px;
    font-size:16px;
    font-weight: 600;
    border-style: solid;
}

.btn-small {
    font-size: .9rem;
    padding: 7px 20px;
}

.btn.btn-primary {
    font-weight: bold;
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    border-width:0;
    border-style: solid;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active
 {
    background-color: var(--primary-alt);
    color: var(--white);
}

.gform_wrapper.gravity-theme 
  input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
    border-radius: 0 !important;   /* removes the curve */
    -webkit-appearance: none;      /* strips iOS Safari default styles */
    appearance: none;
}



.form-container .frm_form_fields .frm_fields_container .frm_submit .frm_button_submit {
    font-weight: bold;
    background-color: var(--accent);
    color: #fff;
    position: relative;
    border-width:0;
    border-style: solid;
}

.form-container .frm_form_fields .frm_fields_container .frm_submit .frm_button_submit:hover,
.form-container .frm_form_fields .frm_fields_container .frm_submit .frm_button_submit:focus,
.frm_button_submit:active {
    background-color: var(--secondary-alt);
    color: #fff;
}

.btn.btn-secondary {
    background-color: var(--secondary);
    color: #fff;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
    background-color: var(--secondary-alt);
    border: 0 solid var(--transparent);
    color: var(--white);
}

.btn.btn-white {
    color:var(--primary);
    background-color:var(--white);
    opacity: 1;
}

.btn.btn-white:hover,
.btn.btn-white:focus,
.btn.btn-white:active {
    opacity: .6;
}

/* DEFAULTS */
.list-style-none {
    list-style-type: none;
}
.nav ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav ul li {
    display: inline-block;
}
.transition {
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}
.bgcover {
    background-size:cover;
	background-position:center;
}
section.block {
    padding:100px 0;
}

/* DEFAULT GRAVITY FORMS */
.gform_wrapper.gravity-theme .gform_validation_errors {
    padding: 20px 20px 10px;
    text-align: center;
    margin-bottom: 20px;
}
.gform_wrapper.gravity-theme .gform_validation_errors>h2 {
    font-size: 16px;
    font-weight: 700;
}
.gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message {
    border-radius: 10px;
    font-weight: bold;
    margin-top: 12px;
}
.gform_wrapper .gform_footer input.gform_button {
    padding: 16px 15px !important;
    color: #fff;
    font-weight: 500;
    background-color: var(--primary);
    transition: 0.3s all ease;
    width: calc(50% - 5px);
    text-align: left;
    margin-top: -8px;
}
.gform_wrapper .gform_footer input.gform_button:hover {
    background-color: var(--primary-alt);
    color: #fff;
}
.gform_wrapper textarea {
    height: 120px;
    margin-top: 5px;
    border: 1px solid #e1e1e1;
}
.gform_wrapper.gravity-theme .gfield textarea:focus {
    outline:0;
    border-color: var(--primary) !important;
}
.gform_wrapper select {
    border-color: #e1e1e1;
    padding: 18px 15px;
    outline:0 !important;
}
.gform_wrapper input {
    border: 1px solid #e1e1e1;
    line-height: 1;
}
.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
    padding: 15px 15px !important;
    background-color: #E1E1E1;
    border: 0;
    border-bottom: 0;
}
.gform_wrapper.gravity-theme input:focus {
    border-color: var(--primary);
}
.gform_validation_error.gform_wrapper.gravity-theme .gform_validation_errors {
    padding: 16px;
    border-radius: 0;
}
.gform_validation_error.gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message {
    border-radius: 0;
    font-size: 13px;
    background-color: transparent;
    border: revert-layer;
    padding: 0;
}
body .gform_wrapper select {
    appearance: none; /* Remove native dropdown arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    
    padding-right: 2.5em; /* Space for custom chevron */
    background: url('data:image/svg+xml;utf8,<svg fill="black" height="14" viewBox="0 0 24 24" width="14" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 0.75em center;
    background-color: #e0e0e0; /* same as your screenshot background */
    background-size: 1.4em;
    cursor: pointer;
    border: none;
    color:#888;
    line-height: 1.2;
}

/* MOBILE NAV */
.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
    background: url(./images/icons/nav-closed.svg);
    background-position: center center;
    background-repeat: no-repeat;
}
.navbar-toggler .navbar-toggler-icon {
    width: 30px;
    height: 30px;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.8em;
    height: 1.8em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}


/* -------------------------
NEW STYLES HERE 
-------------------------  */

body {
    overflow-x: clip;
}

/* HERO */
.homehero-left {
    padding: 10%;
    width: 100%;
}
#homehero {
    height: 100vh;
    overflow-x: clip;
}
.homehero-left-wrap {
    height: 100vh;
    background-position: center;
}
.nav a {
    color: #fff;
}
.logo-img {
	width: 185px;
}
.aboutus-registerlink {
    font-size: 25px;
    margin-top: 40px;
}
.register-link a {
    font-weight: 600;
}
#aboutus .container {
    border-bottom: 1px solid #B2B2B2;
}
.bro-content {
    position: absolute;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    font-size: 18px;
    line-height: 1.4;
}
.brother-image-box {
    aspect-ratio: 645 / 728;
}
.brother-image-box img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.register-link a:hover {
    color:var(--primary);
}
.register-link a {
    text-decoration: underline;
    color:#000;
}
.register-link {
    font-size: 24px;
    margin-top:50px;
}
#thebrothers .container {
    border-bottom: #B2B2B2 solid 1px;
    padding-bottom: 50px;
}
.stayinthelooplinks {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #ccc; 
}
.stayintheloop {
    font-size:20px;
}
.loop-link {
    text-decoration: underline;
    color: black;
    padding: 6px 0;
    border-bottom: 1px solid #ccc;
    transition: opacity 0.2s;
}

.loop-link:hover {
    opacity: 0.7;
}
#connect .container {
    padding: 20px 0 70px;
    display: block;
    margin-top: 70px;
}
.connect-inner {
    width: 560px;
    max-width: 100%;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}
.footer {
    padding: 60px 0;
    font-size:14px;
    background: var(--primary);
}

.footer a {
	color:#fff}

#gform_wrapper_1 {
    width: 550px;
    max-width: 100%;
}
input#gform_submit_button_1 {
    margin-bottom: 0;
	min-height:45px;
}
.aboutusimg img {
    object-fit: cover;
    height:100%;
    width: 100%;
}
.homehero-right-wrap {
    background-position: center;
}
.header {
    padding: 0 5%;
}
.connect-col-img  img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}


.header .container {
    padding: 0 5%;
}
p:last-of-type {
    margin-bottom: 0 !important;
}

.home-2 .nav {
    display:none;
}
#field_1_6 br {
    display: none;
}

/* ANIMATIONS */


.home-2 #homehero {
    height: 720px;
    overflow-x: clip;
}
.home-2 .homehero-left-wrap {
    height: 100%;
    background-position: center;
}
.home-2 #homehero .row,
.home-2 #homehero .container {
    height: 100%;
}
.home-2 .homehero-left {
    padding: 10%;
    width: 100%;
    height: 100%;
}
.gform_wrapper.gravity-theme .gform_footer, .gform_wrapper.gravity-theme .gform_page_footer {
    padding-bottom: 0;
}
.home-2 .homehero-left {
    padding: 10%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-left:0;
    justify-content: space-around;
    margin-top: 50px;
}
.header-right {
    display:none !important;
}
.header .container {
    padding: 0 0 0 10px;
}

@media (max-width: 991px) {
 .logo-img {
        filter: brightness(0) invert(1);
    }
	body {font-size:16px!important}
	.homehero-left-wrap, #homehero {height:auto!important}
    .bgcover {height:400px; box-sizing:border-box;}
    body .homehero-left {padding-top:40px!important; padding-bottom:40px!important;}
    body .header {
       
        padding: 40px!important;
        
    }
	.title-hero-mobile {padding:40px!important;}
	.homehero-left {padding-left:40px!important; padding-right:40px!important; box-sizing:border-box}
	#field_1_6 {font-size:21px!important; padding-bottom:40px;}
	#field_1_6  p {line-height:140%!important;}
	#gform_fields_1 {display:flex!important; flex-wrap:wrap}
	#field_1_6 {width:100%;}
	#field_1_7, #field_1_3, #field_1_4, #field_1_5 {width:48%; margin:0; grid-column-gap: 0px; grid-row-gap: 0px;}
	.gform_wrapper.gravity-theme .gfield input.large, .gform_wrapper.gravity-theme .gfield select.large {width:100%; height:45px;}
.homesection {padding:40px!important}
	#thebrothers .container{padding-top:0!important; margin-top:0!important; }
	#aboutus, #thebrothers {padding-bottom:0!important;}
	.footer {padding-left:40px; padding-right:40px;}

	
}