* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html, body {
  scroll-behavior: smooth;
  background: #15151D;
}

header {
  height: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  width: 100%;
}
header .logo {
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo a {
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo a img {
  height: 3.5rem;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 3.5rem;
}
header nav a {
  color: #fff;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
}
header nav a:nth-of-type(1)::before {
  content: "01";
}
header nav a:nth-of-type(2)::before {
  content: "02";
}
header nav a:nth-of-type(3)::before {
  content: "03";
}
header nav a::before {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(100%, -100%);
  font-size: 0.75em;
  font-weight: 600;
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
}
header nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  transition: 0.25s ease;
}
header nav a:hover::after, header nav a.active::after {
  width: 70%;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #35F4BF;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 40;
  background: #101010;
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #35F4BF;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 900px) {
  header .logo a img {
    height: 2.5rem;
  }
  header nav {
    gap: 1.75rem;
  }
  header nav a {
    font-size: 0.9em;
  }
  header nav a::after {
    bottom: -3px;
  }
  header .btn a {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 700px) {
  header {
    height: 5rem;
  }
  header .logo__parent {
    padding-left: 2.5%;
  }
  header .logo__parent .logo {
    font-size: 1.5em;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .btn {
    display: none;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
  transition: 0.25s ease;
}
.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  border-radius: 35px;
  text-decoration: none;
  padding: 1em 2em;
  font-weight: 500;
  transition: 0.2s ease;
  background: rgb(177, 244, 53);
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  color: #15151D;
  font-weight: 600;
  text-transform: uppercase;
}
.btn:hover {
  transform: scale(1.05);
}

footer {
  width: 100%;
  padding: 2.5rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .left {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 1rem;
}
footer .left .logo {
  height: 4.5rem;
  margin-bottom: 1.25rem;
}
footer .left a {
  font-size: 1em;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}
footer .left a .green {
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
}
footer .left a:hover .icon {
  background: linear-gradient(90deg, rgba(177, 244, 53, 0.75) 35%, rgba(53, 244, 191, 0.75) 100%);
}
footer .left a .icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(177, 244, 53, 0.6) 35%, rgba(53, 244, 191, 0.6) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .left a .icon svg {
  height: 22px;
  width: 22px;
  color: #fff;
  stroke-width: 2.5;
}
footer .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1rem;
}
footer .right h3 {
  font-size: 2.5em;
  color: #fff;
  margin-bottom: 0.5rem;
}
footer .right a {
  font-size: 1.25em;
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}
footer .right a:hover svg {
  transform: translateX(2px);
}
footer .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #35F4BF;
  stroke-width: 2.5;
}
footer .right a svg path {
  color: rgb(177, 244, 53);
}

@media only screen and (max-width: 850px) {
  footer .footer__content .left h2 {
    font-size: 2em;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 1300px) {
  footer .footer__content .left h2 {
    font-size: 2.5em;
  }
  footer .footer__content .left p {
    font-size: 0.85em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 700px) {
  footer {
    flex-flow: column;
    justify-content: start;
    align-items: start;
    gap: 2rem;
  }
  footer .left {
    order: 2;
  }
  footer .left .logo {
    font-size: 1.5em;
    margin-bottom: 0;
    height: 3rem;
  }
  footer .left a {
    font-size: 0.85em;
  }
  footer .left a .icon {
    height: 30px;
    width: 30px;
  }
  footer .left a .icon svg {
    height: 16px;
    width: 16px;
  }
  footer .right {
    order: 1;
  }
  footer .right h3 {
    font-size: 1.5em;
  }
  footer .right a {
    font-size: 1em;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #fff;
  cursor: pointer;
}
#gdpr__parent label a {
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
}

@media only screen and (max-width: 850px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
@keyframes fade-up {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.animate-fade-up {
  opacity: 0;
  transform: translateY(0);
}

.fade-up {
  animation: 0.5s fade-up ease-in-out forwards;
}

.animate-fade-up-2 {
  opacity: 0;
  transform: translateY(0);
}

.fade-up-2 {
  animation: 0.5s fade-up 0.5s ease-in-out forwards;
}

.animate-fade-up-3 {
  opacity: 0;
  transform: translateY(0);
}

.fade-up-3 {
  animation: 0.5s fade-up 1s ease-in-out forwards;
}

.animate-fade-up-4 {
  opacity: 0;
  transform: translateY(0);
}

.fade-up-4 {
  animation: 1s fade-up 3s ease-in-out forwards;
}

@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.animate-fade-left {
  opacity: 0;
  transform: translateX(-100px);
}

.fade-left {
  animation: 1s fade-left ease-in-out forwards;
}

.animate-fade-left-2 {
  opacity: 0;
  transform: translateY(0);
}

.fade-left-2 {
  animation: 1s fade-left 1s ease-in-out forwards;
}

.animate-fade-left-3 {
  opacity: 0;
  transform: translateY(0);
}

.fade-left-3 {
  animation: 1s fade-left 2s ease-in-out forwards;
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.animate-fade-right {
  opacity: 0;
  transform: translateX(-100%);
}

.fade-right {
  animation: 1s fade-right ease-in-out forwards;
}

.animate-fade-right-2 {
  opacity: 0;
  transform: translateY(0);
}

.fade-right-2 {
  animation: 1s fade-right 0.5s ease-in-out forwards;
}

.animate-fade-right-3 {
  opacity: 0;
  transform: translateY(0);
}

.fade-right-3 {
  animation: 1s fade-right 2s ease-in-out forwards;
}

@keyframes scale-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate-scale-in {
  opacity: 0;
  transform: translateX(-100%);
}

.scale-in {
  animation: 0.75s scale-in ease-in-out forwards;
}

.animate-scale-in-2 {
  opacity: 0;
  transform: translateY(0);
}

.scale-in-2 {
  animation: 0.75s scale-in 0.25s ease-in-out forwards;
}

.animate-scale-in-3 {
  opacity: 0;
  transform: translateY(0);
}

.scale-in-3 {
  animation: 0.75s scale-in 0.5s ease-in-out forwards;
}

@media only screen and (max-width: 850px) {
  .fade-left-2, .fade-left-3 {
    animation: 1s fade-left ease-in-out forwards;
  }
  .fade-right-2, .fade-right-3 {
    animation: 1s fade-right ease-in-out forwards;
  }
  .fade-up-2, .fade-up-3, .fade-up-4 {
    animation: 0.5s fade-up ease-in-out forwards;
  }
  .scale-in-2, .scale-in-3 {
    animation: 0.75s scale-in ease-in-out forwards;
  }
}
#loading__parent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
}
#loading__parent #loading {
  display: inline-block;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
.title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 2rem 10%;
}
.title .text {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
}
.title .text h2 {
  font-size: 1.75em;
  color: #fff;
  font-weight: 500;
}
.title .text h1 {
  font-size: 6em;
  color: #fff;
  margin: 1rem 0 0;
}
.title .text p {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5em;
  margin: 0.5rem 0 3.5rem;
}
.title .text .btn a {
  font-size: 1.25em;
}
.title .decorations {
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
}
.title .decorations .number {
  font-size: 750px;
  line-height: 1em;
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
  font-weight: 900;
  filter: blur(5px);
}
.title .decorations .icons {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  height: 100%;
}
.title .decorations .icons .row {
  height: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: column;
}
.title .decorations .icons .row:nth-child(1) {
  transform: translateY(-10%);
}
.title .decorations .icons .row:nth-child(1) .icon:nth-of-type(1) {
  animation: 7.5s icon linear infinite;
}
.title .decorations .icons .row:nth-child(1) .icon:nth-child(2) {
  animation: 7.5s icon -5s linear infinite;
}
.title .decorations .icons .row:nth-child(1) .icon:nth-child(3) {
  animation: 7.5s icon -10s linear infinite;
}
.title .decorations .icons .row:nth-child(2) {
  transform: translateY(10%);
}
.title .decorations .icons .row:nth-child(2) .icon:nth-of-type(1) {
  animation: 7.5s icon -10s linear infinite;
}
.title .decorations .icons .row:nth-child(2) .icon:nth-child(2) {
  animation: 7.5s icon linear infinite;
}
.title .decorations .icons .row:nth-child(2) .icon:nth-child(3) {
  animation: 7.5s icon -5s linear infinite;
}
.title .decorations .icons .row .icon {
  height: 89px;
  width: 89px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
}
.title .decorations .icons .row .icon:hover {
  outline: 2px solid #fff;
}
.title .decorations .icons .row .icon img {
  height: 79px;
  width: 79px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
@keyframes icon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20%);
  }
  0% {
    transform: translateY(0);
  }
}

h2.heading {
  font-size: 4.5em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 1.5rem;
}

h3.subheading {
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
  font-size: 2em;
}

.numbers__panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 4rem 10%;
  background: #111119;
}
.numbers__panel .item {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
}
.numbers__panel .item h3 {
  font-size: 4.5em;
  font-weight: 900;
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
}
.numbers__panel .item span {
  text-transform: uppercase;
  color: #fff;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
}

.services {
  padding: 4rem 10%;
}
.services .services__heading {
  display: grid;
  grid-template-columns: 0.6fr 0.4fr;
  align-items: end;
  gap: 2rem;
}
.services .services__heading .left {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.services .services__heading p {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75em;
  transform: translateY(-0.75rem);
}
.services .services__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.services .services__content .item {
  background: #1F1F27;
  padding: 2rem;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  border-radius: 25px;
  width: 100%;
  position: relative;
  z-index: 2;
  transition: 0.5s ease;
}
.services .services__content .item:hover {
  transform: scale(1.025);
}
.services .services__content .item:hover::before {
  opacity: 1;
}
.services .services__content .item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  border-radius: 30px;
  z-index: 1;
  box-shadow: 0 0 10px 10px rgba(177, 244, 53, 0.1);
  opacity: 0;
  transition: 0.5s ease;
}
.services .services__content .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1F1F27;
  border-radius: 25px;
  z-index: 2;
}
.services .services__content .item * {
  z-index: 3;
}
.services .services__content .item img {
  height: 95px;
}
.services .services__content .item h3 {
  font-size: 1.5em;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-top: 1rem;
  min-height: 2em;
}
.services .services__content .item h4 {
  margin: 1rem 0 0.75rem;
  color: #fff;
  font-size: 1.2em;
  width: 90%;
  font-weight: 500;
}
.services .services__content .item .point__list {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 0.75rem;
}
.services .services__content .item .point__list .point {
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 15px;
}
.services .services__content .item .point__list .point .icon {
  height: 31px;
  width: 31px;
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.services .services__content .item .point__list .point .icon svg {
  color: #1F1F27;
  height: 19px;
  width: 19px;
  stroke-width: 3;
}
.services .services__content .item .point__list .point span {
  font-size: 1em;
  color: #fff;
  line-height: 1.5em;
}
.services .services__content .item .btn {
  margin-top: 1.5rem;
}
.services .services__content .item .btn a {
  font-size: 15px;
}

.programs {
  padding: 5rem 10%;
  background: #111119;
}
.programs .icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.programs .icons .icon {
  height: 89px;
  width: 89px;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.programs .icons .icon:nth-of-type(even) {
  animation: 5s icon-float linear infinite;
}
.programs .icons .icon:nth-of-type(even):hover::before {
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
}
.programs .icons .icon:nth-of-type(odd) {
  animation: 5s icon-float -2.5s linear infinite;
}
.programs .icons .icon:nth-of-type(odd):hover::before {
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
}
.programs .icons .icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 10px 10px rgba(177, 244, 53, 0.1);
}
.programs .icons .icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 50%;
  z-index: 2;
}
.programs .icons .icon img {
  height: 65px;
  width: 65px;
  z-index: 3;
  border-radius: 50%;
}
@keyframes icon-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(0);
  }
}
.programs h3 {
  font-size: 1.25em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 3rem;
}

.about__us {
  padding: 5rem 5% 5rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about__us .text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.about__us .text p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75em;
  width: 80%;
  margin: 1.5rem 0 2.5rem;
}
.about__us .text .btn a {
  font-size: 1.25em;
}
.about__us .people {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  row-gap: 0rem;
}
.about__us .people .row.single {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__us .people .row.single .person .number {
  font-size: 80px;
}
.about__us .people .row.single .person h3 {
  font-size: 30px;
}
.about__us .people .row.double {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about__us .people .row.double .person .number {
  font-size: 70px;
}
.about__us .people .row.double .person h3 {
  font-size: 25px;
}
.about__us .people .row.others {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about__us .people .row .person {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  transform: translateY(-10%);
}
.about__us .people .row .person:hover .image {
  transform: scale(1.025);
}
.about__us .people .row .person .image {
  border-radius: 50%;
  position: relative;
  width: 200px;
  height: 200px;
  transition: 0.25s ease;
}
.about__us .people .row .person .image::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 10px 10px rgba(177, 244, 53, 0.1);
}
.about__us .people .row .person .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.about__us .people .row .person .number {
  font-size: 60px;
  text-align: center;
  font-weight: 900;
  height: 1em;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(17, 17, 25, 0) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
  transform: translateY(20%);
}
.about__us .people .row .person h3 {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  margin: 1.5rem 0 0.5rem;
  letter-spacing: 1px;
  text-align: center;
}
.about__us .people .row .person span {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: calc(5rem + 200px) 10% 5rem;
  background: rgb(17, 17, 25);
  background: linear-gradient(180deg, rgb(17, 17, 25) 0%, rgba(17, 17, 25, 0) 100%);
  position: relative;
}
.portfolio #portfolio__heading {
  font-size: 200px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 35%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
}
.portfolio .item {
  position: relative;
  height: 45rem;
}
.portfolio .item:hover::before {
  opacity: 1;
}
.portfolio .item:hover .text {
  display: flex;
}
.portfolio .item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  border-radius: 26px;
  z-index: 1;
  box-shadow: 0 0 10px 10px rgba(177, 244, 53, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.portfolio .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 25px;
  position: relative;
  z-index: 3;
}
.portfolio .item .text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 4;
  display: none;
  justify-content: end;
  align-items: start;
  flex-flow: column;
  padding: 30px;
  border-radius: 25px;
  transition: opacity 0.5s ease;
  background: rgba(0, 0, 0, 0.7);
}
.portfolio .item .text h3 {
  font-size: 2.5em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1rem;
  z-index: 2;
}
.portfolio .item .text .btn {
  z-index: 2;
}
.portfolio .item.middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: column;
}
.portfolio .item.middle:hover .text {
  display: none;
}
.portfolio .item.middle .subitem:hover .text {
  display: flex;
}
.portfolio .item.middle::before {
  display: none;
}
.portfolio .item.brunato .text {
  background: rgba(0, 0, 0, 0.5);
}
.portfolio .item .subitem {
  width: 100%;
  position: relative;
  height: 22rem;
}
.portfolio .item .subitem:hover::before {
  opacity: 1;
}
.portfolio .item .subitem::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  border-radius: 26px;
  z-index: 1;
  box-shadow: 0 0 10px 10px rgba(177, 244, 53, 0.1);
  opacity: 0;
  transition: 0.5s ease;
}
.portfolio .item .subitem img {
  height: 100%;
}

.pricing {
  padding: 5rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.pricing .image {
  width: 100%;
  position: relative;
}
.pricing .image img {
  width: 90%;
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
}
.pricing .image .number {
  font-size: 850px;
  line-height: 700px;
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
  font-weight: 900;
  filter: blur(5px);
  position: absolute;
  bottom: 0;
  left: -10vw;
}
.pricing .text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.pricing .text p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75em;
  width: 80%;
  margin: 1.5rem 0 2.5rem;
}
.pricing .text .btn a {
  font-size: 1.25em;
}

.contacts {
  padding: 5rem 10%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  background: linear-gradient(0deg, rgb(17, 17, 25) 0%, rgba(17, 17, 25, 0) 100%);
}
.contacts .contacts__content {
  display: grid;
  grid-template-columns: 60% 40%;
  margin-top: 3.5rem;
  width: 100%;
}
.contacts .contacts__content form {
  padding-right: 100px;
  position: relative;
}
.contacts .contacts__content form::after {
  content: "";
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: 50px;
  top: 0;
}
.contacts .contacts__content form h3 {
  font-size: 2.35em;
  color: #fff;
  text-transform: uppercase;
}
.contacts .contacts__content form p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.5);
  width: 80%;
  line-height: 1.5em;
  margin-bottom: 2rem;
}
.contacts .contacts__content form .input__parent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contacts .contacts__content form .input__parent input {
  padding-bottom: 1rem;
  font-size: 1.1em;
  color: #fff;
  background: none;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  font-weight: 500;
  transition: 0.25s ease;
}
.contacts .contacts__content form .input__parent input:focus {
  outline: none;
  border-bottom: 2px solid white;
}
.contacts .contacts__content form textarea {
  font-size: 1.1em;
  color: #fff;
  background: none;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 500;
  height: 12rem;
  width: 100%;
  transition: 0.25s ease;
  resize: none;
}
.contacts .contacts__content form textarea:focus {
  outline: none;
  border-bottom: 2px solid white;
}
.contacts .contacts__content form #gdpr__parent {
  margin: 1.5rem 0 3rem;
}
.contacts .contacts__content form .btn {
  width: 40%;
}
.contacts .contacts__content form .btn a {
  font-size: 1.4em;
  padding: 1rem 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  font-weight: 700;
}
.contacts .contacts__content .contacts__details {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  gap: 4rem;
}
.contacts .contacts__content .contacts__details .item {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.contacts .contacts__content .contacts__details .item h3 {
  font-size: 2.5em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.contacts .contacts__content .contacts__details .item .item__text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
  line-height: 1.5em;
}
.contacts .contacts__content .contacts__details .item .contact {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  text-decoration: none;
}
.contacts .contacts__content .contacts__details .item .contact:hover .icon {
  background: linear-gradient(90deg, rgba(177, 244, 53, 0.75) 35%, rgba(53, 244, 191, 0.75) 100%);
}
.contacts .contacts__content .contacts__details .item .contact .icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(177, 244, 53, 0.6) 35%, rgba(53, 244, 191, 0.6) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s ease;
}
.contacts .contacts__content .contacts__details .item .contact .icon svg {
  height: 22px;
  width: 22px;
  color: #fff;
  stroke-width: 2.5;
}
.contacts .contacts__content .contacts__details .item .contact p {
  font-size: 1.25em;
  font-weight: 500;
  color: #fff;
}
.contacts .contacts__content .contacts__details .item .contact p .green {
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
}

@media only screen and (max-width: 1500px) {
  .title .text h1 {
    font-size: 5.25em;
  }
  h2.heading {
    font-size: 4em;
  }
  .about__us .people .person h3 {
    font-size: 1.45em;
  }
}
@media only screen and (max-width: 1300px) {
  .title {
    padding: 2rem 7.5%;
  }
  .title .text h2 {
    font-size: 1.35em;
  }
  .title .text h1 {
    font-size: 4em;
  }
  .title .text p {
    font-size: 1.1em;
  }
  .title .text .btn a {
    font-size: 1.1em;
  }
  .title .decorations .number {
    font-size: 600px;
  }
  .title .decorations .icons .row .icon {
    height: 79px;
    width: 79px;
  }
  .title .decorations .icons .row .icon img {
    height: 71px;
    width: 71px;
  }
  h2.heading {
    font-size: 4em;
  }
  h3.subheading {
    font-size: 1.5em;
  }
  .numbers__panel .item h3 {
    font-size: 3.75em;
  }
  .numbers__panel .item span {
    font-size: 0.9em;
  }
  .services .services__heading {
    grid-template-columns: 1fr;
  }
  .services .services__heading p {
    font-size: 0.9em;
    width: 80%;
  }
  .services .services__content {
    gap: 0.75rem;
  }
  .services .services__content .item {
    padding: 1.5rem;
  }
  .services .services__content .item img {
    height: 77px;
  }
  .services .services__content .item h3 {
    font-size: 1.15em;
  }
  .services .services__content .item .point__list .point {
    gap: 10px;
  }
  .services .services__content .item .point__list .point .icon {
    height: 27px;
    width: 27px;
  }
  .services .services__content .item .point__list .point .icon svg {
    height: 15px;
    width: 15px;
  }
  .services .services__content .item .point__list .point span {
    font-size: 0.8em;
  }
  .programs .icons .icon {
    height: 65px;
    width: 65px;
  }
  .programs .icons .icon::before {
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
  }
  .programs .icons .icon img {
    height: 57px;
    width: 57px;
  }
  .programs h3 {
    font-size: 1.1em;
  }
  .about__us {
    grid-template-columns: 1fr;
    row-gap: 5rem;
  }
  .about__us .text .btn a {
    font-size: 1.15em;
  }
  .about__us .people {
    row-gap: 30px;
  }
  .about__us .people .person {
    align-items: center;
  }
  .pricing {
    padding: 5rem 7.5%;
  }
  .pricing .text p {
    width: 100%;
    font-size: 0.9em;
  }
  .pricing .text .btn a {
    font-size: 1.15em;
  }
  .pricing .image {
    display: flex;
    justify-content: end;
    align-items: end;
  }
  .pricing .image .number {
    font-size: 700px;
    line-height: 550px;
  }
  .portfolio {
    padding: calc(5rem + 125px) 10% 5rem;
  }
  .portfolio #portfolio__heading {
    font-size: 125px;
  }
  .contacts {
    padding: 4rem 5%;
  }
  .contacts h2 {
    font-size: 3em;
  }
  .contacts .contacts__content {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contacts .contacts__content form {
    padding: 0;
  }
  .contacts .contacts__content form::after {
    content: none;
  }
  .contacts .contacts__content form h3 {
    font-size: 1.9em;
  }
  .contacts .contacts__content form p {
    font-size: 0.85em;
  }
  .contacts .contacts__content form .input__parent {
    gap: 1.5rem;
  }
  .contacts .contacts__content form .btn a {
    font-size: 1.2em;
  }
  .contacts .contacts__content .contacts__details .item h3 {
    font-size: 1.9em;
  }
  .contacts .contacts__content .contacts__details .item .item__text {
    width: 80%;
  }
}
@media only screen and (max-width: 900px) {
  .title {
    padding: 1rem 7.5%;
  }
  .title .text {
    padding-bottom: 2rem;
  }
  .title .text h2 {
    font-size: 1.1em;
  }
  .title .text h1 {
    font-size: 3em;
    margin: 1rem 0 0;
  }
  .title .text p {
    font-size: 0.9em;
    margin: 0.5rem 0 2.5rem;
  }
  .title .text .btn a {
    font-size: 0.9em;
  }
  .title .decorations .number {
    font-size: 500px;
    line-height: 400px;
  }
  .title .decorations .icons .row .icon {
    height: 60px;
    width: 60px;
  }
  .title .decorations .icons .row .icon img {
    height: 43px;
    width: 43px;
  }
  h2.heading {
    font-size: 3em;
  }
  h3.subheading {
    font-size: 1.15em;
  }
  .numbers__panel {
    padding: 2.5rem 10%;
  }
  .numbers__panel .item h3 {
    font-size: 3em;
  }
  .services .services__content {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
  .services .services__content .item .point__list {
    width: auto;
  }
  .programs .icons {
    justify-content: center;
    flex-flow: row wrap;
    gap: 2.5rem;
  }
  .about__us .text p {
    font-size: 0.9em;
    margin: 0.5rem 0 1.75rem;
  }
  .about__us .text .btn a {
    font-size: 1.1em;
  }
  .about__us .people .person .image {
    height: 125px;
    width: 125px;
  }
  .about__us .people .person .image::before {
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
  }
  .about__us .people .person h3 {
    font-size: 1.5em;
  }
  .about__us .people .person span {
    font-size: 0.9em;
  }
  .portfolio {
    grid-template-columns: 1fr 1fr;
    padding: calc(3rem + 100px) 15% 3rem;
  }
  .portfolio #portfolio__heading {
    font-size: 100px;
    top: 3rem;
  }
  .portfolio .item {
    height: auto;
  }
  .portfolio .item:nth-of-type(1) {
    order: 1;
  }
  .portfolio .item:nth-of-type(2) {
    order: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    grid-column: span 2; /* Make this item span two columns */
    height: auto;
  }
  .portfolio .item:nth-of-type(2) .subitem {
    height: auto;
  }
  .portfolio .item:nth-of-type(2) .subitem::before {
    content: none;
  }
  .portfolio .item:nth-of-type(2) .subitem img {
    width: 100%;
    height: auto;
  }
  .portfolio .item:nth-of-type(3) {
    order: 2;
  }
  .portfolio .item img {
    width: 100%;
    height: auto;
  }
  .pricing .image .number {
    font-size: 500px;
    line-height: 400px;
  }
  .pricing .image img {
    width: 100%;
  }
  .pricing .text p {
    font-size: 0.9em;
    margin: 0.5rem 0 1.75rem;
  }
  .pricing .text .btn a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 700px) {
  .title {
    grid-template-columns: 1fr;
  }
  .title .text {
    margin-bottom: 2rem;
  }
  .title .text h2 {
    font-size: 1em;
  }
  .title .text h1 {
    font-size: 2.7em;
  }
  .title .text p {
    margin: 0.5rem 0 2rem;
    font-size: 0.85em;
  }
  .title .text .btn a {
    font-size: 0.8em;
  }
  .title .decorations {
    justify-content: center;
  }
  .title .decorations .icons {
    right: 50%;
    transform: translate(50%, -50%);
  }
  h2.heading {
    font-size: 2.5em;
    margin-top: 1rem;
  }
  h3.subheading {
    font-size: 1em;
  }
  .numbers__panel {
    grid-template-columns: 1fr;
  }
  .numbers__panel .item h3 {
    font-size: 2.5em;
  }
  .numbers__panel .item span {
    font-size: 0.7em;
  }
  .services .services__heading p {
    font-size: 0.8em;
  }
  .services .services__content .item img {
    height: 65px;
  }
  .programs h3 {
    font-size: 1em;
  }
  .about__us {
    row-gap: 4rem;
  }
  .about__us .text p {
    font-size: 0.8em;
    width: 100%;
  }
  .about__us .text .btn a {
    font-size: 0.9em;
  }
  .about__us .people {
    gap: 1rem;
    row-gap: 3rem;
    grid-template-columns: 1fr;
  }
  .about__us .people .row.single .person .number {
    font-size: 60px;
  }
  .about__us .people .row.single .person h3 {
    font-size: 24px;
  }
  .about__us .people .row.double .person .number {
    font-size: 60px;
  }
  .about__us .people .row.double .person h3 {
    font-size: 20px;
  }
  .about__us .people .row.double .person span {
    font-size: 15px;
  }
  .about__us .people .row.others {
    grid-template-columns: 1fr 1fr;
  }
  .about__us .people .row.others .person .number {
    font-size: 60px;
  }
  .about__us .people .row.others .person h3 {
    font-size: 20px;
  }
  .about__us .people .row.others .person span {
    font-size: 15px;
  }
  .about__us .people .person .image {
    height: 180px;
    width: 180px;
  }
  .about__us .people .person .number {
    font-size: 12em;
  }
  .about__us .people .person h3 {
    font-size: 1.35em;
  }
  .about__us .people .person span {
    font-size: 0.8em;
  }
  .portfolio {
    padding: calc(3rem + 50px) 10% 3rem;
    grid-template-columns: 1fr;
  }
  .portfolio #portfolio__heading {
    font-size: 50px;
  }
  .portfolio .item:nth-of-type(2) {
    grid-template-columns: 1fr;
    grid-column: span 1;
    order: 2;
  }
  .portfolio .item .text h3 {
    font-size: 1.75em;
  }
  .portfolio .item .text .btn a {
    font-size: 0.9em;
  }
  .pricing {
    grid-template-columns: 1fr;
    row-gap: 7.5rem;
  }
  .pricing .image {
    order: 2;
  }
  .pricing .text {
    order: 1;
  }
  .pricing .text p {
    font-size: 0.8em;
  }
  .pricing .text .btn a {
    font-size: 0.9em;
  }
  .contacts {
    padding: 3rem 10%;
  }
  .contacts .contacts__content form h3 {
    font-size: 1.5em;
  }
  .contacts .contacts__content form p {
    font-size: 0.8em;
  }
  .contacts .contacts__content form .input__parent {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contacts .contacts__content form .input__parent input {
    font-size: 1em;
  }
  .contacts .contacts__content form textarea {
    font-size: 1em;
  }
  .contacts .contacts__content form #gdpr__parent {
    margin: 1.5rem 0 1.5rem;
  }
  .contacts .contacts__content form .btn {
    width: auto;
  }
  .contacts .contacts__content form .btn a {
    font-size: 0.9em;
    padding: 1em 2em;
  }
  .contacts .contacts__content .contacts__details .item h3 {
    font-size: 1.75em;
  }
  .contacts .contacts__content .contacts__details .item .contact .icon {
    height: 33px;
    width: 33px;
  }
  .contacts .contacts__content .contacts__details .item .contact .icon svg {
    height: 19px;
    width: 19px;
  }
  .contacts .contacts__content .contacts__details .item .contact p {
    font-size: 1em;
  }
}/*# sourceMappingURL=style.css.map */