/* GENERAL */
:root {
  --main-bg-color: #fdfdfd;
  --main-theme-color: #2a385d;
  --main-theme-color-transparent: rgba(42, 56, 93, 0.9);
  --secondary-theme-color: #fc9f0a;
  --light-txt-color: #fdfdfd;
  --dark-txt-color: #2a385d;
  --link-txt-color: #00628b;
  --gray-txt-color: #3e3f42;
  --padding-main: 50px 10%;
  --padding-1024px: 50px;
  --padding-768px: 35px;
  --padding-450px: 20px;

  --secondary-font-family: "Raleway", sans-serif;
  --title-size: 1.6em;
  --subtitle-size: 1.4em;
  --small-text-size: 0.8em;
  --mobile-title-size: 1.25em;
  --mobile-subtitle-size: 1.13em;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1.2em;

  /* background-color: var(--main-bg-color); */
  color: var(--gray-txt-color);
  position: relative;
}

body::after {
  content: "";
  background: url("../img/romanian-flag.jpg") no-repeat center/cover;
  background-attachment: fixed;
  opacity: 0.15;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-txt-color);
}

a {
  text-decoration: none;
  color: var(--link-txt-color);
  font-weight: bold;
}

ul {
  list-style: none;
}

.align-left {
  text-align: left !important;
}

.circle-list {
  list-style: circle;
  padding-left: 2em;
}

.disc-list {
  list-style: disc;
}

button {
  outline: none;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  padding: 0 35px;
  justify-content: space-between;
  align-items: center;
  font-size: var(--small-text-size);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.85);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.85);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.85);
  transition: all 0.5s ease-in-out;
}

.page-header {
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.index-header {
  background: linear-gradient(
      rgba(42, 56, 93, 0.8) 0%,
      rgba(42, 56, 93, 0.8) 100%
    ),
    url("../img/page-title-background.jpg") no-repeat center center/cover;
  background-position-y: 30%;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.85);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.85);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.85);
}

#logo {
  display: flex;
  align-items: center;
}

#logo img {
  width: 45px;
}

#logo-link {
  opacity: 1;
  color: var(--light-txt-color);
}

#logo h1 {
  font-size: 1.3em;
  margin-left: 15px;
  color: var(--light-txt-color);
}

.header-menu {
  width: 60%;
}

.menu-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-divider {
  width: 80%;
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
  height: 1px;
  margin: auto;
}

.header-links {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-around;
  align-items: center;
}

.header-links a {
  color: var(--light-txt-color);
  font-weight: 400;
  padding: 4vh 0;
}

.current-page {
  color: var(--secondary-theme-color) !important;
  font-weight: 600 !important;
}
/* Dropdown submenu */
.expand {
  display: inline-block;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  margin-left: 5px;
}

.expand-right {
  display: inline-block;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  margin-left: 5px;
}

.dropdown {
  position: relative;
  line-height: calc(8vh + 5px);
  text-align: center;
}

.dropdown-list {
  position: absolute;
  left: -40%;
  background-color: var(--main-theme-color-transparent);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  transform: translateY(20px);
  color: var(--light-txt-color);
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.85);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.85);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.85);
}

.dropdown-list .up-triangle {
  border: 20px solid;
  width: 10px;
  border-color: transparent transparent var(--main-theme-color-transparent)
    transparent;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-list li {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropdown-list li a {
  padding: 0 50px;
}

.dropdown a:hover + .dropdown-list,
.dropdown-list:hover {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
}

.submenu-container {
  position: relative;
  cursor: pointer;
}

.submenu {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(110%);
  background-color: var(--main-theme-color-transparent);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0%;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.85);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.85);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.85);
}

.submenu a {
  display: block;
}

.submenu .left-triangle {
  position: absolute;
  top: 20px;
  left: 0;
  border: 20px solid;
  width: 10px;
  border-color: transparent var(--main-theme-color-transparent) transparent
    transparent;
  transform: translateX(-100%);
}

.submenu.show-sumenu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(100%);
}

/* Hamburger */
#hamburger {
  display: none;
  transition: all 0.7s ease-in-out;
}

#hamburger div {
  pointer-events: none;
  width: 20px;
  height: 3px;
  margin: 4px;
  background-color: var(--light-txt-color);
  transition: all 0.9s ease;
}

.toggle-burger .line1 {
  transform: rotate(-135deg) translate(-5px, 6px);
  position: relative;
  top: 2px;
}

.toggle-burger .line2 {
  opacity: 0;
}

.toggle-burger .line3 {
  transform: rotate(135deg) translate(-5px, -6px);
  position: relative;
  bottom: 1px;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: var(--padding-main);
  min-height: calc(74vh - 268px);
}

.donate-banner {
  background-color: white;
  position: fixed;
  padding: 5px;
  top: 90px;
  left: 0;
  z-index: 1;
  width: 100%;
  text-align: center;
}

/* Footer */
footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: var(--padding-main);
  font-size: 0.8em;
  font-weight: normal;
  background-color: var(--main-theme-color-transparent);
  color: #d0d5e2;
}

.footer-section {
  flex: 1;
  padding: 0.5em;
}

footer h3 {
  color: var(--light-txt-color);
  padding-bottom: 1em;
}

footer ul li {
  padding-bottom: 0.7em;
}

footer a {
  color: #d0d5e2;
  font-weight: normal;
}

footer a:hover {
  color: var(--secondary-theme-color);
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-contact {
  flex: 2;
}

.footer-contact p {
  padding-bottom: 1em;
}

.footer-contact-icon {
  /* transform: translateY(-10%) !important; */
  clear: both;
}

footer .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright {
  position: absolute;
  bottom: 2em;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.8em;
}

/* Page title */
.page-title {
  /* header height(6vh+18px) + visible section */
  height: calc(6vh + 18px + 150px);
  padding-bottom: 35px;
  background: linear-gradient(
      rgba(0, 0, 0, 0.8) 0%,
      rgba(42, 56, 93, 0.8) 30%,
      rgba(255, 255, 255, 0) 50%
    ),
    url("../img/page-title-background.jpg") no-repeat center center/cover;
  background-position-y: 30%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: white;
}

.page-title-h2 {
  font-family: var(--secondary-font-family);
  font-size: var(--title-size);
  width: 100%;
  text-align: center;
  padding: 60px 20px;
  color: var(--dark-txt-color);
}

.to-top-arrow {
  position: fixed;
  display: flex;
  justify-content: center;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  padding: 5px 10px;
  border-radius: 3px;
  background-color: var(--secondary-theme-color);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s;
}

.to-top-arrow img {
  width: 25px;
}

/*================= HOME PAGE===================== */
.home-main-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.slider {
  position: relative;
  height: 100vh;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.slide.current {
  opacity: 1;
}

.slide .content {
  position: absolute;
  bottom: 70px;
  left: 30px;
  opacity: 0;
  width: 600px;
  background-color: var(--main-theme-color-transparent);
  color: var(--light-txt-color);
  font-size: var(--small-text-size);
  padding: 35px;
  z-index: 1;
}

.slide.current .content {
  opacity: 1;
  transform: translateX(30px);
  transition: all 0.7s ease-in-out 0.3s;
}
.slide .content h2 {
  font-family: var(--secondary-font-family);
  color: var(--secondary-theme-color);
  /* font-weight: 400; */
  margin-bottom: 10px;
}

.slide .content p {
  color: var(--light-txt-color);
  font-weight: normal;
}

.next,
.prev {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 50%;
  opacity: 0.7;
  padding: 10px;
  transition: opacity 0.1s ease-in-out;
  cursor: pointer;
  background-color: var(--main-theme-color);
  border-radius: 50%;
}

.next img,
.prev img {
  width: 20px;
  transform: translateX(2px);
}

.next:hover,
.prev:hover {
  opacity: 0.8;
}

.next {
  right: 25px;
}

.prev {
  left: 25px;
  transform: rotate(180deg);
}
#scrollDown {
  position: fixed;
  right: 50%;
  bottom: 35px;
  cursor: pointer;
  border-radius: 15px;
  opacity: 0;
  pointer-events: none;

  transition: opacity 0.3s;
}

#wheel {
  animation: scroll ease 2s infinite;
}

/* Background images */
.slide:first-child {
  background: url("../img/medalie_fata_verso.png") no-repeat center/contain;
}
.slide:nth-child(2) {
  background: url("../img/landing-page1.jpg") no-repeat center/cover;
  background-position-y: 70%;
}
.slide:nth-child(3) {
  background: url("../img/landing-page2.jpg") no-repeat center/cover;
  background-position-y: 30%;
}
.slide:nth-child(4) {
  background: url("../img/landing-page3.jpg") no-repeat center/cover;
  background-position-y: 35%;
}
.slide:nth-child(5) {
  background: url("../img/landing-page4.jpg") no-repeat center/cover;
  background-position-y: 40%;
}

/* home section */
.home-page-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--padding-main);
}

.home-page-section h1 {
  font-family: var(--secondary-font-family);
  font-size: var(--title-size);
  width: 100%;
  text-align: center;
  padding: 60px 20px;
  color: var(--dark-txt-color);
}

.home-page-section img {
  width: 130px;
  margin: 0px auto;
}

.home-page-section p {
  margin-bottom: 25px;
  text-align: justify;
}

.home-page-section p:last-child {
  margin-bottom: 0;
}
/* ========================EVENTS PAGE======================== */
.event {
  display: flex;
  justify-content: center;
  align-items: center;
}

.event-description {
  text-align: center;
  text-align-last: center;
  padding: 0 30px;
}

.event-description:last-child {
  padding-bottom: 0 !important;
}

.event h3 {
  font-family: var(--secondary-font-family);
  font-size: var(--subtitle-size);
  font-weight: 400;
  text-align: center;
}

.event p {
  padding-top: 2.5em;
}

.event-description ul,
.event-description ol,
.gallery-details ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event-description ul,
.gallery-details ul {
  list-style: disc;
}

.event img {
  width: 25% !important;
  max-height: 225px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s;
}

.event img:hover {
  transform: scale(1.05);
}

.separator {
  height: 1px;
  width: 70%;
  margin: 35px auto;
  background-color: rgba(42, 56, 93, 0.4);
}

.separator:last-child {
  display: none;
}

/* ==================== FOTO-ALBUMS-PAGE ================== */
.gallery-main-section {
  width: 100%;
}

.double-row {
  padding-bottom: 15px;
}

.photo-albums-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  width: 100%;
}

.foto-album {
  display: inline-block;
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.album-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: var(--small-text-size);
  color: var(--light-txt-color);
  text-align: center;
  padding: 0 1em;
  background-color: var(--main-theme-color-transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.foto-album:hover .album-description,
.album-description:hover {
  transform: translateY(0);
}

.album-thumbnails-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 120px;
}

.album-thumbnails-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================PHOTO GALLERY PAGE======================= */
.photo-gallery-main {
  display: none;
}

.gallery-page-title {
  font-family: var(--secondary-font-family);
  font-size: var(--subtitle-size);
  padding-bottom: 20px;
}

.gallery-description {
  text-align: justify;
  text-align-last: center;
}

.gallery-about ul {
  text-align: center;
}
.photo-gallery {
  text-align: center;
  justify-content: center;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 2fr));
  width: 100%;
}

.gallery-about {
  text-align: justify;
  font-size: 0.9em;
  padding-top: 2em;
}

.gallery-about p {
  padding-top: 1rem;
}

.gallery-details {
  padding: 30px 10% 0px;
  text-align: center;
}

.photo-gallery-item {
  height: 200px;
  overflow: hidden;
}

.gallery-pic {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}
.photo-gallery-item:hover .gallery-pic {
  transform: scale(1.1);
  filter: sepia(100%);
}

/* ==============================VIDEO GALLERY PAGE========================= */

/* searchbox */
#search-video-form {
  position: relative;
  transition: all 1s;
  width: 40px;
  height: 40px;
  background: var(--main-bg-color);
  box-sizing: border-box;
  border-radius: 25px;
  border: 1px solid var(--main-theme-color);
  margin-bottom: 20px;
}

#search-video-form input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 30px;
  outline: 0;
  border: 0;
  display: none;
  font-size: 0.7em;
  border-radius: 25px;
  padding: 0 20px;
}

#search-video-form .fa {
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 2px;
  right: 2px;
  border-radius: 50%;
  color: var(--main-theme-color);
  background-color: var(--main-bg-color);
  text-align: center;
  font-size: 0.8em;
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-items: center;
}

#search-video-form:hover {
  width: 200px;
}

#search-video-form:hover input {
  display: block;
}

#search-video-form:hover .fa {
  background: var(--main-theme-color);
  color: var(--main-bg-color);
}

/* search tags */
.search-tags {
  max-width: 100%;
  min-height: 4em;
  font-size: 0.7em;
  text-align: center;
}

.search-tag {
  margin: 0 1em;
  cursor: pointer;
  transition: all 0.3s;
}

.search-tag:hover {
  text-decoration: underline;
  text-shadow: 0px 5px 3px rgba(0, 0, 0, 0.35);
}

.video-albums-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 220px;
  justify-content: center;
  align-content: center;
  grid-gap: 150px 20px;
  width: 100%;
  padding-bottom: 100px;
  color: var(--light-txt-color);
}

.video-albums-container .gallery-pic {
  cursor: default;
  text-shadow: 1px 1px 2px var(--dark-txt-color);
}

.video-title {
  color: var(--dark-txt-color);
  padding: 7px 0;
  font-size: 0.9em;
}

.video-description {
  color: var(--gray-txt-color);
  font-size: 0.7em;
  text-align: justify;
}

.playVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: var(--main-theme-color-transparent);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}

.gallery-pic:hover .playVideo,
.playVideo:hover {
  opacity: 1;
  pointer-events: all;
}

#video-gallery-modal .close {
  color: var(--light-txt-color);
}

.current-video-container {
  width: 60%;
  max-height: 100vh;
}

.current-video-div {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

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

/* Gallery modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100vw;
  height: 100vh;
  background-color: var(--main-theme-color-transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
  cursor: pointer;
}

.close {
  position: fixed;
  top: 30px;
  right: 30px;
  color: var(--light-txt-color);
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bolder;
  padding: 25px;
}

.close:hover {
  opacity: 0.7;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in 1 forwards;
}

.current-foto-link:hover {
  opacity: 1;
  cursor: zoom-in;
}

.current-foto-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 125px);
  margin-bottom: 125px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.current-foto {
  max-height: 90%;
  max-width: 90%;
  text-align: center;
}

.current-foto a img {
  max-height: calc(100vh - 175px);
  max-width: 90vw;
  object-fit: contain;
}

.foto-description-p {
  color: var(--light-txt-color);
}

.foto-description-p a {
  color: var(--secondary-theme-color);
  font-weight: normal;
}

.gallery-slider-container {
  display: flex;
  position: fixed;
  bottom: 0;
  height: 75px;
  max-width: 85%;
  margin: 20px 0;
  border-radius: 100px;
  overflow: hidden;
}

.gallery-slider {
  display: flex;
  height: 100%;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.modal-slider-pic {
  height: 100%;
  width: 75px;
  object-fit: cover;
  filter: sepia(1);
  transition: all 0.2s ease-in-out;
  border-radius: 50%;
  margin: 0 3px;
}

.modal-slider-pic:hover {
  filter: sepia(0);
}

.modal-slider-pic::selection {
  background-color: transparent;
}

#slide-left,
#slide-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  height: 100%;
  padding: 7px;
  color: var(--light-txt-color);
  cursor: pointer;
  background-color: var(--secondary-theme-color);
}

#slide-left::selection,
#slide-right::selection {
  background-color: transparent;
}

.prev-modal::selection,
.next-modal::selection {
  background-color: transparent;
}

#slide-left {
  left: 0;
}

#slide-right {
  right: 0;
}

.prev-modal,
.next-modal {
  width: 20px;
}

.prev-modal {
  transform: rotate(180deg);
}

.current-slide-thumbnail {
  filter: sepia(0);
  border: 2px solid var(--secondary-theme-color);
}

/* ========================= EBOOKS PAGE ==================== */
.ebook {
  display: flex;
  text-align: justify;
  margin-bottom: 7em;
}

.ebook:last-child {
  margin-bottom: 0;
}

.ebook-cover {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 8em;
  height: inherit;
  margin-right: 2em;
}

.ebook-poster {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  cursor: pointer;
}

.ebook .ebook-download-btn {
  display: flex;
  background-color: var(--main-theme-color);
  color: var(--secondary-theme-color);
  font-size: 0.8em;
  font-weight: 100;
  padding: 0.4em 2em;
  margin-top: 1em;
  transition: all 0.3s;
}

.ebook-download-btn:hover {
  background-color: var(--secondary-theme-color);
  color: var(--main-theme-color);
}

.ebook .ebook-download-btn i {
  margin-right: 0.5em;
}

.ebook h3 {
  font-size: var(--subtitle-size);
  font-family: var(--secondary-font-family);
  font-weight: 400;
  padding-bottom: 5px;
}

.ebook-date {
  padding-bottom: 30px;
}

.ebook-about {
  text-indent: 2em;
}

.gray-text {
  color: #666;
}

/* ===================CONTACT PAGE====================== */
.contact-main-section {
  position: relative;
  display: flex;
  text-align: center;
  font-size: var(--small-text-size);
  justify-content: space-between;
  align-items: space-between;
  width: 100%;
}

.contact-section {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section div {
  text-align: center;
  padding-bottom: 25px;
}

.contact-section div:last-child {
  padding-bottom: 0;
}

.contact-icon {
  width: 25px;
  transform: translateY(20%);
}

.contact-section a {
  font-weight: normal;
}

.social-media a {
  color: var(--dark-txt-color);
}

.social-media a svg {
  height: 2em;
  margin: 10px;
}

.contact-form {
  width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  background-color: rgba(42, 56, 93, 0.15);
  padding: 30px;
}

.contact-form h2 {
  padding-bottom: 30px;
  text-align: center;
}

.contact-section input,
.contact-section textarea,
.donater-details input {
  width: 100%;
  background-color: transparent;
  color: var(--gray-txt-color);
  font-size: 1em;
  border: none;
  outline: none;
  border-bottom: 1px solid var(--secondary-theme-color);
  padding: 10px;
  transition: border-bottom 0.3s ease-in-out;
}

#messageInput {
  font-size: 1.2em;
}

.contact-section textarea:focus,
.contact-section input:focus,
.donater-details input:focus {
  border-bottom: 1px solid var(--main-theme-color-transparent);
}

.form-checkbox {
  width: 100%;
  margin-bottom: 0.6em;
}

.methods_div {
  padding-top: 60px;
}

.methods_div h3 {
  padding-bottom: 20px;
}

.methods_div p {
  margin-top: 20px;
}

.methods_div p:first-child {
  margin-top: 0;
}

.contact-section button,
.form230-btn {
  padding: 10px;
  min-width: 200px;
  margin: 0 10px;
  background-color: var(--main-theme-color);
  color: var(--secondary-theme-color);
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}

.contact-section button:hover,
.form230-btn:hover {
  background-color: var(--secondary-theme-color);
  color: var(--dark-txt-color);
}

.donation-section {
  width: 100%;
  padding-top: 100px;
  text-align: center;
  font-size: var(--small-text-size);
}

.donation-methods {
  display: flex;
  padding-bottom: 0px;
  justify-content: space-evenly;
}

.donation-methods div {
  background-color: var(--main-theme-color);
  color: var(--secondary-theme-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 100px;
}

.donation-methods div:hover {
  background-color: var(--secondary-theme-color);
  color: var(--main-theme-color);
}

.bank-transfer {
  display: none;
  flex-direction: column;
}

.donation-methods div.current-method {
  background-color: var(--secondary-theme-color);
  color: var(--main-theme-color);
}

.privacy-policy {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
}

.privacy-policy input {
  margin-right: 5px;
  transform: translateY(35%);
  width: auto !important;
}

.privacy-policy p {
  margin-top: 0;
}

.privacy-policy span {
  color: var(--secondary-theme-color);
  font-weight: 550;
  cursor: pointer;
}

.two-percent {
  display: none;
  flex-direction: column;
}

.form230 {
  color: var(--link-txt-color);
  font-weight: 550;
  cursor: pointer;
}

.two-percent a:hover {
  opacity: 1;
}

.form230-btn {
  border-radius: 100px;
  margin-top: 50px;
  outline: none;
}

.documents-section {
  padding-top: 100px;
  text-align: center;
  width: 100%;
  font-size: var(--small-text-size);
}

.documents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-gap: 30px;
}

.documents-section .documents img {
  width: 120px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  margin-bottom: 1em;
  transition: all 0.3s;
}

.documents-section .documents img:hover {
  transform: scale(1.1);
}

.documents-section a {
  color: var(--dark-txt-color);
}

/*========================Privacy Policy Page=======================  */

.privacy-policy-section {
  text-align: left;
}

.privacy-policy-section h3 {
  width: 100%;
  text-align: left;
  padding: 40px 0 10px;
}

.privacy-policy-section p,
.privacy-policy-section ol li {
  max-width: 100%;
  text-align: justify;
  padding-bottom: 5px;
}

.privacy-policy-section ol {
  align-self: flex-start;
  padding-left: 50px;
}

/* GLOBAL AFTER */

.show {
  opacity: 1 !important;
  pointer-events: all !important;
}

.hide {
  opacity: 0 !important;
  pointer-events: none !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-padding-top {
  padding-top: 0;
}

.padding-top-50 {
  padding-top: 50px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .donate-banner {
    top: 80px;
  }
  main {
    padding: var(--padding-1024px);
  }

  .home-page-section {
    padding: var(--padding-1024px);
  }

  .home-page-section img {
    width: 100px;
  }

  .home-page-section p {
    margin-bottom: 20px;
  }

  footer {
    padding: var(--padding-1024px);
  }

  /* foto albums page */
  .photo-albums-container {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 35px;
  }

  .album-description {
    color: var(--dark-txt-color);
    background-color: transparent;
    position: relative;
    transform: translateY(0%);
  }

  /*foto gallery page */
  .photo-gallery {
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .gallery-slider-container {
    max-width: 98%;
    height: 70px;
  }
  .gallery-slider {
    overflow-x: auto;
  }

  /* foto gallery modal */

  .current-foto-container {
    height: calc(100vh - 155px);
  }

  .gallery-slider-container {
    margin: 20px 0 50px;
  }
  /* video gallery page */
  .current-video-container {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .donate-banner {
    font-size: 10px;
  }
  header {
    min-height: 10vh;
  }

  .menu-border {
    border-bottom: none;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-list {
    width: 90%;
    left: 5%;
    background-color: var(--main-theme-color);
  }

  .dropdown-list .up-triangle {
    border-color: transparent transparent var(--main-theme-color) transparent;
  }

  .submenu-container {
    flex-direction: column;
  }

  .submenu {
    position: unset;
    transform: translateX(0);
    height: 0;
    width: 90%;
    background: white;
    border-radius: 5px;
  }

  .submenu a {
    color: var(--main-theme-color);
    font-weight: 600;
  }

  .submenu .nav-divider {
    background-color: var(--main-theme-color);
  }

  .submenu.show-sumenu {
    opacity: 1;
    height: fit-content;
    pointer-events: all;
    transform: translateX(0);
  }

  .submenu .left-triangle {
    border: 20px solid;
    width: 10px;
    border-color: transparent transparent white transparent;
    position: absolute;
    top: -39px;
    left: 50%;
    transform: translateX(-50%);
  }

  .expand-right {
    display: inline-block;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    margin-left: 5px;
  }

  #hamburger {
    display: block;
    z-index: 2;
  }
  .header-menu {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    transform: translateX(100%);
  }

  .show-nav {
    animation: navSlideIn;
  }

  .header-links {
    width: 70%;
    height: 100%;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10vh 0;
    background-color: var(--main-theme-color-transparent);
    background: linear-gradient(
        rgba(42, 56, 93, 0.8) 0%,
        rgba(42, 56, 93, 0.8) 100%
      ),
      url("../img/page-title-background.jpg") no-repeat center center/cover;
    background-position-x: 60%;
  }

  .header-blank {
    width: 30%;
    height: 100%;
  }

  main {
    padding: var(--padding-768px);
  }
  #scrollDown {
    display: none;
  }

  .home-page-section {
    padding: var(--padding-768px);
  }

  .home-page-section img {
    width: 80px;
    margin: 10px auto;
  }

  .home-page-section p {
    margin-bottom: 20px;
  }

  /* events page */
  .event img {
    max-width: 32%;
    max-height: 250px;
  }

  .event-description {
    padding-left: 0;
  }

  /* foto albums page */
  .album-thumbnails-container {
    grid-auto-rows: 80px;
  }

  /* contact page */
  .contact-main-section {
    flex-direction: column;
    align-items: center;
  }
  .contact-section {
    max-width: 100%;
    width: 100%;
    align-items: center;
  }

  .contact-section:first-child {
    padding-bottom: 5em;
  }

  .contact-form {
    padding-top: 70px;
    width: 90%;
  }

  .donation-section,
  .documents-section {
    padding-top: 60px;
  }
}

@media (max-width: 450px) {
  body {
    font-size: 1em;
  }
  main {
    padding: var(--padding-450px);
  }

  .to-top-arrow img {
    width: 15px;
  }

  .page-title-h2 {
    padding: 40px 0 20px;
    font-size: var(--mobile-title-size);
  }

  /* footer */
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5em;
  }

  .footer-section:first-child {
    padding-top: 0;
  }

  footer .social-media {
    flex-direction: row;
    padding-top: 0;
  }

  /* Home page */
  .slide .content {
    left: -30px;
    bottom: 0;
    width: 100%;
  }

  .next,
  .prev {
    top: 40%;
    opacity: 0.7;
  }

  .next {
    right: 10px;
  }

  .prev {
    left: 10px;
  }

  .home-page-section {
    padding: var(--padding-450px);
  }

  .home-page-section h1 {
    font-size: var(--mobile-title-size);
    padding: 10px 0 20px;
  }

  .home-page-section img {
    width: 50px;
  }

  .home-page-section p {
    margin-bottom: 16px;
  }

  /* events page */
  .event {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .event-description {
    padding: 0;
  }

  .event-description h3 {
    font-size: var(--mobile-subtitle-size);
  }

  .event img {
    max-width: 90%;
    margin-top: 20px;
  }

  .separator {
    width: 80%;
    margin: 20px auto;
  }

  /* foto albums page */
  .photo-albums-container {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 50px;
  }

  /* foto gallery page */
  .gallery-details {
    padding: 20px 20px 0;
  }

  .photo-gallery {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    grid-gap: 10px;
  }

  .photo-gallery-item {
    height: 100px;
  }

  /* Gallery modal */
  .current-foto {
    max-height: 100%;
    max-width: 100%;
  }

  .gallery-slider-container {
    max-width: 100%;
  }

  .close {
    top: 15px;
    right: 15px;
  }

  #slide-left,
  #slide-right {
    display: none !important;
  }
  .current-video-container {
    width: 100%;
  }

  .gallery-pic {
    padding-bottom: 150px;
  }

  /* ebooks page */
  .ebook {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
  }

  .ebook-about {
    text-align: justify;
  }

  .ebook-cover {
    width: 50%;
    height: inherit;
    margin: 3em auto;
  }

  .ebook-poster {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    cursor: pointer;
  }

  /* contact page */
  .contact-form {
    width: 100%;
  }

  .donation-methods {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .donation-methods div {
    width: 80%;
    margin: 5px auto;
    padding: 10px 0;
  }

  .donation-methods div:first-child {
    margin-top: 0;
  }

  .methods_div {
    padding-top: 20px;
  }

  .methods_div p {
    text-align: justify;
  }

  .donation-amounts {
    justify-content: space-around;
    padding-bottom: 10px;
  }

  .fixed-amount {
    margin: 0;
  }

  .donater-details-row input {
    min-width: 40%;
  }

  .form230-btn {
    margin-top: 20px;
  }

  /* privacy policy page */
  .privacy-policy-section ol {
    padding-left: 15px;
  }
}

/* ANIMATIONS */
/* navslide in mobile */
@keyframes navSlideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}

@keyframes navSlideOut {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}

/* main page scroll wheel */
@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(60px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Page titles */
@keyframes focus-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    transform: translateZ(-800px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    filter: blur(0);
    opacity: 1;
  }
}

/* fade in */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
