@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* END OF CSS RESET */

/* GLOBAL FONTS - START */

a {
  text-decoration: none;
  font-size: 20px;
  line-height: 23px;
  color: #151515;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.big-thin {
  text-decoration: none;
  font-size: 60px;
  line-height: 64px;
  color: #151515;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
  color: #fff;
}

.big-med {
  font-size: 60px;
  line-height: 64px;
  color: #151515;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #fff;
  font-style: normal;
}

.email-address {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-bottom: 2px dashed #fff;
  width: fit-content;
  padding-bottom: 10px;
}

.email-address a {
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

.email-address svg {
  width: 25px;
}

/* GLOBAL FONTS - END */

.container {
  padding: 40px;
  height: 100vh;
  box-sizing: border-box;
}

.main-page-wrapper {
  display: flex;
  gap: 30px;
  height: 100%;
  justify-content: space-between;
}

.main-page-wrapper > div {
  height: 100%;
}

.nav {
  position: relative;
  width: 5%;
}

.menu-wrapper {
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: 0;
  left: 100%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: left center;
}

.hero {
  background: #8184d2;
  width: 50%;
  position: relative;
  transition: filter 0.3s ease-in-out;
  border-radius: 30px;
}

.about-me {
  background: #fff;
  padding: 15px 30px;
  border-radius: 0px 0px 20px 0px;
  display: flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
}

.about-me a {
  white-space: nowrap;
}

.about-me svg {
  width: 30px;
}

.picture-of-me {
  position: relative;
}

.picture-of-me-wrapper {
  width: 25vw;
  position: absolute;
  right: 25px;
  border-radius: 100vh;
}

.picture-of-me-wrapper img {
  width: 100%;
  position: relative;
  z-index: 3;
  transform: translateY(-33px);
  border-radius: 100vh;
}

.picture-of-me-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #efaeff;
  width: 70%;
  height: 70%;
  border: 9px solid #8184d2;
  border-radius: 100vh;
  z-index: 2;
  transition:
    background 0.3s ease-in-out,
    border 0.3s ease-in-out;
}

.hero:hover {
  filter: brightness(1.1);
}

.picture-of-me-wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 80%;
  height: 80%;
  border-radius: 100vh;
  z-index: 1;
}

.introduction {
  padding-left: 40px;
  position: absolute;
  bottom: 30px;
}

.spinning-svg {
  position: absolute;
  bottom: 0px;
  right: 0px;
  animation: spin 20s linear infinite;
  transform-origin: center;
}

.spinning-svg svg {
  width: 120px;
  height: 120px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.showcase {
  width: 50%;
}

.showcase .title-header {
  padding-bottom: 30px;
}

.title-header h1 {
  font-size: 11vw;
  line-height: 11vw;
  color: #161616;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.layout {
  display: grid;
  gap: 30px;
  flex-grow: 1;
}

.row {
  display: grid;
}

/* Row 1: 75% / 25% */
.row-1 {
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}

/* Row 2: 33% / 66% */
.row-2 {
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

.row-1-col-1 {
  background: #fec267;
  padding: 30px;
  border-radius: 30px;
  transition: filter 0.3s ease-in-out !important;
  width: auto;
}

.row-1-col-1:hover {
  filter: brightness(1.1);
}

.row-1-col-2 {
  border-radius: 30px;
  width: auto;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.row-1-col-2 > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.projects-no {
  background: #a9d9d7;
  border-radius: 30px 30px 0px 0px;
  transition: filter 0.3s ease-in-out;
}

.projects-no:hover {
  filter: brightness(1.1);
}

.award-conts {
  background: #8e6fbe;
  border-radius: 0px 0px 30px 30px;
  transition: filter 0.3s ease-in-out;
}

.award-conts:hover {
  filter: brightness(1.1);
}

.number-count p,
.number {
  text-decoration: none;
  font-size: 28px;
  line-height: 32px;
  color: #151515;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.number span {
  font-weight: 300;
}

.label,
.label p {
  text-decoration: none;
  font-size: 20px;
  line-height: 24px;
  color: #151515;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.award-conts p {
  color: #fff;
}

.row-2-col-1 {
  background: #585858;
  border-radius: 30px;
  transition: filter 0.3s ease-in-out;
}

.row-2-col-1:hover {
  filter: brightness(1.1);
}

.row-2-col-2 {
  background: #161616;
  transition: background 0.3s ease-in-out;
}

.row-2-col-2:hover {
  background: #303030;
}

.logo-smile {
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-miterlimit: 10;
  stroke-dasharray: 400;
  stroke-linecap: round;
  animation: bigsmile 3.75s linear infinite;
}

.row-2 .swiper {
  min-width: 0;
}

.logo-smile-end {
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-miterlimit: 10;
  stroke-dasharray: 200;
  stroke-linecap: round;
  animation: smallsmile 3.75s linear infinite;
}

@keyframes bigsmile {
  from {
    stroke-dashoffset: 1600;
  }
  to {
    stroke-dashoffset: 800;
  }
}

@keyframes smallsmile {
  from {
    stroke-dashoffset: 800;
  }
  to {
    stroke-dashoffset: 400;
  }
}

.skills {
  border-radius: 30px;
}

.skills img,
.skills svg {
  max-width: 62px;
}

.skills > div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0px;
}

.experience {
  background: #a9d9d7;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 30px 30px 30px 30px;
  transition: filter 0.3s ease-in-out;
}

.experience:hover {
  filter: brightness(1.1);
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px 0px 0px 30px;
}

.company-logo img {
  max-width: 150px;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0px;
}

.header-logo svg {
  width: 300px;
}

.col-3.showcase {
  display: flex;
  flex-direction: column;
}

.row-2-col-2 {
  display: flex;
  border-radius: 30px;
}

.row-2-col-2 > div {
  width: 50%;
}

.swiper-slide {
  width: 100% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: auto !important;
}

.header-logo svg,
.header-logo img {
  width: 100%;
  box-sizing: border-box;
  max-width: 400px;
}

.number-count {
  display: flex;
}

/* .swiper-skills img,
.swiper-skills svg {
  width: 100% !important;
} */

.row-1-col-1 {
  position: relative;
  overflow: hidden;
}

.row-1-col-1::after {
  opacity: 0;
  content: "DRUM AWARDS WINNER";
  position: absolute;
  top: 0px;
  left: 0px;
  color: #fff;
  background: rgb(247, 67, 67);
  padding: 7px 15px;
  align-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  width: 100%;
  text-align: center;
  transform: translateY(-100%);
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}

.ouas-active::after {
  opacity: 1;
  transform: translateY(0);
}

.row-2-col-1 {
  position: relative;
  overflow: hidden;
}

.row-2-col-1::after {
  opacity: 0;
  content: "LEARNING NOW";
  position: absolute;
  top: 0px;
  left: 0px;
  color: #fff;
  background: rgb(247, 67, 67);
  padding: 7px 15px;
  align-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  width: 100%;
  text-align: center;
  transform: translateY(-100%);
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}

.react-slide::after {
  opacity: 1;
  transform: translateY(0);
}

.swiper-pagination-bullet-active {
  background: #fff !important;
}

.swiper-job .swiper-pagination-bullet {
  background: #eee !important;
}

.swiper-project .swiper-pagination-horizontal {
  top: unset !important;
  bottom: -1px !important;
}

.port-block {
  opacity: 0;
  transition:
    opacity 1s ease-in-out,
    filter 0.3s ease-in-out;
}

.port-block.show {
  opacity: 1;
}

.mob-title {
  display: none;
}

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

  .picture-of-me-wrapper {
    width: 450px;
  }

  .mob-title {
    display: block;
    padding-bottom: 30px;
  }

  .desk-title {
    display: none;
  }

  .main-page-wrapper {
    flex-direction: column;
  }

  .hero {
    width: 100%;
    height: 600px !important;
  }

  .showcase {
    width: 100%;
  }

  .picture-of-me {
    position: absolute;
    width: 50%;
    right: 0;
    top: 0;
  }

  .showcase .title-header {
    display: none;
  }

  .row-1 {
    grid-template-columns: 3fr 2fr;
    gap: 30px;
  }

  .row-1-col-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
    gap: 30px;
  }

  .row-1-col-2 > div {
    border-radius: 30px;
  }

  .row-2-col-2 {
    gap: 30px;
    background: unset !important;
  }

  .swiper-job {
    background: #303030;
    border-radius: 30px;
  }
}

@media (max-width: 980px) {
  .row-1-col-2 {
    grid-template-columns: unset;
    grid-template-rows: 1fr 1fr;
    gap: 0px;
    border-radius: 30px;
  }

  .projects-no {
    border-radius: 30px 30px 0px 0px !important;
  }

  .award-conts {
    border-radius: 0px 0px 30px 30px !important;
  }
}

@media (max-width: 900px) {
  .picture-of-me-wrapper {
    width: 375px;
  }
}

@media (max-width: 768px) {
  .row-1,
  .row-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .picture-of-me-wrapper {
    width: 275px;
  }

  .picture-of-me-wrapper img {
    transform: translateY(-26px);
  }

  .row-1-col-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
    gap: 30px;
  }

  .row-1-col-2 > div {
    padding: 30px;
    border-radius: 30px !important;
  }

  .row-2-col-2 > div {
    padding: 30px;
  }
}

@media (max-width: 650px) {
  .row-1-col-2 {
    grid-template-columns: unset;
    grid-template-rows: 1fr 1fr;
  }

  .picture-of-me-wrapper {
    display: none;
  }

  .hero {
    height: 470px !important;
  }

  .projects-no {
    border-radius: 30px 30px 0px 0px !important;
  }

  .award-conts {
    border-radius: 0px 0px 30px 30px !important;
  }

  .row-2-col-2 {
    flex-direction: column;
  }

  .row-2-col-2 > div {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 500px) {
  .introduction {
    padding-left: 20px;
  }

  .email-address a {
    font-size: 16px;
    line-height: 20px;
  }

  .email-address svg {
    width: 18px;
  }

  .skills img,
  .skills svg {
    max-width: 56px;
  }

  .container {
    padding: 20px;
  }
}

.row-1-col-1, .row-2-col-1 {
    display: flex;
    align-items: center;
    justify-content: center;
}