.containerSlider {
  position: relative;
  width: 100%;
  /*max-width: 400px;*/
}

.containerSlider img {
  width: 100%;
  height: auto;
}

.slide {
  border: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 2s linear;
  -moz-transition: opacity 2s linear;
  -o-transition: opacity 2s linear;
  transition: opacity 2s linear;
}

.showMe {
  opacity: 1;
}

.containerSlider .arrowRight {
  z-index: 99;
  position: relative;
  margin-top: 30%;
  margin-left: 79%;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  width: 10%;
}

.containerSlider .arrowLeft {
  z-index: 100;
  position: relative;
  margin-top: 30%;
  margin-left: 0%;
  margin-left: 0%;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  width: 10%;
}

.containerSlider .arrowRight:hover {
  transition: opacity .5s;
  opacity: 1.0;
}

.containerSlider .arrowLeft:hover {
  transition: opacity .5s;
  opacity: 1.0;
}

.sec1 {
  display: flex;
  flex-direction: row;
}

@media (min-width: 300px) {
  .simple-slider {
    display: none;
  }
}

@media (min-width: 768px) {
  .simple-slider {
    display: block;
  }
}

@media (min-width: 300px) {
  .maindiv {
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  .maindiv {
    display: flex;
    flex-direction: row;
  }
}

.btn:not(:disabled):not(.disabled) {
  width: 160px;
  background-color: var(--gray-dark);
  box-shadow: 4px 4px 6px 1px rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.69) ;
}

.btn:not(:disabled):not(.disabled):hover {
  background-color: grey;
}

.slide-par {
  color: yellow;
  font-size: 60px;
  font-weight: 600;
  text-align: right;
  margin-right: auto;
  margin-top: 300px;
  margin-left: auto;
  width: 50%;
}

.projects {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  justify-content: center;
}

.projects div {
  flex: 0 1 300px;
  box-shadow: 3px 4px 5px;
  border-right: 1px solid rgb(255,255,255) ;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(4,2,2,0.7);
  margin-right: 12px;
}

div img {
}

@media (min-width: 300px) {
  .logo-pic {
    width: 120%;
  }
}

@media (min-width: 576px) {
  .logo-pic {
    width: 340px;
  }
}

@media (min-width: 768px) {
  .logo-pic {
    width: 250px;
  }
}

@media (min-width: 992px) {
  .logo-pic {
    width: 340px;
  }
}

@media (min-width: 300px) {
  .back-button {
    display: none;
    bottom: 140px;
    right: 100px;
  }
}

@media (min-width: 992px) {
  .back-button {
    display: block;
    bottom: 140px;
    right: 100px;
    position: fixed;
  }
}

.projects div p {
  text-align: justify;
  padding-right: 20px;
  padding-left: 20px;
}

