* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100vh;
  background-color: #0E0C0B;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  width: 15px;
}
body::-webkit-scrollbar-track {
  background-color: #0E0C0B;
}
body::-webkit-scrollbar-thumb {
  background: rgb(28, 100, 255);
  border-radius: 10px;
  border: 2px solid #0E0C0B;
}

.active.modal {
  display: flex;
}

.modalbox {
  position: absolute;
  top: 2100px;
  z-index: 25;
  width: 100vw;
  height: 120%;
  display: none;
  justify-content: center;
  align-items: start;
  backdrop-filter: blur(5px);
  padding-top: 100px;
}
@media (max-width: 950px) {
  .modalbox {
    align-items: start;
    padding-top: 30px;
  }
}

.modal {
  width: 95%;
  max-width: 1300px;
  background: #1c1816;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 60px 30px;
  display: none;
  position: relative;
}
.modal a {
  color: white;
}
@media (max-width: 950px) {
  .modal {
    padding-top: 80px;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 550px) {
  .modal {
    padding: 80px 0 60px;
  }
}
.modal-video {
  width: 52%;
  height: 100%;
}
@media (max-width: 950px) {
  .modal-video {
    width: 85%;
    height: 50%;
  }
}
.modal-video video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.modal-text {
  width: 45%;
  height: 100%;
  font-size: 0.9rem;
}
@media (max-width: 950px) {
  .modal-text {
    width: 85%;
    margin: 30px 0 50px;
  }
}
.modal-text h1 {
  background: linear-gradient(90deg, rgb(28, 100, 255), rgb(18, 67, 172));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bg-position 2.5s infinite linear;
  margin-bottom: 1rem;
}
.modal-text ul {
  color: #ddd;
  list-style: none;
  margin-bottom: 1rem;
}
.modal-text p {
  color: #ddd;
  margin-bottom: 1rem;
}
.modal-text p:last-of-type {
  margin-bottom: 0;
}
.modal .project-links {
  position: absolute;
  bottom: 15px;
}
@media (max-width: 950px) {
  .modal .project-links {
    bottom: 30px;
  }
}
.modal .project-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 15px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(28, 100, 255,0.8), rgba(18, 67, 172,0.8));
  margin: 0 15px;
}
@media (max-width: 950px) {
  .modal .project-links a {
    margin: 0 25px;
    font-size: 1.3rem;
  }
}
@media (max-width: 550px) {
  .modal .project-links a {
    font-size: 0.9rem;
    margin: 0;
  }
  .modal .project-links a:last-of-type {
    margin-left: 15px;
  }
}
.modal img {
  width: 45px;
  position: absolute;
  right: 30px;
  top: 10px;
  cursor: pointer;
}

.circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(168.18deg, rgba(28, 100, 255, 0.5) 27.05%, rgba(18, 67, 172, 0.5) 109.49%);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(50px);
}
@media (max-width: 1150px) {
  .circle {
    display: none;
  }
}

.scrollbtn {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background: linear-gradient(110deg, rgb(28, 100, 255), rgb(18, 67, 172));
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 50px;
  right: 40px;
  box-shadow: rgba(241, 94, 26, 0.3803921569) 0px 7px 29px 0px;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  z-index: 20;
}
.scrollbtn i {
  font-size: 1.2rem;
}

header {
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
}
header .shape {
  width: 650px;
  height: 650px;
  background: linear-gradient(168.18deg, rgba(28, 100, 255, 0.5) 27.05%, rgba(18, 67, 172, 0.5) 109.49%);
  filter: blur(70px);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
}
@media (max-width: 950px) {
  header .shape {
    width: 400px;
    height: 400px;
  }
}
@keyframes naturalshape1 {
  0%, 100% {
    transform: translatey(-10%);
  }
  50% {
    transform: translatey(10%);
  }
}
@keyframes naturalshape2 {
  0%, 100% {
    transform: translatey(10%);
  }
  50% {
    transform: translatey(-10%);
  }
}
header .sh1 {
  transform: rotate(240deg);
  bottom: -80px;
  left: -350px;
  animation: naturalshape1 infinite 10s linear alternate;
}
@media (max-width: 950px) {
  header .sh1 {
    left: -200px;
  }
}
header .sh2 {
  top: 100px;
  right: -350px;
  animation: naturalshape2 infinite 10s linear alternate;
}
@media (max-width: 950px) {
  header .sh2 {
    right: -200px;
  }
}
header .navbar {
  width: 100%;
  padding: 35px 10%;
  height: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 5;
  border-bottom: 1px solid rgba(144, 144, 144, 0.1882352941);
  backdrop-filter: blur(5px);
  background-color: rgba(14, 12, 11, 0.6392156863);
}
header .navbar-list {
  list-style: none;
  display: flex;
}
@media (max-width: 950px) {
  header .navbar-list {
    display: none;
  }
}
header .navbar-list li {
  margin: 0 20px;
  position: relative;
}
header .navbar-list li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, rgb(28, 100, 255), rgb(18, 67, 172));
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: 0.3s;
}
header .navbar-list li:hover::after {
  width: 80%;
}
header .navbar-list li a {
  color: white;
  font-weight: 300;
  text-decoration: none;
}
@media (max-width: 950px) {
  header .navbar-icons {
    display: none;
  }
}
header .navbar-icons a {
  color: white;
  font-size: 1.25rem;
  margin: 0 15px;
  cursor: pointer;
}
header .navbar-icons a i {
  transition: 0.5s;
}
header .navbar-icons a .fa-instagram:hover {
  color: #E1306C;
}
header .navbar-icons a .fa-github:hover {
  color: #c9510c;
}
header .navbar-icons a .fa-whatsapp:hover {
  color: #25d366;
}
header .navbar-icons a .fa-linkedin-in:hover {
  color: #0e76a8;
}
header .navbar-menu-icon {
  display: none;
  position: absolute;
  right: 20px;
}
@media (max-width: 950px) {
  header .navbar-menu-icon {
    display: block;
  }
}
header .navbar-menu-icon img {
  cursor: pointer;
  width: 70px;
  height: 70px;
}
header .side-navbar {
  position: absolute;
  top: 0;
  top: -100vh;
  width: 100%;
  height: 100vh;
  background: rgba(5, 4, 4, 0.9725490196);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
header .side-navbar .close-icon {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}
header .side-navbar .navbarmob-list {
  width: 100%;
  text-align: left;
  list-style: none;
  height: 300px;
  margin-bottom: 150px;
}
header .side-navbar .navbarmob-list li {
  margin: 50px 0;
  text-align: center;
}
header .side-navbar .navbarmob-list li:last-of-type {
  margin-top: 70px;
}
header .side-navbar .navbarmob-list li i {
  margin: 0 20px;
}
header .side-navbar .navbarmob-list li a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
}
header .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: auto;
  color: white;
}
@media (max-width: 1150px) {
  header .hero {
    width: 100%;
    padding: 0 15px;
  }
}
header .hero h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 1.56px;
  font-size: 1.3rem;
  text-align: center;
}
@media (max-width: 950px) {
  header .hero h3 {
    font-size: 1rem;
    margin-bottom: 18px;
  }
}
header .hero h1 {
  font-size: 4.5rem;
  font-weight: 600;
}
@media (max-width: 950px) {
  header .hero h1 {
    font-size: 2.8rem;
    line-height: 50px;
    text-align: center;
  }
}
header .hero h1 b {
  background: linear-gradient(90deg, rgb(28, 100, 255), rgb(18, 67, 172));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bg-position 2.5s infinite linear;
}
@keyframes bg-position {
  0%, 100% {
    background-size: 250%;
    background-position: left center;
  }
  50% {
    background-position: right center;
  }
}
header .hero .hero-p-box {
  text-align: center;
}
header .hero .hero-p-box span {
  font-size: 1.5rem;
  font-weight: 100;
  position: relative;
  top: -15px;
}
@media (max-width: 950px) {
  header .hero .hero-p-box span {
    font-size: 1rem;
    top: 5px;
  }
}

.link-ancora {
  position: absolute;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
  animation: link-animation 5s infinite linear;
}
.link-ancora .link-ancora-line {
  height: 25px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.431372549);
  position: relative;
  bottom: -35px;
  left: -2px;
}
.link-ancora a {
  color: white;
  transform: rotate(90deg);
  text-decoration: none;
}

@keyframes link-animation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.sc1-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
@media (max-width: 1150px) {
  .sc1-about {
    height: 100%;
    padding: 100px 0;
  }
}
.sc1-about-flexbox {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 95%;
  max-width: 1100px;
}
@media (max-width: 1150px) {
  .sc1-about-flexbox {
    flex-direction: column;
  }
}
.sc1-about-flexbox .img-box {
  width: 30%;
  display: flex;
}
@media (max-width: 1150px) {
  .sc1-about-flexbox .img-box {
    width: 60%;
    height: 70%;
  }
}
@media (max-width: 550px) {
  .sc1-about-flexbox .img-box {
    width: 80%;
    height: 50%;
  }
}
.sc1-about-flexbox .img-box img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(28, 100, 255, 0.7647058824);
  box-shadow: rgba(28, 100, 255, 0.3803921569) 0px 7px 29px 0px;
  filter: grayscale(100%);
  transition: 0.5s;
  cursor: pointer;
  object-fit: cover;
}
.sc1-about-flexbox .img-box img:hover {
  filter: grayscale(0%);
}
@media (max-width: 1150px) {
  .sc1-about-flexbox .img-box img {
    filter: grayscale(0%);
  }
}
.sc1-about-flexbox .text-box {
  width: 55%;
  color: rgba(255, 255, 255, 0.9137254902);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
@media (max-width: 1150px) {
  .sc1-about-flexbox .text-box {
    margin-top: 70px;
    width: 95%;
  }
}
.sc1-about-flexbox .text-box h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
@media (max-width: 1150px) {
  .sc1-about-flexbox .text-box h1 {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
.sc1-about-flexbox .text-box h1 b {
  background: linear-gradient(90deg, rgb(28, 100, 255), rgb(18, 67, 172));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bg-position 2.5s infinite linear;
}
.sc1-about-flexbox .text-box p {
  margin-bottom: 15px;
  text-align: justify;
}
@media (max-width: 950px) {
  .sc1-about-flexbox .text-box p {
    text-align: left;
    line-height: 25px;
    font-size: 0.95rem;
  }
}
.sc1-about-flexbox .text-box .cv-btn {
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  background: linear-gradient(90deg, rgb(28, 100, 255), rgb(18, 67, 172));
  border-radius: 5px;
  margin-top: 10px;
  transition: 0.5s all;
}
@media (max-width: 1150px) {
  .sc1-about-flexbox .text-box .cv-btn {
    font-size: 1.25rem;
  }
}
.sc1-about-flexbox .text-box .cv-btn:hover {
  transform: scale(1.05, 1.05);
}

.sc2-projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: 100%;
  padding: 100px 0;
}
.sc2-projects .sc2-title {
  width: 80%;
  text-align: center;
  margin-bottom: 5px;
  font-size: 2.5rem;
  color: white;
}
@media (max-width: 950px) {
  .sc2-projects .sc2-title {
    width: 95%;
    margin-bottom: 10px;
  }
}
.sc2-projects .sc2-title b {
  background: linear-gradient(90deg, rgb(28, 100, 255), rgb(18, 67, 172));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bg-position 2.5s infinite linear;
}
.sc2-projects .sc2-subtitle {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1.56px;
  text-align: center;
  margin-bottom: 75px;
  font-size: 0.9rem;
}
@media (max-width: 950px) {
  .sc2-projects .sc2-subtitle {
    margin-bottom: 50px;
  }
}
.sc2-projects .btntypes {
  padding: 10px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}
@media (max-width: 950px) {
  .sc2-projects .btntypes {
    width: 95%;
    padding: 10px;
    justify-content: center;
  }
}
.sc2-projects .btntypes button {
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgb(28, 100, 255), rgb(18, 67, 172));
  color: white;
  margin: 0 15px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Montserrat";
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 950px) {
  .sc2-projects .btntypes button {
    padding: 10px;
    font-size: 0.9rem;
    margin: 10px;
  }
}
.sc2-projects .btntypes button:hover {
  transform: scale(1.05, 1.05);
}
.sc2-projects-box {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  width: 90%;
  max-width: 1500px;
  position: relative;
}
.sc2-projects-box .project-single {
  width: 300px;
  height: 200px;
  box-shadow: rgba(34, 34, 36, 0.221) 0px 3px 15px 0px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: 0.5s;
}
.sc2-projects-box .project-single:hover {
  transform: scale(1.2);
}
@media (max-width: 550px) {
  .sc2-projects-box .project-single:hover {
    transform: scale(1.1);
  }
}
.sc2-projects-box .project-single:hover .infobar {
  display: flex;
}
.sc2-projects-box .project-single:hover .project-single-text {
  background-color: transparent;
}
.sc2-projects-box .project-single:hover .project-single-text h1, .sc2-projects-box .project-single:hover .project-single-text ul {
  display: none;
}
@media (max-width: 950px) {
  .sc2-projects-box .project-single {
    width: 80%;
    height: 300px;
    margin-bottom: 30px;
  }
}
@media (max-width: 550px) {
  .sc2-projects-box .project-single {
    width: 95%;
    height: 250px;
    margin-bottom: 30px;
  }
}
.sc2-projects-box .project-single-text {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7725490196);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 11px;
  position: relative;
  transition: 0.5s;
}
.sc2-projects-box .project-single-text h1 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
  pointer-events: none;
}
.sc2-projects-box .project-single-text ul {
  display: flex;
  list-style: none;
  pointer-events: none;
}
.sc2-projects-box .project-single-text ul li {
  background: linear-gradient(90deg, rgb(28, 100, 255), rgb(18, 67, 172));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bg-position 2.5s infinite linear;
  margin: 0 5px;
}
.sc2-projects-box .project-single-text ul li i {
  font-size: 1.25rem;
  color: white;
}
.sc2-projects-box .project-single-text .infobar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 10%;
  display: none;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7647058824);
  border-bottom-right-radius: 11px;
  border-bottom-left-radius: 11px;
}
@media (max-width: 1150px) {
  .sc2-projects-box .project-single-text .infobar {
    padding: 15px 5%;
  }
}
.sc2-projects-box .project-single-text .infobar p {
  font-size: 0.8rem;
  font-weight: bold;
  color: white;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1150px) {
  .sc2-projects-box .project-single-text .infobar p {
    font-size: 0.9rem;
  }
}
.sc2-projects-box .project-single-text .infobar button {
  margin-right: 10px;
  border: none;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  background-color: rgb(28, 100, 255);
  color: white;
  font-family: "Poppins";
  font-weight: bod;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 1150px) {
  .sc2-projects-box .project-single-text .infobar button {
    font-size: 1rem;
  }
}
.sc2-projects-box .project-single-text .infobar button:hover {
  background-color: rgba(0, 0, 0, 0.2274509804);
  outline: 1px solid #ccc;
}

.sc3-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: 100vh;
}
@media (max-width: 1150px) {
  .sc3-contact {
    height: 100%;
    padding: 100px 0;
  }
}
.sc3-contact h1 {
  width: 80%;
  text-align: center;
  margin-bottom: 5px;
  font-size: 3rem;
  color: white;
}
@media (max-width: 950px) {
  .sc3-contact h1 {
    width: 95%;
    margin-bottom: 10px;
    font-size: 2.25rem;
  }
}
.sc3-contact h1 b {
  background: linear-gradient(90deg, rgb(28, 100, 255), rgb(18, 67, 172));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bg-position 2.5s infinite linear;
}
.sc3-contact .socialbtns {
  display: flex;
  justify-content: space-around;
  width: 80%;
  margin-top: 8rem;
}
@media (max-width: 1150px) {
  .sc3-contact .socialbtns {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
  }
}
.sc3-contact .socialbtns-btn {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 25px 60px;
}
.sc3-contact .socialbtns-btn:hover i {
  background: linear-gradient(90deg, rgb(28, 100, 255), rgb(18, 67, 172));
  opacity: 1;
}
.sc3-contact .socialbtns-btn p {
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1.75px;
}
.sc3-contact .socialbtns-btn a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sc3-contact .socialbtns-btn a i {
  font-size: 3rem;
  color: white;
  background-color: #2c2724;
  padding: 35px 40px;
  border-radius: 50%;
  opacity: 0.75;
  transition: 0.5s all;
}

footer {
  text-align: center;
  color: white;
  font-size: 1.125rem;
  position: relative;
  bottom: 50px;
}
footer a {
  text-decoration: none;
  color: white;
}
footer a:hover {
  text-decoration: underline;
}

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