.welcome {
  width: 100%;
  height: auto;
  background: url(../img/hero.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -100px;
  margin-bottom: -100px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.welcome::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.welcome__container {
  position: relative;
  height: 100%;
  padding-top: 190px;
  padding-bottom: 230px;
  box-sizing: border-box;
}
.welcome__text {
  position: relative;
  z-index: 3;
}
.welcome__description {
  font-weight: 300;
  font-size: 28px;
  line-height: 40px;
  text-transform: lowercase;
  color: #fff;
  margin-top: 20px;
  width: 100%;
}
.welcome__image {
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
  right: -100px;
  z-index: 2;
  filter: drop-shadow(32.6952px 43.5935px 43.5935px rgba(0, 0, 0, 0.25));
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
      user-select: none;
  pointer-events: none;
}

.about-us__inner {
  width: 100%;
  background: #F5F4EA;
  border: 1px solid #DCDCDC;
  box-shadow: 0px 5px 30px rgba(209, 214, 203, 0.3);
  border-radius: 8px;
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 110px;
  box-sizing: border-box;
}
.about-us__sanskrit {
  height: 48px;
}
.about-us__title {
  font-size: 34px;
  font-weight: 600;
  line-height: 40px;
  color: rgb(81, 129, 84);
  margin-top: 40px;
  margin-bottom: 20px;
}
.about-us__description {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
}

.projects {
  margin-top: 80px;
  margin-bottom: 100px;
}
.projects__title {
  text-align: center;
  text-transform: lowercase;
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1200px) {
  .welcome__image {
    right: -150px;
  }
}
@media screen and (max-width: 960px) {
  .welcome__image {
    right: -220px;
  }
  .welcome__description {
    max-width: 400px;
  }
  .about-us__sanskrit {
    height: 44px;
  }
  .about-us__title {
    font-size: 30px;
  }
  .about-us__description br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .welcome {
    margin-top: -100px;
    margin-bottom: -60px;
  }
  .welcome::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: inherit;
    filter: url(#blur);
    z-index: 1;
  }
  .welcome__container {
    padding-top: 165px;
    padding-bottom: 160px;
  }
  .welcome__image {
    filter: url(#blur);
  }
}
@media screen and (max-width: 460px) {
  .welcome__description {
    max-width: 300px;
    font-size: 24px;
  }
  .about-us__sanskrit {
    height: 44px;
  }
  .about-us__title {
    font-size: 28px;
  }
  .about-us__description {
    font-size: 19px;
  }
}
@media screen and (max-width: 310px) {
  .welcome__description {
    font-size: 22px;
  }
}