@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
body {
  height: 100%;
  background: #000;
  color: white;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

body .mobile-menu {
  display: none;
}

body .content {
  position: relative;
  height: 100vh;
}

body .content.main-page {
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("/assets/images/mobile-developer-writes-program-code-on-a-computer-2022-04-28-02-46-32-utc.jpg");
}

body .content .blur {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}

body .content img.logo-mobile {
  display: none;
}

body .content .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  margin-left: 40px;
  margin-right: 40px;
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 80px);
}

body .content .header img.logo {
  width: 68px;
  -ms-grid-column-align: start;
      justify-self: start;
}

body .content .header ul.nav {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

body .content .header ul.nav li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 20px;
}

body .content .header ul.nav li a {
  color: white;
  text-decoration: none;
}

body .content .header a {
  font-weight: 400;
  text-decoration: none;
}

body .content .header h1.title {
  margin: 0;
  text-align: end;
  color: #FF2B51;
  font-weight: 400;
  line-height: 1.2;
  font-size: 25px;
  justify-items: end;
}

body .content img.hero-img {
  width: 600px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}

body .content p.job-text {
  margin: 0;
  position: fixed;
  bottom: 40px;
  left: 40px;
  text-align: start;
  line-height: 1;
  font-size: 25px;
}

body .content p.job-text span {
  color: #FF2B51;
  font-size: 18px;
}

body .content .social-media-area {
  position: fixed;
  bottom: 40px;
  right: 40px;
}

body .content .social-media-area img {
  width: 40px;
  margin-left: 10px;
}

body .content.portfolio-page {
  overflow: hidden;
}

body .content.portfolio-page .swiper {
  width: calc(100% - 80px);
  height: 100vh;
  position: absolute;
  top: 0;
}

body .content.portfolio-page .swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

body .content.portfolio-page .swiper .swiper-slide .card {
  height: 80%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .content.portfolio-page .swiper .swiper-slide .card img {
  height: 100%;
}

body .content.portfolio-page .swiper .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #fff;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

body .content.portfolio-page .swiper .swiper-pagination-bullet-active {
  color: #fff;
  background: #FF2B51;
}

.content.aboutme-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}

.content.aboutme-page .about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 80%;
}

.content.aboutme-page .about-content p {
  margin-right: 40px;
  text-align: justify;
}

.content.aboutme-page .about-content img {
  width: 150px;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-40px);
            transform: translatey(-40px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-40px);
            transform: translatey(-40px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}

@media only screen and (max-width: 768px) {
  body {
    height: 100%;
    background: #000;
    color: white;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin: 0;
  }
  body .content {
    position: relative;
    height: 100vh;
  }
  body .content.main-page {
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url("/assets/images/mobile-developer-writes-program-code-on-a-computer-2022-04-28-02-46-32-utc.webp");
  }
  body .content .blur {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
  }
  body .content img.logo-mobile {
    display: block;
    width: 68px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation: float 6s ease-in-out infinite;
            animation: float 6s ease-in-out infinite;
  }
  body .content .mobile-menu {
    display: block;
    position: absolute;
    z-index: 999;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    width: calc(100% - 80px);
    padding-left: 40px;
    padding-right: 40px;
  }
  body .content .mobile-menu ul.nav {
    list-style-type: none;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  body .content .mobile-menu ul.nav li {
    margin: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  body .content .mobile-menu ul.nav li.mobile-circle img:nth-child(1) {
    position: absolute;
    height: 64px;
    width: 64px;
  }
  body .content .mobile-menu ul.nav li.mobile-circle img:nth-child(2) {
    position: absolute;
    height: 32px;
    width: 32px;
  }
  body .content .mobile-menu ul.nav li a {
    color: white;
    text-decoration: none;
  }
  body .content .header {
    display: none;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
  }
  body .content .header img.logo {
    width: 68px;
    -ms-grid-column-align: start;
        justify-self: start;
    display: none;
  }
  body .content .header ul.nav {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-left: 5px;
  }
  body .content .header ul.nav li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 0px;
    margin-right: 10px;
  }
  body .content .header ul.nav li a {
    color: white;
    text-decoration: none;
  }
  body .content .header h1.title {
    margin: 0;
    text-align: end;
    color: #FF2B51;
    font-weight: 400;
    line-height: 1.2;
    font-size: 18px;
    justify-items: end;
  }
  body .content img.hero-img {
    width: 300px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation: float 6s ease-in-out infinite;
            animation: float 6s ease-in-out infinite;
  }
  body .content p.job-text {
    margin: 0;
    position: fixed;
    top: 30px;
    left: 20px;
    text-align: start;
    line-height: 1;
    font-size: 25px;
  }
  body .content p.job-text span {
    color: #FF2B51;
    font-size: 18px;
  }
  body .content .social-media-area {
    position: fixed;
    top: 30px;
    right: 20px;
  }
  body .content .social-media-area img {
    width: 40px;
    margin-left: 10px;
  }
  body .content.portfolio-page {
    overflow: hidden;
  }
  body .content.portfolio-page .swiper {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
  }
  body .content.portfolio-page .swiper .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  body .content.portfolio-page .swiper .swiper-slide .card {
    height: 80%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body .content.portfolio-page .swiper .swiper-slide .card img {
    height: intrinsic;
    height: auto;
    width: calc(100% - 30px);
  }
  body .content.portfolio-page .swiper .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #fff;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
  }
  body .content.portfolio-page .swiper .swiper-pagination-bullet-active {
    color: #fff;
    background: #FF2B51;
  }
  .content.aboutme-page {
    height: auto !important;
  }
  .content.aboutme-page.aboutme-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    justify-items: center;
  }
  .content.aboutme-page.aboutme-page .about-content {
    margin-top: 90px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: inherit;
  }
  .content.aboutme-page.aboutme-page .about-content p {
    margin-right: 0px;
    text-align: justify;
  }
  .content.aboutme-page.aboutme-page .about-content img {
    width: 150px;
  }
  @-webkit-keyframes float {
    0% {
      -webkit-transform: translatey(0px);
              transform: translatey(0px);
    }
    50% {
      -webkit-transform: translatey(-40px);
              transform: translatey(-40px);
    }
    100% {
      -webkit-transform: translatey(0px);
              transform: translatey(0px);
    }
  }
  @keyframes float {
    0% {
      -webkit-transform: translatey(0px);
              transform: translatey(0px);
    }
    50% {
      -webkit-transform: translatey(-40px);
              transform: translatey(-40px);
    }
    100% {
      -webkit-transform: translatey(0px);
              transform: translatey(0px);
    }
  }
}
/*# sourceMappingURL=main.css.map */