@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");
body,
p,
a {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #474747;
}

button:focus, button:active {
  outline: none;
}

.btn {
  border: none;
}

.btn,
.form-control {
  outline: none;
  box-shadow: none;
  border-radius: 4px;
  border: 1px solid #dedede;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.01em;
  display: inline-block;
  cursor: pointer;
  transition: 0.4s all;
}
.btn:focus, .btn:hover,
.form-control:focus,
.form-control:hover {
  box-shadow: none;
  outline: none;
  color: inherit;
}
.btn-view-all, .btn-custom,
.form-control-view-all,
.form-control-custom {
  font-size: 13px;
  text-transform: uppercase;
  padding: 8px 26px;
}
.btn.btn-custom-large, .btn.btn-custom-small,
.form-control.btn-custom-large,
.form-control.btn-custom-small {
  padding: 12px 32px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  text-transform: capitalize;
  border: 1px solid #1671a7;
  background-color: #1671a7;
  letter-spacing: 0.02em;
}
.btn.btn-custom-large:hover, .btn.btn-custom-small:hover,
.form-control.btn-custom-large:hover,
.form-control.btn-custom-small:hover {
  color: #1671a7;
  background-color: transparent;
}
.btn.btn-custom-small,
.form-control.btn-custom-small {
  text-transform: capitalize;
}
.btn.btn-custom-small.ghost,
.form-control.btn-custom-small.ghost {
  background-color: transparent;
  border-color: #1671a7;
  color: #1671a7;
}
.btn.btn-custom-small.ghost:hover,
.form-control.btn-custom-small.ghost:hover {
  background-color: #1671a7;
  color: #fff;
}
.btn.btn-custom-xsmall,
.form-control.btn-custom-xsmall {
  padding: 10px 26px;
  text-transform: capitalize;
  font-size: 13px;
}
.btn.btn-primary,
.form-control.btn-primary {
  background-color: #1671a7;
  color: #fff;
  border-color: #1671a7;
}
.btn.btn-primary:hover,
.form-control.btn-primary:hover {
  background-color: #10537a;
  border-color: #1671a7;
  color: #fff;
}
.btn.btn-secondary,
.form-control.btn-secondary {
  background-color: #e60f2b;
  color: #fff;
  border-color: #e60f2b;
}
.btn.btn-secondary:hover,
.form-control.btn-secondary:hover {
  background-color: #b60c22;
  border-color: #e60f2b;
  color: #fff;
}
.btn.btn-thirdColor,
.form-control.btn-thirdColor {
  background-color: #277937;
  color: #fff;
  border-color: #349f48;
}
.btn.btn-thirdColor:hover,
.form-control.btn-thirdColor:hover {
  background-color: #21652e;
  border-color: #349f48;
  color: #fff;
}
.btn.btn-dark,
.form-control.btn-dark {
  background-color: #1c1c1c;
  color: #fff;
  border-color: #1c1c1c;
}
.btn.btn-dark:hover,
.form-control.btn-dark:hover {
  background-color: transparent;
  border-color: #1c1c1c;
  color: #1c1c1c;
}
.btn.btn-light,
.form-control.btn-light {
  background-color: #fff;
  color: #3f3f3f;
  border-color: #fff;
}
.btn.btn-light:hover,
.form-control.btn-light:hover {
  background-color: #1671a7;
  border-color: #1671a7;
  color: #fff;
}
.btn.btn-ghost,
.form-control.btn-ghost {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

@media screen and (max-width: 991px) {
  .btn-small,
  .form-control-small {
    font-size: 11px;
  }
  .btn-view-all, .btn-custom,
  .form-control-view-all,
  .form-control-custom {
    font-size: 12px;
  }
  .btn.btn-custom-large, .btn.btn-custom-small,
  .form-control.btn-custom-large,
  .form-control.btn-custom-small {
    font-size: 12px;
  }
  .btn.btn-custom-xsmall,
  .form-control.btn-custom-xsmall {
    padding: 7px 16px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .btn.btn-custom-large, .btn.btn-custom-small,
  .form-control.btn-custom-large,
  .form-control.btn-custom-small {
    padding: 10px 20px;
    font-size: 13px;
  }
}
/* -- Sroll To Top on Click -- */
.scrollevent a {
  font-size: 18px;
  text-decoration: none;
}
.scrollevent a:hover {
  font-style: normal;
}
.scrollevent a .btn-scroll-up {
  padding: 5px 6px;
  background-color: rgba(22, 113, 167, 0.95);
  box-shadow: none;
  border: 1px solid;
  border-color: #10537a;
  border-radius: 6px 6px 0 0;
  color: #fff;
  transition: 0.6s all;
  cursor: pointer;
}
.scrollevent a .btn-scroll-up i {
  transform: translateY(0);
  transition: 0.6s all;
  color: #fff;
}
.scrollevent a .btn-scroll-up:hover i {
  transform: translateY(-5px);
}
.scrollevent a .btn-scroll-up:focus {
  text-decoration: none;
  border: none;
  outline: none;
}

.scrollToTop {
  z-index: 9999;
  text-align: center;
  background: transparent;
  color: #fff;
  position: fixed;
  bottom: 50px;
  right: 30px;
  display: none !important;
  cursor: pointer;
}
.scrollToTop.d-block {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .scrollToTop.d-block {
    display: none !important;
  }
}
.scrollToTop button i {
  padding: 3px;
  font-size: 18px;
  color: #fff;
}
.scrollToTop:hover {
  text-decoration: none;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  letter-spacing: 0.03em;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding: 0;
}

.containerFluid {
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container {
  width: auto;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
@media (min-width: 1540px) {
  .container {
    width: 1470px;
  }
}
h1,
.h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  display: block;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}

p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #474747;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  transition: 0.4s all;
  display: block;
}

a {
  color: #474747;
  text-decoration: none;
  display: block;
  overflow: hidden;
  letter-spacing: 0.03em;
  font-family: "DM Sans", sans-serif;
  transition: 0.4s all;
}
a:hover, a:focus, a:active {
  text-decoration: none;
  font-style: normal;
  cursor: pointer;
  outline: none;
}

i {
  font-weight: 400;
  font-family: 700 13px "Font Awesome 6 Free";
  font-style: normal;
}

input:focus, select:focus, textarea:focus {
  outline: none;
}

.slick-slide:focus {
  outline: none;
}

.slick-dots {
  margin-top: 15px;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin: 3px;
  height: 6px;
  width: 6px;
  border-radius: 100%;
  background-color: #474747;
  cursor: pointer;
}
.slick-dots li button {
  text-indent: -9999px;
  border: none;
  background-color: transparent;
}
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li.slick-active {
  background-color: #1671a7;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s all;
}
.slick-arrow i {
  font-size: 16px;
  line-height: 25px;
  height: 25px;
  width: 25px;
  border-radius: 3px;
  color: #fff;
  padding: 10px 5px;
  background: rgba(22, 113, 167, 0.3);
  text-align: center;
  cursor: pointer;
  transition: 0.4s all;
}
.slick-arrow.left {
  left: 0px;
  z-index: 9;
}
.slick-arrow.right {
  right: 0px;
}
.slick-arrow:hover i {
  background: rgba(22, 113, 167, 0.8);
}

.hide, .displayNone, .dNone {
  display: none;
}

.show, .dBlock, .displayBlock {
  display: block;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex.justifyCenter {
  justify-content: center;
}
.flex.justifyBetween {
  justify-content: space-between;
}
.flex.flexEnd {
  justify-content: flex-end;
}
.flex.flexStart {
  justify-content: flex-start;
}
.flex.alignCenter {
  align-items: center;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.noBorderRight {
  border-right: none !important;
}

.noBorderLeft {
  border-left: none !important;
}

.noBorderTop {
  border-top: none !important;
}

.noBorderBottom {
  border-bottom: none !important;
}

input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.error {
  font-size: 12px;
  color: #ce0d0d;
  display: block;
  margin: 3px 0;
}

.formInput, textarea {
  height: 42px;
  font-size: 15px;
  padding: 0 15px;
  color: #1c1c1c;
  border-radius: 3px;
  border: 1px solid #c9c9c9;
}
.formInput::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: rgba(71, 71, 71, 0.85);
}
.formInput:-moz-placeholder, textarea:-moz-placeholder {
  color: rgba(71, 71, 71, 0.85);
}
.formInput::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(71, 71, 71, 0.85);
}
.formInput:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: rgba(71, 71, 71, 0.85);
}

.mobile-call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: center;
  z-index: 99;
  display: none;
}
@media screen and (max-width: 767px) {
  .mobile-call-button {
    display: block;
  }
}
.mobile-call-button a {
  font-size: 20px;
  height: 45px;
  width: 45px;
  line-height: 45px;
  color: #fff;
  background-color: rgba(22, 113, 167, 0.7);
  border-radius: 100%;
}

*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #d7d7d7;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #F5F5F5;
}

*::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #525964;
}

@media screen and (max-width: 768px) {
  .formInput {
    height: 38px;
    font-size: 13px;
    padding: 0 10px;
  }
}
.section,
.pageWrapper {
  padding: 80px 0;
}

.sectionHeader {
  text-align: center;
  margin: 0 auto 40px auto;
}
.sectionHeader h5 {
  max-width: 760px;
  font-size: 35px;
  font-weight: 900;
  color: #1671a7;
  letter-spacing: 0.05em;
  position: relative;
  margin: 0 auto;
}
.sectionHeader h5 p {
  font-size: 15px;
  color: #474747;
  font-weight: 400;
  display: block;
  letter-spacing: 0.03em;
  margin-top: 15px;
}
.sectionHeader h2 {
  max-width: 550px;
  font-size: 42px;
  font-weight: 900;
  color: #1671a7;
  text-transform: capitalize;
  margin: 15px auto;
  letter-spacing: 0.05em;
}
.sectionHeader h2 span {
  font-size: 16px;
  color: #474747;
  font-weight: 600;
  display: block;
  letter-spacing: 0.03em;
  margin-bottom: 5px;
}
.sectionHeader h2 p {
  font-size: 14px;
}
.sectionHeader h6 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.sectionHeader.black h5,
.sectionHeader.black h2 {
  color: #1c1c1c;
}
.sectionHeader.black h6 {
  color: #474747;
}

.mainTitle {
  font-size: 24px;
  font-weight: 600;
  padding-left: 30px;
  color: #1c1c1c;
  position: relative;
}
.mainTitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 4px;
  background-color: #1671a7;
}
.mainTitle span {
  color: #ce0d0d;
}

.mainButton {
  margin: 30px auto 0 auto;
  text-align: center;
}
.mainButton .btn {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.sideBlock .itemBlock {
  margin-bottom: 45px;
}
.sideBlock .itemBlock h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.3;
  margin-bottom: 25px;
}
.sideBlock .itemBlock h3::after {
  content: "";
  display: block;
  height: 2px;
  width: 35px;
  background-color: #1671a7;
  margin: 4px 0;
}
.sideBlock .itemBlock ul li a {
  font-size: 14px;
  color: #3f3f3f;
  margin: 15px 0;
  text-transform: capitalize;
  position: relative;
  padding-left: 18px;
}
.sideBlock .itemBlock ul li a::before {
  content: "\f054";
  position: absolute;
  left: 0;
  top: 3px;
  color: #3f3f3f;
  font-size: 11px;
  font-family: "fontAwesome";
  transition: 0.4s all;
}
.sideBlock .itemBlock ul li a:hover {
  color: #1671a7;
}
.sideBlock .itemBlock ul li a:hover::before {
  left: 5px;
  color: #1671a7;
}
.sideBlock .itemBlock .social li a {
  margin-right: 10px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 4px;
  color: #fff;
  background-color: #1671a7;
  text-align: center;
  padding-left: 0;
}
.sideBlock .itemBlock .social li a i {
  transform: rotate(0);
  transition: 0.3s all;
}
.sideBlock .itemBlock .social li a::before {
  display: none;
}
.sideBlock .itemBlock .social li a:hover i {
  transform: rotate(360deg);
  color: #fff;
}
.sideBlock .itemBlock:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .section,
  .pageWrapper {
    padding: 60px 0;
  }
  .sectionHeader h2 {
    font-size: 25px;
  }
  .sectionHeader h2 span {
    font-size: 14px;
  }
  .sectionHeader h6 {
    font-size: 14px;
  }
  .mainTitle {
    font-size: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 992px) {
  .section,
  .pageWrapper {
    padding: 45px 0;
  }
  .sectionHeader {
    margin: 0 auto 30px auto;
  }
  .sectionHeader h5 {
    font-size: 24px;
  }
  .sectionHeader h5 p {
    font-size: 14px;
  }
  .dateItem {
    flex: 0 0 45px;
  }
  .dateItem .day {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 13px;
  }
  .dateItem .month {
    width: 30px;
  }
  .blockWrapper .block {
    flex: 0 0 calc(33.3333333333% - 15px);
  }
  .blockWrapper .block:nth-child(2), .blockWrapper .block:nth-child(5) {
    margin-left: 20px;
    margin-right: 20px;
  }
  .blockWrapper .block .text h3 {
    font-size: 16px;
  }
  .blockWrapper .block .text .desc {
    font-size: 13px;
  }
  .blockWrapper.eventsWrapper .block .image .category {
    left: auto;
    right: 10px;
  }
  .blockWrapper.eventsWrapper .block .text .wrap {
    flex: 0 0 calc(100% - 45px);
  }
  .breadcrumb {
    padding: 50px 0 50px 0;
  }
  .breadcrumb .wrapper {
    text-align: center;
  }
  .breadcrumb .wrapper h1 {
    font-size: 20px;
  }
  .breadcrumb .wrapper .breadcrumbList li .list {
    font-size: 13px;
  }
  .sideBlock .itemBlock h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .section,
  .pageWrapper {
    padding: 30px 0;
  }
  .sectionHeader {
    margin: 0 auto 25px auto;
  }
  .sectionHeader h2 {
    margin: 8px auto;
    font-size: 22px;
  }
  .sectionHeader h2 span {
    font-size: 13px;
  }
  .mainTitle {
    font-size: 16px;
  }
  .dateItem {
    flex: 0 0 auto;
    position: absolute;
    top: -65px;
  }
  .dateItem .day {
    background-color: #fff;
  }
  .dateItem .month {
    text-shadow: 1px 0 4px #000;
    color: #fff;
    font-size: 14px;
  }
  .blockWrapper .block {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
  .blockWrapper .block:nth-child(2), .blockWrapper .block:nth-child(5) {
    margin-left: 0;
    margin-right: 0;
  }
  .blockWrapper .block:last-child {
    margin-bottom: 0;
  }
  .blockWrapper .block .text {
    text-align: center;
  }
  .blockWrapper.eventsWrapper .block .text {
    position: relative;
  }
  .blockWrapper.eventsWrapper .block .text .wrap {
    flex: 0 0 100%;
  }
}
.breadcrumbWrapper {
  padding: 100px 0;
  background: url("../images/breadcrumb.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.breadcrumbWrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: 0.5s all;
}
.breadcrumbWrapper h1 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
.breadcrumbWrapper .breadcrumb {
  position: relative;
  justify-content: center;
  padding: 0;
  margin: 10px;
}
.breadcrumbWrapper .breadcrumb li {
  background-color: transparent;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  font-size: 16px;
  font-weight: 400;
  color: #c9c9c9;
  letter-spacing: 0.01em;
}
.breadcrumbWrapper .breadcrumb li::after {
  content: "//";
  display: inline-block;
  padding: 5px 0 5px 8px;
  font-size: 14px;
  font-weight: 400;
}
.breadcrumbWrapper .breadcrumb li.active::after {
  display: none;
}
.breadcrumbWrapper .breadcrumb a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.breadcrumbWrapper .breadcrumb a:hover {
  text-decoration: none;
}

@media screen and (max-width: 992px) {
  .breadcrumbWrapper {
    padding: 70px 0;
  }
  .breadcrumbWrapper h1 {
    font-size: 24px;
  }
  .breadcrumbWrapper .breadcrumb {
    margin: 5px 0;
  }
  .breadcrumbWrapper .breadcrumb li {
    font-size: 14px;
  }
  .breadcrumbWrapper .breadcrumb li::after {
    font-size: 13px;
  }
  .breadcrumbWrapper .breadcrumb a {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .breadcrumbWrapper {
    padding: 50px 0;
  }
  .breadcrumbWrapper h1 {
    font-size: 20px;
  }
}
.pagination .paginationWrapper {
  margin: 30px auto 0 auto;
  justify-content: center;
  max-width: max-content;
  box-shadow: 0 3px 9px #dedede;
  padding: 10px 20px;
  align-items: center;
  border-radius: 3px;
}
.pagination .paginationWrapper .page-item .page-link {
  border: none;
  font-size: 16px;
  color: #474747;
  margin: 0 8px;
}
.pagination .paginationWrapper .page-item .page-link.action {
  color: #277937;
}
.pagination .paginationWrapper .page-item .page-link:hover {
  background-color: transparent;
  color: #10537a;
}
.pagination .paginationWrapper .page-item.active .page-link {
  border-radius: 3px;
  background-color: #009eef;
  color: #fff;
  font-weight: 600;
  padding: 5px 10px;
}

@media screen and (max-width: 767px) {
  .pagination .paginationWrapper {
    margin: 20px auto 0 auto;
  }
  .pagination .paginationWrapper .page-item .page-link {
    font-size: 13px;
    margin: 0 3px;
  }
}
#pageLoader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 99999;
}
#pageLoader .loader {
  position: relative;
  width: 1.3em;
  height: 1.3em;
  background-color: #fff;
  border-radius: 100%;
  animation: loader-1 30s infinite linear;
}
#pageLoader .loader:before, #pageLoader .loader:after {
  content: "";
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#pageLoader .loader:before {
  width: 1.9em;
  height: 7.9em;
  animation: loader-2 0.8s linear infinite;
}
#pageLoader .loader:after {
  width: 7.9em;
  height: 1.9em;
  animation: loader-2 1.2s linear infinite;
}
@keyframes loader-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-2 {
  0% {
    box-shadow: 0.2em -0.2em 0 0.08em #fff;
  }
  25% {
    box-shadow: 0.2em 0.2em 0 0.08em #fff;
  }
  50% {
    box-shadow: -0.2em 0.2em 0 0.08em #fff;
  }
  75% {
    box-shadow: -0.2em -0.2em 0 0.08em #fff;
  }
  100% {
    box-shadow: 0.2em -0.2em 0 0.08em #fff;
  }
}

@media screen and (max-width: 576px) {
  #pageLoader {
    margin-top: -30px;
    height: calc(100vh + 30px);
  }
  #pageLoader .loader {
    width: 0.6em;
    height: 0.6em;
  }
  #pageLoader .loader:before {
    width: 0.9em;
    height: 3.9em;
  }
  #pageLoader .loader:after {
    width: 3.9em;
    height: 0.9em;
  }
}
header .topHeader {
  background: url(../images/hands-bg.png) repeat center center/contain;
  position: relative;
}
header .topHeader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
header .topHeader .wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #dedede;
}
header .topHeader .wrapper .block {
  position: relative;
}
header .topHeader .wrapper .block ul li .info {
  font-size: 14px;
  color: #474747;
  margin-right: 40px;
}
header .topHeader .wrapper .block ul li .info i {
  margin-right: 6px;
}
header .topHeader .wrapper .block ul li .title {
  font-size: 14px;
  font-weight: 500;
  color: #474747;
  padding-right: 30px;
  letter-spacing: 0.03em;
}
header .topHeader .wrapper .block ul li .social {
  font-size: 14px;
  color: #474747;
  margin-left: 12px;
  padding: 1px;
}
header .topHeader .wrapper .block.left {
  text-align: left;
}
header .topHeader .wrapper .block.right {
  text-align: right;
}
header .navigation .navWrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
header .navigation .brandLogo img {
  max-height: 55px;
}
header .navigation .nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header .navigation .menuList li a {
  font-size: 16px;
  font-weight: 500;
  color: #3f3f3f;
  letter-spacing: 0.03em;
  padding: 10px 20px;
}
header .navigation .menuList li a.btn {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  margin-left: 15px;
}
header .navigation .menuList li a.btn i {
  color: #e60f2b;
  margin-left: 4px;
  font-size: 12px;
}
header .navigation .menuList li.active a, header .navigation .menuList li:hover a {
  color: #e60f2b;
}
header .navigation .menuList li.active a.btn, header .navigation .menuList li:hover a.btn {
  color: #fff;
}
header .mobileMenuIcon .menuIcon {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0 auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
header .mobileMenuIcon .menuIcon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 30px;
  background: #d3531a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
header .mobileMenuIcon .menuIcon span:nth-child(1) {
  top: 0px;
}
header .mobileMenuIcon .menuIcon span:nth-child(2), header .mobileMenuIcon .menuIcon span:nth-child(3) {
  top: 8px;
}
header .mobileMenuIcon .menuIcon span:nth-child(4) {
  top: 16px;
}

@media screen and (max-width: 1200px) {
  header .topHeader .wrapper .block ul li .title, header .topHeader .wrapper .block ul li .info, header .topHeader .wrapper .block ul li .social {
    font-size: 13px;
  }
  header .navigation .brandLogo img {
    max-height: 40px;
  }
  header .navigation .menuList li a {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 992px) {
  header .topHeader .wrapper .block ul li .title {
    font-size: 13px;
    text-align: left;
    letter-spacing: 0;
  }
  header .topHeader .wrapper .block.left {
    flex: 0 0 27%;
  }
  header .topHeader .wrapper .block.left ul {
    justify-content: flex-end;
  }
  header .topHeader .wrapper .block.left li:first-child, header .topHeader .wrapper .block.left li:nth-child(2) {
    display: none;
  }
  header .mobileMenuIcon {
    position: absolute;
    top: 25px;
    right: 0;
  }
  header .mobileMenuIcon .menuIcon.open span:nth-child(1) {
    top: 12px;
    width: 0%;
    left: 50%;
  }
  header .mobileMenuIcon .menuIcon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header .mobileMenuIcon .menuIcon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header .mobileMenuIcon .menuIcon.open span:nth-child(4) {
    top: 12px;
    width: 0%;
    left: 50%;
  }
  header .navigation .navWrapper {
    position: relative;
    flex-direction: column;
    min-height: 30px;
  }
  header .navigation .brandLogo {
    position: absolute;
    top: 15px;
    left: 0;
  }
  header .navigation .nav {
    flex-direction: column;
    width: 100%;
  }
  header .navigation .nav ul {
    display: none;
    flex-direction: column;
    flex: 0 0 100%;
    transition: 1.5s all;
  }
  header .navigation .nav ul.menuList {
    margin-top: 40px;
    transition: 1.5s all;
  }
  header .navigation .nav ul.menuList.mobileView {
    display: block;
    transition: 1.5s all;
  }
  header .navigation .nav ul li a {
    text-align: center;
  }
  header .navigation .nav.active ul {
    display: flex;
  }
  header .mobileMenuIcon .menuIcon {
    display: block;
  }
}
.banner {
  position: relative;
}
.banner .slider .block {
  position: relative;
}
.banner .slider .block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.banner .slider .block .image img {
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: top;
}
.banner .slider .block .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;
}
.banner .slider .block .text h1 {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}
.banner .slider .block .text h1 span {
  display: block;
}
.banner .slider .block .text p {
  margin-top: 20px;
  font-size: 18px;
  color: #fff;
}
.banner .slider .block .text .buttons {
  margin-top: 30px;
}
.banner .slider .block .text .buttons a i {
  margin: 0 4px;
  color: #e60f2b;
}
.banner .slider .block .text .buttons a + a {
  margin-left: 20px;
}
.banner .slider .block .text .buttons a + a i {
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .banner .slider .block .text h1 {
    font-size: 30px;
  }
  .banner .slider .block .text p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    background-color: #1671a7;
  }
  .banner .slider .block::before {
    display: none;
  }
  .banner .slider .block .text {
    position: static;
    transform: translateY(0);
    text-align: center;
    padding: 20px 0;
  }
  .banner .slider .block .text h1 {
    font-size: 20px;
    letter-spacing: 0.04em;
  }
  .banner .slider .block .text h1 span {
    display: inline;
  }
  .banner .slider .block .text p {
    margin-top: 15px;
    font-size: 14px;
  }
  .banner .slider .block .text .buttons a + a {
    background-color: #349f48;
    border-color: #349f48;
  }
}
@media screen and (max-width: 380px) {
  .banner .slider .block .text h1 {
    font-size: 18px;
  }
  .banner .slider .block .text .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .banner .slider .block .text .buttons a + a {
    margin-left: 0;
    margin-top: 10px;
  }
}
.about .aboutWrapper {
  align-items: center;
}
.about .aboutWrapper .block {
  position: relative;
}
.about .aboutWrapper .block.images {
  flex: 0 0 40%;
}
.about .aboutWrapper .block .sideImg {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 260px;
  object-fit: cover;
  border: 6px solid #fff;
  border-radius: 8px;
}
.about .aboutWrapper .block .mainImg {
  padding-top: 130px;
  margin-bottom: 20px;
  width: calc(100% - 80px);
  height: 450px;
  object-fit: cover;
}
.about .aboutWrapper .block .since {
  position: absolute;
  bottom: -5px;
  right: 40px;
  height: 100px;
  width: 100px;
  background-color: rgba(230, 15, 43, 0.9);
  border-radius: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.about .aboutWrapper .block .since h4 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.about .aboutWrapper .block .since h4 span {
  display: block;
  font-size: 16px;
  font-weight: 400;
}
.about .aboutWrapper .block.content {
  flex: 0 0 calc(60% - 100px);
  padding-left: 100px;
}
.about .aboutWrapper .block .sectionHeader {
  text-align: left;
  margin-left: 0;
  margin-bottom: 30px;
}
.about .aboutWrapper .block .sectionHeader h5 {
  color: #349f48;
  justify-content: flex-start;
  margin: 0;
  font-size: 24px;
  font-weight: 400;
}
.about .aboutWrapper .block .sectionHeader h2 {
  margin: 3px 0;
}
.about .aboutWrapper .block .text {
  margin-top: 30px;
  position: relative;
}
.about .aboutWrapper .block .text .wheelchair {
  position: absolute;
  top: 30px;
  right: -100px;
  width: 160px;
  opacity: 0.1;
}
.about .aboutWrapper .block .text p {
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
}
.about .aboutWrapper .block .text .button {
  margin-top: 30px;
}

@media screen and (max-width: 992px) {
  .about .aboutWrapper {
    flex-direction: column;
  }
  .about .aboutWrapper .block {
    position: relative;
    width: 500px;
  }
  .about .aboutWrapper .block.images {
    flex: 0 0 100%;
  }
  .about .aboutWrapper .block .sideImg {
    width: 160px;
    height: 160px;
    right: auto;
    left: 20px;
  }
  .about .aboutWrapper .block .mainImg {
    padding-top: 60px;
    width: 100%;
    height: 300px;
  }
  .about .aboutWrapper .block.content {
    flex: 0 0 100%;
    padding-left: 0;
    margin-top: 40px;
  }
  .about .aboutWrapper .block .sectionHeader {
    text-align: center;
  }
  .about .aboutWrapper .block .sectionHeader h5 {
    justify-content: center;
    font-size: 18px;
  }
  .about .aboutWrapper .block .text {
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
  }
  .about .aboutWrapper .block .text p {
    font-size: 14px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 768px) {
  .about .aboutWrapper .block {
    width: 100%;
  }
  .about .aboutWrapper .block .since {
    height: 80px;
    width: 80px;
    right: 20px;
  }
  .about .aboutWrapper .block .since h4 {
    font-size: 20px;
  }
  .about .aboutWrapper .block .since h4 span {
    font-size: 13px;
  }
  .about .aboutWrapper .block.content {
    padding-left: 0;
  }
}
.features {
  position: relative;
  background-color: #1671a7;
  background: url(../images/feature-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
}
.features .block {
  position: relative;
  padding: 40px 0;
  margin-top: -30px;
}
.features .block .item {
  width: 30%;
}
.features .block .item:nth-child(2) {
  padding: 0 5%;
}
.features .block .item .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin-right: 15px;
  border-radius: 100%;
  text-align: center;
  background-color: #1671a7;
}
.features .block .item .icon i {
  font-size: 24px;
  line-height: 60px;
  color: #fff;
}
.features .block .item .text {
  width: calc(100% - 75px);
}
.features .block .item .text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}
.features .block .item .text .desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}
.features .block .item .text .btn {
  margin-top: 10px;
}

@media screen and (max-width: 1200px) {
  .features .block .item .text h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .features .block {
    flex-direction: column;
    padding: 20px 20px;
  }
  .features .block .item {
    width: 100%;
    margin: 15px auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .features .block .item:nth-child(2) {
    padding: 0;
  }
  .features .block .item .icon {
    text-align: center;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .features .block .item .icon i {
    font-size: 32px;
  }
  .features .block .item .text {
    text-align: center;
    width: 100%;
  }
  .features .block .item .text h3 {
    margin-bottom: 5px;
    font-size: 17px;
  }
}
.services .serviceWrapper .block .item {
  flex: 0 0 calc(33% - 20px);
  margin: 0 0 30px 0;
}
.services .serviceWrapper .block .item:nth-child(2n+1) {
  margin: 0 15px 30px 15px;
}
.services .serviceWrapper .block .item figure img {
  border-radius: 6px;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.services .serviceWrapper .block .item .text {
  margin-top: 20px;
}
.services .serviceWrapper .block .item .text h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.services .serviceWrapper .block .item .text p {
  font-size: 15px;
  margin-top: 15px;
}

@media screen and (max-width: 992px) {
  .services .serviceWrapper .block .item .text h4 {
    font-size: 17px;
  }
  .services .serviceWrapper .block .item .text p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .services .serviceWrapper .block .item {
    flex: 0 0 calc(50% - 20px);
    margin: 0 0 30px 0;
  }
  .services .serviceWrapper .block .item:nth-child(2n+1) {
    margin: 0 0 30px 0;
  }
  .services .serviceWrapper .block .item .text h4 {
    font-size: 16px;
  }
  .services .serviceWrapper .block .item .text p {
    font-size: 13px;
  }
}
@media screen and (max-width: 576px) {
  .services .serviceWrapper .block .item {
    flex: 0 0 100%;
    margin: 0 0 30px 0;
  }
  .services .serviceWrapper .block .item figure img {
    width: 100%;
  }
  .services .serviceWrapper .block .item .text {
    text-align: center;
    margin-top: 12px;
  }
  .services .serviceWrapper .block .item .text p {
    margin-top: 10px;
  }
}
.volunteerForm .videoSection {
  position: relative;
  text-align: center;
  z-index: 3;
}
.volunteerForm .videoSection video {
  height: 350px;
  max-width: 100%;
  aspect-ratio: 16/9;
}
.volunteerForm .wrapper {
  background-color: #1671a7;
  background: url(../images/volunteer-bg.jpg) no-repeat center 100%/cover;
  background-attachment: fixed;
  padding-top: 250px;
  margin-top: -200px;
  padding-bottom: 50px;
  position: relative;
}
.volunteerForm .wrapper .header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: -75px;
  position: relative;
  z-index: 4;
}
.volunteerForm .wrapper .header h5 {
  font-size: 20px;
  color: #1671a7;
  line-height: 1;
  padding: 15px 40px;
  border-radius: 8px;
  text-align: center;
  background-color: #fff;
  display: inline-block;
}
.volunteerForm form {
  max-width: 760px;
  margin: 0 auto;
}
.volunteerForm form .item {
  flex: 0 0 calc(50% - 20px);
  flex-direction: column;
  margin-bottom: 20px;
}
.volunteerForm form .item:nth-child(odd) {
  margin-right: 20px;
}
.volunteerForm form .item:nth-child(even) {
  margin-left: 20px;
}
.volunteerForm form .item.textBox {
  flex: 100%;
  margin: 0;
}
.volunteerForm form .item textarea {
  resize: none;
  min-height: 150px;
  padding: 15px;
}
.volunteerForm form .item label {
  font-size: 16px;
  color: #000;
  margin: 5px 0;
  text-transform: capitalize;
}
.volunteerForm form .item.formSubmit {
  margin: 40px 0 0 0;
  flex: 0 0 100%;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .volunteerForm .videoSection video {
    height: 200px;
  }
  .volunteerForm .wrapper .header h5 {
    font-size: 17px;
  }
  .volunteerForm form .item {
    flex: 0 0 100%;
  }
  .volunteerForm form .item:nth-child(odd) {
    margin-right: 0;
  }
  .volunteerForm form .item:nth-child(even) {
    margin-left: 0;
  }
  .volunteerForm form .item label {
    font-size: 14px;
  }
  .volunteerForm form .item.formSubmit {
    margin: 30px 0 0 0;
  }
}
.serviceListing {
  background: #000;
}
.serviceListing .block {
  align-items: center;
}
.serviceListing .block ul li {
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  margin: 8px 0;
  padding-left: 40px;
  position: relative;
}
.serviceListing .block ul li::before {
  content: "\f00c";
  position: absolute;
  top: 8px;
  left: 0;
  color: #349f48;
  font: 700 13px "Font Awesome 6 Free";
  font-size: 20px;
}
.serviceListing .block figure img {
  width: 700px;
}

@media screen and (max-width: 1200px) {
  .serviceListing .block ul li {
    font-size: 18px;
    margin: 6px 0;
    padding-left: 30px;
  }
  .serviceListing .block ul li::before {
    top: 5px;
    font-size: 16px;
  }
  .serviceListing .block figure img {
    width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .serviceListing .block ul li {
    font-size: 15px;
    margin: 5px 0;
    padding-left: 22px;
  }
  .serviceListing .block ul li::before {
    top: 3px;
    font-size: 14px;
  }
  .serviceListing .block figure img {
    width: 300px;
  }
}
@media screen and (max-width: 576px) {
  .serviceListing {
    padding: 35px 0;
  }
  .serviceListing .block {
    position: relative;
  }
  .serviceListing .block ul {
    z-index: 2;
  }
  .serviceListing .block ul li {
    font-size: 15px;
    margin: 5px 0;
    padding-left: 22px;
  }
  .serviceListing .block ul li::before {
    top: 3px;
    font-size: 14px;
  }
  .serviceListing .block figure {
    position: absolute;
    right: 0;
  }
  .serviceListing .block figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
  }
}
.events .sectionWrapper .block .item {
  width: calc(33% - 15px);
}
.events .sectionWrapper .block .item:nth-child(2) {
  margin: 0 25px;
}
.events .sectionWrapper .block .item .image {
  position: relative;
}
.events .sectionWrapper .block .item .image figure {
  overflow: hidden;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.events .sectionWrapper .block .item .image figure img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: 0.3s all;
}
.events .sectionWrapper .block .item .image figure img:hover {
  transform: scale(1.1);
}
.events .sectionWrapper .block .item .image .date {
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: #474747;
  padding: 8px 12px;
  position: absolute;
  bottom: 15px;
  left: 15px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.8);
  transition: 0.3s all;
}
.events .sectionWrapper .block .item .image .date strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #1671a7;
}
.events .sectionWrapper .block .item .image .date:hover {
  background-color: #fff;
}
.events .sectionWrapper .block .item .image h6 {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 8px;
  border-radius: 3px;
  background-color: rgba(22, 113, 167, 0.8);
  font-size: 13px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  color: #fff;
  letter-spacing: 0.05em;
}
.events .sectionWrapper .block .item .image h6:hover {
  background-color: #1671a7;
  transition: 0.3s all;
}
.events .sectionWrapper .block .item .content {
  padding: 15px 15px 20px 15px;
  margin: 1px 1px 20px 1px;
  box-shadow: 0 3px 9px #dedede;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.events .sectionWrapper .block .item .content .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #3f3f3f;
  margin-bottom: 10px;
}
.events .sectionWrapper .block .item .content .title:hover {
  color: #1671a7;
}
.events .sectionWrapper .block .item .content .desc {
  font-size: 14px;
  color: #474747;
}
.events .sectionWrapper .block .item .content ul {
  width: 100%;
  margin-top: 12px;
  justify-content: space-between;
}
.events .sectionWrapper .block .item .content ul li {
  font-size: 13px;
  color: #474747;
  margin-bottom: 3px;
}
.events .sectionWrapper .block .item .content ul li i {
  font-size: 12px;
  color: #349f48;
  margin-right: 5px;
  font-weight: 400;
}
.events .sectionWrapper .block .item .content ul li i.fas {
  font-weight: 700;
}
.events .sectionWrapper .block .item .content ul li:first-child {
  margin-right: 10px;
}
.events .sectionWrapper .block .item .content .button {
  margin-top: 20px;
}
.events .sectionWrapper .block .item.upcoming {
  position: relative;
}
.events .sectionWrapper .block .item.upcoming .content {
  background-color: rgba(52, 159, 72, 0.8);
}
.events .sectionWrapper .block .item.upcoming .content .title, .events .sectionWrapper .block .item.upcoming .content .desc {
  color: #fff;
}
.events .sectionWrapper .block .item.upcoming .content ul li {
  color: #fff;
}
.events .sectionWrapper .block .item.upcoming .content ul li i {
  color: #fff;
}
.events .sectionWrapper .block .item.upcoming .date {
  color: #fff;
  background-color: rgba(52, 159, 72, 0.8);
}
.events .sectionWrapper .block .item.upcoming .date strong {
  color: #fff;
}
.events .sectionWrapper .block .item.upcoming .date:hover {
  background-color: #349f48;
}
.events .sectionWrapper .block .item.upcoming h6 {
  display: block;
}

@media screen and (max-width: 992px) {
  .events .sectionWrapper .block .item .image .date {
    font-size: 13px;
    padding: 3px 8px;
    bottom: 10px;
    left: 10px;
  }
  .events .sectionWrapper .block .item .image .date strong {
    font-size: 15px;
  }
  .events .sectionWrapper .block .item .image h6 {
    top: 10px;
    right: 10px;
    padding: 3px 7px;
    font-size: 12px;
  }
  .events .sectionWrapper .block .item .content .title {
    font-size: 14px;
  }
  .events .sectionWrapper .block .item .content .desc {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .events .sectionWrapper .block .item {
    width: 100%;
  }
  .events .sectionWrapper .block .item:nth-child(2) {
    margin: 15px 0;
  }
  .events .sectionWrapper .block .item .content .button {
    margin-top: 12px;
  }
  .events .sectionWrapper .block .item .content ul li {
    margin-bottom: 5px;
  }
}
.gallery {
  padding-top: 0;
}
.gallery .sectionWrapper .block {
  gap: 20px;
  justify-content: center;
}
.gallery .sectionWrapper .block .item {
  width: calc(25% - 20px);
  position: relative;
  border: 1px solid #dedede;
}
.gallery .sectionWrapper .block .item figure img {
  width: 100%;
}
.gallery .sectionWrapper .block .item .text {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.6s all;
}
.gallery .sectionWrapper .block .item .text h5 {
  font-size: 20px;
  color: #fff;
  text-align: center;
  padding: 15px;
}
.gallery .sectionWrapper .block .item:hover .text {
  top: 50%;
}

@media screen and (max-width: 1200px) {
  .gallery .sectionWrapper .block .item .text h5 {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  .gallery .sectionWrapper .block {
    gap: 20px;
  }
  .gallery .sectionWrapper .block .item {
    width: calc(33% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .gallery .sectionWrapper .block {
    gap: 20px;
  }
  .gallery .sectionWrapper .block .item {
    width: calc(50% - 20px);
  }
  .gallery .sectionWrapper .block .item .text {
    position: static;
    transform: translate(0);
    background-color: transparent;
    display: block;
  }
  .gallery .sectionWrapper .block .item .text h5 {
    color: #1671a7;
    font-size: 15px;
  }
}
@media screen and (max-width: 576px) {
  .gallery .sectionWrapper .block {
    gap: 0;
  }
  .gallery .sectionWrapper .block .item {
    width: 100%;
    margin-bottom: 15px;
  }
  .gallery .sectionWrapper .block .item .text {
    position: static;
    transform: translate(0);
    background-color: transparent;
    display: block;
  }
  .gallery .sectionWrapper .block .item .text h5 {
    color: #1671a7;
    font-size: 15px;
  }
  .gallery .sectionWrapper .block .item:last-child {
    margin-bottom: 0;
  }
}
.testimonials {
  background: url(../images/testimonial-bg.jpg) no-repeat center 100%/cover;
  background-attachment: fixed;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(22, 113, 167, 0.85);
}
.testimonials .sectionHeader {
  position: relative;
}
.testimonials .sectionHeader h2 {
  color: #fff;
}
.testimonials .sectionHeader h2 span {
  color: #fff;
}
.testimonials .sectionWrapper {
  position: relative;
}
.testimonials .sectionWrapper .block .item .text {
  max-width: 700px;
  padding: 20px 30px;
  background-color: #fff;
  text-align: center;
  border-radius: 8px;
  margin: 0 auto;
  position: relative;
}
.testimonials .sectionWrapper .block .item .text::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: calc(50% - 20px);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
}
.testimonials .sectionWrapper .block .item .text p {
  font-size: 15px;
  margin-bottom: 20px;
}
.testimonials .sectionWrapper .block .item .text h3 {
  font-size: 17px;
  font-weight: 600;
  color: #e60f2b;
  text-transform: capitalize;
}
.testimonials .sectionWrapper .block .item figure {
  margin-top: 30px;
}
.testimonials .sectionWrapper .block .item figure img {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  object-fit: cover;
}
.testimonials .sectionWrapper .block .slick-arrow {
  margin-top: -40px;
}
.testimonials .sectionWrapper .block .slick-arrow i {
  background-color: #fff;
  color: #1671a7;
}

@media screen and (max-width: 768px) {
  .testimonials .sectionWrapper .block .item .text p {
    font-size: 14px;
  }
  .testimonials .sectionWrapper .block .item .text h3 {
    font-size: 15px;
  }
  .testimonials .sectionWrapper .block .item figure img {
    width: 70px;
    height: 70px;
  }
}
.donors .sectionWrapper .block .item {
  padding: 20px;
}
.donors .sectionWrapper .block .item figure img {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  object-fit: cover;
  margin: 0 auto;
}
.donors .sectionWrapper .block .item .text {
  text-align: center;
}
.donors .sectionWrapper .block .item .text h4 {
  font-size: 20px;
  color: #e60f2b;
  margin: 15px auto 1px auto;
}

@media screen and (max-width: 1200px) {
  .donors .sectionWrapper .block .item figure img {
    width: 120px;
    height: 120px;
  }
  .donors .sectionWrapper .block .item .text h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .donors .sectionWrapper .block .item {
    padding: 10px;
  }
  .donors .sectionWrapper .block .item figure img {
    width: 100px;
    height: 100px;
  }
  .donors .sectionWrapper .block .item .text h4 {
    font-size: 16px;
  }
}
.call-to-action {
  background: url(../images/action1-bg.jpg) no-repeat center/cover;
  background-attachment: fixed;
  padding: 60px 0;
  position: relative;
}
.call-to-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
.call-to-action .sectionWrapper {
  position: relative;
  width: 100%;
  margin-top: 0;
}
.call-to-action .sectionWrapper .content {
  max-width: 600px;
}
.call-to-action .sectionWrapper .content h4 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}
.call-to-action .sectionWrapper .content p {
  margin-top: 15px;
  font-size: 15px;
  color: #f8f8f8;
}
.call-to-action .sectionWrapper .mainButton {
  justify-content: flex-end;
  align-items: center;
  margin: 0;
}
.call-to-action .sectionWrapper .mainButton .btn {
  padding: 15px 30px;
}
.call-to-action .sectionWrapper .mainButton .btn i {
  margin-left: 5px;
  color: #f00;
}
.call-to-action .sectionWrapper .mainButton .btn:hover {
  background-color: #1671a7;
}

@media screen and (max-width: 992px) {
  .call-to-action .sectionWrapper {
    align-items: center;
    justify-content: center;
  }
  .call-to-action .sectionWrapper .content {
    max-width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .call-to-action .sectionWrapper .content h4 {
    font-size: 28px;
  }
  .call-to-action .sectionWrapper .content p {
    font-size: 14px;
  }
  .call-to-action .sectionWrapper .mainButton {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .call-to-action .sectionWrapper .content h4 {
    font-size: 24px;
  }
  .call-to-action .sectionWrapper .content p {
    line-height: 1.5;
  }
}
footer {
  padding: 80px 0;
  background: #1671a7;
}
footer .wrapper {
  justify-content: space-between;
}
footer .wrapper .block:first-child {
  flex: 0 0 40%;
}
footer .wrapper .block:nth-child(2) {
  flex: 0 0 30%;
}
footer .wrapper .block:last-child {
  flex: 0 0 30%;
}
footer .wrapper .block .logo {
  margin-top: -20px;
  position: relative;
  display: inline-block;
}
footer .wrapper .block .logo img {
  max-width: 160px;
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
}
footer .wrapper .block .logo::after {
  background: url(../images/box-shadow.png) no-repeat center center/contain;
  content: "";
  height: 25px;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
}
footer .wrapper .block .desc {
  display: block;
  font-size: 14px;
  color: #dedede;
  margin-top: 25px;
  padding-right: 50px;
}
footer .wrapper .block .title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 40px;
}
footer .wrapper .block .list li {
  font-family: "DM Sans", sans-serif;
}
footer .wrapper .block .list li .navLink {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #fff;
  opacity: 0.85;
  cursor: pointer;
  transition: 0.3s all;
}
footer .wrapper .block .list li .navLink i {
  margin-right: 7px;
  font-size: 13px;
}
footer .wrapper .block .list li .navLink:hover {
  opacity: 1;
}
footer .wrapper .block .list li:first-child .navLink {
  margin-top: 0;
}
footer .wrapper .block .socialLinks {
  margin-top: 30px;
  justify-content: flex-start;
}
footer .wrapper .block .socialLinks li a {
  margin-right: 30px;
  font-size: 16px;
  color: #fff;
  text-align: center;
}
footer .wrapper .block .socialLinks li a i {
  transform: rotate(0);
  transition: 0.3s all;
}
footer .wrapper .block .socialLinks li a:hover i {
  transform: rotate(15deg);
}

.footerBottom {
  background-color: #136290;
  padding: 15px 0;
}
.footerBottom .footerText {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
}

@media screen and (max-width: 1200px) {
  footer .wrapper .block .desc {
    font-size: 13px;
  }
  footer .wrapper .block .title {
    font-size: 18px;
  }
  footer .wrapper .block .list li .navLink {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  footer {
    padding: 50px 0;
  }
  footer .wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .wrapper .block {
    text-align: center;
    margin-top: 40px;
  }
  footer .wrapper .block:first-child {
    flex: 0 0 100%;
  }
  footer .wrapper .block:nth-child(2) {
    flex: 0 0 100%;
  }
  footer .wrapper .block:nth-child(3) {
    flex: 0 0 100%;
  }
  footer .wrapper .block:last-child {
    flex: 0 0 100%;
  }
  footer .wrapper .block .logo img {
    margin: 0 auto;
  }
  footer .wrapper .block .desc {
    padding-right: 0;
  }
  footer .wrapper .block .socialLinks {
    margin-bottom: 0;
    justify-content: center;
    align-items: center;
  }
  footer .wrapper .block .title {
    text-align: center;
    margin-bottom: 20px;
  }
  footer .wrapper .block .list {
    text-align: center;
  }
  footer .wrapper .block .list li .navLink {
    font-weight: 400;
  }
  footer .wrapper .block .list + .list {
    margin-top: 20px;
  }
  footer .wrapper .block .listItems {
    flex-direction: column;
  }
  .footerBottom .block {
    justify-content: center;
  }
  .footerBottom .block .item {
    flex: 0 0 100%;
    font-size: 13px;
  }
  .footerBottom .block .item a {
    font-size: 13px;
  }
  .footerBottom .block .item:first-child {
    text-align: center;
  }
  .footerBottom .block .item:last-child {
    text-align: center;
  }
}

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