/* normalize css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol,
li {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Inter", sans-serif;
}

.container {
  width: 1280px;
  margin: 0 auto;
}

header {
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  color: #4b5563;
  align-items: center;
  padding: 16px 0;
}

.nav-items {
  display: flex;
  gap: 20px;
  align-items: center;
  text-transform: capitalize;
}

.download-cv {
  background-color: #fff;
  border: none;
  border-radius: 12px;
  padding: 6px 16px;
  color: #fff;
  background-color: #111827;
}

.stick {
  width: 1.5px;
  height: 30px;
  background-color: #f3f4f6;
  border-radius: 1px;
}

.fa-bars {
  display: none;
  font-size: 22px;
}

.nav-menu {
  display: none;
  flex-direction: column;
  width: 80%;
  height: 100vh;
  padding: 18px 18px 0 0;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  border-left: 400px solid rgb(255, 255, 255);
}

.nav-menu-navbar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 200px;
}

.fa-xmark {
  color: #4b5563;
  font-size: 24px;
}

.fa-sun {
  color: #4b5563;
}
.nav-menu .nav-items {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.switch-theme {
  display: flex;
  align-items: center;
  gap: 100px;
  font-size: 16px;
}

.switch-theme-title {
  width: 150px;
}

.nav-menu .download-cv {
  width: 280px;
  font-size: 14px;
}

.stick-bottom {
  width: 100%;
  height: 1px;
  background-color: #4b55632f;
}

.stick-top {
  margin: 20px 0;
  width: 100%;
  height: 1px;
  background-color: #4b55632f;
}

.showcase {
  display: flex;
  margin-top: 96px;
  justify-content: space-between;
  padding: 0 1px;
}

.showcase-content h1 {
  color: #111827;
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 12px;
}

.showcase-content p {
  color: #4b5563;
  font-weight: 300;
  line-height: 25px;
}

.online-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #10b981;
  margin-right: 6px;
}

.location-status {
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header-socials {
  display: flex;
  gap: 20px;
  font-size: 20px;
  color: #4b5563;
}

@media (max-width: 1210px) {
  .container {
    width: 375px;
  }

  .navbar img {
    width: 80px;
  }

  .nav-items {
    display: none;
  }

  .fa-bars {
    display: flex;
  }

  .showcase {
    flex-wrap: wrap-reverse;
    justify-content: center;
    margin-top: 0;
  }

  .showcase-image img {
    width: 335px;
    margin: 40px 0;
  }

  .showcase-content h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .showcase-content p {
    font-size: 14px;
  }

  .location-status {
    margin: 28px 0;
  }

  .breakPoint {
    display: none;
  }
}

/* main section */
.about {
  background-color: #f9fafb;
}
.aboutme {
  display: flex;
  justify-content: center;
  padding-top: 70px;
  margin: 96px;
}

.aboutme p {
  border-radius: 50px;
  background-color: #4b55632f;
  display: inline-block;
  padding: 2px 15px;
  color: #4b5563;
}

.main-me {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 20px;
}
.img {
  width: 49%;
}

.me {
  width: 49%;
}

.me p {
  margin-top: 20px;
  color: #4b5563;
}
.list {
  list-style-type: disc !important;
  margin-left: 30px;
  color: #4b5563;
}

.list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.list li {
  width: 42%;
  background-color: #f9fafb;
}

@media (max-width: 1210px) {
  .container {
    width: 375px;
  }
  .main-me {
    flex-direction: column;
  }

  .img,
  .me {
    width: 100%;
  }

  .me p {
    margin-top: 10px;
  }

  .list {
    margin-top: 10px;
  }
}
.skills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 70px;
  margin-top: 96px;
}
.first-p {
  display: block;
  text-align: center;
}

.first-p span {
  border-radius: 50px;
  background-color: #4b55632f;
  color: #4b5563;

  padding: 2px 15px;
}

.second-p {
  margin-top: 20px;
  color: #4b5563;
}

.icons {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 50px;
  width: 100%;
  flex-wrap: wrap;
}
.first-row {
  display: flex;
  gap: 100px;
  color: #4b5563;
}

.second-row {
  display: flex;
  gap: 100px;
  color: #4b5563;
}

.first-row div,
.second-row div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1210px) {
  .skills {
    padding-top: 35px;
    margin-top: 108px;
    width: 100%;
  }

  .first-row,
  .second-row {
    display: flex;
    flex-direction: row;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    /* width: 365px; */
  }
}

.first-row .second-row div {
  flex-direction: column;
  justify-content: center;
  color: #4b5563;
}

/* experince start */
.experience {
  display: flex;
  justify-content: center;
  padding: 70px;
  margin: 96px 80px;
  background-color: #f5f7f9;
}

.experience span {
  padding: 2px 15px;
  margin-top: 20px;
  text-align: center;
  color: #4b5563;
  background-color: #ccc9c9;
  border-radius: 50px;
  display: inline;
}
.experiense {
  text-align: center;
  margin-top: 50px;
}
.summary {
  margin-top: 20px;
  text-align: center;
  color: #4b5563;
}

.box1,
.box2,
.box3 {
  display: flex;
  justify-content: space-between;
  border: 1px solid #ffffff;
  margin-top: 50px;
  padding: 32px;
  background-color: #fff;
}

.work-status {
  margin: 0px 100px;
  list-style-type: disc;
}
.work-status ul {
  margin-top: 32px;
  text-align: left;
  line-height: 25px;
}

.work-status ul li {
  margin: 8px 0;
  color: #4b5563;
}
/* experince end */

.portfolio {
  display: flex;
  justify-content: center;
  padding-top: 70px;
  margin: 96px 80px;
}

.portfol {
  display: block;
  margin-top: 50px;
  color: #4b5563;
}

.portfo {
  text-align: center;
}

.portfo span {
  padding: 2px 15px;
  margin-top: 20px;
  color: #4b5563;
  background-color: #ccc9c9;
  border-radius: 50px;
}

.projects {
  margin-top: 20px;
  text-align: center;
  color: #4b5563;
}

.fiskil {
  display: flex;
  justify-content: space-between;
  border: 1px solid rgb(244, 237, 237);
  border-radius: 12px;
  margin: 50px;
  color: #4b5563;
}

.fiskil-text {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fiskil img {
  border: 48px solid #f1f1f1;
  border-radius: 2%;
}

.fiskil h1 {
  margin: 30px 0 0;
  display: flex;
}

.fiskil .second-h1 {
  display: block;
  text-align: end;
}

.fiskil-languages li {
  display: inline-block;
  background-color: #4b55632f;
  color: #4b5563;
  padding: 2px 15px;
  border-radius: 50px;
  margin: 4px 0;
}

.fa-arrow-up-right-from-square {
  display: inline-block;
  margin: 30px 0 0;
}

/* Testimional start */

.testimonials {
  display: flex;
  justify-content: center;
  margin: 96px 80px;
  padding: 50px 0;
  background-color: #f5f7f9;
}

.testimional {
  display: block;
  text-align: center;
  margin: 50px;
}
.testimion span {
  padding: 2px 15px;
  margin-top: 20px;
  text-align: center;
  color: #4b5563;
  background-color: #ccc9c9;
  border-radius: 50px;
}

.nice {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.vector {
  border: 1px;
  background-color: #fff;
  width: 30%;
  padding: 30px 20px;
  border-radius: 10px;
  margin: 30px 0 0;
}

.nice img {
  background-color: #9ca3af;
  border-radius: 50%;
  padding: 20px 22px;
}

.nice p {
  margin: 15px;
  text-align: start;
  color: #4b5563;
}

.nice h3 {
  padding-top: 20px;
}

.xyz {
  text-align: center !important;
}

/* Contact section start */
.contact {
  display: flex;
  justify-content: center;
  margin: 96px 80px;
  padding: 50px 0;
}

.touch {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.get span {
  padding: 2px 15px;
  margin-top: 20px;
  text-align: center;
  color: #4b5563;
  background-color: #ccc9c9;
  border-radius: 50px;
}

.gmail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 49px;
  font-size: 24px;
}

.gmail i {
  color: #4b5563;
}

.phone {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 24px;
}

.phone h1 {
  justify-content: center;
}

.phone p i {
  color: #4b5563;
}

.fa-clone {
  cursor: pointer;
}

.number {
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.platform {
  color: #4b5563;
  margin-top: 50px;
}

.icon {
  display: flex;
  gap: 15px;
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

.footer {
  background-color: #f5f7f9;
  color: #4b5563;
  padding: 40px 0 20px;
}
/* .footer span {
  text-decoration: underline;
} */

.footer p {
  text-align: center;
  margin-top: 20px;
}

.footer a {
  text-decoration: underline;
}

.copied-gmail,
.copied-phone {
  display: none;
}
