@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica\ LT\ Std\ Bold.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Agenor';
  src: url('../fonts/Agenor-Black.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Ries';
  src: url('../fonts/riesling.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
:root{
  --mainColor: #c38312;
  --grayColor: #636262;
  --white: #fff;
}
body{
  position: absolute;
  width: 100%;
  overflow-x: hidden;
  top: 0;
  left: 0;
  font-family: 'Helvetica';
  background: var(--white);
}
nav{
  background: white;
}
.navbar{
  position: fixed;
  overflow: hidden;
  z-index: 999;
  align-items: center;
  justify-content: space-between;
  top: 0;
}
.nav-link{
  color: #fff;
  margin: 0px 10px;
  background: #000;
  border-radius: 8px;
  filter: drop-shadow(0px 0px 3px #000);
}
.donBTNnav{
  background: var(--mainColor);
}
.nav-link:hover{
  color: #fff;
}
.nav-link, .nav-link.show:active{
  color: #fff!important;
}

.navbar-collapse{
  position: absolute;
  background: rgba(255, 255, 255, 1);
  right: 30px;
}
.dropdown-menu{
  transition: 0.3s all ease;
  border: none;
}
@media (max-width: 991px) {
  .navbar-collapse{
    position: relative;
    width: 100vw!important;
    padding: 20px;
    border-radius: 20px;
    right: 0;
  }
}


/*BUTTON STRYPE */
#donationStrypeBtn{
  position: fixed;
  z-index: 9999999;
  bottom: 40px;
  right: 20px;
}

#strypeBlock{
  display: none;
}
#closeStrypeBTN{
  position: fixed;
  z-index: 9999999;
  font-size: x-large;
  background: transparent;
  border: none;
  color: #DF2E37;
  bottom: 360px;
  right: 265px;
}
#heart{
  position: fixed;
  z-index: 9999999;
  cursor: pointer;
  display: block;
  background: #DF2E37;
  color: #fff;
  border-radius: 50%;
  padding: 21px 25px;
  bottom: 20px;
  right: 20px;
  animation: beat 1.5s ease infinite;
}

@keyframes beat {
  0% {
    transform: scale(1);
  }
  
  50% {
    transform: scale(1.1);
  }
}

@keyframes beat-before {
  0% {
    transform: scale(1);
  }
  
  50% {
    transform: scale(1.15);
  }
}

@keyframes beat-after {
  0% {
    transform: scale(1);
  }
  
  50% {
    transform: scale(1.3);
  }
}

@media (max-width: 991px) {
  #closeStrypeBTN{
    bottom: 360px;
    right: 250px;
  }
}




/*Main content PAGE*/  
  #mainContainerOne{
    background-image: url(../img/oooscillate.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .mainContentPage {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .mainContentPage img{
    width: 100%;
    max-width: 300px;
  }
  .textMain{
    text-align: center;
    font-family: 'Agenor';
  }
  .maroCL{
    color: #713c1d;
  }
  .greenCL{
    color:var(--mainColor)
  }
  .mainContentPage p {
    margin-left: 5px;
    font-size: larger;
  }
  
  .buttonsMain {
    display: flex;
    margin-top: -10px;
    margin-bottom: 10%;
    flex-direction: row;
  }
  
  .donBTN{
    background: var(--mainColor);
    color: #fff;
    font-size: large;
    font-family: 'Poppins'!important;
    transition: 0.3s all ease-in-out;
    margin: 5px;
    text-decoration: none;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 20px;
  }
  .donBTN:hover{
    filter: drop-shadow(0px 4px 4px #000);
  }
  .donBTN img{
    transition: 0.3s all ease;
  }
  .donBTN img:hover{
    filter: drop-shadow(0px 4px 4px #000);
  }
  

  #scrollDownFromEarth{
    color: var(--mainColor);
    display: none;
    font-size: xxx-large;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
    animation: scrollDown 2s ease-in-out infinite;
  }

  @keyframes scrollDown {
    0%{
      bottom: 9%;
    }
    50%{
      bottom: 10%;
    }
    100%{
      bottom: 9%;
    }
  }

  #planetDIV{
    position: relative;
    z-index: 1;
    height: 100vh;
    width: 100%;
  }

  .faireDonNav{
    background: #DF2E37;
    padding: 10px 30px;
    color: #fff!important;
    border-radius: 20px;
  }


#earth-model{
  position: relative;
  overflow-x: visible;
  width: 150%;
  height: 100%;
  left: 0%;
}
.Hotspot{
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  padding: 5px 10px;
}
.HotspotimageBlock{
  display: none;
  position: absolute;
  left: 110%;
}
.HotspotimageBlock img{
  width: 200px;
  border-radius: 20px;
}

@media (max-width: 991px) {
  #scrollDownFromEarth{
    display: block;
  }
  .mainContentPage {
    display: flex;
    margin-top: 10%;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
  .mainContentPage img{
    max-width: 200px;
  }
  #planetDIV{
    margin-top: -15%;
  }
}
/* ABOUT SECTION */
#aboutSectionTwo{
  background-image: url(../img/blob-scene-haikei.svg);
  border-radius: 40px;
  box-shadow: 0px 1px 10px 1px #000;
  height: fit-content;
  padding: 40px 0px;
  background-repeat: no-repeat;
  background-size: cover;
}
.mainTittleSection{
  display: flex;
  flex-direction: row;
  text-align: left;
  font-family: 'Agenor';
  font-size: xxx-large;
  color: var(--mainColor);
}
.mainTittleSection img{
  width: 100%;
  margin-bottom: 20px;
  max-width: 400px;
}
.mainSubTittleSection{
  font-family: 'Poppins';
  font-weight: 400;
  width: 100%;
}
.mainSubTittleSection b{
  font-weight: 700;
}
.video-container {
  position: relative;
  overflow: visible;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /*Ratio aspect 16:9 (dividți înălțimea la lățime și înmulțiți cu 100 pentru a obține procentul) */
}
@media (max-width: 991px) {
  .mainTittleSection img{
    width: 80%;
    margin-bottom: 20px;
    max-width: 400px;
  }
  .mainTittleSection{
    display: flex;
    flex-direction: row;
    font-family: 'Agenor';
    font-size: xx-large;
    color: var(--mainColor);
  }
}

#videoBack {
  position: absolute;
  z-index: 0;
  border-radius: 20px;
  top: 0;
  left: 2.5%;
  width: 95%;
  max-height: 100vh;
  object-fit: cover;
}
#youtubeBTN{
  position: absolute;
  z-index: 22;
  top: 4%;
  text-decoration: none;
  border-radius: 15px;
  background: red;
  color: #fff;
  padding: 5px 15px;
  font-size: large;
  right: 7%;
}
@media (min-width: 2031px) {
  .video-container {
    width: 100%;
    height: 1200px;
    padding-bottom: 0%;
  }
}
#cardsAbout{
  display: flex;
  justify-content: center;
  align-items: center;
}
.aboutSquare{
  text-align: center;
  background: #f1f1f1;
  font-family: 'Montserrat';
  border-radius: 20px;
  height: fit-content;
  display: flex;
  margin: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 20px;
  box-shadow: 4px 4px 2px var(--mainColor);
}
.titleAboutSquare{
  font-size: larger;
  font-family: 'Agenor';
  padding: 5px 15px;
  border-radius: 15px;
  box-shadow: 4px 4px 2px var(--mainColor);
  background: #000;
  color: #fff;
  font-weight: 600;
}
.descriptionAboutSquare{
  font-family: 'Helvetica';
}
.iconAboutSquare{
  width: 140px;
  margin-bottom: 20px;
}

/*TEAM SECTION*/
#teamSection{
  background-image: url(../img/backsectionThree.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.cardTeam{
  display: flex;
  margin-top: 20px;
  flex-direction: column;
  border: 2px solid black;
  border-radius: 15px;
  padding: 10px 15px;
}
.firstLine{
  display: flex;
  align-items: center;
  flex-direction: row;
}
.imgTeamMember img{
  width: 100px;
}
.nameTeamMember b{
  margin-left: 15px;
  font-size: x-large;
}
.nameTeamMember p{
  margin-left: 15px;
  font-size: medium;
}

/*Dons Section*/
section {
  position: relative;
  border-radius: 40px;
  height: fit-content;
  padding: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 0px 10px 4px black;
  border-radius: 40px;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#donsContent h2{
  color: #fff;
  margin-left: 30px;
  font-family: "Helvetica";
  font-size: xxx-large;
  text-shadow: 1px 1px 3px black;
}

.donsSectionBTN{
  color: var(--mainColor);
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;

  font-size: 1.1em;
  margin: 10px;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 20px;
  background: #fff;
  text-shadow: 1px 1px 3px var(--mainColor);
  transition: 0.3s all ease-in-out;
}
.donsSectionBTN:hover{
  background: var(--mainColor);
  color: #fff;
  box-shadow: 0px 0px 50px 10px white;
}

@media (max-width: 576px) {
  .bg{
      border-radius: 0px;
    }
}

.cardProjets{
  padding: 0px 20px 15px 20px;
  overflow: hidden;
}
.cardProjets h4{
  width: 100%;
  padding: 10px 10px;

}
.cardProjets img{
  border-radius: 20px 20px 0px 0px;
  position: relative;
  width: 100%;
}
.prices{
  padding: 10px;
}
.textContent{
  background: #f1f1f1;
  border-radius: 0px 0px 20px 20px;
  padding-bottom: 15px;
}
.tooltip{ 
  position:relative;
  float:right;
}
.tooltip > .tooltip-inner {background-color: #eebf3f; padding:5px 15px; color:rgb(23,44,66); font-weight:bold; font-size:13px;}
.popOver + .tooltip > .tooltip-arrow {	border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 5px solid #eebf3f;}


.progress{
  display: flex;
  justify-content: start;
  align-items: center;
  border-radius: 10px;
  overflow: visible;
  margin: 10px;
}
.progress-bar{
  border-radius: 10px;
   background:rgb(23,44,60); 
  -webkit-transition: width 1.5s ease-in-out;
  transition: width 1.5s ease-in-out;
}
.prices p{
  font-size: smaller;
}
.prices span{
  font-size: medium;
}
.projetsDonBTN{
  color: #fff;
  text-transform: uppercase;
  display: flex;
  text-align: center;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  margin: 5px;
  padding: 5px;
  text-decoration: none;
  border-radius: 20px;
  background: var(--mainColor);
  text-shadow: 1px 1px 3px var(--mainColor);
  transition: 0.3s all ease-in-out; 
}
.projetsDonBTN:hover{
  box-shadow: 0px 0px 10px 3px var(--mainColor);
  background: #e8ae49;
  color: #000;
}

/*Mentions Legales & Politique de confidentialite*/
header{
  margin-top: 75px;
  height: auto!important ;
  flex-direction: column;
  display: flex;
  justify-content: center;
  text-align: center;
  background: url(../img/oooscillate.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
  background-position: center center;
}
.titleLegales{
  font-family: 'Montserrat';
  font-size: xx-large;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 0px 0px 15px #fff;
}
.textDescriptionsLegales p{
  margin-top: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: large;
}
.textDescriptionsLegales b{
  font-family: 'Montserrat';
  font-size: x-large;
}
.contactBTN{
  --bg: var(--mainColor);
  --hover-bg: #e8ae49;
  --hover-text: #000;
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
  border: 1px solid var(--bg);
  border-radius: 20px;
  padding: 0.8em 2em;
  background: var(--bg);
  transition: 0.2s;
}
.contactBTN:hover {
  color: var(--hover-text);
  transform: translate(-0.25rem,-0.25rem);
  background: var(--hover-bg);
  box-shadow: 0.25rem 0.25rem var(--bg);
}

@media (max-width: 768px) {
  header{
    padding: 20px;
  } 
}

#contactSection{
  margin-top: 75px;
  height: calc(auto - 75px);
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contactForm{
  text-align: center;
  border-radius: 20px;
  border: 2px solid black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.backgroundContact{
  width: 100vw;
  height: 100vh;
  background-image: url(../img/blob-scene-haikei.svg);
  position: absolute;
  z-index: -1;
  background-size: cover;
}
.inputContact{
  max-width: 350px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 2px solid black;
  width: 100%;
  margin: 10px;
  padding: 10px 20px;
  border-radius: 15px;
}
.inputContact input{
  width: 100%;
  left: 0;
  margin: 0!important;
  border: none;
  outline: none;

}
  .sbmBTN {
    --color: var(--mainColor);
    padding: 0.8em 1.7em;
    background-color: transparent;
    border-radius: .3em;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
    font-weight: 400;
    font-size: 17px;
    border: 1px solid;
    font-family: inherit;
    text-transform: uppercase;
    color: var(--color);
    z-index: 1;
  }
  
  .sbmBTN::before, .sbmBTN::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--color);
    transition: 1s ease;
  }
  
  .sbmBTN::before {
    top: -1em;
    left: -1em;
  }
  
  .sbmBTN::after {
    left: calc(100% + 1em);
    top: calc(100% + 1em);
  }
  
  .sbmBTN:hover::before, .sbmBTN:hover::after {
    height: 410px;
    width: 410px;
  }
  
  .sbmBTN:hover {
    color: rgb(10, 25, 30);
    color: #fff;
  }
  
  .sbmBTN:active {
    filter: brightness(.8);
  }