@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@400;700&display=swap");
body {
  margin: 0;
  padding: 0;
  background-color: rgb(36, 72, 60);
  height: 300vh;
  color: #fff !important;
  background: hsl(227, 10%, 10%) !important;
  font-size: 16px;
  max-width: 99.5vw !important;
}

#menuBar {
  display: none;
}

#About {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#About h5 {
  font-style: italic;
  color: white !important;
}

#About h2 {
  text-decoration: underline;
  color: white !important;
  text-decoration-thickness: 2px;
  text-decoration-style: double;
  text-decoration-color: #ef6eae !important;
}

#About li {
  color: white !important;
  font-size: 14px !important;
}

.cv-area {
  position: absolute;
  top: 20px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* TEXT ONLY = ORANGE */
.preview-cv {
  color: #ffa260 !important;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

/* DOWNLOAD simple, clean, no orange border */
.download-cv {
  color: #ffa260 !important;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 22px;
  background: transparent;
  transition: 0.3s ease;
}

.download-cv:hover {
  background: beige;
  color: black;
}

/* BIG CENTER SCREEN PREVIEW */
.cv-preview {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 90vh;
  aspect-ratio: 1/1.414;
  background: white;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
  transition: 0.4s ease;
  z-index: 9999;
}

.cv-preview img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* COMMON SENSE HOVER LOGIC */
.preview-cv:hover ~ .cv-preview {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.raise {
  --color: #ffa260;
  --hover: rgb(228.75, 255, 96);
}

.pulse {
  --color: #ef6eae;
  --hover: rgb(239, 142.75, 110);
}

.yellow {
  --color: #edb057;
  --hover: rgb(185.5, 237, 87);
}

.orange {
  --color: #c55a3c;
  --hover: rgb(197, 192.75, 60);
}

.black {
  --color: #17181c;
  --hover: rgb(25.75, 23, 28);
}

.green {
  --color: #265a30;
  --hover: #265a57;
}

.white {
  --color: #f0f1ec;
  --hover: rgb(236.25, 241, 236);
}

button {
  color: var(--color);
  transition: 0.25s;
}
button:hover, button:focus {
  border-color: var(--hover);
  color: #fff;
}

button {
  background: none;
  border: 2px solid;
  font: inherit;
  line-height: 1;
  margin: 0.5em;
  padding: 10px 20px;
  font-size: 12px;
}

.pulse {
  background: none;
  border: 2px solid #ef6eae;
  font: inherit;
  color: #ef6eae !important;
  line-height: 1;
  margin: 0.5em;
  padding: 1em 2em;
}

.pulse:hover,
.pulse:focus {
  animation: pulse 1s;
  box-shadow: 0 0 0 2em transparent;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
.raise:hover,
.raise:focus {
  box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
  transform: translateY(-0.25em);
}

.menuBtn:hover,
.menuBtn:focus {
  box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
  transform: translateY(-0.25em);
}

.animation-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.animated-div {
  width: 50px;
  height: 50px;
  background-color: blue;
  position: absolute;
  border-radius: 50%;
  /* Makes them round */
  animation: curve 2s ease-in-out forwards;
}

#top-left {
  animation-delay: 0.5s;
  top: 0%;
  left: 0%;
}

#top-right {
  animation-delay: 1.5s;
  top: 0%;
  left: 100%;
}

#bottom-right {
  animation-delay: 1s;
  top: 100%;
  left: 100%;
}

#bottom-left {
  animation-delay: 1.75s;
  top: 100%;
  left: 0%;
}

@keyframes curve {
  100% {
    top: 50%;
    left: 50%;
  }
}
.menuBtn {
  display: inline-block;
  cursor: pointer;
  height: 35px;
  margin-left: 15px;
  color: white;
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: #ffa260;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

.headerElements {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-top: 4px;
}

.headerElements li {
  margin-right: 10px;
  color: #ffa260;
  height: 52px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.wrapper {
  height: 85px;
  transition: background-color 1s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 20;
}

.bodyContainer {
  position: absolute;
  top: 120px;
  width: 100%;
  height: 100vh;
}

.headerElements li a {
  display: block;
  width: 100%;
  text-decoration: none;
  padding: 10px;
  border: 2px solid #ffa260;
  display: inline-block;
  text-align: center;
}

.getInTouch {
  margin-right: 15px;
  opacity: 1;
  transition: opacity 0.5s;
}

p {
  padding: 0;
  margin: 0 !important;
  color: white;
}

a:link,
a:visited {
  color: inherit;
}

/* svg css */
section {
  min-height: 900px;
  display: grid;
  font-family: "Bebas Neue";
}

section:nth-of-type(2) {
  background: rgb(232, 227, 214);
}

svg path {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  stroke-width: 0.9;
  stroke: #000;
  transition: stroke-dashoffset 1s;
}

.svg-container path {
  fill: none;
}

.svg-fill path {
  fill: yellow;
  transition: all 1s;
}

.svg-fill path:hover {
  fill: yellow;
  transition: all 1s;
}

.certifications {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.certifications img {
  width: 30%;
  display: block;
}

.certifications img:hover {
  border: 1px solid lightblue;
  transform: scale(1.6);
  transition: all 900ms;
}

h1,
h2,
h3,
h4,
h5 {
  text-align: center;
  font-weight: 500;
}

h1 {
  font-size: 2rem !important;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
  margin: 0 auto;
}

.image-container {
  text-align: center;
  max-width: 350px;
  min-width: 250px;
  position: relative;
  z-index: 99;
}

.image-container img {
  max-width: 100%;
  height: auto;
  transform: scale(1);
  transition: all 900ms;
}

.image-container img:hover {
  border: 3px solid lightblue;
  transform: scale(1.6);
  transition: all 900ms;
}

.carousel-item {
  text-align: center;
  height: 60vh;
}

.carousel-inner {
  height: 60vh;
  width: 60vw;
}

.carousel-item img {
  filter: brightness(0.65);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
  height: 60vh;
}

#carouselExampleDark {
  width: 60vw;
  margin: 0 auto;
}

.carousel-caption ul {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  padding: 0;
}

.carousel-caption {
  width: 100%;
  left: 0 !important;
}

.container {
  width: 80vw !important;
  margin: 0 auto !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

#quote-container {
  text-align: center;
  font-family: "Bebas Neue";
  margin: 20px;
}

#quote {
  font-size: 24px;
  margin-bottom: 10px !important;
  margin-top: 40px !important;
  font-style: italic;
}

#author {
  font-weight: bolder;
  font-size: 18px;
  color: #edb057;
}

.hide {
  opacity: 0;
}

.hiddenz {
  visibility: hidden !important;
  animation-name: none !important;
}

#bgCanvas {
  top: 0;
  left: 0;
}

.carousel-header {
  top: 10px !important;
  bottom: 0;
}

.Welcomescreen {
  text-align: center;
  min-height: 450px !important;
  height: 450px !important;
}

.viewProfile {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

nav > ul {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 4;
}

nav > ul > li {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20%;
  height: 100%;
  overflow: hidden;
  z-index: 5;
  transition: none;
}

#nav-toggle:checked ~ nav > ul > li {
  bottom: 0;
  transition: all 0.5s ease-in-out;
}

nav > ul > li > a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 20pt;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  z-index: 1;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

nav > ul > li > a:active {
  transform: scale(0.92);
}

nav > ul > li > a::after,
nav > ul > li::after {
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 0px;
  width: 100%;
  z-index: -1;
  content: "";
  background: #ef6eae;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

nav > ul > li::after {
  background: black;
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

nav > ul > li > a:hover::after {
  top: 0%;
  bottom: auto;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

nav > ul > li:hover::after {
  top: 0%;
  bottom: auto;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

nav > ul > li > a:hover {
  color: black;
  transition: all 0.3s ease-in-out;
}

nav > ul > li:nth-child(1) {
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s !important;
  left: 0;
  background-image: url("../LI/abouts.webp");
  background-size: cover;
}

nav > ul > li:nth-child(2) {
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s !important;
  left: 20%;
  background-image: url("../LI/projects.webp");
  background-size: cover;
}

nav > ul > li:nth-child(3) {
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s !important;
  left: 40%;
  background-image: url("../LI/career.webp");
  background-size: cover;
}

nav > ul > li:nth-child(4) {
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s !important;
  left: 60%;
  background-image: url("../LI/cert.webp");
  background-size: cover;
}

nav > ul > li:nth-child(5) {
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s !important;
  left: 80%;
  background-image: url("../LI/graduation.webp");
  background-size: cover;
}

@media (max-width: 890px) {
  nav > ul > li > a {
    font-size: 14pt;
    padding: 10px;
  }
  .logo-draw {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .skill {
    flex: 0 0 100% !important;
  }
  .hideMobile {
    display: none;
  }
  .getInTouch {
    display: none;
  }
  .about {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin-left: 12%;
    color: black;
  }
  nav > ul {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }
  nav > ul > li {
    height: 250px !important;
  }
  nav > ul > li {
    position: relative;
    width: 100%;
    height: auto;
    transition: none;
  }
  #nav-toggle:checked ~ nav > ul > li {
    bottom: auto;
  }
  nav > ul > li > a {
    padding: 15px;
  }
  nav > ul > li::after {
    height: 2px;
  }
  nav > ul > li > a:hover::after {
    top: 100%;
    bottom: auto;
    height: 2px;
    /* Match the underline height */
  }
  nav > ul > li:hover::after {
    top: 100%;
    bottom: auto;
    height: 2px;
    /* Match the underline height */
  }
  nav > ul > li:nth-child(1) {
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s !important;
    left: 0;
    background-image: url("../LI/abouts.webp");
    background-size: cover;
    background-position: center;
  }
  nav > ul > li:nth-child(2) {
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s !important;
    left: 0;
    background-image: url("../LI/projects.webp");
    background-size: cover;
    background-position: center;
  }
  nav > ul > li:nth-child(3) {
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s !important;
    left: 0;
    background-image: url("../LI/career.webp");
    background-size: cover;
    background-position: center;
  }
  nav > ul > li:nth-child(4) {
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s !important;
    left: 0;
    background-image: url("../LI/cert.webp");
    background-size: cover;
    background-position: center;
  }
  nav > ul > li:nth-child(5) {
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s !important;
    left: 0;
    background-image: url("../LI/graduation.webp");
    background-size: cover;
    background-position: center;
  }
  .uniProj {
    flex-direction: column;
  }
  #Education .eduImage {
    height: 100% !important;
  }
  .carousel-inner {
    width: 100vw !important;
  }
  #carouselExampleDark {
    width: 100vw !important;
  }
  .d-none {
    display: block !important;
  }
  .carousel-caption {
    bottom: 0;
  }
}
.pic {
  height: 52vh;
  width: -moz-available;
  border-radius: 20px;
}

.hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* When hovering the wrapper, trigger animation */
@keyframes riseUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.75);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(0.9);
  }
}
/* Bubble */
.thought-bubble {
  position: absolute;
  top: -150px;
  right: 40px;
  background: white;
  padding: 14px 16px;
  border-radius: 30px;
  width: 299px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: scale(0.6);
  transition: 0.4s ease;
}

.me-wrapper:hover .firstPic {
  opacity: 0;
}

.me-wrapper:hover .hover {
  opacity: 1;
  animation: riseUp 1.5s ease-out forwards;
}

.me-wrapper:hover .thought-bubble {
  opacity: 1;
  transform: scale(1);
}

.about {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-left: 12%;
  color: black;
}

.about p {
  color: black;
}

.text h2 {
  font-size: 90px;
  font-weight: 600;
  margin-bottom: 10px;
}

.text h5 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

span {
  color: #ffa260;
}

.text p {
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 1px;
}

.data {
  margin-top: 30px;
}

.hire {
  font-size: 18px;
  background: #4070f4;
  color: #fff;
  text-decoration: none;
  border: none;
  padding: 8px 25px;
  border-radius: 6px;
  transition: 0.5s;
}

.hire:hover {
  background: #000;
  border: 1px solid #4070f4;
}

.circle {
  width: 70px;
  height: 70px;
  background-color: #c55a3c;
  border-radius: 50%;
  position: relative;
  top: -323px;
  left: 202px;
}

.me {
  position: relative;
  left: 10%;
  max-width: 40vw;
}

.me-wrapper {
  position: relative;
  width: 100%;
}

.section-header {
  text-align: center;
}

.section-header h2 {
  color: #FFF;
  font-weight: bold;
  font-size: 3em;
  margin-bottom: 20px;
}

.section-header p {
  color: #FFF;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-info {
  width: 30%;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  height: 70px;
  width: 70px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
}

.contact-info-icon i {
  font-size: 30px;
  line-height: 70px;
  color: black;
}

.contact-info-content {
  margin-left: 20px;
}

.contact-info-content h4 {
  color: #1da9c0;
  font-size: 1.4em;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: #FFF;
  font-size: 1em;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  width: 45%;
  padding-bottom: 20px;
  padding-top: 20px;
}

.contact-form h2 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

.contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.contact-form .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box textarea:focus ~ span {
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}

.visited {
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}

.contact-form .input-box input[type=submit] {
  width: 100%;
  background: #00bcd4;
  color: #FFF;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #00bcd4;
  transition: 0.5s;
}

.entre {
  margin-top: 40px;
  font-style: italic;
}

#contactMe {
  min-height: 900px !important;
  background: rgb(232, 227, 214);
}

.contact-form .input-box input[type=submit]:hover {
  background: #FFF;
  color: #00bcd4;
}

.contact-info-content p {
  text-align: center;
  width: 200px;
}

@media (max-width: 991px) {
  .contact-info {
    margin-bottom: 40px;
    width: 80%;
    margin: 0 auto;
    margin-top: 40px;
  }
  .contact-form {
    width: 80%;
  }
}
.work .section-work-functions .job-features:hover {
  padding: 10px;
  text-align: center;
  color: white;
  border: 1px;
  border-top-style: none;
  border-top-color: currentcolor;
  border-right-style: none;
  border-right-color: currentcolor;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  border-left-style: none;
  border-left-color: currentcolor;
  border-radius: 30px;
  border-color: rgba(255, 255, 255, 0.2);
  border-style: solid;
  height: 160px;
  background-color: #129cf3;
  transform: scale(1.1);
}

.work .section-work-functions .job-features {
  position: relative;
  text-align: center;
  color: white;
  font-family: "Bebas Neue";
  border: 1px;
  border-radius: 10px;
  border-color: rgba(255, 255, 255, 0.2);
  border-style: solid;
  height: 160px;
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.section-work-title h1 {
  padding-top: 20px;
}

.section-work-title {
  align-content: center;
  height: 100%;
}

#parallax {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url(https://raw.githubusercontent.com/oscicen/oscicen.github.io/master/img/depth-3.png), url(https://raw.githubusercontent.com/oscicen/oscicen.github.io/master/img/depth-1.png), url(../parallax/screen.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-position: 50% 50%;
}

#parallax h1 {
  position: absolute;
  top: 77%;
  left: 73%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Arial";
  text-transform: full-width;
  opacity: 0.6;
  font-size: 70px;
}

#parallax h2 {
  position: absolute;
  width: 250px;
  top: 44%;
  left: 10%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Arial";
  font-style: italic;
  text-transform: full-width;
  opacity: 0.7;
  font-size: 40px;
}

#parallax h3 {
  position: absolute;
  width: 200px;
  top: 20%;
  left: 8%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Arial";
  text-transform: full-width;
  opacity: 0.8;
  font-size: 20px;
}

.container2 {
  text-align: center;
  color: var(--color);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

a {
  display: inline-block;
  padding: 1em 1em;
  background-color: var(--color);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 0.3em;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
}

.blank,
.other {
  width: 100%;
  min-height: 10vh;
  background-color: var(--color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.first {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.75)), url(../parallax/car1.webp);
  background-attachment: fixed;
  min-height: 600px;
  background-attachment: fixed;
}

.second {
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5)), url(../parallax/car2.webp);
  background-attachment: fixed;
  min-height: 600px;
  background-attachment: fixed;
}

.third {
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5)), url(../parallax/car3.webp);
  background-attachment: fixed;
  min-height: 600px;
  background-attachment: fixed;
}

.eduImageBk {
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5)), url(../Stock\ photos/University.webp);
  background-attachment: fixed;
  min-height: 600px;
  background-attachment: fixed;
}

.card > a {
  margin-bottom: 2em;
}

.item {
  display: flex;
  background-color: white;
  flex-direction: column;
  align-items: center;
  border-radius: 0.5em;
  box-shadow: 0px 29px 38px -15px rgba(0, 0, 0, 0.43);
}

.second {
  flex-direction: row;
  gap: 1.6em;
}

.wow {
  max-width: 250px;
}

.skill img {
  width: 128px;
  height: 128px;
}

.main {
  padding: 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px 25px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.skill {
  text-align: center;
  width: 250px;
  height: 250px;
  margin: auto;
  flex: 0 0 calc(33.33% - 30px);
}

.skill h4 {
  color: #eee;
}

.skill p {
  line-height: 21px;
}

.certImg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.75)), url(../Backgrounds/1.webp);
  background-attachment: fixed;
  min-height: 600px;
  background-attachment: fixed;
}

.skillsImg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.75)), url(../Backgrounds/1.webp);
  background-attachment: fixed;
  min-height: 600px;
  background-attachment: fixed;
}

.eduImage {
  filter: brightness(0.65);
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
  position: absolute;
  z-index: -2;
  width: 100%;
}

#Education {
  position: relative;
}

.univerisityBody {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px;
  border-top-style: none;
  border-top-color: currentcolor;
  border-right-style: none;
  border-right-color: currentcolor;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  border-left-style: none;
  border-left-color: currentcolor;
  border-color: rgba(255, 255, 255, 0.7);
  border-style: solid;
  border-radius: 10px;
  font-family: "Bebas Neue";
  padding: 20px;
  text-align: center;
}

.UniversityWrapper .image-container img:hover {
  transform: scale(2.3);
}

.uniHeader {
  padding-top: 100px;
}

.uniProj {
  display: flex;
  padding-top: 100px;
  gap: 50px;
}

.uniProj div {
  flex: 1 1 auto;
}

:root {
  --text-color: #000;
  --line-color: #000;
  --icon-color: #000;
  --icons-alignment: center;
  /* start, center, end */
}

.footer-container {
  width: 100%;
  max-width: 1120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: var(--icons-alignment);
}

.footer-container.fixed {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.footer-content {
  padding: 0 20px;
}

.footer-link {
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Bebas Neue";
  letter-spacing: 0.5px;
  position: relative;
  --x: 0;
  --y: 0;
}

.footer-link-text {
  color: var(--text-color);
  position: relative;
  transition: opacity 0.2s ease-in-out;
}

.footer-link-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
}

.footer-link:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--line-color);
  transform: scaleX(1);
  transform-origin: center;
  transition: transform 0.4s ease-in-out;
}

.footer-link:hover:after {
  transform: scaleX(0);
}

.footer-link:hover .footer-link-text {
  opacity: 0;
}

.footer-link:hover .footer-link-icon {
  transform: translate(-50%, -50%) scale(1);
}

.footer-content {
  display: flex;
}

.footer-item {
  margin-right: 28px;
}

.footer-link-icon path {
  fill: var(--icon-color);
  pointer-events: none;
}

@media screen and (max-width: 576px) {
  .footer-container {
    height: unset;
    padding: 40px 0;
  }
  .footer-content {
    flex-direction: row;
    align-items: var(--icons-alignment);
    flex-wrap: wrap;
  }
  .footer-item {
    margin-right: unset;
    margin-bottom: 28px;
  }
  .footer-link {
    font-size: 16px;
  }
}
.card {
  width: 100%;
}

.img {
  width: 90%;
  height: 200px;
  background-color: lightgrey;
  background-size: cover;
  background-position: center;
  margin-top: 20px;
  border-radius: 0.3em;
}

#About {
  background-color: #17181c;
}

#footer {
  background-color: #f0f1ec;
}

.outvites:hover {
  color: #edb057;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: sans-serif !important;
}/*# sourceMappingURL=styles.css.map */