body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: 'Lato', sans-serif;
    color: #000;
    font-size: 17px;
    font-weight: 300;
    line-height: 26px;
    padding-top: 130px;
    --main-color: #cba168;
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
}
.marg-top {
    margin-top: 60px;
}
.marg-top-big {
    margin-top: 100px;
}
.marg-bottom {
    margin-bottom: 60px;
}
.absolute-link {
    position: relative;
}
.absolute-link .absolute-link__item {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
}
.position-relative {
    position: relative;
}
.section-heading {
    font-size: 42px;
    line-height: 43px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    color: #000;
}
.page-heading {
    font-size: 52px;
    line-height: 62px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #000;
    margin-bottom: 60px;
}
.text-center {
    text-align: center;
}
.pbtn {
    border-radius: 3px;
    padding: 8px 35px;
    font-size: 16px;
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    font-weight: 300;
}
.pbtn:hover {
    background-color: #000;
}

/* @ @ HEADER @ @ */

/* menu button start */
.nav-icon {
    width: 33px;
    height: 23px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 999999;
    position: relative;
    display: none;
    margin-left: 10px;
}
.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-icon span:nth-child(1) {
    top: 0px;
}
.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 10px;
}
.nav-icon span:nth-child(4) {
    top: 20px;
}
.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
/* menu button end */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #fff;
    transition: .3s;
    z-index: 99;
    box-shadow: 0px 0px 6px rgba(200,200,200, .2);
}
.scrolled .header {
    padding-top: 10px;
    padding-bottom: 10px;
}
.header__logo {
    font-size: 32px;
    color: #000;
}
.header__logo h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.header__items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
/* menu start */
.header__menu {
    z-index: 999;
}
.header__menu ul {
    list-style: none;
    padding: 0;
    margin: 0%;
}
.header__menu>div>ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header__menu ul ul {
    display: none;
}
.header__menu>div>ul>li {
    margin-left: 30px;
    text-align: center;
}
.header__menu>div>ul>li.current-menu-item,
.header__menu>div>ul>li.current_page_item {
    color: var(--main-color);
}
.header__menu a {
    text-transform: uppercase;
    font-weight:600;
    font-family: 'Josefin Sans', sans-serif;
    text-align: center;
    letter-spacing: 1.4px;
    font-size: 14px;
    line-height: 18px;
}
.header__menu a:hover {
    color: var(--main-color);
}
.header__icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 10px;
}
.header__icons span,
.header__icons a {
    display: flex;
    align-items: center;
    margin-left: 15px;
    cursor: pointer;
}
.header__icons svg {
    width: 20px;
    height: 20px;
}
/* menu end */
/* @ @ HEADER END @ @ */

/* @ @ BANER START @ @ */
.baner__slick {
    max-width: 100%;
    padding-bottom: 40px;
}
.baner__item {
    display: flex !important;
    flex-wrap: wrap;
    width: 100%;
    padding: 15px;
}
.baner__item:nth-child(even) {
    flex-direction: row-reverse;
}
.baner__content,
.baner__img {
    max-width: 50%;
    flex: 0 0 50%;
}
.baner__img img {
    object-fit: cover;
    max-height: 100%;
    height: 30vw;
    min-height: 400px;
    width: 100%;
}
.baner__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 120px;
}
.baner__title {
    font-size: 42px;
    line-height: 52px;
}
.baner__txt {
    font-size: 22px;
    line-height: 32px;
}
.baner__btn-wrapper {
    display: inline-block;
    margin-top: 30px;
}
.baner .baner__btn {
    background-color: #000;
    color: #fff;
}
.baner .baner__btn:hover {
    background-color: var(--main-color);
}
.baner .slick-dots {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    padding: 0;
    margin: 0;
}
.baner .slick-dots li {
    border-radius: 50%;
    background-color: #000;
    margin: 5px;
    width: 14px;
    height: 14px;
    cursor: pointer;
}
.baner .slick-dots li.slick-active {
    background-color: var(--main-color);
}
.baner .slick-dots li button {
    font-size: 0;
    color: transparent;
    background-color: transparent;
    border: none;
}
/* @ @ BANER END @ @ */
/* @ @ DESC START @ @ */
.desc__item {
    font-size: 24px;
    font-family: 'Josefin Sans', sans-serif;
}
/* @ @ DESC END @ @ */
/* @ @ SMALL BANERS START @ @ */
.baner-small {
    height: 240px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    transition: .5s;
}
.baner-small a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
}
.baner-small h2 {
    margin: 0;
    padding: 20px 30px;
    color: #000;
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #fff;
    position: absolute;
    top: 50%;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
}
.baner-small h2 span {
    font-family: 'Josefin Sans', sans-serif;
    display: block;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    color: rgb(124, 124, 124);
    margin-top: 2px;
    text-transform: none;
}
.baner-small:hover {
    filter: brightness(60%);
}

/* @ @ PORTFOLIO START @ @ */
.port__item {
    margin-top: 30px;
    position: relative;
}
.port__item img {
    width: 100%;
    object-fit: cover;
    height: 340px;
    transition: .3s;
}
.port__item:hover img {
    filter: brightness(60%);
}
.port__desc {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.port__item h3 {
    margin: 0;
    padding: 20px 30px;
    color: #000;
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #fff;
    position: absolute;
    top: 50%;
    text-align: center;
    left: 50%;
    transition: .3s;
    transform: translate(-50%, -50%);
}
.port__item:hover h3 {
    color: #fff;
    background-color: #000;
}
/* @ @ PORTFOLIO END @ @ */
/* @ @ POSTS LIST START @ @ */
.blog-list__title {
    text-align: center;
}
.blog-list__item {
    margin-top: 30px;
}
.blog-list__photo img {
    height: 240px;
    width: 100%;
    object-fit: cover;
}
.blog-list__photo:hover img {
    filter: brightness(60%);
}
.blog-list__categories {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
}
.blog-list__categories li {
    margin: 10px 10px 10px 0;
    line-height: 10px;
}
.blog-list__categories li a {
    color: var(--main-color);
    font-size: 12px;
}
.blog-list__desc h3 {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 5px;
}
.blog-list__date {
    font-size: 12px;
    font-weight: 500;
    color: #000;
    opacity: .4;    
}
/* @ @ POSTS LIST END @ @ */
/* @ @ PRODS START @ @ */
.prods__item {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.prods__item img {
    width: 100%;
    object-fit: cover;
    height: 300px;
}
.prods__price {
    display: flex;
    justify-content: center;
    font-weight: 500;
}
.prods__price ins {
    margin-left: 10px;
    text-decoration: none;
}
.prods__item h3 {
    text-align: center;
  font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0;
}
.prods__more {
    margin-top: 20px;
    display: inline-block;
}
/* @ @ PRODS END @ @ */
/* @ @ CTA START @ @ */
.cta {
    background-color: #000;
    padding: 40px 0 80px 0;
}
.cta .pbtn {
    background-color: #fff;
    color: #000;
}
.cta__item {
    color: #fff;
    font-size: 20px;
    margin-bottom: 60px;
}
.cta .pbtn:hover {
    background-color: var(--main-color);
}
/* @ @ CTA END @ @ */
/* @ @ SEARCH START @ @ */
#searchform {
    position: absolute;
    right: 60px;
    top: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #eaeaea;
    border-radius: 3px;
    display: none;
}
#searchform input[type='text'] {
    padding: 6px;
    width: 200px;
    border: none;
    border-right: 1px solid #eaeaea;
}
#searchform button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}
#searchform button svg {
    width: 22px;
    height: 22px;
}
/* @ @ SEARCH END @ @ */
/* @ @ CHESS START @ @ */
.chess {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}
.chess:nth-child(odd) {
    flex-direction: row-reverse;
}
.chess__img {
    max-width: 50%;
    flex: 0 0 50%;
}
.chess__img img {
    object-fit: cover;
    width: 100%;
}
.chess__txt {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 40px;
    display: flex;
    align-items: center;
}
/* @ @ CHESS END @ @ */
/* @ @ CF START @ @ */
.cf form {
    width: 100%;
    position: relative;
}
.cf textarea,
.cf input:not([type='submit']):not([type='checkbox']) {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #000;
    border: none;
    border-bottom: 1px solid #B8B8B8;
    margin:10px 0;
    background-color: transparent;
    padding: 10px;
    resize: none;
    outline: none;
    width: 100%;
}
.cf textarea::placeholder,
.cf input:not([type='submit']):not([type='checkbox'])::placeholder {
    color: #555555;
    opacity: .4;
}
.cf input[type="submit"] {
    border: 1px solid #000;
    font-size: 16px;
    background-color: #000;
    color: #fff;
    padding: 10px 30px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    margin: 20px 0 0 0;
    letter-spacing: 1px;
    transition: .3s;
}
.cf input[type="submit"]:hover {
    color: #000;
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.cf .wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
}
.cf .wpcf7-acceptance .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
}
.cf .wpcf7-acceptance .wpcf7-list-item input {
    min-width: 20px;
    min-height: 20px;
    margin-right: 15px;
}
/* @ @ CF END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @ WOO START @ @ */
body .woocommerce-info,
body .woocommerce-message {
    border-top-color: var(--main-color);
}
.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--main-color)
}
.cart-collaterals {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}
.cart-collaterals .cart_totals {
    float: none !important;
}
.cart-collaterals .cart_totals h2 {
    text-align: center;
}
.cart_totals table td {
    text-align: right !important;
}
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, body .woocommerce #respond input#submit, body .woocommerce a.button, body .woocommerce button.button, body .woocommerce input.button, body.woocommerce #respond input#submit, body.woocommerce a.button, body.woocommerce button.button, body.woocommerce input.button {
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 35px !important;
    color: #fff !important;
    background-color: #2A8ADD;
    border: none;
    transition: .3s;
    background: var(--main-color) !important;
}
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, body .woocommerce #respond input#submit:hover, body .woocommerce a.button:hover, body .woocommerce button.button:hover, body .woocommerce input.button:hover, body.woocommerce #respond input#submit:hover, body.woocommerce a.button:hover, body.woocommerce button.button:hover, body.woocommerce input.button:hover {
    background-color: #000 !important;
    color: #fff !important;
}
td.actions .coupon .input-text {
    height: 36px;
    min-width: 120px;
}
.woocommerce-checkout form input, .woocommerce-checkout form textarea {
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #eaeaea;
    font-size: 16px;
    padding: 8px 10px;
}


.onsale {
    background-color: var(--main-color) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 22px !important;
    padding: 10px 5px !important;
    min-height: initial !important;
}

.woocommerce .woocommerce-ordering select {
    padding: 10px 15px;
    border: 1px solid #eaeaea;
}
body .shoplist .products {
    margin-top: 100px;
}
body .related {
    clear: both;
    padding-top: 60px;
}
body .related .products li,
body .shoplist .products li.product {
    text-align: center;
}
body .shoplist .products li.product .star-rating {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}
body .shoplist .products li.product .star-rating::before {
    float: none;
}
.woocommerce ul.products li.product a img {
    transition: .3s;
}
.woocommerce ul.products li.product a img:hover {
    filter: brightness(65%);
}
.woocommerce-loop-product__title {
    text-align: center !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin: 10px 0 !important;
}
.woocommerce ul.products li.product .price {
    display: flex !important;
    justify-content: center !important;
    font-weight: 400 !important;
    color: #000 !important;
    font-size: 17px !important;
}
.woocommerce ul.products li.product .price ins {
    margin-left: 10px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
}
.woocommerce div.product form.cart {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.woocommerce .quantity .qty {
    min-width: 60px;
    height: 40px;
}
.woocommerce div.product form.cart .button {
    background-color: var(--main-color) !important;
    color: #fff !important;
    padding: 12px 25px !important;
    border-radius: 3px !important;
}
.woocommerce div.product form.cart .button:hover {
    background-color: #000 !important;
}

.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
}
.woocommerce div.product div.images .flex-control-thumbs li:not(:last-child) {
    padding-right: 2px;
}
.woocommerce div.product div.images .flex-control-thumbs li:not(:first-child) {
    padding-left: 2px;
}

.woocommerce .star-rating span::before {
    color: var(--main-color);
}
body.woocommerce div.product p.price, body.woocommerce div.product span.price {
    font-size: 32px;
    color: #000;
    font-weight: 400;
}

.woocommerce-tabs.wc-tabs-wrapper {
    margin-top: 30px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding-left: 8px;
    border-bottom: 1px solid var(--main-color);
    border-bottom-left-radius: 3px;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border-radius: 3px;
    border: 1px solid var(--main-color) !important; 
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #fff !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #000 !important;
}
li#tab-title-additional_information {
    margin-left: 15px;
}
.woocommerce table.shop_attributes tr:nth-child(even) td, .woocommerce table.shop_attributes tr:nth-child(even) th,
.woocommerce div.product .woocommerce-tabs ul.tabs li:not(.active) {
    background-color: var(--main-color);
}
body.woocommerce .woocommerce-content div.product .woocommerce-tabs ul.tabs::before {
    border: none;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs li::after, body.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    display: none !important;
}

.woocommerce #review_form #respond textarea {
    padding: 10px;
    font-family: 'Lato', sans-serif;

}
/* @ @ WOO END @ @ */
/* @ @ FOOTER START @ @ */
.footer {
    box-shadow: 0px 0px 6px rgba(200,200,200, .2);
    padding-top: 40px;
    margin-top: 80px;
}
.footer__title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}
.footer__about {
    display: flex;
    flex-direction: column;
}
.footer__about p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #666;
    margin-top: 0;
    margin-bottom: 30px;
}
.footer__logo {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 30px 0;
    display: inline-block;
    font-family: 'Cormorant Garamond', sans-serif;
}
.footer__posts {
    padding-left: 120px;
}
.footer__posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__posts ul li {
    border-bottom: 1px dotted #ECECEC;
    padding: 5px 0;
}
.footer__posts ul li a {
    font-weight: 500;
    font-size: 14px;
}
.footer__posts ul li span {
    font-weight: 300;
    display: inline-block;
    margin-right: 10px;
    font-size: 12px;
}

.footer__socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer__socials a {
    display: inline-block;
    margin: 2px 5px;
}
.footer__socials svg {
    width: 14px;
    height: 14px;
}

.footer__menu {
    margin-top: 10px;
    text-align: right;
}
.footer__menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer__menu ul li {
    margin-bottom: 5px;
}
.footer__menu ul li a {
    font-size: 16px;
    font-weight: 500;
}
.footer__menu ul li a:hover {
    color: var(--main-color);
}
.copyright {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 20px;
    margin-top: 20px;
}
.copyright p,
.copyright a {
    display: inline-block;
    margin: 5px 0;
    font-size: 12px;
    line-height: 18px;
    color: #666;
}
/* @ @ FOOTER END @ @ */

/* @ @ MEDIA START @ @  */
@media(min-width: 2100px) {
   
}
@media(max-width: 1500px) {
    .baner__content {
        padding: 60px;
    }
    .baner__img img {
        height: 600px;
    }
}
@media(max-width: 1380px) {
  
}
@media(max-width: 1280px) {
    .nav-icon {
        display: block;
        margin-left: 20px;
    }
    .header__menu {
        position: fixed;
        top: 0;
        left: -150vw;
        width: 35%;
        overflow: auto;
        background-color: #fff;
        box-shadow: 0px 0px 6px rgba(144,144,144, .2);
        height: 100%;
        transition: .5s;
    }
    .menuopened .header__menu{
        left: 0;
    }
    .header__menu>div>ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 30px 30px 50px;
    }
    .header__menu>div>ul>li {
        margin: 10px 0;
    }
    .header__menu>div>ul>li>a {
        font-size: 18px;
    }
}
@media(max-width: 1200px) {
  
}
@media(max-width: 1070px) {
    
}
@media(min-width: 993px) {
    .chess__img {
        display: flex;
        align-items: stretch;
    }
    .chess__img img {
        height: 100%;
    }
}
@media(max-width: 992px) {
    .baner-small {
        margin-bottom: 20px;
    }

    .baner__content {
        padding: 40px;
    }
    .baner__title {
        font-size: 32px;
        line-height: 44px;
    }
    .baner__txt {
        font-size: 18px;
    }

    .blog-list__photo img {
        height: initial;
    }

    .prods__item img {
        height: initial;
    }

    .chess {
        margin-top: 0;
    }
    .chess__img,
    .chess__txt {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .footer__posts {
        padding-left: 15px;
        margin-top: 30px;
    }
    .footer__socials {
        align-items: flex-start;
        margin-top: 0;
    }
    .footer__box {
        margin-top: 40px;
    }
    .footer__menu {
        text-align: left;
    }
    .copyright {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
}
@media(max-width: 767px) {
    body {
        padding-top: 60px;
    }
    .marg-top-big {
        margin-top: 60px;
    }
    .header {
        padding: 10px 0;
    }
    .scrolled .header {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .header__menu {
        width: 60%;
    }

    .baner__item {
        flex-direction: column-reverse !important;
    }
    .baner__img,
    .baner__content {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .baner__img img {
        height: 300px;
        max-height: 300px;
    }

    .footer {
        margin-top: 40px;
    }

    .coupon input#coupon_code {
        width: 100%;
        margin-bottom: 8px;
    }
    .coupon button.button.wp-element-button {
        width: 100% !important;
    }
}
@media(max-width: 501px) {
    .header__menu {
        width: 100%;
    }
}
/* @ @ MEDIA END @ @  */