.footer {
  padding-bottom: 70px;
}
form {
  position: relative;
}
input,
textarea {
  padding: 10px 20px;
  border-radius: 100px;
  background: rgb(232, 240, 254);
  border: 2px solid rgb(255, 255, 255);
  margin-bottom: 20px;
  resize: none;
  color: #000;
  width: 300px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(0, 0, 0, 0.52);
}
form .btn {
  position: absolute;
  left: 0;
  top: 80%;
  font-weight: 500;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: lightcoral;
}

/* loader */

@font-face {
  font-family: "icomoon";
  src: url("https://s3.amazonaws.com/icomoon.io/4/Loading/icomoon.eot?#iefix-9haulc")
      format("embedded-opentype"),
    url("https://s3.amazonaws.com/icomoon.io/4/Loading/icomoon.svg?-9haulc#icomoon")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^="icon-"],
[class*=" icon-"] {
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-spinner-5:before {
  content: "\e004";
}
.spinner {
  display: inline-block;
  font-size: 4em;
  height: 1em;
  line-height: 1;
  margin: 0.5em;
  animation: anim-rotate 2s infinite linear;
  color: lightcoral;
  text-shadow: 0 0 0.25em rgba(255, 255, 255, 0.3);
}
.loader {
  z-index: 99999999999;
  background: red;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* display: none; */
  background: rgb(43, 60, 81);
}
@keyframes anim-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.header_resume {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
.header_resume a {
  color: lightcoral;
  font-weight: 600;
  cursor: pointer;
}
.header_resume a:hover {
  cursor: pointer;
}
.header_resume a:hover svg {
  transition: all 0.3s;
}
.header_resume a:hover svg {
  margin-right: 10px;
}
.exp {
  width: 100%;
}
.exp h2 {
  text-decoration: underline;
  margin: 0;
  margin-bottom: 40px;
}
.exp .exp__item {
  margin: 25px 0;
  display: flex;
  flex-direction: column;
}
.exp .exp__item .exp__item-role {
  color: lightcoral;
}

.exp .exp__item .exp__item-desc {
  display: flex;
  justify-content: space-between;
}
.exp .exp__item .exp__item-desc h3 {
  margin: 0;
  font-size: 16px;
}

.exp .exp__item .exp__item-desc p {
  font-size: 11px;
}

.skill-item {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.skill-item::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%; /* Position above the element */
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  font-size: 12px;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1000;
}

.skill-item:hover::after {
  opacity: 1;
  visibility: visible;
}

.skill-item::before {
  content: "";
  position: absolute;
  bottom: 115%; /* Position the triangle slightly above the tooltip */
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.skill-item:hover::before {
  opacity: 1;
  visibility: visible;
}
