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

*           Global style

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

:root {
    --main-color: #512c1e;

    --secondary-color: #e52329;

    --dark-color: #272e40;

    --base-font: "Graphik";
}

html {
    scroll-behavior: smooth;
  }

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--base-font);

    font-size: 16px;

    color: var(--dark-color);

    transition: all 0.3s ease-in-out;

    overflow-x: hidden;

    margin: 0;
}

button {
    padding: 0;
}

svg,
img {
    max-width: 100%;

    vertical-align: middle;
}

a {
    color: var(--dark-color);

    text-decoration: none;

    transition: 0.3s;
}

a:hover {
    text-decoration: none;

    color: var(--main-color);
}

ul {
    padding: 0;

    margin: 0;

    list-style: none;
}

p {
    line-height: 1.7;
}

figure {
    margin: 0;
}

textarea {
    font-family: var(--base-font);
}

.form-control {
    margin-bottom: 20px;
}



.form-control label {
    display: block;

    text-transform: uppercase;

    font-size: 14px;

    margin-bottom: 8px;
}

.form-control input {
    width: 100%;

    height: 44px;

    background-color: #ececed;

    border: 0;

    padding-left: 10px;

    padding-right: 10px;

    font-family: var(--base-font);
    font-size: 16px;
}

.form-control select {
    width: 100%;

    height: 44px;

    background-color: #ececed;

    border: 0;

    padding-left: 10px;

    padding-right: 10px;
}

.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
}

.custom-select::after {
    height: 12px;

    width: 15px;

    position: absolute;

    right: 15px;

    top: 50%;

    transform: translatey(-50%);

    content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDE4IDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xNi45MjAxIDAuOTUwMTk1TDEwLjQwMDEgNy40NzAyQzkuNjMwMDggOC4yNDAyIDguMzcwMDggOC4yNDAyIDcuNjAwMDggNy40NzAyTDEuMDgwMDggMC45NTAxOTUiIHN0cm9rZT0iIzIxMjEyMSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);

    pointer-events: none;
}

.form-control textarea {
    width: 100%;

    background-color: #ececed;

    border: 0;

    padding: 10px;

    resize: vertical;
}

.form-submit button {
    border: 2px solid var(--main-color);

    padding: 12px 35px;

    background-color: transparent;

    cursor: pointer;

    font-size: 16px;

    text-transform: uppercase;

    font-weight: 600;

    color: var(--main-color);

    letter-spacing: 2px;

    transition: 0.3s;
}

.form-submit button:hover {
    background-color: var(--main-color);

    color: #ffffff;

    border-color: var(--main-color);
}

@media (min-width: 576px){
    form .f-row {
        display: flex;
    
        gap: 24px;
    }
    
    form .f-row > div {
        flex: 1;
    }
}


.u-flex {
    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;
}

.u-flex--wrap {
    -webkit-flex-wrap: wrap;

    -ms-flex-wrap: wrap;

    flex-wrap: wrap;
}

.u-flex--content-center {
    -webkit-box-pack: center;

    -moz-box-pack: center;

    -ms-flex-pack: center;

    -webkit-justify-content: center;

    justify-content: center;
}

.u-flex--content-between {
    -webkit-box-pack: justify;

    -moz-box-pack: justify;

    -ms-flex-pack: justify;

    -webkit-justify-content: space-between;

    justify-content: space-between;
}

.u-flex--content-start {
    -webkit-box-pack: start;

    -moz-box-pack: start;

    -ms-flex-pack: start;

    -webkit-justify-content: flex-start;

    justify-content: flex-start;
}

.u-flex--content-end {
    -webkit-box-pack: end;

    -moz-box-pack: end;

    -ms-flex-pack: end;

    -webkit-justify-content: flex-end;

    justify-content: flex-end;
}

.u-flex--item-center {
    -webkit-align-items: center;

    align-items: center;

    -webkit-box-align: center;

    -moz-box-align: center;

    -ms-flex-align: center;
}

.clear::before,
.clear::after,
section::before,
section::after {
    display: block;

    clear: both;

    content: "";
}

.img-block {
    width: 100%;

    display: block;
}

.u-overflow-hidden {
    overflow: hidden;
}

.u-pointer {
    cursor: pointer;
}

.slick-slide * {
    vertical-align: middle;
}

.max-width-600 {
    max-width: 600px;

    margin: 0 auto;
}

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

*          Fonts

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

@font-face {
    font-family: Graphik;

    src: url(../fonts/GraphikRegular.otf);

    font-weight: 400;
}

@font-face {
    font-family: Graphik;

    src: url(../fonts/GraphikMedium.otf);

    font-weight: 500;
}

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

*           Mobile Offcanvas

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

.mobile-offcanvas {
    height: 100vh;

    width: 320px;

    background-color: #ffffff;

    right: -321px;

    top: 0;

    position: fixed;

    padding: 60px 1px 30px 0;

    transition: 0.3s;

    z-index: 999999999999;
}

.offcanvas-on .mobile-offcanvas {
    right: 0;
}

.mobile-offcanvas__close {
    height: 30px;

    width: 30px;

    background-color: rgba(255, 0, 0, 0.15);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    position: absolute;

    top: 20px;

    left: 20px;

    font-size: 20px;

    cursor: pointer;
}

.offcanvas-logo {
    max-width: 60%;

    margin: 0 auto 30px;
}

.offcanvas-social-links {
    margin-top: 30px;

    padding: 0 20px;
}

.offcanvas-social-links ul {
    display: flex;
}

.offcanvas-social-links ul a {
    margin-right: 10px;
}

.offcanvas-social-links ul svg {
    width: 30px;

    height: auto;
}

.offcanvas-nav-parent a {
    font-size: 16px;

    font-weight: 400;
}

.offcanvas-nav-parent a {
    display: block;

    text-decoration: none;
}

.offcanvas-nav-parent a:hover,
.offcanvas-nav-parent a:focus {
    color: #d52027;
}

.offcanvas-nav-parent > li {
    border-bottom: solid 2px #512c1e21;
}

.offcanvas-nav-parent > li a.offcanvas-nav-item {
    color: #333333;

    padding: 14px 20px;

    background-color: rgba(240, 240, 235, 0.3);
}

.offcanvas-nav-parent > li:hover a.offcanvas-nav-item,
.offcanvas-nav-parent > li.active a.offcanvas-nav-item {
    color: #ffffff;

    background-color: var(--main-color);
}

.mobile-offcanvas-inner {
    overflow-y: auto;

    height: calc(100vh - 100px);

    padding-bottom: 20px;
}

.offcanvas-subnav {
    display: none;

    border: solid 1px #e9e9e9;

    padding: 10px 10px 10px 15px;
}

.offcanvas-subnav li a {
    color: #000;

    padding: 6px 25px;
}

.offcanvas-nav-parent .has-submenu {
    position: relative;
}

.offcanvas-nav-parent .has-submenu svg {
    width: 15px;

    display: inline-block;
}

.offcanvas-nav-parent .has-submenu .menu-up svg {
    transform: rotate(180deg);
}

.offcanvas-nav-parent .has-submenu svg path {
    stroke: #333333;
}

.offcanvas-nav-parent .has-submenu .submenu-icon {
    background-color: #3780bc38;

    height: 100%;

    width: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: absolute;

    right: 0;

    top: 0;
}

.hamburger {
    display: none;
}

.hamburger .line {
    width: 30px;

    height: 3px;

    background-color: #ffffff;

    display: block;

    margin: 8px auto;

    -webkit-transition: all 0.3s ease-in-out;

    -o-transition: all 0.3s ease-in-out;

    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);

    -ms-transform: translateY(9px) rotate(45deg);

    -o-transform: translateY(9px) rotate(45deg);

    transform: translateY(9px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);

    -ms-transform: translateY(-13px) rotate(-45deg);

    -o-transform: translateY(-13px) rotate(-45deg);

    transform: translateY(-13px) rotate(-45deg);
}

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

*                 Header

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

.header {
    position: fixed;

    width: 100%;

    height: 80px;

    background: rgba(81, 44, 30, 0.3);

    top: 0;

    left: 0;

    z-index: 9999999;
    transition: top 0.3s ease-in-out;
}
.header.nav-up {
    top: -172px;
}
.header__container {
    display: flex;

    justify-content: space-between;

    position: relative;
}

.header__logo {
    padding-top: 16px;
}

.header__logo a {
    position: absolute;

    left: 0;

    top: 0;
}

.header__logo img {
    width: 170px;
}

.header__nav__main li a {
    display: flex;

    align-items: center;

    height: 80px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 500;

    padding: 0 14px;
}

.header__nav__main li:last-child {
    display: flex;

    align-items: center;
}

ul.header__nav__main {
    align-items: center;
}
.header__nav__main li.active a {
    display: flex;

    height: 38px;

    padding: 0 16px;

    border-radius: 50px;

    background-color: var(--secondary-color);

    color: #ffffff;

    margin-left: 14px;

    transition: 0.3s;
}

.header__nav__main li  a:hover {
    color: var(--secondary-color);
}

.header__nav__social {
    padding-left: 26px;
}

.header__nav__social li {
    margin-left: 10px;
}

.header__nav__social li a {
    display: flex;

    align-items: center;

    height: 80px;
}

.header__nav__social li a svg path{
    fill:#ffffff;
}

.header-cart{
    position: relative;
    margin-left: 20px;
    display: block;
}
.header-cart svg{
    fill: #ffffff;
    width: 22px;
}
.header-cart span{
    position: absolute;
    height: 18px;
    width: 18px;
    background-color: var(--secondary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
    top: -6px;
    right: -10px;
}
.header__nav__social li a:hover svg path{
    fill: var(--secondary-color);
}
@media (max-width: 767px) {
    .header__logo img {
        width: 138px;
    }
}

@media (max-width: 1024px) {
    .header__nav ul {
        display: none;
    }

    .header__nav {
        height: 80px;
    }

    .hamburger {
        display: inline-block;
    }
    
    .header-cart{
        margin-right: 25px;
    }
}

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

*                 Hero

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

.hero,
.hero__slider__item {
    position: relative;
}

.hero__text {
    padding: 20px 15px;

    background-color: var(--main-color);

    text-align: center;

    color: #ffffff;

    font-size: 50px;
}

.hero__slider__arrows {
    position: absolute;

    top: 50%;

    left: 0;

    width: 100%;

    transform: translateY(-50%);

    z-index: 999999;
}

.hero__slider__arrows .container {
    display: flex;

    justify-content: space-between;
}

.hero__slider__arrow {
    height: 50px;

    width: 50px;

    background: rgba(81, 44, 30, 0.3);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;
}

.hero__slider__arrow:hover {
    background-color: var(--main-color);
}

.hero__slider__arrow-next {
    transform: translateX(100px);
}

.hero__slider__arrow-prev {
    transform: translateX(-100px);
}

.hero__slider__figure img {
    width: 100%;
}

.hero__slider__content {
    position: absolute;

    height: 100%;

    width: 100%;

    left: 0;

    top: 0;

    display: flex;

    align-items: center;

    padding-top: 80px;
}

.hero__slider__content__wrap {
    max-width: 475px;
}

.hero__slider__content h1 {
    font-size: 44px;

    line-height: 1.09;

    color: #ffffff;

    margin-bottom: 20px;

    margin-top: 0;

    font-weight: 500;
}

.hero__slider__content p {
    font-size: 16px;

    line-height: 1.87;

    color: #ffffff;

    margin: 0;

    font-weight: 400;

    margin-bottom: 30px;
}

.hero__slider__content a {
    display: flex;

    color: #ffffff;

    height: 44px;

    width: 110px;

    align-items: center;

    justify-content: center;

    font-size: 16px;

    font-weight: 500;

    background-color: #512c1e;

    border-radius: 4px;
}

.hero__slider__figure img[data-lazy]{
    height: 700px;
    opacity: 0;
    object-fit: cover;
}


@media (min-width: 1200px){
    /*.hero__slider__figure {*/
    /*    min-height: 800px;*/
    /*    max-height: 100vh;*/
    /*}*/

}

.hero__slider>.hero__slider__item{
    display: none;
}

.hero__slider>.hero__slider__item:first-child{
    display: block;
}
@media (max-width: 1200px) {
    .hero__slider__figure {
        height: 500px;
    }

    .hero__slider__figure img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .hero__slider__arrow-prev {
        transform: translateX(-40px);
    }
    
    .hero__slider__arrow-next {
        transform: translateX(40px);
    }
    
    .hero__slider__arrows{
        opacity: 0;
        transition: .3s;
    }
    
    .hero:hover .hero__slider__arrows{
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .hero__slider__figure {
        height: 600px;
    }
    
    .hero__slider__arrows{
        display: none;
    }
}

@media (max-width: 575px) {
    .hero__slider__content h1 {
        font-size: 38px;
    }

    .hero__text {
        font-size: 26px;
    }
}

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

*                 Features

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

.features {
    background-color: #313034;

    padding: 60px 0;
}

.features ul {
    display: flex;

    justify-content: space-between;
}

.features ul li {
    display: flex;

    align-items: center;
}

.features ul li:hover .feature__text span {
    color: var(--secondary-color);
}

.features ul li .feature__icon svg path {
    transition: 0.3s;
}

.features ul li:hover .feature__icon svg path {
    fill: var(--secondary-color);
}

.feature__text {
    padding-left: 17px;
}

.feature__text span {
    display: block;

    color: #a4a4a4;

    font-weight: 500;

    font-size: 16px;

    line-height: 24px;

    transition: 0.3s;
}

.features ul li:nth-child(2) {
    width: 592px;

    border-left: 1px solid #ffffff;

    border-right: 1px solid #ffffff;

    padding-left: 185px;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .features ul li:nth-child(2) {
        width: initial;

        padding-left: initial;

        border: 0;
    }
}

@media (max-width: 767px) {
    .features ul {
        flex-direction: column;
    }

    .features ul li:nth-child(2) {
        padding: 0;

        border: 0;

        width: auto;
    }

    .features ul li:not(:last-child) {
        margin-bottom: 25px;
    }
}

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

*               Our Menus

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

.our-menus {
    background-color: #313034;

    border-top: 1px solid #534659;

    padding: 70px 0 100px;
}

.our-menus .title h2 {
    color: #ffffff;

    font-size: 40px;

    line-height: 1.09;

    text-align: center;

    font-weight: 500;

    margin: 0;

    margin-bottom: 70px;
}

.our-menus-list {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    grid-column-gap: 114px;

    grid-row-gap: 40px;
}

.our-menus-list a img {
    width: 100%;

    transition: 0.3s;
}

.our-menus-list a span {
    color: #ffffff;

    font-size: 24px;

    font-weight: 500;

    display: block;

    text-align: center;
}

.our-menus-list a span.text-top {
    margin-bottom: 20px;
}

.our-menus-list a span.text-bottom {
    margin-top: 20px;
}

.our-menus-list a figure {
    overflow: hidden;
}

.our-menus-list a:hover figure img {
    transform: scale(1.1);
}

@media (min-width: 1600px) {
    .our-menus .container {
        padding: 0 100px;
    }
}

@media (max-width: 1200px) {
    .our-menus-list {
        grid-column-gap: 50px;

        grid-row-gap: 40px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .our-menus-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .our-menus-list {
        grid-template-columns: 1fr;
    }

    .our-menus-list a {
        display: flex;

        flex-direction: column;
    }

    .our-menus-list a span {
        order: 2;

        margin-bottom: 0;

        margin-top: 20px;
    }

    .our-menus-list a figure {
        order: 1;
    }
}

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

*              content-block

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

.content-block {
    padding: 100px 0;

    background: #f2f2f2;
}

.content-block-row {
    display: flex;
}

.content-block-row.row-1 {
    align-items: flex-end;
}

.content-block-row.row-2 {
    justify-content: flex-end;
}

.content-block-row .content {
    width: 758px;

    box-shadow: 0px 2px 50px rgba(0, 0, 0, 0.1);

    background-color: #ffffff;

    padding: 110px 70px 100px 60px;

    z-index: 20;
}

.content-block-row .content h3 {
    font-size: 30px;

    margin: 0;

    margin-bottom: 25px;

    font-weight: 500;
}

.content-block-row .content p {
    font-size: 18px;
}

.content-block-row.row-2 .content {
    background-color: #9e553a;

    color: #ffffff;

    position: relative;

    top: -70px;

    z-index: 40;
}

.content-block-row.row-2 .figure {
    position: relative;

    top: -60px;

    right: -40px;

    z-index: 10;
}

.content-block-row.row-1 .figure {
    position: relative;

    top: 0px;

    right: 40px;

    z-index: 10;
}

@media (max-width: 1200px) {
    .content-block-row.row-2 .content {
        padding-bottom: 60px;
    }

    .content-block-row .content {
        padding-top: 60px;
    }
}

@media (max-width: 980px) {
    .content-block-row.row-1 {
        flex-direction: column-reverse;
    }

    .content-block-row.row-2 {
        flex-direction: column;
    }

    .content-block-row .figure {
        width: 100%;

        position: static !important;
    }

    .content-block-row .content,
    .content-block-row .figure img {
        width: 100%;
    }

    .content-block-row.row-1 .content {
        padding-bottom: 60px;
    }

    .content-block {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .content-block-row .content {
        padding: 40px !important;
    }
}

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

*               Call to action

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

.call-to-action {
    position: relative;

    background-color: #9e553a;
}

.call-to-action__text {
    position: absolute;

    width: 100%;

    left: 0;

    top: 0;

    display: flex;

    align-items: center;

    height: 100%;
}

.call-to-action__text h3 {
    font-size: 30px;

    color: #ffffff;

    font-weight: 500;

    margin-bottom: 20px;

    margin-top: 0;
}

.call-to-action__text p {
    color: #ffffff;

    font-weight: 400;

    font-size: 18px;

    line-height: 1.6666;

    margin-bottom: 20px;
}

.call-to-action__text .container > div {
    padding-right: 80px;

    padding-left: 0;
}

.call-to-action__figure {
    display: flex;

    justify-content: flex-end;
}

.call-to-action__figure img {
    width: 100%;
}

.call-to-action__figure figure {
    width: 50%;

    max-width: 50%;
}

.call-to-action__text a {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 4px;

    color: #313034;

    font-size: 16px;

    font-weight: 500;

    height: 44px;

    background-color: #ffffff;
    padding: 0 25px;
}

@media (max-width: 991px) {
    .call-to-action__text {
        position: static;

        padding: 60px 0 80px;
    }

    .call-to-action__text .container > div {
        padding-right: 0;
    }

    .call-to-action__figure figure {
        max-width: 100%;

        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1400px) {
    .call-to-action__figure figure {
        height: 680px;
    }

    .call-to-action__figure figure img {
        width: 100%;

        height: 100%;

        object-fit: cover;
    }
}

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

*              footer

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

.footer {
    padding: 137px 0;

    background-image: url(../img/footer.webp);
}

.footer-widgets {
    display: flex;
}

.footer-widgets .col-one {
    flex: 0 0 420px;

    max-width: 420px;

    margin-right: 70px;
}

.footer-widgets .col-two {
    flex: 0 0 430px;

    max-width: 430px;
}

.footer-widgets .col-three {
    margin-left: auto;
}

.footer-widget {
    margin-bottom: 45px;
}

.footer-widget:last-child {
    margin-bottom: 0;
}

.footer-widget-title h3 {
    color: #ffffff;

    font-size: 20px;

    font-weight: 600;

    margin: 0;

    margin-bottom: 37px;
}

.footer-widget-about {
    text-align: center;

    color: #ffffff;

    font-size: 16px;

    line-height: 1.7;
}

.footer-widget-about p {
    margin-bottom: 25px;
}

.footer-logo img {
    width: 105px;
}

.footer-widget-contact .footer-widget__body {
    display: flex;

    color: #ffffff;

    font-weight: 400;

    font-size: 16px;

    line-height: 1.7;
}

.footer-widget-contact .footer-widget__body .icon {
    margin-right: 10px;
}

.footer-widget-contact .footer-widget__body span {
    display: block;

    margin-top: 20px;
}

.footer-widget-social ul {
    display: flex;

    justify-content: flex-start;

    padding: 0;
}

.footer-widget-social ul li svg path {
    fill: #ffffff;

    transition: 0.3s;
}

.footer-widget-social ul li a {
    margin-right: 15px;
}

.footer-widget-social ul li a:hover svg path {
    fill: #9e553a;
}

.footer-widget-link ul {
}

.footer-widget-link ul li {
}

.footer-widget-link ul li a {
    color: #ffffff;

    font-weight: 400;

    font-size: 16px;

    line-height: 36px;
}

.copy-right {
    border-top: 1px solid rgba(255, 255, 255, 0.25);

    font-size: 15px;

    padding-top: 20px;

    margin-top: 20px;
}

@media (min-width: 600px) and (max-width: 1200px) {
    .footer-widgets {
        flex-wrap: wrap;

        justify-content: space-between;
    }

    .footer-widgets .col-one {
        order: 1;
    }

    .footer-widgets .col-three {
        order: 2;
    }

    .footer-widgets .col-one,
    .footer-widgets .col-three {
        margin-right: 0;
    }

    .footer-widgets .col-two {
        flex: 0 0 100%;

        max-width: 100%;

        order: 3;

        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .footer-widgets {
        flex-wrap: wrap;

        flex-direction: column;
    }

    .footer-widgets .col-one {
        order: 1;
    }

    .footer-widgets .col-two {
        order: 3;
    }

    .footer-widgets .col-three {
        order: 2;
    }

    .footer-widgets .col-three {
        margin-left: inherit;
    }

    .footer-widgets .col-two {
        margin-top: 50px;
    }

    .footer-widget-about {
        text-align: left;
    }

    .footer {
        padding-bottom: 30px;
    }
}

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

*             Contact Page

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

.contact-hero {
    position: relative;
}

.contact-hero:before {
    content: "";

    width: 100%;

    height: 100%;

    background-color: #000;

    z-index: 9;

    position: absolute;

    opacity: 0.2;
    pointer-events: none;
}

section.contact-hero iframe {
    width: 100%;
}
.contact-form {
    padding: 100px 0;
}

.contact-form .form-title {
    max-width: 780px;

    margin: 0 auto;

    text-align: center;

    margin-bottom: 50px;
}

.contact-form .form-title h3 {
    font-weight: 500;

    line-height: 1.4;

    font-size: 24px;

    margin: 0;
}

.contact-form .form-wrap {
    max-width: 900px;

    margin: 0 auto;

    display: flex;
}

.contact-form .form-wrap .address {
    flex: 0 0 35%;

    max-width: 35%;
    padding-right: 10px;
}

.contact-form .form-wrap form {
    flex: 1;
}

.contact-form .form-wrap .address p {
    margin: 0;

    margin-bottom: 20px;
}

.contact-form .form-wrap .address p span {
    display: block;
}

.contact-form .form-wrap .address h4 {
    margin: 0;

    font-weight: 500;

    margin-bottom: 20px;
}

.contact-form .socila-links {
    display: flex;

    align-items: center;
}

.contact-form .socila-links li {
    margin-right: 12px;
}

.contact-form .socila-links a svg {
    width: 36px;

    height: auto;
}

.contact-form .socila-links a svg path {
    fill: var(--main-color);
}

.newsletter {
    background-color: #000000;

    padding: 90px 0;

    border-bottom: 1px solid var(--main-color);

    text-align: center;
}

.newsletter h3 {
    color: #ffffff;

    margin: 0;

    font-size: 22px;

    font-weight: 400;

    letter-spacing: 2px;
}

.newsletter form {
    display: flex;

    justify-content: center;

    max-width: 600px;

    margin: 25px auto 0;

    gap: 16px;
}

.newsletter form input {
    flex: 1;

    padding: 0 12px;

    border: 1px solid rgba(255, 255, 255, 0.3);

    background-color: rgba(255, 255, 255, 0.3);

    font-size: 18px;
}

.newsletter form button {
    flex: 0 0 120px;

    height: 44px;

    cursor: pointer;

    text-transform: uppercase;

    font-weight: 600;

    letter-spacing: 2px;

    border: 1px solid #ffffff;

    background-color: transparent;

    color: #ffffff;
}

@media (max-width: 575px) {
    form .f-row {
        display: block;
    }

    .contact-form .form-title h3 {
        font-size: 22px;
    }

    .newsletter form input,
    .newsletter form {
        display: block;
    }

    .newsletter form input {
        width: 100%;

        height: 48px;

        margin-bottom: 15px;
    }

    .newsletter form button {
        width: 100%;

        display: block;
    }
}

@media (max-width: 767px) {
    .contact-form .form-wrap {
        display: block;
    }

    .contact-form .form-wrap .address {
        max-width: 90%;

        text-align: center;

        margin: 0 auto 40px;
    }

    .contact-form .socila-links {
        justify-content: center;
    }
}

@media (max-width: 980px) {
    .contact-hero {
        height: 388px;
    }

    .contact-hero img {
        height: 100%;

        object-fit: cover;

        width: 100%;
    }
}

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

*             About Page

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

.about-main {
    padding: 100px 0;

    background-image: url(../img/about-bg.webp);
}

.about-intro__inner {
    max-width: 1080px;

    margin: 0 auto;
}

.about-intro {
    text-align: center;
}

.about-intro h2 {
    font-size: 50px;

    text-transform: capitalize;

    margin: 0;

    margin-bottom: 25px;
}

.about__text p,
.about-intro p {
    font-size: 18px;
}

.about-section {
    padding: 60px 0;
}

.about__figure {
    padding-right: 40px;
}

.about__text h2 {
    font-size: 40px;

    margin-top: 0;
}

.btn-menu a {
    display: inline-block;

    background-color: var(--main-color);

    color: #ffffff;

    padding: 20px 45px;

    margin-top: 25px;

    border-radius: 50px;
}

.btn-menu a:hover {
    background-color: var(--secondary-color);
}
.btn-menu input {
    height: 54px;
    width: 56px;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
}
.about-section:last-child {
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .about-intro h2 {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .about__figure {
        padding: 0;
    }

    .figure-start .about__figure {
        margin-bottom: 40px;
    }

    .figure-end .about__figure {
        margin-top: 40px;
    }

    .about__text {
        text-align: center;
    }
}

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

*             custom-cake Page

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

.page-padding {
    padding: 180px 0 100px;
}

.page-bg {
    background: #f2f2f2;
}

.page .title p {
    text-align: center;

    color: #534659;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.9;

    margin-bottom: 0;
}

.page .title h1 {
    font-size: 40px;

    font-weight: 600;

    text-align: center;

    color: #3a2943;
}

.custom-cake-body {
    padding-top: 50px;

    display: flex;

    position: relative;

    align-items: flex-start;
}

.custom-cake-body > .figure {
    flex: 0 0 43%;

    max-width: 43%;

}

@media (min-width: 991px){
    .custom-cake-body > .figure {

        position: sticky;

        top: 30px;
    }
}

.custom-cake-body > .figure img {
    width: 100%;
}

.custom-cake-meta {
    padding-left: 50px;

    flex: 1;
}

.custom-cake-size {
    display: flex;

    gap: 14px;
}

.custom-cake-size label {
    flex: 1;
}

.custom-cake-size label span {
    height: 50px;

    background-color: #ffffff;

    border: 1px solid #d9d9d9;

    justify-content: center;

    display: flex;

    align-items: center;

    border-radius: 4px;

    cursor: pointer;

    width: 100%;

    margin-top: 8px;
}

.custom-cake-size label input {
    display: none;
}

.custom-cake-size label input:checked + span {
    background-color: var(--main-color);

    color: #ffffff;
}

.custom-cake-flavors {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}

.custom-cake-meta__block {
    margin-bottom: 30px;
}

.custom-cake-meta__block h4 {
    font-weight: 500;

    font-size: 20px;

    line-height: 60px;

    margin: 0;
}

.custom-cake-flavors label {
    text-align: center;

    cursor: pointer;
}

.custom-cake-flavors figure {
    border-radius: 4px;

    overflow: hidden;
}

.custom-cake-flavors span {
    font-weight: 500;

    font-size: 16px;

    line-height: 26px;

    color: #000000;

    text-align: center;

    display: block;

    margin-top: 6px;
}

.custom-cake-flavors input {
    display: none;
}

.custom-cake-flavors input:checked + figure {
    box-shadow: 0 0 0 2px var(--main-color);
}

.send-information {
    background-color: #ffffff;

    padding: 16px;

    border-radius: 4px;
}

.send-information .item {
    position: relative;

    margin-bottom: 10px;
}

.send-information .item label {
    position: absolute;

    top: 16px;

    left: 16px;
}

.send-information textarea {
    height: 130px;

    background: #f2f2f2;

    border: 1px solid #d9d9d9;

    border-radius: 4px;

    width: 100%;

    padding: 16px;

    color: #534659;

    font-size: 16px;

    font-weight: 500;
}

.send-information button {
    background: #512c1e;

    border-radius: 4px;

    height: 44px;

    color: #ffffff;

    width: 100%;

    text-align: center;

    font-weight: 500;

    font-size: 16px;

    cursor: pointer;

    outline: 0;

    border: 0;
}

.send-information button:hover {
    background-color: var(--secondary-color);

    border-color: var(--secondary-color);
}
ul.cake-slider-nav{
    padding-top: 7px;
}
ul.cake-slider-nav li {
    padding: 5px;
    cursor: pointer;
}

@media (max-width: 575px) {
    .custom-cake-size label {
        flex: initial;
    }

    .custom-cake-size label span {
        padding: 0 15px;

        white-space: nowrap;
    }

    .custom-cake-size {
        flex-wrap: wrap;
    }

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

@media (min-width: 576px) and (max-width: 1200px) {
    .custom-cake-flavors {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    .custom-cake-body {
        display: block;
    }

    .custom-cake-meta {
        padding-left: 0;

        padding-top: 40px;
    }

    .custom-cake-body > .figure {
        max-width: 100%;
    }
}

.cake-slider-nav .slick-arrow {
    height: 40px;
    width: 40px;
    background: var(--main-color);
    border-radius: 50px;
    z-index: 99999;
}
.cake-slider-nav .slick-arrow:before {
    font-size: 18px!important;
    line-height: .5!important;
}
/****************************************

*             Category Page

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

.page-hero {
    position: relative;
}

.page-hero figure {
    height: 388px;
}

.page-hero figure img {
    height: 100%;

    width: 100%;

    object-fit: cover;
}

.page-hero .page-hero__title {
    top: 0;

    left: 0;

    position: absolute;

    z-index: 999999;

    display: flex;

    align-items: center;

    height: 100%;

    width: 100%;

    padding-top: 80px;
}

.page-hero h1 {
    color: #ffffff;

    margin: 0;

    font-size: 44px;

    font-weight: 500;
}

.category-page-content {
    padding: 70px 0;
}

.category-page-content .container-inner {
    display: flex;

    gap: 30px;
    align-items: flex-start;
}

.category-page-content .category-list {
    flex: 0 0 450px;
}

@media (min-width: 768px){
    .category-page-content .category-list{
        position: sticky;
        top: 40px;
    }
}

.category-page-content .category-list li a {
    display: flex;

    width: 100%;

    height: 58px;

    align-items: center;

    padding-left: 16px;

    font-weight: 500;

    font-size: 18px;

    color: #272533;
}

.category-page-content .category-list li.active a {
    border-left: 2px solid var(--main-color);

    background-color: #ffffff;
}

.category-page-content .category-list li a:hover {
    background-color: #ffffff;
}

.category-products-block {
    flex: 1;
}

.category-products {
    margin-bottom: 30px;
    scroll-margin-top: 100px;
}

.category-products h2 {
    font-size: 33px;

    color: #272533;

    margin: 0;

    font-weight: 500;

    margin-bottom: 25px;
}

.category-products ul {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    grid-column-gap: 16px;

    grid-row-gap: 20px;
}

.category-products ul li {
    background-color: #ffffff;
}

.category-products ul li figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-products ul li figure {
    height: 190px;
    position: relative;
    overflow: hidden;
}
.category-products ul li figure .label{
top: 14px;
    left: -68px;
    color: #fff;
    display: block;
    position: absolute;
    text-align: center;
    text-decoration: none;
    letter-spacing: .06em;
    background-color: #A00;
    padding: 0.5em 4em 0.4em 4em;
    text-shadow: 0 0 0.75em #444;
    box-shadow: 0 0 0.5em rgba(0,0,0,0.5);
    font: bold 16px/1.2em Arial, Sans-Serif;
    -webkit-text-shadow: 0 0 0.75em #444;
    -webkit-box-shadow: 0 0 0.5em rgba(0,0,0,0.5);
    -webkit-transform: rotate(-45deg) scale(0.75,1);
    z-index: 10;
    font-size: 16px;
}


.category-products ul li figure .label:before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: -0.3em -5em;
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    border: 2px rgba(255,255,255,0.7) dashed;
}

.category-products ul li .content {
    padding: 8px 10px;
}

.category-products ul li .content p,
.category-products ul li .content h3 {
    margin: 0;
}

.category-products ul li .content h3 {
    font-size: 14px;

    font-weight: 500;

    line-height: 1.4;
}

.category-products ul li .price-btn {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

.category-products ul li .price-btn button {
    background-color: transparent;

    border: 0;

    padding: 0;

    cursor: pointer;
}

.category-products ul li .price-btn p {
    font-weight: 500;

    font-size: 12px;
}

@media (min-width: 981px) and (max-width: 1600px) {
    .category-products ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .category-products ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .category-page-content .category-list {
        flex: 0 0 290px;
    }
}

@media (max-width: 767px) {
    .category-page-content .category-list li.active a {
        border-bottom: 2px solid var(--main-color);

        border-left: 0;
    }

    .category-products-block {
        margin-top: 50px;
    }

    .category-page-content .container-inner {
        display: block;
    }

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

@media (max-width: 575px) {
    .category-products ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

*             Single Product Page

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

.choose-block input:checked,
.choose-block input:not(:checked) {
    position: absolute;

    left: -9999px;
}

.choose-block input:checked + label,
.choose-block input:not(:checked) + label {
    position: relative;

    padding-left: 28px;

    cursor: pointer;

    line-height: 20px;

    display: inline-block;

    color: #666;
}

.choose-block input:checked + label:before,
.choose-block input:not(:checked) + label:before {
    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 18px;

    height: 18px;

    border: 1px solid var(--main-color);

    border-radius: 100%;

    background: #fff;
}

.choose-block input:checked + label:after,
.choose-block input:not(:checked) + label:after {
    content: "";

    width: 12px;

    height: 12px;

    background: var(--main-color);

    position: absolute;

    top: 3px;

    left: 3px;

    border-radius: 100%;

    -webkit-transition: all 0.2s ease;

    transition: all 0.2s ease;
}

.choose-block input:not(:checked) + label:after {
    opacity: 0;

    -webkit-transform: scale(0);

    transform: scale(0);
}

.choose-block input:checked + label:after {
    opacity: 1;

    -webkit-transform: scale(1);

    transform: scale(1);
}

.choose-block label span {
    display: block;
}

.choose-block-item {
    margin-bottom: 30px;
}

.choose-block label span.primary-text {
    font-size: 18px;

    font-weight: 500;

    color: #000000;
}

.choose-block label span.secondary-text {
    font-size: 16px;

    font-weight: 400;

    color: #272533;

    margin-top: 5px;
}

.choose-block label span.secondary-text em {
    color: #38af68;
}

.choose-block label span.secondary-text .dot {
    height: 4px;

    width: 4px;

    background-color: #000000;

    border-radius: 50%;

    display: inline-block;

    vertical-align: middle;

    margin: 0 5px 0 3px;
}

.page-single-product .container-inner {
    display: flex;

    gap: 60px;

    position: relative;

    align-items: flex-start;
}

.page-single-product .product-gallery {
    flex: 0 0 47%;

}

.page-single-product .product-gallery figure{
    position: relative;
    overflow: hidden;
}


.page-single-product .product-gallery figure .label {
    top: 32px;
    left: -81px;
    color: #fff;
    display: block;
    position: absolute;
    text-align: center;
    text-decoration: none;
    letter-spacing: .06em;
    background-color: #A00;
    padding: 0.5em 6em 0.4em 6em;
    text-shadow: 0 0 0.75em #444;
    box-shadow: 0 0 0.5em rgba(0,0,0,0.5);
    font: bold 16px/1.2em Arial, Sans-Serif;
    -webkit-text-shadow: 0 0 0.75em #444;
    -webkit-box-shadow: 0 0 0.5em rgba(0,0,0,0.5);
    -webkit-transform: rotate(-45deg) scale(0.75,1);
    z-index: 10;
    font-size: 16px;
}

.page-single-product .product-gallery figure .label:before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: -0.3em -5em;
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    border: 2px rgba(255,255,255,0.7) dashed;
}

@media (min-width: 981px){
    .page-single-product .product-gallery {
        position: sticky;
        top: 120px;
    }

}

.page-single-product .product-gallery img {
    width: 100%;
}

.product-details {
    flex: 1;
}

.product-details .basic-info h1 {
    font-weight: 600;

    font-size: 40px;

    margin: 0 0 15px;
}

.product-details .basic-info p {
    font-size: 16px;
}

.product-details .basic-info .price {
    font-size: 24px;

    font-weight: 400;

    margin-bottom: 25px;
}

.product-details .basic-info .price span {
    font-weight: 600;
}

.product-meta-block {
    margin-bottom: 40px;
}

.product-meta-block > h3 span {
    font-size: 16px;

    color: #a4a4a4;

    font-weight: 400;

    font-style: italic;
}

.product-meta-block > h3 {
    font-weight: 500;

    font-size: 20px;

    margin: 0;

    margin-bottom: 25px;
}

.select-block {
    display: flex;

    gap: 16px;

    flex-wrap: wrap;
    padding-top: 20px;
}

.select-block label {
    cursor: pointer;

    position: relative;
}

.select-block input {
    display: none;
}

.select-block label > span {
    display: flex;

    height: 50px;

    align-items: center;

    padding: 0 16px;

    font-weight: 500;

    font-size: 18px;

    color: #000000;

    border: 1px solid #afafaf;

    border-radius: 4px;

    white-space: nowrap;
    min-width: 152px;
    justify-content: center;
}

@media (max-width: 767px){
    .select-block label > span{
        height: 44px;
        padding: 0 16px;
        font-size: 15px;
        min-width: 138px;

    }
    
    .select-block label{
        margin-bottom: 30px;
    }
    
    .select-block {
        flex-direction: column;
    }
}

.select-block label div {
    position: absolute;

    width: 100%;

    display: flex;

    justify-content: space-between;

    top: -28px;
    font-size: 14px;
}

.select-block label div .right {
    color: #38af68;
}

.select-block input:checked + span {
    border-color: var(--main-color);

    background-color: var(--main-color);

    color: #ffffff;
}

.product-meta-block--size .select-block {
    padding-top: 20px;
}

@media (max-width: 575px) {
    .product-details .basic-info h1 {
        font-size: 32px;
    }
}

@media (max-width: 980px) {
    .page-single-product .container-inner {
        display: block;
    }

    .product-details {
        padding-top: 50px;
    }
}

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

*             Cart Page

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

.table-responsive {
    overflow-x: auto;

    -webkit-overflow-scrolling: touch;
}

table {
    border-collapse: collapse;

    border-spacing: 0;

    margin: 0 0 20px;

    width: 100%;
}

.axil-product-table thead {
    background-color: var(--color-lighter);
}

.table > thead {
    vertical-align: bottom;
}

.axil-product-table thead th {
    font-size: 20px;

    text-transform: capitalize;

    border: none;

    font-size: 16px;

    font-weight: 500;

    color: #534659;

    text-align: left;

    padding: 20px 15px 0;
}

.axil-product-table thead th:first-child {
    border-radius: 6px 0 0 6px;
}

.axil-product-table.axil-cart-table th:first-child,
.axil-product-table.axil-cart-table td:first-child {
    padding-left: 0;
}

.axil-product-table tbody td {
    border-top: none;

    border-bottom: 2px solid var(--color-lighter);

    vertical-align: middle;

    padding: 15px;

    font-size: 18px;

    font-weight: 500;

    color: #000000;

    min-width: 110px;
}

.axil-product-table tbody td.product-thumbnail {
    min-width: 130px;

    width: 130px;
}

.axil-product-table tbody td.product-title {
    min-width: 200px;
}

.axil-product-table.axil-cart-table th:last-child,
.axil-product-table.axil-cart-table td:last-child {
    padding-right: 45px;
}

.axil-product-table th:last-child,
.axil-product-table td:last-child {
    text-align: left;
}

.axil-product-table.axil-cart-table .pro-qty .qtybtn {
    font-size: 20px;

    line-height: 27px;

    font-weight: 500;
}

.pro-qty .qtybtn {
    width: 26px;

    display: block;

    cursor: pointer;

    text-align: center;

    font-size: 16px;

    font-weight: 300;

    color: #000;

    height: 50px;

    transition: 0.3s;

    line-height: 50px;

    display: inline-flex;

    justify-content: flex-start;

    align-items: center;
}

.axil-product-table.axil-cart-table .pro-qty input {
    margin: 0 5px;

    min-width: 45px;
}

.pro-qty {
    display: flex;

    align-items: center;
}

.pro-qty input {
    width: 43px;

    float: left;

    border: none;

    height: 50px;

    line-height: 30px;

    padding: 0;

    text-align: center;

    border: 1px solid #afafaf;

    border-radius: 4px;

    font-weight: 500;

    font-size: 18px;

    color: #000000;

    appearance: none;

    margin-right: 12px !important;

    display: inline-block;
}

.page-cart {
    background-color: #f2f2f2;

    padding-top: 210px;

    padding-bottom: 80px;
}

.page-cart .container-inner {
    display: flex;

    background-color: #ffffff;
}

.cart-content {
    flex: 1;
}

.cart-content .table-responsive {
    padding-left: 45px;
}

.cart-summary {
    flex: 0 0 29%;

    max-width: 29%;

    border-left: 1px solid rgba(0, 0, 0, 0.2);

    padding-bottom: 30px;
}

.cart-content__head {
    display: flex;

    justify-content: space-between;

    height: 93px;

    padding-left: 45px;

    align-items: center;

    border-bottom: 1px solid rgba(0, 0, 0, 0.2);

    padding-right: 75px;
}

.cart-content__head h4 {
    margin: 0;

    font-size: 24px;

    color: #3a2943;
}

.product-title a {
    font-size: 24px;
}

.product-title .product-code {
    font-size: 16px;

    margin-top: 10px;
}

.cart-summary h3 {
    height: 93px;

    display: flex;

    align-items: center;

    border-bottom: 1px solid rgba(0, 0, 0, 0.2);

    margin: 0;

    padding: 0 45px;

    font-weight: 600;

    font-size: 24px;
}

.cart-summary-inner {
    padding: 0 45px;
}

.cart-summary__meta {
    display: flex;

    justify-content: space-between;

    padding: 15px 0 30px;
}

.cart-summary__meta div {
    font-weight: 500;

    font-size: 20px;

    color: #3a2943;
}

.delivery-method select {
    background: #ffffff;

    border: 1px solid rgba(28, 28, 59, 0.2);

    border-radius: 4px;

    height: 55px;

    padding: 0 10px;

    width: 100%;

    font-size: 16px;
}

.delivery-method .custom-select{
    margin-bottom: 30px;
}

.promo-code label {
    color: #3a2943;

    font-weight: 500;

    font-size: 18px;

    display: block;

    margin-bottom: 10px;
}

.btn-checkout button,
.promo-code button {
    height: 55px;

    border-radius: 4px;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    background-color: #ed6d66;

    border: 0;

    color: #ffffff;

    font-weight: 500;

    font-size: 16px;

    margin-top: 15px;

    cursor: pointer;
}

.promo-code input {
    width: 100%;

    border: 1px solid rgba(28, 28, 59, 0.2);

    border-radius: 4px;

    height: 55px;

    padding: 10px;

    font-size: 16px;
}

.sub-total {
    display: flex;
    justify-content: space-between;
}

.sub-total--promo{
    margin-top: 45px;
}

.sub-total.sub-total--promo h4{
    font-size: 16px;
}

.sub-total h4 {
    font-weight: 500;

    font-size: 20px;

    line-height: 50px;

    color: #3a2943;

    margin: 0;
}

.btn-checkout .button {
    background-color: var(--main-color);

    transition: 0.3s;
}

.btn-checkout .button:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 1200px) {
    .page-cart .container-inner {
        display: block;
    }

    .cart-summary {
        max-width: 100%;

        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }
}

/* CHeckout */

.delivary-charge,
.inc-tax {
    display: flex;

    justify-content: space-between;

    margin-bottom: 10px;
}

.delivary-charge h4,
.inc-tax h4 {
    margin: 0;

    color: #3a2943;

    font-weight: 500;
}

.sub-total.sub-total--checkout {
    margin-top: 0px;
}

.checkout-cart-items {
    padding: 20px 0 30px;
}

.checkout-cart-items ul {
}

.checkout-cart-items ul li {
    display: flex;

    margin-bottom: 15px;
}

.checkout-cart-items ul li figure {
    flex: 0 0 70px;

    margin-right: 12px;
}

.checkout-cart-items ul li figure img:hover {
    opacity: 0.7;
}

.checkout-cart-items ul li figure img {
    border-radius: 4px;

    transition: 0.3s;
}

.checkout-cart-items ul li .content {
    flex: 1;
}

.checkout-cart-items ul li .content h4 {
    margin: 0;

    font-weight: 500;

    font-size: 16px;

    margin-bottom: 8px;
}

.checkout-content {
    flex: 1;

    padding: 45px;
}

.checkout-block {
    margin-bottom: 30px;
}

.checkout-block .title h3 {
    font-size: 28px;

    margin: 0 0 30px;
}
.span-required:after {
    content:"*";
    color:red;
}

.btn-payment .button {
    height: 60px;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 18px;

    font-weight: 500;

    background-color: var(--main-color);

    border-radius: 4px;

    border: 0;

    cursor: pointer;

    transition: 0.3s;
}

.btn-payment .button:hover {
    background-color: var(--secondary-color);
}

.btn-menu button{
    background-color: var(--main-color);
    color: #ffffff;
    border: 0;
    border-radius: 4px;
    padding: 17px 35px;
    width: 225px;
    font-size: 18px;
    cursor: pointer;
}.btn-menu button:hover{
    background-color: var(--secondary-color);
}

.col-form-label.text-danger{
    padding-top: 8px;
}

.col-form-label.text-danger li{
    color: red;
    font-size: 14px;
}

.axil-product-table tbody td.product-title li {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 400;
    text-transform: capitalize;
}

.axil-product-table tbody td.product-title ul {
   margin-top: 12px;
}

/* Page Terms */
.page-terms{
    padding-top: 200px;
    padding-bottom: 80px;
}

.page-terms .main-title h1{
    color: var(--main-color);
    margin-bottom: 25px;
}

.terms-content h3{
    margin-top: 40px;
}

@media (max-width: 767px){
    .page-terms{
    padding-top: 160px;
}
}

.footer-widget-contact .footer-widget__body .text * {
    color: #ffffff;
}