/* ----------------------------------- General ----------------------------------- */
:root {
  --dark-color: #2c2d30;
  --blue-color: #0cc0de;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--dark-color);
  color: rgba(255, 255, 255, 0.918);
  overflow-x: hidden;
}

.timeline-content li {
  /* list-style: none; 
   margin-left: -20px; */
  font-size: 22px;
}

li a {
  color: #fff !important;
  transition: color 0.1s ease-in-out;
}

li a:hover {
  color: var(--blue-color) !important;
}

.carousel-btn a i,
.download-resume a i {
  color: var(--blue-color) !important;
}

.base-color {
  color: var(--blue-color);
}

.dark-box {
  border-radius: 1rem;
  border: none;
  padding: 10px 10px 10px 10px;
  background-color: var(--dark-color);
  box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
}

.dark-box:hover {
  box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
}

.dark-button {
  color: #fff;
  border-radius: 1rem;
  border: none !important;
  outline: none !important;
  padding: 10px 30px;
  transition: all 0.3s ease;
  font-size: 16px;
  display: inline-block;
  background-color: var(--dark-color);
  box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
}

.dark-button:focus,
.dark-button:active {
  outline: none;
  box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
}

.dark-button:hover {
  outline: none;
  box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
  color: var(--blue-color) !important;
  transition: color 0.4s ease-in-out;
}

.image-border {
  border: none;
  background-color: var(--dark-color);
  border-radius: 1.25rem;
  box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
  padding: 5px;
}

/* Header */
header {
  height: 100vh;
}

#hero {
  margin-top: 6rem;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
}

.hero-content-container {
  margin-top: 40px;
}

.hero-content-p {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.hero-content-p div {
  text-align: left;
}

.hero-content-p li {
  list-style: none;
  margin-bottom: 3px;
}

.hero-content-p i {
  margin-right: 10px;
}

#hero .social i {
  font-size: 2rem;
}

#hero .social i:hover {
  color: var(--blue-color) !important;
  transition: color 0.3s ease-in-out;
}

.scroll-down {
  margin-top: 25px;
}

.scroll-down span {
  text-align: center;
  position: absolute;
  z-index: 1;
  left: calc(50% - 8px);
  width: 30px;
  height: 50px;
  border-radius: 50px;
  border: 3px solid #fff;
}

.scroll-down span:before {
  position: absolute;
  content: '';
  width: 6px;
  height: 10px;
  left: calc(50% - 3px);
  margin-top: 10px;
  border-radius: 5px;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
  background-color: #fff;
}

/* animation of the dot on the mouse  */
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ----------------------------------- Main ----------------------------------- */
/* project */

.carousel-control-prev-icon,
.carousel-control-next-icon {
  height: 80px;
  width: 100px;
  background-image: none;
}

.carousel-control-next-icon:after {
  content: '>';
  font-size: 50px;
  /* color: var(--blue-color); */
  color: black;
  /* margin-left: 80px; */
}

.carousel-control-prev-icon:after {
  content: '<';
  font-size: 50px;
  /* color: var(--blue-color); */
  color: black;
}

.carousel-inner {
  border-radius: 1rem;
  border: none;
  padding: 15px;
  background-color: var(--dark-color);
  box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
  margin-bottom: 20px;
}

.carousel-item img {
  border-radius: 0.7rem;
}

.carousel-indicators {
  z-index: 3 !important;
  /* background-color: var(--blue-color); */
}

.carousel-indicators li {
  background-color: black;
  height: 5px;
}

#divider {
  margin: 0px !important;
}

.contact-section {
  max-width: 800px;
  margin: 10px auto;
}

.contact-content .dark-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* expereince */
#expereince {
  width: 100%;
}

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

/* resume and expereince */
#resume .timeline-items,
#experience .timeline-items {
  padding: 30px;
  margin-top: 30px;
}

#resume .timeline-item,
#experience .timeline-item {
  position: relative;
  margin-bottom: 30px;
}

#resume .timeline-item::before,
#experience .timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  width: 1px;
  border-radius: 1rem;
  display: block;
}

#resume .timeline-contents,
#experience .timeline-contents {
  padding-left: 30px;
}

#resume .timeline-year,
#expereince .timeline-year {
  font-size: 14px;
  font-weight: 500;
}

.timeline-item:before {
  border: 1px solid #0cc0de;
}

.certificate-content a {
  color: var(--blue-color);
}

.certificate-content a:hover {
  text-decoration: none;
  color: #0b788b;
}

/* ----------------------------------- Footer ----------------------------------- */
footer {
  margin-top: 5rem;
  border-top: 1px solid black;
}

footer i {
  font-size: 1.7rem;
}

footer i:hover {
  color: var(--blue-color) !important;
  transition: 0.3s all ease-in-out;
}

.my-section .my-experience-h1 {
  padding-top: 80px;
}

/* ----------------------------------- Media Queries ----------------------------------- */
@media screen and (max-width: 9999px) {
  #hero {
    z-index: -3 !important;
  }

  .hero-content {
    width: 100%;
  }

  .divider {
    padding: 3rem;
  }

  .certificate-img img {
    width: 100% !important;
    height: 100% !important;
  }
}

@media screen and (min-width: 1000px) {
  .navbar-brand {
    margin-left: 100px;
  }

  #navbarNavDropdown {
    margin-right: 100px;
    background-color: transparent;
  }

  .divider {
    padding: 0;
  }

  #hero {
    z-index: 2 !important;
  }

  .hero-content {
    width: 55%;
  }
}

@media only screen and (max-width: 380px) {
  .certificate-img img {
    width: 100% !important;
    height: 100% !important;
  }

  #divider {
    margin: 10rem 0px !important;
  }
}

@media only screen and (min-width: 580px) {
  .my-section .my-experience-h1 {
    padding-top: 0 !important;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1500px;
  }
}
