@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img,
object,
embed,
video {
  max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
  width: 100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

body {
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: ;
}
a:hover {
  color: ;
}
a:focus {
  outline: none;
}

.gridContainer {
  width: 100vw;
  display: block;
  float: left;
  clear: none;
}

.gridContainer {
  width: 100vw;
  display: block;
  float: left;
  clear: none;

  position: relative;
  z-index: 10;
  margin: 0 0 85vh 0;
  border-radius: 0 0 2em 2em;
  padding-bottom: 5em;
}

.whitebg {
  background-color: white;
}

.brownbg {
  background: rgb(241, 236, 230);
  background: radial-gradient(
    circle,
    rgba(241, 236, 230, 0) 0%,
    rgba(232, 200, 153, 0.4990371148459384) 100%
  );
}

.herosection {
  width: 100%;
  height: auto;
  display: block;
  float: left;
  clear: none;
  background: rgb(241, 236, 230);
  background: radial-gradient(
    farthest-corner at 80% 50%,
    rgba(241, 236, 230, 0) 30%,
    rgba(232, 200, 153, 0.4990371148459384) 100%
  );
  position: relative;
}

.splatter {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  float: left;
  top: 0;
  left: 0;
  opacity: 0.4;
}

.splatter div {
  border-radius: 50%;
  background-color: #e8c899;
  position: absolute;
  z-index: auto;
  -webkit-animation: pulsate-fwd 2s ease-in-out infinite both;
  animation: pulsate-fwd 2s ease-in-out infinite both;
  transform-origin: center;
  display: block;
  float: left;
  clear: none;
}

@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

.splatter div:nth-of-type(1) {
  width: 4em;
  height: 4em;
  top: 10%;
  right: 20%;
  animation-delay: 0.4s;
  filter: blur(6px);
}

.splatter div:nth-of-type(2) {
  width: 1em;
  height: 1em;
  top: 12%;
  left: 10%;
  animation-delay: 0.8s;
  filter: blur(2px);
}

.splatter div:nth-of-type(3) {
  width: 2em;
  height: 2em;
  top: 30%;
  left: 25%;
  animation-delay: 1s;
  filter: blur(1px);
}

.splatter div:nth-of-type(4) {
  width: 1em;
  height: 1em;
  top: 5%;
  right: 60%;
  animation-delay: 1.4s;
  filter: blur(7px);
}

.splatter div:nth-of-type(5) {
  width: 4em;
  height: 4em;
  top: 50%;
  left: 10%;
  animation-delay: 1.8s;
  filter: blur(1px);
}

.splatter div:nth-of-type(6) {
  width: 3em;
  height: 3em;
  top: 62%;
  right: 5%;
  animation-delay: 2.4s;
  filter: blur(10px);
}

.splatter div:nth-of-type(7) {
  width: 1em;
  height: 1em;
  top: 70%;
  left: 20%;
  animation-delay: 2.9s;
  filter: blur(6px);
}

.splatter div:nth-of-type(8) {
  width: 0.5em;
  height: 0.5em;
  top: 75%;
  left: 10%;
  animation-delay: 3.4;
  filter: blur(0px);
}

.splatter div:nth-of-type(9) {
  width: 5em;
  height: 5em;
  top: 85%;
  left: 40%;
  animation-delay: 3.8s;
  filter: blur(15px);
}

.hs-text {
  position: relative;
  z-index: 20;
  top: 40vh;
  left: 5%;
  width: 80%;
  height: auto;
  display: block;
  float: left;
  clear: both;
}

.hs-text h1 {
  margin: auto auto 0.5em auto;
}

.hs-text h1 span:first-of-type {
  color: #897c6a;
}

.hs-text h1 span:last-of-type {
  color: #5e5447;
}

.hs-heart {
  position: absolute;
  z-index: 10;
  height: 100vw;
  width: 100vw;
  border-radius: 50%;
  top: 0;
  right: -5vw;
  border: 0.1px solid rgba(232, 200, 153, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.hsh-1 {
  height: 87%;
  width: 87%;
  border-radius: 50%;
  border: 0.5px solid rgba(232, 200, 153, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.hsh-2 {
  height: 84%;
  width: 84%;
  border-radius: 50%;
  border: 0.1px solid rgba(232, 200, 153, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.hsh-2 {
  height: 84%;
  width: 84%;
  border-radius: 50%;
  border: 0.1px solid rgba(232, 200, 153, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.heart-icon {
  height: 84%;
  width: 84%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transform-origin: center;
  position: relative;
}

.big-icon {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  display: block;
  float: left;
  clear: none;
  -webkit-animation: rotate-center 5s linear infinite both;
  animation: rotate-center 5s linear infinite both;
  transform-origin: center;
  opacity: 0.7;
  filter: blur(3px);
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.big-heart {
  height: 80%;
  width: 80%;
  position: absolute;
  z-index: 10;
  display: block;
  float: left;
  clear: none;
  -webkit-animation: pulsate-bck 5s ease-in-out infinite both;
  animation: pulsate-bck 5s ease-in-out infinite both;
}

@-webkit-keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.hs-areas {
  width: 100vw;
  height: auto;
  display: block;
  float: right;
  clear: both;
  margin: 50vh 0vw 10vh auto;
  z-index: 40;
  position: relative;
}

.hs-areas .area {
  width: calc(100vw - 0em);
  height: 30vh;
  display: block;
  float: left;
  clear: none;
  border-radius: 0vh;
  background-color: white;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  float: right;
  margin: auto 0em;
  position: relative;
}

.hs-areas .area:nth-of-type(1) {
  margin-top: auto;
}

.hs-areas .area:nth-of-type(2) {
  margin-top: auto;
}

.hs-areas .area:nth-of-type(3) {
  margin-top: auto;
}

.area-text {
  width: calc(100% - 2em);
  height: auto;
  border-radius: 0em;
  padding: 1em;
  background-color: white;
  float: left;
  clear: none;
  display: block;
  color: #000;
  text-wrap: wrap;
  text-align: center;
  position: absolute;
  z-index: 10;
  bottom: 0;
}

.area-text p {
  font-size: 0;
  transition: all 0.3s;
}

.area:hover .area-text {
  box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
}

.area:hover .area-text p {
  font-size: 1em;
  transition: all 0.3s;
}

.hs-othertext {
  width: 90%;
  height: auto;
  display: block;
  float: left;

  clear: none;
  margin: auto auto 10vh 5%;
}

.hs-othertext h2 {
  margin: auto auto 0.5em auto;
  color: #897c6a;
}

.creating {
  width: 100%;
  height: auto;
  display: block;
  float: left;
  clear: none;
  background: black;
}

.create-top {
  width: 90%;
  height: auto;
  float: left;
  clear: none;
  display: block;
  height: auto;
  text-align: center;
  color: #fff;
  margin: 5% 5% 5%;
}

.create-top span {
  background-color: white;
  height: 15vh;
  width: 1px;
  display: block;
  float: left;
  clear: none;
  margin: 0em calc(50% - 0.5px) 3em;
}

.create-top h2 {
  font-weight: 300;
  font-family: "GeneralSansRegular";
  margin: 0.5em auto;
}

.creatingicon {
  width: 3em;
  height: 3em;
  display: block;
  float: left;
  clear: none;
  margin: 2em calc(50% - 1.5em);
}

.create-down {
  clip-path: polygon(0% 0%, 52% 7%, 100% 0, 100% 100%, 0% 100%);
  width: 100%;
  height: 40vh;
  background-image: url("../img/ci63.jpg");
  background-position: top center;
  background-size: cover;
  float: left;
  clear: none;
  display: block;
}

.create-down2 {
  clip-path: polygon(0% 0%, 52% 7%, 100% 0, 100% 100%, 0% 100%);
  width: 100%;
  height: auto;
  background-image: url("../img/said-donation.jpg");
  background-position: top center;
  background-size: cover;
  float: left;
  clear: none;
  display: block;
}

.makeadifference {
  margin-top: 0;
  padding-top:200px;
  width: 100%;
  min-height: 100vh;
  display: block;
  float: left;
  clear: none;
  background: rgb(241, 236, 230);
  background: linear-gradient(
    0deg,
    rgba(241, 236, 230, 0) 0%,
    rgba(232, 200, 153, 0.35) 100%
  );
}

.makeadifference2 {
  width: 100%;
  min-height: 100vh;
  display: block;
  float: left;
  clear: none;
  background: rgb(241, 236, 230);
  background: linear-gradient(
    0deg,
    rgba(241, 236, 230, 0) 0%,
    rgba(232, 200, 153, 0.35) 100%
  );
}

.md-inner {
  width: 80%;
  height: auto;
  float: left;
  clear: none;
  display: block;
  height: auto;
  text-align: center;
  color: #fff;
  margin: 10% 10% 5% 10%;
  color: #000;
}

.md-inner img.logo-img {
  width: 80% !important;
  display: block;
  margin: 0 auto;
}

.md-inner h1 {
  margin: 0.5em auto;
}

.md-inner h4 {
  line-height: 1.2em;
  font-family: "GeneralSans";
  letter-spacing: 1px;
}

.md-inner i {
  font-size: 5em;
  color: #e8c899;
}

.md-inner2 {
  width: 80%;
  height: auto;
  float: left;
  clear: none;
  display: block;
  height: auto;
  text-align: center;
  color: #fff;
  margin: 20% 10% 5% 10%;
  color: #000;
}

.md-inner2 img.logo-img {
  width: 80% !important;
  display: block;
  margin: 0 auto;
}

.md-inner2 h1 {
  margin: 0.5em auto;
}

.md-inner2 h4 {
  line-height: 1.2em;
  font-family: "GeneralSans";
  letter-spacing: 1px;
}

.md-inner2 i {
  font-size: 5em;
  color: #e8c899;
}

.twoside-section {
  width: 90%;
  height: auto;
  display: block;
  float: left;
  clear: none;
  border-radius: 1em;
  margin: 5vh 5% 0;
  box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  border-radius: 0.5em;
  border: solid 0 #e8c899;
  border-top-width: 1px;
}

.ts-inner {
  margin: 1em;
  width: calc(100% - 2em);
  height: calc(100% - 2em);
  display: block;
  float: left;
  clear: none;
}

.ts-text {
  float: left;
  clear: none;
  display: block;
  height: auto;
  width: 90%;
  margin: 5%;
}

.ts-text h3 {
  margin: auto auto 0.5em auto;
}

.ts-text p {
  margin: auto auto 1em auto;
}

.ts-image {
  float: left;
  clear: none;
  display: block;
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: top center;
  border-radius: 1em;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
  body {
  }

  .gridContainer {
    width: 100vw;
    display: block;
    float: left;
    clear: none;
  }

  .gridContainer {
    width: 100vw;
    display: block;
    float: left;
    clear: none;

    position: relative;
    z-index: 10;
    margin: 0 0 85vh 0;
    border-radius: 0 0 2em 2em;
    padding-bottom: 5em;
  }

  .whitebg {
    background-color: white;
  }

  .brownbg {
    background: rgb(241, 236, 230);
    background: radial-gradient(
      circle,
      rgba(241, 236, 230, 0) 0%,
      rgba(232, 200, 153, 0.4990371148459384) 100%
    );
  }

  .herosection {
    width: 100%;
    height: auto;
    display: block;
    float: left;
    clear: none;
    background: rgb(241, 236, 230);
    background: radial-gradient(
      farthest-corner at 80% 50%,
      rgba(241, 236, 230, 0) 30%,
      rgba(232, 200, 153, 0.4990371148459384) 100%
    );
    position: relative;
  }

  .splatter {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    float: left;
    top: 0;
    left: 0;
    opacity: 0.4;
  }

  .splatter div {
    border-radius: 50%;
    background-color: #e8c899;
    position: absolute;
    z-index: auto;
    -webkit-animation: pulsate-fwd 2s ease-in-out infinite both;
    animation: pulsate-fwd 2s ease-in-out infinite both;
    transform-origin: center;
    display: block;
    float: left;
    clear: none;
  }

  @-webkit-keyframes pulsate-fwd {
    0% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
    50% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
  }
  @keyframes pulsate-fwd {
    0% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
    50% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
  }

  .splatter div:nth-of-type(1) {
    width: 4em;
    height: 4em;
    top: 10%;
    right: 20%;
    animation-delay: 0.4s;
    filter: blur(6px);
  }

  .splatter div:nth-of-type(2) {
    width: 1em;
    height: 1em;
    top: 12%;
    left: 10%;
    animation-delay: 0.8s;
    filter: blur(2px);
  }

  .splatter div:nth-of-type(3) {
    width: 2em;
    height: 2em;
    top: 30%;
    left: 25%;
    animation-delay: 1s;
    filter: blur(1px);
  }

  .splatter div:nth-of-type(4) {
    width: 1em;
    height: 1em;
    top: 5%;
    right: 60%;
    animation-delay: 1.4s;
    filter: blur(7px);
  }

  .splatter div:nth-of-type(5) {
    width: 4em;
    height: 4em;
    top: 50%;
    left: 10%;
    animation-delay: 1.8s;
    filter: blur(1px);
  }

  .splatter div:nth-of-type(6) {
    width: 3em;
    height: 3em;
    top: 62%;
    right: 5%;
    animation-delay: 2.4s;
    filter: blur(10px);
  }

  .splatter div:nth-of-type(7) {
    width: 1em;
    height: 1em;
    top: 70%;
    left: 20%;
    animation-delay: 2.9s;
    filter: blur(6px);
  }

  .splatter div:nth-of-type(8) {
    width: 0.5em;
    height: 0.5em;
    top: 75%;
    left: 10%;
    animation-delay: 3.4;
    filter: blur(0px);
  }

  .splatter div:nth-of-type(9) {
    width: 5em;
    height: 5em;
    top: 85%;
    left: 40%;
    animation-delay: 3.8s;
    filter: blur(15px);
  }

  .hs-text {
    position: relative;
    z-index: 20;
    top: 25vh;
    left: 5%;
    width: 70%;
    height: auto;
    display: block;
    float: left;
    clear: both;
  }

  .hs-text h1 {
    margin: auto auto 0.5em auto;
  }

  .hs-text h1 span:first-of-type {
    color: #897c6a;
  }

  .hs-text h1 span:last-of-type {
    color: #5e5447;
  }

  .hs-heart {
    position: absolute;
    z-index: 10;
    height: 100vw;
    width: 100vw;
    border-radius: 50%;
    top: -15vh;
    right: -30vw;
    border: 0.1px solid rgba(232, 200, 153, 0.4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .hsh-1 {
    height: 87%;
    width: 87%;
    border-radius: 50%;
    border: 0.5px solid rgba(232, 200, 153, 0.7);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .hsh-2 {
    height: 84%;
    width: 84%;
    border-radius: 50%;
    border: 0.1px solid rgba(232, 200, 153, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .hsh-2 {
    height: 84%;
    width: 84%;
    border-radius: 50%;
    border: 0.1px solid rgba(232, 200, 153, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .heart-icon {
    height: 84%;
    width: 84%;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transform-origin: center;
    position: relative;
  }

  .big-icon {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 0;
    display: block;
    float: left;
    clear: none;
    -webkit-animation: rotate-center 5s linear infinite both;
    animation: rotate-center 5s linear infinite both;
    transform-origin: center;
    opacity: 0.7;
    filter: blur(3px);
  }

  @-webkit-keyframes rotate-center {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes rotate-center {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  .big-heart {
    height: 80%;
    width: 80%;
    position: absolute;
    z-index: 10;
    display: block;
    float: left;
    clear: none;
    -webkit-animation: pulsate-bck 5s ease-in-out infinite both;
    animation: pulsate-bck 5s ease-in-out infinite both;
  }

  @-webkit-keyframes pulsate-bck {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes pulsate-bck {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  .hs-areas {
    width: 100vw;
    height: auto;
    display: block;
    float: right;
    clear: both;
    margin: 35vh 0vw 10vh auto;
    z-index: 40;
    position: relative;
  }

  .hs-areas .area {
    width: calc(100vw - 0em);
    height: 35vh;
    display: block;
    float: left;
    clear: none;
    border-radius: 0vh;
    background-color: white;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    float: right;
    margin: auto 0em;
    position: relative;
  }

  .hs-areas .area:nth-of-type(1) {
    margin-top: auto;
  }

  .hs-areas .area:nth-of-type(2) {
    margin-top: auto;
  }

  .hs-areas .area:nth-of-type(3) {
    margin-top: auto;
  }

  .area-text {
    width: calc(100% - 2em);
    height: auto;
    border-radius: 0em;
    padding: 1em;
    background-color: white;
    float: left;
    clear: none;
    display: block;
    color: #000;
    text-wrap: wrap;
    text-align: center;
    position: absolute;
    z-index: 10;
    bottom: 0;
  }

  .area-text p {
    font-size: 0;
    transition: all 0.3s;
  }

  .area:hover .area-text {
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  .area:hover .area-text p {
    font-size: 1em;
    transition: all 0.3s;
  }

  .hs-othertext {
    width: 70%;
    height: auto;
    display: block;
    float: left;

    clear: none;
    margin: auto auto 10vh 5%;
  }

  .hs-othertext h2 {
    margin: auto auto 0.5em auto;
    color: #897c6a;
  }

  .creating {
    width: 100%;
    height: auto;
    display: block;
    float: left;
    clear: none;
    background: black;
  }

  .create-top {
    width: 90%;
    height: auto;
    float: left;
    clear: none;
    display: block;
    height: auto;
    text-align: center;
    color: #fff;
    margin: 5% 5% 5%;
  }

  .create-top span {
    background-color: white;
    height: 15vh;
    width: 1px;
    display: block;
    float: left;
    clear: none;
    margin: 0em calc(50% - 0.5px) 3em;
  }

  .create-top h2 {
    font-weight: 300;
    font-family: "GeneralSansRegular";
    margin: 0.5em auto;
  }

  .creatingicon {
    width: 3em;
    height: 3em;
    display: block;
    float: left;
    clear: none;
    margin: 2em calc(50% - 1.5em);
  }

  .create-down {
    clip-path: polygon(0% 0%, 52% 7%, 100% 0, 100% 100%, 0% 100%);
    width: 100%;
    height: 50vh;
    background-image: url("../img/ci63.jpg");
    background-position: top center;
    background-size: cover;
    float: left;
    clear: none;
    display: block;
  }

  .create-down2 {
    clip-path: polygon(0% 0%, 52% 7%, 100% 0, 100% 100%, 0% 100%);
    width: 100%;
    height: auto;
    background-image: url("../img/said-donation.jpg");
    background-position: top center;
    background-size: cover;
    float: left;
    clear: none;
    display: block;
  }

  .makeadifference {
    width: 100%;
    min-height: 70vh;
    display: block;
    float: left;
    clear: none;
    background: rgb(241, 236, 230);
    background: linear-gradient(
      0deg,
      rgba(241, 236, 230, 0) 0%,
      rgba(232, 200, 153, 0.35) 100%
    );
  }

  .makeadifference2 {
    margin-top: 5%;
    width: 100%;
    min-height: 70vh;
    display: block;
    float: left;
    clear: none;
    background: rgb(241, 236, 230);
    background: linear-gradient(
      0deg,
      rgba(241, 236, 230, 0) 0%,
      rgba(232, 200, 153, 0.35) 100%
    );
  }

  .md-inner {
    width: 80%;
    height: auto;
    float: left;
    clear: none;
    display: block;
    height: auto;
    text-align: center;
    color: #fff;
    margin: 10% 10% 5% 10%;
    color: #000;
  }

  .md-inner img.logo-img {
    width: 60% !important;
    display: block;
    margin: 0 auto;
  }

  .md-inner h1 {
    margin: 0.5em auto;
  }

  .md-inner h4 {
    line-height: 1.2em;
    font-family: "GeneralSans";
    letter-spacing: 1px;
  }

  .md-inner i {
    font-size: 5em;
    color: #e8c899;
  }

  .md-inner2 {
    width: 80%;
    height: auto;
    float: left;
    clear: none;
    display: block;
    height: auto;
    text-align: center;
    color: #fff;
    margin: 35% 10% 5% 10%;
    color: #000;
  }

  .md-inner2 img.logo-img {
    width: 60% !important;
    display: block;
    margin: 0 auto;
  }

  .md-inner2 h1 {
    margin: 0.5em auto;
  }

  .md-inner2 h4 {
    line-height: 1.2em;
    font-family: "GeneralSans";
    letter-spacing: 1px;
  }

  .md-inner2 i {
    font-size: 5em;
    color: #e8c899;
  }

  .twoside-section {
    width: 90%;
    height: auto;
    display: block;
    float: left;
    clear: none;
    border-radius: 1em;
    margin: 5vh 5% 0;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    border-radius: 0.5em;
    border: solid 0 #e8c899;
    border-top-width: 1px;
  }

  .ts-inner {
    margin: 1em;
    width: calc(100% - 2em);
    height: calc(100% - 2em);
    display: block;
    float: left;
    clear: none;
  }

  .ts-text {
    float: left;
    clear: none;
    display: block;
    height: auto;
    width: 90%;
    margin: 5%;
  }

  .ts-text h3 {
    margin: auto auto 0.5em auto;
  }

  .ts-text p {
    margin: auto auto 1em auto;
  }

  .ts-image {
    float: left;
    clear: none;
    display: block;
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: top center;
    border-radius: 1em;
  }
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
  body {
  }
  /* For WebKit browsers (Chrome, Edge, Safari) */
  body::-webkit-scrollbar {
    width: auto;
    height: auto;
  }

  body::-webkit-scrollbar-thumb {
    background: auto;
  }

  body::-webkit-scrollbar-track {
    background: auto;
  }

  .gridContainer {
    width: 100vw;
    display: block;
    float: left;
    clear: none;

    position: relative;
    z-index: 10;
    margin: 0 0 60vh 0;
    border-radius: 0 0 2em 2em;
    padding-bottom: 5em;
  }

  .whitebg {
    background-color: white;
  }

  .brownbg {
    background: rgb(241, 236, 230);
    background: radial-gradient(
      circle,
      rgba(241, 236, 230, 0) 0%,
      rgba(232, 200, 153, 0.4990371148459384) 100%
    );
  }

  .herosection {
    width: 100%;
    height: auto;
    display: block;
    float: left;
    clear: none;
    background: rgb(241, 236, 230);
    background: radial-gradient(
      farthest-corner at 80% 50%,
      rgba(241, 236, 230, 0) 30%,
      rgba(232, 200, 153, 0.4990371148459384) 100%
    );
    position: relative;
  }

  .splatter {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    float: left;
    top: 0;
    left: 0;
    opacity: 0.5;
  }

  .splatter div {
    border-radius: 50%;
    background-color: #e8c899;
    position: absolute;
    z-index: auto;
    -webkit-animation: pulsate-fwd 2s ease-in-out infinite both;
    animation: pulsate-fwd 2s ease-in-out infinite both;
    transform-origin: center;
    display: block;
    float: left;
    clear: none;
  }

  @-webkit-keyframes pulsate-fwd {
    0% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
    50% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
  }
  @keyframes pulsate-fwd {
    0% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
    50% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
  }

  .splatter div:nth-of-type(1) {
    width: 4em;
    height: 4em;
    top: 10%;
    right: 20%;
    animation-delay: 0.4s;
    filter: blur(6px);
  }

  .splatter div:nth-of-type(2) {
    width: 1em;
    height: 1em;
    top: 12%;
    left: 10%;
    animation-delay: 0.8s;
    filter: blur(2px);
  }

  .splatter div:nth-of-type(3) {
    width: 2em;
    height: 2em;
    top: 30%;
    left: 25%;
    animation-delay: 1s;
    filter: blur(1px);
  }

  .splatter div:nth-of-type(4) {
    width: 1em;
    height: 1em;
    top: 5%;
    right: 60%;
    animation-delay: 1.4s;
    filter: blur(7px);
  }

  .splatter div:nth-of-type(5) {
    width: 4em;
    height: 4em;
    top: 50%;
    left: 10%;
    animation-delay: 1.8s;
    filter: blur(1px);
  }

  .splatter div:nth-of-type(6) {
    width: 3em;
    height: 3em;
    top: 62%;
    right: 5%;
    animation-delay: 2.4s;
    filter: blur(10px);
  }

  .splatter div:nth-of-type(7) {
    width: 1em;
    height: 1em;
    top: 70%;
    left: 20%;
    animation-delay: 2.9s;
    filter: blur(6px);
  }

  .splatter div:nth-of-type(8) {
    width: 0.5em;
    height: 0.5em;
    top: 75%;
    left: 10%;
    animation-delay: 3.4;
    filter: blur(0px);
  }

  .splatter div:nth-of-type(9) {
    width: 5em;
    height: 5em;
    top: 85%;
    left: 40%;
    animation-delay: 3.8s;
    filter: blur(15px);
  }

  .hs-text {
    position: relative;
    z-index: 20;
    top: 30vh;
    left: 5%;
    width: 65%;
    height: auto;
    display: block;
    float: left;
    clear: both;
  }

  .hs-text h1 {
    margin: auto auto 0.5em auto;
  }

  .hs-text h1 span:first-of-type {
    color: #897c6a;
  }

  .hs-text h1 span:last-of-type {
    color: #5e5447;
  }

  .hs-heart {
    position: absolute;
    z-index: 10;
    height: 80vw;
    width: 80vw;
    border-radius: 50%;
    top: -10vh;
    right: -15vw;
    border: 0.1px solid rgba(232, 200, 153, 0.4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .hsh-1 {
    height: 87%;
    width: 87%;
    border-radius: 50%;
    border: 0.5px solid rgba(232, 200, 153, 0.7);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .hsh-2 {
    height: 84%;
    width: 84%;
    border-radius: 50%;
    border: 0.1px solid rgba(232, 200, 153, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .hsh-2 {
    height: 84%;
    width: 84%;
    border-radius: 50%;
    border: 0.1px solid rgba(232, 200, 153, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .heart-icon {
    height: 84%;
    width: 84%;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transform-origin: center;
    position: relative;
  }

  .big-icon {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 0;
    display: block;
    float: left;
    clear: none;
    -webkit-animation: rotate-center 5s linear infinite both;
    animation: rotate-center 5s linear infinite both;
    transform-origin: center;
    opacity: 0.7;
    filter: blur(3px);
  }

  @-webkit-keyframes rotate-center {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes rotate-center {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  .big-heart {
    height: 80%;
    width: 80%;
    position: absolute;
    z-index: 10;
    display: block;
    float: left;
    clear: none;
    -webkit-animation: pulsate-bck 5s ease-in-out infinite both;
    animation: pulsate-bck 5s ease-in-out infinite both;
  }

  @-webkit-keyframes pulsate-bck {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes pulsate-bck {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  .hs-areas {
    width: 100vw;
    height: auto;
    display: block;
    float: left;
    clear: both;
    margin: 40vh 0vw 10vh auto;
    z-index: 40;
    position: relative;
  }

  .hs-areas .area {
    width: calc(50vw - 0em);
    height: 45vh;
    display: block;
    float: left;
    clear: none;
    border-radius: 0vh;
    background-color: white;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: auto 0em;
    position: relative;
  }

  .hs-areas .area:nth-of-type(1) {
    margin-top: auto;
  }

  .hs-areas .area:nth-of-type(2) {
    margin-top: auto;
  }

  .hs-areas .area:nth-of-type(3) {
    margin-top: auto;
  }

  .area-text {
    width: calc(100% - 2em);
    height: auto;
    border-radius: 0em;
    padding: 1em;
    background-color: white;
    float: left;
    clear: none;
    display: block;
    color: #000;
    text-wrap: wrap;
    text-align: center;
    position: absolute;
    z-index: 10;
    bottom: 0;
  }

  .area-text p {
    font-size: 0;
    transition: all 0.3s;
  }

  .area:hover .area-text {
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  .area:hover .area-text p {
    font-size: 1em;
    transition: all 0.3s;
  }

  .hs-othertext {
    width: 90%;
    height: auto;
    display: block;
    float: left;

    clear: none;
    margin: auto auto 10vh 5%;
  }

  .hs-othertext h2 {
    margin: auto auto 0.5em auto;
    color: #897c6a;
  }

  .creating {
    width: 100%;
    height: 350vh;
    display: block;
    float: left;
    clear: none;
    background: black;
  }

  .create-top {
    width: 50%;
    height: 40%;
    float: left;
    clear: none;
    display: block;
    height: auto;
    text-align: center;
    color: #fff;
    margin: 5% 25% 5%;
  }

  .create-top span {
    background-color: white;
    height: 15vh;
    width: 1px;
    display: block;
    float: left;
    clear: none;
    margin: 0em calc(50% - 0.5px) 3em;
  }

  .create-top h2 {
    font-weight: 300;
    font-family: "GeneralSansRegular";
    margin: 0.5em auto;
  }

  .creatingicon {
    width: 3em;
    height: 3em;
    display: block;
    float: left;
    clear: none;
    margin: 2em calc(50% - 2em);
  }

  .create-down {
    clip-path: polygon(0% 0%, 52% 7%, 100% 0, 100% 100%, 0% 100%);
    width: 100%;
    height: 50%;
    background-image: url("../img/ci63.jpg");
    background-position: top center;
    background-size: cover;
    float: left;
    clear: none;
    display: block;
  }

  .create-down2 {
    clip-path: polygon(0% 0%, 52% 7%, 100% 0, 100% 100%, 0% 100%);
    width: 100%;
    height: 40%;
    background-image: url("../img/said-donation.jpg");
    background-position: top center;
    background-size: cover;
    float: left;
    clear: none;
    display: block;
  }

  .makeadifference {
    width: 100%;
    min-height: 90vh;
    display: block;
    float: left;
    clear: none;
    background: rgb(241, 236, 230);
    background: linear-gradient(
      0deg,
      rgba(241, 236, 230, 0) 0%,
      rgba(232, 200, 153, 0.35) 100%
    );
  }
  .makeadifference2 {
    margin-top: 0%;
    width: 100%;
    min-height: 90vh;
    display: block;
    float: left;
    clear: none;
    background: rgb(241, 236, 230);
    background: linear-gradient(
      0deg,
      rgba(241, 236, 230, 0) 0%,
      rgba(232, 200, 153, 0.35) 100%
    );
  }

  .md-inner {
    width: 80%;
    height: auto;
    float: left;
    clear: none;
    display: block;
    height: auto;
    text-align: center;
    color: #fff;
    margin: 10% 10% 5% 10%;
    color: #000;
  }

  .md-inner img.logo-img {
    width: 40% !important;
    display: block;
    margin: 0 auto;
  }

  .md-inner h1 {
    margin: 0.5em auto;
  }

  .md-inner h4 {
    line-height: 1.2em;
    font-family: "GeneralSans";
    letter-spacing: 1px;
  }

  .md-inner i {
    font-size: 5em;
    color: #e8c899;
  }

  .md-inner2 {
    width: 80%;
    height: auto;
    float: left;
    clear: none;
    display: block;
    height: auto;
    text-align: center;
    color: #fff;
    margin: 35% 10% 5% 10%;
    color: #000;
  }

  .md-inner2 img.logo-img {
    width: 40% !important;
    display: block;
    margin: 0 auto;
  }

  .md-inner2 h1 {
    margin: 0.5em auto;
  }

  .md-inner2 h4 {
    line-height: 1.2em;
    font-family: "GeneralSans";
    letter-spacing: 1px;
  }

  .md-inner2 i {
    font-size: 5em;
    color: #e8c899;
  }

  .twoside-section {
    width: 90%;
    height: auto;
    display: block;
    float: left;
    clear: none;
    border-radius: 1em;
    margin: 5vh 5% 0;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    border-radius: 0.5em;
    border: solid 0 #e8c899;
    border-top-width: 1px;
  }

  .ts-inner {
    margin: 1em;
    width: calc(100% - 2em);
    height: calc(100% - 2em);
    display: block;
    float: left;
    clear: none;
  }

  .ts-text {
    float: left;
    clear: none;
    display: block;
    height: auto;
    width: 90%;
    margin: 5%;
  }

  .ts-text h3 {
    margin: auto auto 0.5em auto;
  }

  .ts-text p {
    margin: auto auto 1em auto;
  }

  .ts-image {
    float: left;
    clear: none;
    display: block;
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: top center;
    border-radius: 1em;
  }
}
/* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {
  body {
  }

  /* For WebKit browsers (Chrome, Edge, Safari) */
  body::-webkit-scrollbar {
    width: auto;
    height: auto;
  }

  body::-webkit-scrollbar-thumb {
    background: auto;
  }

  body::-webkit-scrollbar-track {
    background: auto;
  }

  .gridContainer {
    width: 100vw;
    display: block;
    float: left;
    clear: none;

    position: relative;
    z-index: 10;
    margin: 0 0 55vh 0;
    border-radius: 0 0 2em 2em;
    padding-bottom: 5em;
  }

  .whitebg {
    background-color: white;
  }

  .brownbg {
    background: rgb(241, 236, 230);
    background: radial-gradient(
      circle,
      rgba(241, 236, 230, 0) 0%,
      rgba(232, 200, 153, 0.4990371148459384) 100%
    );
  }

  .herosection {
    width: 100%;
    height: 200vh;
    display: block;
    float: left;
    clear: none;
    background: rgb(241, 236, 230);
    background: radial-gradient(
      farthest-corner at 80% 50%,
      rgba(241, 236, 230, 0) 30%,
      rgba(232, 200, 153, 0.4990371148459384) 100%
    );
    position: relative;
  }

  .splatter {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    float: left;
    top: 0;
    left: 0;
  }

  .splatter div {
    border-radius: 50%;
    background-color: #e8c899;
    position: absolute;
    z-index: auto;
    -webkit-animation: pulsate-fwd 2s ease-in-out infinite both;
    animation: pulsate-fwd 2s ease-in-out infinite both;
    transform-origin: center;
    display: block;
    float: left;
    clear: none;
  }

  @-webkit-keyframes pulsate-fwd {
    0% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
    50% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
  }
  @keyframes pulsate-fwd {
    0% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
    50% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
  }

  .splatter div:nth-of-type(1) {
    width: 4em;
    height: 4em;
    top: 10%;
    right: 20%;
    animation-delay: 0.4s;
    filter: blur(6px);
  }

  .splatter div:nth-of-type(2) {
    width: 1em;
    height: 1em;
    top: 12%;
    left: 10%;
    animation-delay: 0.8s;
    filter: blur(2px);
  }

  .splatter div:nth-of-type(3) {
    width: 2em;
    height: 2em;
    top: 30%;
    left: 25%;
    animation-delay: 1s;
    filter: blur(1px);
  }

  .splatter div:nth-of-type(4) {
    width: 1em;
    height: 1em;
    top: 5%;
    right: 60%;
    animation-delay: 1.4s;
    filter: blur(7px);
  }

  .splatter div:nth-of-type(5) {
    width: 4em;
    height: 4em;
    top: 50%;
    left: 10%;
    animation-delay: 1.8s;
    filter: blur(1px);
  }

  .splatter div:nth-of-type(6) {
    width: 3em;
    height: 3em;
    top: 62%;
    right: 5%;
    animation-delay: 2.4s;
    filter: blur(10px);
  }

  .splatter div:nth-of-type(7) {
    width: 1em;
    height: 1em;
    top: 70%;
    left: 20%;
    animation-delay: 2.9s;
    filter: blur(6px);
  }

  .splatter div:nth-of-type(8) {
    width: 0.5em;
    height: 0.5em;
    top: 75%;
    left: 10%;
    animation-delay: 3.4;
    filter: blur(0px);
  }

  .splatter div:nth-of-type(9) {
    width: 5em;
    height: 5em;
    top: 85%;
    left: 40%;
    animation-delay: 3.8s;
    filter: blur(15px);
  }

  .hs-text {
    position: relative;
    z-index: 20;
    top: 30vh;
    left: 5%;
    width: 30%;
    height: auto;
    display: block;
    float: left;
    clear: both;
  }

  .hs-text h1 {
    margin: auto auto 0.5em auto;
  }

  .hs-text h1 span:first-of-type {
    color: #897c6a;
  }

  .hs-text h1 span:last-of-type {
    color: #5e5447;
  }

  .hs-heart {
    position: absolute;
    z-index: 10;
    height: 70vw;
    width: 70vw;
    border-radius: 50%;
    top: 0;
    right: -5vw;
    border: 0.1px solid rgba(232, 200, 153, 0.4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .hsh-1 {
    height: 87%;
    width: 87%;
    border-radius: 50%;
    border: 0.5px solid rgba(232, 200, 153, 0.7);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .hsh-2 {
    height: 84%;
    width: 84%;
    border-radius: 50%;
    border: 0.1px solid rgba(232, 200, 153, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .hsh-2 {
    height: 84%;
    width: 84%;
    border-radius: 50%;
    border: 0.1px solid rgba(232, 200, 153, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .heart-icon {
    height: 84%;
    width: 84%;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transform-origin: center;
    position: relative;
  }

  .big-icon {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 0;
    display: block;
    float: left;
    clear: none;
    -webkit-animation: rotate-center 5s linear infinite both;
    animation: rotate-center 5s linear infinite both;
    transform-origin: center;
    opacity: 0.7;
    filter: blur(3px);
  }

  @-webkit-keyframes rotate-center {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes rotate-center {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  .big-heart {
    height: 80%;
    width: 80%;
    position: absolute;
    z-index: 10;
    display: block;
    float: left;
    clear: none;
    -webkit-animation: pulsate-bck 5s ease-in-out infinite both;
    animation: pulsate-bck 5s ease-in-out infinite both;
  }

  @-webkit-keyframes pulsate-bck {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes pulsate-bck {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  .hs-areas {
    width: auto;
    height: 60vh;
    display: block;
    float: right;
    clear: both;
    margin: 50vh -5vw 20vh auto;
    z-index: 40;
    position: relative;
  }

  .hs-areas .area {
    width: 50vh;
    height: 50vh;
    display: block;
    float: left;
    clear: none;
    border-radius: 25vh;
    background-color: white;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    float: right;
    margin: auto 2em;
    position: relative;
  }

  .hs-areas .area:nth-of-type(1) {
    margin-top: -15vh;
  }

  .hs-areas .area:nth-of-type(2) {
    margin-top: ;
  }

  .hs-areas .area:nth-of-type(3) {
    margin-top: -10vh;
  }

  .area-text {
    width: 50%;
    height: auto;
    border-radius: 2em;
    padding: 2em;
    background-color: white;
    float: left;
    clear: none;
    display: block;
    color: #000;
    text-wrap: wrap;
    text-align: center;
    position: absolute;
    z-index: 10;
    bottom: 0;
  }

  .area-text p {
    font-size: 0;
    transition: all 0.3s;
  }

  .area:hover .area-text {
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  .area:hover .area-text p {
    font-size: 1em;
    transition: all 0.3s;
  }

  .hs-othertext {
    width: 60%;
    height: auto;
    display: block;
    float: left;

    clear: none;
    margin: -25vh auto auto 5%;
  }

  .hs-othertext h2 {
    margin: auto auto 0.5em auto;
    color: #897c6a;
  }

  .creating {
    width: 100%;
    height: 200vh;
    display: block;
    float: left;
    clear: none;
    background: black;
  }

  .create-top {
    width: 50%;
    height: 40%;
    float: left;
    clear: none;
    display: block;
    height: auto;
    text-align: center;
    color: #fff;
    margin: 5% 25% 5%;
  }

  .create-top span {
    background-color: white;
    height: 15vh;
    width: 1px;
    display: block;
    float: left;
    clear: none;
    margin: 0em calc(50% - 0.5px) 3em;
  }

  .create-top h2 {
    font-weight: 300;
    font-family: "GeneralSansRegular";
    margin: 0.5em auto;
  }

  .creatingicon {
    width: 5em;
    height: 5em;
    display: block;
    float: left;
    clear: none;
    margin: 2em calc(50% - 2em);
  }

  .create-down {
    clip-path: polygon(0% 0%, 52% 7%, 100% 0, 100% 100%, 0% 100%);
    width: 100%;
    height: 50%;
    background-image: url("../img/ci63.jpg");
    background-position: top center;
    background-size: cover;
    float: left;
    clear: none;
    display: block;
  }
  .create-down2 {
    clip-path: polygon(0% 0%, 52% 7%, 100% 0, 100% 100%, 0% 100%);
    width: 100%;
    height: 50%;
    background-image: url("../img/said-donation.jpg");
    background-position: top center;
    background-size: cover;
    float: left;
    clear: none;
    display: block;
  }

  .makeadifference {
    width: 100%;
    min-height: 100vh;
    display: block;
    float: left;
    clear: none;
    background: rgb(241, 236, 230);
    background: linear-gradient(
      0deg,
      rgba(241, 236, 230, 0) 0%,
      rgba(232, 200, 153, 0.35) 100%
    );
  }

  .makeadifference2 {
    margin-top: 5%;
    width: 100%;
    min-height: 100vh;
    display: block;
    float: left;
    clear: none;
    background: rgb(241, 236, 230);
    background: linear-gradient(
      0deg,
      rgba(241, 236, 230, 0) 0%,
      rgba(232, 200, 153, 0.35) 100%
    );
  }

  .md-inner {
    width: 70%;
    height: auto;
    float: left;
    clear: none;
    display: block;
    height: auto;
    text-align: center;
    color: #fff;
    margin: 10% 15% 5% 15%;
    color: #000;
  }

  .md-inner2 {
    width: 70%;
    height: auto;
    float: left;
    clear: none;
    display: block;
    height: auto;
    text-align: center;
    color: #fff;
    margin: 35% 15% 5% 15%;
    color: #000;
  }

  .md-inner img.logo-img {
    width: 40% !important;
    display: block;
    margin: 0 auto;
  }

  .md-inner h1 {
    margin: 0.5em auto;
  }

  .md-inner h4 {
    line-height: 1.2em;
    font-family: "GeneralSans";
    letter-spacing: 1px;
  }

  .md-inner i {
    font-size: 5em;
    color: #e8c899;
  }

  .md-inner2 img.logo-img {
    width: 40% !important;
    display: block;
    margin: 0 auto;
  }

  .md-inner2 h1 {
    margin: 0.5em auto;
  }

  .md-inner2 h4 {
    line-height: 1.2em;
    font-family: "GeneralSans";
    letter-spacing: 1px;
  }

  .md-inner2 i {
    font-size: 5em;
    color: #e8c899;
  }

  .twoside-section {
    width: 85%;
    height: auto;
    display: block;
    float: left;
    clear: none;
    border-radius: 1em;
    margin: 5vh 7.5%;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    border-radius: 1em;
    border: solid 0 #e8c899;
    border-top-width: 1px;
  }

  .ts-inner {
    margin: 2em;
    width: calc(100% - 4em);
    height: calc(100% - 4em);
    display: block;
    float: left;
    clear: none;
  }

  .ts-text {
    float: left;
    clear: none;
    display: block;
    height: 90%;
    width: 40%;
    margin: 5%;
  }

  .ts-text h3 {
    margin: auto auto 0.5em auto;
  }

  .ts-text p {
    margin: auto auto 1em auto;
  }

  .ts-image {
    float: left;
    clear: none;
    display: block;
    width: 50%;
    height: 50vh;
    background-size: cover;
    background-position: top center;
    border-radius: 1em;
  }
}

/* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1440px) {
  body {
  }
  /* For WebKit browsers (Chrome, Edge, Safari) */
  body::-webkit-scrollbar {
    width: auto;
    height: auto;
  }

  body::-webkit-scrollbar-thumb {
    background: auto;
  }

  body::-webkit-scrollbar-track {
    background: auto;
  }

  .gridContainer {
    width: 100vw;
    display: block;
    float: left;
    clear: none;

    position: relative;
    z-index: 10;
    margin: 0 0 55vh 0;
    border-radius: 0 0 2em 2em;
    padding-bottom: 5em;
  }

  .whitebg {
    background-color: white;
  }

  .brownbg {
    background: rgb(241, 236, 230);
    background: radial-gradient(
      circle,
      rgba(241, 236, 230, 0) 0%,
      rgba(232, 200, 153, 0.4990371148459384) 100%
    );
  }

  .herosection {
    width: 100%;
    height: 200vh;
    display: block;
    float: left;
    clear: none;
    background: rgb(241, 236, 230);
    background: radial-gradient(
      farthest-corner at 80% 50%,
      rgba(241, 236, 230, 0) 30%,
      rgba(232, 200, 153, 0.4990371148459384) 100%
    );
    position: relative;
  }

  .splatter {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    float: left;
    top: 0;
    left: 0;
  }

  .splatter div {
    border-radius: 50%;
    background-color: #e8c899;
    position: absolute;
    z-index: auto;
    -webkit-animation: pulsate-fwd 2s ease-in-out infinite both;
    animation: pulsate-fwd 2s ease-in-out infinite both;
    transform-origin: center;
    display: block;
    float: left;
    clear: none;
  }

  @-webkit-keyframes pulsate-fwd {
    0% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
    50% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
  }
  @keyframes pulsate-fwd {
    0% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
    50% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(0.7);
      transform: scale(0.7);
    }
  }

  .splatter div:nth-of-type(1) {
    width: 4em;
    height: 4em;
    top: 10%;
    right: 20%;
    animation-delay: 0.4s;
    filter: blur(6px);
  }

  .splatter div:nth-of-type(2) {
    width: 1em;
    height: 1em;
    top: 12%;
    left: 10%;
    animation-delay: 0.8s;
    filter: blur(2px);
  }

  .splatter div:nth-of-type(3) {
    width: 2em;
    height: 2em;
    top: 30%;
    left: 25%;
    animation-delay: 1s;
    filter: blur(1px);
  }

  .splatter div:nth-of-type(4) {
    width: 1em;
    height: 1em;
    top: 5%;
    right: 60%;
    animation-delay: 1.4s;
    filter: blur(7px);
  }

  .splatter div:nth-of-type(5) {
    width: 4em;
    height: 4em;
    top: 50%;
    left: 10%;
    animation-delay: 1.8s;
    filter: blur(1px);
  }

  .splatter div:nth-of-type(6) {
    width: 3em;
    height: 3em;
    top: 62%;
    right: 5%;
    animation-delay: 2.4s;
    filter: blur(10px);
  }

  .splatter div:nth-of-type(7) {
    width: 1em;
    height: 1em;
    top: 70%;
    left: 20%;
    animation-delay: 2.9s;
    filter: blur(6px);
  }

  .splatter div:nth-of-type(8) {
    width: 0.5em;
    height: 0.5em;
    top: 75%;
    left: 10%;
    animation-delay: 3.4;
    filter: blur(0px);
  }

  .splatter div:nth-of-type(9) {
    width: 5em;
    height: 5em;
    top: 85%;
    left: 40%;
    animation-delay: 3.8s;
    filter: blur(15px);
  }

  .hs-text {
    position: relative;
    z-index: 20;
    top: 30vh;
    left: 7.5%;
    width: 30%;
    height: auto;
    display: block;
    float: left;
    clear: both;
  }

  .hs-text h1 {
    margin: auto auto 0.5em auto;
  }

  .hs-text h1 span:first-of-type {
    color: #897c6a;
  }

  .hs-text h1 span:last-of-type {
    color: #5e5447;
  }

  .hs-heart {
    position: absolute;
    z-index: 10;
    height: 70vw;
    width: 70vw;
    border-radius: 50%;
    top: 0;
    right: -5vw;
    border: 0.1px solid rgba(232, 200, 153, 0.4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .hsh-1 {
    height: 87%;
    width: 87%;
    border-radius: 50%;
    border: 0.5px solid rgba(232, 200, 153, 0.7);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .hsh-2 {
    height: 84%;
    width: 84%;
    border-radius: 50%;
    border: 0.1px solid rgba(232, 200, 153, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .hsh-2 {
    height: 84%;
    width: 84%;
    border-radius: 50%;
    border: 0.1px solid rgba(232, 200, 153, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .heart-icon {
    height: 84%;
    width: 84%;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transform-origin: center;
    position: relative;
  }

  .big-icon {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 0;
    display: block;
    float: left;
    clear: none;
    -webkit-animation: rotate-center 5s linear infinite both;
    animation: rotate-center 5s linear infinite both;
    transform-origin: center;
    opacity: 0.7;
    filter: blur(3px);
  }

  @-webkit-keyframes rotate-center {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes rotate-center {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  .big-heart {
    height: 80%;
    width: 80%;
    position: absolute;
    z-index: 10;
    display: block;
    float: left;
    clear: none;
    -webkit-animation: pulsate-bck 5s ease-in-out infinite both;
    animation: pulsate-bck 5s ease-in-out infinite both;
  }

  @-webkit-keyframes pulsate-bck {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes pulsate-bck {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  .hs-areas {
    width: auto;
    height: 60vh;
    display: block;
    float: right;
    clear: both;
    margin: 70vh -5vw auto auto;
    z-index: 40;
    position: relative;
  }

  .hs-areas .area {
    width: 50vh;
    height: 50vh;
    display: block;
    float: left;
    clear: none;
    border-radius: 25vh;
    background-color: white;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    float: right;
    margin: auto 2em;
    position: relative;
  }

  .hs-areas .area:nth-of-type(1) {
    margin-top: -15vh;
  }

  .hs-areas .area:nth-of-type(2) {
    margin-top: ;
  }

  .hs-areas .area:nth-of-type(3) {
    margin-top: -30vh;
  }

  .area-text {
    width: 50%;
    height: auto;
    border-radius: 2em;
    padding: 2em;
    background-color: white;
    float: left;
    clear: none;
    display: block;
    color: #000;
    text-wrap: wrap;
    text-align: center;
    position: absolute;
    z-index: 10;
    bottom: 0;
  }

  .area-text p {
    font-size: 0;
    transition: all 0.3s;
  }

  .area:hover .area-text {
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  .area:hover .area-text p {
    font-size: 1em;
    transition: all 0.3s;
  }

  .hs-othertext {
    width: 40%;
    height: auto;
    display: block;
    float: left;

    clear: none;
    margin: -25vh auto auto 7.5%;
  }

  .hs-othertext h2 {
    margin: auto auto 0.5em auto;
    color: #897c6a;
  }

  .creating {
    width: 100%;
    height: 200vh;
    display: block;
    float: left;
    clear: none;
    background: black;
  }

  .create-top {
    width: 50%;
    height: 40%;
    float: left;
    clear: none;
    display: block;
    height: auto;
    text-align: center;
    color: #fff;
    margin: 5% 25% 5%;
  }

  .create-top span {
    background-color: white;
    height: 15vh;
    width: 1px;
    display: block;
    float: left;
    clear: none;
    margin: 0em calc(50% - 0.5px) 3em;
  }

  .create-top h2 {
    font-weight: 300;
    font-family: "GeneralSansRegular";
    margin: 0.5em auto;
  }

  .creatingicon {
    width: 5em;
    height: 5em;
    display: block;
    float: left;
    clear: none;
    margin: 2em calc(50% - 2em);
  }

  .create-down {
    clip-path: polygon(0% 0%, 52% 7%, 100% 0, 100% 100%, 0% 100%);
    width: 100%;
    height: 55%;
    background-image: url("../img/ci63.jpg");
    background-position: top center;
    background-size: cover;
    float: left;
    clear: none;
    display: block;
  }

  .create-down2 {
    clip-path: polygon(0% 0%, 52% 7%, 100% 0, 100% 100%, 0% 100%);
    width: 100%;
    height: 55%;
    background-image: url("../img/said-donation.jpg");
    background-position: top center;
    background-size: cover;
    float: left;
    clear: none;
    display: block;
  }

  .makeadifference {
    margin-top: 0px;
    width: 100%;
    min-height: 100vh;
    display: block;
    float: left;
    clear: none;
    background: rgb(241, 236, 230);
    background: linear-gradient(
      0deg,
      rgba(241, 236, 230, 0) 0%,
      rgba(232, 200, 153, 0.35) 100%
    );
  }

  .makeadifference2 {
    margin-top: 10%;
    width: 100%;
    min-height: 100vh;
    display: block;
    float: left;
    clear: none;
    background: rgb(241, 236, 230);
    background: linear-gradient(
      0deg,
      rgba(241, 236, 230, 0) 0%,
      rgba(232, 200, 153, 0.35) 100%
    );
  }

  .md-inner {
    width: 50%;
    height: auto;
    float: left;
    clear: none;
    display: block;
    height: auto;
    text-align: center;
    color: #fff;
    margin: 10% 25% 5%;
    color: #000;
  }

  .md-inner2 {
    width: 50%;
    height: auto;
    float: left;
    clear: none;
    display: block;
    height: auto;
    text-align: center;
    color: #fff;
    margin: 25% 25% 5%;
    color: #000;
  }

  .md-inner h1 {
    margin: 0.5em auto;
  }

  .md-inner h4 {
    line-height: 1.2em;
    font-family: "GeneralSans";
    letter-spacing: 1px;
  }

  .md-inner i {
    font-size: 5em;
    color: #e8c899;
  }

  .md-inner2 h1 {
    margin: 0.5em auto;
  }

  .md-inner2 h4 {
    line-height: 1.2em;
    font-family: "GeneralSans";
    letter-spacing: 1px;
  }

  .md-inner2 i {
    font-size: 5em;
    color: #e8c899;
  }

  .twoside-section {
    width: 85%;
    height: auto;
    display: block;
    float: left;
    clear: none;
    border-radius: 1em;
    margin: 5vh 7.5%;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    border-radius: 1em;
    border: solid 0 #e8c899;
    border-top-width: 1px;
  }

  .ts-inner {
    margin: 2em;
    width: calc(100% - 4em);
    height: calc(100% - 4em);
    display: block;
    float: left;
    clear: none;
  }

  .ts-text {
    float: left;
    clear: none;
    display: block;
    height: 90%;
    width: 40%;
    margin: 5%;
  }

  .ts-text h3 {
    margin: auto auto 0.5em auto;
  }

  .ts-text p {
    margin: auto auto 1em auto;
  }

  .ts-image {
    float: left;
    clear: none;
    display: block;
    width: 50%;
    height: 50vh;
    background-size: cover;
    background-position: top center;
    border-radius: 1em;
  }
}

/* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
}
/* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 2400px) {
}

.center-button {
  width: 100%;
  margin-top: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}
