/* === common css === */

body {
  background-color: white;
  min-width: 360px;
}

.navbar-light .navbar-brand {
  color: #000;
  font-size: 22px;
  font-weight: 500;
}

.nav-link:hover {
  color: #f58585 !important;
}

.nav-link.active {
  color: #f70202 !important;
}

.nav-link:link,
.nav:visited {
  font-size: 1.8;
  font-weight: 500;
}

#videos {
  border-radius: 0 40px;
  background-color: #eeeef0;
}

#contact {
  background-color: #ecf3ff;
  border-radius: 0 40px;
}

#about {
  border-radius: 40px 0;
  .card {
    min-width: 260px;
    max-width: 100%;
  }
}

.card {
  min-width: 330px;
  max-width: 330px;
  font-size: 14px;
}

.v-card {
  min-width: 330px;
}

img {
  max-width: 100%;
}

.vl {
  border-left: 1px solid #000;
  margin: 0 10px;
}

.carousel-item {
  align-content: center;
  min-height: 350px;
  p {
    max-width: 420px;
  }
}

.wide-screen-only {
  align-items: center;
  .item {
    max-width: 540px;
  }
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='yellow' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='yellow' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

/* === responsive css === */

@media only screen and (max-width: 767px) {
  .sidebar {
    padding: 10px;
    background-color: #fff;
    backdrop-filter: blur(6px);
    max-width: 80%;

    .offcanvas-header {
      button {
        align-self: end;
      }
      display: flex;
      flex-direction: column;
    }

    ul {
      text-align: center;
    }

    .btn {
      width: 100%;
      margin-top: 20px;
    }
  }
  
  .footer {
    padding-bottom: 40px;
  }
}

@media only screen and (min-width: 1000px) {
  .v-card {
    min-width: 430px;
  }
  
}
