/*--------------------------------------------------------------
General Styles
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
}

.wrapper,
main.site-main {
    position: relative;
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

a:not(.btn) {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    transition: all .3s ease;
}

a:not(.btn):hover {
    opacity: .8;
}

p {
    font-size: 1rem;
    line-height: 2.3;
}

img {
    max-width: 100%;
    height: initial;
}

h1 {
    font-size: 2.3rem;
    line-height: 1.5;
}

h2 {
    font-size: 2rem;
    line-height: 1.5;
}

a.btn,
input[type="submit"],
button {
    display: inline-block;
    width: auto;
    background-color: #fff;
    border: 2px solid transparent;
    color: #F7ACBD;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 1.6em 4.4em;
    cursor: pointer;
    transition: all .5s ease;
}

a.btn:hover,
input[type="submit"]:hover,
button:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

header.main-header {
    padding: 20px 0;
    background: #F7ACBD url(/wp-content/uploads/2019/09/hero.png) no-repeat center/cover;
}

header.main-header .flex-row {
    align-items: center;
}

header.main-header .logo {
    flex-basis: 20%;
}

header.main-header .menu-main-menu-container {
    flex-basis: 80%;
    text-align: right;
}

.header-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style: none;  
}

.header-menu li {
    position: relative;
}

.header-menu li:not(:last-child) {
    margin-right: 1.5rem;
}

.header-menu li a {
    color: #fff;
    transition: all .25s ease;
    text-decoration: none;
}

.header-menu li:after {
    content: '';
    display: block;
    margin: 3px 0 0;
    width: 0;
    height: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    transition: all .5s ease;
}

.header-menu li.active:after,
.header-menu li:hover:after {
    width: 38px;
}

.page-template-default .main-content {
    padding: 70px 0;
}

/*--------------------------------------------------------------
Hero
--------------------------------------------------------------*/
.hero-header {
    position: relative;
    padding: 115px 0;
    min-height: 100vh;
    background: url(../images/hero.png) no-repeat center/cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center; 
    text-shadow: 0 0 10px rgba(0,0,0,.3);
}

.blog-hero-header {
    min-height: auto;
    color: #fff;
    text-align: center; 
    text-shadow: 0 0 10px rgba(0,0,0,.3);
    font-size: 2rem;
}

.blog-hero-header .hero-content,
.blog-hero-header .hero-content p {
    font-size: 1.5rem;
}


.blog-hero-header h1 {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 4.5rem;
    line-height: 1;
}

.hero-header:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.1);
}

.hero-header .logo {
    display: inline-block;
    margin-bottom: 100px;
}

.hero-header .logo {
    display: inline-block;
    margin-bottom: 30px;
}

.hero-header h1 {
    text-align: center;
    margin-bottom: 30px;
}

.hero-header .hero-content {
    letter-spacing: .15em;
}

.hero-header .hero-content h1 {
    letter-spacing: .15em;
}

.hero-header .hero-content a.btn {
    text-decoration: none;
    text-shadow: none;
    margin-top: 50px;
    padding: 15px 40px;
}

.hero-header .hero-content a.btn:hover {
    background: rgba(0,0,0,.2);
}

.hero-header .hero-top-left {
    position: absolute;
    width: 22px;
    height: 53px;
    background-color: #fff;
    top: 0;
    left: 140px;
}

.hero-header .hero-top-left:after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background-color: #fff;
    top: 130px;
    right: 60px;
}

.hero-header .hero-top-right {
    position: absolute;
    width: 150px;
    height: 204px;
    top: 0;
    right: 0;
    background-color: #cfcfcf;
}

.hero-header .hero-top-right:after {
    content: '';
    position: absolute;
    width: 140px;
    height: 3px;
    background-color: #fff;
    top: 85px;
    right: 75px;
}

.scroll-down {
    position: absolute;
    display: block;
    width: 3px;
    height: 70px;
    padding: 10px;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .5s ease;
    animation: blink 1s ease-in-out infinite alternate;
}

.scroll-down:before {
    content: '';
    display: block;
    width: 3px;
    height: 70px;
    background-color: #fff;
}

@keyframes blink { 
    50% { opacity: .8; } 
}

/*--------------------------------------------------------------
Info Sections
--------------------------------------------------------------*/
.main-content {
    padding: 70px 0 0;
}

.info-section {
    position: relative;
    padding: 50px 0;
    color: #6E797E;
}

.info-section__2 .wrapper,
.info-section__3 .wrapper {
    max-width: 1140px;
}

.info-section .flex-row {
    align-items: flex-start;
    justify-content: space-between;
}

.info-section__title {
    line-height: 1.5;
    margin-bottom: .75em;
}

.info-section__img {
    position: relative;
}

.info-section__content {
    position: relative;
    z-index: 1;
}

.info-section__content p {
    margin-bottom: 1em;
}

.info-section__content .work-timetable {
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #6E797E;
}

.info-section__content .work-timetable .work-hours {
    border-left: 2px solid #6E797E;
    padding: .25em .5em;
}

.info-section__img img {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.info-section__img:before {
    content: '';
    display: block;
    position: absolute;
    background: #e2e2e2;
    opacity: 0.6;
    z-index: 0;
    transition: all .5s ease;
}

.info-section__img:hover:before {
    transform: translateX(10%) translateY(-10%);
    opacity: 0.5;
}

.info-section__content .btn {
	display: inline-block;
    padding: 1em 1.5em;
    color: #fff;
    text-decoration: none;
    font-size: .8rem;
    line-height: 1.5;
	background-color: #F7ACBD;
    transition: all .3s ease;
}

.info-section__content .btn:hover {
    color: #F7ACBD;
    border-color: #F7ACBD;
}


/*--------------------------------------------------------------
Info Section 1
--------------------------------------------------------------*/
.info-section__1 .wrapper {
    padding-top: 100px;
}

.info-section__1 .wrapper:before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 0;
    right: 0;
    background: #F7ACBD;
}

.info-section__1 .wrapper:after {
    content: '';
    display: block;
    width: 245px;
    height: 3px;
    position: absolute;
    bottom: 55px;
    right: 0;
    background: #F7ACBD;
}

.info-section__1 .info-section__img:before {
    width: 90%;
    height: 90%;
    left: 65%;
    top: -10%;
}

.info-section__1 .info-section__img {
    flex-basis: 37%;
}

.info-section__1 .info-section__content {
    flex-basis: 55%;
    padding-top: 80px;
}

/*--------------------------------------------------------------
Info Section 2
--------------------------------------------------------------*/
.info-section__2 .flex-row {
    align-items: flex-end;
}

.info-section__2 .wrapper {
    padding: 75px 0 120px;
}

.info-section__2 .wrapper:before {
    content: '';
    display: block;
    width: 22px;
    height: 111px;
    position: absolute;
    top: 0;
    left: 0;
    background: #F7ACBD;
}

.info-section__2 .wrapper:after {
    content: '';
    display: block;
    width: 140px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #F7ACBD;
}

.info-section__2 .info-section__img:before {
    width: 100%;
    height: 100%;
    right: 60%;
    top: 18%;
}

.info-section__2 .info-section__img {
    flex-basis: 48%;
}

.info-section__2 .info-section__img:after {
    content: '';
    display: block;
    width: 3px;
    height: 120px;
    position: absolute;
    bottom: -7%;
    left: 25%;
    background: #fff;
    z-index: 3;
}

.info-section__2 .info-section__content {
    flex-basis: 41%;
}

/*--------------------------------------------------------------
Info Section 3
--------------------------------------------------------------*/
.info-section__3 {
    padding: 0 0 100px;
}

.info-section__3 .wrapper {
    padding-top: 130px;
}

.info-section__3 .wrapper:before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 0;
    right: 143px;
    background: #F7ACBD;
}

.info-section__3 .wrapper:after {
     content: '';
     display: block;
     width: 83px;
     height: 3px;
     position: absolute;
     bottom: 0;
     right: 115px;
     background: #F7ACBD;
 }

.info-section__3 .info-section__img:before {
    width: 67%;
    height: 88%;
    left: 71%;
    top: -9%;
}

.info-section__3 .info-section__img {
    flex-basis: 50%;
}

.info-section__3 .info-section__content {
    flex-basis: 41%;
    padding-top: 80px;
}

/*--------------------------------------------------------------
Gallery
--------------------------------------------------------------*/
.gallery {
    padding-bottom: 50px;
}

.gallery__list {
    list-style: none;
}

.gallery__list__item {
    flex-basis: 21.5%;
    position: relative;
    margin: 2.3% 0;
    cursor: pointer;
    transition: all .5s ease;
}

.gallery__list__item:not(:nth-child(4n)) {
    margin-right: 4.5%;
}

.gallery__list__item:after {
	content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: all .3s ease-out;
    background-color: rgba(247, 172, 189, .8);
}

.gallery__list__item:hover:after {
	transform: scale(1);
	opacity: 1;
}

/*--------------------------------------------------------------
Location Section
--------------------------------------------------------------*/
.location-section {
    font-size: 0;
}

.location-section__title {
    color: #6E797E;
    text-align: center;
    line-height: 1.5;
    margin-bottom: .5em;
}

.location-section__title span {
    display: block;
    color: #F7ACBD;
}

.location-section .flex-row {
    justify-content: space-between;
}

.location-section .map-wrap {
    flex-basis: 48%;
    margin-bottom: 50px;
}
/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
.main-footer {
    padding: 130px 0 100px;
    background-color: #F7ACBD;
    color: #fff;
    text-align: center;
}

.main-footer h2 {
    font-size: 2.6rem;
    margin-bottom: 1em;
}

/*--------------------------------------------------------------
Social List
--------------------------------------------------------------*/
.social-list {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-list .social-list__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50px;
    margin: 10px 5px;
    transition: all .5s ease;
}

.social-list .social-list__item a {
    display: flex;
}

.social-list .social-list__item img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.social-list .social-list__item:hover {
    background-color: #fff;
}

.social-list .social-list__item:hover img {
    -webkit-filter: none;
    filter: none;
}

/*--------------------------------------------------------------
Form
--------------------------------------------------------------*/
.main-footer form {
    max-width: 950px;
    margin: 50px auto 100px;
}

form {
    text-align: left;
}

form input,
form textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-family: Montserrat;
    font-size: 1rem;
    padding: 1em 0;
    transition: all .5s ease;
}

form input:focus,
form textarea:focus {
    border-color: #6E797E;
}

::-webkit-input-placeholder {
    color: #fff;
}

::-moz-placeholder {
    color: #fff;
}

::-ms-placeholder {
    color: #fff;
}

::placeholder {
    color: #fff;
}

form input.wpcf7-not-valid {
    border-color: #5546FF;
}

form .wpcf7-not-valid-tip {
    color: #5546FF;
    margin-top: .5em;
}

form textarea {
    border: 2px solid #fff;
    height: 140px;
    resize: none;
    padding: .5em 1em;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-row .wpcf7-form-control-wrap {
    flex-basis: 45%;
}

.wpcf7-form-control-wrap {
    text-align: left;
    margin-bottom: 2rem;
}

.wpcf7-form-control-wrap label {
    display: inline-block;
    margin-top: 1rem;
    margin-bottom: .5rem;
}

input[type="submit"].wpcf7-form-control {
    margin-top: 1em;
}

input[type="submit"].wpcf7-form-control:focus {
    border-color: #fff;
}

/*--------------------------------------------------------------
Preloader
--------------------------------------------------------------*/
.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F7ACBD;
    z-index: 999999;
}

.preloader {
    position: absolute;
    left: calc(50% - 60px);
    top: calc(50% - 60px);
    max-width: 120px;
    animation: spin 1s ease-in-out infinite alternate;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform:  rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:  rotate(360deg); } }

/*--------------------------------------------------------------
Instagram Feed
--------------------------------------------------------------*/
#sb_instagram {
    height: auto !important;
}

#sb_instagram .sbi_photo {
    position: relative;
}

#sb_instagram .sbi_photo:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: all .3s ease-out;
    background-color: rgba(247, 172, 189, .8);
}

#sb_instagram .sbi_photo:hover:after {
    transform: scale(1);
    opacity: 1;
}

#sb_instagram .sb_instagram_header a {
    color: #6E797E;
}

#sb_instagram .sbi_follow_btn a {
    background-color: #F7ACBD;
    transition: all .3s ease;
}

#sb_instagram #sbi_load a.sbi_load_btn {
    background-color: #6E797E;
    transition: all .3s ease;
}

#sb_instagram .sbi_follow_btn a:focus,
#sb_instagram .sbi_follow_btn a:hover {
    background-color: #6E797E;
    box-shadow: none;
}

/*--------------------------------------------------------------
Products Section
--------------------------------------------------------------*/
.products-section {
    padding: 35px 0 70px;
    text-align: center;
}

.products-section .wrapper:before {
    content: '';
    display: block;
    width: 140px;
    height: 3px;
    position: absolute;
    top: -30px;
    right: 0;
    background: #F7ACBD;
}

.products-section__title {
    display: inline-block;
    position: relative;
    line-height: 1.5;
    margin-bottom: 1.5em;
    color: #6E797E;
}

.products-section__title:before {
    content: '';
    display: block;
    width: 22px;
    height: 70px;
    position: absolute;
    bottom: 3px;
    left: -7px;
    background: #F7ACBD;
    z-index: -1;
}

.products-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.products-list .product-item {
    display: inline-block;
    flex: 0 0 20%;
    margin: 1rem 0;
}

.product-item .product-item__link {
    display: block;
    position: relative;
    color: inherit;
    text-decoration: none;
    text-align: center;
}

.product-item .product-item__link:before {
    content: '';
    display: block;
    position: absolute;
    background: #e2e2e2;
    opacity: 0.6;
    z-index: -1;
    width: 100%;
    height: 75%;
    left: 7%;
    top: -5%;
    transition: all .5s ease;
}

.product-item .product-item__link:hover:before {
    transform: translateX(10%) translateY(-10%);
    opacity: 0.5;
}

.product-item img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.product-item .product-item__title {
    color: #6E797E;    
    margin-bottom: .25em;
}

.product-item .product-item__price {
    color: #F7ACBD;
    font-size: .9rem;
}

/*--------News Page--------*/
.news-section {
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px 0;
}

.news-wrap {
    display: flex;
    flex-direction: column;
    flex: 0 0 65%;
}

.news-wrap .news-item {
    display: flex;
    background: #fff;
    color: inherit;
    text-decoration: none;
    padding: .5rem;
    margin: 0 1rem 1rem 0;
}

.news-wrap .news-item img {
    max-width: 200px;
    max-height: 115px;
    object-fit: cover;
    margin-right: 1rem;
}

.posts-image-wrap {
    flex: 0 0 33%;
}

.posts-image-wrap img {
    width: 100%;
}

.subscribe-form .flex-row {
    justify-content: center;
}

.subscribe-form .wpcf7-form-control-wrap {
    margin-bottom: 0;
}

.subscribe-form input[type="submit"],
.subscribe-form button {
    padding: 1rem 2rem;
}

.popmake .subscribe-form button {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .subscribe-form .flex-row {
        flex-direction: column;
    }
    .subscribe-form button {
        margin-top: 1rem;
    }
    
    .posts-image-wrap,
    .news-wrap {
        flex: 0 0 100%;   
    }
    
    .news-wrap .news-item {
        margin: 0 0 1rem 0;
    }

}
/*--------------------------------------------------------Halloween
Signle
--------------------------------------------------------------*/
.single .main-content {
    padding: 70px 0;
}

.single .entry-title {
    color: #6E797E;
    text-align: center;
    margin-bottom: 1em;
}

.single main.site-main:before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 0;
    right: 0;
    background: #F7ACBD;
}

.single .posttime {
    display: inline-block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .25em;
    margin: 0 0 .5rem;
    padding: 3px 7px;
    background-color: #F7ACBD;
    color: #fff;
}

.single .post-thumbnail {
    margin: .5rem 0;
}


.posts-page {
    background-color: #F7ACBD;
    padding-bottom: 70px;
}

.newsletter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 1rem 0;
}

.newsletter-wrap h2 {
    margin-right: 1.5rem;
}


/*--------------------------------------------------------------
Halloween
--------------------------------------------------------------*/
.halloween-hero .logo {
    max-width: 300px;
}

.halloween-hero:before {
    background: rgba(0,0,0,0.7);
}

.page-template-halloween .main-footer {
    background-color: #016241;
}

.page-template-halloween .info-section:not(:first-of-type) .info-section__img img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
}

.page-template-halloween .location-section__title span,
.page-template-halloween .products-section__title,
.page-template-halloween .info-section__title {
    color: #6f847d;
}

.page-template-halloween .location-section__title {
    color: #dadada;
}

.page-template-halloween #sb_instagram .sbi_follow_btn a,
.page-template-halloween .info-section__content .btn {
    background-color: #016241;
    color: #fff;
}

.page-template-halloween .info-section__content .btn:hover {
    border-color: #016241;
    color: #016241;
    background: transparent;
}

.page-template-halloween .products-section .wrapper:before,
.page-template-halloween .products-section__title:before,
.page-template-halloween .info-section__1 .wrapper:before,
.page-template-halloween .info-section__1 .wrapper:after,
.page-template-halloween .info-section__2 .wrapper:before,
.page-template-halloween .info-section__2 .wrapper:after,
.page-template-halloween .info-section__3 .wrapper:before,
.page-template-halloween .info-section__3 .wrapper:after {
    background-color: #016241;
}

.page-template-halloween a.btn, 
.page-template-halloween input[type="submit"],
.page-template-halloween button {
    color: #016241;
}

.page-template-halloween a.btn:hover, 
.page-template-halloween input[type="submit"]:hover,
.page-template-halloween button:hover {
    color: #fff;
}

 .halloween-info-img {
    text-align: center;
    margin: 30px auto;
}

.page-template-halloween .main-content {
    padding-top: 0;
} 

.page-template-halloween .social-list .social-list__item:hover img {
    filter: brightness(0);
}

.preloader-wrapper.halloween-preloader {
    background: #016241 url('/wp-content/uploads/2021/10/halloween-img.png') no-repeat top left;
}

/*--------------------------------------------------------------
404 Page, Search
--------------------------------------------------------------*/
.error404 .main-content,
.search-no-results .main-content {
    background-color: #F7ACBD;
    color: #fff;
    text-align: center;
    padding: 70px 0 5px;
}

.error404 .main-footer,
.search-no-results .main-footer {
    padding-top: 65px;
}

.widget_recent_entries .widgettitle {
    margin-bottom: .5em;
}

.widget_recent_entries ul {
    list-style: none;
    line-height: 2;
}

#searchform {
    display: flex;
    margin: 50px auto;
    max-width: 500px;
}

.search article {
    margin: 30px 0;
}

.search article .entry-title {
    color: #F7ACBD;
}

.search article .posttime {
    display: inline-block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .25em;
    margin: 0 0 .5rem;
    padding: 3px 7px;
    background-color: #F7ACBD;
    color: #fff;
}

/*--------------------------------------------------------------
News Page
--------------------------------------------------------------*/
.news-posts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 2rem;
}

.news-posts .news-item {
    /*flex: 0 0 40%;*/
    display: flex;
    position: relative;
    margin-bottom: 5rem;
    color: inherit;
    text-decoration: none;
}

.news-posts .news-item:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 75%;
    left: 7%;
    top: -5%;
    background: #e2e2e2;
    opacity: 0.6;
    z-index: -1;
    transition: all .5s ease;
}

.news-posts .news-item:hover:after {
    transform: translateX(10%) translateY(-10%);
    opacity: 0.5;
}

.news-posts .news-item .news-image {
    display: block;
    flex: 0 0 250px;
    margin-right: 15px;
}

.news-posts .news-item img {
    max-width: 100%;
    width: 250px;
    max-height: 250px;
    object-fit: cover;
    object-position: top;
}

.news-posts .title-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 15px 0;
    
}

.news-posts .news-date {
    display: inline-block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .25em;
    padding: 3px 7px;
    background-color: #F7ACBD;
    color: #fff;
    margin-right: 10px;
}

.news-posts .news-title {
    font-size: 1.7rem;
    color: #6E797E;
}

.news-posts .news-title.big-title {
    font-size: 2.7rem;
    line-height: 1.3;
    color: #6E797E;;
}

.news-posts .btn {
    background-color: #F7ACBD;
    color: #fff;
    text-decoration: none;
    margin-top: 15px;
}

.news-posts .btn:hover {
    border-color: #F7ACBD;
    background-color: #6E797E;
}
