@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");
/*-- Variables --*/
:root {
  --font-default: 'Source Sans 3', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --p-font-size: 24px;
  --p-line-height: 32px;
  --white: #ffffff;
  --black: #ffffff;
  --color-primary: #FA2746;
  --color-secondary: #FBC500;
  --color-heading: #001B2E;
  --color-paragraph: #49423E;
}

/*=========================*/
/*  Responsive breakpoints
/*=========================*/
/* ==============================================================
     # Reset Browsers
=================================================================== */
* {
  padding: 0;
  margin: 0;
}

html {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}

body {
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  background-color: var(--white);
  color: var(--color-paragraph);
}

html,
body,
.wrapper {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 800;
  line-height: 1.2;
  font-family: var(--font-heading);
  letter-spacing: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--color-heading);
  text-transform: capitalize;
}

h1 {
  font-size: 32px;
  line-height: 42px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 45px;
    line-height: 56px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 72px;
    line-height: 80px;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 80px;
    line-height: 90px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  h1 {
    font-size: 70px;
    line-height: 80px;
  }
}

/* h2: ~60px desktop, ~32px mobile */
h2 {
  font-size: 26px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  h2 {
    font-size: 26px;
    line-height: 36px;
  }
}

/* h3: ~48px desktop, ~28px mobile */
h3 {
  font-size: 22px;
}

/* h4: ~36px desktop, ~24px mobile */
h4 {
  font-size: 20px;
}

/* h5: ~24px desktop, ~20px mobile */
h5 {
  font-size: 18px;
}

/* h6: ~20px desktop, ~18px mobile */
h6 {
  font-size: 16px;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
  max-width: 100%;
}

a,
.btn,
button {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  outline: medium none;
}

a img,
iframe {
  border: none;
}

p {
  color: var(--color-paragraph);
  margin: 0 0 15px;
  font-size: 20px;
  line-height: 1.4;
  text-transform: none;
  font-weight: 400;
  font-family: var(--font-default);
  text-transform: capitalize;
}
@media (min-width: 768px) {
  p {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  p {
    font-size: 24px;
  }
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #eee;
}

pre {
  display: block;
  margin: 0 0 30px;
  padding: 9.5px;
  word-wrap: break-word;
  word-break: break-all;
  color: #333;
  border: 1px solid #ededed;
  border-radius: inherit;
  background-color: #f9f9f9;
  font-size: 13px;
  line-height: 1.42857143;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}

ul {
  margin: 0 0 15px 0;
  padding: 0 0 0 30px;
}
ul li {
  margin-bottom: 5px;
}
ul li:last-child {
  margin-bottom: 0;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

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

a {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  text-decoration: none;
}

b,
strong {
  font-weight: 900;
}

section {
  padding: 30px 0;
}
@media (min-width: 768px) {
  section {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  section {
    padding: 90px 0;
  }
}
@media (min-width: 1200px) {
  section {
    padding: 120px 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  section {
    padding: 100px 0;
  }
}

section.regular_padding {
  padding: 30px 0;
}
@media (min-width: 768px) {
  section.regular_padding {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  section.regular_padding {
    padding: 90px 0;
  }
}
@media (min-width: 1200px) {
  section.regular_padding {
    padding: 110px 0 120px;
  }
}

.container {
  padding: 0 15px;
}

.highlight {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--font-heading);
  display: inline-block;
  color: #001b2e;
}

.btn.active,
.btn:active {
  background-image: inherit !important;
}

.btn.focus,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover {
  outline: 0;
}

.btn.circle {
  border-radius: 40px;
}

.btn.active,
.btn:active {
  outline: 0;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

input.form-control {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  min-height: 50px;
}

.form-check-input:checked {
  background-color: #fa2746;
  border-color: #fa2746;
}

.form-check-input:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(250, 39, 70, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(250, 39, 70, 0.25);
}

.offcanvas.offcanvas-end {
  width: 300px;
}

.btn-secondary,
.btn-primary {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #252220;
  font-family: var(--font-default);
  padding: 15px 30px;
  text-transform: uppercase;
  border-radius: 50px;
  gap: 10px;
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.btn-secondary img,
.btn-primary img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
@media (min-width: 768px) {
  .btn-secondary,
  .btn-primary {
    font-size: 16px;
    padding: 16px 22px;
  }
}
@media (min-width: 992px) {
  .btn-secondary,
  .btn-primary {
    font-size: 17px;
    padding: 20px 26px;
  }
}
@media (min-width: 1200px) {
  .btn-secondary,
  .btn-primary {
    font-size: 20px;
    line-height: 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 16px 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .btn-secondary,
  .btn-primary {
    font-size: 18px;
    padding: 20px 25px;
  }
}
.btn-secondary:active, .btn-secondary:focus, .btn-secondary:focus-visible, .btn-secondary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}
.btn-secondary:active img, .btn-secondary:focus img, .btn-secondary:focus-visible img, .btn-secondary:hover img,
.btn-primary:active img,
.btn-primary:focus img,
.btn-primary:focus-visible img,
.btn-primary:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-animation: pushRight 1s ease-in-out infinite;
          animation: pushRight 1s ease-in-out infinite;
}

.btn-secondary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--white);
}
.btn-secondary:hover {
  color: #252220 !important;
  background: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
}
.btn-secondary:hover img {
  -webkit-filter: brightness(0) invert(0) !important;
          filter: brightness(0) invert(0) !important;
}

.red-outline-btn {
  background: var(--white);
  gap: 10px;
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-size: 14px;
  padding: 13px 20px;
  line-height: 1;
  font-weight: 600;
}
.red-outline-btn img {
  -webkit-filter: invert(26%) sepia(90%) saturate(5477%) hue-rotate(340deg) brightness(101%) contrast(101%);
          filter: invert(26%) sepia(90%) saturate(5477%) hue-rotate(340deg) brightness(101%) contrast(101%);
}
@media (min-width: 768px) {
  .red-outline-btn {
    font-size: 15px;
    padding: 12px 24px;
  }
}
@media (min-width: 992px) {
  .red-outline-btn {
    font-size: 15.5px;
    padding: 13px 26px;
  }
}
@media (min-width: 1200px) {
  .red-outline-btn {
    font-size: 16px;
    padding: 15px 30px;
  }
}
.red-outline-btn:hover {
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
  background: var(--white) !important;
}
.red-outline-btn:hover img {
  -webkit-filter: invert(26%) sepia(90%) saturate(5477%) hue-rotate(340deg) brightness(101%) contrast(101%);
          filter: invert(26%) sepia(90%) saturate(5477%) hue-rotate(340deg) brightness(101%) contrast(101%);
}

.red-outline-btn-red-hover:hover {
  border-color: var(--color-primary) !important;
  color: var(--white) !important;
  background: var(--color-primary) !important;
}
.red-outline-btn-red-hover:hover img {
  -webkit-filter: invert(26%) sepia(90%) saturate(5477%) hue-rotate(340deg) brightness(101%) contrast(101%);
          filter: invert(26%) sepia(90%) saturate(5477%) hue-rotate(340deg) brightness(101%) contrast(101%);
}

@-webkit-keyframes pushRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  80% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes pushRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  80% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.section_title {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .section_title {
    text-align: left;
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .section_title {
    margin-bottom: 45px;
  }
}
.section_title .subtitle {
  margin: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--font-default);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .section_title .subtitle {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .section_title .subtitle {
    font-size: 19px;
    line-height: 25px;
  }
}
@media (min-width: 1200px) {
  .section_title .subtitle {
    font-size: 20px;
    line-height: 26px;
  }
}
.section_title .image_icon {
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section_title .title {
  margin-bottom: 0;
  margin-top: 10px;
  text-transform: capitalize;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-heading);
}
@media (min-width: 992px) {
  .section_title .title {
    max-width: 650px;
  }
}
@media (min-width: 1200px) {
  .section_title .title {
    max-width: 90%;
    font-size: 60px;
    line-height: 75px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .section_title .title {
    font-size: 50px;
    line-height: 60px;
  }
}
.section_title .title.full {
  max-width: 100%;
}

.highlight_text {
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  font-style: italic;
  color: var(--color-heading);
}

.slick-dots {
  bottom: 10px;
}
.slick-dots li button {
  background: rgba(0, 27, 46, 0.2);
  border-radius: 100px;
  width: 15px;
  height: 15px;
}
.slick-dots li.slick-active button {
  background: var(--color-secondary);
}

.slick-dotted.slick-slider {
  margin: 0;
}

.slick-arrow img {
  width: 22px;
}

.icon_color path {
  fill: green;
  stroke: green;
}

.breadcrumb_section {
  min-height: 188px;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (min-width: 768px) {
  .breadcrumb_section {
    min-height: 285px;
    padding: 50px 0;
  }
}
@media (min-width: 1200px) {
  .breadcrumb_section {
    min-height: 400px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .breadcrumb_section {
    min-height: 300px;
  }
}
.breadcrumb_section .title {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .breadcrumb_section .title {
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .breadcrumb_section .title {
    font-size: 50px;
    line-height: 56px;
    max-width: 60%;
  }
}
@media (min-width: 1200px) {
  .breadcrumb_section .title {
    font-size: 60px;
    line-height: 52px;
    margin-bottom: 18px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .breadcrumb_section .title {
    font-size: 50px;
  }
}
.breadcrumb_section .breadcrumb-item {
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .breadcrumb_section .breadcrumb-item {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (min-width: 1200px) {
  .breadcrumb_section .breadcrumb-item {
    font-size: 18px;
    line-height: 32px;
  }
}

.sami_screen_height {
  min-height: 600px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: "FontAwesome";
  font-weight: 700;
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .breadcrumb-item + .breadcrumb-item::before {
    line-height: 1.3;
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-item + .breadcrumb-item::before {
    font-size: 22px;
    line-height: 1.4;
  }
}

@media (min-width: 992px) {
  .breadcrumb_section .title,
  .membership_breadcrumbs .title {
    line-height: 67px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .breadcrumb_section .title,
  .membership_breadcrumbs .title {
    line-height: 57px;
  }
}

@media (min-width: 768px) {
  .workforwomen .modal-dialog,
  .customModal .modal-dialog {
    max-width: 725px;
  }
}
@media (min-width: 992px) {
  .workforwomen .modal-dialog,
  .customModal .modal-dialog {
    max-width: 925px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .workforwomen .modal-dialog,
  .customModal .modal-dialog {
    max-width: 1120px;
  }
}
@media (min-width: 1200px) {
  .workforwomen .modal-dialog,
  .customModal .modal-dialog {
    max-width: 1320px;
  }
}
.workforwomen .modal-content,
.customModal .modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: 0;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}
.workforwomen .right_content,
.customModal .right_content {
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .workforwomen .right_content,
  .customModal .right_content {
    padding: 50px 35px;
  }
}
@media (min-width: 992px) {
  .workforwomen .right_content,
  .customModal .right_content {
    padding: 55px 45px;
  }
}
@media (min-width: 1200px) {
  .workforwomen .right_content,
  .customModal .right_content {
    padding: 64px 60px;
  }
}
.workforwomen .inner_title .title,
.customModal .inner_title .title {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .workforwomen .inner_title .title,
  .customModal .inner_title .title {
    font-size: 28px;
    line-height: 44px;
  }
}
@media (min-width: 1200px) {
  .workforwomen .inner_title .title,
  .customModal .inner_title .title {
    font-size: 40px;
    line-height: 52px;
  }
}
.workforwomen .inner_title .subtitle,
.customModal .inner_title .subtitle {
  margin-bottom: 0;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .workforwomen .inner_title .subtitle,
  .customModal .inner_title .subtitle {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 992px) {
  .workforwomen .inner_title .subtitle,
  .customModal .inner_title .subtitle {
    font-size: 19px;
    line-height: 27px;
  }
}
@media (min-width: 1200px) {
  .workforwomen .inner_title .subtitle,
  .customModal .inner_title .subtitle {
    font-size: 24px;
    line-height: 34px;
  }
}
.workforwomen p,
.customModal p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-paragraph);
}
.workforwomen .content,
.customModal .content {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-paragraph);
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid #e3e4e4;
}
@media (min-width: 768px) {
  .workforwomen .content,
  .customModal .content {
    font-size: 17px;
    line-height: 24px;
    margin-top: 25px;
    margin-bottom: 25px;
    padding-top: 25px;
  }
}
@media (min-width: 992px) {
  .workforwomen .content,
  .customModal .content {
    font-size: 17.5px;
    line-height: 25px;
    margin-top: 28px;
    margin-bottom: 30px;
    padding-top: 30px;
  }
}
@media (min-width: 1200px) {
  .workforwomen .content,
  .customModal .content {
    font-size: 18px;
    line-height: 26px;
    margin-top: 32px;
    margin-bottom: 35px;
    padding-top: 35px;
  }
}
.workforwomen .content_footer,
.customModal .content_footer {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
}
.workforwomen .content_footer span,
.customModal .content_footer span {
  font-weight: 400;
  text-decoration: underline;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .workforwomen .content_footer,
  .customModal .content_footer {
    font-size: 22px;
    line-height: 28px;
  }
  .workforwomen .content_footer span,
  .customModal .content_footer span {
    font-size: 17px;
    line-height: 28px;
  }
}
@media (min-width: 992px) {
  .workforwomen .content_footer,
  .customModal .content_footer {
    font-size: 23px;
    line-height: 29px;
  }
  .workforwomen .content_footer span,
  .customModal .content_footer span {
    font-size: 17.5px;
    line-height: 29px;
  }
}
@media (min-width: 1200px) {
  .workforwomen .content_footer,
  .customModal .content_footer {
    font-size: 20px;
    line-height: 26px;
  }
  .workforwomen .content_footer span,
  .customModal .content_footer span {
    font-size: 18px;
    line-height: 26px;
  }
}
.workforwomen .btn-close,
.customModal .btn-close {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid #001b2e;
  color: #001b2e;
  opacity: 1;
  right: 20px;
  top: 50px;
}
@media (min-width: 768px) {
  .workforwomen .btn-close,
  .customModal .btn-close {
    width: 50px;
    height: 50px;
    border-radius: 70px;
    right: 40px;
    top: 40px;
  }
}
@media (min-width: 992px) {
  .workforwomen .btn-close,
  .customModal .btn-close {
    width: 55px;
    height: 55px;
    border-radius: 85px;
    right: 50px;
    top: 50px;
  }
}
@media (min-width: 1200px) {
  .workforwomen .btn-close,
  .customModal .btn-close {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    right: 60px;
    top: 60px;
  }
}
.workforwomen .btn-close:focus,
.customModal .btn-close:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.workforwomen .btn-close:hover,
.customModal .btn-close:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.workforwomen .action_area {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .workforwomen .action_area {
    margin-top: 25px;
  }
}
.workforwomen .action_area .btn {
  font-size: 14px;
  padding: 10px 40px;
  height: auto;
  width: auto;
  border: 0;
}
@media (min-width: 768px) {
  .workforwomen .modal-dialog {
    max-width: 725px;
  }
}
@media (min-width: 992px) {
  .workforwomen .modal-dialog {
    max-width: 925px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .workforwomen .modal-dialog {
    max-width: 1120px;
  }
}
@media (min-width: 1200px) {
  .workforwomen .modal-dialog {
    max-width: 1200px;
  }
}
.workforwomen .modal-content {
  border-radius: 10px;
  padding: 20px;
}
@media (min-width: 992px) {
  .workforwomen .modal-content {
    padding: 40px;
  }
}
.workforwomen .content {
  margin: 0 auto;
  padding: 15px 0 0;
  max-width: 880px;
}
@media (min-width: 768px) {
  .workforwomen .content {
    padding: 47px 0 0;
  }
}
@media (min-width: 992px) {
  .workforwomen .content {
    padding: 60px 0 0;
  }
}
.workforwomen .content .title {
  font-size: 19px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .workforwomen .content .title {
    font-size: 34px;
    line-height: 44px;
  }
}
@media (min-width: 992px) {
  .workforwomen .content .title {
    font-size: 40px;
    line-height: 52px;
  }
}
.workforwomen .content p {
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .workforwomen .content p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (min-width: 992px) {
  .workforwomen .content p {
    font-size: 18px;
    line-height: 30px;
  }
}

.modal-backdrop {
  background-color: #fff;
  opacity: 0.85 !important;
}

.days_count .title {
  font-size: 24px;
  line-height: auto;
  font-weight: 400;
  font-family: var(--font-heading);
  text-decoration: underline;
  color: var(--color-heading);
  text-transform: capitalize;
  margin-bottom: 5px;
}

.countdown {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
}
.countdown span {
  font-size: 32px;
  line-height: 48px;
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .countdown span {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (min-width: 1200px) {
  .countdown span {
    font-size: 50px;
    line-height: 75px;
  }
}
.countdown .divider {
  margin: 0 10px;
  display: inline-block;
}

.trust_us {
  margin-top: 50px;
  padding: 0 15px;
}
@media (min-width: 1200px) {
  .trust_us {
    margin-top: 120px;
  }
}
@media (min-width: 2000px) {
  .trust_us {
    max-width: 1320px;
    margin: 0 auto;
  }
}
.trust_us .title_area {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .trust_us .title_area {
    margin-bottom: 0;
  }
}
.trust_us .title_area .title {
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-heading);
}
@media (min-width: 768px) {
  .trust_us .title_area .title {
    font-size: 20px;
    line-height: 28px;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .trust_us .title_area .title {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 1200px) {
  .trust_us .title_area .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.trust_us .title_area .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: #cdcdcd;
}
.trust_us .title_area .title span {
  position: relative;
  background: #fff;
  padding: 0 15px;
}
.trust_us .trust_us_slider {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}
.trust_us .trust_us_slider li {
  text-align: center;
  margin: 30px 0;
}
@media (min-width: 768px) {
  .trust_us .trust_us_slider li {
    margin: 30px 0 0;
  }
}
@media (min-width: 992px) {
  .trust_us .trust_us_slider li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(20% - 25px);
            flex: 1 1 calc(20% - 25px);
    max-width: calc(20% - 25px);
  }
}
.trust_us .trust_us_slider .slick-slide img {
  margin: 0 auto;
}

.pagination_nav .pagination .page-item {
  margin: 0 6px;
}
.pagination_nav .pagination .page-item .page-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: var(--color-primary);
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination_nav .pagination .page-item.active .page-link {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.pagination_nav .pagination .page-item.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination_nav .pagination .page-item .page-link:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.pagination_nav .pagination .page-item .page-link i {
  font-size: 18px;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  line-height: 28px;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: none;
  z-index: 999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .scroll-top {
    bottom: 22px;
    right: 30px;
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}

.scroll-top:hover {
  background: var(--color-primary);
}

.womens_leadership_slider_area .image_area {
  border-radius: 20px;
  overflow: hidden;
}

.readonly {
  background: #e7e7e7 !important;
}

.our_champoins_list {
  padding: 30px 0 !important;
}
@media (min-width: 768px) {
  .our_champoins_list {
    padding: 60px 0 !important;
  }
}
@media (min-width: 992px) {
  .our_champoins_list {
    padding: 90px 0 !important;
  }
}
@media (min-width: 1200px) {
  .our_champoins_list {
    padding: 120px 0 !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .our_champoins_list {
    padding: 100px 0 !important;
  }
}

.breadcrumb_section_text_content {
  max-width: 900px;
}
.breadcrumb_section_text_content p {
  color: #fff;
  font-size: 18px;
  margin-top: 30px;
}

.landing_section .text_content p {
  font-size: 18px;
}
.landing_section .membership-benefits .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1d2b3a;
}
.landing_section .membership-benefits .benefit-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.landing_section .membership-benefits .benefit-item .icon-box {
  width: 48px;
  height: 48px;
  background: #ffe8eb;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fa2746;
  font-size: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.landing_section .membership-benefits .benefit-item .content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 15px;
  color: #1d2b3a;
}
.landing_section .membership-benefits .benefit-item .content p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}
.landing_section .membership-benefits .benefit-item .content p:last-child {
  margin-bottom: 0;
}
.landing_section .membership-benefits .benefit-item .content p strong {
  color: #1d2b3a;
}
.landing_section .membership_structure {
  margin-top: 50px;
}
.landing_section .membership_structure h5 {
  font-size: 22px;
  margin-bottom: 20px;
}
.landing_section .membership_structure p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}
.landing_section .membership_structure p:last-child {
  margin-bottom: 0;
}
.landing_section .membership_structure p strong {
  color: #1d2b3a;
}
.landing_section .membership_structure ul {
  margin-top: 20px;
}

.why_join_the_network {
  background: #f9fafb;
}
.why_join_the_network .title {
  font-size: 40px;
  line-height: 42px;
  margin-bottom: 30px;
}
.why_join_the_network p {
  font-size: 18px;
  line-height: 28px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.registration .content {
  padding: 50px 20px;
}
@media (min-width: 768px) {
  .registration .content {
    padding: 50px;
  }
}

.empty_area {
  background: #f7f7f7;
  min-height: 300px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .empty_area {
    min-height: 500px;
  }
}
.empty_area i {
  font-size: 50px;
  margin-bottom: 20px;
}
.empty_area .content {
  opacity: 0.4;
}

.eventRegistration .modal-content {
  max-width: 440px !important;
}
.eventRegistration .redBtn {
  font-size: 16px;
  line-height: 1.2;
  padding: 12px 40px;
  margin-top: 25px;
}
.eventRegistration .close_button {
  margin-top: 10px;
  text-decoration: none;
  color: #001b2e;
  font-size: 20px;
  padding: 0;
}
.eventRegistration .close_button:hover {
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .navbar {
    padding: 5px 0;
  }
}
@media (min-width: 992px) {
  .navbar {
    padding: 15px 0;
  }
}
@media (min-width: 1200px) {
  .navbar {
    padding: 25px 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .navbar {
    padding: 10px 0;
  }
}
.navbar .navbar-brand {
  max-width: 105px;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar .navbar-brand img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 992px) {
  .navbar .navbar-brand {
    max-width: 150px;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-brand {
    max-width: 180px;
  }
}
.navbar .search_btn,
.navbar .mobilel_toggler_menu {
  width: 40px;
  height: 40px;
  padding: 0 !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  background: var(--color-primary);
  border-color: var(--color-primary);
  border-radius: 100px;
}
.navbar .mobilel_toggler_menu {
  background: #fa2746;
  border-color: rgba(89, 92, 95, 0);
  color: #fff;
  width: 30px;
  height: 30px;
  font-size: 16px;
}
.navbar .mobilel_toggler_menu:focus, .navbar .mobilel_toggler_menu:focus-visible .navbar .mobilel_toggler_menu:active {
  color: #fa2746;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  border-color: #fa2746;
}
.navbar .mobilel_action_area {
  gap: 15px;
}
.navbar .search_btn {
  color: #b1b1b1;
  background: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar .search_btn:hover {
  color: var(--color-primary);
}
@media (min-width: 1200px) {
  .navbar .search_btn {
    margin-right: 0;
    font-size: 24px;
  }
}
.navbar .navbar-toggler {
  border-color: transparent;
  padding: 0;
}
.navbar .navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--color-primary);
}
.navbar .navbar-nav {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e7e7e7;
}
@media (min-width: 992px) {
  .navbar .navbar-nav {
    margin-top: 0px;
    padding-top: 0px;
    border-top: 0;
  }
}
.navbar .nav-item {
  margin-bottom: 0;
}
.navbar .nav-link {
  color: var(--color-heading);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  line-height: 20px;
  padding: 6px 0;
  line-height: 1.2;
}
.navbar .nav-link:hover {
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .navbar .nav-link {
    font-size: 16px;
    line-height: 22px;
    padding: 6px 5px;
  }
}
@media (min-width: 992px) {
  .navbar .nav-link {
    font-size: 16px;
    line-height: 24px;
    padding: 6px 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .navbar .nav-link {
    font-size: 16px !important;
  }
}
@media (min-width: 1200px) {
  .navbar .nav-link {
    font-size: 20px;
    line-height: 26px;
    padding: 0 15px !important;
  }
}
@media (min-width: 992px) {
  .navbar .search_login {
    gap: 10px;
  }
}
@media (min-width: 1200px) {
  .navbar .search_login {
    gap: 24px;
  }
}
.navbar .redBtn {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 100px;
  gap: 8px;
  font-size: 16px;
  line-height: 22px;
  padding: 12px 20px;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--white);
}
.navbar .redBtn img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.navbar .redBtn:hover {
  color: #001b2e;
  background-color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
}
.navbar .redBtn:hover img {
  -webkit-filter: brightness(0) saturate(100%);
          filter: brightness(0) saturate(100%);
}
@media (min-width: 768px) {
  .navbar .redBtn {
    font-size: 17px;
    line-height: 24px;
    padding: 15px 25px;
    gap: 9px;
  }
}
@media (min-width: 992px) {
  .navbar .redBtn {
    font-size: 17px;
    line-height: 26px;
    padding: 10px 30px;
    gap: 10px;
  }
}
@media (min-width: 1200px) {
  .navbar .redBtn {
    font-size: 18px;
    line-height: 26px;
    padding: 17px 30px;
    gap: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .navbar .redBtn {
    font-size: 16px;
    line-height: 26px;
    padding: 15px 25px;
  }
}
.navbar .search_btn {
  color: #b1b1b1;
  font-size: 28px;
  line-height: 1;
}
.navbar .search_btn:active, .navbar .search_btn:focus-visible, .navbar .search_btn:focus {
  outline: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: transparent;
  color: #b1b1b1 !important;
}

.mobile_offcanvas_menu .offcanvas-header {
  padding-bottom: 0;
}
.mobile_offcanvas_menu .nav-item {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile_offcanvas_menu .nav-item:last-child {
  border-bottom: 0;
}
.sticky-nav {
  -webkit-animation: fadeDown 0.3s ease-in-out;
          animation: fadeDown 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .sticky-nav {
    padding: 15px 0;
  }
  .sticky-nav .navbar-brand img {
    width: 150px;
  }
  .sticky-nav .redBtn {
    padding: 10px 30px;
  }
  .sticky-nav .nav-link {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .sticky-nav .nav-link {
    font-size: 16px;
  }
}

@-webkit-keyframes fadeDown {
  from {
    top: -50px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes fadeDown {
  from {
    top: -50px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
footer {
  background: #001B2E;
  color: #a9a9a9;
  padding: 40px 0 20px;
}
@media (min-width: 1200px) {
  footer {
    padding: 100px 0 60px;
  }
}
footer .content {
  color: #a9a9a9;
}
@media (min-width: 768px) {
  footer .content {
    max-width: 250px;
  }
}
footer .block {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  footer .block {
    text-align: left;
  }
}
footer .block .content {
  margin: 20px 0 32px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
@media (min-width: 768px) {
  footer .block .content {
    font-size: 16px;
    line-height: 28px;
  }
}
footer .subscribe_area .content {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
footer .subscribe_area .btn {
  margin-top: 15px;
}
footer .title {
  color: var(--white);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 15px;
}
footer nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer nav li {
  margin: 0;
  line-height: 1;
}
footer nav a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #a9a9a9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 4px 0;
  display: inline-block;
}
footer nav a:hover {
  color: var(--color-primary);
}
@media (min-width: 768px) {
  footer nav a {
    font-size: 18px;
    line-height: 45px;
  }
}
footer .social_icon .social_item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #292932;
  color: var(--white);
  border-radius: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
}
footer .social_icon .social_item:hover {
  background: var(--color-primary);
}
footer .social_icon .social_item img {
  width: 14px;
  width: 14px;
}
footer .social_icon .social_item i {
  font-size: 14px;
}
footer .redBtn {
  margin-top: 10px;
}
footer .redBtn span {
  line-height: 1;
}
footer .subscribe_area .form-control {
  border-radius: 100px;
  background: #131319;
  border-color: #131319;
  color: #8f8f9f;
  padding: 15px;
}
footer .subscribe_area .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #8f8f9f;
}
footer .subscribe_area .form-control::-webkit-input-placeholder {
  color: #848484;
  opacity: 1;
}
footer .subscribe_area .form-control::-moz-placeholder {
  color: #848484;
  opacity: 1;
}
footer .subscribe_area .form-control:-ms-input-placeholder {
  color: #848484;
  opacity: 1;
}
footer .subscribe_area .form-control::-ms-input-placeholder {
  color: #848484;
  opacity: 1;
}
footer .subscribe_area .form-control::placeholder {
  color: #848484;
  opacity: 1;
}
footer .subscribe_area .form-control {
  /* Firefox */
}
footer .subscribe_area .form-control:-moz-placeholder {
  color: #848484;
  opacity: 1;
}
footer .subscribe_area .form-control {
  /* Internet Explorer 10-11 */
}
footer .subscribe_area .form-control:-ms-input-placeholder {
  color: #848484;
}
footer .contact_info .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  footer .contact_info .title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
footer .contact_info span {
  display: inline-block;
  margin-right: 8px;
}

.copyright_area {
  background-color: #072337;
  padding: 20px 0;
  margin-top: -1px;
  color: #a9a9a9;
}
.copyright_area .copyright {
  text-align: center;
  margin-top: 16px;
  font-size: 16px;
  line-height: 22px;
  color: #a9a9a9;
}
@media (min-width: 768px) {
  .copyright_area .copyright {
    text-align: left;
    font-size: 18px;
    line-height: 26px;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .copyright_area .copyright {
    font-size: 19px;
    line-height: 27px;
  }
}
@media (min-width: 1200px) {
  .copyright_area .copyright {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
.copyright_area .policy_links {
  text-align: center;
}
@media (min-width: 768px) {
  .copyright_area .policy_links {
    text-align: right;
  }
}
.copyright_area .policy_links .item {
  display: inline-block;
  margin: 6px 8px;
  font-size: 16px;
  line-height: 20px;
  color: #a9a9a9;
}
.copyright_area .policy_links .item:hover {
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .copyright_area .policy_links .item {
    font-size: 16px;
    line-height: 22px;
    margin: 3px 8px;
  }
}
@media (min-width: 992px) {
  .copyright_area .policy_links .item {
    font-size: 18px;
    line-height: 26px;
    margin: 3px 9px;
  }
}
@media (min-width: 1200px) {
  .copyright_area .policy_links .item {
    font-size: 20px;
    line-height: 28px;
    margin: 3px 10px;
  }
}

.hero_slider {
  color: #fff;
  padding: 0;
  position: relative;
}
.hero_slider .content,
.hero_slider .title {
  color: #fff;
  margin: 0;
}
.hero_slider .title {
  font-weight: 600;
}
.hero_slider .content {
  margin: 10px 0 15px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero_slider .content {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 992px) {
  .hero_slider .content {
    font-size: 24px;
    line-height: 34px;
  }
}
@media (min-width: 1200px) {
  .hero_slider .content {
    font-size: 28px;
    line-height: 40px;
  }
}
.hero_slider .slider-item {
  padding: 50px 15px 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .hero_slider .slider-item .container {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .hero_slider .slider-item {
    padding: 50px 40px 80px;
  }
}
@media (min-width: 992px) {
  .hero_slider .slider-item {
    padding: 50px 50px 80px;
    height: 600px;
  }
}
@media (min-width: 1200px) {
  .hero_slider .slider-item {
    padding: 0;
    height: 800px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .hero_slider .slider-item {
    padding: 0;
    height: 800px;
  }
}
.hero_slider .slider-item .title {
  font-weight: 600;
  max-width: 750px;
}
.hero_slider .slider-item .content {
  margin: 10px 0 20px;
}
@media (min-width: 768px) {
  .hero_slider .slider-item .content {
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  .hero_slider .slider-item .content {
    max-width: 650px;
    margin: 24px 0 45px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .hero_slider .slider-item .content {
    max-width: 580px;
  }
}
.hero_slider .slider-item .btn-primary {
  background-color: var(--white) !important;
  border-color: var(--white) !important;
}
.hero_slider .slider-item .btn-primary:hover {
  color: #001b2e;
  background-color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
}
.hero_slider .slider-item .btn-primary:hover img {
  -webkit-filter: brightness(0) saturate(100%);
          filter: brightness(0) saturate(100%);
}
.hero_slider .slick-dots {
  bottom: 25px;
}
.hero_slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  background: var(--white);
  border: 0;
  width: 60px;
  height: 60px;
  line-height: 1;
  border-radius: 100px;
}
.hero_slider .slick-arrow:hover {
  background: var(--color-primary);
}
.hero_slider .slick-prev img,
.hero_slider .slick-next img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.hero_slider .slick-prev:hover img,
.hero_slider .slick-next:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.hero_slider .slick-prev {
  left: 10px;
}
.hero_slider .slick-next {
  right: 10px;
}

.about_us {
  padding: 60px 0 20px;
}
@media (min-width: 768px) {
  .about_us {
    padding: 80px 0 30px;
  }
}
@media (min-width: 992px) {
  .about_us {
    padding: 100px 0 35px;
  }
}
@media (min-width: 1200px) {
  .about_us {
    padding: 120px 0 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .about_us {
    padding: 100px 0 40px;
  }
}
@media (min-width: 768px) {
  .about_us .image_area img {
    width: 100%;
  }
}
.about_us .content {
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .about_us .content {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .about_us .content {
    margin-top: 0;
    padding-left: 28px;
  }
}
.about_us .content p {
  color: var(--color-paragraph);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .about_us .content p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .about_us .content p {
    font-size: 17px;
    line-height: 24px;
  }
}
@media (min-width: 1200px) {
  .about_us .content p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 1200px) {
  .about_us .content_area {
    padding-left: 50px;
  }
}
.about_us .action_btn {
  margin-top: 35px;
}

.our_champoins {
  background: #fafafa;
}
@media (min-width: 992px) {
  .our_champoins .block {
    border-radius: 20px;
    overflow: hidden;
  }
}
.our_champoins .block .card {
  margin: 0 2px;
  border: 0;
  margin-bottom: 25px;
  border-radius: 15px;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.our_champoins .block .card:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.our_champoins .block .card:hover .card-body {
  background: var(--color-primary);
}
.our_champoins .block .card:hover .card-body .card-title,
.our_champoins .block .card:hover .card-body .card-text {
  color: var(--white);
}
@media (min-width: 992px) {
  .our_champoins .block .card {
    border-radius: 0;
    margin-bottom: 0;
  }
  .our_champoins .block .card img {
    border-radius: 0;
  }
}
.our_champoins .block .card .image_area {
  min-height: 205px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .our_champoins .block .card .image_area {
    min-height: 195px;
  }
}
@media (min-width: 1200px) {
  .our_champoins .block .card .image_area {
    min-height: 270px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .our_champoins .block .card .image_area {
    min-height: 230px;
  }
}
.our_champoins .block .card .image_area img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.our_champoins .block .card .card-title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  color: var(--color-heading);
}
@media (min-width: 768px) {
  .our_champoins .block .card .card-title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 992px) {
  .our_champoins .block .card .card-title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .our_champoins .block .card .card-title {
    font-size: 30px;
    line-height: 38px;
  }
}
.our_champoins .block .card .card-text {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-paragraph);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .our_champoins .block .card .card-text {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .our_champoins .block .card .card-text {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 23px;
  }
}
.our_champoins .block .card .card-body {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 25px 10px;
}
@media (min-width: 768px) {
  .our_champoins .block .card .card-body {
    padding: 50px 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .our_champoins .block .card .card-body {
    padding: 25px 15px;
  }
}
.our_champoins .block .card .card-body .btn {
  font-family: var(--font-default);
  font-weight: 600;
  padding: 12px 30px;
}
.our_champoins .action_area {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .our_champoins .action_area {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .our_champoins .action_area {
    margin-top: 60px;
  }
}

.resources {
  background: #001b2e;
  background-position: -100%;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .resources {
    background-size: 100%;
    background-position: 450px 5%;
  }
}
@media (min-width: 992px) {
  .resources {
    background-size: 90%;
    background-position: 550px 0;
  }
}
@media (min-width: 1200px) {
  .resources {
    background-size: 50%;
    background-position: 105% 0;
    padding: 117px 0 62px;
  }
}
@media (min-width: 2000px) {
  .resources .container-fluid {
    max-width: 1620px;
  }
}
.resources .section_title .content,
.resources .section_title .title,
.resources .section_title .subtitle {
  color: var(--white);
}
.resources .content {
  color: var(--white);
  margin: 20px 0;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .resources .content {
    line-height: 26px;
  }
}
@media (min-width: 992px) {
  .resources .content {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 1200px) {
  .resources .content {
    font-size: 24px;
    line-height: 32px;
    max-width: 600px;
    margin-bottom: 50px;
  }
}
.resources .left_content {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .resources .left_content {
    max-width: 400px;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .resources .left_content {
    max-width: 650px;
  }
}
@media (min-width: 1200px) {
  .resources .left_content {
    max-width: 800px;
  }
}
.resources .left_content .section_title {
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .resources .small_laptop {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}
@media (min-width: 992px) {
  .resources .right_content {
    margin-top: 20px;
    gap: 20px;
  }
}
@media (min-width: 1600px) {
  .resources .right_content {
    margin-top: -120px;
    gap: 40px;
    margin-right: 50px;
  }
}
.resources .right_content .block {
  max-width: 100%;
  min-height: auto;
  margin: 0 auto 0;
  padding: 40px 25px;
}
@media (min-width: 768px) {
  .resources .right_content .block {
    margin: 0 5px 0;
  }
}
@media (min-width: 992px) {
  .resources .right_content .block {
    max-width: 320px;
    min-height: 354px;
    padding: 50px 30px;
  }
}
@media (min-width: 1200px) {
  .resources .right_content .block {
    padding: 60px 50px;
  }
}
.resources .right_content .block {
  background-color: var(--white);
  margin-bottom: 15px;
  border-radius: 10px;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.resources .right_content .block:hover {
  background-color: var(--color-primary);
}
.resources .right_content .block:hover .content,
.resources .right_content .block:hover .title {
  color: var(--white);
}
.resources .right_content .block:hover .category {
  background: #fff;
  color: var(--color-heading);
}
.resources .right_content .block:hover .icon_area {
  background: var(--white);
}
.resources .right_content .block .title {
  margin: 18px 0 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
@media (min-width: 768px) {
  .resources .right_content .block .title {
    font-size: 28px;
  }
}
.resources .right_content .block .content {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--font-default);
  color: #49423e;
  margin-top: 0;
}
@media (min-width: 768px) {
  .resources .right_content .block .content {
    font-size: 18px;
  }
}
.resources .icon_area {
  width: 50px;
  height: 50px;
  background: #ffe9ec;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .resources .icon_area {
    width: 55px;
    height: 55px;
  }
}
@media (min-width: 992px) {
  .resources .icon_area {
    width: 60px;
    height: 60px;
  }
}
.resources .active {
  background-color: var(--color-primary);
}
.resources .active .content,
.resources .active .title {
  color: var(--white);
}
.resources .active .category {
  background: #fff;
  color: var(--color-heading);
}
.resources .category {
  background: var(--color-primary);
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 6px 8px;
  border-radius: 5px;
  text-transform: capitalize;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (min-width: 768px) {
  .resources .category {
    font-size: 14px;
    padding: 8px 10px;
    top: 25px;
    right: 25px;
  }
}
@media (min-width: 992px) {
  .resources .category {
    font-size: 16px;
    padding: 10px 12px;
    top: 30px;
    right: 30px;
  }
}

.review_area {
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .review_area .custom_col {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .review_area {
    padding-bottom: 180px;
  }
}
@media (min-width: 1200px) {
  .review_area {
    padding-bottom: 255px;
  }
}
.review_area .section_title {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .review_area .section_title .title {
    max-width: 450px;
    margin: 12px auto 0;
  }
}
@media (min-width: 1200px) {
  .review_area .section_title .title {
    max-width: 70%;
  }
}
.review_area .review_slider .item {
  padding: 38px 15px;
  position: relative;
}
@media (min-width: 768px) {
  .review_area .review_slider .item {
    padding: 38px;
  }
}
.review_area .review_slider .item::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 80%;
  height: 25px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  background: #efefef;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (min-width: 768px) {
  .review_area .review_slider .item::before {
    bottom: 52px;
  }
}
.review_area .review_slider .item::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 70%;
  height: 25px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  background: #f8f8f8;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (min-width: 768px) {
  .review_area .review_slider .item::after {
    bottom: 27px;
  }
}
.review_area .review_slider .item .item_block {
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .review_area .review_slider .item .item_block {
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .review_area .review_slider .item .item_block {
    text-align: left;
    padding: 40px;
  }
}
.review_area .review_slider .item .item_block .image_area {
  border-radius: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .review_area .review_slider .item .item_block .image_area {
    max-width: 200px;
    margin: 0 auto 15px;
  }
}
@media (min-width: 768px) {
  .review_area .review_slider .item .item_block .image_area {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .review_area .review_slider .item .item_block .image_area {
    max-width: 100%;
  }
}
.review_area .review_slider .item .item_block .image_area img {
  width: 100%;
}
.review_area .review_slider .item .inner_title .title {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .review_area .review_slider .item .inner_title .title {
    font-size: 28px;
    line-height: 44px;
    margin-bottom: 8px;
  }
}
@media (min-width: 1200px) {
  .review_area .review_slider .item .inner_title .title {
    font-size: 30px;
    line-height: 52px;
    margin-bottom: 0;
  }
}
.review_area .review_slider .item .inner_title .subtitle {
  margin-bottom: 0;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .review_area .review_slider .item .inner_title .subtitle {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 992px) {
  .review_area .review_slider .item .inner_title .subtitle {
    font-size: 19px;
    line-height: 27px;
  }
}
@media (min-width: 1200px) {
  .review_area .review_slider .item .inner_title .subtitle {
    font-size: 20px;
    line-height: 28px;
  }
}
.review_area .review_slider .item .image_area {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .review_area .review_slider .item .image_area {
    text-align: center;
    margin-bottom: 0;
  }
}
.review_area .review_slider .item p,
.review_area .review_slider .item .content {
  margin: 20px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-paragraph);
}
@media (min-width: 768px) {
  .review_area .review_slider .item p,
  .review_area .review_slider .item .content {
    margin: 20px 0 20px;
    font-size: 17px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .review_area .review_slider .item p,
  .review_area .review_slider .item .content {
    font-size: 17.5px;
    line-height: 25px;
  }
}
@media (min-width: 1200px) {
  .review_area .review_slider .item p,
  .review_area .review_slider .item .content {
    margin: 20px 0 30px;
    font-size: 18px;
    line-height: 26px;
  }
}
.review_area .review_slider .item .content_footer {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
}
.review_area .review_slider .item .content_footer span {
  font-weight: 400;
  text-decoration: underline;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .review_area .review_slider .item .content_footer {
    font-size: 22px;
    line-height: 28px;
  }
  .review_area .review_slider .item .content_footer span {
    font-size: 17px;
    line-height: 28px;
  }
}
@media (min-width: 992px) {
  .review_area .review_slider .item .content_footer {
    font-size: 23px;
    line-height: 29px;
  }
  .review_area .review_slider .item .content_footer span {
    font-size: 17.5px;
    line-height: 29px;
  }
}
@media (min-width: 1200px) {
  .review_area .review_slider .item .content_footer {
    font-size: 24px;
    line-height: 30px;
  }
  .review_area .review_slider .item .content_footer span {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (min-width: 768px) {
  .review_area .review_slider .item .right_content {
    padding: 25px;
  }
}
@media (min-width: 992px) {
  .review_area .review_slider .item .right_content {
    padding: 0 50px 0;
  }
}
.review_area .slick-dots {
  bottom: -95px;
}
@media (min-width: 992px) {
  .review_area .slick-dots {
    bottom: -120px;
  }
}
.review_area .slick-dots li {
  width: 50px;
  height: 50px;
  background: #e6e6e6;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .review_area .slick-dots li {
    width: 80px;
    height: 80px;
  }
}
.review_area .slick-dots li:hover::before {
  background: transparent;
}
.review_area .slick-dots li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(91, 91, 91, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.review_area .slick-dots li.slick-active::before {
  background: transparent;
}
.review_area .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  background: var(--white);
  border: 0;
  width: 60px;
  height: 60px;
  line-height: 1;
  border-radius: 100px;
}
.review_area .slick-arrow:hover {
  background: var(--color-primary);
}
.review_area .slick-prev img,
.review_area .slick-next img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.review_area .slick-prev:hover img,
.review_area .slick-next:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.review_area .slick-prev {
  left: 8px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.review_area .slick-next {
  right: 8px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.join_now {
  padding: 90px 0 0;
  position: relative;
}
.join_now::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 89%;
  background: #001b2e;
}
@media (min-width: 768px) {
  .join_now {
    padding: 160px 0 0;
  }
}
@media (min-width: 992px) {
  .join_now {
    padding-top: 0;
  }
}
@media (min-width: 2000px) {
  .join_now .container-fluid {
    max-width: 1320px;
  }
}
.join_now .image_area {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .join_now .image_area {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.join_now .title {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .join_now .title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 25px;
  }
}
@media (min-width: 992px) {
  .join_now .title {
    font-size: 38px;
    line-height: 48px;
    margin-bottom: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .join_now .title {
    font-size: 40px !important;
    line-height: 50px !important;
    margin-bottom: 24px !important;
  }
}
@media (min-width: 1200px) {
  .join_now .title {
    font-size: 60px;
    line-height: 72px;
    margin-bottom: 28px;
  }
}
.join_now .content {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .join_now .content {
    text-align: left;
    z-index: 1;
    padding-left: 50px;
    margin-top: 25px;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .join_now .content {
    margin-top: 50px;
  }
}

.event .section_title_area {
  margin-bottom: 38px;
}
@media (min-width: 768px) {
  .event .section_title_area {
    margin-bottom: 20px;
  }
}
.event .section_title_area .action_btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.event .section_title {
  margin-bottom: 15px;
}
.event .action_btn a {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .event .action_btn a {
    width: 250px;
  }
}
@media (min-width: 992px) {
  .event .action_btn a {
    width: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .event .action_btn a {
    width: 250px !important;
  }
}
@media (min-width: 1200px) {
  .event .action_btn a {
    width: auto;
  }
}
.event .card {
  border: 0;
  padding: 0 20px;
  margin-bottom: 15px;
  background: #f4f9ff;
  border-radius: 10px;
  margin-top: 50px;
  margin-bottom: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.event .card:hover {
  background: var(--white);
  -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
}
.event .card:hover .btn {
  color: var(--white);
  background: var(--color-primary);
}
.event .card:hover .btn img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.event .card:hover .categories {
  color: var(--color-primary);
  background: var(--white);
}
.event .card:hover .hover_icon {
  opacity: 1;
}
@media (min-width: 992px) {
  .event .card {
    margin-bottom: 0px;
  }
}
.event .card .btn img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.event .card .btn:hover {
  color: var(--white) !important;
  background: var(--color-primary) !important;
}
.event .card .btn:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.event .card .card-title {
  font-size: 20px;
  line-height: 30px;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
}
@media (min-width: 768px) {
  .event .card .card-title {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 992px) {
  .event .card .card-title {
    font-size: 21px;
    line-height: 31px;
  }
}
@media (min-width: 1200px) {
  .event .card .card-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.event .card .image_area {
  margin-top: -50px;
  position: relative;
}
.event .card .image_area img {
  border-radius: 10px;
}
.event .card .event_fee,
.event .card .categories {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  padding: 4px 12px;
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-primary);
  border-radius: 5px;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .event .card .event_fee,
  .event .card .categories {
    font-size: 16px;
  }
}
.event .card .event_fee {
  top: auto;
  left: auto;
  right: 10px;
  bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}
.event .card .btn {
  background: transparent;
}
.event .card .hover_icon {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: var(--white);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.event .card .card-body {
  padding: 13px 0 32px;
}
.event .card p,
.event .card .card-text {
  margin: 10px 0 18px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--color-paragraph);
}
@media (min-width: 768px) {
  .event .card p,
  .event .card .card-text {
    font-size: 15px;
    line-height: 24px;
    margin: 5px 0 13px;
  }
}
@media (min-width: 992px) {
  .event .card p,
  .event .card .card-text {
    font-size: 15.5px;
    line-height: 25px;
  }
}
@media (min-width: 1200px) {
  .event .card p,
  .event .card .card-text {
    font-size: 16px;
    line-height: 28px;
    margin: 5px 0 15px;
  }
}
.event .card .redOutlineBtn {
  font-family: var(--font-default);
  font-weight: 600;
  font-size: 18px;
  line-height: 0.5;
  text-transform: uppercase;
  padding: 18px 24px;
}
.event .active {
  background: var(--white);
  -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
}
.event .active .btn {
  color: var(--white);
  background: var(--color-primary);
}

.our_feed {
  padding: 20px 0;
}
@media (min-width: 2000px) {
  .our_feed .container-fluid {
    max-width: 1320px;
  }
}
.our_feed .section_title .title {
  text-transform: capitalize;
  max-width: 100%;
}
.our_feed .section_title .feed_link {
  text-align: center;
  margin-top: 10px;
}
.our_feed .section_title .feed_link .btn {
  background: transparent;
  border-color: transparent;
  color: var(--color-paragraph);
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: capitalize;
  font-size: 18px;
  line-height: 28px;
  gap: 5px;
  padding: 0;
}
.our_feed .section_title .feed_link .btn:active, .our_feed .section_title .feed_link .btn:focus, .our_feed .section_title .feed_link .btn:focus-visible, .our_feed .section_title .feed_link .btn:hover {
  background: transparent !important;
  border-color: transparent !important;
}
.our_feed .section_title .feed_link .btn:active img, .our_feed .section_title .feed_link .btn:focus img, .our_feed .section_title .feed_link .btn:focus-visible img, .our_feed .section_title .feed_link .btn:hover img {
  -webkit-filter: brightness(0) invert(0);
          filter: brightness(0) invert(0);
}
@media (min-width: 768px) {
  .our_feed .section_title .feed_link .btn {
    font-size: 24px;
    line-height: 34px;
    gap: 8px;
  }
}
@media (min-width: 992px) {
  .our_feed .section_title .feed_link .btn {
    font-size: 28px;
    line-height: 38px;
    gap: 9px;
  }
}
@media (min-width: 1200px) {
  .our_feed .section_title .feed_link .btn {
    font-size: 30px;
    line-height: 42px;
    gap: 10px;
  }
}
.our_feed .item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.our_feed .item:hover .hover_icon {
  opacity: 1;
}
.our_feed .item:hover::before {
  opacity: 1;
}
.our_feed .item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.our_feed .item .hover_icon {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.our_feed .feed_slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .our_feed .feed_slider {
    gap: 25px;
  }
}
.our_feed .feed_slider .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(20% - 25px);
          flex: 1 1 calc(20% - 25px);
  max-width: calc(20% - 25px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.our_feed .feed_slider .item .image_area img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
@media (max-width: 992px) {
  .our_feed .feed_slider .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(33.33% - 15px);
            flex: 1 1 calc(33.33% - 15px);
    max-width: calc(33.33% - 15px);
  }
}
@media (max-width: 576px) {
  .our_feed .feed_slider .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 15px);
            flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

#lifelong_learners {
  padding: 60px 0 40px;
}
@media (min-width: 768px) {
  #lifelong_learners {
    padding: 80px 0 50px;
  }
}
@media (min-width: 992px) {
  #lifelong_learners {
    padding: 100px 0 60px;
  }
}
@media (min-width: 1200px) {
  #lifelong_learners {
    padding: 120px 0 78px;
  }
}
#lifelong_learners .item:first-child .card {
  border-left: 0;
}
#lifelong_learners .section_title .title {
  width: 950px;
  margin: 0 auto;
}
#lifelong_learners .block .card {
  border-radius: 0;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  border-color: #d8d7d7;
  padding: 20px;
}
@media (min-width: 768px) {
  #lifelong_learners .block .card {
    padding: 25px;
    border-left: 1px solid #d8d7d7;
  }
}
@media (min-width: 992px) {
  #lifelong_learners .block .card {
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  #lifelong_learners .block .card {
    padding: 40px;
  }
}
#lifelong_learners .block .card-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 36px;
}
@media (min-width: 768px) {
  #lifelong_learners .block .card-title {
    font-size: 26px;
    line-height: 44px;
  }
}
@media (min-width: 992px) {
  #lifelong_learners .block .card-title {
    font-size: 28px;
    line-height: 48px;
  }
}
@media (min-width: 1200px) {
  #lifelong_learners .block .card-title {
    font-size: 30px;
    line-height: 52px;
  }
}
#lifelong_learners .block .card-text {
  color: var(--color-heading);
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 1200px) {
  #lifelong_learners .block .card-text {
    font-size: 18px;
    line-height: 26px;
  }
}
#lifelong_learners .block .card-body {
  padding: 14px 0 0;
}
#lifelong_learners .text_bottom {
  margin-top: 30px;
}
#lifelong_learners .text_bottom a {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 16px;
  display: inline-block;
  margin: 3px 0 0;
}
@media (min-width: 1200px) {
  #lifelong_learners .text_bottom a {
    margin: 0;
  }
}
#lifelong_learners .text_bottom p {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 768px) {
  #lifelong_learners .text_bottom {
    margin-top: 40px;
  }
  #lifelong_learners .text_bottom a {
    font-size: 16px;
  }
  #lifelong_learners .text_bottom p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  #lifelong_learners .text_bottom {
    margin-top: 45px;
  }
  #lifelong_learners .text_bottom a {
    font-size: 17px;
  }
  #lifelong_learners .text_bottom p {
    font-size: 17px;
    line-height: 25px;
  }
}
@media (min-width: 1200px) {
  #lifelong_learners .text_bottom {
    margin-top: 50px;
  }
  #lifelong_learners .text_bottom a {
    font-size: 18px;
  }
  #lifelong_learners .text_bottom p {
    font-size: 18px;
    line-height: 26px;
  }
}

#our_story {
  background: #f6f6f6;
  padding: 50px 0 50px;
}
@media (min-width: 768px) {
  #our_story {
    padding: 65px 0 50px;
  }
}
@media (min-width: 992px) {
  #our_story {
    padding: 75px 0 60px;
  }
}
@media (min-width: 1200px) {
  #our_story {
    padding: 85px 0 74px;
  }
}
@media (min-width: 2000px) {
  #our_story .container-fluid {
    max-width: 1620px;
  }
}
#our_story .col-12:last-child .block {
  margin-bottom: 0;
}
#our_story .card {
  border-radius: 0;
  border: 0;
  background: transparent;
}
#our_story .card:hover .futures_year {
  color: var(--color-primary);
}
#our_story .card:hover .divider::before {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
#our_story .card .card-body {
  padding: 0 40px;
}
@media (min-width: 992px) {
  #our_story .card .card-body {
    padding: 0 15px;
  }
}
@media (min-width: 1200px) {
  #our_story .card .card-body {
    padding: 0 40px;
  }
}
#our_story .card .card-text {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-heading);
}
@media (min-width: 1200px) {
  #our_story .card .card-text {
    font-size: 18px;
  }
}
#our_story .section_title {
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  #our_story .section_title .title {
    width: 500px;
  }
}
#our_story .futures_year {
  font-size: 40px;
  line-height: 52px;
  font-weight: 500;
  color: #cccccc;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  position: absolute;
  -webkit-transform: translateX(-100px) rotate(270deg);
          transform: translateX(-100px) rotate(270deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: var(--font-heading);
}
@media (min-width: 992px) {
  #our_story .futures_year {
    font-size: 25px;
    -webkit-transform: translateX(-70px) rotate(270deg);
            transform: translateX(-70px) rotate(270deg);
  }
}
@media (min-width: 1200px) {
  #our_story .futures_year {
    font-size: 40px;
    -webkit-transform: translateX(-100px) rotate(270deg);
            transform: translateX(-100px) rotate(270deg);
  }
}
#our_story .image_area {
  position: relative;
}
@media (min-width: 992px) {
  #our_story .image_area {
    width: 100px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  #our_story .image_area {
    width: auto;
  }
}
#our_story .block {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  #our_story .block {
    margin-bottom: 0;
  }
}
#our_story .divider {
  height: 2px;
  background: #cccccc;
  margin: 30px 0 25px;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  #our_story .divider {
    margin: 30px 0 25px;
  }
}
@media (min-width: 1200px) {
  #our_story .divider {
    margin: 60px 0 55px;
  }
}
#our_story .divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: var(--white);
  border: 2px solid #cccccc;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

#gcn_benefits .block {
  background: var(--color-primary);
  border-radius: 20px;
  padding: 40px 20px 45px;
}
@media (min-width: 768px) {
  #gcn_benefits .block {
    padding: 55px 40px 60px;
  }
}
@media (min-width: 992px) {
  #gcn_benefits .block {
    padding: 65px 55px 70px;
  }
}
@media (min-width: 1200px) {
  #gcn_benefits .block {
    padding: 75px 75px 80px;
  }
}
#gcn_benefits .section_title {
  margin-bottom: 35px;
}
#gcn_benefits .section_title .title {
  color: var(--white);
}
#gcn_benefits .custom_col {
  margin-bottom: 20px;
}
#gcn_benefits .custom_col:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  #gcn_benefits .custom_col {
    margin-bottom: 0;
  }
  #gcn_benefits .custom_col:nth-child(-n+3) {
    margin-bottom: 20px;
  }
}
#gcn_benefits .inner_block {
  background: var(--white);
  padding: 40px 10px;
  border-radius: 5px;
  margin-bottom: 0;
  height: 100%;
}
#gcn_benefits .inner_block .title {
  font-size: 22px;
  line-height: 28px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 13px 0 8px;
}
@media (min-width: 768px) {
  #gcn_benefits .inner_block .title {
    font-size: 20px;
    line-height: 28px;
  }
}
#gcn_benefits .inner_block p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-paragraph);
  padding: 0 10px;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  #gcn_benefits .inner_block p {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  #gcn_benefits .inner_block p {
    padding: 0 28px;
  }
}

#our_workplace .block {
  border: 1px solid #DDDDDD;
  background: #F8FDFF;
  border-radius: 10px;
  padding: 25px 18px;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#our_workplace .block:hover {
  border-color: var(--color-primary);
}
#our_workplace .block:hover .header_area .title {
  color: var(--color-primary);
}
#our_workplace .block {
  /* Tablet */
}
@media (min-width: 576px) {
  #our_workplace .block {
    padding: 35px 24px;
  }
}
#our_workplace .block {
  /* Small Laptop */
}
@media (min-width: 768px) {
  #our_workplace .block {
    padding: 45px 26px;
  }
}
#our_workplace .block {
  /* Desktop */
}
@media (min-width: 992px) {
  #our_workplace .block {
    padding: 25px 28px;
  }
}
#our_workplace .block {
  /* Desktop */
}
@media (min-width: 1200px) {
  #our_workplace .block {
    padding: 30px 28px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  #our_workplace .block {
    padding: 20px;
  }
}
#our_workplace .block p {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 576px) {
  #our_workplace .block p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 768px) {
  #our_workplace .block p {
    font-size: 17px;
    line-height: 26px;
  }
}
@media (min-width: 992px) {
  #our_workplace .block p {
    font-size: 18px;
    line-height: 28px;
  }
}
#our_workplace .block .header_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}
@media (min-width: 576px) {
  #our_workplace .block .header_area {
    margin-bottom: 22px;
  }
}
@media (min-width: 768px) {
  #our_workplace .block .header_area {
    margin-bottom: 25px;
  }
}
@media (min-width: 992px) {
  #our_workplace .block .header_area {
    margin-bottom: 28px;
  }
}
#our_workplace .block .header_area .title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  margin: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 576px) {
  #our_workplace .block .header_area .title {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 768px) {
  #our_workplace .block .header_area .title {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 992px) {
  #our_workplace .block .header_area .title {
    font-size: 20px;
    line-height: 30px;
    max-width: 260px;
  }
}
@media (min-width: 1200px) {
  #our_workplace .block .header_area .title {
    font-size: 26px;
    line-height: 40px;
    max-width: 260px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  #our_workplace .block .header_area .title {
    font-size: 22px;
    line-height: 32px;
  }
}
#our_workplace .block .header_area .icon_area {
  margin-right: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 576px) {
  #our_workplace .block .header_area .icon_area {
    margin-right: 20px;
  }
}
@media (min-width: 768px) {
  #our_workplace .block .header_area .icon_area {
    margin-right: 22px;
  }
}
@media (min-width: 992px) {
  #our_workplace .block .header_area .icon_area {
    margin-right: 25px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  #our_workplace .block .header_area .icon_area {
    margin-right: 20px;
  }
}
#our_workplace .custom {
  padding: 20px;
}
@media (min-width: 768px) {
  #our_workplace .custom {
    padding: 30px;
  }
}
@media (min-width: 992px) {
  #our_workplace .custom {
    padding: 25px;
  }
}
@media (min-width: 1200px) {
  #our_workplace .custom {
    padding: 30px 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  #our_workplace .custom {
    padding: 30px 40px;
  }
}
#our_workplace .custom .header_area .icon_area {
  margin-right: 20px;
}
@media (min-width: 576px) {
  #our_workplace .custom .header_area .icon_area {
    margin-right: 30px;
  }
}
@media (min-width: 768px) {
  #our_workplace .custom .header_area .icon_area {
    margin-right: 35px;
  }
}
@media (min-width: 992px) {
  #our_workplace .custom .header_area .icon_area {
    margin-right: 40px;
  }
}
#our_workplace .custom .header_area .title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin: 0;
}
@media (min-width: 576px) {
  #our_workplace .custom .header_area .title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 768px) {
  #our_workplace .custom .header_area .title {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (min-width: 992px) {
  #our_workplace .custom .header_area .title {
    font-size: 24px;
    line-height: 34px;
    max-width: 300px;
  }
}
@media (min-width: 1200px) {
  #our_workplace .custom .header_area .title {
    font-size: 30px;
    line-height: 40px;
    max-width: 300px;
  }
}

#our_leaders {
  padding-top: 0;
}
#our_leaders .leader_img {
  text-align: center;
  padding: 0; /* smaller padding on mobile */
  border-left: 1px solid rgba(228, 228, 228, 0.5);
  border-bottom: 1px solid rgba(228, 228, 228, 0.5);
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#our_leaders .leader_img:hover {
  border-color: transparent;
  -webkit-box-shadow: 0 0 62px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 62px rgba(0, 0, 0, 0.05);
  -webkit-transform: scale(1.006);
          transform: scale(1.006);
}
@media (min-width: 992px) {
  #our_leaders .leader_img {
    padding: 0;
    border: 1px solid rgba(228, 228, 228, 0.5);
  }
}
@media (max-width: 575.98px) {
  #our_leaders {
    /* Mobile (default, 2 per row) */
  }
  #our_leaders .col-6:nth-child(2n+1) .leader_img {
    border-left: 0; /* first item of each row */
  }
  #our_leaders .col-6:nth-child(-n+2) .leader_img {
    border-top: 0; /* first row top */
  }
  #our_leaders .col-6:nth-child(7) .leader_img {
    border-bottom: 0;
  }
  #our_leaders .col-6:nth-child(8) .leader_img {
    border-bottom: 0;
  }
}
#our_leaders {
  /* Desktop (4 per row) */
}
@media (min-width: 768px) {
  #our_leaders .col-md-3:nth-child(-n+4) .leader_img {
    border-top: 0; /* first row */
  }
  #our_leaders .col-md-3:nth-child(1) .leader_img {
    border-left: 0; /* first item first row */
  }
  #our_leaders .col-md-3:nth-child(4) .leader_img {
    border-right: 0; /* last item first row */
  }
  #our_leaders .col-md-3:nth-child(n+5) .leader_img {
    border-bottom: 0; /* second row bottom */
  }
  #our_leaders .col-md-3:nth-child(5) .leader_img {
    border-left: 0; /* first item second row */
  }
  #our_leaders .col-md-3:nth-child(8) .leader_img {
    border-right: 0; /* last item second row */
  }
}

#our_workplace .section_title .title {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
}
@media (min-width: 992px) {
  #our_workplace .section_title .title {
    font-size: 40px;
    line-height: 52px;
  }
}

#leadership_fellows .card,
#womens_leadership .card {
  border-radius: 20px;
  border: 0;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
}
#leadership_fellows .card .card-title,
#womens_leadership .card .card-title {
  font-size: 22px;
  line-height: 36px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-heading);
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #leadership_fellows .card .card-title,
  #womens_leadership .card .card-title {
    font-size: 26px;
    line-height: 48px;
  }
}
@media (min-width: 992px) {
  #leadership_fellows .card .card-title,
  #womens_leadership .card .card-title {
    font-size: 28px;
    line-height: 60px;
  }
}
@media (min-width: 1200px) {
  #leadership_fellows .card .card-title,
  #womens_leadership .card .card-title {
    font-size: 30px;
    line-height: 72px;
  }
}
#leadership_fellows .card .card-text,
#womens_leadership .card .card-text {
  font-size: 14px;
  line-height: 22px;
  color: var(--color-paragraph);
}
@media (min-width: 768px) {
  #leadership_fellows .card .card-text,
  #womens_leadership .card .card-text {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  #leadership_fellows .card .card-text,
  #womens_leadership .card .card-text {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (min-width: 1200px) {
  #leadership_fellows .card .card-text,
  #womens_leadership .card .card-text {
    font-size: 16px;
    line-height: 28px;
  }
}
#leadership_fellows .card .card-body,
#womens_leadership .card .card-body {
  padding: 15px 20px;
}
@media (min-width: 768px) {
  #leadership_fellows .card .card-body,
  #womens_leadership .card .card-body {
    padding: 20px 25px;
  }
}
@media (min-width: 992px) {
  #leadership_fellows .card .card-body,
  #womens_leadership .card .card-body {
    padding: 25px 30px;
  }
}
@media (min-width: 1200px) {
  #leadership_fellows .card .card-body,
  #womens_leadership .card .card-body {
    padding: 13px 30px 30px 40px;
  }
}

#womens_leadership {
  padding: 45px 0 60px;
}
@media (min-width: 768px) {
  #womens_leadership {
    padding: 65px 0 65px;
  }
}
@media (min-width: 992px) {
  #womens_leadership {
    padding: 80px 0 70px;
  }
}
@media (min-width: 1200px) {
  #womens_leadership {
    padding: 93px 0 73px;
  }
}
#womens_leadership .section_title {
  margin-bottom: 35px;
}
#womens_leadership .womens_leadership_slider_area .item {
  padding-bottom: 150px;
}
@media (min-width: 1200px) {
  #womens_leadership .womens_leadership_slider_area .item {
    padding-bottom: 80px;
  }
}
#womens_leadership .womens_leadership_slider_area .item img {
  width: 100%;
}
#womens_leadership .womens_leadership_slider_area .card {
  position: absolute;
  left: 50%;
  bottom: 30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 90%;
}
@media (min-width: 768px) {
  #womens_leadership .womens_leadership_slider_area .card {
    min-width: 460px;
  }
}
@media (min-width: 992px) {
  #womens_leadership .womens_leadership_slider_area .card {
    min-width: 420px;
  }
}
@media (min-width: 1200px) {
  #womens_leadership .womens_leadership_slider_area .card {
    min-width: 483px;
    bottom: 30px;
  }
}
#womens_leadership .slick-slide {
  margin: 0 20px;
}
#womens_leadership .slick-list {
  margin: 0 -20px;
}
#womens_leadership .slick-arrow {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  background: var(--white);
  border: 0;
  width: 60px;
  height: 60px;
  line-height: 1;
  border-radius: 100px;
}
#womens_leadership .slick-arrow:hover {
  background: var(--color-primary);
}
#womens_leadership .slick-prev img,
#womens_leadership .slick-next img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
#womens_leadership .slick-prev:hover img,
#womens_leadership .slick-next:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
#womens_leadership .slick-prev {
  left: -30px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
#womens_leadership .slick-next {
  right: -30px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
#womens_leadership .slick-dots {
  bottom: -20px;
}

#leadership_fellows {
  min-height: 600px;
  padding: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#leadership_fellows .card {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#leadership_fellows .card .card-body {
  padding: 25px 20px 25px 15px;
}
#leadership_fellows .card .card-text {
  margin-bottom: 15px;
}
#leadership_fellows .yellowBtn {
  font-size: 16px;
  font-weight: 600;
  padding: 16px 25px;
}
@media (min-width: 768px) {
  #leadership_fellows .card .card-body {
    padding: 35px 50px 35px 30px;
  }
  #leadership_fellows .card .card-text {
    margin-bottom: 20px;
  }
  #leadership_fellows .yellowBtn {
    font-size: 18px;
    padding: 20px 30px;
  }
}
@media (min-width: 992px) {
  #leadership_fellows {
    min-height: 580px;
  }
  #leadership_fellows .card .card-body {
    padding: 40px 60px 40px 35px;
  }
  #leadership_fellows .card .card-text {
    margin-bottom: 25px;
  }
  #leadership_fellows .yellowBtn {
    font-size: 19px;
    padding: 22px 35px;
  }
}
@media (min-width: 1200px) {
  #leadership_fellows {
    min-height: 660px;
  }
  #leadership_fellows .card .card-body {
    padding: 45px 75px 45px 40px;
  }
  #leadership_fellows .card .card-text {
    margin-bottom: 30px;
  }
  #leadership_fellows .yellowBtn {
    font-size: 20px;
    padding: 24px 40px;
  }
}

.details {
  border-radius: 20px;
  background: #fff9f9;
  padding: 20px;
}
@media (min-width: 768px) {
  .details {
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .details {
    padding: 40px;
  }
}
.details .image_area {
  margin-bottom: 17px;
}
.details .image_area img {
  margin: 0;
}
.details .highlight li {
  color: var(--color-primary);
}
.details h1,
.details h2,
.details h3,
.details h4,
.details h5,
.details h6 {
  margin-bottom: 6px;
}
.details h1 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .details h1 {
    font-size: 32px;
    line-height: 48px;
  }
}
@media (min-width: 992px) {
  .details h1 {
    font-size: 36px;
    line-height: 56px;
  }
}
@media (min-width: 1200px) {
  .details h1 {
    font-size: 40px;
    line-height: 72px;
  }
}
.details h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .details h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
@media (min-width: 992px) {
  .details h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (min-width: 1200px) {
  .details h2 {
    font-size: 30px;
    line-height: 50px;
  }
}
.details h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .details h3 {
    font-size: 24px;
    line-height: 34px;
  }
}
@media (min-width: 992px) {
  .details h3 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media (min-width: 1200px) {
  .details h3 {
    font-size: 28px;
    line-height: 38px;
  }
}
.details h4 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .details h4 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 992px) {
  .details h4 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 1200px) {
  .details h4 {
    font-size: 24px;
    line-height: 34px;
  }
}
.details h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .details h5 {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (min-width: 992px) {
  .details h5 {
    font-size: 19px;
    line-height: 28px;
  }
}
@media (min-width: 1200px) {
  .details h5 {
    font-size: 20px;
    line-height: 30px;
  }
}
.details h6 {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .details h6 {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .details h6 {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1200px) {
  .details h6 {
    font-size: 18px;
    line-height: 26px;
  }
}
.details p {
  font-size: 16px;
  line-height: 28px;
  color: var(--color-paragraph);
}
@media (min-width: 768px) {
  .details ul {
    margin: 16px 0 25px 10px;
  }
}
.details ul li {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
  font-family: var(--font-default);
  color: var(--color-heading);
}
@media (min-width: 768px) {
  .details ul li {
    font-size: 22px;
    line-height: 36px;
  }
}
@media (min-width: 1200px) {
  .details ul li {
    font-size: 30px;
    line-height: 50px;
  }
}
.details img {
  max-width: 100%;
  margin-bottom: 27px;
}
@media (min-width: 1200px) {
  .details img {
    margin: 32px 27px 47px 0;
  }
  .details img:last-of-type {
    margin-right: 0;
  }
}

.event_video .block {
  padding: 16px;
  border: 1px solid #dedede;
  border-radius: 20px;
}
.event_video .play_icon {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background: var(--color-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .event_video .play_icon {
    width: 100px;
    height: 100px;
  }
}
.event_video .play_icon img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.event_video .play_icon:hover {
  background: var(--color-secondary);
}
.event_video .play_icon:hover img {
  -webkit-filter: brightness(0) invert(0) !important;
          filter: brightness(0) invert(0) !important;
}
@media (min-width: 1200px) {
  .event_video .content {
    padding-left: 15px;
  }
}
.event_video .content .title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: var(--color-heading);
  font-family: var(--font-heading);
  margin-top: 15px;
}
@media (min-width: 768px) {
  .event_video .content .title {
    font-size: 38px;
    line-height: 46px;
  }
}
@media (min-width: 992px) {
  .event_video .content .title {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .event_video .content .title {
    font-size: 50px;
    line-height: 56px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .event_video .content .title {
    font-size: 40px;
    line-height: 50px;
  }
}
.event_video .content p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-paragraph);
}
@media (min-width: 768px) {
  .event_video .content p {
    font-size: 17px;
    line-height: 28px;
  }
}
@media (min-width: 1200px) {
  .event_video .content p {
    font-size: 18px;
    line-height: 26px;
  }
}

.events {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .events {
    padding: 72px 0;
  }
}
@media (min-width: 1200px) {
  .events {
    padding: 82px 0;
  }
}
.events .filder_area {
  margin-bottom: 50px;
}
.events .filder_area .input-group {
  background: #fbfbfb;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  padding-left: 20px;
}
.events .filder_area .input-group .form-control {
  padding: 16px 20px 16px 0;
  background: transparent;
  border: 0;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-paragraph);
}
.events .filder_area .input-group .form-control:focus-visible, .events .filder_area .input-group .form-control:active, .events .filder_area .input-group .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.events .filder_area .input-group .input-group-text {
  padding: 0;
  border: 0;
  margin-right: 10px;
}
.events .filter_action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .events .filter_action {
    margin-top: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.events .filter_action .btn-group {
  width: 50%;
}
@media (min-width: 992px) {
  .events .filter_action .btn-group {
    width: auto;
  }
}
.events .filter_action .btn {
  background: #fbfbfb;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 17px 20px;
  color: var(--color-paragraph);
  width: 50%;
}
@media (min-width: 992px) {
  .events .filter_action .btn {
    width: auto;
  }
}
.events .filter_action .btn img {
  margin-right: 5px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.events .custom_col:last-child .card {
  margin-bottom: 0;
}
.events .card {
  border: 0;
  padding: 0 20px;
  background: #f4f9ff;
  border-radius: 10px;
  margin-top: 50px;
  margin-bottom: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.events .card:hover {
  background: var(--white);
  -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
}
.events .card:hover .btn {
  color: var(--white);
  background: var(--color-primary);
}
.events .card:hover .btn img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.events .card:hover .categories {
  color: var(--color-primary);
  background: var(--white);
}
.events .card:hover .hover_icon {
  opacity: 1;
}
.events .card .btn img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.events .card .btn:hover {
  color: var(--white) !important;
  background: var(--color-primary) !important;
}
.events .card .btn:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.events .card .card-title {
  font-size: 20px;
  line-height: 30px;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
}
@media (min-width: 768px) {
  .events .card .card-title {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 992px) {
  .events .card .card-title {
    font-size: 21px;
    line-height: 31px;
  }
}
@media (min-width: 1200px) {
  .events .card .card-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.events .card .image_area {
  margin-top: -50px;
  position: relative;
}
.events .card .image_area img {
  border-radius: 10px;
}
.events .card .event_fee,
.events .card .categories {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  padding: 4px 12px;
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-primary);
  border-radius: 5px;
  color: var(--white);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.events .card .event_fee {
  top: auto;
  left: auto;
  right: 10px;
  bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}
.events .card .btn {
  background: var(--color-primary);
  color: #fff;
}
.events .card .hover_icon {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: var(--white);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.events .card .card-body {
  padding: 13px 0 32px;
}
.events .card p,
.events .card .card-text {
  margin: 5px 0 12px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--color-paragraph);
}
@media (min-width: 768px) {
  .events .card p,
  .events .card .card-text {
    font-size: 15px;
    line-height: 24px;
    margin: 5px 0 13px;
  }
}
@media (min-width: 992px) {
  .events .card p,
  .events .card .card-text {
    font-size: 15.5px;
    line-height: 25px;
  }
}
@media (min-width: 1200px) {
  .events .card p,
  .events .card .card-text {
    font-size: 16px;
    line-height: 28px;
    margin: 5px 0 15px;
  }
}
.events .card .redOutlineBtn {
  font-family: var(--font-default);
  font-weight: 600;
  font-size: 18px;
  line-height: 0.5;
  text-transform: uppercase;
  padding: 18px 24px;
}

.call_to_action {
  background-color: var(--color-primary);
  background-image: url("../img/bg_vector.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 45px 0 55px;
}
@media (min-width: 768px) {
  .call_to_action {
    padding: 55px 0 70px;
  }
}
@media (min-width: 1200px) {
  .call_to_action {
    padding: 65px 0 80px;
  }
}
.call_to_action h2 {
  line-height: 46px;
  font-weight: 400;
  color: var(--white);
}
@media (min-width: 768px) {
  .call_to_action h2 {
    line-height: 58px;
  }
}
@media (min-width: 1200px) {
  .call_to_action h2 {
    line-height: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .call_to_action h2 {
    font-size: 45px;
  }
}
.call_to_action .btn:hover {
  background: var(--white) !important;
  color: var(--color-heading) !important;
}

.event_details {
  padding: 60px 0 80px;
}
@media (min-width: 768px) {
  .event_details {
    padding: 80px 0 110px;
  }
}
@media (min-width: 1200px) {
  .event_details {
    padding: 98px 0 132px;
  }
}
.event_details .section_title {
  margin-top: -10px;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .event_details .section_title {
    margin-top: -18px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .event_details .section_title span {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .event_details .section_title .title {
    font-size: 40px;
    line-height: 50px;
  }
}
.event_details .image_area {
  border-radius: 20px;
  overflow: hidden;
}
.event_details .right_content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.event_details .block {
  padding: 25px;
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 50px 0px #ffdae0;
          box-shadow: 0px 0px 50px 0px #ffdae0;
}
@media (min-width: 768px) {
  .event_details .block {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .event_details .block {
    padding: 50px;
  }
}
.event_details .inner_block {
  margin-top: 25px;
}
@media (min-width: 992px) {
  .event_details .inner_block {
    padding-left: 40px;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .event_details .inner_block p {
    margin-bottom: 0 !important;
  }
}
.event_details .inner_block h1,
.event_details .inner_block h2,
.event_details .inner_block h3,
.event_details .inner_block h4,
.event_details .inner_block h5,
.event_details .inner_block h6 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .event_details .inner_block h1,
  .event_details .inner_block h2,
  .event_details .inner_block h3,
  .event_details .inner_block h4,
  .event_details .inner_block h5,
  .event_details .inner_block h6 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1200px) {
  .event_details .inner_block h1,
  .event_details .inner_block h2,
  .event_details .inner_block h3,
  .event_details .inner_block h4,
  .event_details .inner_block h5,
  .event_details .inner_block h6 {
    font-size: 24px;
    line-height: 32px;
  }
}
.event_details .inner_block p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--font-default);
  color: var(--color-paragraph);
}
@media (min-width: 768px) {
  .event_details .inner_block p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (min-width: 1200px) {
  .event_details .inner_block p {
    font-size: 20px;
    line-height: 30px;
  }
}
.event_details .pricing_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}
.event_details .pricing_area .title {
  font-size: 18px;
  font-weight: 600;
}
.event_details .pricing_area .event_fee {
  background: var(--color-primary);
  color: #FFF;
  padding: 5px 20px;
  font-weight: 700;
  font-size: 18px;
}
.event_details .action_btn {
  margin-top: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .event_details .action_btn {
    margin-top: 20px !important;
  }
}

.eventRegistration .modal-content {
  max-width: 650px;
}
.eventRegistration .modal-content .btn-close {
  width: 20px;
  height: 20px;
  font-size: 10px;
  border: 0;
  -webkit-filter: invert(1) brightness(200%);
          filter: invert(1) brightness(200%);
  background-color: transparent !important;
  border: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.eventRegistration .modal-content .title {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #DDD;
  background-color: var(--color-primary);
  background-image: url(../img/bg_vector.png);
  background-position: center center;
}
.eventRegistration .modal-content .title h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  color: #fff;
}
.eventRegistration .modal-content .content_area {
  padding: 20px;
}
.eventRegistration .modal-content .section_title {
  font-size: 22px;
  margin-bottom: 10px;
  text-align: left;
}
.eventRegistration .modal-content .event_name,
.eventRegistration .modal-content .event_location {
  font-size: 14px;
}
.eventRegistration .modal-content .action_area {
  margin-top: 20px;
}
.eventRegistration .modal-content .action_area p {
  font-size: 18px;
}
.eventRegistration .modal-content .action_area p small {
  font-size: 14px;
  margin-top: 2px;
}
.eventRegistration .modal-content .action_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  opacity: 0.7;
  border-radius: 20px;
}
.eventRegistration .modal-content .action_btn:hover {
  border-color: var(--color-primary);
  opacity: 1;
}
.eventRegistration .modal-content .icon_area {
  background-color: #f3f4f6;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.eventRegistration .modal-content .icon_area i {
  color: #6a7181;
  font-size: 26px;
}
.eventRegistration .modal-content .active_user {
  opacity: 1;
}
.eventRegistration .modal-content .active_user .icon_area {
  background: rgba(250, 39, 70, 0.1294117647);
}
.eventRegistration .modal-content .active_user .icon_area i {
  color: #fa2746;
}

.event_instructor {
  padding: 0 0;
}
.event_instructor .section_title {
  margin-bottom: 35px;
}
.event_instructor .right_content_area {
  background: #fff;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}
.event_instructor .right_content {
  padding: 40px 20px;
  background: var(--white);
  max-width: 770px;
}
@media (min-width: 768px) {
  .event_instructor .right_content {
    padding: 50px 35px;
  }
}
@media (min-width: 992px) {
  .event_instructor .right_content {
    padding: 55px 45px;
  }
}
@media (min-width: 1200px) {
  .event_instructor .right_content {
    padding: 64px 60px;
  }
}
.event_instructor .inner_title .title {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .event_instructor .inner_title .title {
    font-size: 28px;
    line-height: 44px;
  }
}
@media (min-width: 1200px) {
  .event_instructor .inner_title .title {
    font-size: 40px;
    line-height: 52px;
  }
}
.event_instructor .inner_title .subtitle {
  margin-bottom: 0;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .event_instructor .inner_title .subtitle {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 992px) {
  .event_instructor .inner_title .subtitle {
    font-size: 19px;
    line-height: 27px;
  }
}
@media (min-width: 1200px) {
  .event_instructor .inner_title .subtitle {
    font-size: 24px;
    line-height: 34px;
  }
}
.event_instructor .content {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-paragraph);
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid #e3e4e4;
  color: #49423e;
}
@media (min-width: 768px) {
  .event_instructor .content {
    font-size: 17px;
    line-height: 24px;
    margin-top: 25px;
    margin-bottom: 25px;
    padding-top: 25px;
  }
}
@media (min-width: 992px) {
  .event_instructor .content {
    font-size: 17.5px;
    line-height: 25px;
    margin-top: 28px;
    margin-bottom: 30px;
    padding-top: 30px;
  }
}
@media (min-width: 1200px) {
  .event_instructor .content {
    font-size: 18px;
    line-height: 26px;
    margin-top: 32px;
    margin-bottom: 35px;
    padding-top: 35px;
  }
}
.event_instructor .content_footer {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
}
.event_instructor .content_footer span {
  font-weight: 400;
  text-decoration: underline;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .event_instructor .content_footer {
    font-size: 22px;
    line-height: 28px;
  }
  .event_instructor .content_footer span {
    font-size: 17px;
    line-height: 28px;
  }
}
@media (min-width: 992px) {
  .event_instructor .content_footer {
    font-size: 23px;
    line-height: 29px;
  }
  .event_instructor .content_footer span {
    font-size: 17.5px;
    line-height: 29px;
  }
}
@media (min-width: 1200px) {
  .event_instructor .content_footer {
    font-size: 20px;
    line-height: 26px;
  }
  .event_instructor .content_footer span {
    font-size: 18px;
    line-height: 26px;
  }
}

.event_begins {
  background-color: var(--white);
  background-image: url("../img/pink_bg_vector.png");
  background-position: center center;
  position: relative;
}
.event_begins .days_count {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .event_begins .days_count {
    padding: 0;
  }
}
.event_begins .days_count .title {
  font-size: 22px;
  height: auto;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .event_begins .days_count .title {
    font-size: 26px;
    margin-bottom: 18px;
  }
}
@media (min-width: 1200px) {
  .event_begins .days_count .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.event_begins .countdown span {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .event_begins .countdown span {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (min-width: 1200px) {
  .event_begins .countdown span {
    font-size: 70px;
    line-height: 75px;
  }
}

.event_map iframe {
  border: 0;
  min-height: 660px;
  width: 100%;
  display: block;
}

.event_register .form_area .form-select,
.event_register .form_area .form-control {
  border-color: #D9D9D9;
  background: #F8F8F8;
  border-radius: 5px;
  font-size: 16px;
  line-height: 28px;
  padding: 0 17px;
}
.event_register .form_area .form-select:focus,
.event_register .form_area .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #001B2E;
  background: #F8F8F8;
}
.event_register .form_area select.form-select,
.event_register .form_area input.form-control {
  min-height: 50px;
}
.event_register .form_area textarea.form-control {
  padding: 10px 15px;
}
.event_register .form_area input[type=checkbox] {
  min-height: auto;
}
.event_register .form_area input[type=checkbox]:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.event_register .form_area a {
  color: var(--color-primary);
  font-weight: 600;
}
.event_register .card {
  padding: 10px;
}
@media (min-width: 992px) {
  .event_register .card {
    padding: 25px;
  }
}
.event_register .info_card {
  background: rgba(250, 39, 70, 0.1);
}
.event_register .info_card .title {
  font-size: 20px;
  margin-bottom: 25px;
}
.event_register .icon_area {
  background: rgba(250, 39, 70, 0.15);
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  color: rgba(250, 39, 70, 0.9);
  margin-right: 15px;
}
.event_register .card {
  -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
}
.event_register .card_title {
  margin-bottom: 25px;
}

.resources_section {
  padding: 60px 0 40px;
}
@media (min-width: 768px) {
  .resources_section {
    padding: 80px 0 50px;
  }
}
@media (min-width: 992px) {
  .resources_section {
    padding: 100px 0 60px;
  }
}
@media (min-width: 1200px) {
  .resources_section {
    padding: 120px 0 78px;
  }
}
.resources_section .section_title {
  margin: 0;
  text-align: left;
}
.resources_section .section_title .title {
  font-size: 30px;
  line-height: 42px;
  margin: 0;
}
.resources_section .red-outline-btn {
  font-size: 16px;
  padding: 10px 25px;
}
.resources_section .red-outline-btn:hover {
  color: var(--white) !important;
  background: var(--color-primary) !important;
}
.resources_section .red-outline-btn:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .resources_section .red-outline-btn {
    padding: 15px 25px;
  }
}
.resources_section .filder_area {
  margin-bottom: 30px;
}
.resources_section .filder_area .input-group {
  background: #fbfbfb;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  padding-left: 20px;
}
.resources_section .filder_area .input-group .form-control {
  padding: 16px 20px 16px 0;
  background: transparent;
  border: 0;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-paragraph);
}
.resources_section .filder_area .input-group .form-control:focus-visible, .resources_section .filder_area .input-group .form-control:active, .resources_section .filder_area .input-group .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.resources_section .filder_area .input-group .input-group-text {
  padding: 0;
  border: 0;
  margin-right: 10px;
}
.resources_section .filter_action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media (min-width: 768px) {
  .resources_section .filter_action {
    margin-top: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.resources_section .filter_action .btn-group {
  width: 50%;
}
@media (min-width: 992px) {
  .resources_section .filter_action .btn-group {
    width: auto;
  }
}
.resources_section .filter_action .btn {
  background: #fbfbfb;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 17px 20px;
  color: var(--color-paragraph);
  width: 100%;
}
@media (min-width: 992px) {
  .resources_section .filter_action .btn {
    width: auto;
  }
}
.resources_section .filter_action .btn img {
  margin-right: 5px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.resources_section .custom_col:last-child .card {
  margin-bottom: 0;
}
.resources_section .card {
  padding: 0;
  margin-bottom: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-color: #cdcdcd;
  border-radius: 10px;
}
.resources_section .card:hover {
  background: var(--white);
  -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
}
.resources_section .card:hover .btn {
  color: var(--white);
  background: var(--color-primary);
}
.resources_section .card:hover .btn img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.resources_section .card:hover .categories {
  color: var(--color-primary);
  background: var(--white);
}
.resources_section .card:hover .hover_icon {
  opacity: 1;
}
.resources_section .card .btn img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.resources_section .card .btn:hover {
  color: var(--white) !important;
  background: var(--color-primary) !important;
}
.resources_section .card .btn:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.resources_section .card .card-title {
  font-size: 18px;
  margin: 0;
  line-height: 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 17px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .resources_section .card .card-title {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 992px) {
  .resources_section .card .card-title {
    font-size: 21px;
    line-height: 31px;
  }
}
@media (min-width: 1200px) {
  .resources_section .card .card-title {
    font-size: 24px;
    line-height: 34px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .resources_section .card .card-title {
    font-size: 20px;
    line-height: 30px;
  }
}
.resources_section .card .image_area {
  position: relative;
}
.resources_section .card .categories {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 4px 12px;
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-primary);
  border-radius: 5px;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.resources_section .card .action_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.resources_section .card .isNew {
  width: 55px;
  height: 31px;
  background: #27a9fa;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}
.resources_section .card .hover_icon {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: var(--white);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.resources_section .card .card-body {
  padding: 20px;
}
@media (min-width: 768px) {
  .resources_section .card .card-body {
    padding: 21px 30px 30px;
  }
}
.resources_section .card .card-text {
  margin: 5px 0 12px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--color-paragraph);
}
@media (min-width: 768px) {
  .resources_section .card .card-text {
    font-size: 15px;
    line-height: 24px;
    margin: 5px 0 13px;
  }
}
@media (min-width: 992px) {
  .resources_section .card .card-text {
    font-size: 15.5px;
    line-height: 25px;
  }
}
@media (min-width: 1200px) {
  .resources_section .card .card-text {
    font-size: 16px;
    line-height: 28px;
    margin: 5px 0 15px;
  }
}
.resources_section .card .redOutlineBtn {
  font-family: var(--font-default);
  font-weight: 600;
  font-size: 18px;
  line-height: 0.5;
  text-transform: uppercase;
  padding: 18px 24px;
}

.articale_page {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .articale_page {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  .articale_page {
    padding: 90px 0;
  }
}
@media (min-width: 1200px) {
  .articale_page {
    padding: 120px 0;
  }
}
.articale_page .filder_area {
  margin-bottom: 50px;
}
.articale_page .pagination_nav {
  margin-top: 30px;
}

.article_details h1 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .article_details h1 {
    font-size: 46px;
    line-height: 58px;
  }
}
@media (min-width: 1200px) {
  .article_details h1 {
    font-size: 60px;
    line-height: 72px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .article_details h1 {
    font-size: 50px;
    line-height: 60px;
  }
}
.article_details h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .article_details h2 {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (min-width: 1200px) {
  .article_details h2 {
    font-size: 48px;
    line-height: 60px;
  }
}
.article_details h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .article_details h3 {
    font-size: 32px;
    line-height: 44px;
  }
}
@media (min-width: 1200px) {
  .article_details h3 {
    font-size: 40px;
    line-height: 52px;
  }
}
.article_details h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .article_details h4 {
    font-size: 26px;
    line-height: 38px;
  }
}
@media (min-width: 1200px) {
  .article_details h4 {
    font-size: 32px;
    line-height: 44px;
  }
}
.article_details h5 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .article_details h5 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 1200px) {
  .article_details h5 {
    font-size: 24px;
    line-height: 34px;
  }
}
.article_details h6 {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .article_details h6 {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (min-width: 1200px) {
  .article_details h6 {
    font-size: 20px;
    line-height: 30px;
  }
}
.article_details p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .article_details p {
    font-size: 17px;
    line-height: 27px;
  }
}
@media (min-width: 1200px) {
  .article_details p {
    font-size: 18px;
    line-height: 28px;
  }
}
.article_details .details {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .article_details .details {
    padding: 45px 60px;
  }
}
@media (min-width: 1200px) {
  .article_details .details {
    padding: 55px 94px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .article_details .details {
    padding: 55px 55px;
  }
}
.article_details .details img {
  margin: 0 5px 37px 0;
}
.article_details .meta {
  margin: 12px 0 15px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .article_details .meta {
    margin: 25px 0 28px;
  }
}
.article_details .meta li {
  font-size: 16px !important;
  line-height: 26px !important;
  color: #656565 !important;
}
@media (min-width: 768px) {
  .article_details .meta li {
    padding-right: 10px;
    margin-right: 10px !important;
    border-right: 1px solid #c0c0c0;
  }
  .article_details .meta li:last-child {
    margin-right: 0 !important;
    padding-right: 0;
    border: 0;
  }
}
.article_details .meta li strong {
  font-weight: 600;
  color: var(--color-heading);
}
@media (min-width: 768px) {
  .article_details .meta {
    margin: 27px 0 30px;
  }
  .article_details .meta li {
    font-size: 17px !important;
    line-height: 27px !important;
    padding-right: 12px;
    margin-right: 12px !important;
  }
}
@media (min-width: 1200px) {
  .article_details .meta {
    margin: 29px 0 33px;
  }
  .article_details .meta li {
    font-size: 18px !important;
    line-height: 28px !important;
    padding-right: 15px;
    margin-right: 15px !important;
  }
}

.supporter_exclusive {
  background: #fbfbfb;
  text-align: center;
}
.supporter_exclusive .block .title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-heading);
  margin-bottom: 10px;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .supporter_exclusive .block .title {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1200px) {
  .supporter_exclusive .block .title {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 13px;
  }
}
.supporter_exclusive .block .content {
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .supporter_exclusive .block .content {
    font-size: 17px;
    line-height: 27px;
  }
}
@media (min-width: 1200px) {
  .supporter_exclusive .block .content {
    font-size: 18px;
    line-height: 28px;
  }
}
.supporter_exclusive .block .action_area {
  margin: 25px auto 0;
  max-width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .supporter_exclusive .block .action_area {
    margin: 30px auto 0;
    max-width: 360px;
    gap: 10px;
  }
}
@media (min-width: 1200px) {
  .supporter_exclusive .block .action_area {
    margin: 32px auto 0;
    max-width: 400px;
    gap: 12px;
  }
}
.supporter_exclusive .block .red-outline-btn:hover {
  color: var(--white) !important;
  background: var(--color-primary) !important;
}
.supporter_exclusive .block .btn-secondary {
  padding: 14px 30px;
}

.contact_us .card {
  border: 0;
  -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px) {
  .contact_us .card {
    height: 100%;
  }
}
.contact_us .card .card-body {
  padding: 25px;
}
@media (min-width: 768px) {
  .contact_us .card .card-body {
    padding: 38px;
  }
}
@media (min-width: 992px) {
  .contact_us .card .card-body {
    padding: 45px;
  }
}
@media (min-width: 1200px) {
  .contact_us .card .card-body {
    padding: 50px;
  }
}
.contact_us .left_side {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .contact_us .left_side {
    margin-bottom: 0;
  }
}
.contact_us .left_side .content {
  margin-bottom: 17px;
}
@media (min-width: 768px) {
  .contact_us .left_side .content {
    padding-right: 15px;
  }
}
.contact_us .left_side .card-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-heading);
}
.contact_us .left_side .card-text {
  font-size: 16px;
  line-height: 28px;
  font-family: var(--font-default);
  color: var(--color-paragraph);
  text-transform: capitalize;
}
.contact_us .left_side .contact_info {
  margin-bottom: 26px;
  padding-bottom: 22px;
  padding-right: 15px;
  border-bottom: 1px solid #E9E9E9;
}
.contact_us .left_side .contact_info:hover .icon_area img {
  /* Hover color FA2746 */
  -webkit-filter: invert(32%) sepia(84%) saturate(5661%) hue-rotate(340deg) brightness(96%) contrast(97%);
          filter: invert(32%) sepia(84%) saturate(5661%) hue-rotate(340deg) brightness(96%) contrast(97%);
}
.contact_us .left_side .contact_info:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.contact_us .left_side .contact_info .content {
  margin: 0 0 0 8px;
}
.contact_us .left_side .contact_info .content .title {
  font-size: 16px;
  line-height: 28px;
  color: var(--color-paragraph);
}
.contact_us .left_side .contact_info .content a {
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  font-family: var(--font-default);
}
.contact_us .left_side .contact_info .content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-family: var(--font-default);
  margin: 0;
  color: var(--color-heading);
}
.contact_us .left_side .contact_info .icon_area {
  width: 45px;
  height: 45px;
  border: 1px solid #ECECEC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  margin-top: 4px;
}
.contact_us .left_side .social_media {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .contact_us .left_side .social_media {
    margin-top: 45px;
  }
}
.contact_us .left_side .social_media .title {
  color: #797979;
  margin-bottom: 15px;
  margin-right: 25px;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 1200px) {
  .contact_us .left_side .social_media .title {
    margin-bottom: 0;
  }
}
.contact_us .left_side .social_media .social_media_links {
  gap: 9px;
}
.contact_us .right_side .card-body {
  padding: 25px;
}
@media (min-width: 768px) {
  .contact_us .right_side .card-body {
    padding: 38px;
  }
}
@media (min-width: 992px) {
  .contact_us .right_side .card-body {
    padding: 45px;
  }
}
@media (min-width: 1200px) {
  .contact_us .right_side .card-body {
    padding: 40px;
  }
}
.contact_us .right_side .card-title {
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-heading);
}
.contact_us .right_side .card-text {
  font-size: 16px;
  line-height: 28px;
  font-family: var(--font-default);
  color: var(--color-paragraph);
  text-transform: capitalize;
  max-width: 85%;
}
.contact_us .right_side .form_area {
  margin-top: 25px;
}
.contact_us .right_side .form_area input {
  margin-bottom: 22px;
}
.contact_us .right_side .form_area .form-control {
  border-color: #D9D9D9;
  background: #F8F8F8;
  border-radius: 5px;
  font-size: 16px;
  line-height: 28px;
  padding: 0 17px;
}
.contact_us .right_side .form_area .form-control::-webkit-input-placeholder {
  color: #949494;
  opacity: 1;
}
.contact_us .right_side .form_area .form-control::-moz-placeholder {
  color: #949494;
  opacity: 1;
}
.contact_us .right_side .form_area .form-control:-ms-input-placeholder {
  color: #949494;
  opacity: 1;
}
.contact_us .right_side .form_area .form-control::-ms-input-placeholder {
  color: #949494;
  opacity: 1;
}
.contact_us .right_side .form_area .form-control::placeholder {
  color: #949494;
  opacity: 1;
}
.contact_us .right_side .form_area .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #001B2E;
  background: #F8F8F8;
}
.contact_us .right_side textarea.form-control {
  min-height: 150px;
  padding: 10px 17px !important;
}
.contact_us .right_side .action_area {
  margin-top: 20px;
}
.contact_us .right_side .action_area .btn {
  text-transform: capitalize;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 26px;
}

.event_map iframe {
  border: 0;
  min-height: 660px;
  width: 100%;
  display: block;
}

.single_podcast .image_area {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .single_podcast .image_area {
    margin-bottom: 38px;
  }
}
@media (min-width: 1200px) {
  .single_podcast .image_area {
    margin-bottom: 45px;
  }
}
.single_podcast .left_area .title {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .single_podcast .left_area .title {
    font-size: 46px;
    line-height: 58px;
    margin-bottom: 9px;
  }
}
@media (min-width: 1200px) {
  .single_podcast .left_area .title {
    font-size: 60px;
    line-height: 73px;
    margin-bottom: 10px;
  }
}
.single_podcast .left_area p {
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .single_podcast .left_area p {
    font-size: 17px;
    line-height: 27px;
  }
}
@media (min-width: 1200px) {
  .single_podcast .left_area p {
    font-size: 18px;
    line-height: 28px;
    padding-right: 40px;
  }
}
.single_podcast .left_area .bottom_area {
  margin-top: 30px;
}
.single_podcast .left_area .bottom_area .title {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .single_podcast .left_area .bottom_area .title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 14px;
  }
}
@media (min-width: 1200px) {
  .single_podcast .left_area .bottom_area .title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 15px;
  }
}
.single_podcast .left_area .bottom_area .links div {
  gap: 20px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .single_podcast .left_area .bottom_area .links div {
    gap: 25px;
    margin-bottom: 15px;
  }
}
@media (min-width: 1200px) {
  .single_podcast .left_area .bottom_area .links div {
    gap: 30px;
    margin-bottom: 18px;
  }
}
@media (min-width: 768px) {
  .single_podcast .left_area .bottom_area {
    margin-top: 38px;
  }
}
@media (min-width: 1200px) {
  .single_podcast .left_area .bottom_area {
    margin-top: 46px;
  }
}
.single_podcast .right_area {
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 992px) {
  .single_podcast .right_area {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .single_podcast .right_area {
    padding-left: 30px;
  }
}

.latest_episode {
  background: #f3f5ff;
  text-align: center;
}
.latest_episode .section_title {
  text-align: center;
  max-width: 90%;
  margin: 0 auto 18px;
}
.latest_episode .section_title .title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 18px;
  margin-top: 0;
}
@media (min-width: 768px) {
  .latest_episode .section_title .title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .latest_episode .section_title .title {
    font-size: 40px;
    line-height: 28px;
    margin-bottom: 24px;
  }
}
.latest_episode .section_title p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-paragraph);
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .latest_episode .section_title p {
    font-size: 17px;
    line-height: 27px;
  }
}
@media (min-width: 1200px) {
  .latest_episode .section_title p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .latest_episode .section_title {
    max-width: 70%;
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .latest_episode .section_title {
    max-width: 55%;
    margin-bottom: 22px;
  }
}
.latest_episode .video_area {
  position: relative;
}
.latest_episode .video_area .youtube_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 60px;
}
@media (min-width: 768px) {
  .latest_episode .video_area .youtube_btn {
    max-width: 100%;
  }
}

.potcast_section {
  padding-top: 0;
}
.potcast_section .section_title {
  margin: 0;
  text-align: left;
}
.potcast_section .section_title .title {
  font-size: 28px;
  line-height: 38px;
  margin: 0;
}
@media (min-width: 768px) {
  .potcast_section .section_title .title {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (min-width: 1200px) {
  .potcast_section .section_title .title {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (min-width: 768px) {
  .potcast_section .section_title {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .potcast_section .section_title {
    margin: 0;
  }
}
.potcast_section .red-outline-btn {
  font-size: 16px;
  padding: 10px 25px;
}
.potcast_section .red-outline-btn:hover {
  color: var(--white) !important;
  background: var(--color-primary) !important;
}
.potcast_section .red-outline-btn:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .potcast_section .red-outline-btn {
    padding: 15px 25px;
  }
}
.potcast_section .filder_area {
  margin-bottom: 30px;
}
.potcast_section .categories {
  margin-top: 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 4px 12px;
  display: inline-block;
  background: var(--color-primary);
  border-radius: 5px;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.potcast_section .card {
  padding: 20px;
  min-height: 309px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-color: #cdcdcd;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-bottom: 25px;
}
.potcast_section .card:hover {
  background: #fff2f2;
}
@media (min-width: 768px) {
  .potcast_section .card {
    padding: 30px;
  }
}
.potcast_section .card .card-title {
  font-size: 18px;
  line-height: 26px;
  margin: 12px 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .potcast_section .card .card-title {
    font-size: 22px;
    line-height: 30px;
    margin: 12px 0 24px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .potcast_section .card .card-title {
    font-size: 20px;
    line-height: 30px;
  }
}
.potcast_section .card .card-body {
  padding: 0;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.potcast_section .card .btn {
  background: transparent;
  text-transform: capitalize;
  border-color: var(--color-heading);
  color: var(--color-heading);
}

.potcast_list_page {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .potcast_list_page {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  .potcast_list_page {
    padding: 90px 0;
  }
}
@media (min-width: 1200px) {
  .potcast_list_page {
    padding: 120px 0;
  }
}
.potcast_list_page .filder_area {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .potcast_list_page .filder_area {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .potcast_list_page .filder_area .row {
    gap: 15px;
  }
}
.potcast_list_page .filder_area .input-group {
  background: #fbfbfb;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  padding-left: 20px;
}
.potcast_list_page .filder_area .input-group .form-control {
  padding: 16px 20px 16px 0;
  background: transparent;
  border: 0;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-paragraph);
}
.potcast_list_page .filder_area .input-group .form-control:focus-visible, .potcast_list_page .filder_area .input-group .form-control:active, .potcast_list_page .filder_area .input-group .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.potcast_list_page .filder_area .input-group .input-group-text {
  padding: 0;
  border: 0;
  margin-right: 10px;
}
.potcast_list_page .filter_action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media (min-width: 768px) {
  .potcast_list_page .filter_action {
    margin-top: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.potcast_list_page .filter_action .btn-group {
  width: 50%;
}
@media (min-width: 992px) {
  .potcast_list_page .filter_action .btn-group {
    width: auto;
  }
}
.potcast_list_page .filter_action .btn {
  background: #fbfbfb;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 17px 20px;
  color: var(--color-paragraph);
  width: 100%;
}
@media (min-width: 992px) {
  .potcast_list_page .filter_action .btn {
    width: auto;
  }
}
.potcast_list_page .filter_action .btn img {
  margin-right: 5px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.potcast_list_page .pagination_nav {
  margin-top: 30px;
}

#podcast_audio_section .podcast_area {
  background: #F6F9FF;
  border-radius: 20px;
  padding: 15px;
}
@media (min-width: 768px) {
  #podcast_audio_section .podcast_area {
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  #podcast_audio_section .podcast_area {
    padding: 50px 105px 75px;
  }
}
#podcast_audio_section .podcast_area .player_area {
  gap: 26px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #podcast_audio_section .podcast_area .player_area {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  #podcast_audio_section .podcast_area .player_area {
    margin-bottom: 60px;
  }
}
#podcast_audio_section .podcast_area .image_area {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  #podcast_audio_section .podcast_area .image_area {
    width: 175px;
    height: 160px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  #podcast_audio_section .podcast_area .image_area {
    width: 220px;
    height: 220px;
  }
}
#podcast_audio_section .podcast_area .control_area .audio_info {
  margin-bottom: 15px;
  text-align: center;
}
@media (min-width: 768px) {
  #podcast_audio_section .podcast_area .control_area .audio_info {
    text-align: left;
  }
}
@media (min-width: 992px) {
  #podcast_audio_section .podcast_area .control_area .audio_info {
    margin-bottom: 28px;
  }
}
#podcast_audio_section .podcast_area .control_area .audio_info .title {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--font-heading);
  color: var(--color-heading);
  margin-bottom: 11px;
}
@media (min-width: 768px) {
  #podcast_audio_section .podcast_area .control_area .audio_info .title {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  #podcast_audio_section .podcast_area .control_area .audio_info .title {
    font-size: 30px;
    line-height: 28px;
    margin-bottom: 5px;
  }
}
#podcast_audio_section .podcast_area .control_area .audio_info .meta ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#podcast_audio_section .podcast_area .control_area .audio_info .meta ul li {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 6px;
  padding-right: 12px;
  position: relative;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-paragraph);
}
@media (min-width: 992px) {
  #podcast_audio_section .podcast_area .control_area .audio_info .meta ul li {
    font-size: 18px;
  }
}
#podcast_audio_section .podcast_area .control_area .audio_info .meta ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background: var(--color-paragraph);
}
#podcast_audio_section .podcast_area .control_area .audio_info .meta ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
#podcast_audio_section .podcast_area .control_area .audio_info .meta ul li:last-child::before {
  display: none;
}
#podcast_audio_section .podcast_area .control_area .audio_control {
  gap: 18px;
}
@media (min-width: 992px) {
  #podcast_audio_section .podcast_area .control_area .audio_control {
    gap: 25px;
  }
}
#podcast_audio_section .podcast_area .control_area .audio_control .play_icon {
  width: 65px;
  height: 65px;
  background: #F92222;
  border-radius: 100%;
  border: 0;
  padding: 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  #podcast_audio_section .podcast_area .control_area .audio_control .play_icon {
    width: 70px;
    height: 70px;
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  #podcast_audio_section .podcast_area .control_area .audio_control .play_icon {
    width: 80px;
    height: 80px;
    font-size: 24px;
  }
}
#podcast_audio_section .podcast_area .control_area .audio_control .play_icon:hover {
  background: var(--color-secondary);
}
#podcast_audio_section .podcast_area .control_area .audio_control .play_icon i.fa-play {
  margin-left: 5px;
}
#podcast_audio_section .podcast_area .control_area .audio_control .total_duration,
#podcast_audio_section .podcast_area .control_area .audio_control .count_duration {
  font-size: 14px;
  line-height: 28px;
  font-family: var(--font-default);
}
#podcast_audio_section .podcast_area .control_area .audio_control .duration_bar {
  height: 4px;
  background: #BFBFBF;
  border-radius: 3px;
  margin-top: 4px;
  margin-bottom: 15px;
  cursor: pointer;
}
#podcast_audio_section .podcast_area .control_area .audio_control .volume_area {
  width: 120px;
  margin-right: 10px;
  gap: 8px;
}
#podcast_audio_section .podcast_area .control_area .audio_control .volume_area .volume_icon {
  width: 20px;
}
#podcast_audio_section .podcast_area .control_area .audio_control .volume_slider {
  width: 100%;
  height: 5px;
  min-height: 5px;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(100%, var(--color-primary)), to(#dcdcdc));
  background: linear-gradient(to right, var(--color-primary) 100%, #dcdcdc 100%);
  outline: none;
}
#podcast_audio_section .podcast_area .control_area .audio_control {
  /* Chrome/Edge */
}
#podcast_audio_section .podcast_area .control_area .audio_control .volume_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  height: 14px;
  width: 14px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
}
#podcast_audio_section .podcast_area .control_area .audio_control {
  /* Firefox */
}
#podcast_audio_section .podcast_area .control_area .audio_control .volume_slider::-moz-range-thumb {
  height: 14px;
  width: 14px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
}
#podcast_audio_section .podcast_area .control_area .audio_control .progress_bar {
  width: 0;
  height: 4px;
  background: var(--color-primary);
  border-radius: 3px;
  margin-top: 4px;
  margin-bottom: 15px;
}
#podcast_audio_section .podcast_area .control_area .audio_control .duration_control .btn {
  padding: 0;
  color: #787373;
  margin-right: 20px;
  font-size: 16px;
}
#podcast_audio_section .podcast_area .control_area .audio_control .duration_control .btn:last-child {
  margin-right: 0;
}
#podcast_audio_section .podcast_area .control_area .audio_control .duration_control i:hover {
  color: var(--color-primary);
}
#podcast_audio_section .podcast_area .podcast_list_area .title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  font-family: var(--font-default);
  color: var(--color-heading);
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  #podcast_audio_section .podcast_area .podcast_list_area .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
#podcast_audio_section .podcast_area .podcast_list_area .podcast_list .item {
  gap: 15px;
  padding: 15px;
  border-radius: 5px;
  background: #E9E9E9;
  margin-bottom: 10px;
}
#podcast_audio_section .podcast_area .podcast_list_area .podcast_list .item:last-child {
  margin-bottom: 0;
}
#podcast_audio_section .podcast_area .podcast_list_area .podcast_list .item .play_icon {
  width: 40px;
  height: 40px;
  background: #F92222;
  border-radius: 100%;
  border: 0;
  padding: 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 992px) {
  #podcast_audio_section .podcast_area .podcast_list_area .podcast_list .item .play_icon {
    width: 50px;
    height: 50px;
  }
}
#podcast_audio_section .podcast_area .podcast_list_area .podcast_list .item .play_icon:hover {
  background: var(--color-secondary);
}
#podcast_audio_section .podcast_area .podcast_list_area .podcast_list .item .play_icon i.fa-play {
  margin-left: 5px;
}
#podcast_audio_section .podcast_area .podcast_list_area .podcast_list .item .item_duration,
#podcast_audio_section .podcast_area .podcast_list_area .podcast_list .item .item_title {
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-heading);
  text-transform: capitalize;
}
@media (min-width: 992px) {
  #podcast_audio_section .podcast_area .podcast_list_area .podcast_list .item .item_duration,
  #podcast_audio_section .podcast_area .podcast_list_area .podcast_list .item .item_title {
    line-height: 28px;
  }
}
#podcast_audio_section .podcast_area .podcast_list_area .podcast_list .item .item_title {
  font-size: 16px;
  line-height: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 992px) {
  #podcast_audio_section .podcast_area .podcast_list_area .podcast_list .item .item_title {
    font-size: 20px;
    line-height: 24px;
  }
}
#podcast_audio_section .podcast_area .podcast_list_area .podcast_list .item .item_duration {
  color: #616161;
  font-weight: 500;
  margin-top: 5px;
  font-size: 16px;
}
@media (min-width: 992px) {
  #podcast_audio_section .podcast_area .podcast_list_area .podcast_list .item .item_duration {
    font-size: 20px;
    line-height: 24px;
  }
}

.explore_membership .section_title .title {
  margin-top: 0;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .explore_membership .section_title .title {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .explore_membership .section_title .title {
    margin-bottom: 22px;
  }
}
.explore_membership .section_title .content {
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .explore_membership .section_title .content {
    font-size: 17px;
    line-height: 26px;
    max-width: 600px;
  }
}
@media (min-width: 1200px) {
  .explore_membership .section_title .content {
    font-size: 18px;
    line-height: 28px;
    max-width: 700px;
  }
}
.explore_membership .video_area {
  text-align: center;
  position: relative;
}
.explore_membership .video_area .youtube_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 60px;
}
@media (min-width: 768px) {
  .explore_membership .video_area .youtube_btn {
    max-width: 100%;
  }
}
.explore_membership .membership_fetures {
  margin-top: 40px;
}
.explore_membership .membership_fetures .block {
  background: #fff9f9;
  padding: 40px 20px;
  border-radius: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .explore_membership .membership_fetures .block {
    padding: 55px 30px;
  }
}
@media (min-width: 1200px) {
  .explore_membership .membership_fetures .block {
    padding: 65px 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .explore_membership .membership_fetures .block {
    padding: 40px 30px;
  }
}
.explore_membership .membership_fetures .block:hover {
  -webkit-box-shadow: 0 0 0 2px var(--color-primary) inset;
          box-shadow: 0 0 0 2px var(--color-primary) inset;
}
.explore_membership .membership_fetures .block:hover .btn {
  background: #ffdde2;
}
.explore_membership .membership_fetures .block:hover .icon_area {
  background: var(--color-primary);
}
.explore_membership .membership_fetures .block .icon_area {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: #ffdde2;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.explore_membership .membership_fetures .block .content {
  margin-top: 18px;
}
@media (min-width: 768px) {
  .explore_membership .membership_fetures .block .content {
    margin-top: 20px;
  }
}
@media (min-width: 1200px) {
  .explore_membership .membership_fetures .block .content {
    margin-top: 22px;
  }
}
.explore_membership .membership_fetures .block .content .title {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  font-family: var(--font-heading);
  margin: 0;
}
@media (min-width: 1200px) {
  .explore_membership .membership_fetures .block .content .title {
    font-size: 24px;
  }
}
.explore_membership .membership_fetures .block .content p {
  font-size: 16px;
  line-height: 24px;
  margin: 10px 0 0;
}
@media (min-width: 768px) {
  .explore_membership .membership_fetures .block .content p {
    font-size: 18px;
    line-height: 26px;
    margin: 6px 0 20px;
  }
}
@media (min-width: 1200px) {
  .explore_membership .membership_fetures .block .content p {
    font-size: 20px;
    line-height: 28px;
    margin: 7px 0 22px;
  }
}
.explore_membership .membership_fetures .block .btn {
  background: transparent;
  border-width: 2px;
  border-color: #cecece;
  color: #252220;
  gap: 10px;
  font-size: 16px;
  padding: 12px 20px;
  line-height: 1;
  font-weight: 600;
}
.explore_membership .membership_fetures .block .btn:hover {
  color: var(--white);
}
.explore_membership .membership_fetures .action_btn {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .explore_membership .membership_fetures .action_btn {
    margin-top: 22px;
  }
}

#gcn_benefits {
  background: var(--color-primary);
}
#gcn_benefits .block {
  padding: 0;
  background: transparent;
}

.connect_network {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .connect_network .custom_col {
    width: 70%;
  }
}
.connect_network .block {
  background: rgba(255, 255, 255, 0.9);
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .connect_network .block {
    padding: 90px 60px;
  }
}
@media (min-width: 992px) {
  .connect_network .block {
    padding: 50px 50px;
  }
}
@media (min-width: 1200px) {
  .connect_network .block {
    padding: 120px 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .connect_network .block {
    padding: 60px 90px 70px;
  }
}
.connect_network .block .title {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .connect_network .block .title {
    font-size: 45px;
    line-height: 55px;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .connect_network .block .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .connect_network .block .title {
    font-size: 50px;
    line-height: 60px;
  }
}
.connect_network .block .media_object {
  margin-top: 36px;
}
.connect_network .block .media_object .item {
  gap: 14px;
  margin-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.connect_network .block .media_object .item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .connect_network .block .media_object .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .connect_network .block .media_object .item {
    gap: 30px;
  }
}
.connect_network .block .media_object .image_area {
  width: 100px;
  height: 100px;
  border: 2px solid var(--color-primary);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .connect_network .block .media_object .image_area {
    width: 80px;
    height: 80px;
  }
}
.connect_network .block .media_object .title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: var(--color-heading);
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .connect_network .block .media_object .title {
    font-size: 26px;
    line-height: 32px;
    margin: 0 0 5px;
  }
}
@media (min-width: 992px) {
  .connect_network .block .media_object .title {
    font-size: 30px;
    line-height: 38px;
    margin: 0 0 10px;
  }
}
.connect_network .block .media_object p {
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin: 0;
}
@media (min-width: 768px) {
  .connect_network .block .media_object p {
    font-size: 17px;
    line-height: 26px;
  }
}
@media (min-width: 1200px) {
  .connect_network .block .media_object p {
    font-size: 18px;
    line-height: 28px;
  }
}

.membership_slider_section .media_object {
  gap: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .membership_slider_section .media_object {
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .membership_slider_section .media_object {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .membership_slider_section .media_object {
    gap: 60px;
  }
}
.membership_slider_section p {
  font-size: 40px;
  line-height: 70px;
  font-weight: 600;
  margin-bottom: 0;
  font-family: var(--font-heading);
  color: var(--color-heading);
}
.membership_slider_section .content {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-heading);
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e8e8e8;
  text-align: center;
}
@media (min-width: 768px) {
  .membership_slider_section .content {
    font-size: 26px;
    line-height: 38px;
    margin-bottom: 35px;
    padding-bottom: 35px;
  }
}
@media (min-width: 992px) {
  .membership_slider_section .content {
    font-size: 32px;
    line-height: 52px;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .membership_slider_section .content {
    font-size: 40px;
    line-height: 70px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .membership_slider_section .content {
    font-size: 36px;
    line-height: 56px;
  }
}
.membership_slider_section .image_area {
  margin-top: 22px;
}
.membership_slider_section .image_area img {
  margin: 0 auto;
}
.membership_slider_section .author_img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  overflow: hidden;
}
.membership_slider_section .author {
  gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
@media (min-width: 992px) {
  .membership_slider_section .author {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
}
.membership_slider_section .author_content .title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-heading);
  margin: 0 0 6px;
}
@media (min-width: 768px) {
  .membership_slider_section .author_content .title {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  .membership_slider_section .author_content .title {
    font-size: 30px;
    line-height: 1;
  }
}
.membership_slider_section .author_content p {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  color: #8c8c8c;
}
@media (min-width: 768px) {
  .membership_slider_section .author_content p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 1200px) {
  .membership_slider_section .author_content p {
    font-size: 20px;
    line-height: 28px;
  }
}
.membership_slider_section .slick-dots {
  text-align: center;
  bottom: -50px;
}
@media (min-width: 992px) {
  .membership_slider_section .slick-dots {
    text-align: right;
    bottom: 10px;
  }
}
.membership_slider_section .slick-dots li {
  width: 28px;
  height: 28px;
  border: 1px solid transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.membership_slider_section .slick-dots li button {
  width: 8px;
  height: 8px;
}
.membership_slider_section .slick-dots li.slick-active {
  border-color: var(--color-primary);
}
.membership_slider_section .slick-dots li.slick-active button {
  background: var(--color-primary);
}
.membership_slider_section .trust_us {
  margin-top: 106px;
}

.milestones_area {
  background-color: var(--color-primary);
  background-image: url(../img/bg_vector.png);
  background-position: center center;
  padding-top: 0;
  margin-top: 120px;
}
.milestones_area .call_to_action {
  background: var(--white);
  padding: 0;
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  padding: 35px 25px;
  margin-top: -120px;
  margin-bottom: 62px;
}
@media (min-width: 768px) {
  .milestones_area .call_to_action {
    padding: 50px 45px;
    margin-top: -90px;
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .milestones_area .call_to_action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1200px) {
  .milestones_area .call_to_action {
    padding: 59px 65px 56px 65px;
    margin-top: -120px;
    margin-bottom: 62px;
    gap: 120px;
  }
}
.milestones_area .call_to_action .title {
  font-size: 28px;
  line-height: 42px;
  font-weight: 600;
  color: var(--color-heading);
  margin: 0;
}
@media (min-width: 768px) {
  .milestones_area .call_to_action .title {
    font-size: 36px;
    line-height: 56px;
  }
}
@media (min-width: 1200px) {
  .milestones_area .call_to_action .title {
    font-size: 45px;
    line-height: 72px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .milestones_area .call_to_action .title {
    font-size: 36px;
    line-height: 60px;
  }
}
.milestones_area .call_to_action p {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 24px;
  margin: 5px 0 15px;
  color: var(--color-paragraph);
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .milestones_area .call_to_action p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 1200px) {
  .milestones_area .call_to_action p {
    font-size: 20px;
    line-height: 28px;
  }
}
.milestones_area .call_to_action .action_btn {
  white-space: nowrap;
}
.milestones_area .call_to_action .action_btn .btn:hover {
  color: var(--white) !important;
  background: var(--color-primary) !important;
}
.milestones_area .section_title {
  text-align: center;
  margin-bottom: 35px;
}
.milestones_area .section_title .title {
  color: var(--white);
  margin-top: 0;
}
.milestones_area .milestones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .milestones_area .milestones {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}
.milestones_area .milestones .item {
  width: 150px;
  height: 150px;
  background: var(--white);
  background: linear-gradient(324deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .milestones_area .milestones .item {
    width: 180px;
  }
}
.milestones_area .milestones .block {
  padding: 15px;
}
.milestones_area .milestones .block .count {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  color: var(--color-heading);
  font-family: var(--font-heading);
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .milestones_area .milestones .block .count {
    font-size: 32px;
    line-height: 44px;
  }
}
@media (min-width: 1200px) {
  .milestones_area .milestones .block .count {
    font-size: 40px;
    line-height: 52px;
  }
}
.milestones_area .milestones .block .name {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: var(--color-heading);
  font-family: var(--font-heading);
}
@media (min-width: 768px) {
  .milestones_area .milestones .block .name {
    font-size: 18px;
    line-height: 25px;
  }
}
@media (min-width: 1200px) {
  .milestones_area .milestones .block .name {
    font-size: 20px;
    line-height: 28px;
  }
}

.upcoming_events {
  padding: 30px 0 60px;
}
@media (min-width: 768px) {
  .upcoming_events {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  .upcoming_events {
    padding: 90px 0;
  }
}
@media (min-width: 1200px) {
  .upcoming_events {
    padding: 120px 0;
  }
}
.upcoming_events .item .content_area {
  position: relative;
}
.upcoming_events .item .categories {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 4px 12px;
  background: var(--color-primary);
  border-radius: 5px;
  color: var(--white);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: inline-block;
}
.upcoming_events .item .card {
  background: transparent;
  border: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.upcoming_events .item .card .card-title {
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--white);
  margin: 6px 0 12px;
}
@media (min-width: 768px) {
  .upcoming_events .item .card .card-title {
    font-size: 26px;
    line-height: 36px;
    margin: 7px 0 14px;
  }
}
@media (min-width: 1200px) {
  .upcoming_events .item .card .card-title {
    font-size: 30px;
    line-height: 40px;
    margin: 8px 0 16px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .upcoming_events .item .card .card-title {
    font-size: 28px;
    line-height: 38px;
  }
}
.upcoming_events .item .card .card-body {
  padding: 30px;
}
@media (min-width: 768px) {
  .upcoming_events .item .card .card-body {
    padding: 45px;
  }
}
@media (min-width: 1200px) {
  .upcoming_events .item .card .card-body {
    padding: 60px;
  }
}
.upcoming_events .item .meta {
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .upcoming_events .slick-slide {
    margin: 0 20px;
  }
}
@media (min-width: 768px) {
  .upcoming_events .slick-list {
    margin: 0 -20px;
  }
}
.upcoming_events .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  background: var(--white);
  border: 0;
  width: 60px;
  height: 60px;
  line-height: 1;
  border-radius: 100px;
}
.upcoming_events .slick-arrow:hover {
  background: var(--color-primary);
}
.upcoming_events .slick-prev img,
.upcoming_events .slick-next img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.upcoming_events .slick-prev:hover img,
.upcoming_events .slick-next:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.upcoming_events .slick-prev {
  left: -30px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.upcoming_events .slick-next {
  right: -30px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.upcoming_events .slick-dots {
  bottom: -35px;
}
@media (min-width: 768px) {
  .upcoming_events .slick-dots {
    bottom: -20px;
  }
}

@media (min-width: 992px) {
  #our_champions {
    padding-bottom: 0;
  }
}
#our_champions .section_title {
  margin-bottom: 35px;
}
#our_champions .block {
  border-bottom: 1px solid #cdcdcd;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}
#our_champions .block:hover .name {
  color: var(--color-primary);
}
#our_champions .content {
  padding: 24px 0;
  background-position: center center;
  background: #f7f7f9;
  background-size: cover;
}
#our_champions .content .name {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: var(--color-heading);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#our_champions .content .designation {
  font-size: 18px;
  line-height: 26px;
  color: var(--color-paragraph);
}
#our_champions .footer_action {
  margin-top: 20px;
}
@media (min-width: 992px) {
  #our_champions .footer_action {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  #our_champions .footer_action {
    margin-top: 35px;
  }
}
/*# sourceMappingURL=style.css.map */