/* APP */
.App {
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0;
  margin: 0;
  height: auto;
  width: 100%;
  font-family: "Nunito", sans-serif;
  /* font-family: "Poppins", sans-serif; */
  /* font-family: "Quicksand", serif; */
}

::-webkit-scrollbar {
  display: none;
}

input {
  background-color: white !important;
}

input:focus {
  border: none;
  outline: none;
}

button:focus {
  box-shadow: none !important;
}

.area {
  background: url("../images/bg-7.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  z-index: -1;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
}

.area-overlay {
  /* background-color: rgba(0, 0, 0, 0.4); */
  width: 100%;
  height: 100%;
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

/* Snowflakes */
.snowflake {
  --size: 1vw;
  width: var(--size);
  height: var(--size);
  background: white;
  border-radius: 50%;
  position: absolute;
  top: -5vh;
}

@keyframes snowfall {
  0% {
    transform: translate3d(var(--left-ini), 0, 0);
  }
  100% {
    transform: translate3d(var(--left-end), 110vh, 0);
  }
}
.snowflake:nth-child(1) {
  --size: 0.2vw;
  --left-ini: 3vw;
  --left-end: -2vw;
  left: 79vw;
  animation: snowfall 8s linear infinite;
  animation-delay: -4s;
}

.snowflake:nth-child(2) {
  --size: 0.2vw;
  --left-ini: 10vw;
  --left-end: 4vw;
  left: 53vw;
  animation: snowfall 6s linear infinite;
  animation-delay: -2s;
}

.snowflake:nth-child(3) {
  --size: 1vw;
  --left-ini: -9vw;
  --left-end: -7vw;
  left: 42vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -6s;
}

.snowflake:nth-child(4) {
  --size: 0.8vw;
  --left-ini: -8vw;
  --left-end: -8vw;
  left: 90vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -9s;
}

.snowflake:nth-child(5) {
  --size: 0.4vw;
  --left-ini: 3vw;
  --left-end: -5vw;
  left: 99vw;
  animation: snowfall 9s linear infinite;
  animation-delay: -10s;
}

.snowflake:nth-child(6) {
  --size: 0.4vw;
  --left-ini: 2vw;
  --left-end: 1vw;
  left: 71vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -6s;
}

.snowflake:nth-child(7) {
  --size: 0.2vw;
  --left-ini: -8vw;
  --left-end: -3vw;
  left: 92vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -10s;
}

.snowflake:nth-child(8) {
  --size: 0.6vw;
  --left-ini: 1vw;
  --left-end: 3vw;
  left: 63vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -3s;
}

.snowflake:nth-child(9) {
  --size: 0.6vw;
  --left-ini: -1vw;
  --left-end: 5vw;
  left: 70vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -2s;
}

.snowflake:nth-child(10) {
  --size: 0.2vw;
  --left-ini: 8vw;
  --left-end: 2vw;
  left: 27vw;
  animation: snowfall 9s linear infinite;
  animation-delay: -8s;
}

.snowflake:nth-child(11) {
  --size: 0.4vw;
  --left-ini: 1vw;
  --left-end: -8vw;
  left: 97vw;
  animation: snowfall 9s linear infinite;
  animation-delay: -9s;
}

.snowflake:nth-child(12) {
  --size: 1vw;
  --left-ini: 6vw;
  --left-end: -8vw;
  left: 99vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -2s;
}

.snowflake:nth-child(13) {
  --size: 0.8vw;
  --left-ini: 7vw;
  --left-end: 1vw;
  left: 95vw;
  animation: snowfall 10s linear infinite;
  animation-delay: -1s;
}

.snowflake:nth-child(14) {
  --size: 0.8vw;
  --left-ini: 5vw;
  --left-end: 8vw;
  left: 33vw;
  animation: snowfall 10s linear infinite;
  animation-delay: -10s;
}

.snowflake:nth-child(15) {
  --size: 0.2vw;
  --left-ini: -5vw;
  --left-end: -1vw;
  left: 95vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -1s;
}

.snowflake:nth-child(16) {
  --size: 0.2vw;
  --left-ini: 5vw;
  --left-end: 5vw;
  left: 73vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -1s;
}

.snowflake:nth-child(17) {
  --size: 0.6vw;
  --left-ini: -6vw;
  --left-end: -1vw;
  left: 69vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -3s;
}

.snowflake:nth-child(18) {
  --size: 0.2vw;
  --left-ini: 7vw;
  --left-end: -2vw;
  left: 10vw;
  animation: snowfall 6s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(19) {
  --size: 1vw;
  --left-ini: 2vw;
  --left-end: -4vw;
  left: 34vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -8s;
}

.snowflake:nth-child(20) {
  --size: 1vw;
  --left-ini: -8vw;
  --left-end: 0vw;
  left: 4vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -5s;
}

.snowflake:nth-child(21) {
  --size: 0.2vw;
  --left-ini: -8vw;
  --left-end: 8vw;
  left: 17vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -3s;
}

.snowflake:nth-child(22) {
  --size: 0.6vw;
  --left-ini: 5vw;
  --left-end: -9vw;
  left: 6vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -3s;
}

.snowflake:nth-child(23) {
  --size: 0.4vw;
  --left-ini: 10vw;
  --left-end: 7vw;
  left: 50vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(24) {
  --size: 0.8vw;
  --left-ini: -3vw;
  --left-end: 6vw;
  left: 37vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -5s;
}

.snowflake:nth-child(25) {
  --size: 1vw;
  --left-ini: 6vw;
  --left-end: -4vw;
  left: 89vw;
  animation: snowfall 6s linear infinite;
  animation-delay: -6s;
}

.snowflake:nth-child(26) {
  --size: 0.2vw;
  --left-ini: 3vw;
  --left-end: 3vw;
  left: 22vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -5s;
}

.snowflake:nth-child(27) {
  --size: 0.8vw;
  --left-ini: -3vw;
  --left-end: 10vw;
  left: 4vw;
  animation: snowfall 12s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(28) {
  --size: 0.8vw;
  --left-ini: -4vw;
  --left-end: 3vw;
  left: 93vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -2s;
}

.snowflake:nth-child(29) {
  --size: 0.2vw;
  --left-ini: 8vw;
  --left-end: -1vw;
  left: 36vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(30) {
  --size: 0.8vw;
  --left-ini: 4vw;
  --left-end: -7vw;
  left: 40vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -9s;
}

.snowflake:nth-child(31) {
  --size: 0.2vw;
  --left-ini: 2vw;
  --left-end: 10vw;
  left: 17vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -10s;
}

.snowflake:nth-child(32) {
  --size: 0.8vw;
  --left-ini: -1vw;
  --left-end: 7vw;
  left: 75vw;
  animation: snowfall 6s linear infinite;
  animation-delay: -6s;
}

.snowflake:nth-child(33) {
  --size: 0.2vw;
  --left-ini: -2vw;
  --left-end: 0vw;
  left: 51vw;
  animation: snowfall 10s linear infinite;
  animation-delay: -2s;
}

.snowflake:nth-child(34) {
  --size: 0.2vw;
  --left-ini: 9vw;
  --left-end: 8vw;
  left: 59vw;
  animation: snowfall 9s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(35) {
  --size: 0.4vw;
  --left-ini: -1vw;
  --left-end: -5vw;
  left: 31vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -2s;
}

.snowflake:nth-child(36) {
  --size: 1vw;
  --left-ini: -1vw;
  --left-end: 2vw;
  left: 11vw;
  animation: snowfall 9s linear infinite;
  animation-delay: -8s;
}

.snowflake:nth-child(37) {
  --size: 0.6vw;
  --left-ini: 2vw;
  --left-end: -2vw;
  left: 66vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -7s;
}

.snowflake:nth-child(38) {
  --size: 0.8vw;
  --left-ini: -8vw;
  --left-end: 0vw;
  left: 68vw;
  animation: snowfall 15s linear infinite;
  animation-delay: -6s;
}

.snowflake:nth-child(39) {
  --size: 1vw;
  --left-ini: -5vw;
  --left-end: -4vw;
  left: 90vw;
  animation: snowfall 6s linear infinite;
  animation-delay: -3s;
}

.snowflake:nth-child(40) {
  --size: 0.8vw;
  --left-ini: 6vw;
  --left-end: 6vw;
  left: 75vw;
  animation: snowfall 9s linear infinite;
  animation-delay: -10s;
}

.snowflake:nth-child(41) {
  --size: 1vw;
  --left-ini: -2vw;
  --left-end: 4vw;
  left: 37vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -3s;
}

.snowflake:nth-child(42) {
  --size: 0.6vw;
  --left-ini: 5vw;
  --left-end: 3vw;
  left: 35vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -9s;
}

.snowflake:nth-child(43) {
  --size: 0.4vw;
  --left-ini: -6vw;
  --left-end: -2vw;
  left: 93vw;
  animation: snowfall 6s linear infinite;
  animation-delay: -4s;
}

.snowflake:nth-child(44) {
  --size: 0.4vw;
  --left-ini: -2vw;
  --left-end: -1vw;
  left: 92vw;
  animation: snowfall 11s linear infinite;
  animation-delay: -9s;
}

.snowflake:nth-child(45) {
  --size: 0.8vw;
  --left-ini: 4vw;
  --left-end: -1vw;
  left: 36vw;
  animation: snowfall 12s linear infinite;
  animation-delay: -5s;
}

.snowflake:nth-child(46) {
  --size: 0.6vw;
  --left-ini: 9vw;
  --left-end: 8vw;
  left: 83vw;
  animation: snowfall 13s linear infinite;
  animation-delay: -1s;
}

.snowflake:nth-child(47) {
  --size: 0.2vw;
  --left-ini: 0vw;
  --left-end: -4vw;
  left: 36vw;
  animation: snowfall 14s linear infinite;
  animation-delay: -2s;
}

.snowflake:nth-child(48) {
  --size: 1vw;
  --left-ini: 5vw;
  --left-end: -3vw;
  left: 20vw;
  animation: snowfall 7s linear infinite;
  animation-delay: -5s;
}

.snowflake:nth-child(49) {
  --size: 1vw;
  --left-ini: 2vw;
  --left-end: 8vw;
  left: 63vw;
  animation: snowfall 12s linear infinite;
  animation-delay: -10s;
}

.snowflake:nth-child(50) {
  --size: 0.2vw;
  --left-ini: 3vw;
  --left-end: 2vw;
  left: 28vw;
  animation: snowfall 6s linear infinite;
  animation-delay: -8s;
}

/* added small blur every 6 snowflakes*/
.snowflake:nth-child(6n) {
  filter: blur(1px);
}

/* LOADER */

.loading-container {
  background-color: #1a1a1d;
  z-index: 3000;
  position: absolute;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  font: 1em Dosis, sans-serif;
  line-height: 1.5;
  perspective: 40em;
  overflow: hidden !important;
}

.preloader {
  animation: tiltSpin 8s linear infinite;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 17em;
  height: 17em;
  display: flex;
}
.preloader,
.preloader__ring {
  transform-style: preserve-3d;
}
.preloader__ring {
  animation-name: spin;
  animation-duration: 4s;
  animation-timing-function: inherit;
  animation-iteration-count: inherit;
  font-size: 2em;
  position: relative;
  height: 3rem;
  width: 1.5rem;
}
.preloader__ring:nth-child(even) {
  animation-direction: reverse;
}
.preloader__sector {
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  text-transform: uppercase;
  transform: translateZ(7rem);
  color: aqua;
}
.preloader__sector,
.preloader__sector:empty:before {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.preloader__sector:empty:before {
  background: linear-gradient(
    transparent 45%,
    currentColor 45% 55%,
    transparent 55%
  );
  content: "";
}
.preloader__sector:nth-child(2) {
  transform: rotateY(12deg) translateZ(7rem);
}
.preloader__sector:nth-child(3) {
  transform: rotateY(24deg) translateZ(7rem);
}
.preloader__sector:nth-child(4) {
  transform: rotateY(36deg) translateZ(7rem);
}
.preloader__sector:nth-child(5) {
  transform: rotateY(48deg) translateZ(7rem);
}
.preloader__sector:nth-child(6) {
  transform: rotateY(60deg) translateZ(7rem);
}
.preloader__sector:nth-child(7) {
  transform: rotateY(72deg) translateZ(7rem);
}
.preloader__sector:nth-child(8) {
  transform: rotateY(84deg) translateZ(7rem);
}
.preloader__sector:nth-child(9) {
  transform: rotateY(96deg) translateZ(7rem);
}
.preloader__sector:nth-child(10) {
  transform: rotateY(108deg) translateZ(7rem);
}
.preloader__sector:nth-child(11) {
  transform: rotateY(120deg) translateZ(7rem);
}
.preloader__sector:nth-child(12) {
  transform: rotateY(132deg) translateZ(7rem);
}
.preloader__sector:nth-child(13) {
  transform: rotateY(144deg) translateZ(7rem);
}
.preloader__sector:nth-child(14) {
  transform: rotateY(156deg) translateZ(7rem);
}
.preloader__sector:nth-child(15) {
  transform: rotateY(168deg) translateZ(7rem);
}
.preloader__sector:nth-child(16) {
  transform: rotateY(180deg) translateZ(7rem);
}
.preloader__sector:nth-child(17) {
  transform: rotateY(192deg) translateZ(7rem);
}
.preloader__sector:nth-child(18) {
  transform: rotateY(204deg) translateZ(7rem);
}
.preloader__sector:nth-child(19) {
  transform: rotateY(216deg) translateZ(7rem);
}
.preloader__sector:nth-child(20) {
  transform: rotateY(228deg) translateZ(7rem);
}
.preloader__sector:nth-child(21) {
  transform: rotateY(240deg) translateZ(7rem);
}
.preloader__sector:nth-child(22) {
  transform: rotateY(252deg) translateZ(7rem);
}
.preloader__sector:nth-child(23) {
  transform: rotateY(264deg) translateZ(7rem);
}
.preloader__sector:nth-child(24) {
  transform: rotateY(276deg) translateZ(7rem);
}
.preloader__sector:nth-child(25) {
  transform: rotateY(288deg) translateZ(7rem);
}
.preloader__sector:nth-child(26) {
  transform: rotateY(300deg) translateZ(7rem);
}
.preloader__sector:nth-child(27) {
  transform: rotateY(312deg) translateZ(7rem);
}
.preloader__sector:nth-child(28) {
  transform: rotateY(324deg) translateZ(7rem);
}
.preloader__sector:nth-child(29) {
  transform: rotateY(336deg) translateZ(7rem);
}
.preloader__sector:nth-child(30) {
  transform: rotateY(348deg) translateZ(7rem);
}

/* Media Quries */
@media (max-width: 768px) {
  .preloader__ring {
    max-width: 150px !important;
    max-height: 150px !important;
  }
}

/* Animations */
@keyframes tiltSpin {
  from {
    transform: rotateY(0) rotateX(30deg);
  }
  to {
    transform: rotateY(1turn) rotateX(30deg);
  }
}
@keyframes spin {
  from {
    transform: rotateY(0);
  }
  to {
    transform: rotateY(1turn);
  }
}

/* ABOUT */

.about-container {
  width: 100%;
  height: auto;
  padding-top: 15vh;
  min-height: 100vh;
}

.about-wrapper {
  background-color: rgb(245, 245, 245, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  border-radius: 25px;
  position: relative;
}

.about-wrapper .snow {
  position: absolute;
  right: 20px;
  top: 0;
  width: 250px;
  height: 100px;
  margin-top: -30px;
}

.about-left {
  width: auto;
}

.about-left-backdrop {
  width: 240px;
  height: 340px;
  display: flex;
  outline: 10px solid #5468ff;
  border-radius: 10px;
  z-index: 1;
}

.about-left-image {
  min-width: 240px;
  min-height: 340px;
  background: url("../images/himesh.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  filter: drop-shadow(0.6em 0.2em 2em rgb(0, 0, 0, 0.5));
}

.about-right {
  min-width: 65%;
  width: auto;
  color: rgb(255, 255, 255, 0.7);
}

.about-right h3 {
  color: white;
  font-weight: bold;
}

@media screen and (max-width: 990px) {
  .about-left {
    margin-bottom: 10px !important;
  }

  .about-wrapper .snow {
    width: 200px;
    height: 80px;
    margin-top: -25px;
  }
}

@media (max-width: 768px) {
  .about-right h3 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .about-wrapper .snow {
    width: 150px;
    height: 50px;
    margin-top: -15px;
  }
}

/* BODY */

.body-wrapper {
  width: 100vw;
  height: auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.body-container {
  height: auto;
  width: 100vw;
  margin: 0;
  padding: 0;
  align-items: center;
  color: white;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.body-container::-webkit-scrollbar {
  display: none;
}

/* CONTACT */

.contact-container {
  width: 100vw;
  height: auto;
  padding-top: 15vh;
  min-height: 100vh;
}

.contact-form {
  border-radius: 25px;
  width: 500px;
  height: auto;
  background-color: rgb(245, 245, 245, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  position: relative;
}

.contact-form .snow {
  position: absolute;
  right: 20px;
  top: 0;
  width: 200px;
  height: 80px;
  margin-top: -25px;
}

.contact-form button,
.contact-form input,
.contact-form textarea {
  border-radius: 10px;
}

.contact-form textarea {
  min-height: 150px;
}

.form-text {
  font-size: 0.9rem;
  color: #224;
}

.form-button {
  transition: 0.5s ease-in-out;
  width: 100%;
  padding: 10px;
  color: white;
}

form label {
  color: rgb(255, 255, 255, 0.7);
}

.checkbox-wrapper-46 input[type="checkbox"] {
  display: none;
  visibility: hidden;
}

.checkbox-wrapper-46 .cbx {
  margin: auto;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

.checkbox-wrapper-46 .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-46 .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #9098a9;
  transition: all 0.2s ease;
}

.checkbox-wrapper-46 .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-46 .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #506eec;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}

.checkbox-wrapper-46 .cbx span:last-child {
  padding-left: 8px;
}

.checkbox-wrapper-46 .cbx:hover span:first-child {
  border-color: #506eec;
}

.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child {
  background: #506eec;
  border-color: #506eec;
  animation: wave-46 0.4s ease;
}

.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

@keyframes wave-46 {
  50% {
    transform: scale(0.9);
  }
}

/* Media Query */

@media screen and (max-width: 990px) {
  .contact-form .snow {
    width: 180px;
    height: 70px;
    margin-top: -20px;
  }
}

@media (max-width: 768px) {
  .contact-form .snow {
    width: 150px;
    height: 50px;
    margin-top: -15px;
  }
}

/* FOOTER */

.footer-container {
  width: 100vw;
  height: auto;
  /* background-color: #272829; */
  /* font-family: 'Josefin Sans', sans-serif; */
}

/* ===================================== Footer CSS ==================================== */
footer {
  /* background-image: -moz-linear-gradient(
      135deg,
      rgba(60, 8, 118, 0.8) 0%,
      rgba(250, 0, 118, 0.8) 100%
    );
    background-image: -webkit-linear-gradient(
      135deg,
      rgba(60, 8, 118, 0.8) 0%,
      rgba(250, 0, 118, 0.8) 100%
    );
    background-image: -ms-linear-gradient(
      135deg,
      rgba(60, 8, 118, 0.8) 0%,
      rgba(250, 0, 118, 0.8) 100%
    );
    background-image: linear-gradient(
      135deg,
      rgba(60, 8, 118, 0.8) 0%,
      rgba(250, 0, 118, 0.8) 100%
    ); */
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  padding: 50px !important;
  padding: 50px;
}

footer .content-ro .footer-contact .address-row .detail {
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  align-items: flex-start;
}

@media screen and (max-width: 940px) {
  footer {
    padding: 30px 10px;
  }
}
@media screen and (max-width: 600px) {
  footer {
    padding-bottom: 0px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media screen and (max-width: 991px) {
  footer {
    padding-bottom: 50px !important;
  }
}
footer .content-ro {
  color: #fff;
  margin-top: 20px;
}
footer .content-ro h2 {
  font-size: 1.3rem;
  font-weight: 600;
}
footer .content-ro .footer-contact .address-row {
  display: flex;
  margin-top: 10px;
}
footer .content-ro .footer-contact .address-row .icon {
  padding: 15px;
}
footer .content-ro .footer-contact .address-row .detail p {
  font-weight: 300;
  display: flex;
  flex-direction: row;
  word-break: break-all;
  width: auto;
}
footer .content-ro .footer-links ul {
  margin-bottom: 15px;
}
footer .content-ro .footer-links ul li {
  float: left;
  width: 50%;
  font-weight: 300;
}
footer .content-ro .footer-links ul a {
  color: white;
}
footer .content-ro .footer-form p {
  font-weight: 300;
}
footer .content-ro .form-card {
  margin-top: -221px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  footer .content-ro .form-card {
    margin-top: 10px;
  }
}
footer .content-ro .form-card .form-title {
  padding: 20px;
  background-color: #f9f9f9;
}
footer .content-ro .form-card .form-title h4 {
  margin-bottom: 0px;
  font-weight: 600;
  color: #444;
  text-align: center;
}
footer .content-ro .form-card .form-body {
  padding: 20px;
  /* border-top: 1px solid #cccccc5; */
}
footer .content-ro .form-card .form-body input {
  border-radius: 0px;
  height: 47px;
}
footer .footer-copy {
  padding: 15px 0px;
  color: #fff;
}
footer .footer-copy a {
  color: #ccc;
}
@media screen and (max-width: 991px) {
  footer .footer-copy .socila-link {
    margin-top: 20px;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
footer .footer-copy .socila-link ul {
  width: 100%;
  padding-left: 0 !important;
  float: right;
  display: flex;
  justify-content: space-between;
}
footer .footer-copy .socila-link ul li {
  float: left;
  color: transparent;
  padding: 0px 20px;
}
footer .footer-copy .socila-link ul li a {
  color: #fff;
}

/* HEADER */

.navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 10vh;
  z-index: 100;
  transition: background-color 0.5s ease;
  /* font-family: "Roboto Mono", monospace; */
}

.basic-navbar-nav-toggle {
  outline: none !important;
  border: none !important;
}

.basic-navbar-nav-toggle .navbar-toggler-icon {
  background-image: url("../images/menu.png") !important;
  width: 25px;
  height: 25px;
}

.navbar-container.scrolled {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.5);
}

.brand-icon {
  width: 35px;
  height: 35px;
  margin-right: 0.5rem;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-container .brand-text:hover {
  outline: none;
  cursor: text;
}

.navbar-container a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: 0.5s ease-in-out;
  outline: 1px solid transparent;
  border-radius: 10px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: white;
  background-color: #7f27ff;
  border-radius: 10px;
}

.navbar-container a:hover {
  outline: 1px solid #7f27ff;
}

.navbar-container a:active {
  outline: 1px solid #7f27ff;
}

.nav-link:hover,
.nav-link:focus {
  color: white;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  margin-top: 15px;
  padding: 5px;
  border-radius: 10px;
}

.dropdown-menu a {
  color: black;
  margin-top: 10px;
}

.dropdown-menu a:first-child {
  margin-top: 0;
}

/* .navbar-toggler:focus{
      border-width: 1px !important;
      outline: none !important;
  } */

/* #basic-navbar-nav-toggle{
  outline-width: 0px !important;
  } */

@media (min-width: 300px) and (max-width: 992px) {
  .navbar-collapse {
    position: fixed;
    top: 10vh;
    left: 0;
    width: 100vw !important;
  }

  .navbar-nav {
    row-gap: 15px;
  }

  .navbar-container a {
    color: black;
    padding-left: 10px;
  }

  .navbar-container a:hover {
    color: black;
    outline: 1px solid #7f27ff;
    border-radius: 5px;
  }

  .navbar-container .brand-text:hover {
    outline: none;
  }

  .navbar-collapse {
    padding: 10px;
  }
}

/* HOME */

.home-container {
  width: 100%;
  height: auto;
  padding-top: 15vh;
  min-height: 100vh;
}

.home-container h1 {
  font-weight: bold;
}

.home-wrapper {
  height: 25em;
}

.home-wrapper h1 {
  word-spacing: 3px;
  line-height: 1.5;
}

.home-wrapper + div {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.home-left {
  justify-content: center;
  align-items: flex-start;
  width: auto;
}

.home-buttons-container {
  flex-direction: row;
}

.home-left a {
  text-decoration: none;
}

.home-right {
  width: auto;
}

.home-right > div {
  width: 100%;
  height: 100%;
  align-items: center;
}

.img-border {
  width: auto;
  height: auto;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(
    45deg,
    #190482 0%,
    #a19ad3 50%,
    #5468ff 100%
  );
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.img-container {
  min-width: 300px;
  min-height: 300px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-image: url("../images/bg-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

/* animated button */
.button-87 {
  /* padding: 0.7rem 2rem; */
  min-width: 160px;
  min-height: 46px;
  text-align: center;
  /* text-transform: uppercase; */
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 23px;
  display: block;
  border: 0px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0px 0px 14px -20px #5adaff;
  background-image: linear-gradient(
    45deg,
    #21bf73 0%,
    #158467 50%,
    #28df99 100%
  );
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-87:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.button-87:active {
  transform: scale(0.95);
}

/*animated button 2*/
.button-88 {
  /* padding: 0.7rem 2rem; */
  min-width: 160px;
  min-height: 46px;
  text-align: center;
  /* text-transform: uppercase; */
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 25px;
  display: block;
  border: 0px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0px 0px 14px -20px #5adaff;
  background-image: linear-gradient(
    45deg,
    #190482 0%,
    #009fe7 60%,
    #930de0 100%
  );
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-88:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.button-88:active {
  transform: scale(0.95);
}

/* button 29 */
.button-29 {
  align-items: center;
  appearance: none;
  background-image: radial-gradient(
    100% 100% at 100% 0,
    #5adaff 0,
    #03c988 100%
  );
  border: 0;
  border-radius: 10px;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgba(58, 65, 111, 0.5) 0 -3px 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  /* font-family: "JetBrains Mono", monospace; */
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 18px;
}

.button-29:focus {
  box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
}

.button-29:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #127c56 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button-29:active {
  box-shadow: #3c4fe0 0 3px 7px inset;
  transform: translateY(2px);
}

/*button 30*/
.button-30 {
  align-items: center;
  appearance: none;
  background-image: radial-gradient(
    100% 100% at 100% 0,
    #5adaff 0,
    #5468ff 100%
  );
  border: 0;
  border-radius: 10px;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgba(58, 65, 111, 0.5) 0 -3px 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  /* font-family: "JetBrains Mono", monospace; */
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 18px;
}

.button-30:focus {
  box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
}

.button-30:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button-30:active {
  box-shadow: #3c4fe0 0 3px 7px inset;
  transform: translateY(2px);
}

@media (max-width: 992px) {
  .home-wrapper {
    height: auto;
  }

  .home-right {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}

@media (max-width: 500px) {
  .img-container {
    width: 300px !important;
    height: 300px !important;
  }
}

@media (max-width: 400px) {
  .home-container {
    padding-top: 0 !important;
  }

  .home-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex-grow: 1;
    height: 100%;
  }

  .home-buttons-container {
    flex-direction: column;
    row-gap: 10px;
  }

  .home-buttons-container a {
    margin-top: 0 !important;
  }

  .home-buttons-container a button {
    width: 100%;
  }

  .home-buttons-container a:nth-child(2) {
    margin-left: 0 !important;
  }

  .home-right {
    display: none !important;
  }
}

/* PROJECTS */

.projects-container {
  width: 100vw;
  height: auto;
  padding-top: 15vh;
  min-height: 100vh;
}

.projects-wrapper {
  row-gap: 50px;
}

.hidden {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

.project-container {
  width: 300px;
  height: auto;
  transition: box-shadow 0.15s, transform 0.15s;
  will-change: box-shadow, transform;
  padding: 1rem;
  border-radius: 20px;
  /* font-family: "Nunito", sans-serif; */
}

.project-container p {
  padding: 0 !important;
}

.project-container a {
  text-decoration: none;
}

.project-container:hover {
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
  background-color: rgb(245, 245, 245, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.project-title {
  transition: 0.3s ease-in-out;
  font-weight: bold;
}

.project-text {
  transition: 0.3s ease-in-out;
  color: rgb(255, 255, 255, 0.7);
}

.tech-stack {
  color: rgb(255, 255, 255, 0.7);
}

.project-image {
  width: calc(300px - 2rem);
  height: 150px;
  border-radius: 10px;
}

.visit-card {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: calc(300px - 2rem);
  height: 150px;
  border-radius: 10px;
  background-color: rgb(245, 245, 245, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s;
}

.project-button {
  width: auto;
  height: 30px;
  padding: 0px 15px 0px 15px;
  font-size: 0.85rem;
  border-radius: 8px;
  background-color: #7f27ff;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0px;
}

.project-container .card-title {
  width: 100%;
  height: auto;
}

.project-container .card-title-holder {
  transition: 1s;
  border-radius: 25px;
}

.project-container .card-title-holder .title-icon {
  color: #fff455;
  min-width: 20px;
  min-height: 20px;
}

.project-container:hover .card-title-holder {
  padding: 8px;
}

.project-container:hover .card-title-holder.normal {
  background: #ff00cc;
  background: -webkit-linear-gradient(to right, #333399, #ff00cc);
  background: linear-gradient(to right, #333399, #ff00cc);
}

.project-container:hover .card-title-holder.winter {
  background: #ff00cc;
  background: -webkit-linear-gradient(to right, #4942e4, #7bc9ff);
  background: linear-gradient(to right, #4942e4, #7bc9ff);
}

.project-container:hover .card-title-holder .title-icon {
  visibility: visible;
}

.project-container:hover .project-text {
  color: white;
}

.project-container:hover .tech-stack {
  color: white;
}

.visit-card:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .project-container {
    width: 100% !important;
  }

  .projects-wrapper {
    row-gap: 20px;
  }

  .project-image {
    width: 100% !important;
    height: 300px !important;
  }

  .visit-card {
    width: calc(100% - 2rem) !important;
    height: 300px !important;
  }

  .card-body {
    margin-bottom: 40px;
  }
}

@media (max-width: 500px) {
  .project-image {
    width: 100% !important;
    height: 200px !important;
  }

  .visit-card {
    width: calc(100% - 2rem) !important;
    height: 200px !important;
  }
}

@media (max-width: 400px) {
  .project-image {
    width: 100% !important;
    height: 170px !important;
  }

  .visit-card {
    width: calc(100% - 2rem) !important;
    height: 170px !important;
  }
}

/* SKILLS */

.skills-container {
  width: 100vw;
  height: auto;
  padding-top: 15vh;
  min-height: 100vh;
}

.skills-container p {
  max-width: 400px;
}

.skill-swiper-container {
  width: 100%;
  height: auto;
  overflow-x: hidden;
  white-space: nowrap;
  display: flex;
}

.skill-swiper-slide:hover {
  animation-play-state: paused;
}

.skill-icon {
  width: 60px;
  height: 60px;
}

.skill-swiper-slide {
  width: auto;
  display: flex;
  flex-direction: row;
  animation: 50s slide infinite linear;
}

.skills-item {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skills-item span {
  text-align: center;
}

@media (max-width: 500px) {
  .skills-container p {
    max-width: 300px;
  }
}

@keyframes slide {
  from {
    transform: translateX(5%);
  }
  to {
    transform: translateX(-100%);
  }
}
