/* GLOBAL STYLES
-------------------------------------------------- */


/* Carousel base class */
/* Since positioning the image, we need to help out the caption*/

.footer-banner-img {
  position: relative;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  height: 100px;
  background: linear-gradient(rgba(223, 181, 96, 0.7), rgba(223, 180, 96, .7)), url('../../brand/yellow-bg.png') repeat 50% 50% / cover;
}

.footer-banner-text {
  display: inline-block;
  font-size: 28px;
  font-weight: 300;
  padding-top: 10px;
}

.footer-button {
  padding: 8px 40px;
  font-size: 20px;
  color: var(--yellow);
}

.footer.bg-img {
  background: url(../assets/brand/blackbg.png) no-repeat center center;
  font-family: 'mulish';
  font-weight: 100;
  color: var(--dull);
  background-size: cover;
  border-bottom: 8px solid #e6ad60;
}

.footer ul.nav a {
  color: var(--dull);
  font-family: 'mulish';
  font-weight: 100;
}

.card-img, .card-img-top, .card-img-bottom {
  max-height: 100%;
}

@media (min-width: 40em) {

  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}


/* Min-width */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}

/* Max-width */

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  nav a img.logo-img {
    width: 8rem !important;
  }

  .carousel-caption h5.heading-h5 {
    font-size: 12px;
  }

  .carousel-caption h1.heading-h1 {
    font-size: 20px !important;
  }

  .carousel-caption p.italic {
    font-size: 11px;
  }

  .carousel-caption p .btn-lg {
    font-size: 11px;
    --bs-btn-padding-y: 2px;
    --bs-btn-padding-x: 20px;
  }
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {}

@media (max-width: 768px) {
  .video-modal.modal .modal-body .modal-title {
    flex-direction: column;
  }
  .video-modal.modal .d-flex.flex-row,.video-modal.main .d-flex.flex-row .modal-title{
    display: block !important;
  }
  
  .row.heading-section.team-section {
    margin:0px !important;
  }

  .video-modal.modal .stars-wrap, .video-modal.main .stars-wrap {
    margin-left:0px !important;
  }
  .row.team-section .card .card-body img {
        max-width: 70% !important;
  }
  #myCarousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #myCarousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    background: #0a0905;
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

/* `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}

/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {}

/* Single breakpoint */
@media (min-width: 768px) and (max-width: 991.98px) {}

/* Between breakpoints */
/* Apply styles starting from medium devices and up to extra large devices */
@media (min-width: 426px) and (max-width: 768px) {
  nav a img.logo-img {
    width: 9rem !important;
  }

  .carousel-caption h5.heading-h5 {
    font-size: 15px;
  }

  .carousel-caption h1.heading-h1 {
    font-size: 30px;
  }

  .carousel-caption p.italic {
    font-size: 15px;
  }

  .carousel-caption p .btn-lg {
    font-size: 15px;
    --bs-btn-padding-y: 2px;
    --bs-btn-padding-x: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .carousel-caption h5.heading-h5 {
    font-size: 15px;
  }

  .carousel-caption h1.heading-h1 {
    font-size: 30px;
  }

  .carousel-caption p.italic {
    font-size: 15px;
  }

  .carousel-caption p .btn-lg {
    font-size: 15px;
    --bs-btn-padding-y: 2px;
    --bs-btn-padding-x: 20px;
  }
}