/*******************************************************/
/*-------------------- FONT FACE ----------------------*/
/*******************************************************/
/*@font-face {
    font-family: Montserrat Bold;
    src: url('fonts/Montserrat-Bold.ttf') format('truetype'),
    url('fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: Montserrat Medium;
    src: url('fonts/Montserrat-Medium.ttf') format('truetype'),
    url('fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: Montserrat Light;
    src: url('fonts/Montserrat-Light.ttf') format('truetype'),
    url('fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}*/
@font-face {
    font-family: Playfair Display Bold;
    src: url('fonts/PlayfairDisplay-Bold.ttf') format('truetype'),
    url('fonts/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: Playfair Display Medium;
    src: url('fonts/PlayfairDisplay-Medium.ttf') format('truetype'),
    url('fonts/PlayfairDisplay-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: Playfair Display Regular;
    src: url('fonts/PlayfairDisplay-Regular.ttf') format('truetype'),
    url('fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}




/*******************************************************/
/*------------------ END FONT FACE --------------------*/
/*******************************************************/
:root {
    --white: #ffffff;
    --black: #181819;
    --gray: #f4f4f4;
    --red: #ee4016;
    --yellow: #e0c141;
}
* {
    padding: 0;
    margin: 0;
}
body {
    font-family: Montserrat, sans-serif;
    font-weight: 300;
    line-height: 1.7;

}
p{
    /*padding: 0.75em 0;*/
	padding-bottom: 20px;
	line-height: 1.9;
}
.fe-loader{
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: var(--black);
    position: fixed;
    top: 0;
    z-index: 99;
    left: 0;
    display: none;
}
.fe-loader-closed{
    display: none;
}
.fe-container {
    max-width: 90%;
    width: 1280px;
    margin: 0 auto;
}

h2, h3, h4 {
    line-height: 1.1em;
    padding: 15px 0;
}

.fe-btn {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin: 20px 0;
    padding: 10px 60px;
    font-size: 15px;
    cursor: pointer;
}
.btn-black {
    border: 2px solid var(--black);
    background: var(--black);
    color: var(--white);
    transition: all 0.3s;
}
.btn-black:hover {
    border-color: var(--yellow);
    background: var(--yellow);
}
.btn-secondary {
    border: 2px solid var(--black);
    background: var(--black);
    color: var(--white);
    transition: all 0.3s;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0) !important;
    color: var(--black) !important;
}
/*******************************************************/
/*---------------------- HEADER -----------------------*/
/*******************************************************/
/* search */
.search {
    min-height: 80vh;
}
.search h2.fe-title {
    font-size: 50px;
}
.search h2.fe-title, .search p.fe-description {
    color: var(--black);
    font-family: Playfair Display Bold, sans-serif;
}
.search p.fe-description {
    position: relative;
    font-size: 27px;
    margin-bottom: 50px;
}
.search p.fe-description:before {
    content: '';
    background-color: var(--yellow);
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 10px;
    width: 160px;
}
#searchsubmit {
    display: none;
}
#searchform {
    display: flex;
    padding: 15px 10px 10px;
}
#searchform #s,
#searchform #s:hover,
#searchform #s:focus {
    background: inherit;
    border: none;
    outline: none;
}
#searchform #s {
    width: 0;
    color: var(--white);
    border-bottom: 2px solid var(--white) !important;
    height: 20px;
    transition: all 0.3s;
}
#searchform .fe-searchsubmit {
    padding: 0 10px;
    cursor: pointer;
}
/* end search */
#header {
    background-color: var(--black);
    color: var(--white);
}
.header-wrap {
    display: flex;
}
nav.navigation {
    margin-left: auto;
}
.navigation ul {
    display: flex;
}
.navigation ul .menu-item {
    display: flex;
}
.navigation ul .menu-item a {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    padding: 20px 30px;
    text-decoration: none;
    color: var(--gray);
    font-size: 9px;
    transition: all 0.3s;
}
.navigation ul .menu-item a:hover {
    color: var(--white);
    opacity: 0.7;
}
.navigation ul .menu-item.menu-store a {
    background-color: var(--red);
    padding-left: 50px;
    background-image: url("/wp-content/uploads/2021/01/menu_store.svg");
    background-repeat: no-repeat;
    background-position: calc(50% - 20px) center;
    background-size: 20px;
}
.navigation ul .menu-item.menu-signup a {
    background-color: var(--yellow);
    padding-left: 50px;
    background-image: url("/wp-content/uploads/2021/01/menu_signup.svg");
    background-repeat: no-repeat;
    background-position: calc(50% - 70px) center;
    background-size: 20px;
}

li.menu-search {
    width: 60px;
    position: relative;
}
li.menu-search #searchform {
    position: absolute;
    right: 0;
    background-color: var(--black);
    box-sizing: border-box;
    height: 100%;
}

.header-logo {
    min-width: 170px;
}
/* mobile nav*/
#burger-container{
    display: none;
    position: relative;
    margin: 10px auto;
}

#burger{
    cursor: pointer;
    display: block;
}

#burger span{
    background: #eee;
    display: block;
    width: 40px;
    height: 5px;
    margin-bottom: 6px;
    position: relative;
    top: 0;
    transition: all ease-in-out 0.4s;
}

#burger-container.burger-open span:nth-child(2){
    width: 0;
    opacity: 0;
}

#burger-container.burger-open span:nth-child(3){
    transform: rotate(45deg);
    top: -12px;
}

#burger-container.burger-open span:nth-child(1){
    transform: rotate(-45deg);
    top: 10px;
}
/* end mobile nav */
/*******************************************************/
/*-------------------- END HEADER ---------------------*/
/*******************************************************/

/*******************************************************/
/*------------------- FEATURED POST -------------------*/
/*******************************************************/
#featured-post {
    padding: 50px 0;
}
#featured-post .fe-container{
    border-bottom: 2px solid  var(--black);
    padding-bottom: 50px;
}
#featured-post h2.fe-title,
#featured-post p.fe-description {
    color: var(--black);
    font-family: Playfair Display Bold, sans-serif;
}
#featured-post p.fe-description {
    line-height: 1.1em;
}
#featured-post h2.fe-title {
    font-size: 50px;
}
#featured-post p.fe-description {
    position: relative;
    font-size: 27px;
}
#featured-post p.fe-description:before {
    content: '';
    background-color: var(--yellow);
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 10px;
    width: 160px;
}

#featured-post .post-featured-image {
    height: 25vw;
    min-height: 150px;
    margin: 30px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
#featured-post .fe-huge-desc {
    font-size: 15px;
}
/*******************************************************/
/*---------------- END FEATURED POST ------------------*/
/*******************************************************/

/*******************************************************/
/*------------------- FORM SECTION --------------------*/
/*******************************************************/
#section-form{
    padding-bottom: 50px;
}
#section-form .section-form-wrapper{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#section-form .fe-left-container{
    flex: 1 1 40%;
    max-width: 42%;

}
#section-form .fe-left-container h3{
    font-family: Playfair Display Bold, sans-serif;
    font-size: 45px;
    padding-bottom: 10px;
    line-height: 1.1em;
}
#section-form .fe-left-container p{
    font-size: 16px;
}
#section-form .fe-left-container h3 span{
    color: var(--yellow);
}
#section-form .fe-right-container{
    flex: 1 1 40%;
    max-width: 42%;
    position: relative;
}
#section-form .btn-yellow{
    border: 2px solid var(--yellow);
    background: var(--yellow);
    color: var(--white);
    transition: all 0.3s;
    width: 100%;
    padding-bottom: 10px ;
    padding-top: 10px ;
    margin-bottom: 31px;

}
#section-form .btn-yellow:hover {
    background: var(--white);
    color: var(--black);
}
#section-form .fe-form-input{
    border: 2px solid var(--black);
    background: var(--white);
    color: var(--black);
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-decoration: none;
    display:block;
    margin-left: auto;
    text-align: center;
    margin-right: auto;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
    margin-top: 10px;
    box-sizing:border-box

}
#section-form .fe-form-input::placeholder{
    color: var(--black);
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 15px;
    opacity: 0.5;
    letter-spacing: 4px;

}
#section-form .fe-right-container p{
    font-size: 16px;

}

/*******************************************************/
/*------------------ END FORM SECTION -----------------*/
/*******************************************************/

/*******************************************************/
/*------------------ VISIT SECTION --------------------*/
/*******************************************************/
#visit-section{
    background-color: var(--gray);
    height: 400px;
}

#visit-section .fe-left-visit-section{
    flex: 1 1 50%;
    align-self: center;
}
#visit-section .fe-right-visit-section{
background: url("/wp-content/uploads/2021/01/Memento-1.jpg") no-repeat center center;
    background-size: contain;
    flex: 1 1 50%;
    min-width: 300px;

}
#visit-section .visit-section-wrapper{
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}
#visit-section .fe-left-visit-section h2 {
    color: var(--black);
    font-family: Playfair Display Bold, sans-serif;
    font-size: 50px;
}
#visit-section .fe-left-visit-section h4 {
    color: var(--black);
    font-family: Playfair Display Regular, sans-serif;
    font-size: 28px;
    padding-bottom: 10px;
}
#visit-section .btn-red{
    background-color: var(--red);
    transition: all 0.3s;
    padding-bottom: 10px ;
    padding-top: 10px ;
    border: 2px solid var(--red);
    text-decoration: none;
    color: var(--white);
}
#visit-section .btn-red:hover{
    color: var(--red);
    background-color: var(--white);
}
/*******************************************************/
/*------------------ END VISIT SECTION ----------------*/
/*******************************************************/

/*******************************************************/
/*----------------- FOOTER SECTION --------------------*/
/*******************************************************/
#fe-footer{
    background-color: var(--black);
}
.footer-header img{
max-width: 170px;
}
#fe-footer .fe-container{
    padding-top: 50px;
    padding-bottom: 30px;
}
.footer-content{
    display: flex;
    padding-bottom:5px;
    border-bottom: 2px solid var(--white);
}
.footer-social{
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    padding-top: 10px;
}
.footer-social div{

    background-size: contain;
    background-repeat: no-repeat;


}
.footer-social .fe-insta{
background-image: url("/wp-content/uploads/2021/01/Asset-12DailyStoic.svg");
    width: 40px;
    height: 21px;
}
.footer-social .fe-fb{
    background-image: url("/wp-content/uploads/2021/01/Asset-14DailyStoic.svg");
    width: 29px;
    height: 20px;
}.footer-social .fe-twitter{
     background-image: url("/wp-content/uploads/2021/01/Asset-9DailyStoic.svg");
     width: 45px;
     height: 19px;
 }.footer-social .fe-yt{
       background-image: url("/wp-content/uploads/2021/01/Asset-11DailyStoic.svg");
       width: 26px;
       height: 20px;
  }

.footer-social  .fe-insta:hover{
    background-image: url("/wp-content/uploads/2021/01/Asset-8DailyStoic.svg");

}
.footer-social .fe-fb:hover{
    background-image: url("/wp-content/uploads/2021/01/Asset-10DailyStoic.svg");
}.footer-social .fe-twitter:hover{
     background-image: url("/wp-content/uploads/2021/01/Asset-9DailyStoic-1.svg");
 }.footer-social .fe-yt:hover{
      background-image: url("/wp-content/uploads/2021/01/Asset-7DailyStoic.svg");
  }


.menu-footer-menu-container ul{
    display: flex;
    flex-wrap: wrap;

}
.menu-footer-menu-container ul li{
    flex-basis: 33%;
    font-size: 15px;
    text-decoration: none;
    list-style: none;
    padding-bottom: 5px;
    color: var(--white);
}

.menu-footer-menu-container ul li a{
    text-decoration: none;
    color: var(--white);
}
.footer-left{
    flex-basis: 65%;
}
.footer-right{
   margin-left: auto;
    flex-basis: 15%;
}
.footer-copyright{
    padding-top: 10px;
}
.footer-copyright p{
    font-family: "Playfair Display Regular",sans-serif;
    font-size: 14px;
    color: var(--white);
}
.footer-left h5{
    font-family: "Playfair Display Regular",sans-serif;
    font-size: 18px;
    color: var(--white);
    padding-bottom: 10px;
    padding-top: 10px;
}
.footer-right h5{
    font-family: "Playfair Display Regular",sans-serif;
    font-size: 18px;
    padding-top: 10px;
    color: var(--white);
}
.footer-right p{
    font-size: 13px;
    color: var(--white);
}
.footer-right p:last-of-type{
   padding-bottom: 5px;
}
.footer-right span{
    font-family: "Playfair Display Regular",sans-serif;
    font-size: 13px;
}

/*******************************************************/
/*---------------- END FOOTER SECTION -----------------*/
/*******************************************************/
/*-------------------- BLOG SECTION -------------------*/
/*******************************************************/
#blog-section {
    padding: 30px 0 20px ;
}
#blog-section h2.fe-title {
    font-family: Playfair Display Bold, sans-serif;
    font-size: 50px;
    border-bottom: 2px solid var(--black);
    margin-bottom: 20px;
}
.fe-blog-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.fe-blog-post {
    flex-basis: 48%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
}
.fe-blog-post:first-of-type{
    padding-right: 4%;
}
.fe-blog-post:nth-of-type(2n+1){
    padding-right: 4%;
}
.fe-blog-post .fe-blog-cnt-wrap {
    flex-basis: 100%;
    align-self: flex-end;
}
.fe-blog-post .fe-blog-top-cnt {
    flex-basis: 100%;
}
.fe-blog-post .fe-blog-img,
.fe-blog-post .fe-blog-title,
.fe-blog-post .fe-blog-content{
    width: 100%;
}
.fe-blog-img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: 30vw;
    min-height: 300px;
    margin-bottom: 30px;
}
.fe-blog-title h3 {
    color: var(--black);
    font-family: Playfair Display Bold, sans-serif;
    font-size: 30px;
}
.fe-blog-title h4 {
    color: var(--black);
    font-family: Playfair Display Regular, sans-serif;
    font-size: 20px;
    padding-bottom: 10px;
}
.category-link-fe{
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    transition: all 0.5s;
}
.category-link-fe:hover{
    opacity: 0.75;
}
.fe-blog-content p {
    color: var(--black);
    font-size: 18px;
    padding-bottom: 10px;
}
.fe-blog-content {
    border-bottom: 2px solid var(--black);
}
/*******************************************************/
/*----------------- END BLOG SECTION ------------------*/
/*******************************************************/
/*******************************************************/
/*----------------- PRODUCTS SECTION ------------------*/
/*******************************************************/
.fe-products-title h2{
    margin-right: auto;
    display: inline-block;
    color: var(--black);
    font-family: Playfair Display Bold, sans-serif;
    font-size: 50px;
}
.fe-products-title{
    display: flex;
    border-bottom: 2px solid var(--black);
    padding-bottom: 5px;
    margin-bottom: 30px;
    padding-top: 50px;
}
.fe-products-title h3{
    margin-left: auto;
    display: inline-block;
    color: var(--black);
    font-family: Playfair Display Bold, sans-serif;
    font-size: 20px;
    align-self: flex-end;
    margin-bottom: 10px;
}
#products-section .fe-desc{
    padding-bottom: 30px;
    font-size: 12px;
    width: 60%;
}
.fe-product-item-wrapper{
    display: flex;
    justify-content: space-between;
}
.fe-product-item{
    flex-basis: 32%;
    padding-right: 2%;
}
.fe-product-item:last-of-type {
    padding-right: 0;
}
.fe-product-image{
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: 20vw;
    min-height: 200px;
}
#products-section{
    background-color: var(--yellow);
}
.fe-product-item h4{
    color: var(--black);
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 15px;
}
.fe-product-item h5{
    color: var(--black);
    font-size: 12px;
}
.fe-product-item .btn-secondary{
    width: 100%;
    padding: 10px 0;
    font-size: 15px;
    text-align: center;
}
/*******************************************************/
/*--------------- END PRODUCTS SECTION ----------------*/
/*******************************************************/

/*******************************************************/
/*-------------------- SINGLE POST --------------------*/
/*******************************************************/

/* Archives */
.fe-archive-list li {
    border-bottom: 2px solid black;
    padding: 5px 0;
}
/* End Archives */

a.fe-yellow-color {
	text-decoration: none;
}
.fe-yellow-color {
    color: var(--yellow);
}
.fe-control-content {
    padding: 30px 0;
    display: flex;
}
.fe-control-content #fe-post-content {
    flex-basis: 75%;
    margin-right: 2%;
}
.fe-control-content #fe-sidebar {
    flex-basis: 300px;
    min-width: 280px;
    margin-left: auto;
    background-color: var(--white);
}
/*visit section in sidebar*/
#fe-sidebar #visit-section {
    height: unset;
    margin-top: 30px;
}
#fe-sidebar #visit-section .fe-container {
    width: 80%;
}
#fe-sidebar #visit-section .fe-left-visit-section h2 {
    line-height: 1.1em;
    padding-bottom: 10px;
    font-size: 40px;
}
#fe-sidebar #visit-section .fe-left-visit-section h4 {

}
#fe-sidebar #visit-section .fe-left-visit-section p {
    color: var(--black);
    /*font-size: 13px;*/
}
#fe-sidebar #visit-section .fe-left-visit-section .fe-btn.btn-red {
    padding: 10px 20px;
    display: block;
    text-align: center;
}
#fe-sidebar #visit-section .visit-section-wrapper .fe-right-visit-section{
    min-width: unset;
    flex-basis: 100%;
    order: -1;
    height: 200px;
}
/*end visit section in sidebar*/
#fe-sidebar .sb-top-image {
    background: url("/wp-content/uploads/2021/01/Ryan-3-1.jpg") no-repeat center center;
    background-size: cover;
    height: 250px;
}
#fe-sidebar .sb-starter-pack {
    position: relative;
    background: url("/wp-content/uploads/2021/01/Ryan-1.jpg") no-repeat center center;
    background-size: cover;
}
#fe-sidebar .sb-starter-pack:before {
    content: '';
    background-color: rgba(0,0,0,0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.sb-starter-pack .sp-content {
    color: var(--white);
    position: relative;
    z-index: 1;
    width: 80%;
    margin: 0 auto;
    padding: 30px 0;
}
.sp-content .fe-title {
    color: var(--white);
    font-size: 38px;
    font-family: Playfair Display Bold, sans-serif;
    line-height: 1.1em;
    padding-bottom: 10px;
}
.sp-content h3 {
    font-size: 18px;
    padding: 10px 0;
}
.sp-content .sb-list {
    font-size: 11px;
}
.sp-content .sb-list p {
    padding: 5px 0;
}
.sb-signup-from .fe-btn {
    padding: 15px 10px;
    font-weight: bold;
    margin-top: 0;
    width: 100%;
    border-color: var(--yellow);
    background-color: var(--yellow);
}
.sb-signup-from .fe-btn:hover {
    color: var(--yellow) !important;
}
.sb-signup-from input[name="email_address"] {
    text-align: center;
    border: 1px solid var(--white);
    padding: 15px 10px;
    width: 90%;
    margin: 10px 0;
}
.sb-signup-from .fe-btn:focus,
.sb-signup-from input[name="email_address"]:focus {
    outline: none;
}
.fe-archive-wrapper{
    border-top: 2px solid var(--black);
    margin-top: 30px;
    border-bottom: 2px solid var(--black);
    margin-bottom: 30px;
}
.fe-archive{
    padding: 15px 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.fe-archive h2{
    font-size: 38px;
    font-family: Playfair Display Bold, sans-serif;
}
.fe-archive ul{
    padding-top: 20px;
}
.fe-archive ul li a{
    font-size: 16px;
    font-family: Playfair Display Regular, sans-serif;
    padding-bottom: 20px;
    text-decoration: none;
    color: var(--black);
}
.fe-podcast{
    padding: 15px 0;
    width: 80%;
   margin-left: auto;
    margin-right: auto;
}
.fe-podcasts-wrapper{
    border-top: 2px solid var(--black);
    margin-top: 30px;
}
.fe-podcast h2{
    font-size: 38px;
    font-family: Playfair Display Bold, sans-serif;
}
.fe-podcast p{
    font-size: 16px;
    font-family: Playfair Display Regular, sans-serif;
    padding-bottom: 20px;
}
.fe-pod-apple{
    background-color: var(--black);
    border-radius: 60px;
    color: white;
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 8px;
    position: relative;
    margin-bottom: 10px;
}
.fe-pod-apple .pod-icon{
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 60px;
    display: inline-block;
    background-color: var(--white);

}
.fe-pod-apple .pod-icon:after{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-image: url("/wp-content/uploads/2021/01/Asset-22DailyStoic.svg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.fe-pod-apple a{
    display: inline-block;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    padding-left: 15px;
    font-size: 12px;
    padding-bottom: 0;
    text-decoration: none;
    color: var(--white);
}

.fe-pod-spotify{
    background-color: var(--black);
    border-radius: 60px;
    color: white;
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 8px;
    position: relative;
    margin-bottom: 10px;
}
.fe-pod-spotify .pod-icon{
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 60px;
    display: inline-block;
    background-color: var(--white);

}
.fe-pod-spotify .pod-icon:after{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-image: url("/wp-content/uploads/2021/01/Asset-21DailyStoic.svg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.fe-pod-spotify a{
    display: inline-block;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    padding-left: 15px;
    font-size: 12px;
    padding-bottom: 0;
    text-decoration: none;
    color: var(--white);
}

.fe-pod-overcast{
    background-color: var(--black);
    border-radius: 60px;
    color: white;
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 8px;
    position: relative;
    margin-bottom: 10px;
}
.fe-pod-overcast .pod-icon{
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 60px;
    display: inline-block;
    background-color: var(--white);

}
.fe-pod-overcast .pod-icon:after{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-image: url("/wp-content/uploads/2021/01/Asset-2google-podcast.svg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.fe-pod-overcast a{
    display: inline-block;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    padding-left: 15px;
    padding-bottom: 0;
    font-size: 12px;
    text-decoration: none;
    color: var(--white);
}

.fe-archive-dropdown {
    display: inline-block;
    width: 100%;
}

.fe-dropdown-content {
    max-height: 0;
    overflow: hidden;
    overflow-y: scroll;
    transition: all 0.5s;
}
#open-months {
    display: none;
}
#open-months:checked ~ .fe-dropdown-content {
    max-height: 160px;
}

.fe-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.fe-dropdown-content a:hover {
    background-color: var(--gray);
}

.fe-archive-dropdown .fe-dropbtn {
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
    border: 2px solid var(--yellow);
    background-color: var(--yellow);
    background-image: url("/wp-content/uploads/2021/01/arr-bot.png");
    background-repeat: no-repeat;
    background-size: 19px;
    background-position: calc(100% - 10px) center;
    color: var(--white);
    transition: all 0.3s;
}

.fe-archive-dropdown .fe-dropbtn:hover {
    opacity: 0.8;
}
#open-months:checked ~ .fe-dropbtn {
    background-image: url("/wp-content/uploads/2021/01/arr-top.png");
}

.fe-dropdown-content li {
    list-style-type: none;
}

.fe-title-single,
.fe-title {
    font-size: 50px;
    color: var(--black);
    font-family: Playfair Display Bold, sans-serif;
}
.fe-under-header {
    position: relative;
}
.fe-under-header:before {
    content: '';
    background-color: var(--yellow);
    position: absolute;
    left: 0;
    bottom: 0;
    height: 10px;
    width: 160px;
}

.fe-description-single{
    position: relative;
    font-size: 27px;
    padding: 0;
    font-family: Playfair Display Bold, sans-serif;
    margin-bottom: 50px;
}
.fe-description-single:before {
    content: '';
    background-color: var(--yellow);
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 10px;
    width: 160px;
}
.fe-single-post-content span{
    color: var(--black);
}
.fe-single-post-content blockquote{
    border-left: 4px solid var(--yellow);
    padding-left: 15px;
    margin: 10px 0 10px;
}
.fe-single-post-content a{
    color: var(--yellow);
}
.fe-single-post-content h4, .fe-single-post-content h4 ~ span{
    padding: 10px 0;
    font-size: 25px;
    color: var(--black) !important;
    font-family: Playfair Display Bold, sans-serif !important;
}
.fe-single-post-content h4 span a{
    color: var(--black) !important;
}
.fe-single-post-content li{
    padding: 2px 0;
    color: var(--black);
}
.fe-single-post-content li span a{
    color: var(--black) !important;
    text-decoration: none;
}
.fe-single-post-content h3, .fe-single-post-content h3 ~ span {
    padding: 20px 0;
    font-size: 35px;
    color: var(--black);
    font-family: Playfair Display Bold, sans-serif;
}

.fe-single-post-content h2{
    padding: 20px 0;
    font-size: 40px;
    color: var(--black);
    font-family: Playfair Display Bold, sans-serif;

}
.ck_form.ck_minimal h3.ck_form_title{
    padding: unset;

}
/*******************************************************/
/*----------------- END SINGLE POST -------------------*/
/*******************************************************/

/*******************************************************/
/*-------------------- MORE SECTION -------------------*/
/*******************************************************/

#load-section {
    background-color: var(--gray);
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 20px;
}
.load-section-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}
.load-section-wrapper .fe-btn:hover{
    background-color: var(--yellow);

}
.fe-load-img{
    background: url("/wp-content/uploads/2021/01/read-more2.jpg")no-repeat center center;
    background-size: contain;
    height: 20vw;
    width: 100%;
}
#load-section a:hover{
    background-color: var(--yellow);
    color: var(--white);

}
.fe-control-content #fe-post-content{
    overflow-x: hidden;
}

/*******************************************************/
/*-------------------- END MORE SECTION ---------------*/
/*******************************************************/
h1.page-title {
    padding-top: 20px;
}
/*******************************************************/
/*---------------- CHECKOUT SECTION -------------------*/
/*******************************************************/
#post-2670 .entry-content{
    max-width: 1280px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
#post-2670 .entry-content h2{
    font-family: Playfair Display Bold, sans-serif;
}
#post-2670 .entry-content p{
}
#post-2670 .entry-content a{
  text-decoration: none;
}
/*******************************************************/
/*-----------------END CHECKOUT SECTION ---------------*/
/*******************************************************/
#post-745{
    height: 100vh;
}
#post-745 .entry-content{
    max-width: 1280px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;

}
#post-745 .entry-content a{
    text-decoration: none;
}
/*******************************************************/
/*-----------------404 SECTION ------------------------*/
/*******************************************************/
.alert, .alert-warning{
    height: 100vh;
    font-size: 31px;
    padding-top: 50px;
}
/*******************************************************/
/*-----------------END 404 SECTION --------------------*/
/*******************************************************/
#post-347{
    padding: 0;
}
.search-submit{
    font-size: 20px;
    padding: 5px;
    background-color: var(--yellow);
    border: 2px solid var(--yellow);
    color: white;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    transition: all 0.5s;
}
.search-submit:hover{
    background-color: transparent;
    color: black;
    border: 2px solid var(--yellow);
}
.search-field{
    height: 35px;
    padding-top: 5px;
}

.fe-sign-popup {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 20;
   width: 100%;
    height: 100%;
    background-color: var(--white);
}
.fe-sign-popup.popup-opened {
    display: flex;
}
.fe-sign-popup .img-part-fe{
    flex-basis: 70%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.fe-sign-popup .content-part-fe{
    flex-basis: 30%;
    display: flex;
    position: relative;
}
.fe-sign-popup .content-part-fe .close-popup-fe {
    position: absolute;
    top: 0;
    right: 0;
    color: black;
    padding: 20px;
    cursor: pointer;
}
.fe-sign-popup .content-part-fe .cnt-wrap-fe {
    align-self: center;
    margin: 0 auto;
    width: 90%;
    max-width: 420px;
}

.cnt-wrap-fe .fe-left-container h3 {
    font-family: Playfair Display Bold, sans-serif;
    font-size: 45px;
    padding-bottom: 10px;
    line-height: 1.1em;
}
.cnt-wrap-fe .fe-left-container h3 span {
    color: var(--yellow);
}


.fe-sign-popup .content-part-fe .fe-form-input{
    border: 2px solid var(--black);
    background: var(--white);
    color: var(--black);
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin-left: auto;
    text-align: center;
    margin-right: auto;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
    margin-top: 10px;
    box-sizing: border-box;
}
.fe-sign-popup .content-part-fe .btn-yellow{
    border: 2px solid var(--yellow);
    background: var(--yellow);
    color: var(--white);
    transition: all 0.3s;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-bottom: 31px;
}
.fe-sign-popup .content-part-fe .btn-yellow:hover{
    background: var(--white);
    color: var(--black);
}


.special-page {
    width: 90%;
    max-width: 1280px;
    display: block;
}
.special-page span{
    color: var(--black);
}
.special-page blockquote{
    border-left: 4px solid var(--yellow);
    padding-left: 15px;
    margin: 10px 0 10px;
}
.special-page a{
    color: var(--yellow);
}
.special-page h4, .special-page h4 ~ span{
    padding: 10px 0;
    font-size: 25px;
    color: var(--black) !important;
    font-family: Playfair Display Bold, sans-serif !important;
}
.special-page h4 span a{
    color: var(--black) !important;
}
.special-page li{
    padding: 2px 0;
    color: var(--black);
}
.special-page li span a{
    color: var(--black) !important;
    text-decoration: none;
}
.special-page h3, .special-page h3 ~ span {
    padding: 20px 0;
    font-size: 35px;
    color: var(--black);
    font-family: Playfair Display Bold, sans-serif;
}

.special-page h2{
    padding: 20px 0;
    font-size: 40px;
    color: var(--black);
    font-family: Playfair Display Bold, sans-serif;

}
.special-page-img{
    height: 40vw;
    min-height: 300px;
    margin: 30px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
@media screen  and (max-width: 1280px){
    .fe-sign-popup .img-part-fe{
        background-position: right center;
    }
    /*******************************************************/
    /*------------------  FORM SECTION --------------------*/
    /*******************************************************/
    #section-form .fe-left-container{
        flex: 1 1 100%;
        max-width: unset;

    }
    #section-form .fe-left-container h3{
        max-width: 665px;

    }

    #section-form .fe-right-container{
        margin-top: 50px;
        flex: 1 1 100%;
        max-width: unset;

    }
    /*******************************************************/
    /*---------------- END FORM SECTION -------------------*/
    /*******************************************************/
    #post-2670 .entry-content p:first-of-type img:first-of-type{
        max-width: 300px;
        max-height: 100px;
        margin-left: auto;
        margin-right: auto;
    }
    #post-2670 .entry-content p:first-of-type img:nth-of-type(2n){
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media only screen and (max-width: 768px) {
    li.menu-search #searchform {
        position: unset;
    }
    .fe-sign-popup {
        flex-wrap: wrap;
    }
    .fe-sign-popup .img-part-fe{
        flex-basis: 100%;
        height: 30%;
        background-size: cover;
    }
    .fe-sign-popup .content-part-fe{
        flex-basis: 100%;
        height: 70%;
        order: -1;
    }
    .cnt-wrap-fe .fe-left-container h3 {
        font-size: 30px;
    }
    .content-part-fe .fe-left-container h3 {
        font-size: 22px;
        padding-top: 20px;
    }
    .content-part-fe .fe-left-container p {
        font-size: 12px;
    }
    .fe-sign-popup .content-part-fe .close-popup-fe {
        padding: 15px;
    }

    #post-2670 .entry-content p:first-of-type img:first-of-type{
        max-width: 250px;
        max-height: 70px;
    }
    #post-2670 .entry-content p:first-of-type img:nth-of-type(2n){
        display: none;
    }
    #searchform {
        margin: 0 auto;
    }
    #searchform #s {
        width: 190px;
    }
    /*******************************************************/
    /*---------------------- HEADER -----------------------*/
    /*******************************************************/
    #burger-container {
        display: block;
    }
    .navigation .menu-header-container {
        position: absolute;
        left: 0;
        width: 100%;
        background: var(--black);
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s;
        z-index: 10
    }
    .navigation .menu-header-container.nav-open {
        max-height: 100vh;
    }
    .navigation ul {
        flex-wrap: wrap;
        padding: 20px 0;
    }
    .navigation ul .menu-item {
        flex-basis: 100%;
    }
    .navigation ul .menu-item a {
        min-width: 150px;
        text-align: center;
        margin: 5px auto;
    }
    /*******************************************************/
    /*-------------------- END HEADER ---------------------*/
    /*******************************************************/

    /*******************************************************/
    /*------------------- FEATURED POST -------------------*/
    /*******************************************************/
    #featured-post h2.fe-title {
        font-size: 40px;
    }
    #featured-post {
        padding: 0 0 25px;

    }
    #featured-post .fe-container{
        padding: 25px 0;

    }
    /*******************************************************/
    /*---------------- END FEATURED POST ------------------*/
    /*******************************************************/
    /*******************************************************/
    /*-------------------  FORM SECTION -------------------*/
    /*******************************************************/
    #section-form .fe-left-container h3{
        font-size: 31px;
    }
    /*******************************************************/
    /*------------------ END FORM SECTION -----------------*/
    /*******************************************************/
    /*******************************************************/
    /*------------------- VISIT SECTION -------------------*/
    /*******************************************************/
    #visit-section {
        height: auto;
    }
    #visit-section .fe-left-visit-section {
        flex-basis: 100%;
    }
    #visit-section .fe-left-visit-section h2{
        font-size: 40px;
    }
    #visit-section .fe-right-visit-section{
        height: 300px;
        order: -1;
        min-width: 250px;
    }
    /*******************************************************/
    /*----------------- END VISIT SECTION -----------------*/
    /*******************************************************/

    /*******************************************************/
    /*-------------------- BLOG SECTION -------------------*/
    /*******************************************************/
    .fe-blog-post {
        flex-basis: 100%;
        padding-right: 0 !important;
    }
    /*******************************************************/
    /*------------------END  BLOG SECTION -----------------*/
    /*******************************************************/

    /*******************************************************/
    /*----------------- PRODUCTS SECTION ------------------*/
    /*******************************************************/
    .fe-product-item-wrapper {
        flex-wrap: wrap;
    }
    .fe-product-item{
        flex-basis: 100%;
        padding-right: 0 !important;
    }

    /*******************************************************/
    /*--------------- END PRODUCTS SECTION ----------------*/
    /*******************************************************/

    /*******************************************************/
    /*----------------- SINGLE SECTION ------------------*/
    /*******************************************************/
    .fe-title-single {
        font-size: 40px;
    }
    .fe-control-content #fe-sidebar{
        flex-basis: 100%;
    }
    .fe-control-content{
        flex-wrap: wrap;
    }
    .fe-control-content #fe-post-content{
        flex-grow: 1;
    }
    .sb-signup-from input[name="email_address"]{
        width: 100%;
        box-sizing: border-box;
    }
    #fe-sidebar .sb-top-image{
        height: 500px;
    }

    /*******************************************************/
    /*----------------- END SINGLE SECTION ----------------*/
    /*******************************************************/

    /*******************************************************/
    /*------------------FOOTER ----------------------------*/
    /*******************************************************/

    .menu-footer-menu-container ul li{
        font-size: 12px;
        padding-bottom: 10px;
    }

    .menu-footer-menu-container ul li{
        flex-basis: 90%
    }

    /*******************************************************/
    /*------------------END  FOOTER -----------------------*/
    /*******************************************************/
}
@media only screen and (max-width: 450px) {
    .fe-btn {
        display: block;
        text-align: center;
    }
    /*******************************************************/
    /*----------------- SINGLE SECTION ------------------*/
    /*******************************************************/
    .fe-description-single{
        font-size: 21px;
    }
    .fe-title-single{
        font-size: 30px;
        line-height: 1.3;
    }
    /*******************************************************/
    /*----------------- END SINGLE SECTION ----------------*/
    /*******************************************************/
    .navigation ul .menu-item.menu-signup a {  background-position: 25px center;}
}
@keyframes popUp {
    0%{
        transform: translateY(-100%);
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    100%{
        transform: translateY(0%);
    }
}
.animate-popup{
    animation-name: popUp;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes postUp {
    0%{
        transform: translateY(100%);
        opacity: 0;
        transform: scale(0,0);
    }
    60% {
        opacity: 1;
    }
    100%{
        transform: translateY(0%);
        transform: scale(1,1);
    }
}
.fe-animate{
    animation-name: postUp;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}