/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  /* font-family: 'Roboto', sans-serif; */
  font-family: "Montserrat", sans-serif;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}
a:hover {
  color: #526a48;
}
#header-nav {
  position: fixed;
  top: 0;
  display: block;
  width: 100%;
  z-index: 999;
  background: #fff;
  -webkit-transition: -webkit-transform 0.7s 0.3s ease;
  -moz-transition: -moz-transform 0.7s 0.3s ease;
  -ms-transition: -ms-transform 0.7s 0.3s ease;
  transition: transform 0.7s 0.3s ease;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
#header-nav.hide-nav-bar {
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
  -webkit-backface-visibility: hidden;
}
a.menu-link {
  float: right;
  display: block;
  padding: 1em;
}
nav[role="navigation"] {
  clear: right;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.js nav[role="navigation"] {
  overflow: hidden;
  max-height: 0;
}
nav[role="navigation"].active {
  max-height: 15em;
}
nav[role="navigation"] ul {
  margin: 0;
  padding: 0;
  float: left;
  padding: 0.7em 0;
}
nav[role="navigation"] li a {
  display: block;
  padding: 0.8em;
  font-size: 0.9em;
}
.menu-link {
  height: 30px;
  width: 57px;
  cursor: pointer;
}
.bar1,
.bar2,
.bar3 {
  margin-top: 3px;
  background: #111;
  width: 33px;
  height: 4px;
  position: absolute;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.bar2 {
  margin-top: 13px;
}
.bar3 {
  margin-top: 23px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.brand {
  float: left;
  margin-left: 1em;
  padding: 1em;
}
.brand h1 {
  margin: 0;
  font-size: 1.5em;
}
@media screen and (min-width: 48.25em) {
  a.menu-link {
    display: none;
  }
  .js nav[role="navigation"] {
    max-height: none;
  }
  nav[role="navigation"] ul {
    margin: 0 0 0 -0.25em;
    border: 0;
    float: right;
  }
  nav[role="navigation"] li {
    display: inline-block;
    margin: 0 0.25em;
  }
  nav[role="navigation"] li a {
    border: 0;
  }
}
.container {
  max-width: 72em;
  margin: 0 auto;
}
.nav_container{
  display: flex;
  justify-content: space-between;
}
section {
  /* margin-top: 4em; */
  padding: 1em;
  color: #111;
}
section hr {
  border-bottom: none;
  color: #f2f2f2;
}
.info {
  text-align: center;
}

.btn {
  font-weight: 300;
  display: block;
  max-width: 200px;
  width: 150px;
  text-align: center;
  margin: 0 auto;
  padding: 5px 10px;
  font-size: 16px;
  background-color: #87a57a;
  border: none;
  outline: none;
  position: relative;
  box-shadow: 0px 6px #526a48;
  top: 0;
  transition: box-shadow 0.2s, top 0.2s linear, color 0.2s;
  color: white;
}
.btn:hover {
  box-shadow: 0px 4px #526a48;
  top: 4px;
  cursor: pointer;
  /*   color:#526a48; */
}
.btn:active {
  box-shadow: none;
  top: 8px;
  color: #232e1f;
}
.main_section {
  position: relative;
  background: url("../assets/main.jpg");
  background-size: cover;
  width: 100%;
  height: 800px;
}
.main_section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #111;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: rgb(41, 41, 41);
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #111;
}
.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #111;
  border: 1px solid #111;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded="true"] {
  color: #111;
}
.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 100%;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}
.donate_wrapper {
  right: -90000px;
  position: fixed;
  top: 0px;
  max-width: 600px;
  width: 100%;
  height: 100vh;

  z-index: 999;
  padding: 60px 20px;
  background-color: #fff;
  overflow-y: scroll;
  transition: 0.4s ease-in-out;
}
.help_div{
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 30px;
}
.item{
  background: #fff;
  padding: auto;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  
}
.item > img{
  max-width: 300px;

  border-radius: 10px;
}
.mono_btn > a{
  background-color: #111;
  color: #fff;
  display: block;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.close_wrapper {
  position: relative;
}
.close_wrapper > button {
  position: absolute;
  top: -10px;
  right: 20px;
}

HTML SCSS Babel Result Skip Results Iframe EDIT ON .slideshow {
  margin-top: calc(50vh - 25vh);
  padding-bottom: 4vw;
}
.slide {
  width: 200px;
  max-resolution: 4vw;
  margin-right: 4vw;
  text-align: center;
  height: 200px;
  background-color: red;
  border-radius: 6px;
  color: #fff;
  font-family: "Helvetica Neue", helvetica, arial;
  font-size: 24px;
  line-height: 50vh;
}
.slide:nth-child(1) {
  background-color: #eaeaea;
}
.slide:nth-child(2) {
  background-color: #eaeaea;
}
.slide:nth-child(3) {
  background-color: #eaeaea;
}
.slide:nth-child(4) {
  background-color: #eaeaea;
}
.slide:nth-child(5) {
  background-color: #eaeaea;
}
.slide:nth-child(6) {
  background-color: #eaeaea;
}
.slide:nth-child(7) {
  background-color: #eaeaea;
}
.slide:nth-child(8) {
  background-color: #eaeaea;
}
.slide:nth-child(9) {
  background-color: #eaeaea;
}
.slide:nth-child(10) {
  background-color: #eaeaea;
}

.form_sect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 20px 0;
}
input {
  width: 100%;
  display: block;
  padding: 10px;
  border: 2px solid #eaeaea;
}
.title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 40px auto;
}
.subtitle {
  font-size: 16px;
  font-weight: 300;
}
.add_info {
  color: #666;
  font-size: 14px;
}
.submit {
  background-color: #526a48;
  color: #fff;
  text-align: center;
}
.donate_form {
  margin: 50px 0;
}
.req_items > p {
  margin: 8px !important;
}
.req_items {
  padding: 20px;
}
.sticky_box {
  position: absolute;
  top: 0px;
  right: 20%;
  padding: 20px;
  background-color: #c4d3d3;
  max-width: 400px;
  z-index: 3;
}
footer {
  background-color: #000;
  padding: 30px;
  color: #fff;
}
.social_links {
  display: flex;
  column-gap: 30px;
  padding-left: 0;
  list-style: none;
}
.ioicon {
  color: #fff;
  font-size: 40px;
}
.footer_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.close_icon {
  font-size: 35px;
  cursor: pointer;
  transition: 0.2s;
}
.close_wrapper > button {
  background-color: transparent;
  border: none;
}
.close_icon:hover {
  color: red;
}
.overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 999;
  transition: 0.5s ease-in-out;
}
.donate_sec {
  padding: 50px 0;
  background-color: #c4d3d3;
}
.req_items > p > b,
.req_items > p > strong {
  font-weight: bold;
}
h1,
.title {
  font-size: 2.5em;
}

.fancy-overlay {
  list-style: none;
  max-width: 100%;
  margin: auto;
  display: none;
}
.fancy-overlay .fancy-image {
  width: 160px;
  margin: 0 10px 10px 0;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  display: inline-block;
  vertical-align: top;
  /* Animaciones */
  opacity: 0;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.fancy-overlay .fancy-image a {
  display: block;
  padding: 4px;
  text-decoration: none;
}
.fancy-overlay .fancy-image a h3 {
  margin: 0;
  color: #423f3f;
  font-family: Arial;
  padding: 4px 0 0;
}
.fancy-overlay .fancy-image a img {
  width: 100%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.overlay .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  height: 80%;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .overlay .overlay-content {
    height: auto;
  }
}
.overlay .overlay-content img {
  width: 50% !important;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 5px;
}
.overlay .overlay-content iframe {
  width: 80%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 5px;
  height: 100%;
}
.overlay .overlay-content h3 {
  color: #fff;
  font-family: Arial;
  margin: 0;
  padding: 4px 0 0;
}
.overlay .overlay-content .close {
  position: absolute;
  right: 0;
  top: -5%;
  color: #fff;
  cursor: pointer;
  display: block;
}
.overlay .overlay-content .prev {
  left: 0;
}
.overlay .overlay-content .next {
  right: 0;
}
.overlay .overlay-content .prev,
.overlay .overlay-content .next {
  position: absolute;
  color: #fff;
  font-size: 30px;
  top: 50%;
  transform: translate(0%, -50%);
}

.fancy-image--loaded,
.fancy-overlay--loaded {
  opacity: 1 !important;
}

/*# sourceMappingURL=style.css.map */

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 80rem;
  width: 100%;
  padding: 1rem 2rem;
  margin: 0 auto;
}
.help_btn{
  display: block;
  padding: 10px;
  background-color: #526a48;
  color: #fff;
  display: block;
  border: 0; 
  border-radius: 3px;
  margin-top: 20px;
  width: 100%;
  transition: .2s;
}
.help_btn:hover{
  background-color: #87a57a;
  cursor: pointer;
}
.main .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}
.main .card {
  color: #252a32;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}
.main .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #fff;
}
.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_grid {
  max-width: 1400px;
  background: url("../img/about.jpg");
  background-position: top;
  background-size: cover;
  height: 600px;
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
}
.title{
  text-align: center;
}
.rel{
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 4rem;
  z-index: 9;
  transform: translate(-50%,-50%);
}
.about_grid:after,
.contacts_grid:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.28);
}
.text_grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 30px auto;
}
.subtile{
  font-size: 20px;
  font-weight: bold;
  margin: 20px auto;
}
.project_item{
  max-width: 350px;
  background-color: #eee;
  border-radius: 10px;
  position: relative;
}
.proj_text{
  padding: 15px;
}
.gum_image-1{
  background: url('../img/9.jpg');
  
}
.gum_image-3{
  background: url('../img/27.jpg');
}
.gum_image-4{
  background: url('../img/16.jpg');
}
.gum_wrap{
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  height: 200px;
}
.gum_image-2{
  background: url('../img/19.jpg');
  background-size: 100%;
background-position: 50% 37%;
}
.projects_grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 30px;
}
.contacts_grid{
  max-width: 1400px;
  background: url("../img/contacts.jpg");
  background-position: -100% 50%;
  background-size: cover;
  height: 600px;
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
}
.contacts_grid_wrap{
  display: grid;
  grid-template-columns:  1fr .8fr;
  column-gap: 20px;
}
.proje_title{
  text-align: left;
}
 /* Dropdown Button */
.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}
.lang_incon{
  width: 30px;
  height: 30px;

 
}
.ua{
  background: url('../img/ua.png');
  background-size: cover;
}
.usa{
  background: url('../img/en.png');
  background-size: cover;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 40px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 9;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;} 
.contacts_item{
  display: flex;
  column-gap: 20px;
  align-items: center;
  font-size: 22px;
  line-height: 25px;
  margin: 20px 0;
  padding: 10px;
  border-radius: 5px;
  background-color: #eee;
}
@media(max-width:762px){
  .projects_grid{
    grid-template-columns: 1fr;
  }
  .project_item{
    margin: 20px auto;
  }
  .contacts_grid_wrap{
    grid-template-columns: 1fr;
  }
  .footer_grid{
    grid-template-columns: 1fr;
  }
  .social_links{
    flex-direction: column;
  }
  .form_sect{
    grid-template-columns: 1fr;
  }
  .donate_wrapper{
    width: 100%;
  }
  .text_grid{
    grid-template-columns: 1fr;
  }
  .text_grid > p{
    margin: 10px 0;
  }
}
@media only screen and (max-width: 600px) {
  .main .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}
