@import url(https://fonts.googleapis.com/css2?family=Kanit&display=swap);
.hero {
  height: 100vh;
  background: url("../images/hero-03.png") no-repeat bottom center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10vw;
  color: #ffffff;
}
.hero h1 {
  position: relative;
  font-size: 3rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.397);
  padding: 2rem;
  border-radius: 20px 0;
}
.hero h1::before, .hero h1::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
}
.hero h1::before {
  left: 0;
  border-bottom: 6px solid #000;
}
.hero h1::after {
  right: 0;
  border-top: 6px solid #000;
}
.hero .inner {
  justify-content: center;
  align-items: center;
}

.topic {
  max-height: 20vh;
  bottom: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}
.topic h1 {
  position: relative;
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  padding-top: 6rem;
}
@media screen and (max-width: 768px) {
  .topic h1 {
    font-size: 2rem;
  }
}

.main-header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  width: 100vw;
  padding: 0 5vw;
  background: black;
  z-index: 1;
  transition: 0.4s ease-out;
  margin-top: 0;
}
.main-header .logo-image {
  max-width: 150px;
}
.main-header .donate-join {
  width: 500px;
  top: 0;
  height: 75px;
}
.main-header a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
}
.main-header .nav-links {
  display: flex;
  list-style: none;
}
.main-header .nav-links .nav-link {
  transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.main-header .nav-links .nav-link:nth-last-of-type(2) {
  transition-delay: 0.1s;
}
.main-header .nav-links .nav-link:nth-last-of-type(3) {
  transition-delay: 0.2s;
}
.main-header .nav-links .nav-link:nth-last-of-type(4) {
  transition-delay: 0.3s;
}
.main-header .nav-links .nav-link:nth-last-of-type(5) {
  transition-delay: 0.4s;
}
.main-header .nav-links .nav-link a {
  margin: 0.2rem;
  padding: 1rem 0.5rem;
}
.main-header .nav-links .nav-link a:hover {
  background: #fce77d;
  color: #F96167;
  border-radius: 15px;
}
.main-header .nav-links .nav-link a.active {
  background-color: #fce77d;
  color: #F96167;
  border-radius: 15px;
}
.main-header .menu-icon {
  position: relative;
  padding: 26px 10px;
  cursor: pointer;
  z-index: 1;
  display: none;
}
.main-header .menu-icon__line {
  display: block;
  position: relative;
  background: #000;
  height: 2px;
  width: 20px;
  border-radius: 4px;
  transition: background 0.8s ease;
}
.main-header .menu-icon__line::before, .main-header .menu-icon__line::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: #000;
  transition: background 0.8s ease;
}
.main-header .menu-icon__line::before {
  transform: translateY(-5px);
}
.main-header .menu-icon__line::after {
  transform: translateY(5px);
}
.main-header .menu-btn {
  display: none;
}
.main-header.scrolled {
  height: 50px;
  background: #000;
  color: #fff;
}
.main-header.scrolled .menu-icon__line, .main-header.scrolled .menu-icon__line::before, .main-header.scrolled .menu-icon__line::after {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .main-header .menu-icon {
    display: block;
  }
  .main-header .menu-icon__line {
    animation: closedMid 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::before {
    animation: closedTop 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::after {
    animation: closedBtm 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10rem 0;
    width: 100vw;
    height: 100vh;
    font-size: 2rem;
    color: #fff;
    background: #F96167;
    transition: opacity 0.8s 0.5s, -webkit-clip-path 1s 0.5s;
    transition: opacity 0.8s 0.5s, clip-path 1s 0.5s;
    transition: opacity 0.8s 0.5s, clip-path 1s 0.5s, -webkit-clip-path 1s 0.5s;
    -webkit-clip-path: circle(150px at top right);
            clip-path: circle(150px at top right);
  }
  .main-header .nav-links .nav-link {
    opacity: 0;
    transform: translateX(100%);
    width: 100%;
    text-align: center;
  }
  .main-header .nav-links .nav-link a {
    display: block;
    padding: 2rem 0;
  }
  .main-header .menu-btn:checked ~ .nav-links {
    opacity: 1;
    -webkit-clip-path: circle(100% at center);
            clip-path: circle(100% at center);
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(1) {
    transition-delay: 0.7s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(2) {
    transition-delay: 0.8s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(3) {
    transition-delay: 0.9s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(4) {
    transition-delay: 1s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(5) {
    transition-delay: 1.1s;
  }
  .main-header .menu-btn:checked ~ .menu-icon {
    border-radius: 50%;
    animation: pulse 1s;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line {
    background: #fff;
    animation: openMid 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::before {
    background: #fff;
    animation: openTop 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::after {
    background: #fff;
    animation: openBtm 0.8s forwards;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
@keyframes pulse {
  from {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
    background: color(primary);
  }
}
@keyframes openTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes openMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes openBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes closedTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes closedMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes closedBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
.green-button-top {
  position: absolute;
  bottom: 30%;
  background-color: #F96167;
  color: #ffffff;
  min-width: 100px;
  min-height: 45px;
  border-radius: 25px;
  border-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-family: "Kanit", sans-serif;
  font-size: large;
  text-decoration: none;
  cursor: pointer;
  margin: auto;
  line-height: 1.25rem;
  padding: 0px;
  box-sizing: content-box;
  vertical-align: middle;
  display: inline-block;
}

.green-button-top:hover {
  color: #F96167;
  text-decoration: none;
  background-color: #fce77d;
}

.donate-button-top {
  position: absolute;
  background-color: color(accent);
  color: color(primary-light);
  border-radius: 30px;
  border-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-family: "Kanit", sans-serif;
  font-size: large;
  margin: 1rem 0;
  padding: 1rem 3rem;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  background-color: #F96167;
  color: #ffffff;
  box-sizing: content-box;
  display: inline-block;
}

.donate-button-top:hover {
  color: #F96167;
  text-decoration: none;
  background-color: #fce77d;
}

@media (max-width: 768px) {
  .donate-button-top {
    max-width: 80px;
    max-height: 15px;
    display: block;
    margin: 0.4em auto;
    font-size: 1em;
  }
}
.join-button-top {
  position: absolute;
  background-color: color(accent2);
  color: color(primary-light);
  min-width: 100px;
  min-height: 30px;
  border-radius: 25px;
  border-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-family: "Kanit", sans-serif;
  font-size: large;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
}

.join-button-top:hover {
  color: color(primary-dark);
  text-decoration: none;
  background-color: color(accent);
}

.content-button {
  position: absolute;
  background-color: color(accent);
  color: color(primary-light);
  border-radius: 30px;
  border-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-family: "Kanit", sans-serif;
  font-size: medium;
  margin: 1rem 0;
  padding: 1rem 3rem;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  background-color: #F96167;
  color: #ffffff;
  box-sizing: content-box;
  display: inline-block;
}
@media (max-width: 768px) {
  .content-button {
    max-height: 15px;
    display: block;
    margin: 0.4em auto;
    font-size: small;
  }
}

.content-button:hover {
  color: #F96167;
  text-decoration: none;
  background-color: #fce77d;
}

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

.container {
  max-width: 90rem;
  background-color: black;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  background-color: black;
  padding: 70px 0;
}

.footer-col {
  width: 14%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #fce77d;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/*RESPONSIVE*/
@media (max-width: 887px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
.holdingcontainer {
  display: flex;
  padding: 50px;
  box-sizing: border-box;
  flex-direction: row;
}
.holdingcontainer h2 {
  font-size: 1.8rem;
  color: color(primary-dark);
}

.midcontainer {
  max-width: 1170px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}

.internalcontainerL {
  flex: 1;
  padding: 30px;
  font-size: 12px;
  font-family: "Kanit", sans-serif;
  text-align: center;
}

.internalcontainerM {
  flex: 1;
  padding: 30px;
  font-size: 12px;
  font-family: "Kanit", sans-serif;
  text-align: center;
}

.internalcontainerR {
  flex: 1;
  padding: 30px;
  font-size: 12px;
  font-family: "Kanit", sans-serif;
  text-align: center;
}

.internalcontainerS {
  flex: 1;
  padding: 30px;
  font-size: 12px;
  font-family: "Kanit", sans-serif;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .holdingcontainer {
    flex-direction: column;
  }
}
.content {
  background-color: none;
}

.myphoto {
  float: left;
  margin-right: 3rem;
}

@media screen and (max-width: 768px) {
  .content {
    flex-direction: column;
  }
}
figurecaption {
  background-color: black;
  color: white;
  font-style: italic;
  padding: 2px;
  text-align: left;
  flex-direction: column;
  float: left;
  display: block;
}

.grid-outer {
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: rem;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 15px;
  padding-top: 3vw;
}

.grid-inner {
  display: grid;
  gap: 0.3rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  border-radius: 15px;
}

.card {
  aspect-ratio: 1/1.4;
  background-color: #24262b;
  border-radius: 15px;
  text-decoration: none;
}

.card__content {
  background: #24262b;
  align-self: self-end;
  margin: 0.5rem 0.5rem 0.5rem;
  padding: 0.5rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 15px;
  color: white;
  cursor: pointer;
  text-decoration: none;
}

.card__content:hover {
  color: #F96167;
  text-decoration: none;
}

.card__title {
  font-size: 1.5rem;
  line-height: 1.1;
  text-decoration: none;
}

a:link {
  text-decoration: none;
  color: white;
}

a {
  color: white;
}

a:hover {
  color: #F96167;
  text-decoration: none;
}

.card__price {
  font-size: 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-decoration: none;
}

.card__description {
  font-size: 0.8rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-decoration: none;
}

.card__img {
  width: 100%;
  aspect-ratio: 1/1.25;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0px 0px;
}

@media (min-width: 60em) {
  .card__img {
    aspect-ratio: 1/1;
  }
  .card.featured {
    grid-row: span 2;
    grid-column: span 2;
    text-decoration: none;
  }
  .card.featured .card__img {
    aspect-ratio: 1/1.25;
    text-decoration: none;
  }
  .card.featured .card__title {
    aspect-ratio: 1/1.25rem;
    text-decoration: none;
  }
  .stacked {
    display: grid;
    text-decoration: none;
  }
  .stacked > * {
    grid-column: 1/2;
    grid-row: 1/2;
    text-decoration: none;
  }
  .stacked graphic {
    display: grid;
    text-decoration: none;
  }
  .stacked graphic > * {
    grid-column: 1/1.2;
    grid-row: 1/1.2;
    text-decoration: none;
  }
}
.row-new {
  max-width: 100rem;
  margin-inline: auto;
  padding-inline: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  overflow-x: hidden;
  padding: 1.5rem 0;
}

@media (max-width: 991px) {
  .row-new {
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
  .row-new .contentWrapper {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .row-new {
    width: 90%;
  }
  .row-new .contentWrapper h2 {
    font-size: 30px;
    padding-bottom: 20px;
  }
  .row-new .contentWrapper p {
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .row-new .contentWrapper span.textWrapper {
    font-size: 18px;
  }
  .row-new .contentWrapper span.textWrapper .row-new .contentWrapper h2 {
    font-size: 25px;
  }
  .row-new .contentWrapper span.textWrapper .row-new .contentWrapper p {
    font-size: 15px;
    line-height: 22px;
  }
  .row-new .contentWrapper span.textWrapper .row-new .contentWrapper a {
    font-size: 15px;
    padding: 10px 20px;
  }
}
.row-new .imgWrapper {
  overflow: hidden;
}

.row-new .imgWrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}

.row-new .imgWrapper:hover img {
  transform: scale(1.25);
}

.row-new .imgWrapper2 {
  overflow: hidden;
}

.row-new .imgWrapper2 img {
  width: 100%;
  max-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}

.row-new .imgWrapper2:hover img {
  transform: scale(1.1);
}

.row-new .contentWrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
}

.row-new .contentWrapper span.textWrapper {
  display: block;
  font-size: 18px;
  text-transform: capitalize;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  margin-bottom: 20px;
}

.row-new .contentWrapper span.textWrapper span {
  display: inline-block;
  background: #F96167;
  width: -moz-fit-content;
  width: fit-content;
  height: 5px;
}

.row-new .contentWrapper h2 {
  font-size: 40px;
  font-weight: 700;
  color: black;
  padding-bottom: 20px;
  padding-top: 20px;
}

.row-new .contentWrapper p {
  font-size: 16px;
  line-height: 25px;
  padding-bottom: 25px;
}

.row-new .contentWrapper a {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
}

.content-new {
  align-self: flex-start;
}

form input,
form textarea,
form label {
  display: block;
  margin: 0 auto;
  width: 100%;
}
form input,
form textarea {
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #828282;
  font-size: 18px;
  padding: 10px;
}
form input:focus,
form textarea:focus {
  outline: 1px solid #828282;
}
form input[type=submit] {
  background-color: color(accent);
  color: color(primary-light);
  font-family: "Kanit", sans-serif;
  font-size: large;
  background-color: #F96167;
  color: #ffffff;
  padding: 15px 0;
  border-bottom: none;
  margin-top: 30px;
  cursor: pointer;
}
form input[type=submit]:hover {
  background: #828282;
  color: black;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Kanit", sans-serif;
  align-items: center;
  place-items: center;
}
body .text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.main {
  display: flex;
  place-items: center;
}

.container {
  width: 80%;
  margin: 2rem auto;
}
.container .text {
  font-family: "Kanit, sans-serif";
  margin: 1rem 0;
}

p {
  font-family: "Kanit, sans-serif";
  margin: 1rem 0;
}

.content {
  padding-top: 10rem;
  width: 100vw;
  padding: 0 5vw;
  display: grid;
  margin: 2rem auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}/*# sourceMappingURL=main.css.map */