@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Karantina:wght@300;400;700&display=swap");
:root {
  --bs-border-radius: 2rem;
}

/* Defaults
-------------------------------------------------------------- */
html {
  font-size: 10px;
  scroll-behavior: smooth !important;
}

body {
  color: #303030;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Heebo", serif;
}
body.has-overflow {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  position: relative;
  display: block;
  font-family: "Karantina", system-ui !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  font-family: "Karantina", system-ui !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

h1 {
  font-size: 10rem;
  font-family: "Heebo", serif;
  font-weight: 800;
  line-height: 1;
}

h2 {
  font-size: 6rem;
}

h3 {
  font-size: 4rem;
}

h4 {
  font-size: 2rem;
}

.karantina {
  font-family: "Karantina", system-ui;
}

div, p, span, a, input, input[type=submit], select, textarea {
  font-family: "Heebo", serif;
}

strong, b {
  font-weight: bold;
}

i, em {
  font-style: italic;
}

a, input[type=submit], button, .transition {
  transition: all 400ms ease;
}

a {
  text-decoration: none;
  color: #34c5ca;
}
a.hover {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
a.hover::after {
  content: "";
  width: 100%;
  height: 100%;
  background: white;
  position: absolute;
  left: 100%;
  transition: all cubic-bezier(0, 0, 0, 1) 1s;
}
a.hover:hover {
  color: black !important;
}
a.hover:hover::after {
  left: 0;
}
a.hover:hover span {
  padding: 0 1rem;
}
a.hover span {
  position: relative;
  z-index: 1;
  transition: all ease 1s;
}
a:hover, a:focus {
  color: #34c5ca;
}

img {
  max-width: 100%;
  height: auto;
}

.round {
  border-radius: 50%;
}

.content ol, .content ul {
  margin-left: 10px;
  padding-left: 10px;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.content ol {
  list-style: decimal;
}

.content p {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.line-title {
  font-family: "Karantina", system-ui !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  position: relative;
}
.line-title span {
  background: white;
  padding-left: 2rem;
  position: relative;
  z-index: 1;
}
.line-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  width: 100%;
  background: #a5ced6;
}

button.empty {
  border: 1px solid #34c5ca;
  color: #34c5ca;
  padding: 1rem 2rem;
  position: relative;
  overflow: hidden;
  background: transparent;
}
button.empty::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #34c5ca;
  left: 100%;
  top: 0;
  transition: all cubic-bezier(0, 0, 0, 1) 1s;
}
button.empty:hover a {
  color: #303030;
  position: relative;
  z-index: 1;
}
button.empty:hover::after {
  left: 0;
}
button.full-white {
  padding: 1rem 2rem;
  position: relative;
  overflow: hidden;
  background: white;
  border: none;
}
button.full-white::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #00454C;
  left: 100%;
  top: 0;
  transition: all cubic-bezier(0, 0, 0, 1) 1s;
}
button.full-white a {
  color: #303030;
}
button.full-white:hover a {
  color: white;
  position: relative;
  z-index: 1;
}
button.full-white:hover::after {
  left: 0;
}

input[type=submit] {
  border: 2px solid #34c5ca;
  color: #34c5ca;
  padding: 1rem 2rem;
  background: transparent;
}
input[type=submit]:hover {
  background: #34c5ca;
  color: black;
}

figure.rounded {
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}
figure.rounded img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}

.whatsapp-floating {
  position: fixed;
  bottom: 15%;
  right: 0;
  border: none;
  border-radius: 30px 0 0 30px;
  background: #00454C;
  z-index: 9999999;
  padding: 10px 15px 10px 10px;
}

/*-------------- Colors --------------*/
.dark-green {
  color: #00454C;
}

.turquoise {
  color: #34c5ca;
}

.white {
  color: white;
}

/*-------------- text sizes --------------*/
.text60 {
  font-size: 6rem;
}

.text48 {
  font-size: 4.8rem;
}

.text26 {
  font-size: 2.6rem;
}

.text30 {
  font-size: 3rem;
}

.text40 {
  font-size: 4rem;
}

.text18 {
  font-size: 1.8rem;
}

.text15 {
  font-size: 1.5rem;
}

/****************************************************************
    LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT
****************************************************************/
.off-canvas-wrapper {
  position: relative;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
}
.container.container1600 {
  max-width: 1600px;
}
.container.container1860 {
  max-width: 1860px;
}

.flex_container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-padding {
  padding: 10rem 0;
}

/** Main Menu */
ul#main-menu {
  position: relative;
  display: flex;
  flex-direction: row;
  list-style: none;
  margin-bottom: 0;
  padding-right: 0;
}
ul#main-menu > li {
  position: relative;
}
ul#main-menu > li > a {
  position: relative;
  display: block;
  font-size: 2rem;
  color: #00454C;
  line-height: 2;
  padding: 5px 2rem;
}
ul#main-menu > li > a:focus, ul#main-menu > li > a :hover {
  text-decoration: none;
  color: #303030;
}
ul#main-menu > li.current-menu-item > a {
  color: #303030;
}
ul#main-menu > li.menu-item-has-children:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
}
ul#main-menu > li.menu-item-has-children:hover > ul.sub-menu a {
  line-height: 1.2;
  padding: 10px;
}
ul#main-menu ul.sub-menu {
  position: absolute;
  z-index: 10;
  right: 15px;
  top: 100%;
  width: 250px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
ul#main-menu ul.sub-menu li {
  position: relative;
  display: block;
  background: #34c5ca;
}
ul#main-menu ul.sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  color: #303030;
  margin-right: 2px;
  margin-left: 2px;
  transition: all ease-out 0.5s;
  line-height: 0;
}
ul#main-menu ul.sub-menu li a:hover, ul#main-menu ul.sub-menu li a:focus {
  text-decoration: none;
  transform: translateX(-10px);
}
ul#main-menu ul.sub-menu li:hover > a {
  color: #303030;
}

/****** General ******/
.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.white {
  color: #fff;
}

.full-absolute {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.bg-image {
  background-position: center;
  background-size: cover;
}

.page-template-accessibility {
  direction: rtl;
}
.page-template-accessibility a.accessibility {
  margin-top: 5px;
  display: block;
}
.page-template-accessibility .main-container {
  padding: 70px 15px;
}
.page-template-accessibility h1 {
  text-align: center;
}
.page-template-accessibility h2 {
  font-size: 2rem;
  margin-top: 50px;
  text-align: right;
}
.page-template-accessibility p {
  text-align: right !important;
  line-height: 1.4;
}
.page-template-accessibility .content ul {
  direction: rtl;
  list-style: disc;
}
.page-template-accessibility .content ul p {
  text-align: right;
}
.page-template-accessibility .content ul li {
  font-size: 0.9rem;
  text-align: right;
  margin-bottom: 10px;
}

.landing-button {
  background: transparent;
  border: none;
  height: 35px;
  position: relative;
  padding: 0;
  transition: all cubic-bezier(0, 0, 0, 1) 0.5s;
}
.landing-button a {
  padding: 0.5rem 1rem;
  display: inline-block;
  height: 100%;
  position: relative;
  overflow: hidden;
  color: black;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
}
.landing-button a span {
  position: relative;
  z-index: 1;
}
.landing-button a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  left: -100%;
  top: 0;
  border-radius: 0 6px 6px 0;
  transition: all cubic-bezier(0, 0, 0, 1) 0.5s;
}
.landing-button a:hover:after {
  left: 0;
}
.landing-button:after {
  content: "";
  position: absolute;
  left: -29px;
  top: 0;
  width: 30px;
  height: 35px;
  background: url(../svg/button_tri_white.svg) center right no-repeat;
  background-size: cover !important;
}
.landing-button:hover {
  transform: translateX(-2rem);
}

.landing-green-button {
  border: none;
  background: rgb(46, 195, 192);
  background: linear-gradient(0deg, rgb(46, 195, 192) 0%, rgb(120, 205, 185) 100%);
  border-radius: 1rem;
}
.landing-green-button a {
  display: inline-block;
  width: 100%;
  padding: 0.5rem 3rem;
  color: white;
  font-weight: 500;
  text-align: center;
}

header {
  z-index: 99;
}
header.inner-header {
  padding-top: 2rem;
}
header.inner-header .logo {
  width: 130px;
  margin-bottom: -4rem;
  position: relative;
  z-index: 2;
}
header.inner-header ul#main-menu {
  margin: 3.7rem 4rem 0 0;
}
header.inner-header nav {
  border-bottom: none;
}
header nav {
  flex-grow: 1;
  align-self: flex-start;
  margin-right: 4rem;
  border-bottom: 1px solid #00454C;
}
header .header-donate {
  background: #00454C;
  border: none;
  padding: 5px 2rem;
}
header .header-donate a span {
  font-size: 1.5rem;
  margin-left: 0.5rem;
}

.has-overflow header {
  position: absolute;
  width: 100%;
}

/*-------------------------- Landing ------------------------------------ */
body.page-template-landing header .landing-top {
  height: 800px;
  background: url(../img/mlh_top_bg.jpg) center center no-repeat;
  background-size: cover !important;
  position: relative;
}
body.page-template-landing header .landing-top img.main-landing {
  position: absolute;
  left: 0;
  height: 100%;
  width: auto;
}
body.page-template-landing header .landing-top .landing-logo {
  position: absolute;
  right: calc((100% - 1200px) / 2);
  top: 10%;
}
body.page-template-landing .page-wrap {
  padding: 10rem 0;
}
body.page-template-landing #landing-about {
  padding: 10rem 0 15rem;
}
body.page-template-landing #landing-about .about {
  position: relative;
  padding: 1rem 9rem 0 0;
}
body.page-template-landing #landing-about .about::before {
  content: "";
  background: url(../img/about_tri.png) center center no-repeat;
  background-size: contain;
  width: 80px;
  height: 120px;
  position: absolute;
  display: inline-block;
  right: 0;
  top: 0;
}
body.page-template-landing #landing-about .landig-main-pic {
  position: relative;
}
body.page-template-landing #landing-about .landig-main-pic figure {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
}
body.page-template-landing #landing-about .landig-main-pic figure img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-landing #landing-about .landig-main-pic::after {
  content: "";
  width: 158px;
  height: 180px;
  background: url(../svg/pic_tri.svg) bottom no-repeat;
  background-size: contain;
  position: absolute;
  right: -2rem;
  bottom: 0;
}
body.page-template-landing #landing-contact {
  background: rgb(46, 195, 195);
  background: linear-gradient(180deg, rgb(46, 195, 195) 0%, rgb(120, 205, 185) 100%);
  height: 300px;
  margin-top: 3rem;
}
body.page-template-landing #landing-contact .container {
  position: relative;
  height: 100%;
}
body.page-template-landing #landing-contact .container .contact-title {
  position: absolute;
  right: 1rem;
  top: -0.5rem;
  background: rgb(22, 93, 88);
  background: linear-gradient(180deg, rgb(22, 93, 88) 0%, rgb(1, 107, 112) 100%);
  color: white;
  padding: 1rem 3rem;
  border-radius: 0 0 1rem 1rem;
  font-size: 3rem;
}
body.page-template-landing #landing-contact .container .flow-pic {
  position: absolute;
  left: 0;
  bottom: 0;
}
body.page-template-landing #landing-contact .container .row {
  height: 100%;
  align-items: center;
}
body.page-template-landing #landing-contact .contact-list {
  padding: 0;
  margin: 5rem 0 0 0;
}
body.page-template-landing #landing-contact .contact-list li {
  margin: 2rem 0;
}
body.page-template-landing #landing-contact .contact-list li a {
  color: #303030;
}
body.page-template-landing #landing-contact .contact-list li a img {
  margin-left: 1rem;
}
body.page-template-landing #landing-gallery {
  padding: 5rem 0 10rem;
}
body.page-template-landing #landing-gallery figure {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
}
body.page-template-landing #landing-gallery figure img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-landing .footer {
  position: relative;
  padding: 3rem 0 5rem;
  background: url(../img/mlh_top_bg.jpg) center center no-repeat;
  background-size: cover !important;
}
body.page-template-landing .footer .footer-logo {
  margin-bottom: 2rem;
}
body.page-template-landing .footer .footer-logo img {
  max-width: 130px;
}
body.page-template-landing .footer p {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}
body.page-template-landing .footer p img {
  margin-left: 1rem;
  max-width: 3rem;
}
body.page-template-landing .footer a {
  color: #303030;
}
body.page-template-landing .footer .footer-illus {
  position: absolute;
  max-width: 40%;
  left: 5rem;
  top: -16rem;
}

/*-------------------------- Homepage ------------------------------------ */
.page-template-home header {
  position: absolute;
  width: 100%;
  padding-top: 3rem;
}
.page-template-home header .logo {
  max-width: 130px;
}
.page-template-home #hp-top .hp-top-content {
  position: absolute;
  width: 100%;
  top: 25vh;
}
.page-template-home #hp-top .hp-top-content h1 {
  font-family: "Karantina", system-ui !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}
.page-template-home #hp-top .hp-top-content h1 span {
  color: #34c5ca;
  font-family: inherit;
}
.page-template-home #hp-services {
  padding: 10rem 0;
}
.page-template-home #hp-services .services-acordion .service {
  height: 700px;
  background-size: cover;
  flex: 0.5;
  margin: 0 1rem;
  border-radius: 2rem;
  overflow: hidden;
  transition: all cubic-bezier(0, 0, 0, 1) 1s;
  position: relative;
}
.page-template-home #hp-services .services-acordion .service:hover {
  flex: 1.2;
}
.page-template-home #hp-services .services-acordion .service:hover .color-overlay {
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.9;
}
.page-template-home #hp-services .services-acordion .service:hover h3 {
  top: 4rem;
  right: 4rem;
}
.page-template-home #hp-services .services-acordion .service:hover ul.services {
  right: 4rem;
}
.page-template-home #hp-services .services-acordion .service:hover ul.services li {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.page-template-home #hp-services .services-acordion .service:hover a.all-services {
  transform: translateY(0);
}
.page-template-home #hp-services .services-acordion .service:hover a.all-services img {
  transition: all ease 0.5s;
}
.page-template-home #hp-services .services-acordion .service:hover a.all-services:hover img {
  transform: rotate(-45deg);
}
.page-template-home #hp-services .services-acordion .service .overlay {
  background: #000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.page-template-home #hp-services .services-acordion .service .color-overlay {
  position: absolute;
  top: 85%;
  right: 0;
  width: 5rem;
  height: 3rem;
  transition: all cubic-bezier(0, 0, 0, 1) 0.5s;
  opacity: 1;
}
.page-template-home #hp-services .services-acordion .service h3 {
  font-family: "Heebo", serif;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  top: calc(85% - 1.5rem);
  right: 6rem;
  transition: all cubic-bezier(0, 0, 0, 1) 0.8s;
}
.page-template-home #hp-services .services-acordion .service ul.services {
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
  right: -150%;
  top: 12rem;
  transition: all cubic-bezier(0, 0, 0, 1) 1s;
}
.page-template-home #hp-services .services-acordion .service ul.services li {
  margin-bottom: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
  transform: translateX(5rem);
}
.page-template-home #hp-services .services-acordion .service ul.services a {
  color: white;
}
.page-template-home #hp-services .services-acordion .service a.all-services {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  color: black;
  transform: translateY(6rem);
  transition: all cubic-bezier(0, 0, 0, 1) 1s;
}
.page-template-home #insta-feed {
  padding: 15rem 0 10rem;
}
.page-template-home #insta-feed .insta-title {
  margin-bottom: 10rem;
  direction: ltr;
}
.page-template-home #insta-feed .insta-title h2 {
  font-weight: 300 !important;
  font-size: 8rem;
}
.page-template-home #insta-feed .sbi_follow_btn {
  margin-top: 3rem;
}
.page-template-home #insta-feed .sbi_follow_btn a {
  background: transparent !important;
  border-radius: 0 !important;
  color: #34c5ca !important;
  border: 1px solid #34c5ca;
  font-size: 2.5rem;
}
.page-template-home #insta-feed .sbi_follow_btn a svg {
  height: 2.2rem !important;
}
.page-template-home #insta-feed .sbi_follow_btn a:hover, .page-template-home #insta-feed .sbi_follow_btn a:focus {
  box-shadow: inset 0 0 20px 30px #34c5ca !important;
  color: white !important;
}

#hp-programs .programs-acordion, #hp-programs .singel-progtam-grid, #programs-grid .programs-acordion, #programs-grid .singel-progtam-grid {
  padding: 5rem 0;
}
#hp-programs .programs-acordion .single-program, #hp-programs .singel-progtam-grid .single-program, #programs-grid .programs-acordion .single-program, #programs-grid .singel-progtam-grid .single-program {
  display: inline-block;
  height: 200px;
  border-radius: 6rem;
  overflow: hidden;
  margin: 0 2rem 2rem 2rem;
  flex: 0.5;
  position: relative;
  transition: all cubic-bezier(0, 0, 0, 1) 1s;
}
#hp-programs .programs-acordion .single-program:first-child, #hp-programs .singel-progtam-grid .single-program:first-child, #programs-grid .programs-acordion .single-program:first-child, #programs-grid .singel-progtam-grid .single-program:first-child {
  margin-right: 0;
}
#hp-programs .programs-acordion .single-program:last-child, #hp-programs .singel-progtam-grid .single-program:last-child, #programs-grid .programs-acordion .single-program:last-child, #programs-grid .singel-progtam-grid .single-program:last-child {
  margin-left: 0;
}
#hp-programs .programs-acordion .single-program .program-image, #hp-programs .singel-progtam-grid .single-program .program-image, #programs-grid .programs-acordion .single-program .program-image, #programs-grid .singel-progtam-grid .single-program .program-image {
  position: absolute;
  background-size: cover !important;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  mix-blend-mode: luminosity;
  opacity: 0.7;
  transition: all ease 1s;
}
#hp-programs .programs-acordion .single-program .overlay, #hp-programs .singel-progtam-grid .single-program .overlay, #programs-grid .programs-acordion .single-program .overlay, #programs-grid .singel-progtam-grid .single-program .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  mix-blend-mode: multiply;
}
#hp-programs .programs-acordion .single-program:hover, #hp-programs .singel-progtam-grid .single-program:hover, #programs-grid .programs-acordion .single-program:hover, #programs-grid .singel-progtam-grid .single-program:hover {
  flex: 0.6;
  transform: scale(1.1);
}
#hp-programs .programs-acordion .single-program:hover .program-image, #hp-programs .singel-progtam-grid .single-program:hover .program-image, #programs-grid .programs-acordion .single-program:hover .program-image, #programs-grid .singel-progtam-grid .single-program:hover .program-image {
  opacity: 0.2;
}
#hp-programs .programs-acordion .single-program:hover .more, #hp-programs .singel-progtam-grid .single-program:hover .more, #programs-grid .programs-acordion .single-program:hover .more, #programs-grid .singel-progtam-grid .single-program:hover .more {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
#hp-programs .programs-acordion .single-program .program-desc, #hp-programs .singel-progtam-grid .single-program .program-desc, #programs-grid .programs-acordion .single-program .program-desc, #programs-grid .singel-progtam-grid .single-program .program-desc {
  position: absolute;
  width: 100%;
  bottom: 2rem;
  padding: 0 3rem 0 2rem;
}
#hp-programs .programs-acordion .single-program .program-desc h3, #hp-programs .singel-progtam-grid .single-program .program-desc h3, #programs-grid .programs-acordion .single-program .program-desc h3, #programs-grid .singel-progtam-grid .single-program .program-desc h3 {
  flex-shrink: 0;
  margin: 0 0 0 1.5rem;
  max-width: 100%;
}
#hp-programs .programs-acordion .single-program .program-desc p, #hp-programs .singel-progtam-grid .single-program .program-desc p, #programs-grid .programs-acordion .single-program .program-desc p, #programs-grid .singel-progtam-grid .single-program .program-desc p {
  line-height: 1.1;
  font-size: 1.8rem;
  margin: 0;
}
#hp-programs .programs-acordion .single-program .more, #hp-programs .singel-progtam-grid .single-program .more, #programs-grid .programs-acordion .single-program .more, #programs-grid .singel-progtam-grid .single-program .more {
  width: 3.6rem;
  height: 3.6rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateX(5rem);
  transition: all cubic-bezier(0, 0, 0, 1) 1s;
}

#hp-national-service {
  padding: 10rem 0;
}
#hp-national-service .ns-bg {
  background: #34c5ca;
  padding: 3rem 5rem;
  border-radius: 5rem;
}
#hp-national-service .ns-image {
  margin-top: -70%;
}

#hp-events, #events {
  padding: 5rem 0 15rem;
  overflow: hidden;
}
#hp-events .events-carousel, #events .events-carousel {
  margin-top: 5rem;
}
#hp-events .single-event, #events .single-event {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 3rem;
}
#hp-events .single-event img, #events .single-event img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all cubic-bezier(0, 0, 0, 1) 1s;
}
#hp-events .single-event .overlay, #events .single-event .overlay {
  background: #000;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  transition: all ease 1s;
}
#hp-events .single-event .event-desc, #events .single-event .event-desc {
  position: absolute;
  width: 100%;
  bottom: 2rem;
  padding: 0 3rem;
}
#hp-events .single-event .event-desc h3, #events .single-event .event-desc h3 {
  font-family: "Heebo", serif;
  font-weight: 800;
  line-height: 1;
  border-bottom: 1px solid white;
  margin: 0;
  padding-bottom: 1rem;
}
#hp-events .single-event .event-date *, #events .single-event .event-date * {
  font-family: "Karantina", system-ui !important;
  font-weight: 300 !important;
  line-height: 1 !important;
}
#hp-events .single-event .event-date, #events .single-event .event-date {
  position: absolute;
  right: 3rem;
  top: 0;
  padding: 1rem;
  border-radius: 0 0 5px 5px;
  background: #34c5ca;
}
#hp-events .single-event .event-date .day-of-month, #events .single-event .event-date .day-of-month {
  font-size: 9rem;
  line-height: 0.8;
}
#hp-events .single-event .event-date .day-of-month span, #events .single-event .event-date .day-of-month span {
  font-size: 2.5rem;
  margin-right: 5px;
}
#hp-events .single-event .event-date .month-year, #events .single-event .event-date .month-year {
  font-size: 2.4rem;
  letter-spacing: 1px;
}
#hp-events .single-event:hover img, #events .single-event:hover img {
  transform: scale(1.2) translate(-45%, -45%);
}
#hp-events .single-event:hover .overlay, #events .single-event:hover .overlay {
  transform: scale(4);
  top: -140%;
}
#hp-events .single-event:hover button, #events .single-event:hover button {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
#hp-events .single-event button, #events .single-event button {
  opacity: 0;
  visibility: hidden;
  transform: translateX(5rem);
  transition: all cubic-bezier(0, 0, 0, 1) 1s;
}

#hp-testimonials, #testimonials {
  overflow: hidden;
}
#hp-testimonials .testimonial-carousel, #hp-testimonials .testimonial-list, #testimonials .testimonial-carousel, #testimonials .testimonial-list {
  margin-top: 5rem;
}
#hp-testimonials .testimonial-carousel figure, #hp-testimonials .testimonial-list figure, #testimonials .testimonial-carousel figure, #testimonials .testimonial-list figure {
  width: 100%;
  aspect-ratio: 1/1;
}
#hp-testimonials .testimonial-carousel .testimonial-desc, #hp-testimonials .testimonial-list .testimonial-desc, #testimonials .testimonial-carousel .testimonial-desc, #testimonials .testimonial-list .testimonial-desc {
  position: relative;
  padding: 3.5rem 10rem 0 0;
}
#hp-testimonials .testimonial-carousel .testimonial-desc p.testimonial-title, #hp-testimonials .testimonial-list .testimonial-desc p.testimonial-title, #testimonials .testimonial-carousel .testimonial-desc p.testimonial-title, #testimonials .testimonial-list .testimonial-desc p.testimonial-title {
  border-bottom: 1px solid #a5ced6;
}
#hp-testimonials .testimonial-carousel .testimonial-desc::before, #hp-testimonials .testimonial-list .testimonial-desc::before, #testimonials .testimonial-carousel .testimonial-desc::before, #testimonials .testimonial-list .testimonial-desc::before {
  content: "";
  background: url(../svg/quotemark_t.svg) center center no-repeat;
  background-size: contain;
  width: 114px;
  height: 95px;
  position: absolute;
  left: calc(100% - 8rem);
  top: 0;
}
#hp-testimonials .testimonial-list, #testimonials .testimonial-list {
  margin: 0;
}
#hp-testimonials .testimonial-list .row, #testimonials .testimonial-list .row {
  margin-bottom: 5rem;
}

.carousel-bottom {
  position: relative;
  overflow: hidden;
}
.carousel-bottom::after {
  content: "";
}
.carousel-bottom .sep {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
}
.carousel-bottom .sep::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #a5ced6;
}
.carousel-bottom .mlh-carousel-nav button {
  border: none;
  background: transparent;
}
.carousel-bottom .mlh-carousel-nav button.owl-dot {
  background: #d9d9d9;
  width: 16px;
  height: 16px;
  margin: 0 4px;
}
.carousel-bottom .mlh-carousel-nav button.owl-dot.active {
  background: #34c5ca;
}
.carousel-bottom .mlh-carousel-nav .mlh-nav-container button, .carousel-bottom .mlh-carousel-nav .testimonial-nav button {
  line-height: 0.8;
}
.carousel-bottom .mlh-carousel-nav .mlh-nav-container button span, .carousel-bottom .mlh-carousel-nav .testimonial-nav button span {
  border-top: 2px solid #303030;
  border-right: 2px solid #303030;
  transform: rotate(45deg);
  width: 1.6rem;
  height: 1.6rem;
  text-indent: -9999px;
  display: inline-block;
}
.carousel-bottom .mlh-carousel-nav .mlh-nav-container button.owl-next span, .carousel-bottom .mlh-carousel-nav .testimonial-nav button.owl-next span {
  transform: rotate(-135deg);
}

#inner-top {
  height: 650px;
  position: relative;
}
#inner-top.h-500 {
  height: 500px;
}
#inner-top::after {
  content: "";
  width: 100%;
  height: 15px;
  position: absolute;
  top: 0;
  z-index: 0;
  box-shadow: inset 0 5px 7px rgba(0, 0, 0, 0.15);
}
#inner-top img.top-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
#inner-top .container .title-bg {
  width: 500px;
  height: 100%;
  max-width: 100%;
}
#inner-top .container .title-bg h1 {
  width: 100%;
  padding-bottom: 2rem;
  border-bottom: 10px solid white;
}

#inner-after-top {
  padding-bottom: 10rem;
}
#inner-after-top .after-title {
  width: 500px;
  height: 100px;
  border-radius: 0 0 2rem 2rem;
  max-width: 100%;
}

.team-details {
  position: relative;
}
.team-details span.team-line {
  position: absolute;
  right: -5px;
  top: -30px;
  height: 130%;
  width: 8px;
  border-radius: 4px;
}

#about-gallery {
  padding-top: 10rem;
}
#about-gallery figure {
  aspect-ratio: 1/2;
}
#about-gallery figure:nth-child(odd) {
  margin-top: 20rem;
}

#inner-top .container, #service-top .container, #programs-top .container {
  position: relative;
  height: 100%;
}
#inner-top .container .logo-bg, #service-top .container .logo-bg, #programs-top .container .logo-bg {
  position: absolute;
  z-index: 1;
  height: 60px;
  width: 500px;
  top: -1px;
  left: calc(100% - 170px);
  background: white;
}
#inner-top .container .logo-bg::after, #service-top .container .logo-bg::after, #programs-top .container .logo-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% - 1px);
  height: 100px;
  width: 100px;
  background: white;
  clip-path: polygon(0 0, 100% 0%, 100% 60%, 100% 60%);
}
#inner-top .container .logo-bg.small, #service-top .container .logo-bg.small, #programs-top .container .logo-bg.small {
  left: calc(100% + 80px);
}

#service-top .container .logo-bg {
  left: calc(100% - 120px);
}

.single #service-top .container .logo-bg, .post-type-archive-program #service-top .container .logo-bg {
  left: calc(100% - 120px);
}
.single .header-donate, .post-type-archive-program .header-donate {
  border-radius: 0 0 0 20px;
}

/*------------------------- Single services ------------------------*/
.single-service #service-top .top-strip {
  border-radius: 20px 0 20px 20px;
  padding-bottom: 3rem;
}
.single-service #service-top .top-strip .service-title {
  padding: 10rem 0 0 5rem;
  line-height: 1.2;
}
.single-service #service-top .top-strip figure {
  position: absolute;
  width: 100%;
  left: 0;
  top: 10rem;
  aspect-ratio: 4/3;
}
.single-service #service-top .subtitle {
  min-height: 10rem;
}
.single-service .no-thumbnail .subtitle {
  min-height: 0 !important;
}
.single-service #section-1 {
  width: 75%;
}
.single-service .service-carousel figure .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
}
.single-service .service-carousel figure img {
  transition: all cubic-bezier(0, 0, 0, 1) 1s;
}
.single-service .service-carousel h3 {
  position: absolute;
  right: -15px;
  bottom: 3rem;
  padding: 0.5rem 2rem;
}
.single-service .service-carousel a:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

#section-content {
  padding-top: 10rem;
}
#section-content .side-bar {
  margin-top: 15rem;
  background: #a5ced6;
  padding: 4rem 2rem;
  position: sticky;
  top: 2rem;
}
#section-content .side-bar::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 80px 80px 0px;
  border-color: transparent transparent #FFFFFF transparent;
  transform: rotate(90deg);
}
#section-content .side-bar h3 {
  color: white;
  letter-spacing: 1.2px;
}
#section-content p {
  margin-bottom: 2rem;
}
#section-content h2 {
  margin-top: 5rem;
}
#section-content h2:first-child {
  margin-top: 0;
}
#section-content ul {
  list-style: none;
  padding-right: 2.5rem;
}
#section-content ul li {
  position: relative;
  margin-bottom: 2rem;
}
#section-content ul li::before {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 7px 12.1px 7px;
  border-color: transparent transparent #34c5ca transparent;
  transform: rotate(30deg);
  position: absolute;
  right: -2.5rem;
  top: 0.7rem;
}
#section-content ol {
  list-style: none;
  counter-reset: item;
  padding-right: 0;
}
#section-content ol > li {
  position: relative;
  counter-increment: item;
  margin-right: 2rem;
  margin-bottom: 2rem;
  padding-right: 3rem;
}
#section-content ol > li::before {
  content: counter(item);
  position: absolute;
  right: -2rem;
  background-color: #34c5ca;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  width: 3.5rem;
  aspect-ratio: 1/1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
#section-content .service-section {
  padding-bottom: 5rem;
}
#section-content .service-section em {
  display: inline-block;
  background: #a5ced6;
  border-radius: 10px 0 10px 10px;
  padding: 2rem;
  position: relative;
  margin: 2rem 12px 2rem 0;
}
#section-content .service-section em::before {
  content: "!";
  width: 36px;
  height: 36px;
  border: 5px solid white;
  border-radius: 50%;
  position: absolute;
  right: -15px;
  top: -15px;
  font-weight: 900;
  color: white;
  text-align: center;
  font-style: normal;
}
#section-content .image_block figure {
  aspect-ratio: 4/3;
}
#section-content .faq-section .faq-object {
  transition: all ease 0.3s;
  opacity: 0;
  transform: translateX(200px);
}
#section-content .faq-section .faq-object.animation-on {
  animation: from-right cubic-bezier(0, 0, 0, 1) 1s forwards;
  animation-fill-mode: both;
}
#section-content .faq-section .question {
  background: #d1dfe2;
  padding: 1rem 2rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  position: relative;
}
#section-content .faq-section .question::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 20px 20px 0px;
  border-color: transparent white transparent transparent;
  right: 0;
  top: 0;
}
#section-content .faq-section .question span {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 7px 12.1px 7px;
  transform: rotate(30deg);
  border-color: transparent transparent white transparent;
  transition: all ease 0.3s;
}
#section-content .faq-section .question.active span {
  transform: rotate(-60deg);
}
#section-content .faq-section .question.active {
  color: white !important;
}
#section-content .faq-section#section-1 {
  width: 100%;
}
#section-content .faq-section .answer {
  display: none;
  padding-right: 2rem;
}
#section-content .slider figure {
  aspect-ratio: 16/9;
}

.top-strip-general {
  padding: 5rem 0;
}

#section-content {
  padding: 10rem 0;
}

#partners img {
  max-width: 20rem;
  max-height: 15rem;
}

#documents .single-doc {
  padding-left: 3rem;
  margin-bottom: 6rem;
}
#documents a {
  color: #303030;
  line-height: 1.2;
}
#documents img {
  max-width: 7rem;
}

body.single-program #section-content {
  padding-top: 0;
}
body.single-program .header-donate {
  border-radius: 0;
}

.page-template-national_service #inner-after-top {
  padding: 0;
}

/*------------------------- Archive Program ----------------------------- */
.post-type-archive-program #programs-top .top-strip, .tax-service_cat #programs-top .top-strip {
  border-radius: 20px 0 20px 20px;
  padding-bottom: 3rem;
}
.post-type-archive-program #programs-top .top-strip .service-title, .tax-service_cat #programs-top .top-strip .service-title {
  padding: 10rem 0 0 5rem;
  line-height: 1.2;
}
.post-type-archive-program #programs-content, .tax-service_cat #programs-content {
  padding: 10rem 0;
}
.post-type-archive-program .programs-acordion, .tax-service_cat .programs-acordion {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}
.post-type-archive-program .programs-acordion:hover .single-program, .tax-service_cat .programs-acordion:hover .single-program {
  transform: scale(0.95);
}
.post-type-archive-program .programs-acordion .single-program, .tax-service_cat .programs-acordion .single-program {
  margin: 1rem !important;
  height: 300px !important;
}

/*----------------------- Archive services --------------------*/
.tax-service_cat #programs-grid .programs-acordion {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.tax-service_cat #programs-grid .programs-acordion .single-program {
  height: 200px !important;
  border-radius: 3rem;
}
.tax-service_cat #programs-grid .programs-acordion .single-program .program-image {
  mix-blend-mode: initial !important;
}

/*------------------------- Footer --------------------------- */
.mlh-footer {
  margin: 10rem 0 1rem;
}
.mlh-footer .footer-container {
  border-radius: 2rem;
  background: RGBA(52, 197, 202, 1);
  background: linear-gradient(90deg, rgb(52, 197, 202) 0%, rgb(0, 107, 112) 100%);
  padding: 5rem;
}
.mlh-footer .footer-container .contact-details a {
  display: block;
  color: white;
  margin-bottom: 1rem;
}
.mlh-footer .footer-container .mlh-socials a {
  display: inline-block;
  width: 3rem;
}
.mlh-footer .footer-rights {
  color: #303030;
}
.mlh-footer .footer-rights ul {
  padding: 0;
  list-style: none;
}
.mlh-footer .footer-rights .credit {
  direction: ltr;
  text-align: left;
}

#main-footer {
  scroll-margin-top: 100px;
}

.wpcf7 label, .wpcf7 input, .wpcf7 textarea {
  width: 100%;
}
.wpcf7 input, .wpcf7 textarea {
  border: none;
  border-bottom: 1px solid white;
  color: white;
  background: transparent;
}
.wpcf7 label {
  color: white;
}
.wpcf7 textarea {
  max-height: 12rem;
}
.wpcf7 input[type=submit] {
  width: auto;
  border: 1px solid;
  padding: 1rem 3rem;
}

/*============= Donations ==================*/
#donate-form label {
  height: 150px;
  border: 1px solid #a5ced6;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.3s;
  cursor: pointer;
}
#donate-form label input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#donate-form label .number {
  font-family: "Karantina", system-ui;
  font-size: 6rem;
}
#donate-form label.selected {
  background: #34c5ca;
  border-color: #34c5ca;
}
#donate-form label.custom-donate > span {
  font-size: 6rem;
  line-height: 1;
}
#donate-form label.custom-donate .custom-input {
  visibility: hidden;
  opacity: 0;
  height: 0;
}
#donate-form label.custom-donate .custom-input input[type=number] {
  transition: all ease 0.3s;
  font-size: 2.5rem;
  max-width: 120px;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}
#donate-form label.custom-donate.selected .custom-input {
  visibility: visible;
  opacity: 1;
  height: 4.5rem;
}
#donate-form input[type=submit] {
  min-width: 200px;
}
#donate-form .form-error {
  color: red;
  display: none;
}
#donate-form .form-error::before {
  content: "!";
  width: 25px;
  height: 25px;
  border: 2px solid red;
  border-radius: 50%;
  color: red;
  font-size: 1.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
}

#bank-transfer .wrapper {
  background: #a5ced6;
  padding: 2rem 4rem;
}

.page-template-thanks #inner-top.thank-you {
  height: auto;
  background: #ab7e6a;
}
.page-template-thanks #inner-top.thank-you .thanks {
  height: 60vh;
}

/*------------------------- Animations ----------------------------- */
.typewriter {
  display: inline-block;
  line-height: 1.3;
  max-width: 48ch;
  box-sizing: border-box;
  caret-color: transparent;
}

@keyframes slide {
  to {
    transform: translatex(0);
    opacity: 1;
  }
}
@keyframes from-right {
  0% {
    transform: translateX(200px);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
.delay:nth-child(1) {
  animation-delay: 0.1s !important;
}

.delay:nth-child(2) {
  animation-delay: 0.2s !important;
}

.delay:nth-child(3) {
  animation-delay: 0.3s !important;
}

.delay:nth-child(4) {
  animation-delay: 0.4s !important;
}

.delay:nth-child(5) {
  animation-delay: 0.5s !important;
}

.delay:nth-child(6) {
  animation-delay: 0.6s !important;
}

.delay:nth-child(7) {
  animation-delay: 0.7s !important;
}

.delay:nth-child(8) {
  animation-delay: 0.8s !important;
}

.delay:nth-child(9) {
  animation-delay: 0.9s !important;
}

.delay:nth-child(10) {
  animation-delay: 1s !important;
}

.delay:nth-child(11) {
  animation-delay: 1.1s !important;
}

.delay:nth-child(12) {
  animation-delay: 1.2s !important;
}

.delay:nth-child(13) {
  animation-delay: 1.3s !important;
}

.delay:nth-child(14) {
  animation-delay: 1.4s !important;
}

.delay:nth-child(15) {
  animation-delay: 1.5s !important;
}

.delay:nth-child(16) {
  animation-delay: 1.6s !important;
}

.delay:nth-child(17) {
  animation-delay: 1.7s !important;
}

.delay:nth-child(18) {
  animation-delay: 1.8s !important;
}

.delay:nth-child(19) {
  animation-delay: 1.9s !important;
}

.delay:nth-child(20) {
  animation-delay: 2s !important;
}

.delay:nth-child(21) {
  animation-delay: 2.1s !important;
}

.delay:nth-child(22) {
  animation-delay: 2.2s !important;
}

.delay:nth-child(23) {
  animation-delay: 2.3s !important;
}

.delay:nth-child(24) {
  animation-delay: 2.4s !important;
}

.delay:nth-child(25) {
  animation-delay: 2.5s !important;
}

.delay:nth-child(26) {
  animation-delay: 2.6s !important;
}

.delay:nth-child(27) {
  animation-delay: 2.7s !important;
}

.delay:nth-child(28) {
  animation-delay: 2.8s !important;
}

.delay:nth-child(29) {
  animation-delay: 2.9s !important;
}

.delay:nth-child(30) {
  animation-delay: 3s !important;
}

.off-canvas.is-open ul.mobile-menu > li:nth-child(1n) {
  animation-delay: 0.1s;
}

.off-canvas.is-open ul.mobile-menu > li:nth-child(2n) {
  animation-delay: 0.2s;
}

.off-canvas.is-open ul.mobile-menu > li:nth-child(3n) {
  animation-delay: 0.3s;
}

.off-canvas.is-open ul.mobile-menu > li:nth-child(4n) {
  animation-delay: 0.4s;
}

.off-canvas.is-open ul.mobile-menu > li:nth-child(5n) {
  animation-delay: 0.5s;
}

.off-canvas.is-open ul.mobile-menu > li:nth-child(6n) {
  animation-delay: 0.6s;
}

.off-canvas.is-open ul.mobile-menu > li:nth-child(7n) {
  animation-delay: 0.7s;
}

.off-canvas.is-open ul.mobile-menu > li:nth-child(8n) {
  animation-delay: 0.8s;
}

.off-canvas.is-open ul.mobile-menu > li:nth-child(9n) {
  animation-delay: 0.9s;
}

.off-canvas.is-open ul.mobile-menu > li:nth-child(10n) {
  animation-delay: 1s;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

/* Edit Above Only*/
.mobile_menu_button {
  position: relative;
  display: none;
}

.triggerMobileMenu {
  position: relative;
  width: 40px;
  height: 28px;
  padding: 0;
  border: 0;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: none;
  text-indent: -99999px;
}
.triggerMobileMenu span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #165D58;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.triggerMobileMenu span:nth-child(1) {
  top: 0px;
}
.triggerMobileMenu span:nth-child(2) {
  top: 11px;
}
.triggerMobileMenu span:nth-child(3) {
  top: 22px;
}
.triggerMobileMenu.open span {
  background: white;
}
.triggerMobileMenu.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}
.triggerMobileMenu.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.triggerMobileMenu.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

.button.triggerMobileMenu:focus,
.button.triggerMobileMenu:hover {
  background: none;
  outline: none;
}

/** off-cnavas (mobile menu wrapper) ****************/
.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #165D58;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.off-canvas.is-open {
  z-index: 9;
  transform: translate(0);
}
.off-canvas.is-open ul.mobile-menu > li {
  animation: slide 1s ease-out both;
}

.position-left {
  transform: translateX(-100%);
  left: 0;
}

.position-right {
  transform: translateX(100%);
  right: 0;
}

body.admin-bar .off-canvas {
  top: 32px;
}

/** Mobile Menu Style **************/
.mobile_menu_holder {
  position: relative;
  text-align: center;
}

.mobile_menu_title {
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  padding: 10px 0;
  background: #34c5ca;
  border-bottom: 1px solid #34c5ca;
  font-weight: 500;
  color: #fff;
}

ul#mobile-menu {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
}
ul#mobile-menu li {
  position: relative;
  display: block;
}
ul#mobile-menu li a {
  position: relative;
  display: block;
  font-size: 2.5rem;
  text-decoration: none;
  padding: 10px 15px;
  color: white;
}
ul#mobile-menu > li {
  transform: translateX(300px);
}
ul#mobile-menu ul.sub-menu {
  position: relative;
  display: none;
  padding: 0;
}
ul#mobile-menu ul.sub-menu li a {
  padding: 0px 15px 10px 15px;
  font-size: 2rem;
}
ul#mobile-menu ul.sub-menu:after {
  content: "";
  height: 2px;
  width: 100px;
  background: white;
  display: inline-block;
  margin: 2rem auto;
}

ul#mobile-menu > li > a:focus,
ul#mobile-menu > li.current-menu-item > a,
ul#mobile-menu ul.sub-menu li.current-menu-item a,
ul.mobile_menu > li a:hover {
  color: white;
}

/****************************************************************************************************************/
@media only screen and (max-width: 1600px) {
  #inner-top .container .logo-bg.small, #service-top .container .logo-bg.small {
    left: 100%;
  }
}
@media only screen and (max-width: 1440px) {
  body.page-template-landing header .landing-top {
    height: 600px;
  }
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  #inner-top .container .logo-bg.small, #service-top .container .logo-bg.small {
    left: calc(100% - 60px);
  }
}
@media only screen and (max-width: 1300px) {
  #inner-top .container .logo-bg.small, #service-top .container .logo-bg.small {
    left: calc(100% - 170px);
  }
}
@media only screen and (max-width: 1200px) {
  body.page-template-landing header .landing-top {
    height: 500px;
  }
  body.page-template-landing header .landing-top .landing-logo {
    right: 2rem;
  }
  .text60 {
    font-size: 5rem;
  }
  #hp-top .hp-top-quote {
    width: 90px;
  }
  #hp-programs .programs-acordion .single-program {
    flex: 0 0 49%;
    max-width: 49%;
    margin: 0 0 2rem 0;
  }
} /* end of (max-width: 1200px) */
/****************************************************************************************************************/
@media only screen and (max-width: 990px) {
  h1 {
    font-size: 6rem;
  }
  body.page-template-landing header .landing-top {
    height: 400px;
  }
  body.page-template-landing #landing-contact .container .flow-pic {
    max-width: 50%;
  }
  .text26 {
    font-size: 23px;
  }
  .single-service #section-content {
    padding-top: 10rem;
  }
  .page-template-home #hp-top .hp-top-content {
    position: initial;
  }
  .page-template-home #hp-services .services-acordion .service {
    height: 600px;
    margin-bottom: 2rem;
  }
  .mobile_menu_button {
    display: block;
  }
  .wrap_main_menu {
    display: none;
  }
  header nav {
    border-bottom: none;
    flex-grow: 0;
  }
  header nav .left-menu {
    display: none !important;
  }
  #hp-national-service {
    padding: 10rem 0 7rem;
  }
  .tax-service_cat #programs-grid .programs-acordion {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
} /* end of (max-width: 990px) */
/****************************************************************************************************************/
@media only screen and (max-width: 768px) {
  body.admin-bar .off-canvas {
    top: 46px;
  }
  body.page-template-landing header .landing-top {
    height: 300px;
  }
  body.page-template-landing header .landing-top .landing-logo {
    width: 120px;
  }
  body.page-template-landing #landing-about .landig-main-pic figure {
    aspect-ratio: 1/1;
    width: 80%;
    margin: 0 auto;
    height: auto;
  }
  body.page-template-landing #landing-about .landig-main-pic figure img {
    width: 100%;
    height: 100%;
  }
  .single-service #service-top .top-strip figure {
    position: relative;
    top: 5rem;
  }
  .single-service #service-top .top-strip .service-title {
    padding: 7rem 0 0 0;
  }
  header.inner-header .logo {
    width: 100px;
  }
  #inner-top .container .logo-bg, #service-top .container .logo-bg {
    height: 47px;
    left: calc(100% - 100px);
  }
  #inner-top .container .logo-bg::after, #service-top .container .logo-bg::after {
    height: 80px;
    width: 80px;
  }
  #inner-top .container .logo-bg.small, #service-top .container .logo-bg.small {
    left: calc(100% - 100px);
  }
  .page-template-home header {
    padding-top: 2rem;
  }
  #hp-programs .programs-acordion .single-program {
    max-width: 100%;
  }
  #hp-testimonials .testimonial-carousel .testimonial-desc::before, #hp-testimonials .testimonial-list .testimonial-desc::before, #testimonials .testimonial-carousel .testimonial-desc::before, #testimonials .testimonial-list .testimonial-desc::before {
    width: 90px;
    height: 60px;
    left: calc(100% - 10rem);
    top: 2rem;
  }
  .mlh-carousel-nav {
    margin-top: 3rem;
  }
  .carousel-bottom {
    text-align: center;
  }
  .footer-contact {
    margin-top: 4rem;
  }
  #inner-top {
    height: 400px;
  }
  #about-gallery figure {
    flex: 0 0 45%;
    max-width: 45%;
  }
  #about-gallery figure:nth-child(odd) {
    margin-top: 0;
  }
  #inner-top.h-500 {
    height: 400px;
  }
  #hp-national-service {
    padding: 0 0 7rem;
  }
  #hp-national-service .ns-image {
    margin-top: 2rem;
  }
  .post-type-archive-program .programs-acordion .single-program {
    margin: 0 0 3rem !important;
  }
  .single-service #section-1 {
    width: 100%;
  }
} /* end of (max-width: 768px) */
/****************************************************************************************************************/
@media only screen and (max-width: 650px) {
  body.page-template-landing #landing-contact .container .flow-pic {
    top: 100%;
    max-width: 90%;
  }
  body.page-template-landing #landing-gallery {
    margin-top: 32rem;
  }
  body.page-template-landing #landing-gallery figure {
    width: 80%;
    margin: 2rem auto;
  }
}
@media only screen and (max-width: 576px) {
  body.page-template-landing header .landing-top {
    height: 200px;
  }
  body.page-template-landing .page-wrap {
    padding: 5rem 0;
  }
  body.page-template-landing .landing-top {
    padding: 0;
    flex-direction: column;
  }
  body.page-template-landing .landing-top > * {
    width: 100%;
    max-width: 100% !important;
  }
  body.page-template-landing .landing-top .landing-title {
    padding: 0 3rem !important;
  }
  body.page-template-landing #landing-about {
    padding: 0 0 10rem !important;
  }
  body.page-template-landing #landing-about .about {
    padding: 8rem 9rem 0 0 !important;
  }
  body.page-template-landing #landing-about .about::before {
    width: 80px !important;
  }
  body.page-template-landing .footer .footer-illus {
    max-width: 50%;
    left: 2rem;
    top: -10rem;
  }
  #hp-top > img {
    max-width: 130%;
    margin-right: -25%;
    margin-top: 60px;
  }
  .page-template-home header .logo {
    max-width: 100px;
  }
  .text60 {
    font-size: 4rem;
  }
  #hp-services .services-acordion .service ul.services {
    display: none;
  }
} /* end of (max-width: 576px) */
/****************************************************************************************************************/
@media only screen and (max-width: 480px) {
  body.page-template-landing header .landing-top {
    height: 150px;
  }
  body.page-template-landing header .landing-top .landing-logo {
    right: 0;
    top: 1rem;
  }
  body.page-template-landing #landing-about {
    padding: 5rem 0 10rem !important;
  }
  body.page-template-landing #landing-about .about::before {
    width: 40px !important;
  }
  body.page-template-landing #landing-about .about {
    padding: 3rem 5rem 0 0 !important;
  }
  body.page-template-landing h1 {
    font-size: 5rem !important;
  }
  body.page-template-landing h2 {
    font-size: 4rem;
  }
  body.page-template-landing .footer {
    padding: 16rem 2rem 5rem;
  }
  body.page-template-landing .footer .footer-illus {
    max-width: 70%;
  }
  body.page-template-landing .page-wrap {
    padding: 0 0 3rem;
  }
  body.page-template-landing #landing-gallery {
    margin-top: 26rem;
  }
  body.page-template-landing #landing-contact .container .flow-pic {
    max-width: 100%;
  }
  #inner-top {
    height: 300px;
  }
  #inner-top .container .title-bg {
    width: 100%;
  }
  #inner-top .container1600 {
    padding: 0;
  }
  #inner-after-top {
    padding-bottom: 5rem;
  }
  #inner-after-top .after-title {
    width: 100%;
    height: 50px;
  }
  #inner-after-top .container1600 {
    padding: 0;
  }
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #hp-testimonials .testimonial-carousel .testimonial-desc, #hp-testimonials .testimonial-list .testimonial-desc, #testimonials .testimonial-carousel .testimonial-desc, #testimonials .testimonial-list .testimonial-desc {
    padding: 6.5rem 1.8rem 0 0;
  }
  #hp-testimonials .testimonial-carousel .testimonial-desc::before, #hp-testimonials .testimonial-list .testimonial-desc::before, #testimonials .testimonial-carousel .testimonial-desc::before, #testimonials .testimonial-list .testimonial-desc::before {
    top: 0;
  }
  #hp-services .services-acordion .service {
    height: 400px !important;
    background-size: cover !important;
  }
  .mlh-footer .footer-container {
    padding: 2rem;
  }
  #donate-form label {
    height: 100px;
  }
  #bank-transfer .wrapper {
    padding: 2rem;
  }
  #inner-top.h-500 {
    height: 300px;
  }
  #hp-national-service .ns-bg {
    padding: 3rem 2rem;
    border-radius: 3rem;
  }
} /* end of (max-width: 480px) */
@media only screen and (max-width: 400px) {
  body.page-template-landing header .landing-top .landing-logo {
    max-width: 100px !important;
  }
  body.page-template-landing #landing-contact .container .flow-pic {
    max-width: 100%;
  }
  body.page-template-landing #landing-gallery {
    margin-top: 24rem;
  }
  body.page-template-landing #landing-gallery figure {
    width: 90%;
  }
  body.page-template-landing .footer {
    padding: 10rem 2rem 3rem;
  }
}
/****************************************************************************************************************//*# sourceMappingURL=style.css.map */