/*
Theme Name: Elegance
Author: Josh Yager
Author URI: https://thedevq.com/
Description: Custom Theme build by The Dev Q
Version: 1.0.1
*/

/*--------------------------------------------------------------
# General & Typography
--------------------------------------------------------------*/

/* 1. Import the font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'Alisha';
  src: url('fonts/alisha-regular-webfont.woff2') format('woff2'),
       url('fonts/alisha-regular-webfont.woff') format('woff'),
       url('fonts/alisha.ttf') format('truetype'),
       url('fonts/alisha.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


@media (max-width:991px) {
  .hidemobile {
    display: none;
  }
}

nav#menu:not(.mm-menu) {
  display: none;
}

.container-fluid {
  max-width: 2400px;
  margin: auto;
}

@media (min-width:1600px) {
  .container {
    max-width: 1600px;
  }
}

body, p, ul, li {
  font-family: var(--font2);
  font-weight: 400;
  color: #333131;
  line-height: 1.65;
  font-size: 1.25rem;
}

html, body {
  position: relative;
}

@media (max-width:767px) {
  html {
    font-size: 14px;
  }
}

.maincopy ul li {
  list-style: none;
  position: relative;
  margin-bottom: 15px;
}

h1, h2, h3, h4, h5 {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  line-height: 1.13;
}

.bigger-title {
  font-size: 4rem;
}
h1 {
  font-size: 3.2rem;
}
h2 {
  font-size: 3rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}

@media (max-width:991px) {
	
	.btn
	{
		padding: 22px !important;
	}
  .bigger-title {
    font-size: 3rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.75rem;
  }
  h5 {
    font-size: 1.5rem;
  }
	.utility-bar-inner{
		font-size: 17px !important;
		justify-content: normal !important;
	}
	.btn.btn-lg{
		width:100%!important;
	}
}

img {
    max-width: 100%;
	border-radius: 10px;
}

::selection {
  background-color: #D7D1CB; /* This is the highlight background color */
  color: #000000;             /* This is the selected text color */
}

::-moz-selection { /* For Firefox Browser */
  background-color: #D7D1CB;
  color: #000000;
}

::-webkit-scrollbar-track {
  background-color: #f5f5f5;
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--tertiary);
}

::-webkit-scrollbar {
  width: 10px;
}

.mobileOnly {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  background: #fff;
}

html, body {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  margin-bottom: 10px;
}

a {
  color: var(--primary);
}

a:hover {
  color: var(--secondary);
}

/*--------------------------------------------------------------
# Buttons & Common Elements
--------------------------------------------------------------*/
.btn {
  text-decoration: none;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-align: center;
  transition: all .3s ease-in-out;
  border-radius: 100px;
  font-size: 1.25rem;
  padding: 22px 80px;
  border: 1px solid #fff;
  width: fit-content;
}

.gform_button[type="submit"] {
  text-decoration: none !important;
  background: var(--primary) !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 600 !important;
  text-align: center !important;
  transition: all .3s ease-in-out !important;
  border-radius: 100px !important;
  border: 1px solid #fff !important;
  width: fit-content !important;
  margin: auto;
  padding: 30px 60px !important;
  line-height: .3 !important;
  font-size: 1.375rem !important;
  transition: all .3s ease-in-out !important;
}

.gform_button[type="submit"]:hover {
  color: var(--primary) !important;
  background: #fff !important;
  border: 1px solid var(--primary) !important;
}

.btn i {
  margin-right: 8px;
  font-size: 14px;
}

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

.btn.btn-tertiary {
  background: var(--tertiary);
}

.btn.btn-white {
  background: white;
  color: var(--primary);
}
.btn.btn-black {
  background: white;
  color: #343A40;
}
.btn.btn-green {
  background: var(--secondary);
  color: white;
}

.btn.white:hover {
  background: #6B2737;
  color: white;
}

.btn:hover {
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn.btn-green:hover {
  background: #465951;
  color: #fff;
  border: 2px solid #fff;
}

.btn.btn-lg {
  padding: 30px 30px;
  font-size: 1.375rem;
  width: 70%;
}

.cs-topper {
  font-family: var(--font2);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  margin-top: 0;
  color: var(--secondary);
  letter-spacing: 3px;
}

.cs-title {
  font-size: 34px;
  margin: 0;
  line-height: 1;
  font-weight: 800;
  max-width: 530px;
  color: var(--primary);
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# Header Styles
--------------------------------------------------------------*/
.utility-bar {
  padding: 15px 0;
  background: #2F2F2F;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.utility-bar-inner {
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 20px;
}

.utility-right {
  gap: 15px;
  display: flex;

}

@media (max-width: 1650px) {
  .utility-right {
    position: relative;
  }
}

.utility-right a {
  color: white;
  text-decoration-thickness: 1px;
}

.utility-right a.phone {
  font-weight: 700;
  text-decoration: none;
}

.utility-right a.phone:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.utility-right a.portal-login:hover,
.utility-right a.careers:hover {
  opacity: 0.7;
}

a.back-to-corporate {
  color: white;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a.back-to-corporate i {
  margin-right: 7px;
  transform: translateY(2px);
}

.header-container {
  background: #fff;
  padding: 10px 0;
  position: absolute;
  z-index: 99999;
  width: 100%;
  border-bottom: 16px solid color-mix(in srgb, var(--primary) 100%, transparent);
  border-radius: 0px 0px 10px 10px;
}

.menu-container {
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.menu-left,
.menu-right {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  width: 100%;
}

.menu-left {
  justify-content: flex-end;
}

.menu-right {
  justify-content: flex-start;
}


@media (max-width: 1350px) {
  .nav-logo {
    position: relative;
  }
}

.nav-logo img {
  max-width: 250px;
}

.header-container.community-header .nav-logo img {
  position: absolute;
  z-index: 2;
  background: #222222;
  padding: 15px 30px;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  height: 150px;
  object-fit: contain;
}

/*--------------------------------------------------------------
# Main Navigation
--------------------------------------------------------------*/
nav.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

nav.main-navigation ul {
	list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

nav.main-navigation ul li {
  position: relative;
  padding: 0 15px;
}

nav.main-navigation ul li a {
  color: #222222;
  text-decoration: none;
  padding: 10px 0;
  display: block;
  font-size: 20px;
}

nav.main-navigation ul li.special-button a {
    width: 175px;
    height: 77px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    text-align: center;
    transition: all .3s ease-in-out;
    color: white;
    border-radius: 100px;
    font-weight: 700;
}

nav.main-navigation ul li.special-button a:hover {
  color: var(--primary);
  border: 2px solid var(--primary);
  background: #fff;
}

/* Dropdown Menu */
nav.main-navigation ul li.has-submenu>ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  flex-direction: column;
}

nav.main-navigation ul li.has-submenu:hover>ul {
  display: block;
}

nav.main-navigation ul li.has-submenu>ul li {
  width: 100%;
  padding: 0;
}

nav.main-navigation ul li.has-submenu>ul li a {
  padding: 10px 20px;
  white-space: nowrap;
  color: black;
  font-weight: 500;
  text-align: left;
  transition: all .1s ease-in-out;
}

nav.main-navigation ul li.has-submenu>ul li a:hover {
  background: var(--primary);
  color: white;
}

/* --- CORRECTED CODE V2 --- */
/* Active + hover color for nav links (Applies to ALL screen sizes) */
/* Increased specificity by adding parent containers to override conflicting styles */
.header-container nav.main-navigation ul li:not(.special-button) > a:hover,
.header-container nav.main-navigation ul li:not(.special-button) > a:focus,
.header-container nav.main-navigation ul li.current-menu-item > a,
.header-container nav.main-navigation ul li.current-menu-ancestor > a,
.header-container nav.main-navigation ul li.current-menu-parent > a,
.header-container nav.main-navigation ul li.current_page_item > a,
.header-container nav.main-navigation ul li.current_page_parent > a,
.header-container nav.main-navigation ul li.current_page_ancestor > a,
.header-container nav.main-navigation ul li:not(.special-button) .active {
  color: #5D1E3E !important;
}
/* --- END CORRECTION --- */


/*--------------------------------------------------------------
# Mobile Menu & Hamburger
--------------------------------------------------------------*/
.mburger strong {
  display: block;
  position: absolute;
  left: calc(var(--mb-button-size)*((1 - var(--mb-bar-width))/2));
  width: calc(var(--mb-button-size)*var(--mb-bar-width));
  height: var(--mb-bar-height);
  border-radius: 0px;
  background: black;
  color: inherit;
  opacity: 1;
}

.mburger {
  color: #fff;
}

.mburger:hover, .mburger:focus, .mburger:active {
  color: #fff;
}

.mburger strong:nth-of-type(1) {
  bottom: calc(45% + var(--mb-bar-spacing));
}

.mburger strong:nth-of-type(3) {
  top: calc(45% + var(--mb-bar-spacing));
}

.mburger span {
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.mm-menu {
  --mm-color-background: #fff;
}

.mm-listitem__text, .mm-navbar__title>span {
  font-weight: 600;
  color: var(--primary);
}

.mm-iconbar__top i {
  color: var(--primary);
}

.mobilemen {
  display: none;
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.devqform {
  width: 100%;
  padding-bottom: 40px;
  max-width: 1200px;
  margin: auto;
}

.devqform input, .devqform textarea, .devqform select {
  padding: 10px;
  display: inline-block;
  border-radius: 0;
  font-size: 18px;
  font-family: var(--font1);
  background: #ecebec;
  border: 1px solid #b3b3b3;
  margin-bottom: 1rem !important;
}

.devqform select {
  text-transform: uppercase;
}

.devqform input::placeholder, .devqform textarea::placeholder, .devqform select::placeholder {
  font-weight: 300;
  color: #a9a9a9;
  font-family: var(--font2);
  font-size: 16px;
}

.devqform .gform_footer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.devqform .button {
  background: var(--primary);
  color: white;
  margin: 0;
  cursor: pointer;
  transition: all .5s;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  width: 300px;
  max-width: 100%;
  margin-right: 10px;
}

.devqform .button:hover {
  background: var(--tertiary);
  color: initial;
}

.devqform textarea {
  height: 110px !important;
}

.devqform .gform_fields {
  grid-row-gap: 4px !important;
}

.col25, .col33, .col50, .col100 {
  padding: 5px 10px !important;
  display: inline-block;
  clear: both;
}

.col25 { width: 25%; }
.col33 { width: 33.33%; }
.col50 { width: 50%; }
.col100 { width: 100%; }

.boxFormFlex .gfield_checkbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.boxFormFlex .gchoice {
  width: 33%;
  height: 50px;
  display: flex;
  align-items: center;
}

.boxFormFlex input {
  margin: 0 10px 0 0 !important;
}

.boxFormFlex {
  margin: 30px 0 !important;
}

.devqform h2 {
  margin-bottom: 30px;
}

.devqform .gform_button_select_files {
  padding: 15px;
  font-family: var(--font1);
  font-size: 18px;
  border: 0;
}


/*--------------------------------------------------------------
# Footer Styles
--------------------------------------------------------------*/
.footer-color-bar {
  padding: 0;
  overflow: hidden;
}

.footer-color-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 29px;
  background: #D7D1CB;
}

.footer-color-segment {
  height: 100%;
}

.footer-main-section {
  position: relative;
  overflow: hidden;
}

.footer-main-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 50px);
  background-color: var(--primary);
  z-index: -1;
}

p.gform_required_legend {
  display: none;
}

.footer-main-inner {
  display: flex;
  position: relative;
  align-items: center;
}

.footer-community-info {
  width: 57%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: -webkit-fill-available;
}

.footer-community-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-bottom-right-radius: 350px;
  background: #D7D1CB;
}

.footer-community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-bottom-right-radius: 350px;
}

.footer-community-box {
  position: relative;
  background-color: white;
  padding: 40px;
  margin: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  text-align: center;
  min-width: 460px;
  max-width: 100%;
}

.footer-community-logo {
  text-align: center;
  padding: 5%;
  padding-bottom: 0;
}

.footer-community-logo img {
  max-width: 250px;
  height: auto;
}

.footer-community-details {
  margin-bottom: 20px;
  text-align: center;
}

.footer-community-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
}

.address {
  text-decoration: underline !important;
}

.footer-icon-wrapper {
  text-decoration: none !important;
  padding-right: 20px;
}

.footer-community-item i {
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
  text-decoration: none !important;
}

.footer-community-item a {
  color: var(--text);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-community-item a:hover {
  color: var(--primary);
}

.footer-community-cta {
  text-align: center;
  margin-bottom: 20px;
}

.footer-pricing-info {
  text-align: center;
}

.footer-pricing-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.footer-pricing-subtitle {
  font-size: 1rem;
  margin-top: 0;
}

.footer-contact-form {
  width: 43%;
  padding: 100px 50px 100px;
  color: white;
  position: relative;
}

.footer-contact-form input,
.footer-contact-form select {
  height: 68px;
}

.footer-form-content {
  max-width: 650px;
  margin: 0 auto;
}

.footer-form-subtitle {
  margin-bottom: 10px;
  font-family: var(--font1);
  color: #fff;
  margin-top: 0;
}

.footer-form-title {
  font-size: 3.5rem;
  margin-top: 0;
  margin-bottom: 20px;
  color: #fff;
}

.footer-form-copy p,
.rsvp .gform_wrapper .gform_body p {
  margin-bottom: 20px;
  color: #fff;
}

.gform_wrapper form,
.rsvp .gform_wrapper form {
  margin-bottom: 0;
}

.gform_wrapper .gfield_label,
.rsvp .gform_wrapper .gfield_label {
  color: #fff !important;
  font-size: 1rem !important;
}

.gform_wrapper .gfield input:not([type="checkbox"]),
.gform_wrapper .gfield select,
.gform_wrapper .gfield textarea,
.rsvp .gform_wrapper .gfield input,
.rsvp .gform_wrapper .gfield select,
.rsvp .gform_wrapper .gfield textarea {
  border: 1px solid white !important;
  background-color: #fff !important;
  color: #000 !important;
  border-radius: 5px;
  height: 68px !important;
  display: flex !important;
  align-items: center !important;
  font-size: 1.25rem !important;`
}

.gform_wrapper .gfield_radio input[type="radio"] + label {
  color: #fff !important;
  width: max-content !important;
  font-size: 1.25rem !important;
}


.gform_wrapper .gfield_radio input[type="radio"] {
  height: initial !important;
}

.gform_wrapper .gfield input[type="checkbox"] + label {
  color: #fff !important;
  width: max-content !important;
  font-size: 1.25rem !important;
}

div#gform_fields_1,
div#gform_fields_6 {
  gap: 20px;
}

.gform_wrapper .gfield select option,
.rsvp .gform_wrapper .gfield select option {
  background-color: #fff !important;
  color: #000 !important;
}

.gform_wrapper .gfield textarea,
.rsvp .gform_wrapper .gfield textarea {
  height: 150px !important;
}

.gform_wrapper .gfield input::placeholder,
.gform_wrapper .gfield textarea::placeholder,
.rsvp .gform_wrapper .gfield input::placeholder,
.rsvp .gform_wrapper .gfield textarea::placeholder {
  color: #000 !important;
}

.gform_wrapper .gfield select,
.rsvp .gform_wrapper .gfield select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-color: #fff !important;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="16" height="16"><path fill="%23FFFFFF" d="M98.079,151.675l157.354,157.354l157.354-157.354L448,192.942l-192,192l-192-192L98.079,151.675z"/></svg>') !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  background-size: 12px auto !important;
  padding-right: 35px !important;
  line-height: 1.5 !important;
  cursor: pointer !important;
  font-size: 1.25rem;
}

.gform_wrapper .gfield select:focus,
.rsvp .gform_wrapper .gfield select:focus {
  outline: none !important;
  border-color: white !important;
}

.gform-footer.gform_footer {
  justify-content: center;
}

.gform_wrapper input[type="submit"], .rsvp .gform_footer input[type="submit"] {
  text-decoration: none;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-align: center;
  transition: all .3s ease-in-out;
  border-radius: 100px;
  font-size: 1.25rem;
  padding: 22px 100px;
  border: 1px solid #fff;
  width: fit-content;
}

.gform_wrapper input[type="submit"]:hover,
.rsvp .gform_footer input[type="submit"]:hover {
  background-color: #fff !important;
  color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
}

.gfield_signature_ui_container img {
  background-color: #fff !important;
}

.gform_wrapper .gfield_label.gform-field-label {
  display: inline-block !important;
}

.gfield_description.gform_fileupload_rules {
  color: #fff !important;
}

div#gform_fields_3 {
  gap: 30px 35px !important;
}

.gform_confirmation_message p {
  color: #fff !important;
}

.footer-social-awards {
  background-color: white;
  padding: 20px 0 30px;
}

.footer-social-awards-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: var(--font1);
  color: var(--primary);
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.footer-social-icon.facebook { background-color: #1877F2; }
.footer-social-icon.twitter { background-color: #000000; }
.footer-social-icon.linkedin { background-color: #0A66C2; }
.footer-social-icon.instagram { background: linear-gradient(45deg, #833AB4, #FD1D1D, #F77737); }
.footer-social-icon.youtube { background-color: #FF0000; }

.no-social-links,
.no-social-links+.footer-social-title,
.no-social-links~.footer-social-icons {
  display: none;
}

.footer-social:has(.no-social-links) {
  display: none;
}

.footer-awards {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-award-item img {
  max-height: 100px;
  width: auto;
}

.footer-bottom {
  background-color: white;
  padding-bottom: 50px;
}

.footer-divider {
  border-top: 1px solid #e0e0e0;
  margin: 0 0 50px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer-menu-container {
  text-align: center;
  margin-bottom: 0px;
}

ul.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

ul.footer-menu li a {
  color: #000;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.3s ease;
  font-weight: 600;
}

ul.footer-menu li a:hover {
  color: var(--primary);
}

.footer-copyright {
  color: #363434;
  text-align: center;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 1rem;
  font-weight: 400;
}

.footer-copyright p {
  margin-bottom: 15px;
}

ul.footer-copyright-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

ul.footer-copyright-menu li a {
  color: #363434;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  font-weight: 400;
}

ul.footer-copyright-menu li a:hover {
  color: var(--primary);
}

.footer-accessibility {
  text-align: center;
}

.footer-accessibility img {
  max-width: 200px;
  height: auto;
}


/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/

/* Desktop-Only Nav Animations */
@media (min-width:1199px) {
  .main-navigation .menu-left li a,
  .main-navigation .menu-right li a {
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
  }

  nav.main-navigation ul li.has-submenu>ul li a:after,
  nav.main-navigation ul li.special-button a:after {
    display: none;
  }

  .main-navigation .submenu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .main-navigation li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-navigation .submenu li {
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .main-navigation li:hover .submenu li {
    transform: translateX(0);
    opacity: 1;
  }

  ul.menu-left li:first-child {
    padding-left: 0;
  }

  ul.menu-right li:last-child {
    padding-right: 0;
  }

  .rightft1 {
    min-width: 45%;
  }
}

/* Tablet & Mobile */
@media (max-width: 1199px) {
  .desktopOnly {
    display: none;
  }
  .mobileOnly {
    display: initial;
  }
  .menutop {
    display: none;
  }
  .mobilemen {
    display: block;
  }
  .mburger strong {
    background: var(--secondary) !important;
    height: 3px;
  }
  .tagline {
    display: none;
  }
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  .nav-logo-mobile {
    display: block;
  }
  .nav-logo-mobile img {
    max-height: 60px;
    width: auto;
    display: block;
  }
  .nav-logo {
    display: none;
  }
  .mburger {
    margin: 0;
  }
  .footer-community-box {
    margin: 60px 40px;
    padding: 30px;
  }
  .footer-contact-form {
    padding: 60px 40px;
  }
  .footer-form-title {
    font-size: 2.2rem;
  }
  .footer-community-image {
    display: none;
  }
  .footer-community-info {
    height: initial;
  }
  .footer-main-section::after {
    height: 100%;
  }
}

/* Mobile Only */
@media (max-width:991px) {
  .boxFormFlex .gchoice {
    width: 50%;
  }
  .col50, .col25, .col33, .col100 {
    width: 100%;
    padding: 5px 0 !important;
  }
  a.back-to-corporate {
    display: none;
  }
  .footer-main-inner {
    flex-direction: column;
  }
  .footer-community-info,
  .footer-contact-form {
    width: 100%;
  }
  .footer-community-image {
    position: relative;
    height: 300px;
  }
  .footer-community-image img {
    border-bottom-right-radius: 0;
  }
  .footer-community-box {
    margin: 0;
    border-radius: 0;
  }
  .footer-social-awards-inner {
    flex-direction: column;
    gap: 30px;
  }
  .footer-social,
  .footer-awards {
    text-align: center;
  }
  .footer-social-icons {
    justify-content: center;
  }
  .footer-copyright {
    flex-direction: column;
    gap: 0;
  }
  .south-ny-map img {
    padding: 0 40px;
  }
  .lets-get-started {
    margin-left: 20px;
  }
  @media (max-width:767px) {
    .lets-get-started {
      margin-left: 0px;
    }
  }
}

@media (max-width: 767px) {
  .footer-community-box {
    padding: 20px;
  }
  .footer-contact-form {
    padding: 40px 20px;
  }
  .footer-form-title {
    font-size: 1.8rem;
  }
  .footer-form-subtitle {
    font-size: 1rem;
  }
  .footer-awards {
    flex-wrap: wrap;
    justify-content: center;
  }
  ul.footer-menu {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .footer-community-logo img {
    max-width: 150px;
  }
  .footer-award-item img {
    max-height: 70px;
  }
	
}

/* Desktop Header Breakpoint Specifics */
@media (min-width: 1200px) {
  .mobile-header {
    display: none;
  }
  .nav-logo-mobile {
    display: none;
  }
}

input#gform_submit_button_9 {
    line-height: 2.2rem !important;
}
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
.utility-bar-inner{
		font-size: 14px !important;
		justify-content: normal !important;
	}
}



.Widget__Container-sc-37daa1a7-0.bTnUiI.eapp-cookie-consent-widget-container.eapp-cookie-consent-widget-show.eapp-cookie-consent-widget-bar.eapp-cookie-consent-widget-bottom {
    background-color: #ffffff !important;
}

.Message__TextContainer-sc-591ebf54-2.gmaWDK.eapp-cookie-consent-message-text {
    color: black !important;
}


.Actions__Button-sc-3d97a165-1.fLnRa.eapp-cookie-consent-actions-button.eapp-cookie-consent-actions-confirm {
    background-color: #581f3f !important;
    color: white !important;
    padding: 15px 20px !important;
}
