@import url('https://use.typekit.net/fsb0kqr.css');

:root {
  --font-family-1: roboto, sans-serif;
  --font-family-2: source-sans-pro, sans-serif;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --extra-bold: 900;
  --bg-blue: #3b70b4;
  --bg-green: #568b3e;
  --bg-light-green: #68b44a;
  --color-yellow: #ffc63b;
}
html {
  scroll-behavior: smooth;
}
a {
    color: #68b44a;
}
a:hover {
   color: #68b44a;
   text-decoration: none;
}
.content a {
   text-decoration: underline;
}
body {
  font-family: roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p {
  font-family: var(--font-family-2);
  font-size: 18px;
}

p a {
    color: var(--bg-light-green);
    text-decoration: underline;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: var(--bg-light-green);
    text-decoration: underline;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    color: var(--bg-light-green);
}

.font-family-2 {
  font-family: var(--font-family-2);
}
.color-yellow {
  color: var(--color-yellow);
}

body a {
  transition: all 0.2s linear 0s;
}
a:hover {
  text-decoration: none !important;
  outline: 0;
}
a:hover,
a:active,
a:focus {
  outline: 0;
}

cite {
    margin-top: 10px;
    display: block;
}

.container {
  max-width: 1200px;
  width: 100%;
}

.btn:focus,
.form-control:focus {
  box-shadow: none;
  outline: 0;
}

.bg-green {
  background-color: var(--bg-green);
}

.bg-blue {
  background-color: var(--bg-blue);
}

.effect {
  text-align: center;
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
  overflow: hidden;
}

/* effect-1 styles */
.effect-1 {
  transition: all 0.2s linear 0s;
}

.effect-1:before {
  content: '';
  font-family: FontAwesome;
  font-size: 17px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  width: 45px;
  transition: all 0.2s linear 0s;
}

.effect-1:hover {
  text-indent: -50px;
}

.effect-1:hover:before {
  opacity: 1;
  text-indent: 0px;
}

/* FULL MENU CSS */
#full-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: var(--bg-green);
  opacity: 0;
  transition: none;
}

#full-menu.open {
  z-index: 1031;
  opacity: 1;
  transition: none;
}

#full-menu ul li:not(.sub-menu li) {
    display: block;
/*     margin-right: 0px !important; */
    margin-inline: auto;
    width: 300px;
}

.menu-items li {
  list-style: none;
}

.menu-items li:not(:last-child) {
  margin-bottom: 12px;
}

.menu-items > li:not(:last-child) a {
  font-weight: var(--bold);
  font-size: 24px;
  letter-spacing: 0.03em;
  line-height: 48px;
  color: #fff;
  opacity: 1;
}

.menu-items li a:hover {
  opacity: 1;
  text-decoration: none;
}

.menu-items li:nth-last-child a {
  width: 180px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  margin: 15px auto 0px;
}

.menu-items > li:last-child a {
  display: block;
/*  width: 250px;*/
  width: 180px;
  height: 50px;
  font-weight: var(--bold);
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 15px auto 0px;
  border-radius: 4px;
  background: #000;
  border: 1px solid #000;
  color: #fff;
  line-height: 48px;
    margin-top: 35px;
}

.menu-items li:last-child a:hover {
  background: var(--bg-blue);
  border-color: var(--bg-blue);
}

.menu-items li .btn-outline-red {
  line-height: 39px !important;
}

.menu-items li .btn-red {
  line-height: 41px !important;
}

/* MENU ICON */
#mobile-main-menu-btn.active {
  position: relative;
  z-index: 1032;
  top: 14px;
  right: 0;
}

#mobile-main-menu-btn {
  margin-left: auto;
  float: right;
}

.menu-btn {
  height: 39px;
  padding: 0;
  background: transparent;
  border: none;
  position: relative;
  right: 0;
  top: 6px;
}

.menu-btn:focus,
.menu-btn:visited {
  outline: none !important;
  box-shadow: none !important;
}

.scrolled .menu-btn {
  opacity: 1;
  z-index: 2;
}

.no-scroll .menu-btn {
  opacity: 1;
}

.menu-btn:hover {
  cursor: pointer;
}

.menu-span {
  padding: 0;
  position: relative;
  display: block;
  width: 40px;
  height: 7px;
  margin: 0 auto;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  background: var(--bg-green);
  color: inherit;
  font-size: 0;
  right: 13px;
  transition: 0.35s;
}

.active .menu-span {
  right: 0px;
}

.menu-span:after,
.menu-span:before {
  content: '';
  width: 100%;
  height: 7px;
  display: block;
  border-radius: 0px;
  background: var(--bg-green);
  position: absolute;
  top: 0;
  left: calc(50% + 13px);
  transition: transform 0.35s;
}

.active .menu-span,
.active .menu-span:after,
.active .menu-span:before {
  background: #fff !important;
}

.active .menu-span:after,
.active .menu-span:before {
  left: 50%;
}

.menu-span:before {
  transform: translate(-50%, -14px);
}

.menu-span:after {
  transform: translate(-50%, 14px);
}

.menu-span:after,
.menu-span:before {
  transform-origin: 0% 0%;
}

.menu-btn.active .menu-span {
  background: 0 0;
}

.menu-btn.active .menu-span:before {
  /* transform: translate(-49%, 0) rotate(-45deg) scaleX(0.7); */
  transform: translate(-50%, 0) rotate(-45deg) scaleX(0.7);
  /*top: 1px;*/
}

.menu-btn.active .menu-span:after {
  transform: translate(-39%, 0) rotate(45deg) scaleX(0.7);
  top: 1px;
}

/* MOBILE HEADER CSS */
.mobile-header {
  display: none;
  padding: 15px 36px;
}

/*.mobile-header .logo {
    max-width: 100px;
}*/

/* NO SCROLL CSS */
.no-scroll {
  height: 20vh;
  overflow: hidden;
}

/* DESKTOP HEADER CSS */
.desktop-header {
  padding: 15px 15px 14px;
}

.main-menu {
  max-width: 100% !important;
  margin-bottom: 0px;
}

.main-menu li {
  padding-left: 0px !important;
  margin-bottom: 0px !important;
}

.main-menu li::before {
  content: none !important;
}

.main-menu li:not(:last-child) {
  margin-right: 45px;
  line-height: 50px;
}

.main-menu li:not(:last-child) a {
  font-weight: var(--medium);
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 24px;
  color: #000;
  text-transform: uppercase;
}

.gl-menu-hover-effect {
  position: relative;
}

.gl-menu-hover-effect::before {
  content: '';
  width: 0px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--bg-green);
  position: absolute;
  bottom: -6px;
  left: 0;
  /*z-index: -1;*/
  transition: width 0.3s ease-in-out;
}

.main-menu li a.gl-menu-hover-effect:hover:before {
  width: 100%;
}

.main-menu li:not(:last-child) a:hover  {
  color: var(--bg-light-green);
  text-decoration: none;
}

.btn-menu {
/*  width: 200px;*/
  width: 180px;
  height: 50px;
  padding: 0px 20px;
  border-radius: 4px;
  background-color: var(--bg-light-green);
  font-weight: var(--medium);
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 48px;
  text-align: left;
  color: #fff;
}

.btn-menu i {
    float: right;
    line-height: 49px;
}

.btn-menu:hover {
  color: #fff;
  background-color: #000;
}

/* HERO CSS */
.hero {
  padding: 120px 0px;
  background-image: url(../images/greenlining-redlining-map-circle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow-x: hidden;
  color: #fff;
}

.sub-heading,
.content h6 {
  padding-left: 47px;
  font-weight: var(--bold);
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: calc(1.5rem + 4px);
  position: relative;
}

.sub-heading::after,
.content h6:after {
  content: ' ';
  width: 32px;
  height: 16px;
  border-radius: 2px;
  background: inherit;
  position: absolute;
  top: 5px;
  left: 0px;
}

.cream {
  color: #faf2c7;
}

.sub-heading.cream::after {
  background: #faf2c7;
}

.hero h1 {
  font-weight: var(--extra-bold);
  font-size: 60px;
  line-height: 72px;
  margin-bottom: calc(2rem + 2px);
  color: #fff;
}

.hero p {
  font-family: var(--font-family-1);
  font-weight: var(--medium);
  font-size: 22px;
  line-height: 32px;
  color: #fff;
  opacity: 0.9;
}

/* CONTACT PAGE CSS */
.contact-info {
  width: 100%;
  margin: 54px 0px 0px;
}

.contact-info li {
  width: 49.65%;
  display: inline-flex;
  align-items: start;
  flex-direction: column;
  margin-right: auto !important;
}

.contact-info li:not(:last-child) {
  margin-bottom: 38px;
}

.contact-info li:nth-last-child(2) {
  margin-bottom: 0px !important;
}

.contact-info li:nth-child(2n) {
  padding-left: 17px;
}

.contact-info li h5 {
  font-weight: var(--medium);
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-info li a {
  font-weight: var(--bold);
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 22px;
  color: #fff;
}

.contact-info li span {
  font-weight: var(--bold);
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 22px;
  text-align: left;
  color: #fff;
}

.gl-form-box {
  max-width: 490px;
  margin: 0px 0px 0px auto;
}

.gl-form-box img {
  border-radius: 4px 4px 0px 0px;
}

.gl-form {
  padding: 21px 40px 40px;
  background-color: #fff;
  border-radius: 0px 0px 4px 4px;
    position: relative;
    z-index: 4;
}

.gl-form h2 {
  font-weight: var(--extra-bold);
  font-size: 40px;
  line-height: 44px;
  text-align: left;
  color: #090808;
  margin-bottom: 24px;
}

.col-6-input {
  width: calc(50% - 0.25rem);
  float: left;
}

.gl-form-group {
  margin-bottom: 16px;
}

.gl-form-group label {
  font-weight: var(--medium);
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 20px;
  text-align: left;
  color: #090808;
  margin-bottom: 11px;
}

.form-control,
.form-control:focus {
  width: 100%;
  height: 50px;
  border-radius: 2px;
  background: #e8f5e5;
  border: 1px solid #a4d192;
  padding: 0px 15px;
  font-weight: var(--medium);
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 36px;
  text-align: left;
  color: #090808;
}

#first-name {
  border-radius: 2px 0px 0px 2px;
}

#last-name {
  border-radius: 0px 2px 2px 0px;
}

textarea.form-control,
textarea.form-control:focus {
  height: 100px;
  padding: 10px 15px;
  line-height: 28px;
}

.btn-contact {
  width: 100%;
  height: 60px;
  border-radius: 4px;
  padding: 0px 15px;
  background-color: var(--bg-light-green);
  font-weight: var(--bold);
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  margin-top: 14px;
}

.btn-contact:hover {
  color: #fff;
  background-color: #000;
}

/* STRATEGIC PLAN PAGE CSS */
.btn-green, .gl-about-summit .btn-green.gl-btn-medium {
  width: 100%;
  max-width: 370px;
  height: 54px;
  border-radius: 4px;
  padding: 0px 15px;
  border: none;
  background-color: var(--bg-light-green);
  font-weight: var(--medium);
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 54px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #fff;
  margin: 33px 0px 20px;
}

.btn-green i {
  float: right;
  line-height: 54px;
}

.btn-green:hover {
  color: #fff;
  background-color: #000;
}

.hero-image {
  width: 31.53%;
  min-height: 520px;
  background-image: url(../images/sp-hero-image.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  border-radius: 8px 0px 0px 8px;
  position: absolute;
  top: 120px;
  right: -15px;
}

/* EVENT PAGE CSS */
.white {
  color: #fff;
}

.sub-heading.white::after {
  background: #fff;
}

.line-heading {
  font-size: 54px !important;
  line-height: 64px !important;
  position: relative;
}

.line-heading span {
  padding-right: 15px;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.line-heading span::before {
  content: ' ';
  width: 100%;
  height: 24px;
  border-radius: 2px;
  background-color: #f8bd34;
  position: absolute;
  bottom: 1px;
  right: 3px;
  z-index: -1;
}

.gl-event-posts {
  position: relative;
  padding-bottom: 140px;
}

.gl-event-posts::before {
  content: ' ';
  width: 100%;
  min-height: 476px;
  background-color: #f3f3f3;
  position: absolute;
  left: 0px;
  bottom: -72px;
  z-index: -1;
}

.gl-event-box {
  margin-top: 40px;
}

.gl-event-box .media-body {
  width: 48.717%;
  min-height: 528px;
  padding: 50px 60px 49px;
  border-radius: 4px 0px 0px 4px;
  background-color: var(--bg-blue);
  display: flex;
  flex-direction: column;
}

.gl-event-box .media-body .sub-heading {
  font-size: 16px;
  line-height: 22px;
  padding-left: 38px;
  margin-bottom: calc(1.5rem + 10px);
}

.gl-event-box .media-body .sub-heading::after {
  width: 28px;
  height: 14px;
}

.hero h1.gl-event-title {
  font-weight: var(--extra-bold);
  font-size: 54px;
  line-height: 59px;
  color: #fff;
  margin-bottom: 29px;
}

.event-time {
  font-weight: var(--bold);
  font-size: 24px;
  line-height: 26px;
  color: #ffc63b;
  margin-bottom: 23px;
}

.gl-event-post-excerpt {
  font-family: var(--font-family-2);
  font-weight: var(--regular);
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  color: #fff;
  opacity: 0.9;
  max-width: 373px;
  flex-grow: 1;
}

.btn-black {
  display: block;
  max-width: 200px;
  height: 50px;
  border: none;
  border-radius: 4px;
  padding: 0px 15px;
  background-color: #000;
  font-weight: var(--medium);
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 49px;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
}

.btn-black i {
  float: right;
  line-height: 49px;
}

.btn-black:hover {
  color: #fff;
  background-color: var(--bg-light-green);
}

.event-btn a.bg-black:hover {
    background-color: var(--color-yellow) !important;
    color: #090808 !important;
}

.gl-event-box-image {
  width: 51.283%;
  min-height: 528px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0px 4px 4px 0px;
}

/* DONATE PAGE CSS */
.gl-below-hero {
  padding: 90px 0px 50px;
  position: relative;
  overflow-x: hidden;
}

.gl-below-hero-content .sub-heading {
  margin-bottom: calc(1rem + 3px);
}

.blue {
  color: var(--bg-blue);
}

.sub-heading.blue:after {
  background-color: #3b70b4;
}

/*.gl-below-hero-content .blue {
  color: #6a98d3;
}*/

.gl-below-hero-content h2 {
  font-weight: var(--extra-bold);
  font-size: 40px;
  line-height: 48px;
  color: #090808;
  margin-bottom: 33px;
}

.gl-below-hero-content p {
  max-width: 470px;
  font-weight: var(--medium);
  font-size: 22px;
  line-height: 32px;
  text-align: left;
  color: #090808;
  opacity: 0.9;
  margin-bottom: 57px;
}

.gl-below-hero-image {
  width: 38.939%;
  min-height: 325px;
  background-image: url(../images/below-hero-image.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  border-radius: 8px 0px 0px 8px;
  position: absolute;
  top: 90px;
  right: 0px;
}

.gl-donate-boxes {
  padding: 50px 0px 118px;
  position: relative;
}

.gl-donate-boxes::before {
  content: ' ';
  width: 100%;
  min-height: 390px;
  background-color: #f3f3f3;
  position: absolute;
  left: 0px;
  bottom: -70px;
  z-index: -1;
}

.gl-donate-box {
  width: 100%;
  min-height: 310px;
  border-radius: 4px;
  padding: 20px 20px 39px 30px;
  background-color: var(--bg-blue);
  display: flex;
  flex-direction: column;
  margin-bottom: 23px;
}

.heacding-icon-box {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.heacding-icon-box h2 {
  font-weight: var(--extra-bold);
  font-size: 36px;
  line-height: 48px;
  text-align: left;
  color: #fff;
  flex-grow: 1;
  margin-bottom: 0px;
}

.icon-box {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 32px;
  color: #6a98d3;
}

.gl-donate-box p {
  font-family: var(--font-family-2);
  font-weight: var(--regular);
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  max-width: 370px;
  margin-bottom: 0px;
  flex-grow: 1;
}

.gl-donate-box p span {
  font-weight: var(--semi-bold);
  max-width: 245px;
  display: block;
}

.gl-donate-box a {
  font-weight: var(--bold);
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 20px;
  text-align: left;
  text-transform: uppercase;
  color: #ffc63b;
}

.gl-donate-box a i {
  letter-spacing: 0.06em;
  margin-left: 10px;
}

.gl-donate-box a:hover {
  text-decoration: none;
  color: var(--bg-light-green);
}

/* SINGLE EVENT PAGE CSS */
.single-hero {
  padding: 120px 0px 141px;
}

.single-hero .gl-event-title {
  font-size: 54px;
  line-height: 64px;
  margin-bottom: calc(2rem + 11px);
}

.event-time {
  margin-bottom: 30px;
}

.event-location {
  font-size: 18px !important;
  letter-spacing: 0.12em;
  line-height: 30px !important;
  text-transform: uppercase;
  color: #faf2c7 !important;
  opacity: 1 !important;
  margin-bottom: 0px !important;
}

.event-location span {
  display: block;
  font-weight: var(--bold);
  letter-spacing: 0.02em;
  line-height: 22px;
  text-transform: capitalize;
  margin-top: 8px;
  color: #fff;
}

.single-event-image {
  max-width: 660px;
  position: relative;
  margin-left: auto;
  margin-right: -90px;
}

.single-event-image img {
  object-fit: cover;
  min-height: 440px;
  border-radius: 4px;
}

.grey-box-padded {
  padding: 110px 0px 88px;
  position: relative;
}
.bg-grey {
  background-color: #f3f3f3;
}

.grey-box-padded::before {
  content: ' ';
  width: calc(100% - 60px);
  height: calc(100% - 30px);
  border-radius: 4px;
  background-color: #f3f3f3;
  position: absolute;
  bottom: 0px;
  left: 30px;
}

.grey-box-padded .sub-heading {
  margin-bottom: calc(1.5rem + 2px);
}

.grey-box-padded h2 {
  font-weight: var(--extra-bold);
  font-size: 40px;
  line-height: 54px;
  color: #090808;
  margin-bottom: 33px;
}

.grey-box-padded p {
  font-family: var(--font-family-2);
  font-weight: var(--regular);
  font-size: 22px;
  line-height: 32px;
/*  max-width: 585px;*/
  opacity: 0.9;
/*  margin-bottom: 49px;*/
}

.content ul {
  margin: 0px;
  padding-left: 0px;
  list-style: none;
  padding-left: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.content ul li {
  padding-left: 34px;
  position: relative;
  font-weight: var(--bold);
  font-size: 20px;
  line-height: 28px;
  text-align: left;
  margin-bottom: 30px;
}

.content ul li::before {
  content: '\f0da';
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.06em;
  line-height: 32px;
  color: #ffc63b;
  position: absolute;
  top: 0px;
  left: 0px;
}

.content ul li a {
    color: var(--bg-light-green);
    text-decoration: underline;
}

.register-box {
  max-width: 400px;
  min-height: 215px;
  border-radius: 4px;
  background-color: #fff;
  padding: 27px 40px 40px 30px;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-top: 4px;
  margin-bottom: 29px;
}

.register-box p {
  font-family: var(--font-family-1);
  font-weight: var(--medium);
  max-width: 330px;
  margin-bottom: 0px;
  margin-top: 0px !important;
    flex-grow: 1;
}

.register-box .btn-green {
  margin: 0px;
}

.white-box-padded {
  padding: 100px 0px 69px;
}
.border-bottom-blue {
  border-bottom: 1px solid var(--bg-blue);
}

.white-box-padded .sub-heading {
  margin-bottom: calc(1.5rem + 6px);
}

.gl-member-box {
  width: 100%;
  margin-bottom: 53px;
}

.gl-member-image {
  width: 100%;
  max-width: 270px;
  height: 270px;
  background-color: #e9e9e9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 4px 4px 0px 0px;
  margin-bottom: 21px;
}

.tm-name {
  font-weight: var(--bold);
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 34px;
  color: #000;
  margin-bottom: 11px;
}

.tm-designation {
  font-weight: var(--medium);
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 22px;
  text-transform: uppercase;
  color: #568b3e;
  margin-bottom: 0px;
}

.gl-event-sponsor {
  padding: 90px 0px 90px;
}

.gl-event-sponsor .sub-heading {
  margin-bottom: calc(1.5rem + 6px);
}

.gl-sponsor-box {
  width: 100%;
  min-height: 160px;
  padding: 19px 19px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #a7a7a7;
  margin-bottom: 40px;
  display: flex;
}

.gl-sponsor-image {
  width: 100%;
  max-width: 160px;
  height: 120px;
  border-radius: 4px;
  background-color: #d1d1d1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-right: 10px;
}

.gl-sponsor-box h4 {
  font-weight: var(--extra-bold);
  font-size: 24px;
  line-height: 32px;
  text-align: left;
  color: #090808;
  margin: 8px 10px 0px;
}

/* ANNUAL REPORTS PAGE CSS */
.gl-latest-annual-post {
  padding: 90px 0px 139px;
  position: relative;
}

.gl-latest-annual-post::before {
  content: ' ';
  width: 100%;
  min-height: 343px;
  background-color: #f3f3f3;
  position: absolute;
  left: 0px;
  bottom: -70px;
  z-index: -1;
}

.black {
  color: #000;
}

.sub-heading.black::after {
  background-color: #000;
}

.sub-heading.black::after {
  background-color: #000;
}

.gl-latest-annual-post .sub-heading {
  margin-bottom: calc(2.5rem + 10px);
}

.gl-annual-box {
  width: 100%;
  min-height: 300px;
  padding: 40px 40px 30px 30px;
  border-radius: 4px;
  border: 1px solid #000;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.gl-annual-box h5 {
  font-weight: var(--bold);
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 28px;
  text-align: left;
  color: var(--bg-blue);
  margin-bottom: 20px;
}

.gl-annual-box h2 {
  font-weight: var(--extra-bold);
  font-size: 36px;
  line-height: 44px;
  text-align: left;
  color: #090808;
  flex-grow: 1;
}

.gl-annual-box a {
  font-weight: var(--bold);
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 20px;
  text-align: left;
  color: var(--bg-blue);
  text-transform: uppercase;
}

.gl-annual-box a i {
  margin-left: 10px;
}

.gl-annual-box a:hover {
  text-decoration: none;
/*  color: var(--bg-light-green);*/
}

.gl-annual-box:hover {
    border-color: var(--bg-blue);
    background-color: var(--bg-blue);
}

.gl-annual-box:hover * {
    color: #fff;
}

.gl-annual-box:hover a, 
.gl-annual-box:hover a i {
    color: var(--color-yellow);
}

/* CAREER PAGE CSS */
.career-hero-image {
  max-width: 660px;
  position: relative;
  margin: 54px -90px 0px auto;
  /*margin-left: auto;
    margin-right: -90px;*/
}

.career-hero-image img {
  object-fit: cover;
  min-height: 420px;
  border-radius: 4px;
}

/* FOOTER CSS */
.newsletter-box-holder {
  max-width: 1350px;
  border-radius: 4px;
  padding: 32px 91px 36px 89px;
  background-color: var(--bg-light-green);
  position: relative;
  margin-bottom: -70px;
}

.newsletter-box-holder h2 {
  font-weight: var(--extra-bold);
  font-size: 30px;
  line-height: 36px;
  color: #fff;
  max-width: 210px;
  margin-bottom: 0px;
}

.form-box {
  max-width: 770px;
  margin-left: auto;
  padding: 5px 5px 5px 8px;
  border-radius: 4px;
  background-color: #e9f5e6;
}

.form-inline .form-control {
  max-width: 187px;
  height: 35px;
  background-color: transparent;
  border: none;
  border-radius: 0px;
  border-left: 1px solid #568b3e;
  padding: 0px 12.5px;
  font-weight: var(--medium);
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 36px;
  text-align: left;
  color: #090808;
}

.form-inline #first-name {
  border-left: none;
}

#email {
  margin-right: auto;
}

.form-inline .form-control:focus {
  background-color: transparent;
  border-color: #568b3e;
}

.form-control::placeholder {
  color: #090808;
}

.btn-submit {
  width: auto;
  max-width: 132px;
  height: 50px;
  border-radius: 4px;
  padding: 0px 19px;
  border: none;
  background-color: #090808;
  font-weight: var(--medium);
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 50px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.btn-submit:hover {
  background-color: var(--bg-green);
  color: #fff;
}

.thankyou {
    font-weight: var(--medium);
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 0px;
    padding: 8px 7px;
}

.main-footer {
  padding: 152px 0px 74px;
  background-color: #090808;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.footer-link {
  display: block;
  max-width: 350px;
  margin: 0px auto;
}

.footer-link li {
  width: 170px;
  margin-right: 0px !important;
  margin-bottom: 6px;
}

.footer-link li:nth-last-child(2) {
  margin-right: 35px;
}

.footer-link li a {
  font-weight: var(--medium);
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 22px;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
}

.footer-link li:last-child,
.footer-link li:nth-last-child(2) {
  margin-bottom: 0px !important;
}

.footer-link li a:hover {
    color: var(--bg-light-green);
}

.social-link {
  text-align: right;
  margin-bottom: 0px;
}

.social-link li:not(:last-child) {
  margin-right: 20px;
}

.social-link li a {
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 30px;
  color: #fff;
}

.instagram:hover {
  color: #d600a9;
}

.twitter:hover {
  color: #55acee;
}

.facebook:hover {
  color: #3b5998;
}

.linkedin:hover {
  color: #0077b5;
}

.youtube:hover {
  color: #cd201f;
}

.medium:hover {
  color: var(--bg-green);
}

.gl-copyright {
  padding: 19px 0px 20px;
  background-color: #090808;
}

.gl-copyright-text {
  font-weight: var(--regular);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 20px;
  text-align: left;
  text-transform: uppercase;
  color: #daefd5;
  margin-bottom: 0px;
}

.gl-copyright a {
  display: block;
  max-width: fit-content;
  font-weight: var(--regular);
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 20px;
  text-align: right;
  text-transform: uppercase;
  color: #daefd5;
  margin-left: auto;
}

.gl-copyright a:hover {
    color: var(--bg-light-green);
}

/*.testimonails-container::after {
    content: "";
    width: 30%;
    min-height: 450.59px;
    background: #568b3e;
    position: absolute;
    top: 100px;
    right: 30px;
}*/

.testimonails-container {
    padding-bottom: 125px;
    position: relative;
    overflow-x: hidden;
}

.testimonails-container h2 {
    margin-bottom: 42px;
}

.testimonails-container ul li {
    margin-bottom: 31px;
}

.testimonails {
    color: #fff;
    z-index: 2;
    background: #568b3e;
    border-radius: 4px 0px 0px 4px;
    min-height: 450px !important;
}

.testimonails::before {
    content: " ";
    width: calc(100% + 400px);
    height: 100%;
    background: var(--bg-blue);
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 4px 0px 0px 4px;
}

.testimonails .carousel-warper {
  padding: 42px 0px 40px 40px;
  padding-left: 15px;
/*   max-width: 385px; */
  min-height: 475px;
}

.carousel::before {
    content: " ";
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, #ffffff00 0%, #3b70b4 100%);
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 2;
}

.carousel-item {
    padding-right: 20px;
}

.testimonails img {
  max-width: 100px;
  border-radius: 50%;
  margin-right: 30px;
}

.testimonails h5 {
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 21px;
}

.testimonails .media-body h4 {
    font-weight: var(--semi-bold);
    font-size: 22px;
    letter-spacing: 0.08em;
  margin-bottom: 9px;
}

.testimonails .media-body span {
  max-width: 100px;
}

span.designation {
    font-weight: var(--medium);
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 20px;
    text-align: left;
    text-transform: uppercase;
    color: #f3f3f3;
}

.testimonails p {
  font-style: italic;
  font-size: 20px !important;
  font-weight: var(--semi-bold) !important;
  color: #fff !important;
  opacity: 1 !important;
  line-height: 28px !important;
  margin-bottom: 30px;
  margin-top: 0px;
}

.carousel-control-next, 
.carousel-control-prev {
    width: auto;
    top: auto;
    bottom: -35px;
    opacity: 1;
    justify-content: start;
}

.carousel-control-next {
    left: 25px;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.25' height='18.646' viewBox='0 0 11.25 18.646'%3E%3Cpath id='Path_1847' data-name='Path 1847' d='M-8.051-20.074l7.5,7.447A2.041,2.041,0,0,1,0-11.3,1.962,1.962,0,0,1-.549-9.977l-7.5,7.447a1.875,1.875,0,0,1-2.044.407A1.755,1.755,0,0,1-11.25-3.8V-18.75a1.876,1.876,0,0,1,1.157-1.733A1.87,1.87,0,0,1-8.051-20.074Z' transform='translate(11.25 20.626)' fill='%233b70b4'/%3E%3C/svg%3E%0A");
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.25' height='18.646' viewBox='0 0 11.25 18.646'%3E%3Cpath id='Path_1848' data-name='Path 1848' d='M-8.051-1.926l7.5-7.447A2.041,2.041,0,0,0,0-10.7a1.962,1.962,0,0,0-.549-1.326l-7.5-7.447a1.875,1.875,0,0,0-2.044-.407A1.755,1.755,0,0,0-11.25-18.2V-3.25a1.876,1.876,0,0,0,1.157,1.733A1.87,1.87,0,0,0-8.051-1.926Z' transform='translate(0 -1.374) rotate(180)' fill='%233b70b4'/%3E%3C/svg%3E%0A");
}

.carousel-control-next:focus, 
.carousel-control-next:hover, 
.carousel-control-prev:focus, 
.carousel-control-prev:hover {
    opacity: 1;
}

.mb-100 {
  margin-bottom: 100px;
}

.jobs {
    margin-top: 50px;
}

.job-opening-box {
  padding: 28px 38px 36px 30px;
  border: 1px solid;
  border-radius: 4px;
  margin-bottom: 40px;
}

.job-opening-box .job-title {
    font-weight: var(--extra-bold);
    font-size: 36px;
    margin-bottom: 20px;
}

.job-opening-box .apply-btn {
    min-width: 240px;
}

.job-opening-box .job-location {
  font-weight: var(--bold);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #568b3e;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.job-opening-box .wp-block-button__link {
    height: 54px;
    line-height: 27px;
    padding: calc(0.667em + 2px) 15px;
}

.post-type-archive-event .hero p {
    max-width: 470px;
}

.events {
    padding-bottom: 140px;
    position: relative;
}

.events::before {
    content: " ";
    width: 100%;
    min-height: 476px;
    background-color: #F3F3F3;
    position: absolute;
    bottom: -70px;
    left: 0px;
}

.font-weight-black {
    font-weight: 900;
}

.events .event-box {
    background-color: #3b70b4;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.events .event-box-content {
    padding: 60px;
}

.events .event-image {
  width: 100%;
  height: 100%;
  max-width: 600px;
  border-radius: 0px 4px 4px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
}

.events .event-title {
  font-size: 54px;
}

.events .event-date {
  font-size: 24px;
  font-weight: 600;
  color: #f8bd34;
  margin-top: 20px;
}

.events .event-btn {
  min-width: 200px;
  margin-top: 50px;
}

.bg-black {
    background-color: #090808 !important;
}

a.bg-black:hover {
    background-color: #fff !important;
    color: #090808 !important;
}

/* SINGLE BLOG POST CSS */
.single-post .post-section {
    padding-bottom: 120px;
}

.single-post .blog-post {
    position: relative;
    margin-top: -277px;
/*    top: -277px;*/
    border-radius: 5px;
}

.single-post .post-body {
    padding-top: 37px;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 60px;
}

.single-post .single-hero {
    min-height: 397px;
}

.single-post .post-section .container {
    max-width: 1060px;
}

.single-post .featured-image {
    min-height: 556px;
    background-size: cover;
    background-position: center;
    border-radius: 5px 5px 0px 0px;
}

.single-post .post-title {
    font-weight: var(--extra-bold);
    font-size: 54px;
    line-height: 64px;
    margin-top: 0px;
    margin-bottom: 30px;
    max-width: 850px;
}

.single-post .categories {
    margin-bottom: 38px;
}

.single-post .categories .category-tag {
    padding: 2px 15px 3px 15px;
}

.post-meta  {
    margin-bottom: 38px;
    font-size: 20px;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.post-meta .author {
    color: #68B44A;
    margin-right: 20px;
}

.post-meta .date {
    color: #727272
}

body.single-post .is-layout-flex {
    margin-bottom: 9px;
}

body.single-post  .is-layout-flow > * + * {
    margin-block-start: 15px !important;
}

.post-content p {
    font-weight: var(--regular);
    font-size: 22px;
    line-height: 32px;
    max-width: 850px;
    color: #000;
    opacity: 0.9;
    margin-bottom: 15px;
}

.post-content .alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.post-content .aligncenter {
    clear: both;
/*     display: block; */
    margin-left: auto;
    margin-right: auto;
}
.post-content img {
  height: auto;
    max-width: 100%;
}

.post-content h3 {
    font-weight: var(--bold);
    font-size: 26px;
    line-height: 36px;
    max-width: 850px;
    margin-bottom: 20px;
  margin-top: 20px;
}
.post-content h6 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.post-content h5 {
    font-weight: var(--bold);
    font-size: 18px;
    line-height: 36px;
    max-width: 850px;
    margin-bottom: 20px;
  margin-top: 20px;
}


.post-content ol {
    padding-left: 35px;
    margin-bottom: 20px;
}

.post-content ol li {
    padding-left: 15px;
    font-weight: var(--regular);
    font-size: 20px;
    line-height: 30px;
    max-width: 850px;
    color: #000;
    opacity: 0.9;
    margin-bottom: 6px;
}

.post-content ol li::marker {
    color: var(--color-yellow);
}

.post-content ol li a {
    color: var(--bg-green);
    text-decoration: underline;
}

.post-content ul {
    padding-left: 0px;
    list-style: none;
    padding-left: 30px;
    margin-bottom: 20px;
}

.post-content ul li {
    padding-left: 34px;
    position: relative;
    font-weight: var(--regular);
    font-size: 20px;
    line-height: 28px;
    text-align: left;
    margin-bottom: 30px;
}

.post-content ul li::before {
    content: '\f0da';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 0.06em;
    line-height: 32px;
    color: #ffc63b;
    position: absolute;
    top: 0px;
    left: 0px;
}

.post-content ul li a {
    color: var(--bg-green);
    text-decoration: underline;
}

.post-content p sup,
.post-content ul li sup {
    font-weight: var(--bold);
    color: var(--bg-blue);
}

.post-content p a {
    text-decoration: underline;
    color: var(--bg-light-green);
}

.post-content p sup a,
.post-content ul li sup a {
    color: var(--bg-blue);
}

.wp-block-quote, blockquote {
    margin: 36px 0px 39px 28px;
    padding: 10px 0px 10px 29px;
    border-radius: 2px;
    border-left: 4px solid var(--color-yellow);
}

.wp-block-quote p, blockquote h5 {
    font-weight: var(--semi-bold) !important;
    font-size: 28px !important;
    line-height: 36px !important;
    max-width: 670px !important;
    color: var(--bg-green);
    margin-bottom: 0px !important;
  text-transform: initial;
  margin-top: 0px !important
}

.wp-block-image figcaption {
    font-weight: var(--medium) !important;
    font-style: italic !important;
    font-size: 18px !important;
    line-height: 28px !important;
    color: #090808 !important;
    text-align: left !important;
    margin-top: 11px;
}

.wp-block-image figcaption {
    background: transparent !important;
    position: relative !important;
    padding: 0px !important;
    flex-grow: 0 !important;
    flex-basis: auto !important;
    margin-bottom: 25px !important;
}

.footnotes-box {
    border-radius: 4px;
    padding: 28px 40px 23px;
    background-color: #F1F7FC;
    margin-top: 60px;
}

.footnotes-box h6 {
    font-weight: var(--bold);
    font-size: 20px;
    letter-spacing: 0.08em;
    line-height: 30px;
    text-transform: uppercase;
    color: var(--bg-blue);
    margin-bottom: 15px;
}

.footnotes-box ol {
    margin: 0px;
    padding-left: 41px;
}

.footnotes-box ol li {
    padding-left: 20px;
    position: relative;
    font-weight: var(--regular);
    font-size: 20px;
    line-height: 28px;
    color: var(--bg-blue);
    margin-bottom: 18px;
    max-width: 708px;
}

.footnotes-box ol li::marker {
  text-align: center !important;
  text-align-last: center !important;
}

.post-box-ul {
    margin: 40px 0px 0px;
}

.post-box-ul li {
    width: calc(25% - 7px);
    margin-bottom: 0px !important;
    height: 50px;
}

.post-box-ul li:not(:last-child) {
    margin-right: 5px;
}

.btn-social, 
.btn-social:visited, 
.btn-social:focus {
    height: 50px;
    color: #fff;
    padding: 0px 20px;
    text-transform: uppercase;
    font-weight: var(--medium);
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 50px;
    border: none;
    border-radius: 4px;
    width: 100%;
    text-align: left;
    position: relative;
}

.btn-social span {
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 0px;
}

.btn-copy-link {
    background: var(--bg-light-green);
}

.hid-field {
    position: absolute;
    left: -999999px;
}

.btn-twitter {
    background: #1DA1F2;
}

.btn-facebook {
    background: #1877F2;
}

.btn-linkdin {
    background: #0A66C2;
}

.btn-social:hover {
    color: #fff;
}

.btn-copy-link:hover {
    background: var(--bg-green);
}

.btn-twitter:hover {
    background: #46bbff;
}

.btn-facebook:hover {
    background: #3b5998;
}

.btn-linkdin:hover {
    background: #286fb7;
}

.gl-latest {
    padding-top: 90px;
    padding-bottom: 53px;
}

.gl-latest .sub-heading {
    margin-bottom: calc(1.5rem + 6px);
}

.gl-latest .category-posts .post .featured-image {
    min-height: 200px !important;
}

.gl-latest .category-posts .post .title-holder {
    min-height: auto !important;
    margin: 15px 0px 0px;
}

.gl-latest .category-posts .three-posts .post-title {
    line-height: 34px;
    margin: 0px;
}

.gl-latest .categories {
    display: none !important;
}

.gl-news-cetagory-posts {
/*    padding: 89px 0px 143px !important;*/
    padding: 89px 0px 100px !important;
    position: relative;
}

.gl-news-cetagory-posts::before {
    content: " ";
    width: 100%;
    min-height: 393px;
    background-color: #F3F3F3;
    position: absolute;
    bottom: 0px;
    left: 0px;

}

/*.gl-news-cetagory-posts .categories {
    display: none;
}*/

.text-grey {
  color: #f3f3f3;
}

.text-black {
  color: #090808;
}

.view-all-link:hover {
  color: var(--bg-light-green);
  text-decoration: none !important;
}

.view-all-link:hover i {
  transform: translateX(0);
}
a i.fa-arrow-right-long {
  transform: translateX(-3px);
  transition: transform 0.35s cubic-bezier(0.3, 0.76, 0.47, 1.15);
}
a:hover i.fa-arrow-right-long {
  transform: translateX(0);
}
.view-all-link {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: var(--semi-bold);
}
.view-all-link i {
  margin-left: 12px;
  transform: translateX(-3px);
  transition: transform 0.35s cubic-bezier(0.3, 0.76, 0.47, 1.15);
}

.media-contact h5 {
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f8bd34;
    font-weight: var(--semi-bold);
    margin-bottom: 23px;
}

.media-contact h4 {
    font-size: 22px;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.media-contact p {
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 26px;
    margin-bottom: 25px;
}

.category-posts .post {
    height: 100%;
    text-decoration: none;
}

.category-posts .post .featured-image {
    border-radius: 5px 5px 0px 0px;
    margin-bottom: auto;
    overflow: clip;
    max-height: 308px;
}

.category-posts .two-posts .post .featured-image {
    height: 100%;
}

.category-posts .post .title-holder {
/*     display: flex;
    align-items: center; */
    margin-top: 9px;
    margin-bottom: 8px;
    min-height: 106px;
}

.category-tag {
    color: #fff;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    padding: 2px 15px 3px 15px;
    border-radius: 4px;
    margin-right: 15px;
    cursor: pointer;
}

.category-posts .post .post-title {
    font-size: 32px;
    color: #090808;
    font-weight: 600;
    padding-right: 20px;
    margin-bottom: 15px;
}
.category-posts .post .featured-image img {
    transition: transform 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
    transform: scale(1.01);
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.category-posts .post:hover img {
    transform: scale(1.1);
}
.category-posts .post:hover h1 {
  color: var(--bg-blue);
/*    opacity: 0.9;*/
}
.category-tag:hover {
    background-color: #D19A2A;
    color: #fff !important;
}

.category-posts .three-posts .featured-image {
    max-height: 200px;
    height: 100%;
    object-fit: cover;
}
.category-posts .three-posts .post-title {
    font-size: 26px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-120 {
    margin-bottom: 120px;
}

.content ol {
    margin: 0px;
    padding-left: 46px;
    margin-top: 19px;
    margin-bottom: 30px;
}

.content ol li {
    padding-left: 17px;
    position: relative;
    font-weight: var(--bold);
    font-size: 20px;
    line-height: 28px;
    text-align: left;
    margin-bottom: 21px;
}

.content ol li::marker {
    color: #FFC63B;
}

/* Hide Footer Newsletter Box*/
.page-template-t-publications--resources .newsletter-box-holder,
.page-template-t-contact footer .newsletter-box-holder,
.page-template-t-hero-image footer .newsletter-box-holder,
.blog footer .newsletter-box-holder,
.single-act footer .newsletter-box-holder{
  display: none;
}

.page-template-t-publications--resources .main-footer,
.page-template-t-contact .main-footer,
.page-template-t-hero-image .main-footer,
.blog .main-footer,
.single-act .main-footer {
  padding: 82px 0px 74px;
}

.newsletter-box-holder.blackbox {
  background: #090808;
  position: relative;
  top: -70px;
}
.newsletter-box-holder.blackbox .btn-submit {
  background-color: var(--bg-green);
  color: #fff;
}
.newsletter-box-holder.blackbox .btn-submit:hover {
  background-color: #090808;
  color: #fff;
}

/* Work Single */
.work-post-content {
  padding-bottom: 50px;
}
.work-post-content > * {
  /* padding-right: 330px; */
}
.work-post-content > *:not(.alignfull, .wp-block-separator) {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.work-post-content h6 {
  color: #0077b5;
}
.work-post-content h6:after {
  background-color: #0077b5;
}
.content h6.has-primary-color:after {
  background-color: #568b3e;
}

.work-post-content .alignfull {
  margin: 30px;
  padding-top: 80px;
  padding-bottom: 100px;
  border-radius: 4px;
}

.work-post-content h2 {
  font-weight: 900;
  font-size: 40px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.work-post-content p {
  font-size: 22px;
  line-height: 32px;
}

.work-post-content p a {
  color: var(--bg-light-green);
  text-decoration: underline;
}

.half-grey {
  background: linear-gradient(to bottom, #fff 40%, #f3f3f3 0.1%, #f3f3f3 60%);
  margin-bottom: 0px;
  padding-bottom: 70px;
  position: relative;
  margin-bottom: -70px;
}

/* HOME PAGE CSS */
.home-hero {
    padding: 131px 0px 146px;
    position: relative;
    background-image: url(/wp-content/uploads/2022/12/Mask-Group-14.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.home-hero:before {
    content: " ";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(9, 8, 8, 0) 0%, #090808 100%);
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.2;
}

.home-hero h1 {
    font-weight: var(--extra-bold);
    font-size: 67px;
    line-height: 90px;
    text-align: left;
    color: #090808;
    margin-bottom: 0px;
}

.home-hero h1 span {
    display: block;
    border-radius: 4px;
    max-width: max-content;
    padding: 0px 40px 0px 20px;
    background-color: #68B44A;
  color: #fff
}

.home-hero h1 span:not(:last-child) {
    margin-bottom: 22px;
}

.home-bar {
    padding: 14px 0px 14px;
    background-color: #000;
    text-align: center;
}

.home-bar p {
    font-weight: var(--medium);
    font-size: 22px;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 0px;
}

.home-bar p a {
    font-weight: var(--bold);
    text-decoration: underline;
    color: var(--color-yellow);
/*    color: #FAF2C7;*/
    margin-left: 6px;
}

.home-bar p a:hover {
  color: var(--bg-light-green);
    text-decoration: underline !important;
}
.gl-home-below {
    padding: 111px 0px 120px;
    position: relative;
    z-index: 2;
}

.gl-home-below::before {
    content: " ";
    width: calc(100% - 60px);
    height: calc(100% - 31px);
    border-radius: 4px;
    background-color: #F3F3F3;
    position: absolute;
    bottom: 0px;
    left: 30px;
}

.below-home-content {
    position: relative;
    z-index: 2;
}

.gl-home-below .sub-heading {
    margin-bottom: calc(0.75rem + 2px);
}

.below-home-before-image {
    width: 58.8629%;
    height: calc(100% - 30px);
    border-radius: 4px 0px 0px 4px;
    background-image: url(../images/hero-image.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-color: var(--bg-green);
    background-size: cover;
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 1;
}

.gl-home-below h2,
.gl-home-academy h2 {
    font-weight: var(--extra-bold);
    font-size: 72px;
    line-height: 80px;
    text-align: left;
    color: #fff;
    margin-bottom: 34px;
}

.gl-home-below h2 span,
.gl-home-academy h2 span {
    display: inline-block;
    position: relative;
    z-index: 2;
    padding-right: 15px;
}

.gl-home-below h2 span::before,
.gl-home-academy h2 span::before {
    content: " ";
    width: 100%;
    height: 24px;
    border-radius: 2px;
    background-color: #f8bd34;
    position: absolute;
    bottom: -3px;
    right: 0px;
    z-index: -1;
}

.gl-home-below h5 {
    font-weight: var(--medium);
    font-size: 22px;
    line-height: 32px;
    text-align: left;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 28px;
    text-transform: unset;
}

.gl-home-below p {
    font-weight: var(--regular);
    line-height: 26px;
    text-align: left;
    color: #fff;
    opacity: 0.9;
    max-width: 470px;
    margin-bottom: 49px;
}

.gl-home-below-images {
    position: relative;
    z-index: 2;
}

.below-home-image {
    width: 100%;
    max-width: 522px;
    min-height: 134px;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.below-home-image:nth-last-child(2) {
    max-width: 298px;
}

.below-home-image::before {
    content: " ";
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: -1;
}

.gl-home-below-images .below-home-image:not(:last-child) {
    margin-bottom: 46px;
}

.gl-home-latest {
    padding: 100px 0px 100px;
    position: relative;
}

.gl-home-latest::before {
    content: " ";
    width: 100%;
    min-height: 50%;
    background: #F3F3F3;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.gl-home-latest h2 {
    display: block !important;
    font-weight: var(--extra-bold);
    font-size: 40px;
    line-height: 44px;
    color: #090808;
    margin-bottom: 44px;
}

.gl-home-latest .sub-heading {
    margin-bottom: calc(1rem + 9px);
}

.gl-home-latest .category-posts .post .title-holder {
    min-height: 103px;
}

.gl-home-academy {
    padding: 95px 0px 120px;
    position: relative;
    overflow-x: hidden;
}

.gl-home-academy::before {
    content: " ";
    width: 90%;
    height: calc(100% - 15px);
    border-radius: 4px 0px 0px 4px;
    background-color: var(--bg-blue);
    background-image: url(../images/acdmey-image.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.gl-home-academy .sub-heading {
    margin-bottom: calc(1rem + 1px);
}

.gl-home-academy::after {
    content: " ";
    width: 100%;
    min-height: 410px;
    background: #F3F3F3;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
}

.gl-home-academy h2 {
    max-width: 540px;
    margin-bottom: 32px;
}

.gl-home-academy h2 span::before {
    background-color: var(--bg-light-green);
}

.gl-home-academy p {
    font-family: var(--font-family-1);
    font-weight: var(--medium);
    font-size: 22px;
    line-height: 32px;
    color: #fff;
    opacity: 0.9;
    max-width: 470px;
    margin-bottom: 50px;
}

.btn-white {
    display: block;
    max-width: 200px;
    height: 50px;
    border: none;
    border-radius: 4px;
    padding: 0px 15px;
    background-color: #ffffff;
    font-weight: var(--bold);
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 49px;
    text-align: left;
    text-transform: uppercase;
    color: var(--bg-light-green);
}

.btn-white i {
    float: right;
    line-height: 49px;
}

.btn-white:hover {
    background-color: var(--bg-light-green);
    color: #fff;
}

.video-box {
    position: relative;
    max-width: 665px;
    margin-top: 60px;
    margin-right: -80px;
    margin-left: auto;
}

/*.video-box::before {
    position: relative;
    max-width: 665px;
    margin-right: -80px;
}*/

.video-link {
    display: block;
    position: relative;
    max-width: 665px;
    border-radius: 4px;
    box-shadow: 10px 10px 0px 0px #ffffff;
    z-index: 2;
}

.video-link:after {
    content: ''; 
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0px;
    border-radius: 4px;
    background: #faf2c7;
    opacity: 0.2;
    z-index: 0;
}

.video-link:before {
    content: "\f144";
    width: 100%;
    display: block;
    font-family: "Font Awesome 5 Pro";
    font-size: 72px;
    font-weight: 900;
    line-height: 72px;
    position: absolute;
    top: 40%;
    left: 0px;
    text-align: center;
    z-index: 3;
    color: #ffff;
    opacity: 0.8;
}

.video-link:hover {
    box-shadow: 10px 10px 0px 0px var(--color-yellow);
}

.video-link:hover:after {
    opacity: 0.3;
}

.video-link img {
    min-height: 372.85px;
    object-fit: cover;
    z-index: 0;
    border-radius: 4px;
    position: relative;
}

.gl-home-work {
    padding: 90px 0px 120px;
    position: relative;
}

.gl-home-work::before {
    content: " ";
    width: 100%;
    min-height: 300px;
    background-color: #F3F3F3;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.green {
    color: var(--bg-green);
}

.sub-heading.green::after {
    background: var(--bg-green);
}

.gl-home-work .sub-heading {
    margin-bottom: calc(1rem + 2px);
}

.gl-home-work h2 {
    font-weight: var(--extra-bold);
    font-size: 40px;
    line-height: 54px;
    color: #090808;
    max-width: 470px;
    margin-bottom: 34px;
}

.gl-home-work h5 {
    font-weight: var(--medium);
    font-size: 22px;
    line-height: 32px;
    color: #090808;
    opacity: 0.9;
    margin-bottom: 0px;
    text-transform: unset;
}

.gl-home-work p {
    font-weight: var(--regular);
    line-height: 26px;
    color: #373636;
    margin-bottom: 0px;
    max-width: 530px;
}

.gl-home-work p a {
    font-family: var(--font-family-1);
    font-weight: var(--bold);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 26px;
    margin-left: 15px;
    text-transform: uppercase;
    text-decoration: none;
    color: #090808;
}

.gl-home-work p a i {
    margin-left: 6px;
}

.gl-home-work p a:hover {
    color: var(--bg-green);
}

.gl-carousel {
    width: 100%;
    max-width: calc(50% + 585px);
    padding-left: 46px;
    padding-top: 55px;
    margin-left: auto;
}

.swiper-slide {
    max-width: 370px;
}

/* .work-post {
    width: 100%;
    min-height: 360px;
    border-radius: 4px;
    padding: 42px 29px 38px;
    background-color: #fff;
    border: 1px solid var(--bg-light-green);
    position: relative;
    display: flex;
    flex-direction: column;
}

.work-icon-box {
    width: 100%;
    max-width: 80px;
    height: 80px;
    background-color: #DAEFD5;
    border-radius: 50%;
    position: absolute;
    top: 19px;
    right: 19px;
}

.work-post-title {
    font-weight: var(--extra-bold);
    font-size: 40px;
    line-height: 48px;
    text-align: left;
    color: var(--bg-green);
    margin-bottom: 16px;
}

.work-post p {
    color: var(--bg-green);
    flex-grow: 1;
}

.work-post a {
    font-weight: var(--bold);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 20px;
    text-transform: uppercase;
    color: #000;
}

.work-post a i {
    margin-left: 10px;
}
 */
.swiper-button-next {
    width: 57px !important;
    height: 57px !important;
    top: 22%;
    right: auto;
    left: -46px;
}

.swiper-button-next:after {
    content: " ";
    background-image: url(../images/arrow-left.svg);
    width: 57px;
    height: 57px;
    background-repeat: no-repeat;
    background-size: contain;
}

/* .work-post a:hover {
    color: var(--bg-green);
} */

.gl-home-summit {
    padding: 80px 0px 192px;
    position: relative;
}

.summit-gray-box {
    width: 100%;
    min-height: 300px;
    background-color: #F3F3F3;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -2;
}

.gl-home-summit::before {
    content: " ";
    width: calc(100% - 124px);
    height: calc(100% - 118px);
    background: linear-gradient(90deg, #6dbfb7 0%, #5ea69f 100%);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.gl-home-summit::after {
    content: " ";
    width: calc(100% - 124px);
    height: calc(100% - 118px);
/*    background-color: #477D78;*/
    background-image: url(../images/home-sumit-image.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.gl-home-summit .sub-heading {
    margin-bottom: calc(1rem + 5px);
}

.gl-home-summit h2 {
    font-weight: var(--extra-bold);
    font-size: 54px;
    line-height: 60px;
    text-align: left;
    color: #fff;
    max-width: 480px;
    margin-bottom: 25px;
}

.gl-home-summit h2 span {
    display: inline-block;
    position: relative;
    z-index: 2;
    padding-right: 15px;
}

.gl-home-summit h2 span::before {
    content: " ";
    width: 100%;
    height: 24px;
    border-radius: 2px;
    background-color: #f8bd34;
/*    background-color: var(--bg-light-green);*/
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: -1;
}

.gl-home-summit h4 {
    font-weight: var(--medium);
    font-size: 22px;
    line-height: 32px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 21px;
}

.gl-home-summit h4 span {
    margin: 0px 4px;
}

.gl-home-summit h5 {
    font-weight: var(--bold);
    font-size: 20px;
    letter-spacing: 0.08em;
    line-height: 30px;
    color: #fff;
    margin-bottom: 23px;
}

.gl-home-summit p {
    font-weight: var(--regular);
    font-size: 18px;
    line-height: 26px;
    text-align: left;
    color: #fff;
    opacity: 0.9;
    max-width: 433px;
    margin-bottom: 49px;
}

.gl-home-fsi {
    max-width: 470px;
    margin: 0px auto;
}

.gl-home-summit-image {
    width: 35.576%;
    min-height: 576px;
    background-image: url(../images/home-sumit-main-image.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 0px 4px 4px 0px;
    position: absolute;
    right: 14.5%;
    top: 0px;
}

/* ABOUT PAGE CSS */
.who-we {
    padding: 94px 0px 120px;
    position: relative;
    overflow-x: hidden;
}

.who-we .sub-heading {
    margin-bottom: calc(1.5rem + 2px);
}

.who-we h2 {
    font-weight: var(--extra-bold);
    font-size: 40px;
    line-height: 54px;
    color: #090808;
    margin-bottom: 22px;
}

.who-we p {
    font-family: var(--font-family-1);
    font-weight: var(--medium);
    font-size: 22px;
    line-height: 32px;
    color: #090808;
    opacity: 0.9;
    margin-bottom: 0px;
}

.who-we-image {
    width: calc(50% - 80px);
    height: 355px;
    border-radius: 4px 0px 0px 4px;
    background-image: url(../images/who-we-image.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    position: absolute;
    top: 94px;
    right: 0px;
/*     right: -40px; */
/*     opacity: 0.73; */
    opacity: 1;
    z-index: -1;
}

@media (max-width: 1600px) {
  .who-we-image {
    width: min(calc(50% - 80px), 710px);
    height: 325px;
  }
}

.we-are-box {
    width: 100%;
    min-height: 321px;
    border-radius: 4px;
    padding: 33px 30px 30px;
    display: flex;
    flex-direction: column;
    margin-top: 58px;
/*     cursor: pointer; */
}

.we-are-box h2 {
    color: #fff;
    line-height: 48px;
    margin-bottom: 19px;
}

.we-are-box p {
    max-width: 280px;
    color: #fff;
    opacity: 1;
    flex-grow: 1;
}

.we-are-box a {
    font-weight: var(--bold);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 20px;
    color: var(--color-yellow);
    text-transform: uppercase;
  transition: none !important
}

.we-are-box a i {
    margin-left: 10px;
}

.gl-our-work-box:hover {
    border-color: var(--bg-green);
    background-color: var(--bg-green);
}
.green-hover:hover {
  border-color: var(--bg-green) !important;
    background-color: var(--bg-green) !important;
}

.gl-our-work-box:hover * {
    color: #fff !important;
}

.gl-our-work-box:hover a,
.gl-our-work-box:hover a i {
  color: #FFC63B !important;
}

.gl-our-work-box a:hover i {
    transform: none;
}

.we-are-box:hover {
    background-color: var(--color-yellow);
}

.we-are-box:hover * {
    color: #fff !important;
}

.gl-our-work {
    padding: 92px 0px 190px;
    background-color: #F3F3F3;
    position: relative;
    margin-bottom: -70px;
}

.gl-our-work .sub-heading {
    margin-bottom: calc(1.5rem + 11px);
}

.gl-our-work h2 {
    font-weight: var(--extra-bold);
    font-size: 40px;
    line-height: 54px;
    color: #090808;
    margin-bottom: 49px;
}

.gl-our-work-box {
    width: 100%;
    min-height: 321px;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid var(--bg-light-green);
    padding: 41px 30px 29px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
/*     cursor: pointer; */
}

.gl-our-work-box h3 {
    font-weight: var(--extra-bold);
    font-size: 36px;
    line-height: 48px;
    color: var(--bg-green);
    margin-bottom: 20px;
}

.gl-our-work-box p {
    font-weight: var(--regular);
    font-size: 18px;
    line-height: 26px;
    text-align: left;
    color: var(--bg-green);
    margin-bottom: 0px;
    flex-grow: 1;
    max-width: 492px;
}

.gl-our-work-box a {
    font-weight: var(--bold);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 20px;
    color: #000;
    text-transform: uppercase;
  transition: none !important;
}

.gl-our-work-box a i {
    margin-left: 10px;
}

.gl-economic {
    border: 0px;
    background-color: var(--bg-green);
}

.gl-economic * {
    color: #fff !important;
}

.gl-our-work-box:hover {
    border-color: var(--bg-green);
    background-color: var(--bg-green);
}

.gl-our-work-box:hover * {
    color: #fff !important;
}

.plain-heading {
    margin: 50px 0px 34px !important;
}

.gl-plain {
    max-width: 340px;
    min-height: 282px;
    display: flex;
    flex-direction: column;
}

.gl-plain h4 {
    font-weight: var(--extra-bold);
    font-size: 29px;
    line-height: 48px;
    color: #090808;
    margin-bottom: 15px;
}

.gl-plain p {
    font-weight: var(--regular);
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.gl-plain a {
    width: max-content;
    font-weight: var(--bold);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 20px;
    color: var(--bg-blue);
    text-transform: uppercase;
}

.gl-plain a i {
    margin-left: 10px;
}

.gl-plain a:before {
    background-color: var(--bg-light-green);
}

.gl-plain a:hover {
    color: var(--bg-light-green);
}

.gl-plain a:hover:before {
    width: 100%;
}

/* FELLOW BOX CSS */
.gl-fellows {
    border: 0px;
    border-radius: 0px;
    margin-bottom: 40px;
}

.gl-fellows img {
    width: 100%;
/*    max-width: 370px;*/
    min-height: 370px;
    border-radius: 4px 4px 0px 0px;
}

.gl-fellow-image {
    width: 100%;
    min-height: 370px;
    border-radius: 4px 4px 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.gl-fellows .card-body {
  cursor: pointer;
    min-height: 202px;
    padding: 22px 30px 30px;
    background-color: var(--bg-blue);
    border-radius: 0px 0px 4px 4px;
    display: flex;
    flex-direction: column;
}

.fellow-title {
    font-weight: var(--bold);
    font-size: 28px;
    letter-spacing: 0.02em;
    line-height: 34px;
    color: #fff;
    margin-bottom: 11px;
}

.fellow-bio {
    font-weight: var(--medium);
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 22px;
    text-transform: uppercase;
    color: #faf2c7;
    flex-grow: 1;
    margin-bottom: 0px;
}

.gl-fellows a {
    font-weight: var(--bold);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--color-yellow);
}

.gl-fellows a i {
    margin-left: 10px;
}

.gl-fellows:hover img {
    /* transform: scale(1.1); */
}

.gl-fellows:hover .card-body {
    background-color: var(--bg-light-green);
}

.modal-dialog {
    max-width: 970px;
    margin: 80px  auto;
}

.modal-content {
    border: none;
}

.modal-dialog .modal-body {
    padding: 57px 70px 80px;
}

.modal-dialog .modal-body .fellow-title {
    color: #000;
}

.modal-dialog .modal-body .fellow-bio {
    color: var(--bg-blue);
}

.gl-modal-margin {
    margin-bottom: 40px;
}

.modal-dialog .modal-body p {
    font-weight: var(--regular);
    font-size: 22px;
    line-height: 32px;
    color: #000;
    opacity: 0.9;
    max-width: 790px;
}

.cateory {
    margin-top: 34px;
}

.cateory span {
    padding: 4px 20px 4px;
    border-radius: 4px;
    background-color: var(--bg-blue);
    font-weight: var(--medium);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 11px;
    text-transform: uppercase;
    color: #fff;
    margin-right: 20px;
}

.modal-social-icon {
    margin: 0px !important;
    padding-left: 0px !important;
    margin-bottom: 0px !important;
    text-align: right;
}

.modal-social-icon li {
  margin-bottom: 0px !important;
  padding-left: 0px !important;
}

.modal-social-icon li::before {
  content: none !important;
}

.modal-social-icon li:not(:last-child) {
    margin-right: 18px;
}

.modal-social-icon li a {
    font-size: 24px;
    letter-spacing: 0.02em;
    line-height: 30px;
    text-decoration: none !important;
    color: var(--bg-light-green) !important;
}

.modal-social-icon li a:hover {
    color: #000 !important;
}

.single-post .gl-fellows {
    position: relative;
    max-width: 270px;
    margin: 0px -60px 0px auto;
}

.single-post .gl-fellows img {
    min-height: 270px;
    border-radius: 4px 0px 0px 0px;
}

.single-post .gl-fellows .card-body {
    min-height: 165px;
    padding: 16px 22px;
    border-radius: 0px 0px 0px 4px;
}

.single-post .fellow-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
}

.single-post .fellow-bio {
    font-size: 16px;
    line-height: 22px;
    color: #faf2c7;
}

.single-post .gl-fellows a {
    font-size: 10px;
    line-height: 16px;
}

.post-content .modal-dialog .modal-body .fellow-title {
    font-size: 26px;
    line-height: 36px;
}

.post-content .modal-dialog .modal-body .fellow-bio {
    font-size: 18px;
}

/* COMMUNITY PAGE CSS */
.room-box {
    padding: 27px 30px 49px 38px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #979696;
    display: flex;
    margin-bottom: 40px;
}

.room-box-content h3 {
    font-weight: var(--extra-bold);
    font-size: 36px;
    line-height: 44px;
    color: #090808;
    margin-bottom: 0px;
}

.room-box-content p {
    font-family: var(--font-family-1);
    font-weight: var(--bold);
    font-size: 20px;
    line-height: 28px;
    color: #090808;
    max-width: 436px;
    margin-bottom: 34px;
    margin-top: 24px;
}

.room-box-content ul {
    max-width: 100% !important;
    padding-left: 1px;
    margin-top: 25px;
    margin-bottom: 42px;
}

.room-box-content ul li {
    margin-bottom: 21px;
}

.room-box-content .btn-green {
    max-width: 330px;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* GALLERY CSS */
.gallery {
    display: grid;
    gap: 19px;
}

.gallery__main-image {
    display: block;
    width: 100%;
}

.gallery__main-image img {
    min-height: 270px;
}

.gallery img {
    max-width: 100%;
    border-radius: 4px;
}

.gallery__images {
    display: flex;
    gap: 11px;
}

.gallery__images img {
    height: 86px;
    object-fit: cover;
    display: block;
}

.gl-room-below-content {
    margin-top: 52px;
    margin-bottom: 67px;
}

.gl-room-below-content h2 {
    font-weight: var(--extra-bold);
    font-size: 36px;
    line-height: 44px;
    color: #090808;
    margin-bottom: 32px;
}

.gl-room-below-content p {
    font-weight: var(--regular);
    font-size: 22px;
    line-height: 32px;
    color: #090808;
    opacity: 0.9;
    max-width: 470px;
    margin-bottom: 0px;
}

.gl-room-below-content p a {
    color: var(--bg-green);
    text-decoration: underline;
}

/* FELLOWSHIP PROGRAM PAGE CSS */
.border-bottom-green {
    border-bottom: 1px solid var(--bg-light-green);
}

.gl-fellowship {
    padding: 90px 0px 100px;
}

.gl-question {
    padding: 92px 0px 191px;
    background-color: #F3F3F3;
    position: relative;
    margin-bottom: -70px;
}

.gl-question .sub-heading {
    margin-bottom: calc(2rem + 8px);
}

.gl-question .card {
    border: 1px solid var(--bg-blue);
    background-color: transparent;
    border-radius: 4px;
    margin-bottom: 20px;
}

.gl-question .card .card-header {
    padding: 0px;
    border-radius: 0px;
    border: none;
}

.btn-card-button {
    width: 100%;
    min-height: 112px;
    border: none;
    border-radius: 2px 2px 0px 0px;
    background-color: var(--bg-blue);
    padding: 16px 30px 19px 20px;
    font-weight: var(--bold);
    font-size: 22px;
    line-height: 32px;
    text-align: left;
    color: #fff !important;
    position: relative;
    display: flex;
    align-items: start;
}

.btn-card-button.collapsed {
    background-color: #fff !important;
    color: #090808 !important;
    border-radius: 2px;
}

.btn-card-button span {
    max-width: 450px;
    margin-right: calc(1.25rem + 10px);
}

.btn-card-button::after {
    flex-shrink: 0;
    content: " ";
    width: 19px;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.421' height='9.882' viewBox='0 0 17.421 9.882'%3E%3Cpath id='Path_1847' data-name='Path 1847' d='M-16.916-15a1.17,1.17,0,0,0-.826,2l7.535,7.541a1.174,1.174,0,0,0,1.658,0L-1.014-13a1.17,1.17,0,0,0-.826-2Z' transform='translate(18.088 15)' fill='%233b70b4'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 20px;
    transition: transform .2s ease-in-out;
    justify-content: center;
    margin: auto 0px auto auto;
}

.btn-card-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.421' height='9.882' viewBox='0 0 17.421 9.882'%3E%3Cpath id='Path_1847' data-name='Path 1847' d='M-16.916-15a1.17,1.17,0,0,0-.826,2l7.535,7.541a1.174,1.174,0,0,0,1.658,0L-1.014-13a1.17,1.17,0,0,0-.826-2Z' transform='translate(-0.668 -5.118) rotate(180)' fill='%23fff'/%3E%3C/svg%3E%0A") !important;
    /*transform: rotate(180deg);*/
}

.btn-card-button:hover {
    background-color: var(--bg-blue) !important;
    color: #fff !important;
}

.btn-card-button:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.421' height='9.882' viewBox='0 0 17.421 9.882'%3E%3Cpath id='Path_1847' data-name='Path 1847' d='M-16.916-15a1.17,1.17,0,0,0-.826,2l7.535,7.541a1.174,1.174,0,0,0,1.658,0L-1.014-13a1.17,1.17,0,0,0-.826-2Z' transform='translate(18.088 15)' fill='%23fff'/%3E%3C/svg%3E%0A");
}

.gl-question .card .card-body {
    background-color: #fff;
    padding: 1.25rem 20px;
    border-radius: 0px 0px 2px 2px;
    margin-top: -1px;
}

.gl-question .card .card-body p {
    font-weight: var(--medium);
    font-size: 18px;
    line-height: 28px;
}

.gl-question .card .card-body.content ul {
    padding-left: 15px;
    margin-top: 30px;
}

.gl-question .card .card-body.content ul li {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
}

.gl-casa-history {
    padding: 90px 0px 105px;
}

.gl-casa-history h2 {
    font-size: 48px;
    line-height: 60px;
}

.gl-casa-history p {
  font-weight: var(--medium);
  font-size: 22px;
  line-height: 32px;
  color: #090808;
  opacity: 0.9;
  margin-bottom: 15px;
}

/* LEADERSHIP PAGE CSS */
.gl-video-section {
    padding: 90px 0px 120px;
}

.gl-video-section .gl-below-hero-content .blue {
    color: var(--bg-blue);
    margin-bottom: calc(1.5rem + 2px);
}

.gl-video-section .gl-below-hero-content h2 {
    line-height: 54px;
}

.gl-our-program {
    padding: 90px 0px 120px;
    background-color: #F3F3F3;
}

.gl-our-program .we-are-box {
    padding: 40px 30px 40px;
    margin-top: 2px;
    min-height: 462px;
}

.gl-our-program .we-are-box h2 {
    font-weight: var(--extra-bold);
    font-size: 36px;
    margin-bottom: 30px;
}

.gl-our-program .we-are-box p {
    max-width: 292px;
    line-height: 26px;
}

.gl-gallery {
    padding-bottom: 121px;
}

.gl-gallery ul {
    margin-bottom: 86px;
}

.gl-gallery ul li {
    width: calc(25% - 8px);
}

.gl-gallery ul li:not(:last-child) {
    margin-right: 6px;
}

.gl-gallery ul li img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.gl-gallery h2 {
    font-weight: var(--extra-bold);
    font-size: 40px;
    line-height: 54px;
    color: #090808;
    margin-bottom: 33px;
}

.gl-gallery p {
    font-weight: var(--regular);
    font-size: 22px;
    line-height: 32px;
    color: #000;
    opacity: 0.9;
    margin-bottom: 61px;
}

.board-content {
    max-width: 300px;
}

.board-content h3 {
    font-weight: var(--bold);
    font-size: 28px;
    letter-spacing: 0.02em;
    line-height: 34px;
    color: #000;
    margin-bottom: 11px;
}

.board-content h5 {
    font-weight: var(--medium);
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 22px;
    color: var(--bg-green);
    margin-bottom: 8px;
}

.board-content p {
    font-family: var(--font-family-1);
    font-weight: var(--medium);
    font-size: 18px !important;
    letter-spacing: 0.06em;
    line-height: 22px !important;
    margin-bottom: 0px !important;
    text-transform: uppercase;
}

/* SUMMIT PAGES CSS */
.summit-hero {
    padding: 120px 0px 123px;
    background: linear-gradient(90deg, #6dbfb7 0%, #5ea69f 100%);
    position: relative;
    z-index: 1;
}

.summit-hero::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/gl-summit-bg-hero.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0px;
    z-index: -1;
}

.summit-hero img {
    max-width: 470px;
    margin-bottom: 54px;
}

.summit-hero h4 {
    font-weight: var(--bold);
    font-size: 28px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 0px;
}

.gl-newsletter-box {
    max-width: 490px;
    border-radius: 4px;
    background-color: #FFFFFF;
    padding: 41px 40px 39px 39.6px;
    margin-left: auto;
}

.gl-newsletter-box h2 {
    font-weight: var(--extra-bold);
    font-size: 40px;
    line-height: 44px;
    color: #090808;
    margin-bottom: 24.5px;
}

.gl-newsletter-box p {
    font-family: var(--font-family-1);
    font-weight: var(--medium);
    font-size: 20px;
    line-height: 28px;
    color: #090808;
    opacity: 0.9;
    max-width: 380px;
    margin-bottom: 30.5px !important;
}

.newsletter-form {
    width: 100%;
    height: 60px;
    padding: 5px 5px;
    background-color: #E9F5E6;
    border-radius: 4px;
}

.newsletter-form .form-control, 
.newsletter-form .form-control:focus {
    width: auto;
    border: none;
    z-index: 1;
}

.gl-newsletter-box .form-control {
    margin-bottom: 15px;
}

.newsletter-form .btn-submit {
    max-width: 132px;
    border-radius: 4px !important;
}

.gl-newsletter-box .btn-black {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 60px;
    font-weight: var(--bold);
    font-size: 22px;
    line-height: 60px;
    text-align: center;
    margin-top: 40px;
}

.greenish {
    color: #477D78;
}

.sub-heading.greenish:after {
    background: #477D78;
}

.gl-about-summit {
    padding: 110px 0px 126px;
}

.gl-about-summit .sub-heading {
    margin-bottom: calc(0.75rem + 4px);
}

.gl-about-summit h2 {
    max-width: 460px;
}

.gl-about-summit p {
    max-width: 540px;
    margin-bottom: 15px;
}

.gl-about-summit .video-box {
    margin-top: 46px;
}

.gl-about-summit .video-link {
    box-shadow: none !important;
}

.gl-about-summit .video-link::before {
    font-size: 60px;
    line-height: 60px;
    color: var(--color-yellow);
}

.gl-about-summit .video-link:after {
    background: #FAF2C7;
    opacity: 0.1;
}

.gl-about-summit .video-link img {
    max-height: 370px;
    width: 100%;
}

.gl-about-summit .btn-green {
    max-width: 410px;
    height: 60px;
    font-size: 20px;
    line-height: 58px;
    padding: 0px 17px 0px 21px;
    margin: 30px 0px 20px;
}

.gl-summit-number {
    padding: 70px 0px 50px;
    background: linear-gradient(270deg, #66b2ab 0%, #559690 19.7%, #477d78 100%);
    position: relative;
    margin-top: 30px;
    z-index: 1;
}

.gl-summit-number::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/gl-summit-bg-hero.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0px;
    z-index: -1;
}

.gl-number-box {
    min-height: 148px;
    max-width: max-content;
    margin: 0px auto;
}

.gl-number-box h2 {
    font-weight: var(--extra-bold);
    font-size: 80px;
    line-height: 69px;
    color: var(--color-yellow);
    text-align: center;
    margin-bottom: 27px;
}

.gl-number-box h4 {
    font-weight: var(--medium);
    font-size: 32px;
    line-height: 41px;
    color: #fff;
    text-align: center;
    margin-bottom: 0px;
}

.gl-summit-featured {
    padding: 110px 0px 121px;
    position: relative;
}

.gl-summit-featured::before {
    content: " ";
    width: calc(100% - 60px);
    height: calc(100% - 413px);
    border-radius: 4px;
    background-color: #E9F0F0;
    position: absolute;
    top: 30px;
    left: 30px;
}

.gl-summit-featured h2 {
    font-weight: var(--extra-bold);
    font-size: 40px;
    line-height: 54px;
    color: #090808;
    margin-bottom: 0px;
}

.gl-summit-featured .sub-heading {
    margin-bottom: calc(0.75rem + 4px);
}

.gl-summit-featured .gl-carousel {
    padding-top: 63px;
    padding-left: 55px;
  padding-right: 16px;
}

.fellow-swiper .gl-fellows {
    margin-bottom: 0px;
}

.fellow-swiper .gl-fellows .card-body {
    min-height: 180px;
    background-color: var(--bg-light-green);
    cursor: inherit;
}

.fellow-swiper .gl-fellows:hover .card-body {
    background-color: var(--bg-light-green);
}

.fellow-swiper .gl-fellows .card-body .fellow-bio {
    color: #E9F0F0;
}

.gl-summit-featured .swiper-button-next {
    top: 4%;
    left: -54px;
}

.gl-summit-featured .swiper-button-next::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='65' viewBox='0 0 30 65'%3E%3Cpath id='Polygon_1' data-name='Polygon 1' d='M31.143,1.252a2,2,0,0,1,2.713,0L61.241,26.53A2,2,0,0,1,59.885,30H5.115a2,2,0,0,1-1.357-3.47Z' transform='translate(0 65) rotate(-90)' fill='%23090808'/%3E%3C/svg%3E%0A");
}

.gl-home-summit-boxes {
    padding: 136px 0px 94px;
    background-image: url(/wp-content/uploads/2022/12/bg-summit-boxes-.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.gl-home-summit-box {
    min-height: 316px;
    padding: 31px 26px 39px 30px;
    background: linear-gradient(90deg, #66b2ab 0%, #559690 29.7%, #477d78 100%);
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.gl-home-summit-box h2 {
    font-weight: var(--extra-bold);
    font-size: 36px;
    line-height: 46px;
    color: #fff;
    margin-bottom: 0px;
    flex-grow: 1;
}

.gl-home-summit-box .d-flex i {
    font-size: 60px;
    letter-spacing: 0.06em;
    line-height: 60px;
    text-align: right;
    color: var(--color-yellow);
    margin-bottom: 7px;
}

.gl-home-summit-box p {
    font-weight: var(--regular);
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    flex-grow: 1;
    max-width: 387px;
}

.gl-home-summit-box a {
    font-weight: var(--bold);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 20px;
    color: var(--color-yellow);
    text-transform: uppercase;
}

.gl-home-summit-box a i {
    margin-left: 10px;
}

.gl-attend {
    padding: 110px 0px 101px;
}

.gl-attend h2 {
    max-width: 570px;
}

.gl-attend.content ul {
    max-width: 500px;
    margin-top: 28px;
    padding-left: 0px;
}

.gl-attend.content ul li {
    padding-left: 45px;
    margin-bottom: 19px;
}

.gl-testimonail {
    padding: 50px 0px 58px;
    background: linear-gradient(270deg, #66b2ab 0%, #559690 19.7%, #477d78 100%);
    position: relative;
    margin-top: 31px;
    margin-bottom: 10px;
    z-index: 1;
}

.gl-testimonail::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/gl-summit-bg-hero.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0px;
    z-index: -1;
}

.gl-testimonail-box {
    max-width: 570px;
    margin: 0px 60px 0px auto;
    text-align: right;
}

.gl-testimonail-box p {
    font-weight: var(--semi-bold);
    font-style: italic;
    font-size: 22px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 18px;
}

.gl-testimonail-box h6 {
    font-weight: var(--bold);
    font-size: 22px;
    letter-spacing: 0.08em;
    line-height: 30px;
    text-transform: capitalize;
    color: var(--color-yellow);
    margin-bottom: 5px;
}

.gl-testimonail-box span {
    font-weight: var(--medium);
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 20px;
    color: #f3f3f3;
    text-transform: uppercase;
}

.gl-testimonail-image {
    max-width: 140px;
    min-height: 140px;
}

.gl-testimonail-image img {
    border-radius: 50%;
}

.gl-previous-summit {
    padding-bottom: 89px;
}

.gl-previous-summit .sub-heading {
    margin-bottom: calc(1rem + 5px);
}

.gl-previous-summit .gl-annual-box {
    border-color: #477D78;
    background-color: #477D78;
}

.gl-previous-summit .gl-annual-box:hover {
    border-color: var(--bg-light-green);
  background-color: var(--bg-light-green);
}

.gl-previous-summit .gl-annual-box * {
    color: #fff;
}

.gl-previous-summit .gl-annual-box a, 
.gl-previous-summit .gl-annual-box a i {
    color: var(--color-yellow);
}

.gl-summit-sponsors {
    padding-bottom: 21px;
}

.gl-summit-sponsors .sub-heading {
    margin-bottom: calc(1rem + 4px);
}

.gl-summit-sponsors h2 {
    font-weight: var(--extra-bold);
    font-size: 40px;
    line-height: 54px;
    color: #090808;
    margin-bottom: 49px;
}

.gl-become {
    padding: 80px 0px 190px;
}

.gl-become::before {
    height: calc(100% - 90px);
    top: 0px;
    bottom: auto;
}

.gl-become p {
    max-width: 470px;
}

.gl-become.content ul {
    margin-top: 37px;
    padding-left: 26px;
}

.gl-become.content ul li {
    padding-left: 45px;
}

.home-below-menu {
    padding: 18px 0px 18px;
    background-color: #090808;
}

.below-menu {
/*     max-width: 766px; */
    margin: 0px auto;
    text-align: center;
    text-transform: uppercase;
}

.below-menu li:not(:last-child) {
    margin-right: 75px;
}

.below-menu li a {
    font-weight: var(--medium);
    font-size: 15px;
    letter-spacing: 0.06em;
    line-height: 20px;
    color: #fff;
}

.below-menu li a:hover {
    color: #66B2AB;
}

.below-menu li.active a {
    color: #66B2AB;
}

.gl-get-involed {
    padding-bottom: 140px;
}

/* TEAM PAGE CSS */
.gl-team-category {
    margin: 47px 0px 18px;
}

.gl-team-category li {
    font-weight: var(--bold);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 20px;
    text-transform: uppercase;
    color: #fff;
}

.gl-team-category li:not(:last-child) {
    margin-right: 15px;
}

.gl-team-category li a {
    color: var(--color-yellow);
}

.gl-team-category li a:hover {
    color: #fff;
}

.gl-team-member {
    padding: 90px 0px 38px;
}

.gl-team-member .sub-heading {
    margin-bottom: calc(1.5rem + 6px);
}

.custom-select.gl-staff-filter {
    display: block;
    width: 100%;
    max-width: 272px;
    border-radius: 0px;
    background-color: #fff;
    padding: 0px;
    border-bottom: 1px solid var(--bg-blue);
    border-top-color: transparent !important;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    font-family: var(--font-family-1);
    font-weight: var(--bold);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 30px;
    color: var(--bg-blue);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.403' height='10.5' viewBox='0 0 17.403 10.5'%3E%3Cpath id='Path_1851' data-name='Path 1851' d='M-7.514-18.736l7,6.951A1.905,1.905,0,0,1,0-10.549,1.831,1.831,0,0,1-.513-9.312l-7,6.951a1.75,1.75,0,0,1-1.908.38A1.638,1.638,0,0,1-10.5-3.549V-17.5a1.751,1.751,0,0,1,1.08-1.618,1.745,1.745,0,0,1,1.906.382Z' transform='translate(-1.848 10.5) rotate(90)' fill='%233b70b4'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 16.5px;
    background-position: right 5px center;
    margin-left: auto;
/*    margin-bottom: 21px;*/
}

.custom-select.gl-staff-filter:focus {
    box-shadow: none;
}

/* RESOURCES PAGE CSS */
.gl-resource-posts {
    padding: 87px 0px 84px;
    background-color: #F3F3F3;
}

.gl-publicate {
    padding-bottom: 117px;
}

.gl-publicate .view-all-link {
    float: right;
}

.gl-resource-post-box {
    min-height: 417px;
    border-radius: 4px;
    background: #fff;
    padding: 40px 30px 40px;
    border: 1px solid var(--bg-blue);
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.resource-post-icon-box {
    width: 100%;
    max-width: 80px;
    height: 80px;
    background-color: #DCEAF8;
    border-radius: 50%;
    position: absolute;
    top: 19px;
    right: 19px;
}

.resource-post-title {
    font-weight: var(--extra-bold);
    font-size: 36px;
    line-height: 48px;
    color: #000000;
    max-width: 420px;
    margin-bottom: 22px;
}

.gl-resource-cetagory {
    display: block;
    max-width: max-content;
    border-radius: 4px;
    padding: 0px 23px 0px 20px;
    background-color: var(--bg-blue);
    font-weight: var(--medium);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 26px;
    color: #fff;
    margin-bottom: 26px;
}

.resource-post-meta {
    font-weight: var(--medium);
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 24px;
    color: #727272;
    text-transform: uppercase;
    flex-grow: 1;
}

.author {
    font-weight: var(--bold);
    color: var(--bg-light-green);
    margin-right: 18px;
}

.gl-resource-post-box a {
    font-weight: var(--bold);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 20px;
    color: #3b70b4;
    text-transform: uppercase;
}

.gl-resource-post-box a i {
    margin-left: 10px;
}

.gl-resource-post-box:hover {
    background-color: var(--bg-blue);
}

.gl-resource-post-box:hover * {
    color: #fff !important;
}

.gl-resource-post-box:hover .resource-post-icon-box {
    opacity: 0;
}

.gl-resource-post-box:hover .gl-resource-cetagory {
    background-color: var(--color-yellow);
}

.gl-equity-box {
    width: 100%;
    min-height: 364px;
    border-radius: 4px;
    background-color: #fff;
    padding: 40px 30px 40px;
    border: 1px solid var(--bg-blue);
    display: flex;
    flex-direction: column;
}

.gl-equity-box h2 {
    font-weight: var(--extra-bold);
    font-size: 30px;
    line-height: 44px;
    color: #000;
    flex-grow: 1;
}

.gl-equity-box a {
    font-weight: var(--bold);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 20px;
    color: #3b70b4;
    text-transform: uppercase;
}

.gl-equity-box a i {
    margin-left: 10px;
}

.gl-equity-box:hover {
    background-color: var(--bg-blue);
}

.gl-equity-box:hover h2 {
    color: #fff;
}

.gl-equity-box:hover a, 
.gl-equity-box:hover a i {
    color: var(--color-yellow);
}

.gl-work-category {
    display: flex;
    padding-left: 0px !important;
    margin-top: 18px !important;
    margin-bottom: 0px !important;
}

.gl-work-category li,
.gl-work-category li ul li {
    padding-left: 0px !important;
    font-weight: var(--bold);
    font-size: 14px !important;
    letter-spacing: 0.06em;
    line-height: 20px !important;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0px !important;
}

.gl-work-category > li:first-child {
    width: 70px !important;
}

.gl-work-category > li:not(first-child) {
    width: calc(100% - 70px);
}

.gl-work-category > li:not(:last-child) {
    margin-right: 17px;
    margin-bottom: 6px !important;
}

.gl-work-category li::before {
    content: none !important;
}

.gl-work-category li a {
    font-weight: var(--medium);
    color: #FFC63B !important;
    text-decoration: none !important;
}

.gl-work-category li a:hover {
    color: #fff !important;
}

.gl-work-category li ul {
    padding-left: 0px !important;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

.gl-work-category li ul li {
    margin-bottom: 9px !important;
}

.gl-work-category li ul li:not(:last-child) {
    margin-right: 9px;
}

.page-id-332 .gl-work-category li.gal-work-cetagory-economic {
    display: none;
}

.page-id-152 .gl-work-category li.gal-work-cetagory-climate {
    display: none;
}

.page-id-337 .gl-work-category li.gal-work-cetagory-transform {
    display: none;
}

.page-template-t-summer .gl-work-category, 
.page-template-t-fellowship .gl-work-category, 
.page-template-t-leadership .gl-work-category, 
.page-template-t-casa-joaquin .gl-work-category {
    margin-top: 50px !important;
    margin-bottom: 10px !important;
}

/* SUMMIT SPEAKERS PAGE CSS */
.gl-speaker {
    padding: 80px 0px;
    border-bottom: 1px solid #66B2AB;
}

.gl-speaker .sub-heading {
    margin-bottom: calc(1.5rem + 2px);
}

.gl-speaker h2 {
    font-family: var(--font-family-1);
    font-weight: var(--extra-bold);
    font-size: 40px;
    line-height: 54px;
    margin-bottom: 43px;
    color: #090808;
}

.gl-schedule {
    padding: 80px 0px 80px;
}

.gl-schedule .sub-heading {
    margin-bottom: 26px;
}

.gl-schedule h2 {
    font-family: var(--font-family-1);
    font-weight: var(--extra-bold);
    font-size: 40px;
    line-height: 54px;
    color: #090808;
    margin-bottom: 33px;
}

.gl-schedule .accordion {
    margin-bottom: 60px;
}

.gl-accordion-heading {
    padding: 19px 28px 18px 20px;
    background-color: #68B44A;
    border-radius: 4px 4px 0px 0px;
}

.gl-accordion-heading h4 {
    font-family: var(--font-family-1);
    font-weight: var(--bold);
    font-size: 24px;
    line-height: 29px;
    color: #fff;
    margin-bottom: 0px;
}

.gl-accordion-heading h4 span {
    font-weight: var(--medium);
    font-size: 18px;
    letter-spacing: 0.08em;
    color: #E9F0F0;
    float: right;
    text-transform: uppercase;
}

.gl-schedule .accordion .card {
    border: none;
    margin-top: 10px;
    background-color: #E9F0F0;
}

.gl-schedule .accordion .card .card-header {
    padding: 0px;
    border-radius: 0px;
    border: none;
    background-color: transparent;
}

.btn-ss-card-button {
    width: 100%;
    min-height: 66px;
    border: none;
    border-radius: 2px 2px 0px 0px;
    background-color: #68B44A;
    padding: 17px 30px 17px 20px;
    font-weight: var(--bold);
    font-size: 24px;
    line-height: 33px;
    text-align: left;
    color: #fff !important;
    position: relative;
    display: flex;
    align-items: start;
}

.btn-ss-card-button.collapsed {
    background-color: #E9F0F0;
    color: #090808 !important;
}

.btn.btn-ss-card-button span {
    width: 100%;
    max-width: 165px;
    display: inline-block;
    margin-right: 15px;
    font-family: var(--font-family-1);
    font-weight: var(--bold);
    font-size: 20px;
    letter-spacing: 0.08em;
    line-height: 32px;
    text-transform: uppercase;
/*    color: #090808;*/
}

.btn-ss-card-button::after {
    flex-shrink: 0;
    content: " ";
    width: 19px;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.42' height='9.882' viewBox='0 0 17.42 9.882'%3E%3Cpath id='Path_1851' data-name='Path 1851' d='M-16.916-15a1.17,1.17,0,0,0-.826,2l7.535,7.541a1.174,1.174,0,0,0,1.658,0L-1.014-13a1.17,1.17,0,0,0-.826-2Z' transform='translate(18.088 15)' fill='%23568b3e'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: right center;
    transition: transform .2s ease-in-out;
    justify-content: center;
    margin: auto 0px auto auto;
}

.btn-ss-card-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.421' height='9.882' viewBox='0 0 17.421 9.882'%3E%3Cpath id='Path_1847' data-name='Path 1847' d='M-16.916-15a1.17,1.17,0,0,0-.826,2l7.535,7.541a1.174,1.174,0,0,0,1.658,0L-1.014-13a1.17,1.17,0,0,0-.826-2Z' transform='translate(-0.668 -5.118) rotate(180)' fill='%23fff'/%3E%3C/svg%3E%0A");
    /*transform: rotate(180deg);*/
}

.gl-schedule .accordion .card .card-body {
    padding: 16px 30px 19px 20px;
}

.gl-schedule .accordion .card .card-body p {
    font-weight: var(--medium);
    font-size: 18px;
    line-height: 28px;
    max-width: 870px;
}

.gl-schedule .accordion .card .card-body p a {
    text-decoration: underline;
    color: var(--bg-light-green);
}

/* SUMMIT RESGISTRATION PAGE CSS */
.gl-summit-hotel {
    padding: 92px 0px 70px;
    position: relative;
}

.gl-summit-hotel h2 {
    font-family: var(--font-family-1);
    font-weight: var(--extra-bold);
    font-size: 36px;
    line-height: 44px;
    color: #090808;
    margin-bottom: 32px;
}

.gl-summit-hotel p {
    font-family: var(--font-family-2);
    font-weight: var(--regular);
    font-size: 22px;
    line-height: 32px;
    color: #000;
    opacity: 0.9;
    max-width: 470px;
    margin-bottom: 15px;
}

.gl-summit-margin {
    margin-top: 69px;
}

.gl-summit-hotel h6 {
    font-family: var(--font-family-1);
    font-weight: var(--bold);
    font-size: 20px;
    letter-spacing: 0.08em;
    line-height: 30px;
    color: #477d78;
    margin-bottom: 18px;
}

.gl-summit-margin p {
    margin-bottom: 17px;
}

.gl-transit-text {
    font-size: 18px !important;
    line-height: 28px !important;
}

.gl-summit-hotel p span {
    font-weight: var(--semi-bold);
}

.gl-summit-hotel a {
    font-family: var(--font-family-1);
    font-weight: var(--bold);
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 24px;
    text-transform: uppercase;
    color: #3b70b4 !important;
}

.gl-summit-hotel a i {
    margin-left: 11px;
}

.page-template-t-summit-register .grey-box-padded::before {
    background-color: #E9F0F0;
}

.page-template-t-summit-register .gl-about-summit {
    padding: 110px 0px 104px;
}

.page-template-t-summit-register .gl-about-summit .sub-heading {
    margin-bottom: calc(0.75rem + 14px);
}

.page-template-t-summit-register .gl-about-summit h2 {
    max-width: 540px;
}

.page-template-t-summit-register .gl-about-summit p {
    max-width: 470px;
}

.page-template-t-summit-register .gl-about-summit h5 {
    font-family: var(--font-family-1);
    font-weight: var(--medium);
    font-size: 22px;
    line-height: 34px;
    color: #000;
    opacity: 0.9;
    text-transform: none;
}

.page-template-t-summit-register .content ul {
    margin-top: 36px;
    padding-left: 26px;
}

.page-template-t-summit-register .content ul li {
    padding-left: 44px;
    margin-bottom: 31px;
}

.gl-summit-scholar {
    padding: 110px 0px 100px;
    position: relative;
}

.gl-summit-scholar .sub-heading {
    margin-bottom: calc(1.5rem + 2px);
}

.gl-summit-scholar h2 {
    font-family: var(--font-family-1);
    font-weight: var(--extra-bold);
    font-size: 40px;
    line-height: 54px;
    color: #090808;
    margin-bottom: 33px;
}

.gl-summit-scholar p {
    font-weight: var(--regular);
    font-size: 22px;
    line-height: 32px;
    color: #000;
    opacity: 0.9;
    max-width: 470px;
    margin-bottom: 17px;
}

.gl-summit-scholar-image {}

.gl-summit-scholar-image img {
    max-width: 660px;
    min-height: 370px;
    border-radius: 4px;
}

.gl-summit-scholar .who-we-image {
    border-radius: 8px 0px 0px 8px;
}

.page-template-t-summit-register .gl-question {
    padding: 80px 0px 191px;
    background-color: #E9F0F0;
}

.page-template-t-summit-register .gl-question .sub-heading {
    color: #477D78;
}

.page-template-t-summit-register .gl-question .sub-heading:after {
    background-color: #477D78;
}

.page-template-t-summit-register .gl-question .card {
    border: 1px solid #66B2AB;
}

.page-template-t-summit-register .gl-question .card .btn-card-button {
    background-color: #477D78;
}

.page-template-t-summit-register .gl-question .card .btn-card-button:hover {
    background-color: #477D78 !important;
}

.page-template-t-summit-register .gl-question .card .btn-card-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.421' height='9.882' viewBox='0 0 17.421 9.882'%3E%3Cpath id='Path_1851' data-name='Path 1851' d='M-16.916-15a1.17,1.17,0,0,0-.826,2l7.535,7.541a1.174,1.174,0,0,0,1.658,0L-1.014-13a1.17,1.17,0,0,0-.826-2Z' transform='translate(18.088 15)' fill='%2366b2ab'/%3E%3C/svg%3E%0A");
}

.gl-summit-registration {
    padding: 109px 0px 104px !important;
}

.gl-summit-registration .sub-heading {
    margin-bottom: calc(0.75rem + 13px) !important;
}

.gl-summit-registration p {
    color: #000000;
    margin-bottom: 25px;
}

.gl-summit-registration p strong {
    font-weight: var(--semi-bold);
}

.gl-summit-registration .gl-btn-medium {
    margin: 21px 0px 20px !important;
}

.gl-summit-registration-para p {
    max-width: 569px !important;
    font-family: var(--font-family-1);
    font-weight: var(--medium) !important;
    margin-top: -3px;
}

.gl-summit-registration ul {
    margin-top: 37px !important;
}

.gl-summit-registration ul li {
    margin-bottom: 17px !important;
}

.gl-summit-registration ul li span {
    display: block;
    font-family: var(--font-family-1);
    font-weight: var(--regular);
    font-size: 18px;
    line-height: 28px;
    color: #090808;
    max-width: 465px;
    margin-top: 2px;
}

.page-template-t-summit-home .desktop-header,
.page-template-t-summit-speaker .desktop-header,
.page-template-t-summit-register .desktop-header,
.page-template-t-summit-get-involed .desktop-header  {
    box-shadow: 0px 3px 6px rgba(9, 8, 8, 0.16)
    ;position: relative;
    z-index: 2;
}

.summit-inner-hero {
    background-image: url(/wp-content/uploads/2023/03/summit-back.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* border-top: 1px solid #919191; */
    /* box-shadow: inset 3px 1px 6px rgb(9 8 8 / 16%); */
}

.summit-inner-hero::before {
    content: none;
}

.summit-inner-hero img {
    margin-bottom: 22px;
}

.summit-inner-hero h4 {
    font-size: 26px;
    color: #090808;
}

.summit-inner-hero .gl-newsletter-box {
    border-radius: 2px;
    border: 1px solid #090808;
}

/* MEDIA QUERY CSS */
@media (min-width: 767px) {
  .cc-center {
    height: 100%;
  }
}

@media (max-width: 1560px) {
  .gl-home-academy::before {
    width: 96%;
  }

  .gl-home-summit::after,
  .gl-home-summit::before {
      width: calc(100% - 44px);
  }

  .gl-home-summit-image {
    width: 46%;
    right: 4%;
  }

  .hero-image {
    width: 39.495%;
  }

/*   .image-to-right {
    max-width: 100% !important;
    position: relative !important;
    border-radius: 8px !important;
    right: -20px !important;
  } */

  .gl-below-hero-image {
    width: 46%;
    right: 50px;
    border-radius: 8px;
  }

/*   .who-we-image {
    width: 46% !important;
  } */
}

@media (max-width: 1430px) {
    .gl-summit-scholar-image img {
        max-width: 100%;
        min-height: auto;
    }
}

@media (max-width: 1380px) {
  .hero-image {
    width: 40%;
  }

  .single-event-image {
    margin-right: -40px;
  }

  .newsletter-box-holder {
    max-width: 1200px;
    padding: 32px 61px 36px 59px;
  }

  .video-box {
    margin-right: -40px;
  }
}

@media (max-width: 1300px) {
  .gl-home-academy::before {
    width: 100%;
    left: 15px;
    right: auto;
  }

  .gl-home-summit-image {
    width: 50%;
    right: 15px;
  }
}

@media (max-width: 1280px) {
  .single-event-image {
    margin-right: 0px;
  }

  .video-box {
    margin-right: 0px;
  }

  .grey-box-padded::before,
  .gl-summit-featured::before {
    width: calc(100% - 30px);
    left: 15px;
  }

  .gl-summit-featured .gl-carousel {
    padding-right: 0px;
  }

  .gl-home-below::before {
    width: calc(100% - 30px);
    left: 15px;
  }

  .below-home-before-image {
    left: 15px;
  }
  
  .testimonails-container::after {
     right: 15px;
  }
}

@media (max-width: 1205px) {
  .contact-info li {
    width: 46.65%;
  }

  .contact-info li:nth-child(2n) {
    padding-left: 15px;
  }

  .grey-box-padded::before,
  .gl-summit-featured::before {
    width: 100%;
    left: 0px;
  }

  .gl-home-below::before {
    width: 100%;
    left: 0px;
  }

  .below-home-before-image {
    left: 0px;
  }

  .swiper-button-next {
    left: -25px;
  }
}

@media (max-width: 1200px) {
  .testimonails-container::after {
    content: none;
  }

  .gl-home-academy::before {
    left: 0;
  }

  .gl-home-summit-image {
    width: 50%;
    right: 15px;
  }
}

@media (max-width: 1100px) {
  .form-box {
    padding: 5px 5px 5px 0px;
  }
}

@media (max-width: 1070px) {
  .main-menu li:not(:last-child) {
    margin-right: 25px;
  }

  .form-inline .form-control {
    max-width: 160px;
  }

  .gl-home-summit-image {
    width: 48.5%;
  }
}

@media (max-width: 992px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: block;
  }

  .home-hero {
    padding: 100px 0px;
  }

  .home-hero h1 {
    font-size: 60px;
    line-height: 83px;
  }

  .home-hero h1 span:not(:last-child) {
    margin-bottom: 15px;
  }

  .home-hero h1 span {
    padding: 0px 20px 0px 20px;
  }

  .gl-home-below {
    padding: 70px 0px;
  }

  .gl-home-below::before {
    height: 100%;
  }

  .below-home-before-image {
    width: 100%;
    height: calc(100% - 300px);
    top: 0px;
    border-radius: 0px;
  }

  .below-home-content {
    padding-bottom: 40px;
  }

  .gl-home-below h2, .gl-home-academy h2 {
    font-size: 64px;
    line-height: 76px;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .gl-home-below h5 {
    margin-bottom: 15px;
  }

  .gl-home-below p {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .gl-home-below-images {
    max-width: 522px;
    margin: 0px auto;
  }

  .gl-home-below-images .below-home-image:not(:last-child) {
    margin-bottom: 30px;
  }

  .gl-home-latest {
    padding: 70px 0px;
  }

  .gl-home-latest h2 {
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 25px;
  }

  .gl-home-latest .sub-heading {
    margin-bottom: calc(1rem + 4px);
  }

  .category-posts .post .featured-image img {
    max-width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
  }

  .gl-home-latest .category-posts .post .title-holder {
    min-height: 120px;
  }

  .category-posts .three-posts .post-title {
    font-size: 24px;
  }

  .gl-home-academy {
    padding: 70px 0px 80px;
  }

  .home-academy-content {
    padding-bottom: 40px;
  }

  .gl-home-academy p {
    font-size: 20px;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .video-box {
    margin: 0px auto;
  }

  .gl-home-work {
    padding: 70px 0px 90px;
  }

  .gl-home-work h2 {
    font-size: 34px;
    line-height: 48px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .gl-home-work p {
    max-width: 100%;
  }

  .swiper-slide {
    max-width: 570px;
  }

  .swiper-slide .work-post {
    width: 100%;
  }

  .gl-home-summit {
    padding: 70px 0px;
  }

  .gl-home-summit-image {
    width: 100%;
    position: relative;
    border-radius: 0px 0px 4px 4px;
  }

  .gl-home-summit::after,
  .gl-home-summit::before {
    width: 98.5%;
    height: calc(100% - 300px);
    left: auto;
    right: 15px;
  }

  .gl-home-summit h2 {
    font-size: 48px;
    line-height: 54px;
    max-width: 98.5%;
    margin-bottom: 20px;
  }

  .gl-home-summit h2 span::before {
    height: 15px;
  }

  .gl-home-summit h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .gl-home-summit p {
    max-width: 98.5%;
    margin-bottom: 30px;
  }

  .gl-home-summit .btn-black {
      
  }

  .hero, .hero.single-hero {
    padding: 80px 0px !important;
  }

  .sub-heading {
    margin-bottom: calc(1rem + 4px) !important;
  }

  .hero h1 {
    font-size: 56px;
    line-height: 66px;
    margin-bottom: calc(1rem + 6px) !important;
  }

  .hero p {
    max-width: 100% !important;
    font-size: 20px;
    line-height: 30px;
  }

  .line-heading {
    max-width: 100% !important;
    font-size: 50px !important;
    line-height: 60px !important;
  }

  .single-event-image {
    margin: 40px auto 0px;
  }

  .grey-box-padded {
    padding: 80px 0px 40px !important;
  }

  .grey-box-padded h2 {
    font-size: 34px !important;
    line-height: 48px !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
  }

  .grey-box-padded p {
    font-size: 20px;
    line-height: 30px;
    max-width: 100% !important;
  }

  .grey-box-padded .single-event-image {
    margin: 0px auto 40px;
  }

  .grey-box-padded span,
  .white-box-padded span {
    font-size: 20px !important;
    line-height: 30px !important;
    margin-bottom: 15px !important;
  }

  .content ul {
    margin-top: 25px !important;
    padding-left: 15px !important;
    margin-bottom: 25px !important;
  }

  .grey-box-padded ul li {
    max-width: 100% !important;
    padding-left: 30px !important;
    margin-bottom: 20px !important;
    font-size: 18px;
    line-height: 26px;
  }

  .content ul li::before {
    font-size: 26px;
    line-height: 30px;
  }

  .white-box-padded {
    padding: 70px 0px 70px !important;
  }

  .who-we h2 {
    font-size: 34px;
    line-height: 48px;
    margin-bottom: 15px;
  }

  .who-we p {
    font-size: 20px;
    line-height: 30px;
  }

  .who-we-image {
    display: none;
  }

  .we-are-box {
    margin-top: 30px;
  }

  .we-are-box p {
    max-width: 100%;
  }

  .gl-our-work {
    padding: 70px 0px 160px;
    margin-bottom: -125px;
  }

  .gl-our-work h2 {
    font-size: 34px;
    line-height: 48px;
    margin-bottom: 30px;
  }

  .gl-our-work-box {
    min-height: 321px !important;
  }

  .gl-our-work-box h3 br {
    display: none;
  }

  .plain-heading {
    margin: 15px 0px 25px !important;
  }

  .gl-plain {
    max-width: 100%;
    min-height: auto;
    margin-bottom: 30px;
  }

  .gl-plain h4 {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 10px;
  }

  .gl-resource-post-box {
    margin-bottom: 30px;
  }

  .gl-below-hero {
    padding: 70px 0px 20px !important;
  }

  .gl-below-hero-content h2 {
    font-size: 34px;
    line-height: 48px !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
  }

  .gl-below-hero-content p {
    font-size: 20px;
    line-height: 30px;
    max-width: 100% !important;
    margin-bottom: 30px;
  }

  .gl-donate-box p, .gl-donate-box p span {
    max-width: 100%;
    margin-bottom: 15px;
    flex-grow: 0;
  }

  .gl-donate-boxes {
    padding: 50px 0px 50px;
  }

  .gl-donate-boxes::before {
    bottom: -125px;
    min-height: 500px;
  }

  .contact-info {
    margin: 30px 0px 0px;
  }

  .contact-info li {
    width: 49.65%;
  }

  .contact-info li:not(:last-child) {
    margin-bottom: 28px;
  }

  .contact-info li:nth-child(2n) {
    padding-left: 0px;
  }

  .contact-info li span {
    max-width: 230px;
  }

  .contact-info li h5 {
    margin-bottom: 6px;
  }

  .page-id-26 .hero {
    padding-bottom: 0px !important;
  }

  .hero-image {
    width: 100%;
    position: relative;
    top: 0px;
    right: 0px;
/*    max-width: 660px;*/
    margin: 40px auto 0px;
    border-radius: 0px;
    min-height: 400px;
  }

  .wp-block-buttons>.wp-block-button.wp-block-button__width-50,
  .wp-block-buttons>.wp-block-button.wp-block-button__width-75 {
    width: 100%;
  }

  .btn-green {
    margin: 25px 0px 0px;
  }

  .register-box {
    margin: 25px auto;
  }

  .room-box {
    margin-bottom: 30px;
  }

  .room-box-content {
    margin-bottom: 40px;
  }

  .room-box-content p {
    margin-bottom: 25px;
    margin-top: 20px;
  }

  .gl-room-below-content {
    margin-top: 40px;
    margin-bottom: 0px;
  }

  .gl-room-below-content h2 {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 20px;
  }

  .gl-room-below-content p {
    font-size: 20px;
    line-height: 30px;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .career-hero-image {
    margin: 30px auto 0px;
  }

  .testimonails {
    margin-left: 15px;
    min-height: auto !important;
  }

  .testimonails .carousel-warper {
    padding: 42px 0px 40px 40px !important;
    max-width: 100% !important;
    min-height: 370px;
  }

  .carousel-control-next, .carousel-control-prev {
    bottom: -45px;
  }

  .jobs {
    margin-top: 35px;
    margin-bottom: 35px !important;
  }

  .job-opening-box {}

  .issue-hero h1.gl-event-title, .hero.wh h1.gl-event-title {
    font-size: 50px;
    line-height: 60px !important;
    min-height: auto !important;
    max-width: 100% !important;
  }

  .swi:before {
    width: 100% !important;
    max-width: 660px;
    top: 0px !important;
    background-size: cover !important;
    margin: 0px auto;
    left: 0px !important;
  }

  .swi {
    max-width: 650px;
    min-height: 280px;
    margin: 40px auto 0px;
  }

  .work-post-content {
    padding-bottom: 0px;
  }

  .work-post-content .alignfull {
    margin: 0px;
    padding: 50px 0px 50px;
    margin-bottom: 30px;
  }

  .work-post-content h2 {
    font-size: 34px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .work-post-content p {
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
  }

  body .is-layout-flex {
    display: block !important;
  }

  .image-to-right {
    display: none !important;
  }

  .work-post-content p,
  .work-post-content h6,
  .work-post-content h2,
  .work-post-content ol,
  .work-post-content ul,
  .work-post-content figure {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }

  .work-post.style-blue {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
  }

  .work-post.style-blue p {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .work-img {
    max-width: 650px;
    min-height: 300px;
    margin: 40px auto 0px;
  }

  .work-img:before {
    width: 100% !important;
    max-width: 660px;
    top: 0px !important;
    background-size: cover !important;
    margin: 0px auto;
    left: 0px !important;
  }

  .page-template-t-program .wp-block-group {
    margin-bottom: 50px !important;
  }

  .content ul li {
    font-size: 18px;
    line-height: 26px;
    padding-left: 30px;
    margin-bottom: 20px;
  }

  .wp-block-separator {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }

  .work-post-content .wp-block-spacer {
    height: 1px !important;
  }

  .content ol li {
    padding-left: 15px;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  .gl-team-category {
    margin: 25px 0px 0px;
  }

  .gl-team-member {
    padding: 70px 0px 6px;
  }

  .modal-dialog {
/*     margin: 40px 0px 40px 17px; */
    margin: 40px 10px;
  }

  .modal-dialog .modal-body {
    padding: 40px 40px 50px;
  }

  .gl-modal-margin {
    margin-bottom: 30px;
  }

  .cateory span {
    font-size: 14px !important;
    line-height: 11px !important;
    margin-right: 10px;
  }

  .gl-latest-annual-post {
    padding: 70px 0px 40px;
  }

  .gl-latest-annual-post::before {
    min-height: 500px;
    bottom: -125px;
  }

  .gl-annual-box {
    margin-bottom: 30px;
  }

  .gl-resource-posts {
    padding: 70px 0px 0px;
  }

  .gl-publicate {
    padding-bottom: 50px;
  }

  .gl-equity-box {
    min-height: 330px;
    margin-bottom: 30px;
  }

  .gl-sponsor-box {
    margin-bottom: 30px;
  }

  .gl-form-box {
    margin: 40px auto 0px;
  }

  .coalition-logo.content {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }

  .gl-video-section .video-box {
    margin: 0px auto !important;
  }

  .gl-our-program {
    padding: 70px 0px 40px;
  }

  .gl-our-program .we-are-box {
    min-height: 321px;
    margin-bottom: 30px;
  }

  .gl-our-program .we-are-box p {
    max-width: 100%;
  }

  .gl-below-hero {
    padding: 90px 0px 101px;
  }

  .gl-gallery {
    padding-bottom: 70px;
  }

  .gl-gallery ul {
    margin-bottom: 40px;
  }

  .gl-gallery ul li {
    width: calc(25% - 6px);
  }

  .gl-gallery ul li:not(:last-child) {
    margin-right: 4px;
  }

  .gl-gallery h2 {
    font-size: 34px;
    line-height: 48px !important;
    margin-bottom: 20px;
    max-width: 100% !important;
  }

  .gl-gallery p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
  }

  .board-content h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .gl-question {
    padding: 70px 0px 170px;
    margin-bottom: -125px;
  }

  .btn-card-button span {
    max-width: 600px;
  }

  .gl-casa-history p {
    font-size: 20px;
    line-height: 30px;
  }

  /*.coalition-logo.content img {
    max-width: 200px;
  }*/

  .summit-hero {
    padding: 80px 0px;
  }

  .summit-hero img {
    margin: 0px auto 40px;
    display: block;
  }

  .summit-hero h4 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
  }

  .gl-newsletter-box {
    margin: 0px auto;
  }

  .gl-about-summit h2 {
    max-width: 100%;
  }

  .gl-about-summit .video-box {
    margin-top: 30px;
  }

  .gl-summit-number {
    padding: 50px 0px 30px;
  }

  .gl-number-box {
    margin: 0px auto 25px;
  }

  .gl-summit-featured {
    padding: 70px 0px 90px;
  }

.gl-summit-featured h2 {
    font-size: 36px;
    line-height: 50px;
  }

  .gl-summit-featured .gl-carousel {
    padding-top: 40px;
  }

  .gl-summit-featured .swiper-button-next {
    left: -38px;
  }

  .gl-home-summit-boxes {
    padding: 80px 0px 60px;
  }

  .gl-testimonail-box {
    margin: 0px auto;
  }

  .gl-previous-summit {
    padding-bottom: 40px;
  }

  .gl-previous-summit .gl-annual-box {
    margin-bottom: 30px;
  }

  .gl-become {
    padding: 70px 0px 90px !important;
  }

  .gl-become::before {
    height: calc(100% - 50px);
  }

  .single-post .single-hero {
    min-height: 350px;
  }

  .single-post .post-section {
    padding-bottom: 80px;
  }

  .single-post .post-body {
    padding: 30px 30px !important;
  }

  .single-post .post-title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 25px;
  }

  .single-post .categories {
    margin-bottom: 30px;
  }

  .post-meta.text-uppercase {}

  .right-float-area {
    margin-left: 30px;
    margin-bottom: 30px;
  }

  .single-post .gl-fellows {
    margin: 0px -30px 0px auto;
  }

  .post-content p {
    font-size: 20px;
    line-height: 30px;
  }
        
  .post-content ul {
    padding-right: 25px !important;
    padding-left: 15px;
  }

  .post-content ul li {
    font-size: 18px;
    line-height: 26px;
    padding-left: 30px;
    margin-bottom: 20px;
  }

  .post-content ul li ul {
    padding: 0px !important;
    margin-top: 15px !important;
    margin-bottom: 30px !important;
  }

  .post-content .modal-social-icon {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .post-content .modal-social-icon li {
    padding-left: 0px !important;
  }

  .wp-block-quote, blockquote {
    margin: 30px 0px 30px 15px;
  }

  .wp-block-quote p, blockquote h5 {
    font-size: 26px !important;
  }

  .button-sticky-right {
    width: calc(100% + 30px);
    margin: 0px -30px 40px auto;
  }

  .modal-dialog .modal-body p {
    font-size: 20px;
    line-height: 30px;
  }

  .content ul.gl-work-category {
    padding-left: 0px !important;
    margin-top: 18px !important;
    margin-bottom: 0px !important;
  }

  .page-template-t-summit-speaker .gl-newsletter-box {
    margin: 25px auto 0px;
  }

  .below-menu {
    max-width: 100%;
  }

  .below-menu li:not(:last-child) {
    margin-right: 40px;
  }

  .gl-speaker {
    padding: 60px 0px 40px;
  }
  
  .gl-speaker .sub-heading {
    margin-bottom: calc(1rem + 2px) !important;
  }
  
  .gl-speaker h2 {
    font-size: 34px;
    line-height: 48px;
    margin-bottom: 30px;
  }
  
  .gl-schedule {
    padding: 60px 0px 40px;
  }
  
  .gl-schedule .sub-heading {
    margin-bottom: 20px;
  }
  
  .gl-schedule h2 {
    font-size: 34px;
    line-height: 48px;
    margin-bottom: 25px;
  }
  
  .btn-ss-card-button {
    font-size: 22px;
  }
  
  .gl-schedule .accordion {
    margin-bottom: 40px;
  }

  .gl-summit-hotel {
    padding: 70px 0px 20px !important;
  }

  .gl-summit-hotel h2 {
    font-size: 34px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .gl-summit-hotel p {
    font-size: 20px;
    line-height: 30px;
    max-width: 100% !important;
    margin-bottom: 16px;
  }

  .gl-summit-margin {
    margin-top: 0px;
  }

  .gl-summit-hotel h6 {
    margin-bottom: 16px;
    margin-top: 25px;
    line-height: 28px;
  }

  .gl-summit-hotel a {}

  .gl-summit-scholar {
    padding: 70px 0px 60px;
  }

  .gl-summit-scholar h2 {
    font-size: 34px;
    line-height: 48px;
    margin-bottom: 20px;
    max-width: 100% !important;
  }

  .gl-summit-scholar p {
    font-size: 20px;
    line-height: 30px;
    max-width: 100% !important;
    margin-bottom: 10px;
  }

  .gl-summit-scholar-image img {
    max-width: 500px;
    margin: 20px auto 20px;
    display: block;
  }

  .page-template-t-summit-register .gl-question {
    padding: 70px 0px 170px;
  }

  .gl-summit-registration p {
    margin-bottom: 15px;
  }

  .gl-summit-registration .gl-btn-medium {
    margin: 15px 0px 35px !important;
  }

  .gl-summit-registration-para p {
    margin-top: 0px;
  }

  .gl-summit-registration ul li {}

  .gl-summit-registration ul li span {
    max-width: 100%;
  }

  .newsletter-box-holder {
    max-width: 97%;
    padding: 32px 40px 36px 40px;
  }

  .newsletter-box-holder h2 {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .form-box {
    max-width: 100%;
    padding: 5px 5px 5px 8px;
  }

  .form-inline .form-control {
    max-width: 187px;
    margin-right: auto;
  }

  .main-footer {
    padding: 125px 0px 50px;
  }

  .main-footer img {
    display: block;
    margin: 0px auto 50px;
  }

  .footer-link {
    text-align: center;
    margin: 0px auto 40px;
  }

  .social-link {
    text-align: center;
  }

  .gl-copyright-text {
    text-align: center;
    margin-bottom: 15px;
  }

  .gl-copyright a {
    text-align: center;
    margin: 0px auto;
  }
}

@media (max-width: 767px) {
  .cc-center {
    position: absolute;
    width: 100%;
    top: calc(50% + 60px);
    left: 50%;
    transform: translate(-50%, calc(-50% - 50px));
  }

  .home-hero {
    padding: 90px 0px;
    min-height: 654px;
  }

  .home-hero h1 {
    font-size: 52px;
    line-height: 69px;
  }

  .home-hero h1 span:not(:last-child) {
    margin-bottom: 14px;
  }

  .home-bar {
    padding: 17px 0px 17px;
    margin-bottom: 21px;
  }

  .home-bar p {
    font-size: 18px;
    line-height: 27px;
  }

  .gl-home-below {
    padding: 58px 0px 20px;
  }

  .below-home-content {
    padding: 0px 21px 40px;
  }

  .gl-home-below .sub-heading {
    margin-bottom: 12px !important;
  }

  .gl-home-below h2 {
    font-size: 53px;
    line-height: 60px;
    margin-bottom: 32px;
  }

  .gl-home-below h2 span::before, 
  .gl-home-academy h2 span::before {
    height: 15px;
    bottom: 6px;
  }

  .gl-home-below h5 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 36px;
  }

  .gl-home-below p {
    margin-bottom: 49px;
  }

  .btn-black {
    max-width: 100%;
  }

  .gl-home-below-images {
    padding: 0px 15px;
    display: none;
  }

  .below-home-before-image {
    height: 100%;
  }

  .gl-home-latest {
    padding: 58px 21px;
  }

  .gl-home-latest h2 {
    font-size: 32px;
    line-height: 44px;
  }

  .view-all-link {
    margin-bottom: 20px;
    display: block;
    width: max-content;
/*     display: none; */
  }

  .category-posts .three-posts .post-title {
    font-size: 22px;
  }

  .gl-home-latest .sub-heading {
    margin-bottom: 16px !important;
  }

  .gl-home-latest .category-posts .three-posts .featured-image {
    max-height: 172px;
    margin-bottom: 26px;
  }

  .gl-home-latest .category-posts .post .title-holder .post-title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 18px;
  }

  .gl-home-latest .category-posts .post .title-holder {
    min-height: auto;
  }

  .post-column {
    margin-bottom: 20px;
  }

  .gl-home-latest .post-column {
    margin-bottom: 40px;
  }

  .gl-home-academy {
    padding: 58px 0px 70px;
  }

  .gl-home-academy::before {
    width: 100%;
    height: 100%;
    left: 0px;
    border-radius: 0px;
  }

  .home-academy-content {
    padding: 0px 21px 40px;
  }

  .home-academy-content .sub-heading {
    margin-bottom: 16px !important;
  }

  .gl-home-academy h2 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 30px;
  } 

  .video-box {
    max-width: 100%;
/*    margin: 0px 15px;*/
  }

  .video-link {
    box-shadow: 6px 6px 0px 0px #ffffff !important;
  }

  .video-link img {
    min-height: auto !important;
  }

  .video-link:before {
    font-size: 40px;
    line-height: 40px;
  }

  .gl-home-academy p {
    font-size: 18px;
    line-height: 28px;
  }

  .btn-white {
    max-width: 100% !important;
  }

  .gl-home-work {
    padding: 60px 21px 140px;
  }

  .gl-home-work h2 {
    font-size: 46px;
    line-height: 54px;
  }

  .gl-carousel {
    padding-left: 0px;
    padding-top: 55px;
  }

  .swiper-button-next {
    display: none;
  }

  .work-post {
    padding: 30px 20px 30px;
  }

  .work-post-title {
    font-size: 34px;
    line-height: 44px;
  }

  .gl-home-summit {
    padding: 60px 21px;
    margin-bottom: 20px;
  }

  .gl-home-summit::after, 
  .gl-home-summit::before {
    width: 100%;
    height: 100%;
    left: 0px;
    border-radius: 0px;
  }

  .gl-home-summit h2 {
    font-size: 44px;
    line-height: 50px;
    max-width: 100%;
  }

  .gl-home-summit p {
    max-width: 100%;
  }

  .gl-home-summit-image {
    width: calc(100% + 12px);
    min-height: 300px;
    right: 6px;
    margin-top: 40px;
  }

  .hero, .hero.single-hero {
    padding: 50px 0px !important;
    background-size: cover;
  }

  .gl-hero-content {
    padding: 0px 21px;
  }

  .gl-home-fsi {
    margin: 0px auto 50px;
}

  .sub-heading {
    margin-bottom: 15px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 54px;
    margin-bottom: calc(1rem + 2px);
  }

  .hero p {
    font-size: 18px;
    line-height: 28px;
  }

  .line-heading {
    font-size: 44px !important;
    line-height: 54px !important;
  }

  .single-event-image {
    margin: 30px auto 0px;
  }

  .hero .single-event-image {
    margin: 30px 21px 0px;
  }

  .single-event-image img {
    min-height: auto !important;
  }

  .grey-box-padded {
    padding: 70px 21px 40px !important;
  }

  .grey-box-padded::before {
    height: 100%;
    border-radius: 0px; 
  }

  .grey-box-padded h2 {
    font-size: 30px !important;
    line-height: 40px !important;
  }

  .grey-box-padded p {
    font-size: 18px;
    line-height: 28px;
  }

  .grey-box-padded span,
  .white-box-padded span {
    font-size: 18px !important;
    line-height: 32px !important;
  }

  .category-posts .two-posts .post .featured-image {
    height: auto;
}

  .content ul {
    margin-top: 20px !important;
    padding-left: 10px !important;
    margin-bottom: 20px !important;
  }

  .grey-box-padded ul li {
    padding-left: 25px !important;
    margin-bottom: 15px !important;
    font-size: 16px;
  }

  .white-box-padded {
    padding: 60px 21px 60px !important;
  }

  .who-we h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .who-we p {
    font-size: 18px;
    line-height: 28px;
  }

  .we-are-box {
    padding: 25px 20px 25px !important;
    margin-top: 35px;
  }

  .gl-our-work {
    padding: 60px 21px 40px;
    margin-bottom: 0px;
  }

  .gl-our-work h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 25px;
  }

  .gl-our-work-box {
    padding: 30px 20px 29px;
    margin-bottom: 25px;
  }

  .gl-our-work-box h3 {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .gl-our-work-box p {
    font-size: 16px;
    line-height: 24px;
  }

  .we-are-box p {
    font-size: 16px;
    line-height: 24px;
  }

  .plain-heading {
    margin: 10px 0px 20px !important;
  }
  
  .gl-casa-history .video-box {
    margin-bottom: 25px;
    margin-top: 10px;
  }

  .gl-plain {
    margin-bottom: 25px;
  }

  .gl-plain h4 {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 7px;
  }

  .gl-plain p {
    font-size: 16px;
    line-height: 24px;
  }

  .gl-resource-post-box {
    min-height: 400px;
    padding: 30px 20px 30px;
    margin-bottom: 25px;
  }

  .resource-post-title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
    max-width: 100%;
  }

  .gl-resource-cetagory {
    margin-bottom: 20px;
  }

  .resource-post-meta span {
    display: block;
    margin-bottom: 4px;
  }

  .author {
    margin-right: 0px;
  }

  .gl-form-box {
    margin: 20px auto 0px;
  }

  .gl-below-hero {
    padding: 60px 0px 20px !important;
  }

  .gl-below-hero-content h2 {
    font-size: 30px;
    line-height: 40px !important;
  }

  .gl-below-hero-content p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 25px;
  }

  .gl-donate-boxes {
    padding: 40px 0px;
  }

  .gl-donate-box {
    padding: 20px 20px 30px;
    margin-bottom: 25px;
  }

  .heacding-icon-box h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .icon-box {
    width: 60px;
    height: 60px;
  }

  .icon-box img {
    max-width: 30px !important;
  }

  .gl-donate-box p {
    font-size: 16px;
    line-height: 26px;
  }

  .contact-info {
  }

  .contact-info li {
    display: block;
    width: 100%;
  }

  .contact-info li h5 {
    font-size: 16px;
    line-height: 28px;
  }

  .contact-info li a {
    font-size: 16px;
  }

  .contact-info li:not(:last-child) {
    margin-bottom: 20px !important;
  }

  .contact-info li:nth-last-child(2) {
  }

  .contact-info li span {
    font-size: 16px;
  }

  .gl-form {
    padding: 16px 20px 30px;
  }

  .col-6-input {
    width: 100%;
    margin-left: 0px !important;
  }

  .gl-form h2 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 15px;
  }

  .gl-form-group label {
    margin-bottom: 8px;
  }

  .btn-contact {
    font-size: 20px;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
    min-height: 400px;
    margin: 40px auto 0px;
  }

  .hero .wp-block-spacer {
    height: 20px !important;
  }

  .register-box {
    margin: 20px auto !important;
    padding: 20px 20px 30px;
  }

  .room-box {
    padding: 25px 20px 30px;
  }

  .room-box-content ul li {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 15px;
  }

  .btn-green {
    max-width: 100% !important;
  }

  .room-box-content .btn-green {
    margin: 15px 0px 0px;
  }

  .gl-room-below-content {
    margin-top: 10px;
  }

  .room-box-content h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .room-box-content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0px;
    margin-top: 10px;
  }

  .gallery {
    gap: 10px;
  }

  .gallery__main-image img {
    min-height: auto;
  }

  .gallery__images {
    gap: 8px;
  }

  .gallery__images img {
    height: 100%;
  }

  .gl-room-below-content h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .gl-room-below-content p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }

  .career-hero-image {
    margin: 25px 21px 0px;
  }

  .career-hero-image img {
    min-height: auto;
  }

  .testimonails .carousel-warper {
    min-height: 580px;
    padding: 25px 0px 25px 10px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .testimonails p {
    font-size: 18px !important;
    line-height: 28px !important;
    margin-bottom: 15px;
  }

  .testimonails .media-body h4 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .testimonails .media-body span {
    font-size: 16px !important;
    line-height: 20px !important;
  }

  .job-opening-box {
    padding: 20px 20px 30px;
    margin-bottom: 25px;
  }

  .job-opening-box .job-title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .job-opening-box .job-location {
    font-size: 16px;
  }

  .job-opening-box .apply-btn {
    min-width: 100%;
    margin-top: 20px;
  }

  .issue-hero h1.gl-event-title, 
  .hero.wh h1.gl-event-title {
    font-size: 44px;
    line-height: 54px !important;
  }

  .swi {
    margin: 20px 36px 0px;
  }

  .work-post-content p, 
  .work-post-content h6, 
  .work-post-content h2,
  .work-post-content ol,
  .work-post-content ul,
  .work-post-content figure {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }

  .work-post-content h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .work-post-content h6 {
    margin-bottom: 15px;
  }

  .work-post-content p {
    font-size: 18px;
    line-height: 28px;
  }

  .half-grey {
    margin-bottom: 0px;
  }

  .work-img {
    margin: 20px 36px 0px;
  }

  .content ul li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
  }

  .content ol {
    padding-left: 30px;
    margin-bottom: 25px;
  }

  .content ol li {
    font-size: 16px;
    line-height: 24px;
    padding-left: 12px;
    margin-bottom: 15px;
  }

  .gl-team-member {
    padding: 60px 0px 6px;
  }

  .gl-fellows {
    margin-bottom: 25px;
  }

  .gl-fellows img {
    min-height: 300px;
  }
        
  .gl-fellow-image {
    min-height: 300px;
  }

  .gl-fellows .card-body {
    min-height: 180px;
    padding: 15px 20px 20px;
  }

  .fellow-title,
  .post-content .modal-dialog .modal-body .fellow-title {
    font-size: 24px;
    line-height: 30px;
  }

  .fellow-bio,
  .post-content .modal-dialog .modal-body .fellow-bio {
    font-size: 16px;
    line-height: 20px;
  }

  .modal-dialog .modal-body {
    padding: 30px 20px 40px;
  }

  .gl-modal-margin {
    margin-bottom: 20px;
  }

  .modal-social-icon li:not(:last-child) {
    margin-right: 8px;
  }

  .modal-social-icon li a {
    font-size: 18px;
    line-height: 24px;
  }

  .cateory {
    margin-top: 25px;
  }

  .cateory span {
    height: 26px;
    font-size: 14px !important;
    line-height: 19px !important;
    margin-bottom: 6px !important;
    margin-right: 6px;
    display: inline-block;
  }

  .gl-latest-annual-post {
    padding: 60px 0px 35px;
  }

  .gl-annual-box {
    padding: 30px 20px 30px;
  }

  .gl-annual-box h5 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
  }

  .gl-annual-box h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .gl-resource-posts {
    padding: 60px 0px 0px;
  }

  .gl-publicate {
    padding-bottom: 40px;
  }

  .gl-equity-box {
    padding: 30px 20px 30px;
    margin-bottom: 25px;
  }

  .gl-equity-box h2 {
    line-height: 40px;
  }

  .gl-sponsor-box {
   
    max-width: 90%;
    margin: 0 auto;
     margin-bottom: 20px;
  }

  .gl-sponsor-box h4 {
    font-size: 22px;
    line-height: 30px;
    margin: 0px;
  }

  .coalition-logo.content {
    margin: 60px 36px 10px !important;
  }

  .coalition-logo.content img {
    max-width: 200px;
    display: block;
    margin: 0px auto 20px;
  }

  .gl-our-program .we-are-box h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .gl-our-program {
    padding: 60px 0px 40px;
  }

  .gl-below-hero-content {
    padding: 0px 21px;
  }

  .gl-gallery {
    padding-bottom: 35px;
  }

  .gl-gallery ul {
    margin-bottom: 30px;
  }

  .gl-gallery ul li {
    width: 100%;
  }

  .gl-gallery ul li:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 8px;
  }

  .gl-gallery h2 {
    font-size: 30px;
    line-height: 40px !important;
    margin: 0px 21px 15px;
  }

  .gl-gallery p {
    font-size: 18px;
    line-height: 28px;
    margin: 0px 21px 20px;
  }

  .board-content {
    max-width: 100%;
    margin: 0px 21px 25px;
  }

  .board-content h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 8px;
  }

  .board-content h5 {
    font-size: 16px;
    margin-bottom: 6px;
    line-height: 20px;
  }

  .board-content p {
    font-size: 16px !important;
    line-height: 20px !important;
    margin: 0px !important;
  }

  .gl-question {
    padding: 60px 21px 40px;
    margin-bottom: 0px;
  }

  .btn-card-button {
    padding: 15px;
    font-size: 18px;
    line-height: 28px;
  }

  .btn-card-button span {
    margin-right: 15px;
  }

  .gl-question .card .card-body p {
    font-size: 16px;
    line-height: 26px;
  }

  .gl-question .card .card-body {
    padding: 15px;
  }

  .gl-question .card .card-body.content ul li {
    font-size: 16px;
    line-height: 24px;
    padding-left: 25px;
  }

  .gl-question .card .card-body.content ul li::before {
    font-size: 22px;
    line-height: 26px;
  }

  .gl-casa-history p {
    font-size: 18px;
    line-height: 28px;
  }

  .summit-hero {
    padding: 68px 0px 0px;
  }

  .summit-hero .col-lg-6:last-child {
    padding: 0px;
  }

  .summit-hero img {
    max-width: 100%;
    margin: 0px auto 35px;
  }

  .summit-hero-content {
    padding: 0px 20px 43px 21px;
  }

  .summit-hero h4 {
    font-size: 21px;
    margin-bottom: 0px;
  }

  .gl-newsletter-box {
    max-width: 100%;
    border-radius: 0px;
    padding: 27px 36px 47px;
  }

  .gl-newsletter-box h2 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 14px;
  }

  .gl-newsletter-box p {
    font-size: 18px;
    margin-bottom: 27px !important;
  }

  .summit-inner-hero .gl-newsletter-box {
    border-radius: 0px;
    border: none;
  }

  .gl-about-summit {
    padding: 58px 21px 60px !important;
  }

  .gl-about-summit .sub-heading {
    margin-bottom: 16px !important;
  }

  .gl-about-summit h2 {
    margin-bottom: 28px !important;
  }

  .grey-box-padded h2 {
    font-size: 32px !important;
    line-height: 44px !important;
  }

  .gl-about-summit p {
    line-height: 26px;
  }

  .gl-about-summit .video-box {
    margin: 24px 0px 0px;
  }

  .gl-summit-number {
    padding: 50px 20px 15px 21px;
  }

  .gl-number-box h2 {
    font-size: 50px;
    line-height: 39px;
    margin-bottom: 15px;
  }

  .gl-number-box h4 {
    font-size: 24px;
    line-height: 30px;
  }

  .gl-number-box {
    min-height: auto;
    margin: 0px auto 35px;
  }

  .gl-summit-featured {
    padding: 88px 21px 82px;
  }

  .gl-summit-featured .sub-heading {
    margin-bottom: 16px !important;
  }

  .gl-summit-featured h2 {
    font-size: 32px;
    line-height: 44px;
  }

  .gl-summit-featured .gl-carousel {
    padding-left: 0px;
    padding-top: 28px;
  }

  .fellow-swiper .gl-fellows .card-body {
    min-height: 168px;
    padding: 28px 30px 10px;
  }

  .fellow-swiper .gl-fellows .card-body .fellow-title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 16px;
  }

  .fellow-swiper .gl-fellows .card-body .fellow-bio {
      font-size: 18px;
    line-height: 22px;
  }

  .gl-home-summit-boxes {
    padding: 60px 1px 40px;
  }

  .gl-home-summit-box {
    min-height: 295px;
    border-radius: 4px;
    padding: 34px 18px 39px 20px;
  }

  .gl-home-summit-box h2 {
    font-size: 32px;
    line-height: 48px;
  }

  .gl-home-summit-box .d-flex i {
    font-size: 40px;
    line-height: 40px;
  }

  .gl-home-summit-box p {
    font-size: 18px;
    line-height: 24px;
    margin-top: 17px;
  }

  .gl-attend {
    padding: 88px 0px 0px !important;
  }

  .gl-attend::before {
    height: calc(100% - 30px);
  }

  .summit-attend-content {
    padding: 0px 21px;
  }

  .gl-attend .summit-hero-content {
    padding: 0px 20px 0px 21px;
  }

  .gl-attend h2 {}

  .gl-attend.content ul {
    margin-top: 29px !important;
    margin-bottom: 59px !important;
    padding-left: 0px !important;
  }

  .gl-attend.content ul li {
    font-size: 18px;
    padding-left: 44px !important;
    margin-bottom: 18px !important;
  }

  .col-lg-6.gl-newsletter-box-px {
    padding: 0px;
  }

  .gl-testimonail-box {
    order: 2;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .gl-testimonail-image {
    display: flex;
    order: 1;
  }

  .gl-testimonail {
    margin-top: 0px;
    padding: 40px 21px 42px;
  }

  .gl-testimonail-box p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .gl-testimonail-box h6 {
    margin-bottom: 11px;
  }

  .gl-testimonail-box span {
    font-size: 15px;
  }

  .page-template-t-summit-home-dormant .gl-gallery {}

  .page-template-t-summit-home-dormant .gl-gallery ul li {
    width: calc(25% - 8px);
  }

  .page-template-t-summit-home-dormant .gl-gallery ul li:not(:last-child) {
    margin-right: 6px;
  }

  .gl-previous-summit .sub-heading {
    margin-bottom: calc(1rem + 14px) !important;
  }

  .gl-previous-summit .gl-annual-box {
    padding: 26px 29px;
    min-height: 229px;
    margin-bottom: 20px;
  }

  .gl-previous-summit .gl-annual-box h5 {
    margin-bottom: 14px;
  }

  .gl-previous-summit .gl-annual-box h2 {
    font-size: 32px;
    line-height: 44px;
  }

  .gl-previous-summit {
    padding-bottom: 20px;
  }

  .gl-become {
    padding: 58px 21px 45px !important;
    margin-bottom: 30px;
  }

  .gl-become .sub-heading {
    margin-bottom: 16px !important;
  }

  .gl-become h2 {
    margin-bottom: 28px !important;
  }

  .gl-become p {
    line-height: 26px;
  }

  .gl-become span {
    line-height: 32px !important;
    margin-top: 18px !important;
    display: block;
  }

  .gl-become.content ul {
    margin-top: 28px !important;
    padding-left: 0px !important;
    margin-bottom: 20px !important;
  }

  .gl-become.content ul li {
    font-size: 18px;
    padding-left: 44px !important;
    margin-bottom: 28px !important;
  }

  .single-post .single-hero {
    min-height: 257px;
  }

  .single-post .post-section {
    padding-bottom: 0px;
    background-color: #fff;
  }

  .single-post .blog-post {
    margin-top: -237px;
    border-radius: 4px;
  }

  .single-post .featured-image {
    min-height: 237px;
  }

  .single-post .post-body {
    padding: 26px 21px 20px !important;
  }

  .single-post .post-title {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 29px;
  }

  .single-post .categories {
    margin-bottom: 26px;
  }

  .post-meta.text-uppercase span {
    display: block;
  }

  /*.post-meta.text-uppercase {
    margin-bottom: 36px;
  }*/

  .single-post .post-meta .author {
    margin: 0px 0px 24px;
  }

  .post-content p {
    font-size: 18px;
    line-height: 26px;
  }

  .post-content ul {
    padding-left: 10px !important;
    margin-bottom: 20px !important;
    padding-right: 0px !important;
  }

  .post-content ul li {
    font-size: 16px;
    line-height: 24px;
    padding-left: 25px !important;
    margin-bottom: 15px !important;
  }

  .post-content ul li::before {
    font-size: 24px;
    line-height: 26px;
  }

  .post-content ul li ul {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .post-content .modal-social-icon {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .post-content .modal-social-icon li {
    padding-left: 0px !important;
  }

  .wp-block-quote, blockquote {
    margin: 27px 0px;
    padding: 0px 0px 0px 26px;
  }

  .wp-block-quote p, blockquote h5 {
    font-size: 24px !important;
  }

  .post-content h3 {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 15px;
    margin-top: 15px;
  }

  .post-content .alignright {
    display: block;
    margin-left: 0px;
    float: none;
  }

  .footnotes-box {
    padding: 43px 36px 16px;
    width: calc(100% + 72px);
    margin-left: -36px;
    margin-top: 20px;
  }

  .footnotes-box h6 {
    margin-bottom: 27px;
    text-align: center;
  }

  .footnotes-box ol {
    padding-left: 22px;
  }

  .footnotes-box ol li {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 32px;
    padding-left: 19px;
  }

  .wp-block-image figcaption {
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
    margin-bottom: 0px;
  }
  
  
  .wp-block-buttons>.wp-block-button {
    display: block;
    margin: 0px 36px;
  }

  .wp-block-buttons>.wp-block-button a {
    width: 100%;
  }
  
  .wp-block-table .has-fixed-layout {
    overflow-x: scroll;
    width: max-content;
    position: relative;
  }
  
  .wp-block-table .has-fixed-layout thead tr th, 
  .wp-block-table .has-fixed-layout tbody tr td {
    width: 150px;
  }

  .modal-dialog .modal-body p {
    font-size: 18px;
    line-height: 26px;
  }

  .custom-select.gl-staff-filter {
    max-width: 100%;
    margin-bottom: calc(1rem + 4px);
  }

  .below-menu li:not(:last-child) {
      margin-right: 0px;
      margin-bottom: 10px;
  }
  
  .below-menu li {display: block;}
  
  .gl-speaker {
      padding: 60px 21px 40px;
  }
  
  .gl-speaker h2, .gl-schedule h2 {
      font-size: 32px !important;
      line-height: 44px !important;
  }
  
  .gl-speaker h2 {
      margin-bottom: 20px;
  }
  
  .gl-schedule h2 {
      margin-bottom: 20px;
  }
  
  .gl-schedule {
      padding: 60px 21px 40px;
  }
  
  .gl-accordion-heading {
      padding: 19px 15px 18px;
  }
  
  .gl-accordion-heading h4 {
      font-size: 20px;
  }
  
  .gl-accordion-heading h4 span {
      font-size: 16px;
  }
  
  .btn-ss-card-button {
      padding: 17px 15px 17px 15px;
      display: block;
  }
  
  .btn.btn-ss-card-button span {
      display: block;
      font-size: 16px;
      max-width: 100%;
      margin-right: 10px;
  }
  
  .btn-ss-card-button::after {
      display: block;
      float: right;
      margin: -10px 0px auto auto;
  }
  
  .gl-schedule .accordion {
      margin-bottom: 30px;
  }

    .gl-newsletter-box {
        margin-top: 30px;
    }

    .gl-summit-hotel {
        padding: 60px 21px 50px !important;
    }

    .gl-summit-hotel h2 {
        font-size: 30px;
        line-height: 40px !important;
    }

    .gl-summit-hotel p {
        font-size: 18px;
        line-height: 28px;
    }

    .gl-summit-hotel h6 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .page-template-t-summit-register .gl-about-summit h5 {
        font-size: 18px;
        line-height: 26px;
    }

    .gl-summit-scholar {
        padding: 60px 21px 60px;
    }

    .gl-summit-scholar h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .gl-summit-scholar p {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 6px;
    }

    .gl-summit-scholar-image {
        width: calc(100% + 30px);
        margin-left: -15px;
    }

    .gl-summit-scholar-image img {
        max-width: 100%;
        margin: 14px 0px 14px;
    }

    .page-template-t-summit-register .gl-question {
        padding: 60px 21px 40px;
    }

    .gl-summit-registration .gl-btn-medium {
        margin: 15px 0px 25px !important;
    }

  .newsletter-box-holder {
    max-width: 100%;
    padding: 25px 36px 40px;
    margin-bottom: -10px;
  }

  .newsletter-box-holder h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .form-box {
    padding: 15px;
  }

  .form-inline .form-control {
    max-width: 100%;
    border-left: none;
    border-bottom: 1px solid #568b3e !important;
    margin-bottom: 15px;
  }

  .btn-submit {
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
  }

  .main-footer {
    padding: 65px 0px 50px;
  }

  .main-footer img {
    margin: 0px auto 40px;
  }

  .footer-link li {
    width: 100%;
  }

  .footer-link {
    /* margin: 0px auto 30px; */
  }

  .social-link li a {
    font-size: 20px;
  }

  .gl-copyright {
    padding: 19px 21px 20px;
  }
}

@-webkit-keyframes animate-in-upwards {
  0% {
    opacity: 0;
    transform: translateY(15%) scale(1.1);
  }
  to {
    opacity: 1;
    transform: translate(0) scale(1);
  }
}
@keyframes animate-in-upwards {
  0% {
    opacity: 0;
    transform: translateY(15%) scale(1.1);
  }
  to {
    opacity: 1;
    transform: translate(0) scale(1);
  }
}
[data-beat-topper] {
  -webkit-animation: animate-in-upwards 0.35s ease-in-out 1 forwards;
  animation: animate-in-upwards 0.35s ease-in-out 1 forwards;
  transform: scale(1.1) translateY(15%);
  will-change: transform, opacity;
}
@-webkit-keyframes animate-in-downwards {
  0% {
    opacity: 0;
    transform: translate(-1%, -10%) scale(1.1);
  }
  to {
    opacity: 1;
    transform: translate(0) scale(1);
  }
}
@keyframes animate-in-downwards {
  0% {
    opacity: 0;
    transform: translate(-1%, -10%) scale(1.1);
  }
  to {
    opacity: 1;
    transform: translate(0) scale(1);
  }
}
@-webkit-keyframes animate-in-jumping-downwards {
  0% {
    opacity: 0;
    transform: translate(-1%, -10%) scale(1.1);
  }
  30% {
    transform: translateY(3%) scale(1.05);
  }
  to {
    opacity: 1;
    transform: translate(0) scale(1);
  }
}
@keyframes animate-in-jumping-downwards {
  0% {
    opacity: 0;
    transform: translate(-1%, -10%) scale(1.1);
  }
  30% {
    transform: translateY(3%) scale(1.05);
  }
  to {
    opacity: 1;
    transform: translate(0) scale(1);
  }
}
@-webkit-keyframes fade-in-from-left {
  0% {
    opacity: 0;
    transform: translate(25%);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes fade-in-from-left {
  0% {
    opacity: 0;
    transform: translate(-25%);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@-webkit-keyframes animate-in-via-flipscaling {
  0% {
    opacity: 0;
    transform: translateY(-5%) rotateX(20deg) scale(1.1);
  }
  to {
    opacity: 1;
    transform: translate(0) rotateX(0) scale(1);
  }
}
@keyframes animate-in-via-flipscaling {
  0% {
    opacity: 0;
    transform: translateY(-5%) rotateX(20deg) scale(1.1);
  }
  to {
    opacity: 1;
    transform: translate(0) rotateX(0) scale(1);
  }
}

[data-beat-topper] {
  -webkit-animation-timing-function: cubic-bezier(0.3, 0.7, 0.4, 1);
  animation-timing-function: cubic-bezier(0.3, 0.7, 0.4, 1);
  opacity: 0;
  perspective: 3000px;
}

[data-beat='0'] {
  -webkit-animation-delay: 0s !important;
  animation-delay: 0s !important;
}
[data-beat='1'] {
  -webkit-animation-delay: 0.15s !important;
  animation-delay: 0.15s !important;
}
[data-beat='2'] {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}
[data-beat='3'] {
  -webkit-animation-delay: 0.45s !important;
  animation-delay: 0.45s !important;
}
[data-beat='4'] {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}
[data-beat='5'] {
  -webkit-animation-delay: 0.75s !important;
  animation-delay: 0.75s !important;
}
[data-beat='6'] {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.9s !important;
}
[data-beat='7'] {
  -webkit-animation-delay: 1.05s !important;
  animation-delay: 1.05s !important;
}
[data-animate-children] > div {
  opacity: 0;
}

.move-right-animate {
  transition: transform 0.35s cubic-bezier(0.3, 0.76, 0.47, 1.15);
}

.move-right-animate:hover {
  transform: translateX(4px);
}

.animate-typing {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(to right, #ed8b27, #ed8b27 40%, #f4f4f8 50%);
  background-clip: text;
  -webkit-background-clip: text;
  background-position: 100%;
  background-size: 235% 100%;
  display: inline;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: background-position 1s ease;
  transition-delay: 0.3s;
}
.animate-typing.seenSection {
  background-position: 0 100%;
}

.wp-block-separator {
    border-top: none;
}

.page-template-default .work-post-content a {
    color: var(--bg-light-green);
    text-decoration: underline;
  font-weight: normal;
}

.page-template-t-program .wp-block-group {
    margin-bottom: 80px;
}

.page-template-t-program .content p a {
    text-decoration: underline;
    color: var(--bg-light-green);
}
.no-transition {
  transition: none !important;
  transform: translateY(0px) !important;
}
.link-box {
  transition: all 0.2s ease 0s;
}
.link-box:hover {
  transform: translateY(-10px);
}
.link-box a {
  transition: none !important
    color: initial;
    text-decoration: initial;
}

.single-work-image .img-fluid {
    max-width: 650px;
}

.hero-80 {
  padding: 80px 0px
}

/* ATS CSS */

.hero.bg-blue:after {
    content: '';
    border-radius: 4px 0 0 4px;
    position: absolute;
    top: 92px;
    right: 0px;
    width: 40.5%;
  height: calc(100% - 237px);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-260 {
  padding-top: 120px;
  padding-bottom: 100px;
}

.swi:before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0px;
  width: 660px;
  height: 280px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 4px;
}

.issue-hero .sub-heading {
  margin-bottom: calc(1.5rem + 11px);
}

.issue-hero h1.gl-event-title, .hero.wh h1.gl-event-title {
  line-height: 64px;
  min-height: 128px;
}

@media (min-width: 1370px) {
  .outside-img {
    position: relative;
    right: -3vw;
  }
}

.outside-img {
  border-radius: 4px;
}

.hero.work-hero.wh {
  padding: 120px 0px 205px;
}

.hero.wh .sub-heading {
  margin-bottom: calc(1.5rem + 9px);
}

.work-img:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 660px;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 4px;
}

.hero.wh h1.gl-event-title {
  max-width: 491px;
}

.fellow-swiper .gl-fellows:hover .card-body {
/*     background-color: var(--bg-blue); */
}

/* ATS CSS */

@media only screen and (max-width: 1500px) and (min-width: 991px)  {
/*  works between 1500px and 991px */
  
  .content .single-event-image {
    margin-right: 0px;
  }
}

/* EVENTS */

@media (max-width: 1200px) {
  .events .event-box {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .events .event-image {
    max-width: inherit;
    position: static;
    height: 400px;
    background-position: top center;
    border-radius: 4px 4px 0 0;
  }
}

@media (max-width: 767px) {
  .post-type-archive-event .hero p {
    padding: 0px 21px;
  }
  
  .events {
    padding-bottom: 40px;
  }
  
  .events .event-box {
    margin-bottom: 25px;
  }
  
  .events .event-image {
    height: 250px;
  }
  
  .events .event-box-content {
    padding: 35px 30px;
  }

  .events .event-title {
    font-size: 40px;
    line-height: 46px;
  }

  .events .event-date {
    font-size: 18px;
  }
  
  .events .event-btn {
    margin-top: 30px;
  }
}

/* NEWS */


@media (max-width: 1222px) {
  .newsletter-box-holder.blackbox {
    border-radius: 0px;
  }
}

@media (max-width: 767px) {
  .media-contact * {
    padding: 0px 21px;
  }
  
  .media-contact p:last-child {
    margin-bottom: 0px;
  }
  
  .newsletter-box-holder.blackbox {
    top: 0px;
  }
  
  .category-posts .post .title-holder {
    min-height: inherit;
  }
  
  .category-posts .post .post-title {
    font-size: 22px;
  }
  
  .other-news-posts .category-posts:nth-child(2) .sub-heading.blue {
    margin-top: 40px;
  }
  
  .news-posts .post-column {
    margin-bottom: 40px;
  }
  
  .other-news-posts {
    padding-bottom: 20px !important;
  }
  
  .category-posts .post .featured-image img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    object-position: top;
  }
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #000;
  opacity: 1;
}

@media (max-width: 767px) {
  .modal .close {
    top: 0px;
    right: 10px;
  }
}

.wp-block-image figcaption {
    display: block !important;
    max-width: 95%;
}

a.no-effect {
    text-decoration: none !important;
}

.contextlink {
  position: fixed;
  width: 10px;
  height: 10px;
  z-index: 1000;
}

.btn-load-more {
    display: block;
    width: 100%;
    max-width: 770px;
    height: 50px;
    padding: 0px 30px;
    border-radius: 6px;
    border: 1px solid #68b44a;
    background-color: transparent;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.09em;
    line-height: 50px;
    text-align: center;
    color: #68b44a;
    margin: 5px auto 0px;
  max-width: 450px;
  margin-bottom: 80px;
}

.btn-load-more:hover {
    background: #212529;
    border-color: #212529;
    color: #fff;
}

@media (max-width: 355px) {
    .gl-accordion-heading h4 {
        font-size: 17px;
    }
    
    .gl-accordion-heading h4 span {
        font-size: 12px;
    }
}


/* DROPDOWN */

#main-menu.menu li {
    position: relative;
}

.sub-menu {
    position: absolute;
    right: 0;
    left: auto;
    box-shadow: 0 10px 15px -3px rgba(46, 41, 51, 0.08), 0 4px 6px -2px rgba(71, 63, 79, 0.16);
    z-index: 99;
    min-width: 20rem;
    padding: 0;
    background-color: #fff;
    border-radius: 4px;
/*     border: 1px solid rgba(0,0,0,.15); */
}

.sub-menu {
    /* height: 0; */
    display: none;
    overflow: hidden;
}

#main-menu.menu li:hover .sub-menu {
    /* height: 100%; */
    display: block;
}

.sub-menu li {
    margin-inline: 0px !important;
    text-align: left;
    line-height: 0px !important;
    font-size: 0px !important;
	width: 100%;
}

.sub-menu li a {
    border-left: 1px solid rgba(0,0,0,.15);
    border-right: 1px solid rgba(0,0,0,.15);
    display: block;
    line-height: 50px !important;
    padding-inline: 15px;
}

.sub-menu li:first-child a {
    border-top: 1px solid rgba(0,0,0,.15);
}

.sub-menu li:last-child a {
    border-bottom: 1px solid rgba(0,0,0,.15);
}

.sub-menu li a:hover {
    background-color: var(--bg-light-green);
    color: #fff !important;
	border-color: var(--bg-light-green);
}

#main-menu { 
	padding-left: 0px;
}

#main-menu.menu li > i {
    font-size: 12px;
    padding-left: 5px;
}

@media (min-width: 992px) {
	#main-menu.menu li > i {
		display: none;
	}
}

@media (max-width: 992px) {
	#main-menu.menu li > i {
		color: #fff;
	}
	
	#full-menu .sub-menu li a {
		font-weight: var(--medium);
		font-size: 15px;
		letter-spacing: 0.06em;
		line-height: 24px;
		color: #000;
		text-transform: uppercase;
	}

	#full-menu .sub-menu li:not(:last-child) a {
		border-bottom: 1px solid #ccc;
	}

	#full-menu .sub-menu li {
		margin-bottom: 0px;
	}
}