@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@400;500;700&display=swap");
* {
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  color: #242A2E;
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  background: #fff;
}

a {
  color: #242A2E;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:focus {
  outline: none;
}
a:hover {
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Geologica", sans-serif;
  margin: 0;
}

.link-btn {
  background: #FFC013;
  border-radius: 30px;
  padding: 10px 20px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  border: 1px solid #FFC013;
  display: flex;
  align-items: center;
  max-width: fit-content;
}
@media (max-width: 767px) {
  .link-btn {
    font-size: 14px;
  }
}
.link-btn svg {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .link-btn svg {
    width: 21px;
  }
}
.link-btn:hover {
  background: #fff;
  color: #FFC013;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

h1 {
  color: #FFC013;
  font-size: 70px;
  font-weight: 700;
  line-height: 70px;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 56px;
    line-height: 62px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 42px;
    line-height: 44px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 34px;
    line-height: 40px;
  }
}
h1 span {
  color: #FFC013;
}

h2 {
  font-size: 46px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  text-transform: capitalize;
  color: #242A2E;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 37px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}
h2 span {
  color: #FFC013;
}
h2 font {
  color: #055D62;
}

h3 {
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
}
@media (max-width: 991px) {
  h3 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

p {
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  p {
    font-size: 14px;
    line-height: 20px;
  }
}

.green-border-btn {
  border: 1px solid #055D62;
  background: rgba(255, 255, 255, 0.2);
}
.green-border-btn:hover {
  background: #055D62;
  border: 1px solid #055D62;
  color: #fff;
}
.green-border-btn:hover svg path:last-child {
  stroke: #fff;
}

.grey-border-btn {
  border: 1px solid #D9D9D9;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #242A2E;
}
.grey-border-btn:hover {
  background: #D9D9D9;
  color: #242A2E;
}

.transparent-btn {
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.transparent-btn svg path:last-child {
  stroke: #fff;
}
.transparent-btn:hover {
  background: #FFC013;
  color: #fff;
  border: 1px solid #FFC013;
}
.transparent-btn:hover svg path:first-child {
  fill: #fff;
}

h4 {
  font-size: 22px;
  font-weight: 500;
  color: #242A2E;
  margin: 0;
  margin-bottom: 10px;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.slick-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) !important;
  bottom: 70px;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  background-color: #F8F8F8;
  z-index: 9;
  right: auto;
  top: auto;
  bottom: 0;
}
@media (max-width: 991px) {
  .slick-arrow {
    width: 40px !important;
    height: 40px !important;
  }
}
.slick-arrow:before {
  content: "" !important;
}
.slick-arrow.slick-prev {
  background-image: url('data:image/svg+xml,<svg width="12" height="20" viewBox="0 0 12 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 18L2 10L10 2" stroke="%23242A2E" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  margin-left: -32px;
}
@media (max-width: 767px) {
  .slick-arrow.slick-prev {
    margin-left: -25px;
  }
}
.slick-arrow.slick-next {
  background-image: url('data:image/svg+xml,<svg width="12" height="20" viewBox="0 0 12 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 2L10 10L2 18" stroke="%23242A2E" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 32px;
}
@media (max-width: 767px) {
  .slick-arrow.slick-next {
    margin-left: 25px;
  }
}
.slick-arrow:hover, .slick-arrow:focus {
  background-color: #075D61 !important;
}
.slick-arrow:hover.slick-prev, .slick-arrow:focus.slick-prev {
  background-image: url('data:image/svg+xml,<svg width="12" height="20" viewBox="0 0 12 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 18L2 10L10 2" stroke="white" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}
.slick-arrow:hover.slick-next, .slick-arrow:focus.slick-next {
  background-image: url('data:image/svg+xml,<svg width="12" height="20" viewBox="0 0 12 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 2L10 10L2 18" stroke="white" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}
.slick-arrow:before {
  content: "";
}

.grid-block .slick-arrow {
  top: auto;
  width: 32px !important;
  height: 32px !important;
  left: 50%;
  right: auto;
  border: 1px solid #075D61;
  bottom: -50px !important;
  background-size: 10px !important;
  background-color: #fff;
}
.grid-block .slick-arrow::before {
  content: "" !important;
  opacity: 1 !important;
}

.center-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.center-heading p {
  font-weight: 300;
}

body.popup-open {
  overflow: hidden;
}

.event-list-header {
  padding: 20px 0 50px;
}
@media (max-width: 991px) {
  .event-list-header {
    padding: 20px 0 30px;
  }
}

.event-list-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 479px) {
  .event-list-header-inner {
    display: block;
  }
}
@media (max-width: 479px) {
  .event-list-header-inner .event-list-header-right {
    margin-top: 15px;
  }
}
.event-list-header-inner .event-list-header-right span {
  color: #242A2E;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  display: inline-block;
  font-family: "Geologica", sans-serif;
}
.event-list-header-inner .event-list-header-right .custom-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}
@media (max-width: 575px) {
  .event-list-header-inner .event-list-header-right .custom-dropdown {
    margin-left: 10px;
  }
}
.event-list-header-inner .event-list-header-right select {
  border: 1px solid #D9D9D9;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 15px 40px 15px 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="16" viewBox="0 0 15 16" fill="none"><path d="M3.75 6.125L7.5 9.875L11.25 6.125" stroke="%23242A2E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 20px center;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  color: #565051;
  font-size: 16px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  margin-left: 15px;
}
.event-list-header-inner .event-list-header-right select:focus-visible {
  outline: none;
  border: 1px solid #D9D9D9;
}
@media (max-width: 575px) {
  .event-list-header-inner .event-list-header-right select {
    padding: 10px 30px 10px 15px;
    font-size: 14px;
    background-position: right 15px center;
  }
}

.view-all-btn {
  margin-top: 50px;
}
.view-all-btn .link-btn {
  margin: 0 auto;
  padding: 9px 46px;
}

.iti.iti--allow-dropdown {
  width: 100% !important;
}

.iti__country-list {
  white-space: normal !important;
  z-index: 9 !important;
}
.iti__country-list .iti__country {
  width: 100%;
  min-width: 250px;
}
@media (max-width: 575px) {
  .iti__country-list .iti__country {
    min-width: 100%;
  }
}

.grey-bg {
  background: #F8F8F8;
}
.grey-bg .event-card {
  background: #fff;
}

.no-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
}

html, body {
  touch-action: manipulation;
}

.image-section {
  touch-action: manipulation;
}

.below-hero {
  background: linear-gradient(3600deg, rgba(17, 93, 98, 0) -44.99%, #115D62 49.91%);
  position: relative;
  padding: 60px 0 203px;
}
@media (max-width: 767px) {
  .below-hero {
    max-height: initial;
  }
}
.below-hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/freedom_center/images/pattern.svg") no-repeat;
  z-index: -1;
  background-size: cover;
}
.below-hero .below-hero-header {
  text-align: center;
  color: #fff;
  max-width: 1060px;
  margin: 0 auto;
}
.below-hero .below-hero-header p {
  max-width: 625px;
  margin: 25px auto;
}
@media (max-width: 767px) {
  .below-hero .below-hero-header p {
    margin: 15px auto;
  }
}
.below-hero .below-hero-header .link-btn {
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #fff;
  color: #fff;
}
.below-hero .below-hero-header .link-btn:hover {
  background: #FFC013;
  border: 1px solid #FFC013;
}
.below-hero .below-hero-header .link-btn:hover svg path {
  fill: #fff;
}

.icon-grid-row .icon-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: -130px;
  align-items: start;
  position: relative;
  z-index: 2;
}
@media (max-width: 1399px) {
  .icon-grid-row .icon-grid {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .icon-grid-row .icon-grid {
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .icon-grid-row .icon-grid {
    display: block;
  }
}
.icon-grid-row .icon-grid .icon-grid-column {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.08);
  padding: 60px 20px;
  width: 100%;
  height: 286px;
}
@media (max-width: 1199px) {
  .icon-grid-row .icon-grid .icon-grid-column {
    padding: 40px 20px;
  }
}
@media (max-width: 991px) {
  .icon-grid-row .icon-grid .icon-grid-column {
    padding: 20px 20px;
    height: auto;
    width: 48%;
  }
}
@media (max-width: 575px) {
  .icon-grid-row .icon-grid .icon-grid-column {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .icon-grid-row .icon-grid .icon-grid-column:last-child {
    margin-bottom: 0;
  }
}
.icon-grid-row .icon-grid .icon-grid-column .below-hero-card {
  transition: all 0.3s ease-in-out;
}
.icon-grid-row .icon-grid .icon-grid-column .below-hero-card svg {
  display: block;
  margin: 0 auto;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  width: 120px;
  height: 120px;
}
@media (max-width: 991px) {
  .icon-grid-row .icon-grid .icon-grid-column .below-hero-card svg {
    width: 60px;
    height: 60px;
  }
}
.icon-grid-row .icon-grid .icon-grid-column .below-hero-card span {
  display: block;
  text-align: center;
  color: #242A2E;
  font-size: 20px;
  font-weight: 500;
  font-family: "Geologica", sans-serif;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .icon-grid-row .icon-grid .icon-grid-column .below-hero-card span {
    font-size: 18px;
    margin-top: 10px;
  }
}
.icon-grid-row .icon-grid .icon-grid-column .below-hero-card p {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  height: 0;
}
@media (max-width: 991px) {
  .icon-grid-row .icon-grid .icon-grid-column .below-hero-card p {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
}
.icon-grid-row .icon-grid .icon-grid-column .below-hero-card .card-box-content {
  transition: all 0.3s ease-in-out;
}
.icon-grid-row .icon-grid .icon-grid-column:hover svg {
  transform: scale(0.7);
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .icon-grid-row .icon-grid .icon-grid-column:hover svg {
    transform: initial;
  }
}
.icon-grid-row .icon-grid .icon-grid-column:hover p {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  height: auto;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .icon-grid-row .icon-grid .icon-grid-column:hover p {
    margin-top: 0;
  }
}
.icon-grid-row .icon-grid .icon-grid-column:hover .card-box-content {
  margin-top: -30px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .icon-grid-row .icon-grid .icon-grid-column:hover .card-box-content {
    margin-top: 0;
  }
}
.icon-grid-row .icon-grid .icon-grid-column:hover .below-hero-card {
  margin-top: -30px;
}
@media (max-width: 991px) {
  .icon-grid-row .icon-grid .icon-grid-column:hover .below-hero-card {
    margin-top: 0;
  }
}
.icon-grid-row .icon-grid .icon-grid-column:hover span {
  margin-top: 0;
}
@media (max-width: 767px) {
  .icon-grid-row .icon-grid .icon-grid-column:hover span {
    margin-top: 10px;
  }
}

.what-we-do {
  margin-top: 60px;
}
@media (max-width: 575px) {
  .what-we-do {
    margin-top: 50px;
  }
}
.what-we-do .what-we-inner {
  background: rgba(200, 227, 229, 0.5);
  border-radius: 20px;
  padding: 150px 50px 63px;
  display: flex;
  gap: 156px;
}
@media (max-width: 1399px) {
  .what-we-do .what-we-inner {
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .what-we-do .what-we-inner {
    display: block;
    padding: 80px 30px 63px;
  }
}
@media (max-width: 991px) {
  .what-we-do .what-we-inner {
    padding: 60px 30px 50px;
  }
}
@media (max-width: 575px) {
  .what-we-do .what-we-inner {
    padding: 30px 15px 30px;
  }
}
.what-we-do .what-we-inner .wt-left {
  max-width: 449px;
  width: 100%;
}
@media (max-width: 1199px) {
  .what-we-do .what-we-inner .wt-left {
    max-width: 100%;
    text-align: center;
  }
}
.what-we-do .what-we-inner .wt-left p {
  margin: 33px 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
@media (max-width: 1199px) {
  .what-we-do .what-we-inner .wt-left p {
    margin: 15px 0 20px;
  }
}
@media (max-width: 767px) {
  .what-we-do .what-we-inner .wt-left p {
    font-size: 14px;
    line-height: 20px;
    margin: 10px 0;
  }
}
@media (max-width: 1199px) {
  .what-we-do .what-we-inner .wt-left .link-btn {
    margin: 0 auto;
  }
}
.what-we-do .what-we-inner .wt-right {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .what-we-do .what-we-inner .wt-right {
    margin-top: 190px;
  }
}
@media (max-width: 767px) {
  .what-we-do .what-we-inner .wt-right {
    margin-top: 128px;
  }
}
.what-we-do .what-we-inner .wt-right .box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  position: relative;
}
.what-we-do .what-we-inner .wt-right .box-grid:before {
  content: "";
  position: absolute;
  background: url("/assets/freedom_center/images/sun-icon.svg") no-repeat;
  width: 90px;
  height: 90px;
  background-size: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: -147px;
}
@media (max-width: 1199px) {
  .what-we-do .what-we-inner .wt-right .box-grid:before {
    top: -150px;
  }
}
@media (max-width: 767px) {
  .what-we-do .what-we-inner .wt-right .box-grid:before {
    width: 62px;
    height: 62px;
    top: -98px;
  }
}
.what-we-do .what-we-inner .wt-right .box-grid .box-grid-item {
  background: #055D62;
  padding: 36px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1199px) {
  .what-we-do .what-we-inner .wt-right .box-grid .box-grid-item {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .what-we-do .what-we-inner .wt-right .box-grid .box-grid-item {
    display: block;
    text-align: center;
    padding: 20px;
  }
}
.what-we-do .what-we-inner .wt-right .box-grid .box-grid-item:nth-child(1) {
  border-radius: 41px 0px 0px 41px;
  position: relative;
}
.what-we-do .what-we-inner .wt-right .box-grid .box-grid-item:nth-child(1):before {
  content: "";
  position: absolute;
  top: -72px;
  right: 0;
  width: 169px;
  height: 77px;
  background: url("/assets/freedom_center/images/donation-shape.svg") no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .what-we-do .what-we-inner .wt-right .box-grid .box-grid-item:nth-child(1):before {
    top: -38px;
    height: 40px;
    width: 90px;
  }
}
.what-we-do .what-we-inner .wt-right .box-grid .box-grid-item:nth-child(2) {
  border-radius: 0 41px 41px 0;
  position: relative;
}
.what-we-do .what-we-inner .wt-right .box-grid .box-grid-item:nth-child(2):before {
  content: "";
  position: absolute;
  top: -72px;
  left: 0;
  width: 169px;
  height: 77px;
  background: url("/assets/freedom_center/images/countries-shape.svg") no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .what-we-do .what-we-inner .wt-right .box-grid .box-grid-item:nth-child(2):before {
    top: -38px;
    height: 40px;
    width: 90px;
  }
}
.what-we-do .what-we-inner .wt-right .box-grid .box-grid-item:nth-child(3) {
  border-radius: 41px 0px 41px 41px;
}
.what-we-do .what-we-inner .wt-right .box-grid .box-grid-item:nth-child(4) {
  border-radius: 0px 41px 41px 41px;
}
.what-we-do .what-we-inner .wt-right .box-grid .box-grid-item img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
@media (max-width: 1399px) {
  .what-we-do .what-we-inner .wt-right .box-grid .box-grid-item img {
    width: 70px;
    height: 70px;
  }
}
.what-we-do .what-we-inner .wt-right .box-right-column {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.what-we-do .what-we-inner .wt-right .box-right-column h4 {
  font-size: 30px;
  font-weight: 700;
  font-family: "Geologica", sans-serif;
  margin-bottom: 10px;
  color: #fff;
}
@media (max-width: 767px) {
  .what-we-do .what-we-inner .wt-right .box-right-column h4 {
    font-size: 16px;
    line-height: normal;
    margin-top: 10px;
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .what-we-do .what-we-inner .wt-right .box-right-column span {
    font-size: 12px;
    line-height: 20px;
  }
}

/*# sourceMappingURL=home.css.map */
