.blog-view h1,
.blog-view h2,
.blog-view h3,
.blog-view h4 {
    font-size: 12px;
    text-transform: initial;
    font-weight: normal;
    letter-spacing: initial;
    text-align: initial;
    margin: initial;
    font-family: 'helvetica', 'arial', sans-serif;
}

.blog-view h1 {
    font-size: 34px;
    line-height: 38px;
    font-weight: bold;
    text-align: center;
}

.blog-view h2 {
    font-size: 28px;
    line-height: 32px;
    font-weight: bold;
    text-align: left;
}

.blog-view h3 {
    font-size: 22px;
    line-height: 26px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 5px;
}

.blog-view h4 {
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 5px;
}

#main_content .white-box {
    padding: 50px 200px;
    margin-bottom: 0;
}

.blog-view-date {
    text-align: center;
    font-size: 12pt;
    line-height: 14pt;
    margin-bottom: 10px;
}

.blog-view-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 38px;
    text-align: center;
}

#main_content .blog-view-content {
    font-size: 14pt;
    line-height: 20pt;
}

#main_content .blog-view-content p {
    max-width: initial;
    margin: 0;
}

#main_content .blog-view-content a img {
    width: 100% !important;
    height: auto !important;
}

.author-top-title {
    box-sizing: border-box;
    text-transform: uppercase;
    display: block;
    font-size: 12px;
    margin: 40px 0 10px;
}

.blog-author {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    border-top: 3px solid #e2e2e2;
    border-bottom: 3px solid #e2e2e2;
    margin-bottom: 20px;
}

.blog-author .blog-author-img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-author .blog-author-data {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-author .blog-author-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.blog-author .blog-author-title {
}

.blog-author .blog-author-desc {
    width: calc(100% - 350px);
    height: 100px;
    overflow: hidden;
}

/************************************************************************************/

#blog-shop {
    display: flex;
    justify-content: space-evenly;
}

#blog-shop .blog-shop-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#blog-shop .blog-shop-left .blog-shop-title {
    margin-bottom: 25px;
    font-size: 30px;
}

#blog-shop .blog-shop-left .christmass-button {
    background-image: url('/img/shopping_cart.png');
    background-color: #000000;
    width: 100px;
    text-align: center;
    padding: 0 5px 0 50px;
}

#blog-shop .blog-shop-right {
    /*background: rgba(200, 200, 200, 0.5);*/
    background-image: url("/img/wines.png");
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: center;
    width: 350px;
    height: 350px;
    position: relative;
    top: -50px;
}

/************************************************************************************/
#blog-newsletter {
    padding: 30px 40px;
    background-color: #FFFFFF;
    margin-bottom: 50px;
}

#blog-newsletter .newsletter-form {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#blog-newsletter label {
    width: calc(100% - 650px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 27px;
    height: 45px;
}

#blog-newsletter input {
    margin: 0;
    width: 500px;
    max-width: 500px;
    border: 2px solid #d3d3d1;
    box-sizing: border-box;
    padding-left: 20px;
    font-size: 18px;
}

#blog-newsletter input:focus-visible {
    outline: none;
}

#blog-newsletter input::placeholder {
    color: #9b9b9b;
}

#blog-newsletter button {
    background-color: #000;
    background-image: url("/img/arrow_forward.png");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 24px auto;
    border: 0 none;
    color: #fff;
    overflow: hidden;
    padding: 0 40px 0 10px;
    position: relative;
    width: 110px;
    font-size: 17px;
    font-family: "Archivo Narrow", sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}

#blog-newsletter .newsletter-reg {
    width: 100%;
    font-size: 11px;
    text-align: center;
    margin-top: 5px;
}

#blog-newsletter .newsletter-reg a {
    text-decoration: underline;
}

@media (max-width: 1309px) {
    #blog-newsletter label {
        font-size: 24px;
    }
}

@media (max-width: 1255px) {
    #blog-newsletter label {
        width: calc(100% - 450px);
    }

    #blog-newsletter input {
        width: 400px;
    }
}

@media (max-width: 1061px) {
    #blog-newsletter .newsletter-form {
        flex-direction: row;
        flex-wrap: wrap;
    }

    #blog-newsletter label {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    #blog-newsletter input {
        width: calc(100% - 120px);
        max-width: initial;
    }
}

@media (max-width: 935px) {
    #blog-shop .blog-shop-left .blog-shop-title {
        text-align: center;
    }

    #main_content .blog-view-content a img {
        width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 640px) {
    #main_content .white-box {
        padding: 20px;
    }

    .blog-author {
        flex-wrap: wrap;
    }

    .blog-author .blog-author-data {
        width: 160px;
    }

    .blog-author .blog-author-desc {
        width: 100%;
        margin-top: 20px;
        height: auto;
    }

    #blog-shop .blog-shop-left .blog-shop-title {
        line-height: 1;
    }
}

@media (max-width: 516px) {
    #blog-newsletter label {
        font-size: 18px;
    }
}

@media (max-width: 430px) {
    #blog-shop .blog-shop-left .blog-shop-title {
        font-size: 23px;
    }

    #blog-shop .blog-shop-right {
        background-size: 120% auto;
        height: 225px;
    }

    #blog-newsletter {

    }
}

@media (max-width: 415px) {
    #blog-newsletter label {
        font-size: 16px;
    }

    #blog-newsletter input {
        width: 100%;
    }

    #blog-newsletter button {
        margin-top: 10px;
        height: 38px;
    }
}
