body {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  background-color: #0c0c0c;
}

h1 {
  font-size: clamp(35px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

h2 {
  font-size: clamp(32px, 4.3vw, 60px);
  font-weight: 700;
  line-height: 80px;
  color: #fff;
}

h3 {
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  line-height: 41px;
  color: #fff;
}

p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 30px;
  color: #fff;
}

.buttons .btn1,
.buttons .btn2 {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  color: #0c0c0c;
  text-decoration: none;
  border: none;
  padding: 25px 60px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.buttons .btn1 {
  background-color: #5cff6f;
  box-shadow: 2px 2px 0 #fff;
}
.buttons .btn1:active, .buttons .btn1:hover {
  background-color: #fff;
  box-shadow: 5px 5px 0 #5cff6f;
  transform: scale(0.95);
}
.buttons .btn2 {
  background-color: #fff;
  box-shadow: 2px 2px 0 #5cff6f;
}
.buttons .btn2:active, .buttons .btn2:hover {
  background-color: #5cff6f;
  box-shadow: 5px 5px 0 #fff;
  transform: scale(0.95);
}
.buttons:has(.btn1:hover) .btn2, .buttons:has(.btn2:hover) .btn1 {
  transform: scale(0.5) rotate(10deg);
  opacity: 0.5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html body {
  overflow-x: hidden;
  background-color: #0c0c0c;
}

.left-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #060606;
  border-right: 1px solid #bababa;
  height: 100vh;
  width: 350px;
  text-align: center;
  z-index: 99999;
}
.left-fixed .logo {
  padding: 64px 32px;
  border-bottom: 1px solid #bababa;
  cursor: pointer;
}
.left-fixed .logo:hover {
  background-color: #161616;
}
.left-fixed .menu-container {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
.left-fixed .menu-container .menu-item {
  text-decoration: none;
  color: inherit;
  border: 1px solid #1c1c1c;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.left-fixed .menu-container .menu-item .icon {
  background-color: #1c1c1c;
  padding: 12px 22px;
  transition: all 0.3s ease-in-out;
}
.left-fixed .menu-container .menu-item .icon svg {
  transition: all 0.3s ease-in-out;
}
.left-fixed .menu-container .menu-item span {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: #fff;
  transition: color 0.3s ease-in-out;
}
.left-fixed .menu-container .menu-item:hover span {
  color: #5cff6f;
}
.left-fixed .menu-container .menu-item:hover .icon {
  background-color: #5cff6f;
}
.left-fixed .menu-container .menu-item:hover .icon svg {
  fill: #1c1c1c;
}

.right-main {
  position: relative;
  width: calc(100% - 350px);
  margin-left: auto;
  display: flex;
  flex-direction: column;
  background-image: url(assets/Images/Hero\ Background.png);
  background-position: top;
  background-repeat: no-repeat;
}
.right-main section {
  padding: 100px 8%;
}
.right-main .arrow-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
}
.right-main .arrow-up a {
  background-color: #161616;
  padding: 16px;
  border: 1px solid #bababa;
  transition: all 0.3s ease;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.1);
}
.right-main .arrow-up a svg {
  transform: rotate(-90deg);
  transition: all 0.3s ease;
  width: 15px;
  height: 15px;
}
.right-main .arrow-up a:active, .right-main .arrow-up a:hover {
  background-color: #0c0c0c;
}
.right-main .arrow-up a:active svg path, .right-main .arrow-up a:hover svg path {
  fill: #5cff6f;
}
.right-main .hero-section {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100vh;
}
.right-main .hero-section .hero-content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.right-main .hero-section span {
  color: #5cff6f;
}
.right-main .hero-section .buttons {
  display: flex;
  gap: 64px;
  margin: 32px 0;
}
.right-main .hero-section .socials {
  display: flex;
  gap: 64px;
  align-items: center;
}
.right-main .hero-section .socials .social-icon {
  padding: 14px;
  background-color: #0c0c0c;
  border: 1px solid #bababa;
  cursor: pointer;
  transition: all 0.3s ease;
}
.right-main .hero-section .socials .social-icon img {
  width: 40px;
  height: 40px;
}
.right-main .hero-section .socials .social-icon:hover {
  background-color: #1c1c1c;
  transform: scale(0.95);
}
.right-main .about-section {
  display: flex;
  gap: 100px;
  align-items: center;
  margin-top: 200px;
}
.right-main .about-section .about-right-content p span {
  color: #5cff6f;
  font-weight: 700;
}
.right-main .about-section .about-right-content a {
  display: inline-block;
  color: #5cff6f;
  margin-top: 64px;
  font-size: 22px;
  position: relative;
  z-index: 2;
  padding: 10px;
  transition: all 0.5s ease;
}
.right-main .about-section .about-right-content a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #5cff6f;
  transition: all 0.5s ease;
  z-index: -1;
}
.right-main .about-section .about-right-content a:hover:before {
  width: 100%;
}
.right-main .about-section .about-right-content a:hover {
  color: #0c0c0c;
}
.right-main .animated-section {
  max-width: 100%;
  overflow: hidden;
  background-color: #222222;
  border: 1px solid #bababa;
  padding: 20px;
  position: relative;
}
.right-main .animated-section .marquee-wrapper {
  background-color: #1d1d1d;
  padding: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 15s linear infinite;
}
.right-main .animated-section .marquee-wrapper:hover {
  animation-play-state: paused;
}
.right-main .animated-section .marquee {
  display: flex;
  gap: 40px;
}
.right-main .animated-section .item {
  display: flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
}
.right-main .animated-section .item span {
  font-size: 25px;
  font-weight: 700;
}
.right-main .animated-section .item svg {
  fill: #5cff6f;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.right-main .skills-section {
  margin-top: 130px;
  text-align: center;
}
.right-main .skills-section h2 {
  margin-bottom: 80px;
}
.right-main .skills-section span {
  color: #5cff6f;
}
.right-main .skills-section .skills-container {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, 250px);
  justify-content: center;
  gap: 55px;
}
.right-main .skills-section .skills-container li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 50px;
  height: 250px;
  border: 1px solid #bababa;
  box-shadow: 5px 5px 0 transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #0c0c0c;
  color: #ffffff;
}
.right-main .skills-section .skills-container li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  border: 0.3px solid #bababa;
  z-index: -1;
  transition: all 0.3s ease;
}
.right-main .skills-section .skills-container li img {
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
}
.right-main .skills-section .skills-container li h3 {
  transition: color 0.3s ease;
  position: relative;
}
.right-main .skills-section .skills-container li h3::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #5cff6f;
  transition: all 0.6s ease;
}
.right-main .skills-section .skills-container li::after {
  content: "";
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  background-color: #5cff6f;
  border: 1px solid #bababa;
  opacity: 0;
  transform: scale(0.4);
  transition: all 0.4s ease;
}
.right-main .skills-section .skills-container li:active, .right-main .skills-section .skills-container li:hover {
  background-color: #161616;
  box-shadow: 5px 5px 0 #5cff6f;
  color: #060606;
}
.right-main .skills-section .skills-container li:active::before, .right-main .skills-section .skills-container li:hover::before {
  border-color: #6d8bff;
}
.right-main .skills-section .skills-container li:active h3:before, .right-main .skills-section .skills-container li:hover h3::before {
  width: 100%;
}
.right-main .skills-section .skills-container li:active img, .right-main .skills-section .skills-container li:hover img {
  transform: scale(1.2);
}
.right-main .skills-section .skills-container li:active::after, .right-main .skills-section .skills-container li:hover::after {
  opacity: 1;
  transform: rotate(135deg);
}
.right-main .services-section {
  text-align: center;
}
.right-main .services-section h2 {
  margin-bottom: 165px;
}
.right-main .services-section h2 span {
  color: #5cff6f;
}
.right-main .services-section .services-container {
  display: flex;
  justify-content: space-between;
  gap: 55px;
}
.right-main .services-section .services-container .service-box {
  background-color: #0c0c0c;
  border: 1px solid #bababa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px;
  transition: all 0.3s ease;
  position: relative;
}
.right-main .services-section .services-container .service-box .icon-box {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #161616;
  border: 1px solid #bababa;
  transform: rotate(45deg);
  position: absolute;
  top: -60px;
  transition: all 0.3s ease;
}
.right-main .services-section .services-container .service-box .icon-box svg {
  transform: rotate(-45deg);
  width: 70px;
  height: 50px;
}
.right-main .services-section .services-container .service-box .icon-box svg path {
  fill: currentColor;
  transition: all 0.4s ease;
}
.right-main .services-section .services-container .service-box h3 {
  position: relative;
  margin-bottom: 16px;
  margin-top: 16px;
}
.right-main .services-section .services-container .service-box h3::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 20%;
  height: 2px;
  transform: translateX(-50%);
  background-color: #5cff6f;
  transition: all 0.3s ease;
}
.right-main .services-section .services-container .service-box .service-button {
  padding-right: 32px;
  background-color: #161616;
  margin-top: 32px;
  border: 1px solid #bababa;
  display: flex;
  align-items: center;
}
.right-main .services-section .services-container .service-box .service-button a {
  padding: 16px 32px;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 30px;
  color: #fff;
}
.right-main .services-section .services-container .service-box .service-button a:active, .right-main .services-section .services-container .service-box .service-button a:hover {
  color: #5cff6f;
}
.right-main .services-section .services-container .service-box .service-button a span {
  margin-right: 16px;
  transition: all 0.3s ease;
}
.right-main .services-section .services-container .service-box .service-button a:active span, .right-main .services-section .services-container .service-box .service-button a:hover span {
  margin-right: 32px;
}
.right-main .services-section .services-container .service-box .service-button a:active svg path, .right-main .services-section .services-container .service-box .service-button a:hover svg path {
  fill: #5cff6f;
}
.right-main .services-section .services-container .service-box:hover {
  box-shadow: 5px 5px 0 #5cff6f;
}
.right-main .services-section .services-container .service-box:hover .icon-box {
  background-color: #5cff6f;
}
.right-main .services-section .services-container .service-box:hover .icon-box svg path {
  fill: #0c0c0c;
}
.right-main .services-section .services-container .service-box:hover h3:before {
  width: 100%;
}
.right-main .portfolio-section {
  text-align: center;
}
.right-main .portfolio-section h2 {
  margin-bottom: 80px;
}
.right-main .portfolio-section span {
  color: #5cff6f;
}
.right-main .portfolio-section .portfolio-cards-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.right-main .portfolio-section .portfolio-cards-container .portfolio-card-row {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}
.right-main .portfolio-section .portfolio-cards-container .portfolio-card-row .portfolio-img {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.right-main .portfolio-section .portfolio-cards-container .portfolio-card-row .portfolio-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}
.right-main .portfolio-section .portfolio-cards-container .portfolio-card-row .portfolio-content {
  display: flex;
  flex-direction: column;
  text-align: start;
  gap: 32px;
  flex: 1;
  max-width: 50%;
}
.right-main .portfolio-section .portfolio-cards-container .portfolio-card-row .portfolio-content h3 span {
  color: #5cff6f;
}
.right-main .portfolio-section .portfolio-cards-container .portfolio-card-row .portfolio-content p {
  color: #71717a;
}
.right-main .portfolio-section .portfolio-cards-container .portfolio-card-row .portfolio-content a {
  padding: 16px 32px;
  background-color: #5cff6f;
  text-decoration: none;
  color: #0c0c0c;
  width: -moz-max-content;
  width: max-content;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  box-shadow: 3px 3px 0 #fff;
  transition: all 0.3s ease;
}
.right-main .portfolio-section .portfolio-cards-container .portfolio-card-row .portfolio-content a:hover {
  background-color: #fff;
  box-shadow: 3px 3px 0 #5cff6f;
  transform: scale(0.95);
}
.right-main .portfolio-section .portfolio-cards-container .portfolio-card-row:active .portfolio-img, .right-main .portfolio-section .portfolio-cards-container .portfolio-card-row:hover .portfolio-img {
  box-shadow: 5px 5px 0 #5cff6f;
}
.right-main .portfolio-section .portfolio-cards-container .portfolio-card-row:active .portfolio-img img, .right-main .portfolio-section .portfolio-cards-container .portfolio-card-row:hover .portfolio-img img {
  transform: scale(1.2);
}
.right-main .contact-section .title {
  text-align: center;
}
.right-main .contact-section .title h2 {
  margin-bottom: 80px;
}
.right-main .contact-section span {
  color: #5cff6f;
}
.right-main .contact-section .contact-section-container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 64px;
}
.right-main .contact-section .contact-section-container .form {
  flex: 1;
}
.right-main .contact-section .contact-section-container form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.right-main .contact-section .contact-section-container form input {
  padding: 20px;
  border: 1px solid #bababa;
  background-color: #0c0c0c;
  cursor: pointer;
  outline: none;
  font-size: 20px;
  transition: all 0.3s ease;
  color: #fff;
}
.right-main .contact-section .contact-section-container form input ::-moz-placeholder {
  color: #161616;
}
.right-main .contact-section .contact-section-container form input ::placeholder {
  color: #161616;
}
.right-main .contact-section .contact-section-container form input:focus, .right-main .contact-section .contact-section-container form input:active, .right-main .contact-section .contact-section-container form input:hover {
  box-shadow: 3px 3px 0 #5cff6f;
  background-color: #060606;
}
.right-main .contact-section .contact-section-container form textarea {
  padding: 20px 20px 60px 20px;
  border: 1px solid #bababa;
  background-color: #0c0c0c;
  cursor: pointer;
  outline: none;
  font-size: 20px;
  transition: all 0.3s ease;
  resize: none;
  color: #fff;
}
.right-main .contact-section .contact-section-container form textarea ::-moz-placeholder {
  color: #161616;
}
.right-main .contact-section .contact-section-container form textarea ::placeholder {
  color: #161616;
}
.right-main .contact-section .contact-section-container form textarea:focus, .right-main .contact-section .contact-section-container form textarea:active, .right-main .contact-section .contact-section-container form textarea:hover {
  box-shadow: 3px 3px 0 #5cff6f;
  background-color: #060606;
}
.right-main .contact-section .contact-section-container form .btn1 {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  font-size: 20px;
  color: #0c0c0c;
  font-weight: 700;
  line-height: 27px;
  padding: 25px 60px;
  cursor: pointer;
  background-color: #5cff6f;
  box-shadow: 2px 2px 0 #fff;
  transition: all 0.3s ease;
}
.right-main .contact-section .contact-section-container form .btn1:active, .right-main .contact-section .contact-section-container form .btn1:hover {
  background-color: #fff;
  box-shadow: 5px 5px 0 #5cff6f;
  transform: scale(0.95);
}
.right-main .contact-section .contact-section-container .contact-right-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.right-main .contact-section .contact-section-container .contact-right-content h3 {
  text-align: start;
}
.right-main .contact-section .contact-section-container .contact-right-content .contact-social-icons {
  display: flex;
  gap: 64px;
}
.right-main .contact-section .contact-section-container .contact-right-content .contact-social-icons .social-icon {
  padding: 14px;
  background-color: #0c0c0c;
  border: 1px solid #bababa;
  cursor: pointer;
  transition: all 0.3s ease;
}
.right-main .contact-section .contact-section-container .contact-right-content .contact-social-icons .social-icon img {
  width: 40px;
  height: 40px;
}
.right-main .contact-section .contact-section-container .contact-right-content .contact-social-icons .social-icon:active, .right-main .contact-section .contact-section-container .contact-right-content .contact-social-icons .social-icon:hover {
  background-color: #1c1c1c;
  transform: scale(0.95);
}
.right-main .footer {
  padding-bottom: 80px;
}
.right-main .footer footer {
  text-align: center;
  font-weight: 900;
}
.right-main .footer footer .footer-logo {
  font-size: clamp(35px, 6vw, 110px);
}
.right-main .footer footer span {
  color: #5cff6f;
}
.right-main .footer footer .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
}
.right-main .footer footer .footer-content a {
  padding: 10px;
  color: #5cff6f;
  text-underline-offset: 2px;
  font-weight: 400;
  transition: all 0.4s ease;
}
.right-main .footer footer .footer-content a:hover {
  transform: scale(0.95);
  box-shadow: 0 0 10px rgba(92, 255, 111, 0.4745098039);
}

@media (max-width: 1630px) {
  .right-main .about-section {
    flex-direction: column;
    text-align: center;
  }
  .right-main .services-section .services-container {
    flex-direction: column;
    gap: 110px;
    margin-top: 130px;
  }
  .right-main .contact-section .contact-section-container {
    flex-direction: column;
    align-items: center;
  }
  .right-main .contact-section .contact-section-container .form {
    width: 100%;
  }
  .right-main .contact-section .contact-section-container .form form .btn1 {
    align-self: center;
  }
  .right-main .contact-section .contact-section-container .contact-right-content {
    align-items: center;
  }
}
@media (max-width: 1400px) {
  .right-main .portfolio-section .portfolio-cards-container {
    gap: 64px;
  }
  .right-main .portfolio-section .portfolio-cards-container .portfolio-card-row {
    flex-direction: column;
    gap: 32px;
  }
  .right-main .portfolio-section .portfolio-cards-container .portfolio-card-row .portfolio-img {
    max-width: 100%;
  }
  .right-main .portfolio-section .portfolio-cards-container .portfolio-card-row .portfolio-content {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .right-main .portfolio-section .portfolio-cards-container:nth-child(2) .portfolio-img {
    order: -1;
  }
}
@media (max-width: 1150px) {
  .right-main .hero-section .hero-content {
    gap: 16px;
  }
  .buttons .btn1,
  .buttons .btn2 {
    font-size: 16px;
    padding: 15px 40px;
  }
  .right-main .hero-section .socials {
    gap: 32px;
    flex-wrap: wrap;
  }
  .right-main .hero-section .socials .social-icon {
    padding: 10px;
  }
  .right-main .hero-section .socials .social-icon img {
    width: 30px;
    height: 30px;
  }
  .right-main .about-section {
    gap: 64px;
  }
  .about-section .about-left-img img {
    width: 350px;
    height: auto;
  }
  .right-main .portfolio-section h2 {
    margin-bottom: 40px;
  }
  .right-main .portfolio-section .portfolio-cards-container .portfolio-card-row .portfolio-content a {
    padding: 12px 24px;
    font-size: 16px;
  }
  .right-main .contact-section .title h2 {
    margin-bottom: 40px;
  }
  .right-main .contact-section .contact-section-container form .btn1 {
    font-size: 16px;
    padding: 15px 40px;
  }
  .right-main .contact-section .contact-section-container .contact-right-content h3 {
    text-align: center;
  }
  .right-main .contact-section .contact-section-container .contact-right-content .contact-social-icons {
    gap: 32px;
    flex-wrap: wrap;
  }
  .right-main .contact-section .contact-section-container .contact-right-content .contact-social-icons .social-icon {
    padding: 10px;
  }
  .right-main .contact-section .contact-section-container .contact-right-content .contact-social-icons .social-icon img {
    width: 30px;
    height: 30px;
  }
  .right-main .footer footer .footer-content {
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 870px) {
  .left-fixed {
    display: none;
  }
  .right-main {
    width: 100%;
    text-align: center;
  }
  .right-main section {
    padding: 50px 6%;
  }
  .right-main .hero-section .hero-content {
    justify-content: center;
    align-items: center;
  }
  .right-main .about-section .about-right-content a {
    margin-top: 32px;
  }
  .right-main .skills-section {
    margin-top: 0;
  }
  .right-main .arrow-up {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 565px) {
  .right-main {
    background-image: url(assets/Images/Hero\ Background\ Mobile.png);
    background-position: top left;
  }
  .right-main .hero-section .buttons {
    flex-direction: column;
    gap: 32px;
    margin: 16px 0;
  }
  .about-section .about-left-img img {
    width: 250px;
  }
  .right-main .services-section h2 {
    margin-bottom: 40px;
  }
  .right-main .services-section .services-container .service-box {
    padding: 40px;
  }
  .right-main .services-section .services-container .service-box .icon-box {
    width: 70px;
    height: 70px;
    top: -35px;
  }
  .right-main .services-section .services-container .service-box .icon-box svg {
    width: 50px;
    height: 30px;
  }
  .right-main .services-section .services-container .service-box .service-button a {
    padding: 10px 16px;
  }
  .right-main .services-section .services-container .service-box .service-button {
    padding-right: 16px;
  }
  .right-main .portfolio-section .portfolio-cards-container .portfolio-card-row .portfolio-content {
    gap: 16px;
  }
}/*# sourceMappingURL=style.css.map */