.site-logo {
    width: 172px;
}

@media (min-width: 1200px) {
    .site-logo {
        width: 400px!important;
    }
}

@media (min-width: 768px) {
    .site-logo {
        width: 225px;
    }
}

/* Responsive Video */
.embed-responsive { 
    position: relative; 
    padding-bottom: 56.25%; 
    padding-top: 30px; 
    height: 0; 
    overflow: hidden; 
}

.embed-responsive iframe, 
.embed-responsive object, 
.embed-responsive embed { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.blog_section {
    margin: 40px 0;
}

.blog_posts__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
@media (min-width: 768px) {
    .blog_posts__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1200px) {
    .blog_posts__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.blog_posts__grid--post {
    margin-bottom: 20px;
}

.blog_posts__grid--img {
    position: relative;
    width: 100%;
    padding-bottom: 70%;
    margin-bottom: 5px;
    background-color: #49515A;
}

.blog_posts__grid--img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.blog_posts__grid--img img.blog_logo {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    object-fit: contain;
}

.blog_posts__grid h2 {
    margin: 0;
}

.blog_posts__grid h2 a {
    text-decoration: none;
    color: #49515A;
    font-size: 22px;
}

a.blog_posts__link {
    text-decoration: none;
    color: #49515A;
}

a.blog_posts__link:hover {
    color: #F3754F;
}

.blog__body {
    max-width: 900px;
    margin: 30px auto;
}

.blog__large_img {
    width: 100%;
    margin: 30px auto;
}

.blog__gallery {
    margin: 30px auto;
}

.blog__gallery ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.blog__gallery ul li.gallery__item {
    position: relative;
    width: 100%;
    padding-bottom: 70%;
}

.blog__gallery ul li.gallery__item img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.blog__date {
    text-align: center;
    margin: 30px auto 10px;
}

.blog__see_more {
    margin: 10px auto 60px auto;
    text-align: center;
}

.form-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin: 10px 0;
    cursor: pointer;
    text-transform: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-checkbox input:checked~.checkbox {
    background-color: #F3754F;
}

.form-checkbox .checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: transparent;
    border: 1px solid #BBBBBB;
}

.checkbox-group-label {
    display: block;
    margin-bottom: 8px;
}
  
.checkbox-error {
    display: block;
    margin: 8px 0 12px 0;
    font-size: 0.875em;
}
  
.checkbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* GALLERY */
.gallery__list {
    grid-template-columns: 1fr 1fr 1fr!important;
    grid-template-rows: auto!important;
    grid-gap: 5px!important;
}
.gallery__item--full-width {
    grid-column: span 4;
    grid-row: span .5;
    padding-bottom: 50%;
    position: relative;
    margin-bottom: 5px;
}

.gallery__item--full-width img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}