@import url("https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap");
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  overflow-x: hidden;
  background: #031028;
}

.l324defr {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.loader-page {
  position: relative;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  position: relative;
  width: 150px;
  height: 150px;
  background: transparent;
  border-radius: 50%;
  box-shadow: 25px 25px 75px rgba(0, 0, 0, 0.55);
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader::before {
  content: "";
  position: absolute;
  inset: 20px;
  background: transparent;
  border: 1px dashed #444;
  border-radius: 50%;
  box-shadow: inset -5px -5px 25px rgba(0, 0, 0, 0.25), inset 5px 5px 35px rgba(0, 0, 0, 0.25);
}

.loader::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px dashed #444;
  box-shadow: inset -5px -5px 25px rgba(0, 0, 0, 0.25), inset 5px 5px 35px rgba(0, 0, 0, 0.25);
}

.loader span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 100%;
  background: transparent;
  transform-origin: top left;
  animation: radar81 2s linear infinite;
  border-top: 1px dashed #fff;
}

.loader span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: seagreen;
  transform-origin: top left;
  transform: rotate(-55deg);
  filter: blur(30px) drop-shadow(20px 20px 20px seagreen);
}

@keyframes radar81 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.header {
  width: 100%;
  box-sizing: border-box;
  padding-inline: 50px;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 111, 1, 0.3843137255);
  z-index: 5;
  transition: top 0.3s;
}
.header .header-wrapper {
  width: min(100%, 1960px);
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-wrapper .logo {
  width: max(100px, 10%);
  width: clamp(100px, 10%, 30%);
}
.header .header-wrapper .nav-bar {
  display: flex;
  justify-content: space-between;
}
.header .header-wrapper .nav-bar .element {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #FFF;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: monospace, sans-serif;
  padding: 5px 15px;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: color 0.3s, background-color 0.3s, transform 0.3s;
}
.header .header-wrapper .nav-bar .element:active {
  border: 2px solid #54038A;
}
.header .header-wrapper .nav-bar #logoIcon {
  position: absolute;
  display: none;
  z-index: 15;
  transform: translateX(120%);
}
.header .header-wrapper .menu-bar {
  position: relative;
  display: none;
  border: none;
  background: transparent;
}
.header .header-wrapper .menu-bar i {
  font-size: 2rem;
  padding: 5px 15px;
}

.section {
  position: relative;
  width: 100%;
  height: max(100vh, 720px);
  display: flex;
  justify-content: center;
}

#section1 .section1-wrapper {
  height: 100vh;
  width: min(100%, 1960px);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#section1 .section1-wrapper .my-image1 {
  position: relative;
  width: max(200px, 25vw);
  border-radius: 50%;
  z-index: -2;
  animation: identifier 15s ease-in-out infinite;
}
#section1 .section1-wrapper .welcome-text-container {
  font-size: 1.57vw;
  font-size: clamp(10px, 1.57vw, 30px);
  color: #FFF;
  font-weight: 700;
  font-family: monospace;
}
#section1 .section1-wrapper .welcome-text-container .welcome-text {
  font-size: 2.25em;
}
#section1 .section1-wrapper .welcome-text-container .text1 {
  background: linear-gradient(90deg, #833AB4 0%, #FD1D1D 45%, #FCB045 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#section1 .section1-wrapper .welcome-text-container .text3 {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
#section1 .section1-wrapper .welcome-text-container .text3 .skill-text {
  height: max(4vh, 4vw);
  height: clamp(25px, 4vw, 80px);
  overflow: hidden;
}
#section1 .section1-wrapper .welcome-text-container .text3 .skill-text .skill-name {
  font-size: 1em;
  text-align: center;
  background: linear-gradient(90deg, #833AB4 0%, #FD1D1D 45%, #FCB045 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: slide-animation 5s ease-in-out infinite;
}
#section1 .section1-wrapper .welcome-text-container a {
  position: relative;
  top: 50px;
  padding: 20px;
  border: 2px solid #800080;
  border-radius: 20px;
  text-decoration: none;
  color: #FF00FF;
  font-size: 1.2rem;
  transition: 0.3s;
}
#section1 .section1-wrapper .welcome-text-container a:hover {
  background: #800080;
  color: #FFF;
  border-color: transparent;
}

#section2 {
  display: flex;
  align-items: center;
  justify-self: center;
}
#section2 .continue-button-1 {
  position: absolute;
  right: 5%;
  top: 85%;
  padding: 20px;
  border: 2px solid purple;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: monospace;
  text-decoration: none;
  color: rgb(255, 0, 255);
  transition: 0.3s;
}
#section2 .continue-button-1:hover {
  background: purple;
  color: #FFF;
  border-color: transparent;
}
@media screen and (max-width: 768px) {
  #section2 .continue-button-1 {
    display: none;
  }
}
#section2 .section2-wrapper {
  width: min(100%, 1960px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
}
#section2 .section2-wrapper .my-image2 {
  position: relative;
  width: max(300px, 30%);
  border-radius: 50%/20px;
  z-index: -2;
  animation: identifier 25s ease-in-out infinite;
}
#section2 .section2-wrapper .about-text-container {
  height: 100%;
  width: max(300px, 45%);
  padding: 20px 25px;
  background: #2A3F65;
  font-size: 1.57vw;
  font-size: clamp(13px, 1.57vw, 30px);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#section2 .section2-wrapper .about-text-container .part {
  font-weight: 700;
  font-family: monospace;
}
#section2 .section2-wrapper .about-text-container .first-part {
  color: #F0F0F0;
  font-size: 1.35em;
}
#section2 .section2-wrapper .about-text-container .second-part {
  color: #00A2FF;
  font-size: 1.15em;
  margin-block: 25px;
}
#section2 .section2-wrapper .about-text-container .three-part {
  font-size: 1em;
  color: #FFFF00;
}

#section3 {
  display: flex;
  justify-content: center;
}
#section3 #wave {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
#section3 .continue-button-2 {
  position: absolute;
  right: 10%;
  top: 70%;
  padding: 20px;
  border: 2px solid purple;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: monospace;
  text-decoration: none;
  color: rgb(255, 0, 255);
  transition: 0.3s;
}
#section3 .continue-button-2:hover {
  background: purple;
  color: #FFF;
  border-color: transparent;
}
@media screen and (max-width: 768px) {
  #section3 .continue-button-2 {
    display: none;
  }
}
#section3 .section3-wrapper {
  width: min(100%, 1960px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#section3 .section3-wrapper .main-container {
  width: 90%;
  height: 88%;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}
#section3 .section3-wrapper .main-container .drop-down-button-area {
  width: 30%;
  height: 70%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}
#section3 .section3-wrapper .main-container .drop-down-button-area .drop-button {
  position: relative;
  width: 80%;
  height: 50px;
}
#section3 .section3-wrapper .main-container .drop-down-button-area .drop-button .drop- {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-size: 20px;
  font-family: monospace;
  padding-inline: 10%;
  border-radius: 20px;
  border: 2px solid #FFF;
  background: transparent;
  cursor: pointer;
  transition: 0.5s;
}
#section3 .section3-wrapper .main-container .drop-down-button-area .drop-button .drop-:hover {
  border: 2px solid transparent;
  box-shadow: 0 0 10px 5px #FFF;
}
#section3 .section3-wrapper .main-container .drop-down-button-area .drop-button .drop-:focus > i {
  transform: rotate(180deg);
}
#section3 .section3-wrapper .main-container .drop-down-button-area .drop-button .drop-:focus ~ .img-box {
  opacity: 1;
  transform: translateY(calc(70px * var(--i) - 60px));
}
#section3 .section3-wrapper .main-container .drop-down-button-area .drop-button .drop- i {
  transition: transform 0.2s;
}
@media screen and (max-width: 768px) {
  #section3 .section3-wrapper .main-container .drop-down-button-area .drop-button .drop- i {
    display: none;
  }
}
#section3 .section3-wrapper .main-container .drop-down-button-area .drop-button .drop- h1 {
  font-size: clamp(14px, 2vw, 30px);
}
#section3 .section3-wrapper .main-container .drop-down-button-area .drop-button .img-box {
  position: absolute;
  background-color: #412E2E;
  left: 0;
  top: 120%;
  width: 80%;
  height: 60px;
  padding-inline: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  opacity: 0;
  transition: 0.3s;
}
#section3 .section3-wrapper .main-container .drop-down-button-area .drop-button .img-box .skill-logo {
  width: 35px;
  height: 30px;
  padding: 10px;
  background: #FFF;
  border-radius: 20%;
}
#section3 .section3-wrapper .main-container .drop-down-button-area .drop-button .img-box .skill-text {
  color: #FFF;
  font-family: monospace;
}
@media screen and (max-width: 768px) {
  #section3 .section3-wrapper .main-container .drop-down-button-area .drop-button .img-box .skill-text {
    display: none;
  }
}

#section4 {
  background: #000;
}
#section4 .section4-wrapper {
  width: min(100%, 1960px);
  display: flex;
  justify-content: center;
  align-items: center;
}
#section4 .section4-wrapper .side-container {
  width: 50%;
  height: 60vh;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #section4 .section4-wrapper .side-container {
    width: 100%;
    height: 200px;
    align-items: center;
  }
}
#section4 .section4-wrapper .side-container .ryw23-2 {
  max-width: 100%;
}
#section4 .section4-wrapper .side-container .ryw23-2 .contact-text,
#section4 .section4-wrapper .side-container .ryw23-2 .email {
  color: #FFF;
}
#section4 .section4-wrapper .side-container .ryw23-2 .contact-text {
  font-family: "Rubik Mono One", monospace;
  font-size: clamp(30px, 4vw, 70px);
}
#section4 .section4-wrapper .side-container .ryw23-2 .email {
  font-family: sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 1.5vw, 50px);
}
#section4 .section4-wrapper .side-container .ryw23-2 .icon-container {
  margin-top: 20px;
}
#section4 .section4-wrapper .side-container .ryw23-2 .icon-container a {
  display: flex;
  text-decoration: none;
  color: #FFF;
  font-size: clamp(20px, 1.5vw, 50px);
  font-family: sans-serif;
  margin-top: 10px;
  margin-right: 15px;
  transition: 0.3s;
}
#section4 .section4-wrapper .side-container .ryw23-2 .icon-container a:active {
  color: #412BFC;
}
@media screen and (min-width: 768px) {
  #section4 .section4-wrapper .side-container .ryw23-2 .icon-container a:hover {
    color: #412BFC;
  }
}
#section4 .section4-wrapper .side-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  width: max(60%, 250px);
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  #section4 .section4-wrapper .side-container form {
    width: 100%;
  }
}
#section4 .section4-wrapper .side-container form #message-field,
#section4 .section4-wrapper .side-container form .input-field {
  width: 90%;
  font-size: 16px;
  font-family: monospace;
  font-weight: 700;
  padding: 15px 20px;
  background: #333;
  color: #FFF;
  border: none;
  border-radius: 5px;
  outline: transparent;
}
#section4 .section4-wrapper .side-container form .input-field {
  height: 20px;
}
#section4 .section4-wrapper .side-container form #message-field {
  resize: none;
}
#section4 .section4-wrapper .side-container form #submit-button {
  width: 90%;
  padding-block: 10px;
  border: none;
  border-radius: 10px;
  font-size: clamp(16px, 1vw, 20px);
  font-family: monospace;
  font-weight: 700;
  background: #412BFC;
  color: #FFF;
  outline: transparent;
  cursor: pointer;
  transition: 0.3s;
}
#section4 .section4-wrapper .side-container form #submit-button:disabled {
  opacity: 0.5;
}
#section4 .section4-wrapper .side-container form #submit-button:disabled:hover {
  background: #412BFC;
}
#section4 .section4-wrapper .side-container form #submit-button:disabled:active {
  transform: scale(1);
}
#section4 .section4-wrapper .side-container form #submit-button:hover {
  background: #7F24FA;
}
#section4 .section4-wrapper .side-container form #submit-button:active {
  transform: scale(0.9);
}
@media screen and (max-width: 768px) {
  #section4 .section4-wrapper .right {
    height: 500px;
  }
}

@keyframes identifier {
  0%, 100% {
    border-radius: 30% 70% 70% 30%/30% 52% 48% 70%;
  }
  20% {
    border-radius: 50% 50% 20% 80%/25% 80% 20% 75%;
  }
  40% {
    border-radius: 67% 33% 47% 53%/37% 20% 80% 63%;
  }
  60% {
    border-radius: 50%;
  }
  80% {
    border-radius: 50% 50% 53% 47%/26% 69% 31% 74%;
  }
}
@keyframes slide-animation {
  0% {
    transform: translateY(0%);
  }
  20% {
    transform: translateY(0%);
  }
  40% {
    transform: translateY(-100%);
  }
  60% {
    transform: translateY(-100%);
  }
  80% {
    transform: translateY(-200%);
  }
  100% {
    transform: translateY(-200%);
  }
}

/*# sourceMappingURL=style.css.map */
