.lp-header-subtitle {
    color: var(--text-color-base);
    font-weight: normal;
    margin: 0 auto 16px;
    font-size: 16px;
    line-height: 24px;
}

@media all and (min-width: 600px) {
    .lp-header-subtitle {
        font-size: 18px;
        line-height: 28px;
    }
}

@media all and (min-width: 1380px) {
    .lp-header-subtitle {
        font-size: 20px;
    }
}

.inverse .lp-header-subtitle {
    color: #fff;
}

.lp-header-subtitle span {
    font-weight: bold;
    display: block;
}

@media all and (min-width: 600px) {
    .lp-gallery-3._reverse .lp-gallery-3__wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

.lp-gallery-3__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 32px 0;
}


.lp-gallery-3-photo__main-photo-item {
    height: calc(100vw - 32px);
}



@media all and (min-width: 600px) {
    .lp-gallery-3__wrap {
        padding: 48px 0;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 -12px;
    }
    
	.lp-gallery-3-photo__main-photo-item {
		height: 276px;
	}
}

@media all and (min-width: 960px) {
    .lp-gallery-3__wrap {
        margin: 0 -24px;
    }
	.lp-gallery-3-photo__main-photo-item {
	    height: 432px;
	}    
}

@media all and (min-width: 1200px) {
    .lp-gallery-3__wrap {
        margin: 0 -12px;
    }
    .lp-gallery-3-photo__main-photo-item {
		height: 564px;
	}
}

@media all and (min-width: 1380px) {
	.lp-gallery-3-photo__main-photo-item {
		height: 628px;
	}
    .lp-gallery-3__wrap {
        margin: 0 -16px;
        padding: 64px 0;
    }
}

.lp-gallery-3-photo__main-photo {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 16px 0;
}

.lp-gallery-3-photo__main {
    position: relative;
}

.lp-gallery-3-photo__main-photo-item-link {
	height: 100%;
}

.lp-gallery-3-photo__main-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

._img_method .lp-gallery-3-photo__main-photo-item img {
	width: auto !important;
	max-height: 100% !important;
}


.lp-gallery-3-photo__main-photo-item._active {
    opacity: 1;
    z-index: 10;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.lp-gallery-3-photo__preview-item {
    /*width: 64px;
    height: 64px;*/
    margin: 0 10px 10px 0;
    overflow: hidden;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.lp-gallery-3-photo__preview-item-mask {
    width: 64px;
    height: 64px;
    background-size: cover;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    will-change: transform;
}

.lp-gallery-3-photo__preview-item-mask:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}

.lp-gallery-3-photo__preview-item img {
    transition: max-width 0.5s;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

@media all and (min-width: 600px) {
    .lp-gallery-3-photo__preview-item {
        margin: 1px 5px 5px 1px;
    }
}

@media all and (min-width: 960px) {
    .lp-gallery-3-photo__preview-item {
        margin: 1px 8px 8px 1px;
    }
}

@media all and (min-width: 1200px) {
    .lp-gallery-3-photo__preview-item {
        /*width: 68px;
        height: 68px;*/
        margin: 1px 13px 13px 1px;
    }
    
	.lp-gallery-3-photo__preview-item-mask {
	    width: 68px;
	    height: 68px;
	}
}

@media all and (min-width: 1380px) {
    .lp-gallery-3-photo__preview-item {
        margin: 1px 11px 11px 1px;
    }
}

.lp-gallery-3-photo__preview-item._active {
    outline: var(--primary-color-base) solid 1px;
}

.lp-gallery-3-photo__arrows-next, .lp-gallery-3-photo__arrows-prev {
    background-color: transparent;
    border: 1px solid transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    z-index: 20;
    outline: none;
}

.lp-gallery-3-photo__arrows-next:hover, .lp-gallery-3-photo__arrows-prev:hover {
    border: 1px solid transparent;
    background-color: transparent;
}

.lp-gallery-3-photo__arrows-prev {
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lp-gallery-3-photo__arrows-next {
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lp-gallery-3__preview {
    margin: 0 -10px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 6px;
}

.lp-gallery-3__preview .slick-track {
    width: 100% !important;
    transform: none !important;
}

.lp-gallery-3__preview .slick-slide {
    width: 68px !important;
    height: 68px;
    margin: 1px 13px 13px 1px;
    outline: 0;
}

.lp-gallery-3-photo__main-photo .slick-slide {
    outline: 0;
}

@media all and (min-width: 600px) {
    .lp-gallery-3__preview {
        margin: 0 -6px 0 0;
        padding-bottom: 10px;
    }
}

@media all and (min-width: 960px) {
    .lp-gallery-3__preview {
        margin: 0 -12px 0 0;
        padding-bottom: 7px;
    }
}

@media all and (min-width: 1200px) {
    .lp-gallery-3__preview {
        margin: 0 -14px 0 0;
        padding-bottom: 2px;
    }
}

@media all and (min-width: 1380px) {
    .lp-gallery-3__preview {
        margin: 0 -12px 0 0;
        padding-bottom: 4px;
    }
}

.lp-gallery-3-description {
    padding: 16px 0;
}

.lp-gallery-3-description__title {
    margin: 0 0 8px 0;
}

.lp-gallery-3__outer-photo {
	position: relative;
}

@media all and (min-width: 600px) {
    .lp-gallery-3-description__title {
        margin: 0 0 16px 0;
    }
}

.lp-gallery-3-description__text-content {
    margin: 0;
    padding: 0;
}

@media all and (min-width: 600px) {
    .lp-gallery-3__outer-photo {
        width: 276px;
        margin: 0 12px;
    }
}

@media all and (min-width: 960px) {
    .lp-gallery-3__outer-photo {
        width: 432px;
        margin: 0 24px;
    }
}

@media all and (min-width: 1200px) {
    .lp-gallery-3__outer-photo {
        width: 564px;
        margin: 0 12px;
    }
}

@media all and (min-width: 1380px) {
    .lp-gallery-3__outer-photo {
        width: 628px;
        margin: 0 16px;
    }
}

@media all and (min-width: 600px) {
    .lp-gallery-3__outer-description {
        width: 276px;
        margin: 0 12px;
    }
}

@media all and (min-width: 960px) {
    .lp-gallery-3__outer-description {
        width: 432px;
        margin: 0 24px;
    }
}

@media all and (min-width: 1200px) {
    .lp-gallery-3__outer-description {
        width: 564px;
        margin: 0 12px;
    }
}

@media all and (min-width: 1380px) {
    .lp-gallery-3__outer-description {
        width: 628px;
        margin: 0 16px;
    }
}

.lp-gallery-3__buttons-wrap {
  text-align: left;
  width: 100%;
  margin-top: 32px;
}

.lp-gallery-3__button {
  display: block;
  margin: 0 16px 16px 0;
  flex: 1 1 auto;
  width: 100%;
}



.lp-gallery-3__buttons {
  text-align: center;
  justify-content: center;
  display: flex;
  margin: 0 -16px -16px 0;
  flex-wrap: wrap;
}


@media all and (min-width: 600px) {
  .lp-gallery-3__buttons-wrap {
  }

  .lp-gallery-3__button {
    width: auto;
  }

  .lp-gallery-3__buttons {
    display: inline-flex;
  }
}