:root {
  --first-clr: #56d966;
  --second-clr: #c50303;
  --third-clr: #020100;
  --light-grey: #e8e8e8;
  --light-white: #f3f3f3;
  --first-bs: 0px 14px 80px rgb(34 35 58 / 20%);
  --border-radius: 25px;
}

.share-social-buttons .fa-facebook {
  color: #3b5998;
}

.share-social-buttons .fa-twitter {
  color: #55acee
}

.share-social-buttons .fa-whatsapp {
  color: #2a9c2a
}

.share-social-buttons li a {
  font-size: 25px;
}

body {
  color: var(--third-clr);
}

[dir="ltr"] body {
  font-family: "Lato", sans-serif;
}

*:focus {
  box-shadow: none !important;
}

a {
  text-decoration: none;
  color: var(--third-clr) !important;
}

/* a:not(.active) {
    color: var(--third-clr) !important;
} */

button:not(.active) {
  color: var(--third-clr) !important;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

section[id*="-section"]:nth-child(odd) {
  background-color: #ffffff;
}

section[id*="-section"]:nth-child(even) {
  background-color: #f3f3f3;
}

.section-mt {
  margin-top: 40px;
}

.section-mb {
  margin-bottom: 40px;
}

.section-pt {
  padding-top: 40px;
}

.section-pb {
  padding-bottom: 50px;
}

.section-title span {
  position: absolute;
  top: 25px;
  inset-inline: 0;
  z-index: 1;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 6rem);
  text-transform: capitalize;
  line-height: 0;
}

section[id*="-section"]:nth-child(odd) .section-title span {
  color: #f4f4f4 !important;
}

section[id*="-section"]:nth-child(even) .section-title span {
  color: #ffffff !important;
}

.section-title h2 {
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--third-clr);
  position: relative;
  z-index: 2;
}

.section-title h2:before, .section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--second-clr);
  display: inline-block;
}

.section-title h2:before {
  margin-inline-end: 13px;
  margin-block-end: 6px;
}

.section-title h2:after {
  margin-inline-start: 13px;
  margin-block-end: 6px;
}

.card {
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.second-border-radius {
  border-radius: calc(var(--border-radius)/2);
}

.text-primary {
  color: var(--first-clr) !important;
}

.text-secondary {
  color: var(--second-clr) !important;
}

.text-third {
  color: var(--third-clr) !important;
}

.bg-primary {
  background-color: var(--first-clr) !important;
}

.bg-secondary {
  background-color: var(--second-clr) !important;
}

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

.btn-primary {
  background-color: var(--first-clr) !important;
}

.btn-outline-light:hover {
  color: var(--third-clr) !important;
}

.w-fit-content {
  width: fit-content;
}

/* ============= Top Bar ============= */
.contact-info {
  white-space: nowrap;
}

/* ============= Hero Section ============= */
.intro-section {
  position: relative;
  max-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

[dir="rtl"] .intro-section {
  background-image: linear-gradient(90deg, rgb(255, 255, 255, 0.9) 20%, rgba(197, 3, 3, .8) 20%),
    url('https://image.freepik.com/free-vector/gradient-geometric-shape-background_78532-307.jpg');
}

[dir="ltr"] .intro-section {
  background-image: linear-gradient(270deg, rgb(255, 255, 255, 0.9) 20%, rgba(197, 3, 3, .8) 20%),
    url('https://image.freepik.com/free-vector/gradient-geometric-shape-background_78532-307.jpg');
}

.intro-section .container .row {
  height: 100vh;
}

.intro-section h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
}

.intro-section p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  /* max-width: 400px; */
}

#topbar {
  background: #fff;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 999;
  border-block-end: var(--third-clr);
}

#topbar .contact-info a, .social-links a {
  line-height: 1;
  padding-inline-end: 15px;
  transition: 0.3s;
  color: var(--third-clr);
}

#topbar .contact-info i, .social-links i {
  color: var(--first-clr);
  /* padding-inline-end: 50px; */
  margin-inline-start: 40%;
  line-height: 0;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#header {
  background: #fff;
  transition: all 0.5s;
  /* padding: 15px 0; */
  top: 40px;
  box-shadow: 0px 2px 15px rgb(25 119 204 / 10%);
}

#header.header-scrolled {
  top: 0;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.navbar>ul>li>a {
  border-bottom: 2px solid transparent;
  transition: all 0.5s;
}

.navbar>ul>li>a:hover {
  border-bottom: 2px solid var(--second-clr);
  color: var(--second-clr) !important;
}

.donor-btn {
  background: var(--third-clr);
  color: #fff !important;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.donor-btn:hover {
  background: var(--second-clr);
}

.section-divider {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.section-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 106px;
  transform: rotateY(180deg);
}

.section-divider:nth-of-type(even) .shape-fill {
  fill: #f3f3f3;
}


.section-divider:nth-of-type(odd) .shape-fill {
  fill: #ffffff;
}

.owl-nav {
  position: absolute;
  inset-inline-end: 0;
  bottom: 20%;
  inset-inline-start: 22%;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 1rem;
  list-style: none;
}

.owl-nav .owl-prev, .owl-nav .owl-next {
  width: 60px;
  height: 60px;
  -moz-transition: all .7s ease;
  -o-transition: all .7s ease;
  -webkit-transition: all .7s ease;
  -ms-transition: all .7s ease;
  transition: all .7s ease;
  opacity: 1;
  /* flex: 0 1 auto; */
  margin-inline: 3px;
  cursor: pointer;
  background-color: #fff;
  opacity: .5;
  transition: opacity .6s ease;
}

.owl-nav .owl-next, .owl-nav .owl-prev {
  background: #56d965cb !important;
  color: #fff !important;
  border: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.owl-nav .owl-prev:hover, .owl-nav .owl-next:hover {
  opacity: .7;
}

/* @media (min-width: 992px) {
    .owl-nav .owl-prev {
        right: 61px !important;
    }

    .owl-nav .owl-next {
        right: 0 !important;
    }
} */

/* ============= About ============= */
#about-section {
  width: 100%;
  background-repeat: no-repeat;
}

#about-section .nav-link {
  border: 0;
  padding-block: 12px;
  padding-inline-start: 10px;
  padding-inline-end: 0;
  transition: 0.3s;
  color: #2c4964;
  border-radius: 0;
  border-inline-end: 2px solid #ebf1f6;
  font-weight: 600;
  font-size: 15px;
}

#about-section .nav-link.active {
  background-color: rgb(239, 239, 239);
  color: var(--first-clr);
  border-inline-end: 4px solid var(--first-clr);
}

.card-image {
  flex-shrink: 0;
  border-radius: 20px;
  box-shadow: 4px 13px 30px 1px rgba(117, 117, 117, 0.2);
  background-image: linear-gradient(147deg, var(--first-clr) 0%, var(--second-clr) 74%);
  /* overflow: hidden; */
}

.tab-info__img {
  width: 200px;
  height: 200px;
  position: relative;
  inset-inline-end: -30px;
}

.tab-info__img:after {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(147deg, var(--first-clr) 0%, var(--second-clr) 74%);
  border-radius: 20px;
  opacity: 0.8;
}

.card-image img {
  /* width: 100%;
    height: 100%; */
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: all 0.3s;
}

@media screen and (max-width: 992px) {
  .intro-section {
    background-image: linear-gradient(90deg, rgb(255, 255, 255, 0.9) 0%, rgba(197, 3, 3, .8) 0%),
      url('https://image.freepik.com/free-vector/gradient-geometric-shape-background_78532-307.jpg');
  }
}

@media (max-width: 991.98px) {
  .intro-section:before {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #about-section {
    top: 0;
  }

  .card-image {
    transform: translateY(-50%);
  }
}

/* @media screen and (max-width: 576px) {
    .card-image {
        width: 95%;
    }
} */
@media screen and (max-width: 350px) {
  .section-title h2:before, .section-title h2:after {
    width: 20px;
  }
}

@media screen and (max-width: 300px) {
  .section-title span {
    display: none;
  }
}

/*======== Categories =========*/
.single-category h3 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  z-index: 0;
  display: inline-block;
}

.single-category h3 .shape {
  position: absolute;
  left: -20px;
  top: -15px;
  z-index: -1;
  height: 55px;
  width: 55px;
}

/*======== Achievement =========*/
.single-achievement {
  padding: 30px 30px 25px 30px;
  position: relative;
  /* box-shadow: 0px 2px 35px rgb(0 0 0 / 6%); */
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  border: 2px solid rgba(210, 210, 210, 0.381);
}

.single-achievement i {
  position: absolute;
  width: 65px;
  height: 55px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: var(--first-clr);
  border-radius: calc(var(--border-radius)/2);
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgb(0 0 0 / 10%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-achievement span {
  font-size: 30px;
  font-weight: 700;
  color: var(--third-clr);
}


/*======== Projects & Events =========*/
.card .item-image {
  height: 200px;
  /* position: relative; */
  overflow: hidden;
  margin-inline: 15px;
  margin-top: -30px;
  border-radius: var(--border-radius);
  box-shadow: 0 16px 38px -12px rgb(0 0 0 / 56%), 0 4px 25px 0px rgb(0 0 0 / 12%), 0 8px 10px -5px rgb(0 0 0 / 20%);
}

.img-raised {
  box-shadow: 0 16px 38px -12px rgb(0 0 0 / 56%), 0 4px 25px 0px rgb(0 0 0 / 12%), 0 8px 10px -5px rgb(0 0 0 / 20%);
}

.category {
  /* position: relative; */
  line-height: 0;
  margin: 15px 0;
}

.item-footer {
  font-size: clamp(12px, 1.1vw, 2.2rem);
}

/*======== Testimonials =========*/
.testimonials-section .blockquote {
  font-size: 1rem;
}

.testimonials-section .blockquote-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -25px;
  inset-inline-start: 50px;
  z-index: 1;
  background-color: var(--first-clr);
}

.testimonials-section .card-image {
  width: 130px;
  height: 130px;
}

.testimonials-section .carousel-indicators {
  bottom: -30px;
}

/*======== Participator =========*/
.participator .slide img {
  width: 116px;
  margin: auto;
}

/*======== Footer =========*/
.main-footer {
  background-color: #56d965cf;
}

.rounded-social-buttons {
  text-align: center;
}

.rounded-social-buttons .social-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border: 0.125rem solid transparent;
  text-align: center;
  font-size: 1.5625rem;
  font-weight: normal;
  line-height: 1.25em;
  border-radius: 1.6875rem;
  transition: all 0.5s ease;
}

.rounded-social-buttons .social-button:hover, .rounded-social-buttons .social-button:focus {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.rounded-social-buttons .fa-twitter, .rounded-social-buttons .fa-facebook, .rounded-social-buttons .fa-linkedin, .rounded-social-buttons .fa-youtube {
  font-size: 1rem;
}

.rounded-social-buttons .social-button.facebook {
  background: #3b5998;
}

.rounded-social-buttons .social-button.facebook:hover, .rounded-social-buttons .social-button.facebook:focus {
  color: #3b5998;
  background: #fefefe;
  border-color: #3b5998;
}

.facebook:hover i, .facebook:focus i {
  color: #3b5998 !important;
}

.rounded-social-buttons .social-button.twitter {
  background: #55acee;
}

.rounded-social-buttons .social-button.twitter:hover, .rounded-social-buttons .social-button.twitter:focus {
  color: #55acee;
  background: #fefefe;
  border-color: #55acee;
}

.twitter:hover i, .twitter:focus i {
  color: #55acee !important;
}

.rounded-social-buttons .social-button.linkedin {
  background: #007bb5;
}

.rounded-social-buttons .social-button.linkedin:hover, .rounded-social-buttons .social-button.linkedin:focus {
  color: #007bb5;
  background: #fefefe;
  border-color: #007bb5;
}

.linkedin:hover i, .linkedin:focus i {
  color: #007bb5 !important;
}

.rounded-social-buttons .social-button.youtube {
  background: #b31e1e;
}

.rounded-social-buttons .social-button.youtube:hover, .rounded-social-buttons .social-button.youtube:focus {
  color: #b31e1e;
  background: #fefefe;
  border-color: #b31e1e;
}

.youtube:hover i, .youtube:focus i {
  color: #b31e1e !important;
}

/* ============ Projects Page ============ */
.accordion-item {
  border-top: none !important;
  border-inline: none !important;
  box-shadow: none !important;
}

.projects-list-section .filter-item {
  margin: 10px 0;
  position: relative;
  clear: both;
}

.projects-list-section .filter-item label {
  align-self: baseline;
  margin-inline-end: 12px;
}


@keyframes dothabottomcheck {
  0% {
    height: 0;
  }

  100% {
    height: 15px;
  }
}

@keyframes dothatopcheck {
  0% {
    height: 0;
  }

  50% {
    height: 0;
  }

  100% {
    height: 30px;
  }
}

.projects-list-section input[type=checkbox], .projects-list-section input[type=radio] {
  display: none;
}

.projects-list-section .choose {
  height: 25px;
  width: 25px;
  background-color: transparent;
  border: 2px solid #838383;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  transition: border-color ease 0.2s;
  cursor: pointer;
}

.projects-list-section .choose.single {
  border-radius: 50px !important;
}

.projects-list-section .choose::before, .projects-list-section .choose::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: 3px;
  background-color: var(--first-clr);
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 2px;
  content: ' ';
  -webkit-transition: opacity ease .5;
  -moz-transition: opacity ease .5;
  transition: opacity ease .5;
}

.projects-list-section .choose::before {
  top: 16px;
  left: 14px;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.projects-list-section .choose::after {
  top: 7px;
  left: 2px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.projects-list-section input[type=checkbox]:checked+.choose::before, .projects-list-section input[type=radio]:checked+.choose::before {
  box-shadow: 0 0 0 3px #fff;
}

.projects-list-section input[type=checkbox]:checked+.choose, .projects-list-section input[type=radio]:checked+.choose,
.choose.checked {
  border-color: var(--first-clr);
}

.projects-list-section input[type=checkbox]:checked+.choose::after,
.projects-list-section input[type=radio]:checked+.choose::after,
.projects-list-section .choose.checked::after {
  height: 1px;
  -moz-animation: dothabottomcheck 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
  animation: dothabottomcheck 0.2s ease 0s forwards;
}

.projects-list-section input[type=checkbox]:checked+.choose::before,
.projects-list-section input[type=radio]:checked+.choose::before, .projects-list-section .choose.checked::before {
  height: 50px;
  -moz-animation: dothatopcheck 0.4s ease 0s forwards;
  -o-animation: dothatopcheck 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
  animation: dothatopcheck 0.4s ease 0s forwards;
}

details {
  position: relative;
}

details summary::-webkit-details-marker {
  display: none;
}

summary:hover {
  color: var(--second-clr);
}

summary:focus {
  outline: none;
}

details[open]>summary {
  color: var(--first-clr);
  background: rgba(238, 238, 238, 0.953);
}


.cursor:hover {
  color: blue
}

.textarea {
  resize: horizontal;
}

.comment-form textarea, .comment-form input {
  border: 1px solid #e2e9e1;
  border-radius: calc(var(--border-radius)/2);
  font-size: 13px;
  width: 100%;
  color: #1a1a1a;
}

.comment-form textarea {
  resize: vertical;
  padding: 15px 10px 10px 20px;
  min-height: 200px;
}

.comment-form input {
  height: 45px;
  box-shadow: none;
  padding-inline-end: 20px;
}

.comment-form button {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 40px;
  color: #ffffff !important;
  border: none;
  background-color: var(--first-clr);
  border: 1px solid var(--first-clr);
  border-radius: calc(var(--border-radius)/2);
}

.nav-tabs .nav-item .active, .nav-tabs .nav-item .nav-link:active {
  border-bottom: 3px solid var(--first-clr) !important;
  color: var(--first-clr) !important;
}

/***************volunteer******************************/

/* vertical menu */
nav.horizontal ul li {
  display: inline-block;
}

/* horizontal menu */
img {
  max-width: 100%;
}


.wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.inner {
  min-width: 861px;
  transform: translateX(7px);
  margin: auto;
  display: flex;
  background: #fff;
  border-radius: 20px;
  padding-top: 35px;
  padding-bottom: 35px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.inner h3 {
  font-size: 2em;

}

.image-holder img {
  border-radius: 15px;
  /* transform: translateX(94px); */
}

form {
  /* padding-top: 42px; */
  min-width: 63.88%;
}

input[type="text"], input[type="email"], input[type="password"] {
  font-size: 0.9em;
  color: rgb(223, 31, 31);
  font-weight: 100;
  /* width: 94.5%; */
  display: block;
  border: none;
  padding: 1em;
  margin: 1em;
  border: solid 1px rgba(207, 89, 53, 0.61);
  -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 96%, #fff 4%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #fff 4%);

}

select.form-control {
  border: solid 1px rgba(207, 89, 53, 0.61);

}

h3 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 21px;
  color: #333;
  text-transform: uppercase;
}

.form-control {
  /* height: 47px; */
  display: block;
  border: 1px solid #e6e6e6;
  background: none;
  border-radius: 5px;

}

.form-control:focus {
  border: 1px solid var(--first-clr);
}


.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control::-moz-placeholder {
  color: #999;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control:-moz-placeholder {
  color: #999;
}

select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #999;
}

:is(input, textarea).form-control {
  margin: 10px;
}

select.form-control option[value=""][disabled] {
  display: none;
}

textarea.form-control {
  width: 100%;
  padding-top: 13px;
  padding-bottom: 13px;
}

.form-row {
  display: flex;
  margin-bottom: 20px;
}

.form-row .form-control:first-child {
  margin-right: 20px;
}

.form-row .form-holder {
  width: 50%;
}

.form-row .form-holder .form-control {
  width: 100%;
}

.form-holder {
  position: relative;
}

.form-holder i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.Volunteer {
  height: 47px;
  width: 174px;
  display: flex;
  border: none;
  color: #fff;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 30px;
  cursor: pointer;
  text-transform: uppercase;
  background: #76e082;
  border-radius: 5px;

  overflow: hidden;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}

.Volunteer i {
  margin-left: 8px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.Volunteer:hover {
  -webkit-animation-name: hvr-back-pulse;
  animation-name: hvr-back-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-color: #fac53e;
  color: white;
}

.Volunteer:hover i {
  -webkit-animation-name: hvr-icon-buzz-out;
  animation-name: hvr-icon-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes hvr-back-pulse {
  50% {
    background-color: #3e7748;
  }
}

@keyframes hvr-back-pulse {
  50% {
    background-color: #ca6164;
  }
}

@-webkit-keyframes hvr-icon-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-icon-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@media (max-width: 991px) {
  .inner {
    min-width: auto;
    max-width: 660px;
  }

  form {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .inner {
    display: block;
    transform: translateX(0);
    border-radius: 0;
    box-shadow: none;
  }

  .image-holder img {
    transform: translateX(0);
    border-radius: 0;
  }

  form {
    transform: translateX(0);
  }

  .form-row {
    display: block;
  }

  .form-row .form-control, .form-row .form-holder {
    width: 100%;
  }

  .form-control {
    margin-bottom: 20px;
  }

  .wrapper {
    background: none;
    /********************************/
    border-radius: 5px;
  }

  .form-control:focus {
    border: 1px solid var(--first-clr);
  }

  .form-control::-webkit-input-placeholder {
    color: #999;
  }

  .form-control::-moz-placeholder {
    color: #999;
  }

  .form-control:-ms-input-placeholder {
    color: #999;
  }

  .form-control:-moz-placeholder {
    color: #999;
  }

  select.form-control {
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: #999;
  }

  select.form-control option[value=""][disabled] {
    display: none;
  }

  textarea.form-control {
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .form-row {
    display: flex;
    margin-bottom: 20px;
  }

  .form-row .form-control:first-child {
    margin-right: 20px;
  }

  .form-row .form-holder {
    width: 50%;
  }

  .form-row .form-holder .form-control {
    width: 100%;
  }

  .form-holder {
    position: relative;
  }

  .form-holder i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }

  .Volunteer {
    height: 47px;
    width: 174px;
    display: flex;
    border: none;
    color: #fff;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: 30px;
    cursor: pointer;
    text-transform: uppercase;
    background: #76e082;
    border-radius: 5px;

    overflow: hidden;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
  }

  .Volunteer i {
    margin-left: 8px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .Volunteer:hover {
    -webkit-animation-name: hvr-back-pulse;
    animation-name: hvr-back-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-color: #fac53e;
    color: white;
  }

  .Volunteer:hover i {
    -webkit-animation-name: hvr-icon-buzz-out;
    animation-name: hvr-icon-buzz-out;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }

  @-webkit-keyframes hvr-back-pulse {
    50% {
      background-color: #3e7748;
    }
  }

  @keyframes hvr-back-pulse {
    50% {
      background-color: #ca6164;
    }
  }

  @-webkit-keyframes hvr-icon-buzz-out {
    10% {
      -webkit-transform: translateX(3px) rotate(2deg);
      transform: translateX(3px) rotate(2deg);
    }

    20% {
      -webkit-transform: translateX(-3px) rotate(-2deg);
      transform: translateX(-3px) rotate(-2deg);
    }

    30% {
      -webkit-transform: translateX(3px) rotate(2deg);
      transform: translateX(3px) rotate(2deg);
    }

    40% {
      -webkit-transform: translateX(-3px) rotate(-2deg);
      transform: translateX(-3px) rotate(-2deg);
    }

    50% {
      -webkit-transform: translateX(2px) rotate(1deg);
      transform: translateX(2px) rotate(1deg);
    }

    60% {
      -webkit-transform: translateX(-2px) rotate(-1deg);
      transform: translateX(-2px) rotate(-1deg);
    }

    70% {
      -webkit-transform: translateX(2px) rotate(1deg);
      transform: translateX(2px) rotate(1deg);
    }

    80% {
      -webkit-transform: translateX(-2px) rotate(-1deg);
      transform: translateX(-2px) rotate(-1deg);
    }

    90% {
      -webkit-transform: translateX(1px) rotate(0);
      transform: translateX(1px) rotate(0);
    }

    100% {
      -webkit-transform: translateX(-1px) rotate(0);
      transform: translateX(-1px) rotate(0);
    }
  }

  @keyframes hvr-icon-buzz-out {
    10% {
      -webkit-transform: translateX(3px) rotate(2deg);
      transform: translateX(3px) rotate(2deg);
    }

    20% {
      -webkit-transform: translateX(-3px) rotate(-2deg);
      transform: translateX(-3px) rotate(-2deg);
    }

    30% {
      -webkit-transform: translateX(3px) rotate(2deg);
      transform: translateX(3px) rotate(2deg);
    }

    40% {
      -webkit-transform: translateX(-3px) rotate(-2deg);
      transform: translateX(-3px) rotate(-2deg);
    }

    50% {
      -webkit-transform: translateX(2px) rotate(1deg);
      transform: translateX(2px) rotate(1deg);
    }

    60% {
      -webkit-transform: translateX(-2px) rotate(-1deg);
      transform: translateX(-2px) rotate(-1deg);
    }

    70% {
      -webkit-transform: translateX(2px) rotate(1deg);
      transform: translateX(2px) rotate(1deg);
    }

    80% {
      -webkit-transform: translateX(-2px) rotate(-1deg);
      transform: translateX(-2px) rotate(-1deg);
    }

    90% {
      -webkit-transform: translateX(1px) rotate(0);
      transform: translateX(1px) rotate(0);
    }

    100% {
      -webkit-transform: translateX(-1px) rotate(0);
      transform: translateX(-1px) rotate(0);
    }
  }

  @media (max-width: 991px) {
    .inner {
      min-width: auto;
      max-width: 660px;
    }

    form {
      padding-top: 0;
    }
  }

  @media (max-width: 767px) {
    .inner {
      display: block;
      transform: translateX(0);
      border-radius: 0;
      box-shadow: none;
    }

    .image-holder img {
      transform: translateX(0);
      border-radius: 0;
    }

    form {
      transform: translateX(0);
      padding-top: 40px;
    }

    .form-row {
      display: block;
    }

    .form-row .form-control, .form-row .form-holder {
      width: 100%;
    }

    .form-control {
      margin-bottom: 20px;
    }

    .wrapper {
      background: none;
    }
  }
}

/**********************************************/




/***********************  contact   ***********************/
.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-left {
  margin-top: 60px;
  margin-bottom: 30px;
}

.contact-left .contact-information {
  margin-bottom: 80px;
}


.contact-left .contact-information h2 {
  color: #081624;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 28px;
}

.contact-left .contact-information ul li {
  list-style: none;
  position: relative;
  margin-bottom: 26px;
}



.contact-left .contact-information ul li span {
  color: #0e0e0e;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-left: 40px;
}

.contact-left .contact-information ul li span i {
  color: var(--first-clr);
}

.contact-left .social-links h2 {
  color: #081624;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 46px;
}

.contact-left .social-links a {
  display: inline-block;
  height: 46px;
  width: 46px;
  border: 1px solid var(--first-clr);
  color: #ae9548;
  border-radius: 50%;
  line-height: 46px;
  font-size: 22px;
  margin-right: 7px;
  text-align: center;
}

.contact-form {
  border: 2px solid var(--first-clr);
  padding-left: 60px;
  padding-top: 55px;
  padding-right: 68px;
  padding-bottom: 47px;
}

.contact-form h5 {
  font-size: 36px;
  font-weight: 400;
  color: #081624;
  line-height: 50px;
  margin-bottom: 20px;
}

.contact-form form p {
  font-size: 14px;
  color: #242424;
  line-height: 42px;
  letter-spacing: 0.4px;
  margin: 0;
}

.contact-form form input {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #242424;
  /* letter-spacing: 1.2px; */
  opacity: 0.5;
  position: relative;
  /* line-height: 42px; */
  border: none;
}

.contact-form form input::-webkit-input-placeholder {
  text-transform: uppercase;
}

.contact-form form input::-moz-placeholder {
  text-transform: uppercase;
}

.contact-form form input:-ms-input-placeholder {
  text-transform: uppercase;
}

.contact-form form input::-ms-input-placeholder {
  text-transform: uppercase;
}

.contact-form form input::placeholder {
  text-transform: uppercase;
}

.contact-form form textarea {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #242424;
  letter-spacing: 1.2px;
  opacity: 0.5;
  border: none;
  resize: both;
  height: 81px;
  line-height: 2;
}

.contact-form form textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}

.contact-form form textarea::-moz-placeholder {
  text-transform: uppercase;
}

.contact-form form textarea:-ms-input-placeholder {
  text-transform: uppercase;
}

.contact-form form textarea::-ms-input-placeholder {
  text-transform: uppercase;
}

.contact-form form textarea::placeholder {
  text-transform: uppercase;
}



.contact-form form button i {
  line-height: 16px;
  margin-top: 6px;
  position: absolute;
  right: -45px;
  bottom: 7px;
  font-size: 31px;
  color: #AE9548;
}

.contact-form form .input-group {
  position: relative;
  margin-bottom: 10px;
}

.contact-form form .input-group:after {
  position: absolute;
  left: 0;
  top: 48px;
  width: 100%;
  height: 1px;
  background: #000;
  content: "";
}

.contact-form form .input-group.phone-num img {
  top: 10px;
}

.contact-form form .input-group img {
  position: absolute;
  right: 0;
  top: 15px;
}

.contact-form form .message {
  border-bottom: 1px solid #888888;
  margin-top: 27px;
  margin-bottom: 40px;
}

.contact-form form .message .textarea {
  position: relative;
}

.contact-form span {
  color: var(--first-clr);
}

.contact-form form .message .textarea:after {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 100%;
  height: 1px;
  background: #888888;
  content: "";
}

.contact-form form .message .textarea img {
  position: absolute;
  right: 5px;
  top: 5px;
}

.map {
  height: 560px;
}

.map iframe {
  width: 100%;
}


/*########################## mail page */
.mailtitle {
  color: vr(--first-clr)
}

.mail {
  border: 1px solid var(--first-clr);

}

/* ============ 404 Page ============ */

#notfound {
  position: relative;
  height: 100vh;
}

#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#notfound .notfound-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

#notfound .notfound-bg>div {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #eee;
}

#notfound .notfound-bg>div:nth-child(1) {
  left: 20%;
}

#notfound .notfound-bg>div:nth-child(2) {
  left: 40%
}

#notfound .notfound-bg>div:nth-child(3) {
  left: 60%
}

#notfound .notfound-bg>div:nth-child(4) {
  left: 80%
}

#notfound .notfound-bg>div:after {
  content: '';
  position: absolute;
  top: 0px;
  left: -0.5px;
  -webkit-transform: translateY(-160px);
  -ms-transform: translateY(-160px);
  transform: translateY(-160px);
  height: 160px;
  width: 2px;
  background-color: var(--first-clr);
}

@-webkit-keyframes drop {
  90% {
    height: 20px;
  }

  100% {
    height: 160px;
    -webkit-transform: translateY(calc(100vh + 160px));
    transform: translateY(calc(100vh + 160px));
  }
}

@keyframes drop {
  90% {
    height: 20px;
  }

  100% {
    height: 160px;
    -webkit-transform: translateY(calc(100vh + 160px));
    transform: translateY(calc(100vh + 160px));
  }
}

#notfound .notfound-bg>div:nth-child(1):after {
  -webkit-animation: drop 3s infinite linear;
  animation: drop 3s infinite linear;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#notfound .notfound-bg>div:nth-child(2):after {
  -webkit-animation: drop 2s infinite linear;
  animation: drop 2s infinite linear;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

#notfound .notfound-bg>div:nth-child(3):after {
  -webkit-animation: drop 3s infinite linear;
  animation: drop 3s infinite linear;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

#notfound .notfound-bg>div:nth-child(4):after {
  -webkit-animation: drop 2s infinite linear;
  animation: drop 2s infinite linear;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.notfound {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.notfound .notfound-404 {
  height: 210px;
  line-height: 210px;
}

.notfound .notfound-404 h1 {
  font-size: 188px;
  font-weight: 700;
  margin: 0px;
  text-shadow: 4px 4px 0px var(--first-clr);
}

.notfound .notfound-404 h5 {
  font-size: 50px;
  font-weight: 700;
  margin: 0px;
  text-shadow: 4px 4px 0px var(--first-clr);
}

.notfound h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.notfound p {
  color: #000;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 25px;
}

.notfound a {
  padding: 10px 30px;
  display: inline-block;
  color: #000;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-box-shadow: 0px 0px 0px 2px #000, 2px 2px 0px 2px var(--first-clr);
  box-shadow: 0px 0px 0px 2px #000, 2px 2px 0px 2px var(--first-clr);
  text-decoration: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.notfound a:hover {
  background-color: var(--first-clr);
  -webkit-box-shadow: 0px 0px 0px 0px #000, 0px 0px 0px 2px var(--first-clr);
  box-shadow: 0px 0px 0px 0px #000, 0px 0px 0px 2px var(--first-clr);
}

.notfound-social {
  margin-top: 35px;
}

.notfound-social>a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0px;
  margin: 0px 5px;
}

.notfound-social>a:hover {
  background-color: var(--first-clr);
  -webkit-box-shadow: 0px 0px 0px 0px #000, 0px 0px 0px 2px var(--first-clr);
  box-shadow: 0px 0px 0px 0px #000, 0px 0px 0px 2px var(--first-clr);
}

@media only screen and (max-width: 480px) {
  .notfound .notfound-404 {
    height: 122px;
    line-height: 122px;
  }

  .notfound .notfound-404 h1, h5 {
    font-size: 122px;
  }

  .notfound .notfound-404 h5 {
    font-size: 90px;
  }

  .notfound h2 {
    font-size: 26px;
  }
}

/* file manager */
.file_manager .file a:hover .hover,
.file_manager .file .file-name small {
  display: block
}

.file_manager .file {
  padding: 0 !important
}

.file_manager .file .icon {
  text-align: center
}


.file_manager .file {
  position: relative;
  border-radius: .55rem;
  overflow: hidden
}

.file_manager .file .image,
.file_manager .file .icon {
  max-height: 180px;
  overflow: hidden;
  background-size: cover;
  background-position: top
}

.file_manager .file .hover {
  position: absolute;
  right: 10px;
  top: 10px;
  display: none;
  transition: all 0.2s ease-in-out
}

.file_manager .file a:hover .hover {
  transition: all 0.2s ease-in-out
}

.file_manager .file .icon {
  padding: 15px 10px;
  display: table;
  width: 100%
}

.file_manager .file .icon i {
  display: table-cell;
  font-size: 30px;
  vertical-align: middle;
  color: #777;
  line-height: 100px
}

.file_manager .file .file-name {
  padding: 10px;
  border-top: 1px solid #f7f7f7
}

.file_manager .file .file-name small .date {
  float: right
}



@media only screen and (max-width: 992px) {
  .file_manager .nav-tabs {
    padding-left: 0;
    padding-right: 0
  }

  .file_manager .nav-tabs .nav-item {
    display: inline-block
  }
}