/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

.bg-ocra {
  background-color: rgb(244, 230, 221);
}

.info p {
  font-size: 19px;
}

.info ul {
  font-size: 19px;
}

/*--------------------------------------------------------------
# About section
--------------------------------------------------------------*/

#about h2 {
  color: black;
}

#about h3 {
  color: black;
  line-height: 1.7;
}

#about .button-discover {
  border: 1px solid rgb(125, 90, 74);
  border-radius: 14px;
  padding: 8px 30px 8px 40px;
  font-weight: 400;
  color: rgb(125, 90, 74);
}

/*--------------------------------------------------------------
# Carousel Section
--------------------------------------------------------------*/
.simple-carousel {
  width: 100%;
  height: 90vh;
  background-color: rgba(63, 73, 83, 0.8);
  overflow: hidden;
  position: relative;
}

.simple-carousel .carousel,
.simple-carousel .carousel-inner,
.simple-carousel .carousel-item,
.simple-carousel .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.simple-carousel .carousel-item {
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.simple-carousel .container p {
  position: absolute;
  top: 0px;
  left: 5px;
  color: white;
  font-size: 50px;
  letter-spacing: 3;
}

.simple-carousel .carousel-item::before {
  content: "";
  background-color: rgba(30, 35, 40, 0.1);
}

.simple-carousel .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

.simple-carousel .container {
  text-align: center;
}

.simple-carousel h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 70px;
  font-weight: 700;
}

.simple-carousel p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  font-size: 30px;
}

.simple-carousel .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center;
}

.simple-carousel .carousel-inner .carousel-item,
.simple-carousel .carousel-inner .active.carousel-item-start,
.simple-carousel .carousel-inner .active.carousel-item-end {
  opacity: 1;
}

.simple-carousel .carousel-inner .active,
.simple-carousel .carousel-inner .carousel-item-next.carousel-item-start,
.simple-carousel .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

.simple-carousel .carousel-inner .carousel-item-next,
.simple-carousel .carousel-inner .carousel-item-prev,
.simple-carousel .carousel-inner .active.carousel-item-start,
.simple-carousel .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

.simple-carousel .carousel-control-next-icon,
.simple-carousel .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  /*background: rgba(255, 255, 255, 0.2);*/
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-carousel .carousel-control-next-icon:hover,
.simple-carousel .carousel-control-prev-icon:hover {
  /*background: rgba(255, 255, 255, 0.2);*/
  color: rgba(255, 255, 255, 0.8);
}

.simple-carousel .carousel-indicators li {
  cursor: pointer;
  background: rgb(196, 196, 196);
  overflow: hidden;
  border: 0;
  width: 6px;
  height: 6px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.simple-carousel .carousel-indicators li.active {
  opacity: 1;
  background: white;
}

.simple-carousel .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #0a74ba;
}

.simple-carousel .btn-get-started:hover {
  background: #df3740;
}

.simple-carousel .carousel-container .title{
  background-color: rgba(255, 255, 255, 0.488);
  color: black;
  padding: 20px;
  font-size: 28px;
}

/*--------------------------------------------------------------
# Media queries
--------------------------------------------------------------*/


@media (max-width: 992px) {
  .simple-carousel {
    height: 100vh;
  }

  .simple-carousel .carousel-container {
    top: 8px;
  }
}


@media (max-width: 768px) {
  .simple-carousel h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  .simple-carousel .carousel-control-prev,
  .simple-carousel .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  .simple-carousel {
    height: 120vh;
  }
}

@media (max-width: 768px) {
  #about h1 {
    font-size: 30px;
  }

  #about h2 {
    font-size: 15px;
  }

  #about .button-discover {
    font-size: 12px;
  }

  .info p {
    font-size: 16px;
  }
}