/*!
Theme Name: Beauty Touch
Theme URI: http://underscores.me/
Author: Vaidotas Lipskas
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: beauty-touch
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Beauty Touch is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Fonts
# Header
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
    font-family: "Poppins";
    src: url("./fonts/Poppins/Poppins-Light.ttf") format("ttf");
    font-weight: 400;
}

@font-face {
    font-family: "Poppins";
    src: url("./fonts/Poppins/Poppins-Medium.ttf") format("ttf");
    font-weight: 500;
}

@font-face {
    font-family: "Poppins";
    src: url("./fonts/Poppins/Poppins-SemiBold.ttf") format("ttf");
    font-weight: 600;
}

@font-face {
    font-family: "Poppins";
    src: url("./fonts/Poppins/Poppins-Bold.ttf") format("ttf");
    font-weight: 700;
}


@font-face {
    font-family: "Roboto";
    src: url("./fonts/Roboto/Roboto-Light.ttf") format("ttf");
    font-weight: 400;
}

@font-face {
    font-family: "Roboto";
    src: url("./fonts/Roboto/Roboto-Medium.ttf") format("ttf");
    font-weight: 500;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header#masthead {
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: 20px;
    background: transparent;
    position: absolute;
    left: 50%;
    z-index: 99;
    transform: translateX(-50%);
}
button#menu-toggle-button {
    position: relative;
    margin-top: 10px;
    z-index: 1000;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    background: rgba(255, 255, 255, 0.2);
}
.icon-1, .icon-2, .icon-3 {
    position: absolute;
    left: 25%;
    top: 50%;
    width: 26px;
    height: 3px;
    background-color: #c58963;
    transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}
.icon-1 {
    transform: translateY(-8px);
    animation-delay: 100ms;
}
.icon-3 {
    transform: translateY(8px);
    animation-delay: 250ms;
}
.toggled .icon-1 {
    transform: rotate(40deg);
}
.toggled .icon-2 {
    opacity: 0;
}
.toggled .icon-3 {
    transform: rotate(-40deg);
}

header#masthead .site-branding {
    width: 30%;
    display: flex;
    justify-content: center;
}

header#masthead button.menu-toggle {
    border: none;
    color: #cda892;
}

header#masthead button.menu-toggle i.fas.fa-align-justify {
    font-family: 'FontAwesome';
    font-style: normal;
}

header#masthead nav#site-navigation {
    width: 50%;
    line-height: 70px;
    margin: 0 auto;
    max-width: 585px;
}

header#masthead nav#site-navigation .menu-item {
    margin: 0 5%;
    line-height: 40px;
    margin-top: 15px;
}

@media (min-width: 601px) and (max-width: 1023px) {
    header#masthead nav#site-navigation .menu-item {
        margin-top: 8px;
    }
}

header#masthead nav#site-navigation .menu-item a {
    font-family: "Poppins";
    font-weight: 500;
    color: #424245;
    text-transform: uppercase;
    font-size: 0.84vw;
    font-size: 1rem;
    transition: all 0.3s ease-in;
    border-bottom: 3px solid transparent;
}

@media(min-width: 1024px) and (max-width: 1100px) {
    header#masthead nav#site-navigation .menu-item a {
        font-size: 0.9rem;
    }
}

header#masthead nav#site-navigation .menu-item a[aria-current="page"] {
    border-bottom: 3px solid #D0A488;
}

header#masthead nav#site-navigation .menu-item a:hover {
    border-bottom: 3px solid #D0A488;
}

header#masthead nav#site-navigation li#menu-item-24:hover > a:after, header#masthead nav#site-navigation li#menu-item-24.focus > a:after {
    content: '\f106';
}

header#masthead nav#site-navigation li#menu-item-24 > a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 600;
    font-weight: bold;
    position: relative;
    right: -5px;
    font-size: 1rem;
    margin-top: -1%;
}

header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu {
    flex-flow: column;
    padding: 10% 5%;
    background: #fff;
}

header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu li {
    width: 250px;
    margin: 0;
    padding: 0 5%;
}

header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu li a {
    width: 100%;
}
header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu .sub-menu {
    float: unset;
    position: relative;
    box-shadow: none;
    display: block;
    width: 113% !important;
    padding: 0;
    left: -7% !important;
}
header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu .sub-menu li {
    padding: 0;
    padding-left: 10px;
    position: relative;
}
/*header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu .sub-menu li:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: -7%;*/
/*    height: 1px;*/
/*    width: 104%;*/
/*    background: #000;*/
/*    display: block;*/
/*    bottom: 0;*/
/*}*/
header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu .sub-menu li a[aria-current="page"] {
    border-bottom: 3px solid transparent !important;
}
header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu .sub-menu li:hover a[aria-current="page"] {
    border-bottom: 3px solid transparent !important;
}
header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu .sub-menu li:hover a {
    border-bottom: 3px solid transparent !important;
    transition: unset !important;
    overflow: hidden;
}
/*header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu .sub-menu li:hover:before {*/
/*    background: #d0a488 !important;*/
/*}*/
header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu .sub-menu li:hover {
    background: #c99a7c;
}
header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu .sub-menu li:hover a {
    color: #fff !important;
}
header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu .sub-menu li {
    padding: 0;
    padding-left: 30px;
    position: relative;
    margin-right: 0px !important;
    width: 100% !important;
    transition: all 0.2s ease-in;
}

header#masthead .site-right-nav {
    width: 20%;
    display: flex;
    margin-top: 15px;
    justify-content: center;
}
header#masthead .site-right-nav.site-search, header#masthead .site-right-nav.account-menu-hover, header#masthead .site-right-nav.site-header-cart {
    width: 33.33%;
}

header#masthead .site-right-nav img {
    width: 24px;
    cursor: pointer;
    z-index: 2;
    position: relative;
    margin-top: 10px;
    margin-right: 7px;
}

header#masthead .site-right-nav .site-search {
    position: relative;
    height: 33px;
}

header#masthead .site-right-nav .site-search button {
    display: none;
}

header#masthead .site-right-nav .site-search input[type="search"]::-webkit-search-decoration,
header#masthead .site-right-nav .site-search input[type="search"]::-webkit-search-cancel-button,
header#masthead .site-right-nav .site-search input[type="search"]::-webkit-search-results-button,
header#masthead .site-right-nav .site-search input[type="search"]::-webkit-search-results-decoration {
    display: none;
}
input {
    min-height: 50px;
}
header#masthead .site-right-nav .site-search .search-field {
    height: 40px;
    width: 0vh;
    padding-left: 15px;
    border: 1px solid #a6a6a6;
    border-radius: 0;
    font-family: Roboto;
    font-weight: 400;
    transition: all 0.33s ease-in;
    opacity: 0;
    visibility: hidden;
}

header#masthead .site-right-nav .site-search .search-field.active {
    opacity: 1;
    visibility: visible;
    width: 60vh;
}

header#masthead .site-right-nav .site-search .widget {
    position: absolute;
    right: 0;
    background: #fff;
    z-index: 1;
    top: 0;
    visibility: hidden;
}

header#masthead .site-right-nav .account-menu-hover {
    position: relative;
    height: 33px;
}

header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_in-container,
header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_out-container {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in;
    position: absolute;
    left: 0;
    width: 200px;
    top: 45px;
}

header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_in-container.active,
header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_out-container.active {
    opacity: 1;
    visibility: visible;
}

header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_in-container ul,
header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_out-container ul {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
    font-family: Roboto;
    font-weight: 400;
    background: #fff;
    border: 1px solid #a6a6a6;
    padding: 5%;
    z-index: 200;
}

.aws-search-btn.aws-form-btn {
    background: transparent !important;
    border: none !important;
}

span.aws-search-btn_icon svg {
    color: #c99b7e;
}

.aws-container {
    position: absolute;
    right: 0;
    top: 0;

}

.aws-container .aws-wrapper {
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.33s ease-in;
    font-family: Roboto;
}

.aws-container .aws-search-form .aws-wrapper.active input {
    padding-left: 15px;
}

.aws-container .aws-search-form .aws-wrapper input {
    padding: 0;
    font-family: Roboto;
}

.aws-container .aws-wrapper.active {
    width: 32vw;
    visibility: visible;
    opacity: 1;
}

@media (max-width: 1023px) {
    .aws-container {
        border: 1px solid lightgrey;
        width: 95%;
        left: 0;
        margin: 0 auto;
        overflow: hidden;
    }

    .aws-container .aws-wrapper {
        visibility: visible;
        opacity: 1;
    }

    .aws-container .aws-search-form .aws-wrapper input {
        border: unset;
        padding-left: 15px;

    }
}

.aws-container .aws-search-form .aws-search-btn_icon {
    height: 29px;
    line-height: 29px;
    width: 42px;
}

header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_in-container ul li, header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_out-container ul li {
    margin-bottom: 5px;
    line-height: 30px;
}

header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_in-container ul li a, header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_out-container ul li a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease-in;
    border-bottom: 3px solid transparent;
}

header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_in-container ul li a:hover, header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_out-container ul li a:hover {
    border-bottom: 3px solid #D0A488;
}

header#masthead .site-right-nav ul#site-header-cart {
    position: relative;
    padding: 0;
    margin: 0;
    list-style-type: none;
    height: 33px;
}

header#masthead .site-right-nav ul#site-header-cart .shopping-cart-bt {
    opacity: 0;
    visibility: hidden;
    width: 300px;
    position: absolute;
    right: 0;
    background: #fff;
    padding: 15px;
    font-family: Roboto;
    transition: all 0.2s ease-in;
    border: 1px solid #a6a6a6;
    top: 45px;
}

header#masthead .site-right-nav ul#site-header-cart .shopping-cart-bt.active {
    opacity: 1;
    visibility: visible;
}

header#masthead .site-right-nav ul#site-header-cart .shopping-cart-bt .woocommerce a.remove:hover {
    background: transparent;
    color: #930404 !important;
}

header#masthead .site-right-nav ul#site-header-cart .shopping-cart-bt a {
    color: #000 !important;
}

header#masthead .site-right-nav ul#site-header-cart .shopping-cart-bt a.cart-contents {
    display: block;
    margin-bottom: 10px !important;
}

header#masthead .site-right-nav ul#site-header-cart .shopping-cart-bt a.remove {
    color: red !important;
    transition: all 0.2s ease-in;
}

header#masthead .site-right-nav ul#site-header-cart .shopping-cart-bt a.remove:hover {
    color: #fff !important;
}

header#masthead .site-right-nav ul#site-header-cart .shopping-cart-bt a img {
    width: 48px !important;
}

header#masthead .site-right-nav ul#site-header-cart .shopping-cart-bt .buttons {
    display: flex;
    text-align: center;
}

header#masthead .site-right-nav ul#site-header-cart .shopping-cart-bt .buttons a {
    border-radius: 0px !important;
    background: #C99A7C;
    color: #fff !important;
    font-family: Roboto;
    font-weight: 400;
    transition: all 0.2s ease-in;
    width: 50%;
}

header#masthead .site-right-nav ul#site-header-cart .shopping-cart-bt .buttons a:hover {
    background: #b97d57 !important;
}

@media (max-width: 1600px) {
    header#masthead .site-right-nav ul#site-header-cart .shopping-cart-bt,
    header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_in-container,
    header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_out-container {
        left: unset !important;
        right: 0;
        top: 45px;
    }
}

@media (max-width: 1023px) {
    header#masthead .site-branding {
        width: 45%;
    }

    header#masthead .site-right-nav div#mobile-search-box > img {
        margin-top: 24px !important;
        margin-right: 4vw !important;
    }

    header#masthead .site-right-nav i {
        font-size: 24px !important;
        display: block;
    }

    div#mobile-search-box img {
        width: 24px !important;

    }

    header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu {
        box-shadow: unset;
        padding: 0;
    }

    header#masthead nav#site-navigation #primary-menu .menu-item .sub-menu li {
        width: fit-content !important;
        white-space: nowrap;
    }

    header#masthead .site-right-nav .site-search .widget {
        width: 95%;
        margin: 0 auto !important;
        left: 0;
    }

    .main-navigation ul {
        justify-content: center;
    }

    .main-navigation ul li:hover > ul, .main-navigation ul li.focus > ul {
        position: relative;
    }

    header#masthead .site-right-nav .site-search {
        height: 73px;
    }

    div#mobile-search-box img {
        margin-right: 25px !important;
        margin-top: 23px !important;
        float: right;
    }

    header#masthead .site-right-nav .site-search .search-field {
        opacity: 1 !important;
        visibility: visible !important;
        border: 2px solid;
        margin: 0 auto;
        width: 100%;
    }

    header#masthead .site-right-nav {
        margin-top: 1%;
        width: 25%;
        margin-left: auto;
        min-width: 111px;
    }


    nav#site-navigation .menu-item {
        width: fit-content;
    }

    nav#site-navigation button.menu-toggle {
        background: transparent;
        padding: 0.6em 5px;
        z-index: 9999999;
    }

    nav#site-navigation button.menu-toggle i {
        font-size: 24px;
    }

    nav#site-navigation.toggled .menu-main_menu-container {
        /*opacity: 1;*/
        /*visibility: visible;*/
        background: #fff;
        transform: translateY(0);
    }

    nav#site-navigation .menu-main_menu-container {
        transition: all 0.3s ease-in;
        position: absolute;
        left: 0;
        transform: translateY(-100%);
        width: 100%;
        background: #fff;
        padding-top: 100px;
        top: -20px;
        z-index: -1;
        height: 100vh;
        /*opacity: 0;*/
        /*visibility: hidden;*/
    }
}
@media(max-width: 768px) {
    .site-branding img {
        min-width: 170px;
        margin-left: 25px;
    }
}
@media (min-width: 601px) and (max-width: 1023px) {
    header#masthead .site-right-nav ul#site-header-cart .shopping-cart-bt,
    header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_in-container,
    header#masthead .site-right-nav .account-menu-hover .menu-account_menu_logged_out-container {
        left: unset !important;
        right: 0;
        top: 36px;
    }
}

.top-home {
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}

.top-home.top-home::before {
    content: ' ';
    padding-bottom: 56.9%;
    width: 100px;
    height: 100px;
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/

.top-home#contact .top-box {
    top: 50%;
}

div#contact {
    overflow: hidden;
    height: 42.8vw;
    background-size: cover;
}

.top-home .top-box {
    left: 30%;
    width: 40vw;
}

.send-us-email {
    position: absolute;
    bottom: 0;
    background: #f6f6f6;
    padding: 4vw 6vw;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.send-us-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.send-us-left>div a {
    align-self: self-end;
}
.send-us-left>div {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.send-us-right {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.send-us-email img {
    width: 2.6vw;
}

.send-us-email .send-us-left h2 {
    font-family: "Poppins";
    font-size: 26px;
    font-size: 1.7vw;
    margin: 0;
}

@media (min-width: 1600px) {
    .send-us-email .send-us-left h2 {
        font-size: 26px;
    }
}

.send-us-email .send-us-left a {
    font-size: 1.6vw !important;
    text-decoration: none;
    color: #424245;
    position: relative;
    left: 5px;
    font-family: "Poppins";
    font-weight: 500;
    margin-top: 0 !important;
    display: inline-block;
}

@media (min-width: 1600px) {
    .send-us-email .send-us-left a {
        font-size: 25px !important;
    }
}

.contact-section-bottom {
    margin: 100px auto;
    max-width: 1400px;
    padding: 0 6vw;
}

.contact-section-bottom h2 {
    font-family: "Poppins";
    font-size: 26px;
    font-weight: bold;
}

.contact-section-bottom form {
    display: flex;
    flex-direction: row;
}

.contact-section-bottom .wpforms-field-container {
    display: flex;
    flex-direction: column;
    max-width: 100% !important;
    width: 50% !important;
}

.contact-section-bottom .wpforms-submit-container {
    display: flex;
    position: relative !important;
    width: 50% !important;
}

.contact-section-bottom .wpforms-submit-container button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    color: #fff !important;
    font-size: 21px;
    font-weight: 600;
    font-family: "Poppins";
    letter-spacing: 0.07em;
    background: #c99a7c !important;
    display: block;
    text-align: center;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.20);
    height: 50px !important;
    border: none !important;
    padding: 0 55px !important;
    display: inline-block;
    transition: all 0.3s ease-in;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-device-width: 1024px) {
    .aws-container .aws-search-field {
        font-size: 17px;
    }
}
.aws-container .aws-search-field {
    font-size: 14px;
    font-weight: 500;
}
.contact-section-bottom .wpforms-submit-container button:hover {
    color: #fff !important;
    background: #c58963;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.35);
}

.contact-section-bottom input {
    height: 50px !important;
    max-width: 100% !important;
}

.contact-section-bottom textarea {
    max-width: 100% !important;
}

@media (max-width: 1023px) {
    div#contact {
        height: 86.8vw;
    }

    .top-home .top-box h1 {
        font-size: 3.39vw;
    }

    .top-home .top-box {
        top: 42% !important;
        left: 28%;
        width: 40vw;
    }

    .top-home .top-box p {
        font-size: 1.83vw;
        line-height: 2.5vw;
    }

    a.main-button {
        font-size: 2.95vw;
        padding: 2.1vw 7.5vw;
    }

    .send-us-email .send-us-left h2, .send-us-email .send-us-left a {
        font-size: 2.5vw !important;
    }

    .send-us-email img {
        width: 3.5vw !important;
        align-self: center;
    }

    .contact-section-bottom .wpforms-field-container {
        max-width: 100% !important;
        width: 100% !important;
    }

    .contact-section-bottom .wpforms-submit-container {
        width: 100% !important;
    }

    .contact-section-bottom form {
        display: flex;
        flex-direction: column;
    }

    .contact-section-bottom {
        margin-top: 40px;
    }

    .contact-section-bottom .wpforms-submit-container button {
        transform: none !important;
        margin-top: 1vw !important;
        left: unset !important;
        right: 0;
        width: 55% !important;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


footer.site-footer {
    border-top: 30px solid #c99a7c;
    background: #f6f6f6;
    padding-top: 40px;
    padding-top: 40px;
    overflow: hidden;
    margin-top: auto;
	width: 100%;
}

footer.site-footer .site-info {
    max-width: 1230px;
    margin: 0 auto;
    display: flex;
    padding: 0 15px;
}

footer.site-footer .site-info .footer-left {
    width: 40%;
}

footer.site-footer .site-info .footer-left p.about-company {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 30px;
    font-family: Roboto;
    font-weight: 300;
}

footer.site-footer .site-info .footer-left .footer-social {
    display: flex;
}

footer.site-footer .site-info .footer-left .footer-social a {
    text-decoration: none;
    color: #c99a7c;
    font-size: 43px;
    margin: 0 5px;
    line-height: 43px;
    flex-flow: column;
}

footer.site-footer .site-info .footer-left .footer-social a:hover {
    color: #c58963;
}

footer.site-footer .site-info .footer-left .footer-social a:first-of-type {
    margin-left: 0;
}

footer.site-footer .site-info .footer-left a.custom-logo-link {
    width: 100%;
}

footer.site-footer .site-info .footer-left a.custom-logo-link img {
    width: 76.1%;
}

footer.site-footer .site-info .footer-left .footer-social a:nth-of-type(2) {
    font-size: 30px;
    background: #c99a7c;
    color: #fff;
    height: 36.86px;
    width: 36.86px;
    line-height: 35px;
    text-align: center;
    border-radius: 6px;
    margin-top: 5px;
    transition: all 0.3s ease-in;
}
@media(max-width: 1023px) {
    footer.site-footer .site-info .footer-left .footer-social a:nth-of-type(2) {
        margin-top: 1.2vw;
    }
}

footer.site-footer .site-info .footer-left .footer-social a:nth-of-type(2):hover {
    background: #c58963;
    color: #fff;
}

footer.site-footer .site-info .footer-left .footer-social a:last-of-type {
    margin-right: 0;
}

footer.site-footer .site-info .footer-left .footer-social a i {
    font-family: 'FontAwesome';
    font-style: normal;
}

footer.site-footer .site-info .footer-right {
    width: 60%;
    padding-left: 18%;
}

footer.site-footer .site-info .footer-right .footer-right-top {
    display: flex;
    margin-bottom: 25px;
}

footer.site-footer .site-info .footer-right .footer-right-top .footer-menu {
    width: 100%;
    max-width: 190px;
    margin-right: 10%;
}

footer.site-footer .site-info .footer-right .footer-right-top .footer-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

footer.site-footer .site-info .footer-right .footer-right-top .footer-menu ul li {
    margin-bottom: 15px;
}

footer.site-footer .site-info .footer-right .footer-right-top .footer-menu ul li a {
    font-size: 16px;
    text-decoration: none;
    color: #424242;
    font-weight: 500;
    font-family: Roboto;
    transition: all 0.3s ease-in;
}

footer.site-footer .site-info .footer-right .footer-right-top .footer-menu ul li a:hover {
    color: #1c1c1c;
}

footer.site-footer .site-info .footer-right .footer-right-top .footer-menu h3 {
    font-size: 20px;
    padding-bottom: 7px;
    border-bottom: 4px solid #c99a7c;
}

footer.site-footer .footer-end {
    border-top: 1px solid #D6D6D6;
    margin-top: 30px;

}

footer.site-footer .footer-end-middle {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
    padding-bottom: 20px;
    color: #424242;
}

footer.site-footer .footer-end a {
    text-decoration: none !important;
    color: #424242 !important;
}
article .entry-content {
    padding-top: 40px !important;
}
@media (max-width: 900px) {
    footer.site-footer .site-info {
        flex-direction: column;
        padding: 0 15px;
    }

    footer.site-footer .site-info .footer-left {
        width: 100%;
        padding-right: 5%;
    }

    footer.site-footer .site-info .footer-right {
        width: 100%;
        padding-left: 0;
    }

    footer.site-footer .site-info .footer-right img {
        width: 80%;
    }

    footer.site-footer .site-info .footer-right .footer-right-top .footer-menu h3 {
        font-size: 1rem;
    }

    footer.site-footer .site-info .footer-right .footer-right-top .footer-menu ul li {
        margin-bottom: 8px;
    }

    footer.site-footer .site-info .footer-right .footer-right-top .footer-menu ul li a {
        font-size: 0.8rem;
    }

    footer.site-footer .footer-end {
        padding: 0 15px;
        padding-bottom: 20px;
        font-size: 0.6rem;
    }

    footer.site-footer .footer-end a {
        text-decoration: none !important;
        color: #424242 !important;
    }
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/

@media (min-width: 1024px) {
    img.wpsf-product-img.wp-post-image {
        width: 22.85vw !important;
        height: 22.85vw !important;
    }

    div#slick-slide00 {
        width: 25vw !important;
    }

    .slick-track {
        width: 234vw !important;
    }
}

.usp-l .usp > div {
    display: flex;
    margin: 0 auto;
}

button {
    border-radius: 0px !important;
}

a.main-button {
    text-decoration: none;
    color: #fff !important;
    font-size: 1.85vw;
    font-weight: 600;
    font-family: "Poppins";
    letter-spacing: 0.07em;
    background: #c99a7c;
    display: block;
    text-align: center;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    padding: 1.1vw 4.5vw;
    display: inline-block;
    transition: all 0.3s ease-in;
}

a.main-button:hover {
    color: #fff !important;
    background: #c58963;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.35);
}

@media (min-width: 1600px) {
    a.main-button {
        font-size: 1.55vw;
        padding: 0.8vw 3vw;
    }
}
@media (min-width: 1024px) and (max-width: 1400px)
{
    .usp-l {
        max-width: 1200px;
    }

    .usp-l .usp .usp-left img {
        max-width: 55px;
    }

    .usp-l .usp .usp-right p:first-of-type {
        font-size: 14px;
    }

    .usp-l .usp .usp-right p:last-of-type {
        font-weight: 300;
        font-size: 12px;
    }

    .usp-l .usp:nth-of-type(2) .usp-left img {
        max-width: 22px;
    }

    .usp-l .usp:nth-of-type(3) .usp-left img {
        max-width: 40px;
    }
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    text-decoration: none !important;
    color: #fff !important;

    font-weight: 600;
    font-family: "Poppins";
    letter-spacing: 0.07em;
    background: #c99a7c;
    display: block;
    text-align: center;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    padding: 20px 3vw;
    display: inline-block;
    transition: all 0.3s ease-in;
    border-radius: 0 !important;
    width: 100%;
}

.woocommerce button.button.woocommerce-button,
.woocommerce button.button.alt,
p.form-row.form-row-last button.button,
.woocommerce button.button, a.woocommerce-Button.button {
    text-decoration: none !important;
    color: #fff !important;
    font-weight: 600;
    font-family: "Poppins";
    letter-spacing: 0.07em;
    background: #c99a7c;
    display: block;
    text-align: center;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    padding: 0 3vw;
    display: inline-block;
    transition: all 0.3s ease-in;
    border-radius: 0 !important;
    max-height: 50px;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
}

@media(min-width: 1024px) {
    .entry-content .summary.entry-summary form.cart {
        max-width: 270px;
        width: 100%;
    }
}
.woocommerce table.shop_table {
    border-radius: 0;
}

form.woocommerce-form input, .checkout_coupon input,
.checkout input,
.select2-container,
.select2-selection--single,
.woocommerce input {
    height: 50px !important;
    padding-left: 15px !important;
    line-height: 50px !important;
    border-radius: 0 !important;
}

@media(min-width: 1201px)  {
    .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
        width: 28%;
    }
}

input[type="checkbox"] {
    height: unset !important;
    border-radius: 0;
}

span#select2-billing_country-container {
    line-height: 50px;
    border-radius: 0;
}

.select2-container {
    padding-left: 0 !important;
}

nav.woocommerce-MyAccount-navigation ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
    font-family: Roboto;
    font-size: 17px;
}

nav.woocommerce-MyAccount-navigation ul li {
    margin: 20px 0;
}

button.button {
    padding: 0 1em !important;
}

ul.slick-dots li {
    border-radius: 50%;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce button.button.woocommerce-button:hover,
.woocommerce button.button.alt:hover,
p.form-row.form-row-last button.button:hover,
.woocommerce button.button:hover,
a.woocommerce-Button.button:hover {
    color: #fff !important;
    background: #c58963;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.35);
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    width: 62px;
    box-shadow: none;
}


.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
    width: 120px;
}

input {
    border-radius: 0 !important;
}

.top-home {
    position: relative;
}

.top-home .top-box {
    position: absolute;
    top: 50%;
    left: 23.5%;
    transform: translate(-200%, -50%);
    width: 35vw;
    transition: all 0.5s ease-in;
}

.top-home.active .top-box {
    transform: translate(-50%, -50%);
}
@media(max-width: 1023px) {
    .top-home.active .top-box {
        transform: translate(-50%, -37%);
    }
}

.top-home .top-box h1 {
    font-size: 2.89vw;
    color: #424245;
    font-family: "Poppins";
    font-weight: 600;
    margin: 0;
}

@media (min-width: 1600px) {
    .top-home .top-box h1 {
        font-size: 2.55vw;
    }
}

.top-home .top-box p {
    font-size: 1.63vw;
    font-weight: 300;
    line-height: 34px;
    line-height: 2.4vw;
    color: #424245;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 1600px) {
    .top-home .top-box p {
        font-size: 1.23vw;
        line-height: 2vw;
    }
}

.top-products {
    margin-top: 7vw;
}



.top-products > h2 {
    text-align: center;
    color: #424245;
    font-size: 2.5vw;
    font-family: "Poppins";
    font-weight: 600;
    margin-bottom: 1vw;
    margin-top: 0;
    position: relative;
    transform: translateX(100%);
    transition: all 0.5s ease-in;
}

.top-products.active>h2, .top-products.active>p {
    transform: translateX(0%);
}

.top-products .woocommerce.columns-4, .top-products .main-button  {
    position: relative;
    transition: all 0.5s ease-in;
    transform: translateX(-100%);
}

.top-products.active .woocommerce.columns-4 {
    transform: translateX(0%);
}
.top-products.active .main-button {
    transform: translateX(-50%);
}

@media (min-width: 1600px) {
    .top-products > h2 {
        font-size: 2.1vw;
    }
}
.woocommerce ul.products li.product .button {
    display: none;
}
.top-products > p {
    color: #424245;
    text-align: center;
    font-size: 1.43vw;
    font-family: "Poppins";
    font-weight: 300;
    width: 35vw;
    margin: 0 auto;
    margin-bottom: 4vw;
    position: relative;
    transform: translateX(250%);
    transition: all 0.5s ease-in;
}

@media (min-width: 1600px) {
    .top-products > p {
        font-size: 1.03vw;
        width: 27vw;
        margin-bottom: 3vw;
    }
}

.top-products .woocommerce .products {
    width: 81.6vw;
    margin: 0 auto;
}

@media (min-width: 1600px) {
    .top-products .woocommerce .products {
        width: 61.6vw;
    }
}

.top-products a {
    color: #424245 !important;
}

.top-products a.main-button {
    color: #fff !important;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(-400%);
}

.top-products a h2 {
    font-size: 1.43vw !important;
    font-family: "Poppins";
    font-weight: 400;
}

@media (min-width: 1600px) {
    .top-products a h2 {
        font-size: 1.03vw !important;
    }
}

.top-products a span {
    color: #424245 !important;
    font-family: Roboto;
    font-size: 1.43vw !important;
    font-weight: 500;
}

@media (min-width: 1600px) {
    .top-products a span {
        font-size: 1.03vw !important;
    }
}

.top-products a span.price {
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: left !important;
}

.top-products a span.price ins {
    margin-right: 20px;
}

.top-products a span.price ins .woocommerce-Price-amount {
    color: red !important;
}

.top-products a span.price ins .woocommerce-Price-amount span {
    color: red !important;
}

.top-products a span.onsale {
    background: red !important;
    text-transform: uppercase;
    color: #fff !important;
    font-size: 1vw !important;
    min-height: unset !important;
    min-width: unset !important;
    line-height: unset !important;
    border-radius: 0px;
    padding: 0.2vw 0.8vw;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 !important;
}

@media (min-width: 1600px) {
    .top-products a span.onsale {
        font-size: 0.6vw !important;
        padding: 0.15vw 0.65vw;
    }
}
@media(max-width: 1023px) {
    button#wpforms-submit-198 {
        font-size: 3.35vw;
        padding: 2.5vw 12.5vw !important;
        width: 63% !important;
    }
}

.top-products .ajax_add_to_cart {
    display: none !important;
}
#by-category .woocommerce.columns-3 .products.columns-3 .product .button {
    display: none !important;
}

.discount-orders {
    margin-top: 5vw;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
}
.discount-orders .discount-centered h2,
.discount-orders .discount-centered p {
    position: relative;
    transition: all 0.5s ease-in;
}

.discount-orders .discount-centered h2 {
    transform: translateX(-100%);
}

.discount-orders .discount-centered p {
    transform: translateX(110%);
}
.top-home, .top-products, .discount-orders, .whats-new, .how-it-started, .featured-products, .usp-l, .newsletter {
    overflow: hidden;
}
.discount-orders.active .discount-centered h2 {
    transform: translateX(0%);
}

.discount-orders.active .discount-centered p {
    transform: translateX(0%);
}

.discount-orders:after {
    position: relative;
    content: '';
    padding-bottom: 56.8%;
    display: block;
}

.discount-orders .discount-centered {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 1;
    width: 65%;
}

.discount-orders .discount-centered h2 {
    font-size: 3.92vw;
    font-family: "Poppins";
    font-weight: 600;
    color: #fff;
}

.discount-orders .discount-centered p {
    font-size: 2.2vw;
    line-height: 3.3vw;
    font-weight: 300;
    font-family: Roboto;
    color: #fff;
}

.whats-new {
    display: flex;
    position: relative;
}


.whats-new:before {
    content: '';
    display: block;
    padding-bottom: 56.8%;
}

.whats-new .main-button {
    background: #fff !important;
    color: #c99a7c !important;
}

.whats-new .main-button:hover {
    background: #f1f1f1 !important;
    color: #c99a7c !important;
}

.whats-new .whats-new-left {
    position: relative;
    width: 50%;
    background: #c99a7c;
    color: #fff;
}

.whats-new .whats-new-left .wn-centered {
    top: 50%;
    left: -50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 28vw;
    transition: all 0.5s ease-in;
}

.whats-new.active .whats-new-left .wn-centered {
    left: 50%;
}
@media(max-width: 1023px) {
    .whats-new.active .whats-new-left .wn-centered {
        left: 11%;
    }
}

.whats-new .whats-new-left .wn-centered h2 {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 2.72vw;
}

.whats-new .whats-new-left .wn-centered p {
    font-family: Roboto;
    font-weight: 300;
    font-size: 1.3vw;
}

.whats-new .whats-new-right {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.whats-new .whats-new-right .wn-centered {
    overflow: hidden;
    display: block;
    width: 52.5%;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(150%, -50%);
    transition: all 0.5s ease-in;
}
.whats-new.active .whats-new-right .wn-centered {
    transform: translate(-50%, -50%);
}

@media(max-width: 1023px) {
    .whats-new.active .whats-new-right .wn-centered {
        transform: translate(-50%, 10%);
    }
}



.whats-new .whats-new-right div#wps-slider-section div#sp-woo-product-slider-118 {
    width: 100% !important;
    float: left;

}

@media (min-width: 768px) {
    .whats-new .whats-new-right div#wps-slider-section div#sp-woo-product-slider-118 {
        padding-left: 30px;
    }
}

.whats-new .whats-new-right div#wps-slider-section div#sp-woo-product-slider-118 .wps-product-image {
    border: none;
    padding-top: 20px;
    width: 100%;
}

.whats-new .whats-new-right div#wps-slider-section div#sp-woo-product-slider-118 .wpsf-product-price span {
    font-weight: 500;
    font-family: Roboto;
    font-size: 25px;
    font-size: 1.35vw;
}

.whats-new .whats-new-right div#wps-slider-section div#sp-woo-product-slider-118 .wpsf-product-title {
    margin-bottom: 10px;
}

.whats-new .whats-new-right div#wps-slider-section div#sp-woo-product-slider-118 .wpsf-product-title a {
    font-family: "Poppins";
    font-weight: 300;
    font-size: 21px;
    font-size: 1.23vw;
}

.whats-new .whats-new-right div#wps-slider-section div#sp-woo-product-slider-118 img {
    padding: 10px;
    border: unset !important;
}

.whats-new .whats-new-right div#wps-slider-section .slick-list.draggable {
    box-shadow: 2px 0px 13px rgba(0, 0, 0, 0.15);
}

.how-it-started {
    display: flex;
    position: relative;
    overflow: hidden;
}

.how-it-started:before {
    content: '';
    display: block;
    padding-bottom: 56.8%;
}

.how-it-started .how-left {
    position: relative;
    width: 50%;
    background: #fff;
    color: #424245;
}

.how-it-started .how-left .wn-centered {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-200%, -50%);
    transition: all 0.5s ease-in;
    width: 28vw;
}

.how-it-started.active .how-left .wn-centered {
    transform: translate(-50%, -50%);
}
@media(max-width: 1023px) {
    .how-it-started .how-left .wn-centered {
        transform: translate(-120%) !important;
    }
    .how-it-started.active .how-left .wn-centered {
        transform: unset !important;
    }
}
.how-it-started .how-left .wn-centered h2 {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 2.72vw;
}

.how-it-started .how-left .wn-centered p {
    font-family: Roboto;
    font-weight: 300;
    font-size: 1.3vw;
}

.how-it-started .how-right {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.how-it-started .how-right .how-box {
    display: block;
    width: 52.5%;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.how-it-started .how-right .how-box .how-box-m {
    position: absolute;
    z-index: 1;
    background: #c99a7c;
    width: 27vw;
    height: 41vw;
    transition: all 0.5s ease-in;
    transform: translateY(-150%);
}
.how-it-started.active .how-right .how-box .how-box-m {
    transform: translateY(0%);
}

.how-it-started .how-right .how-box #how-big-img {
    position: relative;
    z-index: 1;
    top: 4vw;
    left: -5vw;
    width: 30vw;
    transition: all 0.5s ease-in;
    transform: translate(-150%);
}

.how-it-started.active .how-right .how-box #how-big-img {
    transform: translate(0%);
}

.how-it-started .how-right .how-box #how-small-img {
    position: relative;
    z-index: 2;
    width: 16vw;
    left: -8vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* vertical */
    justify-content: center;
    /* horizontal */
    transition: all 0.5s ease-in;
    transform: translate(300%);
}

.how-it-started.active .how-right .how-box #how-small-img {
    transform: translate(0%);
}

.featured-products {
    margin-top: 7vw;
}
.featured-products.active>h2, .featured-products.active>p {
    transform: translateX(0%);
}
.featured-products > h2 {
    text-align: center;
    color: #424245;
    font-size: 2.5vw;
    font-family: "Poppins";
    font-weight: 600;
    margin-bottom: 4vw;
    margin-top: 0;
    position: relative;
    transform: translateX(100%);
    transition: all 0.5s ease-in;
}

@media (min-width: 1600px) {
    .featured-products > h2 {
        font-size: 2.1vw;
    }
}

.featured-products .woocommerce .products {
    width: 81.6vw;
    margin: 0 auto;
}

@media (min-width: 1600px) {
    .featured-products .woocommerce .products {
        width: 61.6vw;
    }
}
.featured-products .woocommerce.columns-4 {
    transform: translateX(-100%);
    transition: all 0.5s ease-in;
}
.featured-products.active .woocommerce.columns-4 {
    transform: translateX(0%);
}
.featured-products a {
    color: #424245 !important;
}

.featured-products a.main-button {
    color: #fff !important;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.featured-products a h2 {
    font-size: 1.43vw !important;
    font-family: "Poppins";
    font-weight: 400;
}

@media (min-width: 1600px) {
    .featured-products a h2 {
        font-size: 1.03vw !important;
    }
}

.featured-products a span {
    color: #424245 !important;
    font-family: Roboto;
    font-size: 1.43vw !important;
    font-weight: 500;
}

@media (min-width: 1600px) {
    .featured-products a span {
        font-size: 1.03vw !important;
    }
}

.featured-products a span.price {
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: left !important;
}

.featured-products a span.price ins {
    margin-right: 20px;
}

.featured-products a span.price ins .woocommerce-Price-amount {
    color: red !important;
}

.featured-products a span.price ins .woocommerce-Price-amount span {
    color: red !important;
}

.featured-products a span.onsale {
    background: red !important;
    text-transform: uppercase;
    color: #fff !important;
    font-size: 1vw !important;
    min-height: unset !important;
    min-width: unset !important;
    line-height: unset !important;
    border-radius: 0px;
    padding: 0.2vw 0.8vw;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 !important;
}

@media (min-width: 1600px) {
    .featured-products a span.onsale {
        font-size: 0.6vw !important;
        padding: 0.15vw 0.65vw;
    }
}

.featured-products .ajax_add_to_cart {
    display: none !important;
}

#118 {
    display: none !important;
}

.usp-l {
    max-width: 1400px;
    width: 100%;
    margin: 5vw auto;
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

.usp-l .usp {
    display: flex;
    width: 33%;
}

.usp-l .usp .usp-left {
    align-self: center;
}

.usp-l .usp .usp-left img {
    max-width: 80px;
    width: 100%;
}

.usp-l .usp .usp-right {
    margin-left: 10px;
}

.usp-l .usp .usp-right p {
    margin: 0;
    font-family: "Poppins";
}

.usp-l .usp .usp-right p:first-of-type {
    font-weight: 600;
    font-size: 18px;
}

.usp-l .usp .usp-right p:last-of-type {
    font-weight: 300;
    font-size: 15px;
}

.usp-l .usp .usp-left img {
    max-width: 80px;
    width: 100%;
}

.usp-l .usp:nth-of-type(2) .usp-left img {
    max-width: 30px;
}

.usp-l .usp:nth-of-type(3) .usp-left img {
    max-width: 60px;
}

.newsletter {
    display: flex;
    margin-bottom: -40px;
}

.newsletter > div {
    flex: 1;
}

.newsletter .news-left {
    width: 50%;
}

.newsletter .news-left img {
    width: 100%;
}

.newsletter .news-right {
    width: 50%;
    background: #c99a7c;
    position: relative;
    margin-bottom: 6px;
}

.newsletter .news-right .wn-centered {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(50%, -50%);
    width: 100%;
    transition: all 0.5s ease-in;
}

.newsletter.active .news-right .wn-centered {

    transform: translate(-50%, -50%);
}

@media(max-width: 1023px) {
    .newsletter .news-right .wn-centered {
        transform: translate(-120%);
    }
    .newsletter.active .news-right .wn-centered {
        transform: unset;
    }
}

.newsletter .news-right h2 {
    font-size: 2.5vw;
    font-weight: 600;
    font-family: "Poppins";
    color: #fff;
}

.newsletter .news-right p {
    font-family: Roboto;
    font-size: 1.3vw;
    font-weight: 300;
    line-height: 2vw;
    color: #fff;
    width: 50%;
    margin: 0 auto;
}

.newsletter .news-right .tnp-email {
    border-radius: 0;
    width: 25vw;
    margin: 1.2vw auto;
    height: 4.2vw;
    font-size: 1.3vw;
    padding-left: 1vw;
}

.newsletter .news-right .tnp-email:focus-visible {
    outline: none;
}

.newsletter .tnp.tnp-subscription {
    max-width: 100%;
}

.tnp-subscription div.tnp-field {
	text-align: center !important;
}
.newsletter .news-right .tnp-field .tnp-submit {
    margin-top: 2vw;
    text-decoration: none;
    color: #c99a7c !important;
    font-size: 1.85vw !important;
    font-weight: 600;
    font-family: "Poppins";
    letter-spacing: 0.07em;
    background-color: #fff !important;
    text-align: center;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    padding: 1.1vw 4.5vw;
    display: inline-block !important;
    transition: all 0.3s ease-in;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0px;
}

.newsletter .news-right .tnp-field .tnp-submit:hover {
    color: #c99a7c !important;
    background-color: #f1f1f1 !important;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.35);
}

@media (min-width: 1600px) {
    .newsletter .news-right .tnp-submit {
        font-size: 1.55vw !important;
        padding: 0.8vw 3vw !important;
    }
}


@media (max-width: 1023px) {
    .account-menu-hover, ul#site-header-cart {
        margin-right: 10px !important;
    }
    header#masthead nav#site-navigation {
        margin: 0 !important;
        margin-top: 2px !important;
    }
    .top-products .woocommerce ul.products[class*=columns-] li.product:nth-child(2n),
    .top-products  .woocommerce-page ul.products[class*=columns-] li.product:nth-child(2n) {
        float: right;
        clear: none!important;
    }
    .top-products .woocommerce ul.products[class*=columns-] li.product,
    .top-products  .woocommerce-page ul.products[class*=columns-] li.product {
        width: 48%;
        float: left;
        clear: both;
        margin: 0 0 2.992em;
    }
    .top-home .top-box {
        left: 35%;
        width: 60vw;
        transform: translate(-200%, -37%);
    }

    .top-home .top-box h1 {
        font-size: 4.99vw;
    }

    .top-home .top-box p {
        font-size: 2.83vw;
        line-height: 5.1vw;
        -webkit-line-clamp: 6;
    }

    .top-products > h2 {
        font-size: 6vw;
        margin-bottom: 3vw;
        margin-top: 19vw;
    }

    .top-products > p {
        font-size: 3.43vw;
        width: 85vw;
        margin-bottom: 9vw;
    }

    .top-products a h2 {
        font-size: 3.33vw !important;
        font-weight: 300;
        padding-top: 0 !important;
    }

    .top-products a span {
        color: #424245 !important;
        font-family: Roboto;
        font-size: 3.23vw !important;
        font-weight: 500;
    }

    .top-products {
        margin-bottom: 80px;
    }

    #wps-slider-section .wpsf-product-title {
        margin-top: 0;
        margin-bottom: 0px !important;
        line-height: 0px;
        font-size: 20px;
    }

    .wpsf-product-price {
        padding: 0px !important;
    }

    .wpsf-product-price {
        padding: 0px !important;
        line-height: 8px !important;
    }

    .whats-new .whats-new-right div#wps-slider-section div#sp-woo-product-slider-118 .wpsf-product-price span {
        font-size: 3.23vw !important;
    }

    span.woocommerce-Price-amount.amount {
        display: block;
        margin-top: 6px;
    }

    .whats-new .whats-new-right div#wps-slider-section div#sp-woo-product-slider-118 .wpsf-product-title a {
        font-size: 3.33vw;
    }


    .discount-orders:after {
        position: relative;
        content: '';
        padding-bottom: 166.8%;
        display: block;
    }

    .discount-orders {
        background-position-x: 59%;
    }

    .discount-orders .discount-centered h2 {
        font-size: 9.22vw;
        line-height: 10vw;
    }

    .discount-orders .discount-centered p {
        font-size: 4.4vw;
        line-height: 7.3vw;
    }

    a.main-button {
        font-size: 3.55vw;
        padding: 2.5vw 12.5vw;
    }

    .discount-orders .discount-centered h2 {
        font-size: 9.52vw;
        line-height: 10vw;
    }

    .discount-orders .discount-centered {
        width: 85%;
    }


    .whats-new {
        flex-direction: column;
    }

    .whats-new .whats-new-left, .whats-new .whats-new-right {
        width: 100%;
        position: relative;
    }

    .whats-new:before {
        padding-bottom: 0;
    }


    .whats-new .whats-new-left .wn-centered p {
        font-size: 4.3vw;
        line-height: 6.7vw;
    }

    .whats-new .whats-new-left .wn-centered {
        position: relative;
        top: 10%;
        left: 101%;
        transform: unset;
        padding-top: 18%;
        width: 83vw;
        padding-bottom: 24%;
    }

    .whats-new .whats-new-left .wn-centered h2 {
        font-size: 6.42vw;
    }


    .whats-new .whats-new-right .wn-centered {
        position: relative;
        transform: translate(-200%, 10%);
        padding-top: 6%;
        width: 62%;
        padding-bottom: 13%;
        max-width: 360px;
    }


    .how-it-started {
        margin-top: 12vw;
        flex-direction: column-reverse;
    }

    .how-it-started .how-left, .how-it-started .how-right {
        width: 100%;
        position: relative;
    }

    .how-it-started:before {
        padding-bottom: 0;
    }


    .how-it-started .how-left .wn-centered p {
        font-size: 4.3vw;
        line-height: 6.7vw;
    }

    .how-it-started .how-left .wn-centered {
        position: relative;
        top: 10%;
        left: 11%;
        transform: unset;
        padding-top: 12%;
        width: 83vw;
        padding-bottom: 2%;
    }

    .how-it-started .how-left .wn-centered h2 {
        font-size: 6.42vw;
    }


    .how-it-started .how-right .wn-centered {
        position: relative;
        transform: translate(-50%, 10%);
        padding-top: 6%;
        width: 62%;
        padding-bottom: 13%;
    }

    .how-it-started .how-right .how-box {
        position: relative;
        transform: unset;
        width: 100%;
        left: 30%;
    }

    .how-it-started .how-right .how-box .how-box-m {
        position: relative;
        width: 70vw;
        height: 100vw;
    }

    .how-it-started .how-right .how-box #how-big-img {
        position: absolute;
        top: 12vw;
        left: -13vw;
        width: 68vw;
    }

    .how-it-started .how-right .how-box #how-small-img {
        position: absolute;
        top: 57vw;
        width: 44vw;
        left: -20vw;
    }

    .featured-products > h2 {
        font-size: 6vw;
        margin-bottom: 10vw;
        margin-top: 19vw;
    }

    .featured-products a h2 {
        font-size: 3.33vw !important;
        font-weight: 300;
        padding-top: 0 !important;
    }

    .featured-products a span {
        color: #424245 !important;
        font-family: Roboto;
        font-size: 3.23vw !important;
        font-weight: 500 !important;
    }

    h2.woocommerce-loop-product__title {
        padding-bottom: 0 !important;
    }

    .top-home {
        background-size: cover;
    }

    .top-home.top-home::before {
        padding-bottom: 95.9%;
    }

    .usp-l {
        flex-direction: column;
    }

    .usp-l .usp {
        flex-direction: column;
        text-align: center;
        box-shadow: 2px 0px 13px rgba(0, 0, 0, 0.15);
        margin-bottom: 15vw;
        align-self: center;
        position: relative;
        position: relative;
        width: 90vw;
        height: 65vw;
        margin-bottom: 7vw;
    }

    .usp-l .usp .usp-left img {
        max-width: 17.5vw;
        width: 100%;
    }

    .usp-l .usp .usp-right p:first-of-type {
        font-size: 4.6vw;
    }

    .usp-l .usp .usp-right p:last-of-type {
        font-weight: 300;
        font-size: 3.8vw;
    }

    .usp-l .usp:nth-of-type(2) .usp-left img {
        max-width: 7.4vw;
    }

    .usp-l .usp:nth-of-type(3) .usp-left img {
        max-width: 13.8vw;
    }

    .usp-l .usp .usp-right {
        margin-top: 10px;
    }

    .usp-l .usp > div {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: unset;
    }

    .newsletter {
        flex-direction: column;
        margin-bottom: 7vw;

    }

    .newsletter .news-left {
        width: 100%;
    }

    .newsletter .news-right {
        width: 100%;
        padding-bottom: 19vw;
        margin-top: -6px;
    }

    .newsletter .news-right .wn-centered {
        position: relative;
        transform: unset;
        top: unset;
        left: unset;
    }

    .newsletter .news-right h2 {
        font-size: 6.4vw;
        padding-top: 14vw;
    }

    .newsletter .news-right p {
        font-size: 4vw;
        line-height: 6vw;
        width: 75%;
    }

    .newsletter .news-right .tnp-email {
        border-radius: 0;
        width: 75vw;
        margin: 1.2vw auto;
        height: 10.2vw;
        font-size: 3.1vw;
        padding-left: 5vw;
    }

    .newsletter .news-right .tnp-field .tnp-submit {
        width: unset;
        font-size: 4.35vw !important;
        padding: 2.6vw 11.5vw;
        margin-top: 5vw;
    }


    footer .site-info .footer-left p.about-company {
        font-size: 16px;
        line-height: 26px;
    }

}

@media(min-width: 768px) and (max-width: 1024px) {
    .whats-new .whats-new-right div#wps-slider-section div#sp-woo-product-slider-118 .wpsf-product-title a {
        font-size: 16px !important;
    }
    .whats-new .whats-new-right div#wps-slider-section div#sp-woo-product-slider-118 .wpsf-product-price span {
        font-size: 15px !important;
        margin-top: 12px !important;
    }
}

/*--------------------------------------------------------------
# Search Page
--------------------------------------------------------------*/
nav.woocommerce-breadcrumb {
    display: none;
}



.search-results #primary .woocommerce-products-headers > h1 {
    text-align: center;
    color: #424245;
    font-size: 2.5vw;
    font-family: "Poppins";
    font-weight: 600;
    margin-bottom: 1vw;
    margin-top: 0;
}

.search-results div#primary.content-area {

    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
    padding: 0 15px;
    padding-top: 100px;
}
.search-results .woocommerce-products-headers h1.woocommerce-products-header__title.page-title {
    text-align: center;
    color: #424245;
    font-size: 2.5vw;
    font-family: "Poppins";
    font-weight: 600;
    margin-bottom: 1vw;
    margin-top: 0;
}

.search-results .products .ajax_add_to_cart {
    display: none;
}
.search-results .products a {
    color: #424245 !important;
}
.search-results .products a h2 {
    font-size: 1.43vw !important;
    font-family: "Poppins";
    font-weight: 400;
}


.search-results .products a span {
    color: #424245 !important;
    font-family: Roboto;
    font-size: 1.43vw !important;
    font-weight: 500;
}


.search-results .products a span.price {
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: left !important;
}
.search-results .products a span.price ins {
    margin-right: 20px;
}
.search-results .products a span.price ins .woocommerce-Price-amount {
    color: red !important;
}
.search-results .products a span.price ins .woocommerce-Price-amount span {
    color: red !important;
}
.search-results .products a span.onsale {
    background: red !important;
    text-transform: uppercase;
    color: #fff !important;
    font-size: 1vw !important;
    min-height: unset !important;
    min-width: unset !important;
    line-height: unset !important;
    border-radius: 0px;
    padding: 0.2vw 0.8vw;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 !important;
}
@media (min-width: 1600px) {
    .search-results .products a span.onsale {
        font-size: 0.6vw !important;
        padding: 0.15vw 0.65vw;
    }
}
@media (max-width: 1023px) {
    .search-results .products a span.onsale {
        font-size: 0.6vw !important;
        padding: 0.15vw 0.65vw;
    }
}

@media (max-width: 1023px) {
    .search-results .products {
        margin-bottom: 80px;
    }
    .search-results .products a span {
        color: #424245 !important;
        font-family: Roboto;
        font-size: 3.23vw !important;
        font-weight: 500;
    }
    .search-results .products > h2 {
        font-size: 6vw;
        margin-bottom: 3vw;
        margin-top: 19vw;
    }
    .search-results .products a h2 {
        font-size: 3.33vw !important;
        font-weight: 300;
        padding-top: 0 !important;
    }
}

@media (min-width: 1600px) {
    .search-results #primary .woocommerce-products-headers > h1 {
        font-size: 2.1vw;
    }
}

@media (min-width: 1600px) {
    .search-results .woocommerce-products-headers h1.woocommerce-products-header__title.page-title {
        font-size: 2.1vw;
    }
}

@media (min-width: 1600px) {
    .search-results .products a h2 {
        font-size: 1.03vw !important;
    }
}
@media (min-width: 1600px) {
    .search-results .products a span {
        font-size: 1.03vw !important;
    }
}
/*--------------------------------------------------------------
# Product page
--------------------------------------------------------------*/

.woocommerce span.onsale {
    top: 0;
    left: 0;
    right: auto;
    margin: -0.5em -0.5em 0 0;
}

.quantity input {
    padding: 0 !important;
}

div#comments ol {
    margin-left: 0;
    padding-left: 0;
}

div#comments ol footer.comment-meta {
    border: unset;
    background: unset;
    padding-top: 15px;
    padding-left: 0;
    padding-right: 0;
}

.woocommerce span.onsale {
    background: red !important;
    text-transform: uppercase;
    color: #fff !important;
    font-size: 1vw !important;
    min-height: unset !important;
    min-width: unset !important;
    line-height: unset !important;
    border-radius: 0px;
    padding: 0.2vw 0.8vw;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 !important;

}

@media (max-width: 1023px) {
    .woocommerce span.onsale {
        font-size: 3vw !important;
        padding: 0.3vw 1vw;
    }

}

.product {
    margin: 0 auto;
    max-width: 1400px;
}

.woocommerce .single-product {
    padding: 0 15px;
    padding-top: 40px;
}

.product .entry-header {
    display: none;
}

aside#secondary {
    display: none;
}

main nav.navigation.post-navigation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}
li#menu-item-24>a {
    pointer-events: none;
}
nav.woocommerce-pagination ul.page-numbers li {
    font-family: Roboto;
    font-size: 18px;
}
nav.woocommerce-pagination ul.page-numbers li span {
    padding: 0.7em 0.9em;
    color: #fff !important;
    background: #c99a7c !important;
}
nav.woocommerce-pagination ul.page-numbers li a {
    font-family: Roboto;
    font-size: 18px;
    padding: 0.7em 0.9em;
}
nav.woocommerce-pagination ul.page-numbers li a:hover {
    color: #fff !important;
    background: #c99a7c !important;
}


main nav.navigation.post-navigation a {
    color: #424245;
    font-family: Roboto;
    font-weight: 300;
}

.woocommerce nav.navigation.post-navigation + div#comments {
    margin: 50px auto;
    max-width: 1400px;
    margin-bottom: 100px;
    padding: 0 15px;
}

.woocommerce nav.navigation.post-navigation + div#comments h3 {
    font-family: "Poppins";
    font-weight: 600;
}

.woocommerce nav.navigation.post-navigation + div#comments p, .woocommerce nav.navigation.post-navigation + div#comments a {
    font-family: Roboto;
    font-weight: 300;
}

.woocommerce nav.navigation.post-navigation + div#comments .form-submit {
    text-align: center !important;
}

.woocommerce nav.navigation.post-navigation + div#comments input#submit {
    text-decoration: none;
    color: #fff !important;
    font-size: 18px;
    font-weight: 600;
    font-family: "Poppins";
    letter-spacing: 0.07em;
    background: #c99a7c;
    text-align: center !important;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.20);
    padding: 0;
    display: block !important;
    transition: all 0.3s ease-in;
    padding: 0 20px !important;
    height: 50px !important;
    overflow: unset !important;
    left: unset !important;
    right: 0 !important;
}
.page.type-page.status-publish.hentry strong, .page.type-page.status-publish.hentry a {
    font-weight: 700;
}
.entry-content {
    margin-bottom: 100px;
    padding-top: 1vw;
}
.entry-content ol {
    margin-left: 0;
    padding-left: 15px;
}

.entry-content .woocommerce-tabs.wc-tabs-wrapper {
    padding: 30px 0;
    display: block;
}

.entry-content .woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs {
    display: none;
}

.entry-content .woocommerce-tabs.wc-tabs-wrapper h2 {
    font-family: "Poppins";
    font-weight: 600;
}

.entry-content .woocommerce-tabs.wc-tabs-wrapper p {
    font-family: Roboto;
    font-weight: 300;
}

.entry-content ol.flex-control-nav.flex-control-thumbs {
    display: flex;
    justify-content: space-between;
    margin-top: 18px !important;
}

.entry-content ol.flex-control-nav.flex-control-thumbs li {
    width: 31.33% !important;
}

.entry-content ol.flex-control-nav.flex-control-thumbs li img {
    transition: all 0.2s ease-in;
    border: 2px solid transparent;
}

.entry-content ol.flex-control-nav.flex-control-thumbs li img.flex-active {
    border: 2px solid #424245;
}

.entry-content .summary.entry-summary {
    margin-top: 0;
}

.entry-content .summary.entry-summary h1 {
    font-size: 30px;
    font-family: "Poppins";
    font-weight: 300;
    margin-bottom: 0;
}

.entry-content .summary.entry-summary p.price {
    margin: 0;
    font-family: Roboto;
    font-weight: 500;
    color: #424245 !important;
}

.entry-content .summary.entry-summary form.cart {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.entry-content .summary.entry-summary form.cart .quantity {
    display: flex;
    flex-direction: column;
    font-family: "Poppins";
    font-weight: 300;
    margin-bottom: 40px;
}

.entry-content .summary.entry-summary form.cart .quantity .qty {
    width: 100px;
    margin-top: 15px;
}

.entry-content .summary.entry-summary form.cart .single_add_to_cart_button {
    display: inline-block;
}

.entry-content .summary.entry-summary .woocommerce-product-details__short-description p {
    font-family: Roboto;
    font-weight: 300;
}

.entry-content .woocommerce .product {
    margin-top: 7vw;
}

.entry-content .woocommerce .product a.main-button {
    margin: 0 auto !important;
    color: #fff !important;
    display: block;
    width: 30%;
}

.entry-content .woocommerce .up-sells > h2 {
    text-align: center;
    color: #424245;
    font-size: 2.5vw;
    font-family: "Poppins";
    font-weight: 600;
    margin-bottom: 2vw;
    margin-top: 0;
}

@media (min-width: 1600px) {
    .entry-content .woocommerce .up-sells > h2 {
        font-size: 2.1vw;
    }
}

.product footer.entry-footer {
    display: none;
}

@media (max-width: 1023px) {
    .entry-content {
        padding-top: 90px;
    }

    .entry-content .woocommerce .product a.main-button {
        width: 53vw !important;
        font-size: 3.3vw !important;
    }

    .entry-content .woocommerce .up-sells > h2 {
        font-size: 6vw;
        margin-bottom: 3vw;
        margin-top: 19vw;
    }

    .entry-content .woocommerce .up-sells > p {
        font-size: 3.43vw;
        width: 85vw;
        margin-bottom: 9vw;
    }

    .entry-content .woocommerce .up-sells a h2 {
        font-size: 3.13vw !important;
        font-weight: 300;
        padding-top: 0 !important;
    }

    .entry-content .woocommerce .up-sells a span {
        color: #424245 !important;
        font-family: Roboto;
        font-size: 2.83vw !important;
        font-weight: 500;
    }

    .entry-content .woocommerce .up-sells {
        margin-bottom: 80px;
    }
}


/*--------------------------------------------------------------
# Category / Subcategory
--------------------------------------------------------------*/

div#by-category.subcategory-parent {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
}
div#by-category.subcategory-parent .subcategory-child {
    flex: 0 0 33.33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 60px;
}
@media (min-width: 768px) and (max-width: 1024px) {
    div#by-category.subcategory-parent .subcategory-child {
        flex: 0 0 50%;
    }
}
@media (max-width: 767px) {
    div#by-category.subcategory-parent .subcategory-child {
        flex: 0 0 100%;
    }
}
div#by-category.subcategory-parent .subcategory-child .hidden-part {
    max-width: 90%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
div#by-category.subcategory-parent .subcategory-child .hidden-part > a {
    text-decoration: none;
}
div#by-category.subcategory-parent .subcategory-child .hidden-part img {
    position: relative;
    width: 140% !important;
    max-width: unset;
    left: 50%;
    transform: translateX(-50%);
}
div#by-category.subcategory-parent .subcategory-child .hidden-part h2 {
    font-family: Poppins;
    font-weight: 700;
}
div#by-category.subcategory-parent .subcategory-child .hidden-part p {
    font-family: Roboto;
    font-weight: 400;
}
div#by-category.subcategory-parent .subcategory-child a {
    display: inline-block;
    width: 100%;
    cursor: pointer;
}
div#by-category.subcategory-parent .subcategory-child a.main-button {
    color: #fff !important;
    font-size: 100%;
    width: 60%;
    padding: 10px;
}


#by-category, .entry-content {
    padding-top: 100px;
}
div#by-category {
    padding: 0 15px;
    padding-top: 100px;
}
#by-category .woocommerce .products,
.entry-content .woocommerce .products {
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 1600px) {
    #by-category .woocommerce .products,
    .entry-content .woocommerce .products {
        width: 61.6vw;
    }
}

#by-category a,
.entry-content a {
    color: #424245 !important;
}

#by-category a h2,
.entry-content a h2 {
    font-size: 1.43vw !important;
    font-family: "Poppins";
    font-weight: 400;
}

@media (min-width: 1600px) {
    #by-category a h2,
    .entry-content a h2 {
        font-size: 1.03vw !important;
    }
}

#by-category a span,
.entry-content a span {
    color: #424245 !important;
    font-family: Roboto;
    font-size: 1.43vw !important;
    font-weight: 500;
}

@media (min-width: 1600px) {
    #by-category a span,
    .entry-content a span {
        font-size: 1.03vw !important;
    }
}

#by-category a span.price,
.entry-content a span.price {
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: left !important;
}

#by-category a span.price ins,
.entry-content a span.price ins {
    margin-right: 20px;
}

#by-category a span.price ins .woocommerce-Price-amount,
.entry-content a span.price ins .woocommerce-Price-amount {
    color: red !important;
}

#by-category a span.price ins .woocommerce-Price-amount span,
.entry-content a span.price ins .woocommerce-Price-amount span {
    color: red !important;
}

#by-category a span.onsale,
.entry-content a span.onsale {
    background: red !important;
    text-transform: uppercase;
    color: #fff !important;
    font-size: 1vw !important;
    min-height: unset !important;
    min-width: unset !important;
    line-height: unset !important;
    border-radius: 0px;
    padding: 0.2vw 0.8vw;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 !important;
}

@media (min-width: 1600px) {
    #by-category a span.onsale,
    .entry-content a span.onsale {
        font-size: 0.6vw !important;
        padding: 0.15vw 0.65vw;
    }
}

#by-category .ajax_add_to_cart,
.entry-content .ajax_add_to_cart {
    display: none !important;
}

@media (max-width: 767px) {
    #by-category a h2,
    .entry-content a h2 {
        font-size: 3.13vw !important;
        font-weight: 300;
        padding-top: 0 !important;
    }

    #by-category a span,
    .entry-content a span {
        color: #424245 !important;
        font-family: Roboto;
        font-size: 2.83vw !important;
        font-weight: 500;
    }

    #by-category,
    .entry-content {
        margin-bottom: 80px;
    }
}

p.woocommerce-result-count, .woocommerce-ordering {
    margin-bottom: 50px !important;
}

/*--------------------------------------------------------------
# Refund,Terms..
--------------------------------------------------------------*/
.page.type-page.status-publish.hentry {
    padding: 100px 15px;
    margin: 0 auto;
    width: 90%;
}

.page.type-page.status-publish.hentry h1 {
    font-family: "Poppins";
    font-weight: bold;
    margin-bottom: 2vw;
}

.page.type-page.status-publish.hentry h2 {
    font-family: "Poppins";
    font-weight: bold;
}

.page.type-page.status-publish.hentry p {
    font-family: Roboto;
    font-weight: 300;
}

.page.type-page.status-publish.hentry strong, .page.type-page.status-publish.hentry a {
    font-family: Roboto;
}

@media (max-width: 1024px) {
    .page.type-page.status-publish.hentry {
        width: 90%;
        padding-top: 100px;
    }
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.top-home#about .top-box p br {
    margin: 35px 0;
    display: block;
    content: '';
}
.top-home#about {
    overflow: visible;
}
.top-home#about .top-box p {
    font-size: 1.45vw;
    -webkit-line-clamp: unset;
    line-height: 2.4vw;
}

.about-us-description {
    padding: 2.1vw 6vw;
    margin-top: 4vw;
    border: 10px solid #C99A7C;
    background: #fff;
}

.top-home#about .top-box {
    text-align: center;
    width: 82vw;
    transform: unset;
    position: absolute;
    left: 0;
    top: -47vw;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -32%);
}


.beauty-touch-must-have {
    margin-top: 13vw;
    margin-bottom: 10vw;
}

.beauty-touch-must-have > h2 {
    text-align: center;
    color: #424245;
    font-size: 2.5vw;
    font-family: "Poppins";
    font-weight: 600;
    margin-bottom: 4vw;
    margin-top: 0;
}

@media (min-width: 1600px) {
    .beauty-touch-must-have > h2 {
        font-size: 2.1vw;
    }
}

.beauty-touch-must-have > p {
    color: #424245;
    text-align: center;
    font-size: 1.43vw;
    font-family: "Poppins";
    font-weight: 300;
    width: 35vw;
    margin: 0 auto;
    margin-bottom: 4vw;
}

@media (min-width: 1600px) {
    .beauty-touch-must-have > p {
        font-size: 1.03vw;
        width: 27vw;
        margin-bottom: 3vw;
    }
}

.beauty-touch-must-have .woocommerce .products {
    width: 81.6vw;
    margin: 0 auto;
}

@media (min-width: 1600px) {
    .beauty-touch-must-have .woocommerce .products {
        width: 61.6vw;
    }
}

.beauty-touch-must-have a {
    color: #424245 !important;
}

.beauty-touch-must-have a.main-button {
    color: #fff !important;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.beauty-touch-must-have a h2 {
    font-size: 1.43vw !important;
    font-family: "Poppins";
    font-weight: 400;
}

@media (min-width: 1600px) {
    .beauty-touch-must-have a h2 {
        font-size: 1.03vw !important;
    }
}

.beauty-touch-must-have a span {
    color: #424245 !important;
    font-family: Roboto;
    font-size: 1.43vw !important;
    font-weight: 500;
}

@media (min-width: 1600px) {
    .beauty-touch-must-have a span {
        font-size: 1.03vw !important;
    }
}

.beauty-touch-must-have a span.price {
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: left !important;
}

.beauty-touch-must-have a span.price ins {
    margin-right: 20px;
}

.beauty-touch-must-have a span.price ins .woocommerce-Price-amount {
    color: red !important;
}

.beauty-touch-must-have a span.price ins .woocommerce-Price-amount span {
    color: red !important;
}

.beauty-touch-must-have a span.onsale {
    background: red !important;
    text-transform: uppercase;
    color: #fff !important;
    font-size: 1vw !important;
    min-height: unset !important;
    min-width: unset !important;
    line-height: unset !important;
    border-radius: 0px;
    padding: 0.2vw 0.8vw;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 !important;
}

@media (max-width: 1023px) {
    .top-products a span.onsale {
        font-size: 3vw !important;
        padding: 0.3vw 1vw;
    }
}

@media (min-width: 1600px) {
    .beauty-touch-must-have a span.onsale {
        font-size: 0.6vw !important;
        padding: 0.15vw 0.65vw;
    }
}

.beauty-touch-must-have .ajax_add_to_cart {
    display: none !important;
}

.sp-wps-product-image-area {
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .beauty-touch-must-have > h2 {
        font-size: 6vw;
        margin-bottom: 8vw;
        margin-top: 19vw;
    }

    .usp > div {
        flex-direction: column;
    }

    .beauty-touch-must-have > p {
        font-size: 3.43vw;
        width: 85vw;
        margin-bottom: 9vw;
    }

    .beauty-touch-must-have a h2 {
        font-size: 3.13vw !important;
        font-weight: 300;
        padding-top: 0 !important;
    }

    .beauty-touch-must-have a span {
        color: #424245 !important;
        font-family: Roboto;
        font-size: 2.83vw !important;
        font-weight: 500;
    }


    .top-home#about .top-box {
        transform: translate(-50%, -14%);
    }

    .about-us-description {
        padding: 30px 35px !important;
        margin-top: 30px;
    }

    .top-home#about .top-box p {
        font-size: 3.63vw !important;
        line-height: 4.4vw;
    }

    .beauty-touch-must-have {
        margin-top: 100vw;
        margin-bottom: 10vw;
    }

    .top-home#about .top-box p br {
        margin: 2.6vw 0;
        display: block;
        content: '';
    }

}

/*--------------------------------------------------------------
# Login / Register
--------------------------------------------------------------*/

.login-register-box {
    position: absolute;
    top: 55%;
    left: 67%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 50px 70px;
    box-shadow: 2px 0px 13px rgb(0 0 0 / 15%);
    width: 31%;
}

@media (min-width: 1300px) {
    .login-register-box {
        min-width: 550px;
    }
}

@media (min-width: 1040px) and (max-width: 1299px) {
    .login-register-box {
        min-width: 450px;
    }

    .login-register-box h2 {
        color: #424245;
        font-family: "Poppins";
        font-size: 23px;
        /* font-size: 1.925vw; */
        font-weight: 600;
    }

    .login-register-box div {
        font-size: 14px;
    }
}

@media (min-width: 1024px) and (max-width: 1299px) {
    .login-register-box {
        min-width: 50%;
    }

    .login-register-box h2 {
        color: #424245;
        font-family: "Poppins";
        font-size: 23px;
        /* font-size: 1.925vw; */
        font-weight: 600;
    }

    .login-register-box input {
        font-size: 14px;
    }

    .login-register-box div {
        font-size: 14px;
    }

    .top-home#login-register {
        padding-top: 27vw;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .login-register-box {
        min-width: 90%;
        transform: translate(-69%, -50%);
    }

    .login-register-box h2 {
        color: #424245;
        font-family: "Poppins";
        font-size: 23px;
        /* font-size: 1.925vw; */
        font-weight: 600;
    }

    .login-register-box input {
        font-size: 14px !important;
    }

    .login-register-box div {
        font-size: 14px !important;
    }

    .top-home#login-register {
        padding-top: 44vw;
    }
}

.login-register-box h2 {
    color: #424245;
    font-family: "Poppins";
    font-size: 27px;
    /*font-size: 1.925vw;*/
    font-weight: 600;
}

.login-register-box label {
    display: none;
}

.login-register-box input {
    border-radius: 0;
    width: 100%;
    margin: 10px auto;
    font-size: 18px;
    font-family: Roboto;
    font-weight: 300;
    padding-left: 15px !important;
}
p.woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide {
    margin-bottom: 0em;
    margin-top: 0.3em !important;
}
.login-register-box button {
    text-decoration: none;
    color: #fff !important;
    font-size: 21px;
    font-weight: 600;
    font-family: "Poppins";
    letter-spacing: 0.07em;
    background: #c99a7c;
    display: block;
    text-align: center;
    box-shadow: 0px 8px 15px rgb(0 0 0 / 20%);
    padding: 0 2.5vw !important;
    display: inline-block;
    transition: all 0.3s ease-in;
    cursor: pointer;
    border-radius: 0;
    height: 50px;
    line-height: 50px;
}

.login-register-box button:hover {
    color: #fff !important;
    background: #c58963;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.35);
}

.login-register-box div {
    font-family: Roboto;
    font-weight: 300;
    /*font-size: 1.2vw;*/
    font-size: 18px;
}

.login-register-box a {
    color: #424245 !important;
    font-weight: 500 !important;
    font-family: Roboto !important;
    /*font-size: 1.2vw;*/
    font-size: 18px;
}

@media (max-width: 767px) {
    .login-register-box {
        width: 90vw;
        top: 55%;
        left: 50%;
        padding: 5vw 8vw;
    }

    .login-register-box h2 {
        font-size: 3.2vw !important;
        margin-bottom: 20px;
    }

    .login-register-box input {
        border-radius: 0;
        width: 100%;
        margin: 1.2vw auto;
        height: 8.2vw;
        font-size: 1.3vw;
        padding-left: 1vw;
        font-size: 2vw;
        margin: 0;
    }

    .login-register-box button {
        font-size: 2.6vw;
        padding: 2vw 6vw;
    }

    .login-register-box .woocommerce-form-row {
        margin: 3vw 0;
    }

    .login-register-box div, .login-register-box a {
        font-size: 2vw !important;
    }
}


/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

html[lang="en-GB"] {
    margin-top: 0 !important;
}

div#wpadminbar {
    position: relative;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
    margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
    display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
    background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
    border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
    text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
    display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
    color: #404040;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

p {
    margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", courier, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
    background: #fff;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 3em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

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

figure {
    margin: 1em 0;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

/* Links
--------------------------------------------- */
a {
    color: #4169e1;
}

a:visited {
    color: #800080;
}

a:hover,
a:focus,
a:active {
    color: #191970;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1;
    padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
}

select {
    border: 1px solid #ccc;
}

textarea {
    width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
    display: block;
    width: 100%;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    display: block;
    left: auto;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

/* Small menu. */
.menu-toggle{
    display: block;
}

@media screen and (min-width: 1024px) {

    .menu-toggle {
        display: none;
    }

    .main-navigation ul {
        display: flex;
    }
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
    margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
    display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    text-align: end;
    flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
    display: block;
}

.post,
.page {
    margin: 0 0 1.5em;
}

.updated:not(.published) {
    display: none;
}


.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
    margin: 0 0 1.5em;
}

.widget select {
    max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}


/* Captions
--------------------------------------------- */
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
    outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

    /*rtl:ignore*/
    float: left;

    /*rtl:ignore*/
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {

    /*rtl:ignore*/
    float: right;

    /*rtl:ignore*/
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

.company-details-bottom {
    margin: 100px auto;
    max-width: 1400px;
    padding: 0 6vw;
}

.company-details-bottom p {
	line-height: 0.2vw;
}