@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@500&display=swap');

* {
    font-family: 'Vazirmatn', sans-serif;
    font-weight: bolder;
    text-shadow: 3px 3px 6px #143D43;
    user-select: none;
}

body {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 100px;
    display: flex;
    justify-content: center;
}

.head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

img {
  position: absolute;
  top: 10px;
  max-width: 22%;
  max-height: 42%;
}

hr {
    position: relative;
    top: -48px;
    width: 65%;
    height: 15px;
    box-shadow: 2px 2px solid #143D43;
    border-radius: 25px;
    background-color: white;
}

.title {
    padding-top: 50px;
    font-size: 65px;
    font-weight: 300;
    display: flex;
    justify-content: center;
}

.subtitle {
  position: relative;
  top: -30px;
  font-size: 45px;
  font-weight: 300;
  display: flex;
  justify-content: center; 
}

.main {
    background-image: linear-gradient(#143D43, #14A093, #14A093, #14A093, #14A093);
    padding: 40px;
    border-radius: 20% 5%;
    color: white;
    box-shadow: 0 0 50px 10px #143D43;
    width: 100%;
}

.onForm {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 750px;
    padding: 30px;
}

.name {
    display: flex;
    flex-direction: column;
    justify-content: space-between;   
}

.nameSpan {
    padding-bottom: 25px;
    display: flex;
    justify-content: center;
    font-size: 40px;
    font-weight: 580;
}

.location {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 55px;
}

.locationSpan {
    padding-bottom: 25px;
    display: flex;
    justify-content: center;
    font-size: 40px;
    font-weight: 580;
}

.phone {
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.phoneSpan {
    padding-bottom: 25px;
    display: flex;
    justify-content: center;
    font-size: 40px;
    font-weight: 580;
}


.typeOfContribution {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 70px;
}

.typeOfContributionSpan {
    padding-bottom: 25px;
    display: flex;
    justify-content: center;
    font-size: 40px;
    font-weight: 580;
}

.Input{
    transform: scale(1.4);
    height: 44px;
    width: 550px;
    font-size: 30px;
    text-align: center;
    text-shadow: none;
    border: none;
    border-radius: 8px;
    background-color: white;
    color: #143D43;
    box-shadow: 2px 2px 6px #143D43;
    outline: none;
}

.selInput {
    height: 48px;
    width: 550px;
    transform: scale(1.4);
    border: none;
    text-align: center;
    text-shadow: none;
    font-size: 30px;
    border-radius: 8px;
    background-color: white;
    color: #143D43;
    box-shadow: 2px 2px 6px #143D43;
    outline: none;
}

.submit {
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.submit input {
  height: 100%;
  width: 100%;
  outline: none;
  font-weight: 500;
  border: none;
  font-size: 32px;
  border-radius: 15px;
  color: white;
  background-color: #143D43;
  transition: all 0.3s ease 0s;
  transform: scale(1.050);
}

.splash {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 2100px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 1;
  box-shadow: none;
}

.splashTxt {
  position: absolute;
 transform: translate(-0%, -50%);
}

span {
  font-size: 110px;
  color: white;
  --webkit-text-stroke: 0 0 0.3vw #14A093;
  text-shadow: none;
}

span:before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  color: #14A093;
  --webkit-text-stroke: 0vw #202225;
  /* border-right: 2px solid #14A093; */
  overflow: hidden;
  animation: animate 3.5s linear infinite;
  animation-iteration-count: 1;
}

@keyframes animate {
  0%, 10%, 100% {
    width: 0;
  }
  70%, 90% {
    width: 102%;
  }
}

.splash {
  opacity: 1;
  animation: fade 2s 3.5s ease-out forwards;
  
  
}

@keyframes fade {
  to{
    opacity: 0;
  }
}


.social {
  position: absolute;
  top: 94vh;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 350px;
  text-align: center;
  bottom: 0;
}

.social h3 {
  color: #143D43;
  text-shadow: none;
  font-size: 30px;
}

.social a img {
  position: fixed;
  width: 13%;
}

.social .wa {
  position: fixed;
  top: 170px;
  right: 180px;
}

.social .insta {
  position: fixed;
  top: 170px;
  left: 445px;
  right: 200px;
  transform: scale(1.1);
}

.social .fb {
  position: fixed;
  top: 170px;
  left: 180px;
}