html {
  scroll-behavior: smooth;
}

body {
  color: #DDDDDD;
}

.skillBox {
  position: relative;
  width: 100%;
  height: 130px;
  outline: 2px solid #efefef;
  outline-offset: -2px;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
  overflow: hidden;
}
.skillBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.locked {
  position: absolute;
  top: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.5);
}

.skillBox:hover {
  transform: scale(1.1);
}

.iconLock {
  position: absolute;
  width: 30px;
  height: auto;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease !important;
}

.awards {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.awards .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  background-color: rgba(79, 181, 255, 0.9);
  z-index: 6;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.awards .awardsImg {
  position: relative;
  width: 100%;
  height: 100%;
  vertical-align: center;
}
.awards .awardsImg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.overlay:hover {
  opacity: 1;
}

#dostPdf:hover {
  color: #252525;
}

.modal {
  display: flex;
  position: relative;
  z-index: 10;
}

.modal-backdrop.show {
  opacity: 0.9;
  z-index: 3;
}

.modal-body::-webkit-scrollbar {
  width: 3px;
}

/* Style the scrollbar thumb */
.modal-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}

/* Style the scrollbar track on hover */
.modal-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media screen and (max-width: 576px) {
  .skillBox {
    padding: 15px;
  }
}/*# sourceMappingURL=about.css.map */