:root {
  --primary: #000000;
  --secondary: #ffffff;
}

.primary {
  color: var(--primary);
}

.secondary {
  color: var(--secondary);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

.cursor-pointer {
  cursor: pointer;
}

.container {
  width: 80%;
  margin: 0 auto;
}
.container .header-container {
  width: 100%;
  height: 25%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container .header-container .header-profile-container {
  width: 50%;
}
.container .header-container .header-profile-container img {
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .header-container .header-link-container {
  width: 35%;
  display: flex;
  align-items: center;
}
.container .header-container .header-link-container .header-links {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
.container .header-container .header-link-container .hamburger-mode-container {
  display: flex;
}
.container .header-container .header-link-container .hamburger-mode-container .hamburger {
  display: none;
  margin-left: 0.75rem;
}
.container .header-container .header-link-container .hamburger-mode-container .mode #dark-mode {
  display: none;
}
.container .profile-container {
  width: 100%;
  height: 75%;
  /*position: relative;*/
  text-align: center;
}
.container .profile-container .profile-background-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .profile-container .profile-about {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 52px;
  font-weight: bold;
}
.container .profile-container .profile-about .color-orangered {
  padding-left: 8px;
  color: orangered;
}
.container .profile-container .profile-content-wrapper {
  display: flex;
  align-items: center;
  margin-top: 32px;
  line-height: 2;
}
.container .profile-container .profile-image-container {
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  /*padding: 25px 50px;*/
  display: flex;
  flex-direction: column;
  width: 40%;
  align-items: center;
}
.container .profile-container .profile-image-container .profile-image {
  width: 180px;
  height: 180px;
}
.container .profile-container .profile-image-container .profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 50%;
}
.container .profile-container .profile-image-container .profile-name-container {
  font-weight: bold;
  font-size: 24px;
  margin-top: 15px;
}
.container .profile-container .profile-image-container .profile-description {
  color: rgb(107, 114, 128);
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
.container .profile-container .profile-content-container {
  width: 60%;
  text-align: start;
  color: #374151;
  text-align: justify;
  font-size: 17px;
}
.container .profile-container .profile-content-container .margin-bottom-base {
  margin: 0 0 16px 0;
}
.container .profile-container .profile-content-container .margin-top-base {
  margin: 16px 0 0 0;
}
.container .project-container {
  /*padding: 25px 50px;*/
  line-height: 1.6;
}
.container .project-container .project-header {
  font-size: 22px;
  font-weight: bold;
}
.container .project-container .project-card-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.container .project-container .project-card-container .project-card {
  width: 40%;
  margin: 0 auto;
  /*background: linear-gradient(90deg, hsla(197, 14%, 57%, 1) 0%, hsla(192, 17%, 94%, 1) 100%);*/
  padding: 14px;
  border-radius: 8px;
}
.container .project-container .project-card-container .project-card .up-excise-title {
  width: 100% !important;
  height: 38px !important;
}
.container .project-container .project-card-container .project-card .riyad-capital-title {
  height: 38px !important;
}
.container .project-container .project-card-container .project-card .riyad-bank-title {
  width: 35% !important;
  height: 38px !important;
}
.container .project-container .project-card-container .project-card .project-title {
  width: 40%;
  height: 48px;
  display: flex;
  align-items: center;
  /*margin-top: 40px;*/
}
.container .project-container .project-card-container .project-card .project-title .up-excise-logo {
  width: 12%;
}
.container .project-container .project-card-container .project-card .project-title img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.container .project-container .project-card-container .project-card .project-title div {
  padding: 0 8px;
  color: #62577D;
  font-size: 20px;
  font-weight: 600;
}
.container .project-container .project-card-container .project-card .project-content {
  margin-top: 12px;
  font-size: 15px;
}
.container .project-container .project-card-container .project-card .project-content p {
  word-wrap: break-word;
  text-align: justify;
}
.container .skill-container {
  /*padding: 0 25px 50px 25px 50px;*/
  width: 100%;
}
.container .skill-container .skill-box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.container .skill-container .skill-box-container .skill-box {
  width: calc((100% - 30px) / 2);
  padding: 15px 0;
}
.container .skill-container .skill-box-container .skill-box .skill-value {
  width: 100%;
  height: 10px;
  background-color: lightgrey;
  margin-top: 10px;
}
.container .resume-container {
  padding: 16px 0;
}
.container .resume-container .resume-button {
  padding: 10px 20px;
  background-color: orangered;
  border: none;
  border-radius: 4px;
}
.container .resume-container .resume-button .resume-link {
  text-decoration: none;
  color: white;
}
.container .footer-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgb(107, 114, 128);
  padding: 35px;
}
.container .footer-container .footer-copyright-container {
  display: flex;
  align-items: center;
  margin-bottom: 1.75rem;
}
.container .footer-container .footer-copyright-container .name {
  /*margin-right: 0.5rem;*/
}
.container .footer-container .footer-copyright-container .year {
  /*margin-left: 0.5 rem;*/
}
.container .footer-container .footer-copyright-container .font-bold {
  font-weight: bold;
  margin: 0 8px;
}
.container .footer-container .footer-content-container {
  font-size: 12px;
}

.splide__pagination {
  opacity: 0;
}

.splide__list {
  align-items: center;
}

.splide__arrow {
  background: orangered !important;
  opacity: 1 !important;
  width: 3em !important;
  height: 3em !important;
}

.splide__arrow svg {
  fill: #fff !important;
  height: 1em !important;
  width: 1em !important;
}/*# sourceMappingURL=style.css.map */