@charset "UTF-8";
/*!
 *  Blazemarker.com stylesheet 
 */

/ Use Bootstrap breakpoints for consistency.
$bootstrap-sm: 576px;
$bootstrap-md: 768px;
$bootstrap-lg: 992px;
$bootstrap-xl: 1200px;

// Crop thumbnail images.

#gallery {
  img {
    height: 75vw;
    object-fit: cover;
    
    @media (min-width: $bootstrap-sm) {
      height: 35vw;
    }
    
    @media (min-width: $bootstrap-lg) {
      height: 18vw;
    }
  }
}

// Crop images in the coursel
.carousel-item {
  img {
    height: 60vw;
    object-fit: cover;
    
    @media (min-width: $bootstrap-sm) {
      height: 350px;
    }
  }
}

.blazemarker-bg-primary {
 background-image: linear-gradient(#6d94bf, #42f58d, 50%, #3e648d);
}

.blazemarker-bg-body {
background-color: #e6eb54;
}


.blazemarker-bg-card-body {
background-color: #f2f5a2;
}

.blazemarker-modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 0;
}

.blazemarker-carousel-inner {
    width: 100%;
    max-height: 75vh;
}

.blazemarker-carousel-item img {
    max-width: 100%;
    max-height: 100vh;
    margin: auto;
    display: block;
}


.blazemarker-header {
  line-height: 1;
  border-bottom: 1px solid #e5e5e5;
}

.blazemarker-header-logo {
  font-family: Optima, Graphik, "Helvetica Neue", serif/*rtl:Amiri, Georgia, "Times New Roman", serif*/;
  font-size: 2.25rem;
  text-decoration: none !important;
  color: #000 !important;
}

.blog-header-logo:hover {
  text-decoration: none;
}

body, h1, h2, h3, h4, h5, h6 {
  font-family: Optima, Graphik, "Helvetica Neue", serif/*rtl:Amiri, Georgia, "Times New Roman", serif*/;
}


