@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: black;
  color: #fff;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

button {
  cursor: pointer;
}

.navigation .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2em;
  margin-bottom: 6em;
}

.navigation .menu .logo {
  width: 5rem;
  position: relative;
  z-index: 1;
}

.navigation .menu .logo a {
  cursor: pointer;
}

.navigation .menu .menu-open img {
  width: 2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.navigation .menu .nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #a90164;
  padding: 2em;
  z-index: 999;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.navigation .menu .nav .menu-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 3em;
  cursor: pointer;
}

.navigation .menu .nav .menu-close img {
  width: 2.5rem;
}

.navigation .menu .nav ul {
  text-align: center;
  margin-bottom: 3em;
}

.navigation .menu .nav ul li {
  margin: 0.8em 0;
}

.navigation .menu .nav ul li a {
  color: #0ad2c6;
  font-weight: bold;
  font-size: 1.1rem;
}

.navigation .menu .nav .nav-search .search {
  margin-bottom: 1em;
}

.navigation .menu .nav .nav-search .search input {
  padding: 1em;
  width: 80%;
}

.navigation .menu .nav .nav-search .user {
  font-size: 1.1rem;
  color: #0ad2c6;
  font-weight: bold;
}

.navigation .menu .nav .nav-search img {
  margin-right: 1em;
}

.navigation .menu .nav.active {
  right: 0;
}

@media (min-width: 968px) {
  .container {
    width: 90%;
  }
  .navigation .menu {
    padding-top: 3em;
    margin-bottom: 10em;
  }
  .navigation .menu .logo {
    width: 6rem;
  }
  .navigation .menu .menu-open {
    display: none;
  }
  .navigation .menu .nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    -webkit-transition: none;
    transition: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navigation .menu .nav .menu-close {
    display: none;
  }
  .navigation .menu .nav ul {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 2.5em;
  }
  .navigation .menu .nav ul li {
    margin: 0 0.5em;
  }
  .navigation .menu .nav ul li a {
    color: #fff;
    font-weight: 700;
    position: relative;
    -webkit-transition: 2s ease;
    transition: 2s ease;
  }
  .navigation .menu .nav ul li a:hover::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #0ad2c6;
    bottom: -0.4rem;
  }
  .navigation .menu .nav .nav-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navigation .menu .nav .nav-search .search {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navigation .menu .nav .nav-search .search input {
    padding: 0.6em;
  }
  .navigation .menu .nav .nav-search .user {
    color: #fff;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navigation .menu .nav .nav-search img {
    margin-right: 0.5em;
  }
  .navigation .menu .nav .nav-search span {
    display: inline-block;
    max-height: 18px;
  }
}

@media (min-width: 1200px) {
  .navigation .menu .nav ul {
    margin-right: 8em;
  }
  .navigation .menu .nav ul li {
    margin: 0 0.8em;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: black;
  color: #fff;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

button {
  cursor: pointer;
}

.navigation .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2em;
  margin-bottom: 6em;
}

.navigation .menu .logo {
  width: 5rem;
  position: relative;
  z-index: 1;
}

.navigation .menu .logo a {
  cursor: pointer;
}

.navigation .menu .menu-open img {
  width: 2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.navigation .menu .nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #a90164;
  padding: 2em;
  z-index: 999;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.navigation .menu .nav .menu-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 3em;
  cursor: pointer;
}

.navigation .menu .nav .menu-close img {
  width: 2.5rem;
}

.navigation .menu .nav ul {
  text-align: center;
  margin-bottom: 3em;
}

.navigation .menu .nav ul li {
  margin: 0.8em 0;
}

.navigation .menu .nav ul li a {
  color: #0ad2c6;
  font-weight: bold;
  font-size: 1.1rem;
}

.navigation .menu .nav .nav-search .search {
  margin-bottom: 1em;
}

.navigation .menu .nav .nav-search .search input {
  padding: 1em;
  width: 80%;
}

.navigation .menu .nav .nav-search .user {
  font-size: 1.1rem;
  color: #0ad2c6;
  font-weight: bold;
}

.navigation .menu .nav .nav-search img {
  margin-right: 1em;
}

.navigation .menu .nav.active {
  right: 0;
}

@media (min-width: 968px) {
  .container {
    width: 90%;
  }
  .navigation .menu {
    padding-top: 3em;
    margin-bottom: 10em;
  }
  .navigation .menu .logo {
    width: 6rem;
  }
  .navigation .menu .menu-open {
    display: none;
  }
  .navigation .menu .nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    -webkit-transition: none;
    transition: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navigation .menu .nav .menu-close {
    display: none;
  }
  .navigation .menu .nav ul {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 2.5em;
  }
  .navigation .menu .nav ul li {
    margin: 0 0.5em;
  }
  .navigation .menu .nav ul li a {
    color: #fff;
    font-weight: 700;
    position: relative;
    -webkit-transition: 2s ease;
    transition: 2s ease;
  }
  .navigation .menu .nav ul li a:hover::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #0ad2c6;
    bottom: -0.4rem;
  }
  .navigation .menu .nav .nav-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navigation .menu .nav .nav-search .search {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navigation .menu .nav .nav-search .search input {
    padding: 0.6em;
  }
  .navigation .menu .nav .nav-search .user {
    color: #fff;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navigation .menu .nav .nav-search img {
    margin-right: 0.5em;
  }
  .navigation .menu .nav .nav-search span {
    display: inline-block;
    max-height: 18px;
  }
}

@media (min-width: 1200px) {
  .navigation .menu .nav ul {
    margin-right: 8em;
  }
  .navigation .menu .nav ul li {
    margin: 0 0.8em;
  }
}

.mission {
  margin-bottom: 7.5em;
}

.mission .mission-area {
  padding: 0 1em;
}

.mission .mission-area h2 {
  text-align: center;
  margin-bottom: 2em;
}

.mission .mission-area .mission-content .mission-text {
  margin-bottom: 4em;
}

.mission .mission-area .mission-content .mission-text p {
  line-height: 2;
  position: relative;
  margin-bottom: 2em;
}

.mission .mission-area .mission-content .mission-text p::before {
  content: "";
  width: 70%;
  height: 70%;
  border-top: 4px solid #a90164;
  border-left: 4px solid #a90164;
  position: absolute;
  top: -0.7em;
  left: -1.1em;
}

.mission .mission-area .mission-content .mission-text .mission-btn {
  text-align: center;
}

.mission .mission-area .mission-content .mission-text .mission-btn a {
  display: inline-block;
  color: #fff;
  border: 2px solid #a90164;
  padding: 0.9em 1.5em;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.mission .mission-area .mission-content .mission-text .mission-btn a:hover {
  background-color: #a90164;
}

.mission .mission-area .mission-content .mission-img {
  width: 100%;
  height: auto;
  position: relative;
}

.mission .mission-area .mission-content .mission-img .mission-first-img {
  position: relative;
  width: 80%;
  margin-bottom: 2em;
}

.mission .mission-area .mission-content .mission-img .mission-first-img::before {
  content: "";
  border: 2px solid #0ad2c6;
  border-radius: 30px;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -0.5em;
  right: -0.8em;
}

.mission .mission-area .mission-content .mission-img .mission-first-img img {
  position: relative;
  z-index: 1;
}

.mission .mission-area .mission-content .mission-img .mission-second-img {
  position: relative;
  width: 80%;
  right: -15%;
}

.mission .mission-area .mission-content .mission-img .mission-second-img::before {
  content: "";
  border: 2px solid #a90164;
  border-radius: 30px;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -0.5em;
  right: -0.8em;
}

.mission .mission-area .mission-content .mission-img .mission-second-img img {
  position: relative;
  z-index: 1;
}

.project {
  margin-bottom: 5em;
}

.project .project-content {
  padding: 0 1em;
}

.project .project-content .project-text {
  position: relative;
  margin-bottom: 5em;
}

.project .project-content .project-text h2 {
  text-align: center;
  margin-bottom: 2em;
}

.project .project-content .project-text p {
  line-height: 2;
  margin-bottom: 1.5em;
}

.project .project-content .project-text p:last-child {
  margin-bottom: 4em;
}

.project .project-content .project-text::before {
  content: "";
  width: 70%;
  height: 50%;
  border-bottom: 4px solid #0ad2c6;
  border-left: 4px solid #0ad2c6;
  position: absolute;
  bottom: -0.7em;
  left: -1.1em;
}

.project .project-content .project-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 968px) {
  .mission {
    margin-bottom: 12em;
  }
  .mission .mission-area h2 {
    margin-bottom: 4em;
    font-size: 2rem;
  }
  .mission .mission-area .mission-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mission .mission-area .mission-content .mission-text {
    margin-bottom: 0;
    width: 45%;
  }
  .mission .mission-area .mission-content .mission-text p {
    font-size: 1.11rem;
  }
  .mission .mission-area .mission-content .mission-text .mission-btn {
    text-align: left;
  }
  .mission .mission-area .mission-content .mission-text .mission-btn a {
    padding: 1.1em 1.7em;
    font-size: 1.1rem;
  }
  .mission .mission-area .mission-content .mission-img {
    width: 40%;
  }
  .mission .mission-area .mission-content .mission-img .mission-first-img {
    width: 65%;
  }
  .mission .mission-area .mission-content .mission-img .mission-second-img {
    width: 65%;
    right: -32%;
  }
  .project {
    margin-bottom: 10em;
  }
  .project .project-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .project .project-content .project-text {
    width: 45%;
  }
  .project .project-content .project-text h2 {
    text-align: left;
    font-size: 2rem;
  }
  .project .project-content .project-text p:last-child {
    margin-bottom: 0;
  }
  .project .project-content .project-img {
    width: 47%;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: black;
  color: #fff;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

button {
  cursor: pointer;
}

.navigation .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2em;
  margin-bottom: 6em;
}

.navigation .menu .logo {
  width: 5rem;
  position: relative;
  z-index: 1;
}

.navigation .menu .logo a {
  cursor: pointer;
}

.navigation .menu .menu-open img {
  width: 2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.navigation .menu .nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #a90164;
  padding: 2em;
  z-index: 999;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.navigation .menu .nav .menu-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 3em;
  cursor: pointer;
}

.navigation .menu .nav .menu-close img {
  width: 2.5rem;
}

.navigation .menu .nav ul {
  text-align: center;
  margin-bottom: 3em;
}

.navigation .menu .nav ul li {
  margin: 0.8em 0;
}

.navigation .menu .nav ul li a {
  color: #0ad2c6;
  font-weight: bold;
  font-size: 1.1rem;
}

.navigation .menu .nav .nav-search .search {
  margin-bottom: 1em;
}

.navigation .menu .nav .nav-search .search input {
  padding: 1em;
  width: 80%;
}

.navigation .menu .nav .nav-search .user {
  font-size: 1.1rem;
  color: #0ad2c6;
  font-weight: bold;
}

.navigation .menu .nav .nav-search img {
  margin-right: 1em;
}

.navigation .menu .nav.active {
  right: 0;
}

@media (min-width: 968px) {
  .container {
    width: 90%;
  }
  .navigation .menu {
    padding-top: 3em;
    margin-bottom: 10em;
  }
  .navigation .menu .logo {
    width: 6rem;
  }
  .navigation .menu .menu-open {
    display: none;
  }
  .navigation .menu .nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    -webkit-transition: none;
    transition: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navigation .menu .nav .menu-close {
    display: none;
  }
  .navigation .menu .nav ul {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 2.5em;
  }
  .navigation .menu .nav ul li {
    margin: 0 0.5em;
  }
  .navigation .menu .nav ul li a {
    color: #fff;
    font-weight: 700;
    position: relative;
    -webkit-transition: 2s ease;
    transition: 2s ease;
  }
  .navigation .menu .nav ul li a:hover::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #0ad2c6;
    bottom: -0.4rem;
  }
  .navigation .menu .nav .nav-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navigation .menu .nav .nav-search .search {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navigation .menu .nav .nav-search .search input {
    padding: 0.6em;
  }
  .navigation .menu .nav .nav-search .user {
    color: #fff;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navigation .menu .nav .nav-search img {
    margin-right: 0.5em;
  }
  .navigation .menu .nav .nav-search span {
    display: inline-block;
    max-height: 18px;
  }
}

@media (min-width: 1200px) {
  .navigation .menu .nav ul {
    margin-right: 8em;
  }
  .navigation .menu .nav ul li {
    margin: 0 0.8em;
  }
}

.causes {
  margin-bottom: 7.5em;
}

.causes .causes-content {
  padding: 0 1em;
}

.causes .causes-content .causes-text {
  margin-bottom: 3em;
}

.causes .causes-content .causes-text h2 {
  text-align: center;
  margin-bottom: 2em;
}

.causes .causes-content .causes-text p {
  line-height: 2;
}

.causes .causes-content .causes-cards .card {
  background-color: #fff;
  color: black;
  max-width: 350px;
  margin: auto;
}

.causes .causes-content .causes-cards .card:not(:last-child) {
  margin-bottom: 1.5em;
}

.causes .causes-content .causes-cards .card h4 {
  text-align: center;
  color: #a90164;
  font-size: 1.2rem;
  margin: 0.6em 1em;
}

.causes .causes-content .causes-cards .card p {
  padding: 0.5em 1em;
  text-align: center;
  margin-bottom: 1em;
}

.causes .causes-content .causes-cards .card:nth-child(2) h4 {
  color: #0ad2c6;
}

.causes .causes-content .causes-cards .card:nth-child(2) .card-btn {
  background-color: #0ad2c6;
}

.causes .causes-content .causes-cards .card .card-btn {
  text-align: center;
  background-color: #a90164;
  padding: 0.7em 0;
}

.causes .causes-content .causes-cards .card .card-btn a {
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
}

.help-cause {
  margin-bottom: 7.5em;
}

.help-cause .help-content {
  padding: 0 1em;
}

.help-cause .help-content .help-img {
  width: 90%;
  max-width: 330px;
  margin: auto;
  position: relative;
  right: -0.45em;
  margin-bottom: 3em;
}

.help-cause .help-content .help-img::before {
  content: "";
  position: absolute;
  top: -0.8em;
  right: 0.33em;
  border: 2px solid #a90164;
  width: 107%;
  height: 104%;
}

.help-cause .help-content .help-img::after {
  content: "";
  position: absolute;
  top: -0.4em;
  right: 0;
  background-color: #a90164;
  width: 105%;
  height: 101%;
}

.help-cause .help-content .help-img img {
  position: relative;
  z-index: 1;
}

.help-cause .help-content .help-text h2 {
  text-align: center;
  margin-bottom: 0.3em;
}

.help-cause .help-content .help-text h4 {
  text-align: center;
  margin-bottom: 2em;
}

.help-cause .help-content .help-text p {
  line-height: 2;
  margin-bottom: 2em;
}

.help-cause .help-content .help-text .help-btns button {
  background-color: transparent;
  color: #fff;
  border: 1px solid #a90164;
  padding: 1em;
  margin: 0.5em;
}

@media (min-width: 968px) {
  .causes {
    margin-bottom: 13em;
  }
  .causes .causes-content .causes-text {
    width: 80%;
    margin: auto;
  }
  .causes .causes-content .causes-text h2 {
    margin-bottom: 1em;
    font-size: 2rem;
  }
  .causes .causes-content .causes-text p {
    font-size: 1.11rem;
    text-align: center;
  }
  .causes .causes-content .causes-cards {
    margin-top: 5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1em;
  }
  .causes .causes-content .causes-cards .card:not(:last-child) {
    margin-bottom: 0;
  }
  .help-cause {
    margin-bottom: 10em;
  }
  .help-cause .help-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .help-cause .help-content .help-text {
    width: 50%;
  }
  .help-cause .help-content .help-text h2 {
    text-align: left;
    font-size: 2rem;
  }
  .help-cause .help-content .help-text h4 {
    text-align: left;
    font-size: 1.2rem;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: black;
  color: #fff;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

button {
  cursor: pointer;
}

.navigation .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2em;
  margin-bottom: 6em;
}

.navigation .menu .logo {
  width: 5rem;
  position: relative;
  z-index: 1;
}

.navigation .menu .logo a {
  cursor: pointer;
}

.navigation .menu .menu-open img {
  width: 2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.navigation .menu .nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #a90164;
  padding: 2em;
  z-index: 999;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.navigation .menu .nav .menu-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 3em;
  cursor: pointer;
}

.navigation .menu .nav .menu-close img {
  width: 2.5rem;
}

.navigation .menu .nav ul {
  text-align: center;
  margin-bottom: 3em;
}

.navigation .menu .nav ul li {
  margin: 0.8em 0;
}

.navigation .menu .nav ul li a {
  color: #0ad2c6;
  font-weight: bold;
  font-size: 1.1rem;
}

.navigation .menu .nav .nav-search .search {
  margin-bottom: 1em;
}

.navigation .menu .nav .nav-search .search input {
  padding: 1em;
  width: 80%;
}

.navigation .menu .nav .nav-search .user {
  font-size: 1.1rem;
  color: #0ad2c6;
  font-weight: bold;
}

.navigation .menu .nav .nav-search img {
  margin-right: 1em;
}

.navigation .menu .nav.active {
  right: 0;
}

@media (min-width: 968px) {
  .container {
    width: 90%;
  }
  .navigation .menu {
    padding-top: 3em;
    margin-bottom: 10em;
  }
  .navigation .menu .logo {
    width: 6rem;
  }
  .navigation .menu .menu-open {
    display: none;
  }
  .navigation .menu .nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    -webkit-transition: none;
    transition: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navigation .menu .nav .menu-close {
    display: none;
  }
  .navigation .menu .nav ul {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 2.5em;
  }
  .navigation .menu .nav ul li {
    margin: 0 0.5em;
  }
  .navigation .menu .nav ul li a {
    color: #fff;
    font-weight: 700;
    position: relative;
    -webkit-transition: 2s ease;
    transition: 2s ease;
  }
  .navigation .menu .nav ul li a:hover::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #0ad2c6;
    bottom: -0.4rem;
  }
  .navigation .menu .nav .nav-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navigation .menu .nav .nav-search .search {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navigation .menu .nav .nav-search .search input {
    padding: 0.6em;
  }
  .navigation .menu .nav .nav-search .user {
    color: #fff;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navigation .menu .nav .nav-search img {
    margin-right: 0.5em;
  }
  .navigation .menu .nav .nav-search span {
    display: inline-block;
    max-height: 18px;
  }
}

@media (min-width: 1200px) {
  .navigation .menu .nav ul {
    margin-right: 8em;
  }
  .navigation .menu .nav ul li {
    margin: 0 0.8em;
  }
}

.events {
  margin-bottom: 7.5em;
}

.events h2 {
  text-align: center;
  margin-bottom: 2em;
}

.events .events-content {
  padding: 0 1em;
}

.events .events-content .event-card {
  padding: 2em 1em 0.5em 1em;
  margin-bottom: 2em;
  text-align: center;
}

.events .events-content .event-card h4 {
  text-align: center;
  margin-bottom: 1.5em;
  display: inline-block;
  position: relative;
}

.events .events-content .event-card h4::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 2px;
  top: 0;
  left: -0.5em;
}

.events .events-content .event-card h4::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 2px;
  bottom: 0;
  right: -0.5em;
}

.events .events-content .event-card .event-items {
  margin-bottom: 1.5em;
}

.events .events-content .event-card .event-items .date {
  margin-bottom: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

.events .events-content .event-card .event-items .event-description {
  padding: 0.5em;
  text-align: left;
}

.events .events-content .event-card:first-child {
  background-color: #a90164;
}

.events .events-content .event-card:first-child h4::before,
.events .events-content .event-card:first-child h4::after {
  background-color: #fff;
}

.events .events-content .event-card:first-child .event-description {
  background-color: rgba(10, 210, 198, 0.2);
}

.events .events-content .event-card:first-child .event-items:nth-child(2) .event-description {
  background-color: #0ad2c6;
  color: black;
}

.events .events-content .event-card:nth-child(2) {
  background-color: #0ad2c6;
  color: black;
  margin-bottom: 4em;
}

.events .events-content .event-card:nth-child(2) h4::before,
.events .events-content .event-card:nth-child(2) h4::after {
  background-color: black;
}

.events .events-content .event-card:nth-child(2) .event-description {
  background-color: rgba(169, 1, 100, 0.25);
}

.events .events-content .event-card:nth-child(2) .event-items:nth-child(2) .event-description {
  background-color: #a90164;
  color: #fff;
}

.events .events-content p {
  line-height: 2;
}

@media (min-width: 968px) {
  .events {
    margin-bottom: 10em;
  }
  .events h2 {
    margin-bottom: 3em;
    font-size: 2rem;
  }
  .events .events-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 33%;
        grid-template-columns: 1fr 1fr 33%;
    gap: 2em;
  }
  .events .events-content .event-card {
    margin-bottom: 0;
  }
  .events .events-content .event-card h4 {
    font-size: 1.2rem;
  }
  .events .events-content .event-card:nth-child(2) {
    margin-bottom: 0;
  }
  .events .events-content p {
    font-size: 1.11rem;
  }
}

header {
  display: none;
}

.hero {
  background: url("../imgs/home-1.jpg");
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: 55%;
  padding-bottom: 4em;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  top: 0;
  right: 0;
}

.hero::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(169, 1, 100, 0.38);
  top: 0;
  left: 0;
}

.hero .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2em;
  margin-bottom: 6em;
}

.hero .menu .logo {
  width: 5rem;
  position: relative;
  z-index: 1;
}

.hero .menu .logo a {
  cursor: pointer;
}

.hero .menu .menu-open img {
  width: 2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.hero .menu .nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #a90164;
  padding: 2em;
  z-index: 999;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hero .menu .nav .menu-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 3em;
  cursor: pointer;
}

.hero .menu .nav .menu-close img {
  width: 2.5rem;
}

.hero .menu .nav ul {
  text-align: center;
  margin-bottom: 3em;
}

.hero .menu .nav ul li {
  margin: 0.8em 0;
}

.hero .menu .nav ul li a {
  color: #0ad2c6;
  font-weight: bold;
  font-size: 1.1rem;
}

.hero .menu .nav .nav-search .search {
  margin-bottom: 1em;
}

.hero .menu .nav .nav-search .search input {
  padding: 1em;
  width: 80%;
}

.hero .menu .nav .nav-search .user {
  font-size: 1.1rem;
  color: #0ad2c6;
  font-weight: bold;
}

.hero .menu .nav .nav-search img {
  margin-right: 1em;
}

.hero .menu .nav.active {
  right: 0;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content .hero-title {
  margin-bottom: 1.5em;
  text-align: center;
  font-size: 2rem;
}

.hero .hero-content .hero-title span {
  color: #0ad2c6;
}

.hero .hero-content .hero-para {
  line-height: 2;
  text-align: center;
}

.hero .hero-content .hero-btn {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5em;
  margin-top: 2em;
}

.hero .hero-content .hero-btn button {
  border: none;
  background-color: transparent;
  color: #fff;
  padding: 1em 1.3em;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.hero .hero-content .hero-btn button:first-child {
  background-color: #a90164;
}

.hero .hero-content .hero-btn button:first-child:hover {
  background-color: #cf338e;
}

.hero .hero-content .hero-btn button:last-child {
  background-color: #0ad2c6;
  color: black;
}

.hero .hero-content .hero-btn button:last-child:hover {
  background-color: #40f7ea;
}

.about {
  background: url("../imgs/home-2.jpg");
  background-repeat: no-repeat;
  width: 100%;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background-color: rgba(0, 0, 0, 0.65);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about .about-content {
  position: absolute;
  width: 75%;
  height: 80%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}

.about .about-content h2 {
  color: #a90164;
  margin-bottom: 1em;
}

.about .about-content p {
  line-height: 2;
  margin-bottom: 1em;
  text-align: left;
}

.about .about-content button {
  color: #a90164;
  border: none;
  background-color: #0ad2c6;
  font-weight: bold;
  padding: 1em 1.3em;
  font-size: 0.9rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.about .about-content button:hover {
  background-color: #40f7ea;
}

.support-icons {
  background: linear-gradient(98deg, #000, #0ad2c6);
  padding: 4em 0;
}

.support-icons .icons-content li {
  margin: 3em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.support-icons .icons-content li .icons-img {
  width: 5rem;
}

.support-icons .icons-content li p {
  margin: 0.9em 0;
}

.support-icons .icons-content li p span {
  text-align: center;
  display: block;
}

.support-icons .icons-content li .down-arrow {
  width: 2.2rem;
}

.volunteer {
  background: linear-gradient(130deg, #000, transparent), url("../imgs/home-3.jpg");
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: 85%;
  padding: 4.5em 1.5em;
  text-align: center;
}

.volunteer .volunteer-content h2 {
  margin-bottom: 1.5em;
}

.volunteer .volunteer-content h2 span {
  display: block;
}

.volunteer .volunteer-content p {
  text-align: left;
  line-height: 2;
  margin: 1.5em 0;
}

.volunteer .volunteer-content .volunteer-btn button {
  border: none;
  background-color: transparent;
  color: #fff;
  padding: 1em 1.3em;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.volunteer .volunteer-content .volunteer-btn button:first-child {
  border: 3px solid #a90164;
  margin-right: 0.5em;
}

.volunteer .volunteer-content .volunteer-btn button:first-child:hover {
  background-color: #a90164;
}

.volunteer .volunteer-content .volunteer-btn button:last-child {
  border: 3px solid #0ad2c6;
  margin-left: 0.5em;
}

.volunteer .volunteer-content .volunteer-btn button:last-child:hover {
  background-color: #0ad2c6;
}

.volunteer-people {
  padding: 5em 1em;
  margin-bottom: 3em;
}

.volunteer-people .people-content h2 {
  text-align: center;
  margin-bottom: 1.5em;
}

.volunteer-people .people-content p {
  line-height: 2;
  margin-bottom: 2em;
}

.volunteer-people .people-content .splide {
  margin: 0 auto;
}

.volunteer-people .people-content .splide .splide__slide {
  margin: 0 1em;
}

.volunteer-people .people-content .splide p {
  text-align: center;
  margin-top: 0.7em;
}

.client-feedback {
  padding: 0 1em;
  margin-bottom: 3em;
}

.client-feedback .client-content h2 {
  text-align: center;
  margin-bottom: 2em;
}

.client-feedback .client-content .splide {
  margin: 0 auto;
}

.client-feedback .client-content .splide .splide__slide {
  margin: 0 1em;
}

.client-feedback .client-content .splide .splide__slide:nth-child(odd) .slider-text {
  border: 1px solid #0ad2c6;
}

.client-feedback .client-content .splide .splide__slide:nth-child(even) .slider-text {
  border: 1px solid #a90164;
}

.client-feedback .client-content .splide .splide__slide .slider-text {
  width: 180px;
  height: 244px;
  max-width: 180px;
  text-align: center;
  padding: 2em 1em;
}

.client-feedback .client-content .splide .splide__slide .slider-text p {
  text-align: left;
  margin-top: 1em;
}

.promise {
  background: url("../imgs/home-4.jpg");
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
  padding: 3em 1.5em;
  margin-bottom: 3em;
  text-align: center;
  position: relative;
}

.promise::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  top: 0;
  left: 0;
}

.promise::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 210, 198, 0.5);
  top: 0;
  left: 0;
}

.promise .promise-content {
  position: relative;
  z-index: 1;
}

.promise .promise-content h2 {
  margin-bottom: 1em;
}

.promise .promise-content p {
  text-align: left;
  line-height: 2;
  margin: 1em 0;
}

footer {
  color: #a3a1a1;
  padding: 2em 1.5em 5em 1.5em;
  position: relative;
}

footer h4 {
  color: #fff;
}

footer .footer-content .footer-text .footer-logo {
  width: 5rem;
  margin-bottom: 1.5em;
}

footer .footer-content .footer-text ul li {
  margin: 1em 0;
}

footer .footer-content .footer-text ul li:not(:last-child) span {
  margin-right: 1em;
}

footer .footer-content .footer-text ul li:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.5em;
}

footer .footer-content .footer-links {
  margin-top: 4em;
}

footer .footer-content .footer-links h4 {
  margin-bottom: 1.5em;
}

footer .footer-content .footer-links ul li {
  margin: 1em 0;
}

footer .footer-content .footer-news {
  margin-top: 4em;
}

footer .footer-content .footer-news h4 {
  margin-bottom: 1.5em;
}

footer .footer-content .footer-news ul li {
  margin: 1em 0;
}

footer .footer-content .form-area {
  background-color: #c3c3c3;
  margin-top: 4em;
  max-width: 300px;
}

footer .footer-content .form-area .form-title {
  padding: 1em;
  background-color: #a90164;
  color: #fff;
}

footer .footer-content .form-area .form-title span {
  display: block;
  text-align: right;
}

footer .footer-content .form-area form {
  padding: 1em;
  color: black;
}

footer .footer-content .form-area form input {
  padding: 0.9em;
  width: 100%;
  margin: 0.4em 0;
  border: none;
  border-radius: 5px;
  background-color: #a3a1a1;
}

footer .footer-content .form-area form label {
  font-size: 0.9rem;
  display: block;
  margin-top: 0.7em;
}

footer .footer-content .form-area form .payment-methods {
  position: relative;
}

footer .footer-content .form-area form .payment-methods .dropdown {
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

footer::before {
  content: "";
  width: 85%;
  max-width: 1200px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #a3a1a1;
}

@media (min-width: 968px) {
  header {
    display: block;
    background-color: #fff;
    color: black;
    padding: 0.4em;
  }
  header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .header-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .header-socials a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .header-socials a:first-child {
    margin-right: 0.5em;
  }
  header .header-socials a:nth-child(2) {
    margin-right: 0.5em;
  }
  header .header-text {
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  header .header-text p:nth-child(2) {
    margin-left: 1.2em;
  }
  header .header-text p:last-child {
    margin-left: 1.2em;
  }
  .hero .menu {
    padding-top: 3em;
    margin-bottom: 10em;
  }
  .hero .menu .logo {
    width: 6rem;
  }
  .hero .menu .menu-open {
    display: none;
  }
  .hero .menu .nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    -webkit-transition: none;
    transition: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero .menu .nav .menu-close {
    display: none;
  }
  .hero .menu .nav ul {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 2.5em;
  }
  .hero .menu .nav ul li {
    margin: 0 0.5em;
  }
  .hero .menu .nav ul li a {
    color: #fff;
    font-weight: 700;
    position: relative;
    -webkit-transition: 2s ease;
    transition: 2s ease;
  }
  .hero .menu .nav ul li a:hover::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #0ad2c6;
    bottom: -0.4rem;
  }
  .hero .menu .nav .nav-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero .menu .nav .nav-search .search {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero .menu .nav .nav-search .search input {
    padding: 0.6em;
  }
  .hero .menu .nav .nav-search .user {
    color: #fff;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero .menu .nav .nav-search img {
    margin-right: 0.5em;
  }
  .hero .menu .nav .nav-search span {
    display: inline-block;
    max-height: 18px;
  }
  .hero .hero-content {
    width: 95%;
    margin: 0 auto;
  }
  .hero .hero-content .hero-title {
    margin-bottom: 0.5em;
    text-align: left;
    font-size: 2.7rem;
    font-weight: 900;
    line-height: 1.3;
  }
  .hero .hero-content .hero-title span {
    display: block;
  }
  .hero .hero-content .hero-para {
    line-height: 1.7;
    text-align: left;
    font-size: 1.11rem;
  }
  .hero .hero-content .hero-para span {
    display: block;
  }
  .hero .hero-content .hero-btn {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .hero .hero-content .hero-btn button {
    font-size: 1rem;
  }
  .about .about-content {
    width: 60%;
    max-width: 1200px;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .about .about-content h2 {
    font-size: 2rem;
  }
  .about .about-content p {
    margin-bottom: 1.5em;
    font-size: 1.11rem;
  }
  .about .about-content button {
    font-size: 1rem;
  }
  .support-icons {
    background: linear-gradient(160deg, #000, #0ad2c6);
    padding: 4em 0;
  }
  .support-icons .icons-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 100%;
  }
  .support-icons .icons-content li {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .volunteer {
    padding: 5em 1.5em;
    text-align: left;
  }
  .volunteer .volunteer-content {
    width: 60%;
  }
  .volunteer .volunteer-content h2 {
    font-size: 2rem;
  }
  .volunteer .volunteer-content p {
    font-size: 1.11rem;
  }
  .volunteer .volunteer-content .volunteer-btn {
    margin-top: 2em;
  }
  .volunteer .volunteer-content .volunteer-btn button {
    font-size: 1rem;
    letter-spacing: 2px;
  }
  .volunteer-people {
    padding: 6em 1em;
  }
  .volunteer-people .people-content h2 {
    margin-bottom: 1em;
    font-size: 2rem;
  }
  .volunteer-people .people-content p {
    margin-bottom: 4em;
    font-size: 1.11rem;
    text-align: center;
  }
  .client-feedback {
    margin-bottom: 6em;
  }
  .client-feedback .client-content h2 {
    font-size: 2rem;
  }
  .promise {
    padding: 5em 1.5em;
    text-align: left;
  }
  .promise .promise-content {
    width: 65%;
    margin: 0 auto;
  }
  .promise .promise-content h2 {
    font-size: 2rem;
  }
  .promise .promise-content p {
    font-size: 1.11rem;
  }
  footer {
    padding: 3em 1.5em 5em 1.5em;
  }
  footer .footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2em;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .footer-content .footer-text ul li:last-child {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  footer .footer-content .footer-text ul li:last-child span {
    margin-right: 1.5em;
  }
  footer .footer-content .footer-links {
    margin-top: 0;
  }
  footer .footer-content .footer-news {
    margin-top: 0;
  }
  footer .footer-content .form-area {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .hero .menu .nav ul {
    margin-right: 8em;
  }
  .hero .menu .nav ul li {
    margin: 0 0.8em;
  }
  .hero .hero-content .hero-title span {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */